@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Lato', sans-serif;
    /*font-family: 'Righteous', cursive;*/
    overflow-x: hidden;
    font-size: 14px;
}
/*************************************** SECTION TOP HEADER **************************************/
.sect_top_header{
	padding: 10px 0;
	background: #f2f2f2;
}
/**/
.list_redes_top{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	text-align: right;
}
.list_redes_top>li{
	display: inline-block;
	margin-left: 15px;
}
.list_redes_top>li>a{
	display: block;
	color: #000;
    font-size: 16px;
}
/************************************* END SECTION TOP HEADER ************************************/

/************************************* SECTION MENU DE NAVEGACIÓN *********************************/
.content_nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
    align-items: center;
}
.nav_logo{
	width: 250px;
}
.nav_logo img{
	max-width: 300px;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
/**/
.nav_list{
	width: calc(100% - 500px);
}
.list_menu_desk{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	text-align: center;
}
.list_menu_desk>li{
	display: inline-block;
}
.list_menu_desk>li>a{
    display: block;
    padding: 42px 10px;
    color: #000;
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_menu_desk>li>a:hover,
.list_menu_desk>li>a.active{
    color: #045E81;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.nav_contact{
	width: 250px;
}
.list_contact_menu{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.list_contact_menu>li{
	position: relative;
}
.list_contact_menu>li>svg{
	position: absolute;
	top: -3px;
	left: 0;
	font-size: 40px;
	color: #000;
}
.list_contact_menu .content_contact{
	padding-left: 50px;
}
.list_contact_menu .content_contact p{
	margin-bottom: 0;
	font-size: 13px;
	font-weight: 800;
}
.list_contact_menu .content_contact p>a{
	color: #00b9fb;
	font-weight: 600;
	text-decoration: none;
}
.list_contact_menu .content_contact p>a:hover{

}
/*FRANJA OPCIONES NAVBAR*/
.content_options{
	background: #25407f;
}
.btn_categorias{
	display: block;
	padding: 20px;
    position: relative;
	background: #04a0d7;
	color: #000000;
	font-weight: 800;
	text-decoration: none;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.btn_categorias:hover{
	color: #25407f;
	text-decoration: none;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.down_categorias{
    float: right;
    font-size: 18px;
    position: relative;
    top: 2px;
}
/**/
.dropdown_categorias{
	position: relative;
}
.dropdown_categorias .list_submenu{
	position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    overflow-y: auto;
    padding-left: 0;
    list-style: none;
    z-index: 1;
    background: #fff;
    box-shadow: 0 2px 3px 0 rgba(100,100,100,.3);
    padding: 0 10px;
}
/**/
.dropdown_categorias .list_submenu::-webkit-scrollbar {   /* Tamaño del scroll en vertical */
    width: 8px;
}
.dropdown_categorias .list_submenu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
/**/
.dropdown_categorias .list_submenu>li{
	position: relative;
}
.dropdown_categorias .list_submenu>li>a{
	display: block;
    margin: 0 10px;
    padding: 15px 0;
    font-size: 12px;
    padding-left: 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #e4e4e4;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.dropdown_categorias .list_submenu>li:last-child>a{
	border-bottom: 0;
}
.dropdown_categorias .list_submenu>li>a:hover{
    color: #04a0d7;
    padding-left: 25px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.dropdown_categorias .list_submenu>li svg{
	position: absolute;
	top: 18px;
    left: 13px;
	-webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.dropdown_categorias .list_submenu>li svg .fa-secondary{
	color: #04a0d7;
	opacity: 1;
}
.dropdown_categorias .list_submenu>li svg .fa-primary{
	color: #000;
}

/*INPUT BUSCAR*/
.input_search{
	position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.input_search>input{
	width: calc(100% - 100px);
    border: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 10px;
}
.input_search>input:focus{
	outline: none;
}
.btn_search{
	width: 100px;
    padding: 10px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: #04a0d7;
    -webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.btn_search:hover{
	background: #02a0d7;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.btn_search:focus{
	outline: none;
}
/**/
.list_btns{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	text-align: right;
}
.list_btns>li{
	display: inline-block;
    position: relative;
}
.list_btns>li span{
    position: absolute;
    top: 0;
    right: -8px;
    background: #04a0d7;
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 11px;
    text-align: center;
}
.list_btns>li>a{
	display: block;
    padding: 10px;
    color: #ffffff;
    width: 40px;
    font-size: 18px;
    height: 40px;
    line-height: 22px;
    background: #00db4d;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_btns>li>a:hover{
    color: #fff;
    background: #02a0d7;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*MENU FIXED*/
.nav_main{
	position: relative;
	width: 100%;
	background: #fff;
	z-index: 20;
}
.nav_main.head-navfixed{
	position: fixed;
	top: 0;
}
.nav_main.head-navfixed .nav_logo img{
	max-width: 150px;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
/**/
.nav_main.head-navfixed .list_menu_desk>li>a {
    display: block;
    padding: 26px 10px;
}
/**/
@media(max-width: 991px){
	.list_menu_desk{
		display: none;
	}
    .dropdown_categorias{
        display: none;
    }
    .content_options {
        padding: 10px 0;
    }
    .nav_logo{
		/*background: #f2f2f2;*/
		margin-top: 20px;
	}
	.nav_logo {
		width: 250px;
	}
	.nav_list {
		width: calc(100% - 500px);
	}
	.nav_logo img{
		max-width: 260px;
	}
}
/************************** END SECTION MENU ESCRITORIO *******************************/

/******************************* MENU CELULAR *********************************/
#menu_hamburguer{
    background: #000;
    display: none;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 20px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.aside_fixed{
    position: fixed;
    overflow-y: auto;
    top: 0;
    width: 280px;
    background: #fff;
    height: 100%;
    display: block;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    border-left: solid 1px #efefef;
    -webkit-transition: all .5s ease-in-out;
    -khtml-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 200;
}
.aside_fixed.open {
    -webkit-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
    -o-transform: translate(00%, 0);
    transform: translate(0%, 0);
}
/**/
.aside_fixed .content_aside .content_head{
    padding: 20px;
}
/**/
.list_tabs_menu>li a{
    background: #04a0d7;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 8px;
    font-size: 12px;
    font-weight: 800;
}
/**/
.aside_fixed .content_aside .content_body .list_menu_celular{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.aside_fixed .content_aside .content_body .list_menu_celular>li>a{
    display: block;
    padding: 15px 10px;
    color: #000;
	text-transform: uppercase;
    font-weight: 700;
	font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.aside_fixed .content_aside .content_body .list_menu_celular>li>a:hover{
    color: #d58610;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}

.aside_fixed .content_aside .content_body .list_menu_celular>li>a>svg{
    color: #04a0d7;
}
.search_mobile{
    display: none;
}
/**/
.lg-background.open{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    z-index: 20;
}
/**/
@media(max-width: 991px){
    #menu_hamburguer{
        display: inline-block;
    }
}
@media(max-width: 600px){
    .input_search_mobile{
        display: none;
    }
    .nav_contact{
        display: none;
    }
    .nav_logo{
        width: 100%;
        text-align: center;
    }
    .nav_list{
        width: 100%;
    }
    .search_mobile{
        display: block;
        text-align: center;
        margin: 20px 0;
    }
    .search_mobile>input{
        width: calc(100% - 100px);
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        padding: 9px;
        border: 1px solid #04a0d7;
        outline: none;
    }
}

/*********************** SECTION TITLE GENERAL ***********************/
.sect_title_general{
	padding: 60px 0;
}
/*TITLE*/
.title_general{
	position: relative;
    background: #f2f2f2;
    margin-bottom: 30px;
}
.title_general .title_left{
	font-weight: 600;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
.title_general .title_left h5{
	font-weight: 700!important;
    display: inline-block;
    position: relative;
    color: #222;
    font-size: 16px;
    text-transform: uppercase;
    height: 42px;
    padding: 0 15px;
    margin-right: 20px;
    line-height: 42px;
    background-color: #04a0d7;
        margin-top: -5px;
    color: #ffffff;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.title_general .title_left h5:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid #04a0d7;
    left: -5px;
    position: absolute;
}
.title_general .title_left h5:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid #04a0d7;
    right: -5px;
    position: absolute;
}
/********************* END SECTION TITLE GENERAL *********************/

/**************************************** INTER FOOTER ******************************************/
.sect_main{
	padding: 50px 0;
	background-color: #eceff1;
}
/**/
.box_footer .box_head h4{
	font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
/**/
.box_footer .box_body ul{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.box_footer .box_body ul>li{
	margin-bottom: 10px;
}
.box_footer .box_body ul>li>a{
	display: block;
    color: #000000;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .box_body ul>li>a:hover{
    color: #fb8c00;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.box_redes_foot{
	/*margin-top: 50px;*/
	/*padding: 50px 0;*/
	padding-bottom: 0;
	/*border-top: 1px solid #e0e0e0;*/
}
.list_redes_foot{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	text-align: center;
}
.list_redes_foot>li{
	display: inline-block;
	margin: 0 5px;
}
.list_redes_foot>li>a{
	display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    line-height: 40px;
    box-shadow: 4px 7px 10px 4px rgba(0, 0, 0, 0.02);
    color: #000;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_redes_foot>li>a:hover{
    color: #fff;
    background: #fb8c00;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_redes_foot h6{
	text-align: center;
    font-weight: 900;
    margin-bottom: 15px;
}
/**/
.list_contacto_footer{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.list_contacto_footer>li{
	position: relative;
	padding-left: 30px;
}
.list_contacto_footer>li>svg{
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
}
/**/
.logo_footer{
	max-width: 300px;
	margin: 0 auto;
}
/**/
.sect_sign{
	background-color: #04a0d7;
	padding: 30px 0;
	border-top: 1px solid #e0e0e0;
}
/**/
.p_rights{
	margin-bottom: 0;
	color: #fff;
}
.p_rights b{
	color: #ffffff;
    font-weight: 900;
}
.design_by{
	text-align: right;
	margin-bottom: 0;
	color: #fff;
}
/**/
@media(max-width: 991px){
    .box_footer{
        margin-bottom: 25px;
    }
    .sect_top_header{
        display: none;
    }
}
/**************************************** END INTER FOOTER ******************************************/
.btn_carrito{
    margin-left: 5px;
}
.list_btns .btn_carrito a {
    display: block;
    padding: 10px;
    color: #ffffff;
    width: 40px;
    font-size: 18px;
    height: 40px;
    line-height: 22px;
    background: #04a0d7;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_btns .btn_carrito a:hover {
    color: #fff;
    background: #02a0d7;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}