/*SECTION TITLE INTERNA*/
.sect_title_interna{
    padding: 50px 0;
    position: relative;
    background-position: center;
    background-size: cover;
}
.sect_title_interna:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}
.row_height{
    height: 115px;
    align-items: flex-end;
}
.sect_title_interna h1{
    color: #fff;
    font-weight: 700;
    text-align: center;
}
@media(max-width: 991px){
    .sect_title_interna h1 {
        font-size: 30px;
    }
    .row_height {
        height: 140px;
    }
}
@media(max-width: 767px){
    .sect_title_interna h1 {
        font-size: 25px;
    }
    .row_height {
        height: 130px;
    }
    .sect_title_interna {
        padding: 20px 0;
    }
}
@media(max-width: 500px){
    .sect_title_interna h1 {
        font-size: 18px;
    }
}
/*END SECTION TITLE INTERNA*/   

/*********************** SECTION PRODUCTOS *************************/
.sect_productos{
	padding-top: 30px;
	padding-bottom: 100px;
}
/**/
.aside_categorias{
    box-shadow: 0 2px 3px 0 rgba(100,100,100,.3);
    margin-bottom: 15px;
}
.aside_categorias .list_categorias>li svg .fa-secondary{
    color: #f57d35;
    opacity: 1;
}
.aside_categorias .list_categorias>li svg .fa-primary{
    color: #000;
}
/**/
.aside_categorias .aside_head h4{
    background: #f57d35;
    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: #f57d35;
    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 svg{
    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%;
}
.box_producto{
	box-shadow: 1px 5px 7px 3px rgba(85, 85, 85, 0.14);
	margin-bottom: 30px;
	text-align: center;
}
.productos .item .box_producto:nth-child(4),
.productos .item .box_producto:nth-child(5),
.productos .item .box_producto:nth-child(6){
	margin-bottom: 0;
}
.box_producto .box_body{
	padding: 10px 20px;
}
@media (max-width: 767px){
    .list_productos .item {
        width: 48%;
    }
}
@media (max-width: 480px){
    .list_productos .item {
        width: 100%;
    }
}
/**/
.box_producto .box_body .tag_categoria{
	display: block;
	color: #bbb;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_producto .box_body .tag_categoria:hover{
	color: #f57d35;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.box_producto .box_body .tag_name{
	display: block;
	color: #000;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_producto .box_body .tag_name:hover{
	color: #f57d35;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.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: #f57d35;
    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: #f57d35;
}
.list_stars>li>svg .fa-primary{
	color: #f57d35;
}
/**/
.opciones .add_cart{
    background: #f47d34;
    display: inline-block;
    padding: 6px 6px;
    color: #ffffff;
    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: #e8e8e8;
    color: #1c1c1c;
    border-color:  #e8e8e8;
    -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: #f57d35;
    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: #f57d35;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.productos .owl-nav [class*=owl-]:hover{
	background: #f57d35;
	-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;
}

/********************/

div.options{

    padding: 10px 20px;

}



div.options > label > input {

    visibility: hidden;

}



div.options > label {
    display: block;
    margin: 0 0 0 0px;
    padding: 0 0 35px 0;
    height: 20px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}
div.options > label:hover {
    color: #f57d35;
}

div.options > label > img {

    display: inline-block;

    padding: 0px;

    height: 20px;

    width: 20px;

    background: none;

    float: left;

}



div.options > label > input:checked +img {  

    background-image: url(../../../../public/img/iconos/comprobado.png);

    background-repeat: no-repeat;

    background-position:center center;

    background-size:20px 20px;

}



/*****/