@font-face {
    font-family: "light";
    src: url(../fonts/Ruberoid-Light.woff);
}

@font-face {
    font-family: "regular";
    src: url(../fonts/Ruberoid-Regular.woff);
}

@font-face {
    font-family: "medium";
    src: url(../fonts/Ruberoid-Medium.woff);
}

@font-face {
    font-family: "bold";
    src: url(../fonts/Ruberoid-Bold.woff);
}

@font-face {
    font-family: "semibold";
    src: url(../fonts/Ruberoid-SemiBold.woff);
}

:root {
    --color1: #222222;
    --color2: #ffd100;
    --blanco: #ffffff;
    --negro: #000000;
    --gris: #eeeeee;
    --gris2: #cccccc;
    --text: #2a2a2a;
    --textotitular: "GothamBlack", sans-serif;
    --textotitulo: "GnuolaneRg", sans-serif;
    --textoparrafo: "NexaBold", sans-serif;
    --textoparrafo2: "NexaLight", sans-serif;
}

*,
h1,
h2,
h3,
h4,
p,
ul,
li,
a {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    color: var(--text);
}

hr {
    height: 0;
    border: 0;
    border-bottom: 1px solid #eeeeee;
    border-top: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.scroll_none{
    overflow-y:hidden;
}
body {
    background-color: var(--color1);
    color: var(--gris);
    font-family: "regular", sans-serif;
}

.caja_corta {
    width: 100%;
    max-width: 1360px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
}

.caja_cortisima {
    width: 95%;
    max-width: 980px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    margin: 0 auto;
}

.fondo_oscuro {
    background-color: var(--color1);
    color: var(--gris);
}

.fondo_claro {
    background-color: var(--blanco);
    color: var(--text);
    padding: 0;
}

header {
    height: 120px;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

header nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

header .logo {
    max-width: 300px;
    min-width: 200px;
}
header .logo a{
    display: block;
}
header .logo img {
    display: block;
    width: 100%;
}
header .menu_box{    
    flex-grow: 1;
}
header .menu {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-evenly;
}

header .menu>li {
    /* flex-grow: 1; */
    flex-shrink: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

header .menu>li>a {
    transition: all 0.3s;
    padding: 10px 10px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: var(--gris);
}

header .menu a:hover {
    color: var(--color2);
}

header .menu>li:hover ul.submenu {
    display: block;
}

header .submenu {
    display: none;
    position: absolute;
    top: 38px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--blanco);
    font-size: 0.9em;
    box-shadow: 0 0 150px var(--text);
}

header .submenu a {
    display: block;
    color: var(--color1);
    padding: 5px 10px;
    margin: 0 10px;
    width: auto;
    white-space: nowrap;
}

header .submenu a {
    border-bottom: 1px solid var(--gris);
}

header .submenu li {
    text-align: center;
    display: initial;
}

header .submenu li:last-child a {
    border-bottom: 0;
}

header .search {
    display: flex;
    flex-direction: row;
}

header .search input {
    padding: 5px 10px;
    border-radius: 7px;
    border: none;
    outline: none;
    color: var(--color1);
    font-family: "regular", sans-serif;
}

header .search input[type="submit"] {
    background-color: var(--color2);
    color: var(--color1);
    margin-left: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

header .search input[type="submit"]:hover {
    box-shadow: 0 0 5px var(--color2);
}

header .logcar {
    display: flex;
    flex-direction: row;
    padding-left: 1%;
}

header .logcar>div {
    width: 35px;
    height: 35px;
    padding: 5px;
    position: relative;
}

header .logcar .headercar a span.updateproductos {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    position: absolute;
    right: -10px;
    top: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--color2);
    color: var(--negro);
    font-weight: bold;
}

header .logcar>div a {
    display: block;
}

header .logcar>div img {
    width: 100%;
}

.slideprincipal {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 20%;
    overflow: hidden;
}

.slideprincipal img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.marquesina {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquesina>div {
    color: var(--color2);
    text-align: center;
    font-size: 1.3em;
}

/****/
.masven {
    padding: 50px 0;
    box-sizing: border-box;
}
.masven h2 {
    color: var(--color1);
    font-size: 1.3em;
    padding: 0 35px;
    font-family: "medium", sans-serif;
}

.masven .masvenbox {
    margin: 30px auto;
    padding: 0 35px;
    box-sizing: border-box;
    z-index: 0;
}

.masven .masvenbox>div {
    width: 100%;
    box-sizing: border-box;
}

.masven .masvenitem {
    text-align: center;
}

.masven .owl-item {
    width: 25%;
}

.masven .owl-nav button {
    position: absolute;
    top: 0;
    width: 35px;
    height: 100%;
}

.masven .owl-nav .owl-prev {
    left: -15px;
}

.masven .owl-nav .owl-next {
    right: -15px;
}

.masven .owl-nav button span {
    font-size: 3em;
    background-color: #eee;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
}

.masven .masvenimg {
    background-color: #eee;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border: 1px solid var(--gris);
    overflow: hidden;
}
.masvenbox .owl-stage-outer{
    padding-top: 10px ;
    padding-bottom: 10px ;
}
.masven .masvenimg.masnov {
    background-color: #eee;
    width: 100%;
    height: 0;
    padding-bottom: 56.5%;
    position: relative;
    border: 1px solid var(--gris);
    overflow: visible;
}

.masven .masvenimg img {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: contain;
    object-position: 50% 50%;
    transition: all 0.3s;
}

.masven .masvenimg:hover img {
    transform: scale(1.05);
}

.masven h3 {
    background-color: var(--color2);
    border-radius: 6px;
    font-size: 0.9em;
    text-align: center;
    padding: 10px;
    width: 84%;
    margin: 10px auto;
    color: var(--negro);
    font-family: "bold", sans-serif;
}

.masven h4 {
    margin-top: 10px;
    font-size: 0.8em;
    text-align: center;
    color: var(--color1);
    font-family: "light", sans-serif;
}

/**********************/
.inisomos {
    background-image: url(../img/inifondo.png);
    background-position: center center;
    background-size: cover;
    background-color: #000000cc;
}

.inisomos>div {
    padding: 70px 40px 80px;
    display: flex;
    flex-wrap: wrap;
}

.inisomos .inisomosbox {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.inisomos .inisomosbox h2 {
    font-size: 4em;
    font-family: "bold", sans-serif;
    color: var(--blanco);
}

.inisomos .inisomosbox h2 img {
    height: 30px;
}

.inisomos .inisomosbox p {
    padding-top: 10px;
    text-align: justify;
    font-family: "light", sans-serif;
    color: var(--blanco);
}

/*****************/
.ininoticias  {
    padding: 50px 0;
    box-sizing: border-box;
}

.ininoticias .ininoticias_box {
    padding: 0 35px;
    box-sizing: border-box;
    z-index: 0;
}

.ininoticias .ininoticias_item {
    padding: 40px 20px;
    background-color: #eee;
    width: 100%;
    box-sizing: border-box;
}

.ininoticias .ininoticias_item h2 {
    font-family: "bold", sans-serif;
}

.ininoticias .ininoticias_fecha {
    padding: 15px 0;
    font-family: "light", sans-serif;
}

.ininoticias .ininoticias_img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 58%;
    background-color: var(--color2);
}

.ininoticias .ininoticias_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ininoticias .ininoticias_text {
    margin: 15px 0 30px;
    text-align: justify;
    font-family: "light", sans-serif;
    /* para definir cuantas lineas */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.ininoticias .ininoticias_rrss {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ininoticias .ininoticias_rrss>div:nth-child(1) {
    display: flex;
    flex-direction: row;
    color: var(--blanco);
}

.ininoticias .ininoticias_rrss>div:nth-child(1) i {
    color: var(--blanco);
}

.ininoticias .ininoticias_rrss>div:nth-child(1) a div {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: var(--color1);
    color: var(--blanco);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    margin-right: 10px;
}

.ininoticias .ininoticias_rrss>div:nth-child(2) {
    font-family: "bold", sans-serif;
}
.ininoticias .ininoticias_rrss>div:nth-child(2) a:hover{
    text-decoration: underline;
}
.ininoticias .owl-nav button {
    position: absolute;
    top: 0;
    width: 35px;
    height: 100%;
}

.ininoticias .owl-nav .owl-prev {
    left: -15px;
}

.ininoticias .owl-nav .owl-next {
    right: -15px;
}

.ininoticias .owl-nav button span {
    font-size: 3em;
    background-color: #eee;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
}

/**************************************/
.iniclientes {
    padding: 50px 0 70px;
    box-sizing: border-box;
}
.iniclientes h2 {
    color: var(--color1);
    font-size: 1.3em;
    font-family: "medium", sans-serif;
}

.iniclientes .iniclientes_box {
    max-width: 70%;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 0;
}

.iniclientes .iniclientes_item {
    width: 100%;
    box-sizing: border-box;
}

.iniclientes .iniclientes_item>div {
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    position: relative;
}

.iniclientes .iniclientes_item img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    padding: 15px;
    box-sizing: border-box;
}

/*************************************/

footer {
    padding: 40px 0 40px;
}

footer h3 {
    font-size: 1em;
    padding: 15px 0 10px;
    color: var(--gris);
}

footer p {
    font-size: 0.9em;
    line-height: 130%;
    color: var(--gris);
    font-family: "light", sans-serif;
}

footer .footer_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .footer_box>div {
    margin-right: 15px;
}

footer .footer_box>div:last-child {
    margin-right: 0px;
}

footer .footer_logo {
    height: 30px;
}

footer .footer_logo img {
    height: 100%;
}

footer .footer_rrss {
    display: flex;
    flex-direction: column;
}

footer .footer_rrss>div:nth-child(1) {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

footer .footer_rrss>div:nth-child(1) a {
    width: 30px;
    height: 30px;
    background-color: var(--blanco);
    border-radius: 50%;
    color: var(--color1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    margin-left: 10px;
}

footer .footer_rrss>div:nth-child(1) a:hover {
    box-shadow: 0 0 6px var(--blanco);
}

footer .footer_rrss>div:nth-child(2) a {
    background-color: var(--color2);
    color: var(--color1);
    padding: 5px 15px;
    border-radius: 6px;
    margin-top: 25px;
    transition: all 0.3s;
    display: block;
}

footer .footer_rrss>div:nth-child(2) a:hover {
    box-shadow: 0 0 10px var(--color2);
}

/***** pagina productos */
.productos {
    padding: 40px 0;
}

.productos h2 {
    font-family: "medium", sans-serif;
    font-size: 1.2em;
    padding-bottom: 15px;
}

.productos>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
}

.productos nav {
    position: sticky;
    top: 30px;
    width: 345px;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 25px;
    box-sizing: border-box;
}

.productos article {
    width: min-content;
    flex-grow: 1;
    flex-shrink: 1;
}

/**** PRODUCTO ITEM ****/
.productos .productos_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.productos .productos_item {
    width: 33.33%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}

.productos .productos_item .productos_img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-color: var(--gris);
    border: 1px solid var(--gris);
    overflow: hidden;
}

.productos .productos_item .productos_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-position: 50% 50%;
    object-fit: contain;
    transition: all 0.3s;
}

.productos .productos_item:hover .productos_img img {
    transform: scale(1.05);
}

.productos .productos_item h3 {
    background-color: var(--color2);
    border-radius: 6px;
    font-size: 0.9em;
    text-align: center;
    padding: 10px;
    width: 84%;
    margin: 10px auto;
    color: var(--negro);
    font-family: "bold", sans-serif;
}

.productos .productos_item h4 {
    margin-top: 10px;
    font-size: 0.8em;
    text-align: center;
    color: var(--color1);
    font-family: "light", sans-serif;
}

/**** PRODUCTO ITEM ****/

/**** SIDEBAR ****/
.sidebar li:first-child {
    border-top: 1px solid var(--gris);
}

.sidebar li {
    border-bottom: 1px solid var(--gris);
}

.sidebar li a {
    padding: 10px;
    display: block;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    font-family: "regular", sans-serif;
}

.sidebar li a:hover {
    color: var(--color2);
}

.sidebar li.submenu a {
    padding-right: 30px;
}
.sidebar li.submenu ul li a {
    padding-right: 10px;
    padding-left: 30px;
}

.sidebar li a span {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 10px;
    display: flex;
    align-items: center;
}

.sidebar li a i {
    transition: all 0.3s;
    transform: rotate(0deg);
}

.sidebar ul ul {
    display: block;
}

/**** PRODUCTO ***/
.producto {
    background-color: var(--blanco);
    color: var(--color1);
    padding: 70px 0 30px;
}

.producto>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.producto .producto_box1 {
    width: 55%;
    padding-right: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.producto .producto_box1>div {
    display: flex;
    flex-direction: row-reverse;
    z-index: 0;
}

/*********************/
.producto .owl-carousel-producto .owl-item {
    width: 100%;
}

.producto .owl-carousel-producto .owl-item>div {
    margin-left: 21%;
    overflow: hidden;
}

.producto .owl-carousel-producto .owl-item .owl-itemp {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    box-sizing: border-box;
}

.producto .owl-carousel-producto .owl-item .owl-itemp img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    box-sizing: border-box;
}

.producto .owl-carousel-producto .owl-item .img-magnifier-glass {
    display: none;
}

.producto .owl-carousel-producto .owl-item:hover .img-magnifier-glass {
    display: initial;
}

.producto .owl-carousel-producto .owl-thumbs {
    position: absolute;
    left: 0;
    width: 18.5%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.producto .owl-carousel-producto .owl-thumbs::-webkit-scrollbar {
    width: 8px;
    /* Tamaño del scroll en vertical */
    height: 8px;
    /* Tamaño del scroll en horizontal */
    display: none;
    /* Ocultar scroll */
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
.producto .owl-carousel-producto .owl-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
.producto .owl-carousel-producto .owl-thumbs::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Cambiamos el fondo cuando esté en active */
.producto .owl-carousel-producto .owl-thumbs::-webkit-scrollbar-thumb:active {
    background-color: #999999;
}

.producto .owl-carousel-producto .owl-thumbs::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
}

/* Cambiamos el fondo cuando esté en active o hover */
.producto .owl-carousel-producto .owl-thumbs::-webkit-scrollbar-track:hover,
.producto .owl-carousel-producto .owl-thumbs::-webkit-scrollbar-track:active {
    background: #d4d4d4;
}

.producto .owl-carousel-producto .owl-thumbs>button {
    border: none;
    background-color: var(--gris);
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    margin-bottom: 10px;
    border: 1px solid var(--gris);
    cursor: pointer;
}

.producto .owl-carousel-producto .owl-thumbs>button img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    object-position: 50% 50%;
    object-fit: contain;
}

/*/*/
.producto .producto_box2 {
    width: 45%;
    padding-left: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.producto .producto_box2 h1 {
    font-size: 2.5em;
    font-family: "bold", sans-serif;
}

.producto .producto_box2 .producto_box2_precio {
    margin-top: 30px;
    font-size: 3em;
    font-family: "semibold", sans-serif;
}
.producto .producto_box2 .producto_opciones {
    margin-top: 5px;
    font-family: "semibold", sans-serif;
}

.producto .producto_box2 .producto_opciones li {
    width: 70px;
    display: flex;
    flex-direction: column;    
    font-size: .6em;
    border: solid 1px #eee;
    text-align: center;
    padding: 2px 5px;
    box-sizing: border-box;
    border-radius: 7px;
}
.formulario {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    margin-right: 5px;
}

.numbercantidad input,
.formulario input {
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 5px;
    border: none;
    margin-right: 5px;
    font-family: "semibold", sans-serif;
}

.numbercantidad {
    position: relative;
}

.numbercantidad>div {
    position: absolute;
    top: 0;
    padding: inherit;
    font-weight: bold;
    z-index: 1;
    cursor: pointer;
}

.numbercantidad .btn-minus {
    display: flex;
    align-items: center;
    height: 100%;
    left: 3px;
    padding: 0 10px;
    user-select: none;
}

.numbercantidad .btn-plus {
    display: flex;
    align-items: center;
    height: 100%;
    right: 3px;
    padding: 0 10px;
    margin-right: 5px;
    user-select: none;
}

.numbercantidad input[type="number"] {
    background-color: var(--gris);
    width: 100px;
    box-sizing: border-box;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

.numbercantidad button[type="submit"] {
    background-color: var(--color2);
    color: var(--color1);
}

.numbercantidad button {
    background-color: var(--color1);
    color: var(--color2);
    cursor: pointer;
    transition: all 0.3s;
}

.numbercantidad button:hover {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.producto_descripcion {
    background-color: var(--blanco);
    color: var(--color1);
}
.producto_descripcion h2{
    background-color: var(--color2);
    color: var(--negro);
    border-radius: 5px;
    padding: 2px 15px;
}
.producto_descripcion h2 + p {
    -webkit-text-decoration:#ccc solid underline;
    text-decoration: #ccc solid underline;
    -webkit-text-underline-position: under;
    text-underline-position: under;
}
.anadido_correcto {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: var(--color2);

}

/****** QUIENES SOMOS*/

.somos>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    color: var(--text);
}

.somos .somos_box1 {
    width: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 50px 0;
}

.somos .somos_box1 p {
    font-family: "regular", sans-serif;
    color: var(--text);
}

.somos .somos_box1 h1 {
    font-family: "semibold", sans-serif;
    font-size: 1.2em;
}

.somos .somos_box1 h2 {
    font-family: "semibold", sans-serif;
    font-size: 1.1em;
}

.somos .somos_box1 h3 {
    font-family: "semibold", sans-serif;
    font-size: 1em;
}

.somos .somos_box2 {
    width: 50%;
    flex-grow: 0;
    flex-shrink: 0;
}

/**** MUNDO MAFLO ***/
.mundo_box {
    padding: 70px 0;
    display: flex;
    flex-direction: column;
}

.mundo_box .mundo_item {
    padding-bottom: 50px;
}

.mundo_box .mundo_item h3 {
    font-family: "bold", sans-serif;
    padding-bottom: 10px;
}

.mundo_box .mundo_item .mundo_fecha {
    font-family: "light", sans-serif;
    padding-bottom: 20px;
}

.mundo_box .mundo_item .mundo_img {
    width: 100%;
    height: 0;
    padding-bottom: 28%;
    position: relative;
    background-color: var(--color2);
}
.mundo_box .mundo_item .mundo_img.mundo_vid {
    width: 100%;
    height: 0;
    padding-bottom: 56.5%;
    position: relative;
    background-color: var(--color2);
}

.mundo_box .mundo_item .mundo_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mundo_box .mundo_item .mundo_text {
    background-color: var(--gris);
    padding: 30px 35px;
}
.mundo_box .mundo_item .mundo_text a:hover{
    text-decoration: underline;
}
.mundo_box .mundo_item .mundo_text p {
    text-align: justify;
    font-family: "regular", sans-serif;
}

.mundo_box .mundo_item .mundo_text div:nth-child(2) {
    display: block;
    text-align: right;
    padding-top: 15px;
    font-family: "bold", sans-serif;
}
/* posts */
.mundo_box .mundo_content{
    padding-bottom: 20px;
    line-height: 150%;
    text-align: justify;
}
.mundo_box .mundo_content h1 {
    font-family: "bold", sans-serif;
    padding-bottom: 10px;
}
.mundo_box .mundo_content img {
    height: auto;
    max-width: 100%;
    padding: 40px 0;
}
.mundo_box .mundo_content .mundo_back {
    display: flex;
    justify-content: right;
    padding: 40px 0;
}
.mundo_box .mundo_content .mundo_back a {
    background-color: var(--color1);
    color: var(--color2);
    padding: 5px 20px;
    border-radius: 6px;
}
/******* distribuidor ****/
.distribuidor {
    padding: 50px 0 60px;
}

.formweb .text1 {
    padding: 0 0 30px;
    font-family: "regular", sans-serif;
    color: var(--text);
    text-align: center;
    font-size: 1.3em;
}
.formweb .text2 {
    padding: 0 0 30px;
    font-family: "regular", sans-serif;
    color: var(--text);
}

.formweb label {
    font-family: "regular", sans-serif;
    color: var(--text);
}

.formweb input,
.formweb select,
.formweb textarea {
    width: 100%;
    padding: 8px 20px;
    box-sizing: border-box;
    background-color: var(--gris);
    border: none;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 20px;
    font-family: "regular", sans-serif;
    color: var(--text);
}

.formweb input::placeholder,
.formweb select::placeholder,
.formweb textarea::placeholder {
    font-family: "regular", sans-serif;
    color: var(--gris2);
}

.formweb textarea {
    height: 130px;
}

.formweb input[type="submit"] {
    background-color: var(--color2);
    font-family: "bold", sans-serif;
    cursor: pointer;
}

.formweb input[type="submit"]:hover {
    box-shadow: 0 0 10px var(--gris2);
}

/*** quitar iconos definidos de los inputs */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/*/////////////////////*/

.infoalert {
    background-color: var(--color2);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block !important;
}

.infoalert a {
    text-decoration: underline;
    padding: 0 10px;
    font-family: "bold", sans-serif;
}



/* PAGINA CATALOGO */

.catalogo_box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 0;
}
.catalogo_box .catalogo_item{
    width: 33.3%;
    display: flex;
    justify-content: center;
}
.catalogo_box .catalogo_item > div{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    transition: all .3s;
}
.catalogo_box .catalogo_item > div:hover{
    transform: scale(1.01);
}
.catalogo_box .catalogo_img{
    max-width: 200px;
    margin: 45px auto;
}
.catalogo_box .catalogo_img img{
    width: 100%;
}
.btn_a{
    background-color: var(--color2);
    padding: 5px 20px;
    border-radius: 6px;
    transition: all .3s;
}
.btn_a:hover{
    background-color: var(--color2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 5px 20px;
    border-radius: 6px;
}
.catalogo_box_code{
    padding: 50px 0;
}
.catalogo_box_code h2{
    padding: 30px 0;
    text-align: center;
}
.catalogo_codigo{
    width: 100%;
    height:100%;

}
.catalogo_codigo iframe{
    width: 100%;
    height:calc(100vh - 50px);

}

.boton_back {
    display: flex;
    justify-content: right;
    padding: 40px 0;
}
.boton_back a {
    background-color: var(--color1);
    color: var(--color2);
    padding: 5px 20px;
    border-radius: 6px;
}
/**** PAGINA FOTOS ********/
.galeria_box{
    padding: 10px 0 70px;
    display: flex;
    flex-direction: column;
}
.galeria_menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0;
}
.galeria_menu li{
    flex: 1;
    padding: 8px;
    box-sizing: border-box;
}
.galeria_menu li a{
    background-color: var(--color1);
    color: var(--blanco);
    width: 100%;
    display: block;
    text-align: center;
    padding: 20px 0;
    border-radius: 4px;
    transition: all .3s;
}
.galeria_menu li a:hover{
    background-color: var(--color2);
    color: var(--color1);
    box-shadow: 0 0 10px var(--color2);
}
.galeria_menu li a.activo{
    background-color: var(--color2);
    color: var(--color1);
}
.galeria_cont{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.galeria_cont_item{
    width: 33.33%;
    padding: 8px;
    box-sizing: border-box;
}
.galeria_cont_img{
    width: 100%;
    height: 0;
    padding-bottom: 58%;
    overflow: hidden;
    position: relative;
}
.galeria_cont_img img{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/****** fancybox galeria ***/
.fancybox-nav span {
    font-size: 1.3em;
    width: 14px !important;
    background: 0 none !important;
    color: #fff;
    font-weight: bold
}
.fancybox-nav i, .fancybox-close i{
    color: var(--blanco);
    text-shadow: 0 0 10px var(--color1);
}
.fancybox-nav.fancybox-prev {
    left: -30px;
}
.fancybox-nav.fancybox-next {
    right: -30px;
}
.fancybox-close{    
    background: 0 none !important;
    width: 16px !important;
    top: 8px !important;
    right: 7px !important;
}
/********* contacto ****/
.contacto_box{
    padding: 50px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:end;
    flex-wrap: wrap;
}
.contacto_box > div{
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.contacto_img{
    width: 25%;
}
.contacto_img img{
    width: 100%;
}
.contacto_map{
    width: 30%;
    text-align: center;
    color: var(--text);
}
.contacto_map iframe{
    width: 100%;
    height: 400px;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
    background-color: var(--color2);
}

.contacto_form{
    width: 45%;
}


/******* BOTON MENU  ***********/
.btn_play {
    display: none;
    cursor: pointer;
    width: 35px;
    transition: all .1s;
}
.btn_play hr {
    border: 0;
    height: 4px;
    width: 100%;
    border-radius: 1px;
    position: relative;
    transform: rotate(0deg);
    top: 0px;
    transition: all .5s;
    margin: 7px auto;
    background-color: var(--blanco);
}
.btn_play:hover{
    box-shadow: 0 0 5px var(--text);
}
.btn_close hr.btn_play_1{
    transform:rotate(45deg);
    top: 5px;
}
.btn_close hr.btn_play_3{
    transform:rotate(-45deg);    
    top: -6px;
}
.btn_close hr.btn_play_2{
    display:none;
    margin:0;
    padding:0;
    height:0;
}
/******* BOTON MENU  ***********/