/********************************************** SECTION TITLE PRODUCTOS *********************************************/
.sect_title_productos.padtop{
	padding-top: 100px;
}
/**/
.box_title_producto h5{
	background: #1c1c1c;
    display: inline-block;
    margin-bottom: 0;
    padding: 12px;
    color: #fff;
    font-weight: 700;
    border-top-right-radius: 20px;
}
.box_title_producto h5 a{
	text-decoration: none;
    color: #0072bc;
    font-size: 16px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_title_producto h5 a:hover{
    color: #ffffff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_title_producto .hr_title_producto{
	position: relative;
	margin: 0;
}
.hr_title_producto:before{
	content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 30%;
    height: 3px;
    background: #0072bc;
}
/******************** SECTION TITLE PRODUCTOS **********************/

/*********************** SECTION PRODUCTOS *************************/
.sect_productos{
	padding-top: 30px;
	padding-bottom: 100px;
}
/**/
.aside_categorias{
    box-shadow: 0 2px 3px 0 rgba(100,100,100,.3);
}
.aside_categorias .list_categorias>li svg .fa-secondary{
    color: #0072bc;
    opacity: 1;
}
.aside_categorias .list_categorias>li svg .fa-primary{
    color: #000;
}
/**/
.aside_categorias .aside_head h4{
    background: #0072bc;
    color: #ffffff;
    font-weight: 700;
    padding: 10px;
    font-size: 17px;
    margin-bottom: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.aside_categorias .aside_body .list_categorias{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.aside_categorias .aside_body .list_categorias>li>a{
    display: block;
    padding: 15px 10px;
    position: relative;
    padding-left: 30px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #e2e2e2;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.aside_categorias .aside_body .list_categorias>li>a:hover{
    color: #0072bc;
    border-bottom: 1px solid #e2e2e2;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.aside_categorias .aside_body .list_categorias>li>a i{
    position: absolute;
    top: 13px;
    left: 10px;
}
/**/
.productos .item{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 10px 0;
}
/**/
.list_productos {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.list_productos .item {
    width: 31%;
}

@media (max-width: 767px){
    .list_productos .item {
        width: 48%;
    }
}
@media (max-width: 480px){
    .list_productos .item {
        width: 100%;
    }
}
/**/
.box_products{
    margin-bottom: 20px;
}
.box_products .box_header{
    border: 1px solid #d2cfcf;
    position: relative;
}
.add_cart{
    padding: 0;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    text-align: center; 
}
.add_cart>span a{
    display: block;
    font-size: 13px;
}
.add_cart>span:nth-child(1) a{
    color: #fff;
}
.add_cart>span:nth-child(2) a{
    color: #000;
}
.add_cart>span:nth-child(1){
    background-color: #0054a3;
    display: block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 100%;
    z-index: 3;
    -webkit-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
    -webkit-transform: translateX(101%);
    -moz-transform: translateX(101%);
    -ms-transform: translateX(101%);
    -o-transform: translateX(101%);
    transform: translateX(101%);
}
.add_cart>span:nth-child(2){
    display: block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 100%;
    z-index: 3;
    -webkit-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
    -webkit-transform: translateX(-101%);
    -moz-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    -o-transform: translateX(-101%);
    transform: translateX(-101%);
}
.box_products:hover .add_cart>span:nth-child(1),
.box_products:hover .add_cart>span:nth-child(2){
    -webkit-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.list_products .box_body h5{
    color: #666;
    text-align: center;
}
.list_products .box_body .price{
    text-align: center;
}
.list_products .box_body .price>span{
    margin: 0 10px;
    color: #333;
    font-weight: 700;
}
.list_products .box_body .price strike{
    color: #ffa000;
}
.stars{
    display: block;
    text-align: center;
}
.stars:before{
    content: "\f005\f005\f005\f005\f123\f123";
    font-family: FontAwesome;
    color: #ffa000;
}
/**/
.precio{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
    align-items: center;
	margin: 10px 0;
}
.precio h6{
	color: #0072bc;
    font-weight: 700;
    margin-bottom: 0;
    margin-right: 15px;
}
.precio h6 strike{
    color: #bdbdbd;
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 15px;
}
.list_stars{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.list_stars>li{
	display: inline-block;
}
.list_stars>li>svg .fa-secondary{
	color: #0072bc;
}
.list_stars>li>svg .fa-primary{
	color: #0072bc;
}
/**/
.opciones .add_cart{
	background: #e8e8e8;
    display: inline-block;
    padding: 4px 6px;
    color: #1c1c1c;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #dadada;
    margin-right: 10px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.opciones .add_cart:hover{
	background: #0072bc;
    color: #ffffff;
    border-color:  #0072bc;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.opciones .view_product{
	background: #3dcd30;
    color: #ffffff;
    display: inline-block;
    padding: 5px 8px;
    border: 2px solid #3dcd30;
    border-radius: 3px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.opciones .view_product:hover{
	background: #e8e8e8;
    color: #0072bc;
    border-color:  #dadada;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.productos .owl-nav [class*=owl-] {
    position: absolute;
    top: -73px;
    right: 0;
    background: #0072bc;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.productos .owl-nav [class*=owl-]:hover{
	background: #0072bc;
	-webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.productos .owl-nav .owl-prev{
	right: 40px;
}
.productos .owl-nav .owl-next{
	right: 10px;
}

/*************************** SECTION PRODUCTOS ***************************/


/**/
.pagination_cat{

    text-align: center;

}

.pagination_cat ul{

    padding-left: 0;

    margin: 20px 0;

    text-align: center;

    list-style: none;

    display: -webkit-inline-box;

}

.pagination_cat .disabled{

    display: inline;

}

.pagination_cat li.active a{

    background: #000000;
    color: #ffffff;
    border-color: #000000;

}

.pagination_cat li.active a:hover{

    background: #000000;
    color: #ffffff;
    border-color: #000000;

}

.pagination_cat li.active a:focus{

    background: #ddddcd;

    color: #000;

    border-color: #ddddcd;

}

.pagination_cat li a{

    display: inline-block;

    padding: 5px 14px;

    background-color: #fff;

    border: 1px solid #ddd;

    border-radius: 15px;

    color: #000;

}

.pagination_cat li a span{

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    border: 0;

}
/**/
.no_productos h2{
    font-size: 16px;
    font-weight: 800;
    width: 100%;
    text-align: center;
}