@charset "UTF-8";
body {
  margin: 0;
  color: #000;
  background: #fffcf7;
}

body, td, th {
  font-size: 16px;
}

*:focus {
  outline: none;
}

a:link, a:hover, a:visited, a:active {
  outline: none;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  html, body {
    height: 100%;
  }
}
.site-main {
  padding-top: 150px;
  min-height: calc(100vh - 122px);
}

@media screen and (max-width: 991px) {
  .site-main {
    min-height: calc(100vh - 150px);
    padding-top: 68px;
  }
}
.site-header {
  font-family: "Roboto", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: url("../images/alas.png") center right no-repeat #FFF;
  padding-bottom: 16px;
  border-bottom: 1px solid #6dc2c1;
  transition: 0.2s linear all;
}
.site-header .top {
  color: #FFF;
  padding: 3px 0;
  background: #347379;
  font-size: 13px;
  transition: 0.2s linear all;
  font-weight: 500;
}
.site-header .top .circle {
  background: #222;
  margin-right: 5px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 2px 5px 0 5px;
}
.site-header .top .circle svg {
  width: 12px;
}
.site-header .top a {
  color: #FFF;
  font-weight: 500;
}
.site-header .logo {
  padding: 15px 0 0 0;
  max-width: 300px;
  width: 100%;
  transition: 0.2s linear all;
}
.site-header .espacio {
  display: none;
}

.header-min {
  top: -30px;
}
.header-min .logo {
  max-width: 150px;
}

@media screen and (max-width: 991px) {
  .site-header {
    background: #FFF;
    padding: 0;
  }
  .site-header .top {
    display: none;
  }
  .site-header .logo {
    padding: 10px 0 10px 0;
    max-width: 150px;
    width: 100%;
  }
  .site-header .espacio {
    display: block;
  }
  .header-min {
    top: 0;
  }
}
.menu-marcas {
  border: 1px solid #999;
  background: #FFF;
  padding: 10px;
  border-radius: 3px;
}
.menu-marcas ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-marcas ul li {
  font-size: 1rem;
  border-bottom: 1px solid rgb(82, 164, 171);
}
.menu-marcas ul li a {
  color: #222;
  font-weight: 500;
  padding-left: 1rem;
  display: block;
  padding: 5px 0 5px 1rem;
  text-transform: uppercase;
}
.menu-marcas ul li a:hover, .menu-marcas ul li a.activo {
  background: #347379;
  color: #FFF;
}
.menu-marcas ul li:last-child {
  border: none;
}

.menu {
  width: 60%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.menu > ul {
  margin: 0;
  padding: 0;
}
.menu > ul > li {
  display: inline-block;
  line-height: 13px;
  position: static;
  width: 100%;
  text-align: center;
}
.menu > ul > li:hover > ul {
  display: flex;
}
.menu > ul > li > a {
  position: relative;
  display: block;
  padding: 0 0 4px 0;
  color: #2C2C34;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s all;
  cursor: pointer;
  text-transform: uppercase;
}
.menu > ul > li > a:hover:before, .menu > ul > li > a.activo:before {
  transform: translateY(22px);
  opacity: 1;
}
.menu > ul > li > a:hover:after, .menu > ul > li > a.activo:after {
  transform: translateY(22px) rotate(45deg);
  opacity: 1;
}
.menu > ul > li > a:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 25%;
  right: 25%;
  background: #347379;
  height: 2px;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.3s ease;
}
.menu > ul > li > a:hover, .menu > ul > li > a.activo {
  color: #347379;
}
.menu ul > li > ul {
  list-style: none;
  padding: 16px 0 0 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  margin: auto;
  display: none;
  margin-top: -15px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  z-index: 1;
  background-color: #52a4ab;
}
.menu ul > li > ul li {
  width: 10%;
}
.menu ul > li > ul li a {
  display: block;
  padding: 5px 0px;
  color: #FFF;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}
.menu ul > li > ul li a:hover {
  text-decoration: none;
  background: #6dc2c1;
  color: #FFF;
}

.menu-r {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #FFF;
  width: 250px;
  transform: translateX(-250px);
  overflow-y: scroll;
  z-index: 998;
  padding: 0.5rem;
}
.menu-r ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-r ul li {
  display: inline-block;
  line-height: 20px;
  position: relative;
  width: 100%;
  font-size: 1rem;
  padding: 5px 0;
}
.menu-r ul li a {
  color: #347379;
  font-weight: 500;
}
.menu-r ul li ul {
  padding-left: 1rem;
}
.menu-r ul li ul li a {
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
}

#header__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  margin: 0 0 0 auto;
}
#header__icon span {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  display: block;
  position: absolute;
  background: #347379;
  transition: all 0.25s ease;
  transform-origin: 0px 100%;
}
#header__icon span:nth-child(2) {
  top: calc(50% - 2px);
}
#header__icon span:nth-child(3) {
  bottom: 0;
}

.with--sidebar #header__icon span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 0px);
}
.with--sidebar #header__icon span:nth-child(2) {
  opacity: 0;
}
.with--sidebar #header__icon span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, 2px);
}
.with--sidebar .menu-r {
  transform: translateX(0);
}

.menu-flotante-container {
  display: none;
}

.with--sidebar .menu-flotante-container {
  display: flex;
  align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 997;
  background: rgba(0, 0, 0, 0.7);
}

.quienes-somos {
  font-family: "Roboto", sans-serif;
  color: #555;
}
.quienes-somos h2 {
  font-size: 18px;
  color: #6dc2c1;
}
.quienes-somos h1 {
  color: rgb(82, 164, 171);
}
.quienes-somos .barra {
  background: #6dc2c1;
  width: 10%;
  height: 5px;
}

.imagen-adaptada {
  height: 75vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.imagen-adaptada .img-fondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(3px) brightness(1.3) grayscale(0.6);
}

.imagen-adaptada .swiper-slide {
  width: 264px;
}

.imagen-adaptada .swiper {
  width: 80%;
}

.imagen-adaptada .btn {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 8px 24px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  z-index: 1;
  margin-top: 2rem;
}

.imagen-adaptada .btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 991px) {
  .imagen-adaptada {
    height: 80vh;
  }
}
.productos-buscador .pagination {
  --bs-pagination-active-bg: #407e83;
  --bs-pagination-active-border-color: #407e83;
  --bs-pagination-color: #407e83;
  margin: 0;
}
.productos-buscador h1 {
  color: rgb(52, 115, 121);
}
.productos-buscador .barra {
  background: #6dc2c1;
  width: 10%;
  height: 5px;
}
.productos-buscador .campo1 {
  width: 60%;
}

.card-producto {
  --bs-success-rgb: 82, 164, 171;
}
.card-producto .marca {
  color: #fff;
  background-color: rgb(52, 115, 121);
  margin: 0;
  padding: 5px 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.card-producto .card-img-overlay {
  bottom: auto;
}
.card-producto .precio {
  margin: 0;
  font-weight: 600;
}
.card-producto .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-producto h2 {
  font-size: 1.3rem;
}

.card-comprado {
  --bs-success-rgb: 244, 67, 54;
}

@media screen and (max-width: 991px) {
  .productos-buscador .campo1 {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .productos-buscador .campo2 {
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
  }
  .card-producto .card-title {
    font-size: 1.2rem;
  }
  .card-producto .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.articulo-listas {
  border: 1px solid #CCC;
  background: #FFF;
  border-radius: 5px;
  display: flex;
}
.articulo-listas .foto {
  max-width: 150px;
  width: 100%;
}
.articulo-listas .titulo {
  max-width: 250px;
  width: 100%;
}
.articulo-listas .titulo h1 {
  font-size: 15px;
  color: #13285e;
  text-transform: uppercase;
}
.articulo-listas .titulo h1 span {
  font-size: 15px;
  color: #253e87;
  text-transform: uppercase;
}
.articulo-listas .monto {
  max-width: 280px;
  width: 100%;
  text-align: center;
}
.articulo-listas .monto h3 {
  font-size: 15px;
  color: #EC3338;
}
.articulo-listas .monto h4 {
  font-size: 17px;
  color: #6dc2c1;
}
.articulo-listas .btn-eliminar {
  text-align: center;
  display: block;
  color: #fe221b;
  background: #FFF;
  border: 1px solid #fe221b;
  font-weight: 400;
  padding: 5px 25px;
  transition: 0.2s linear all;
}
.articulo-listas .btn-eliminar svg {
  width: 17px;
  height: 17px;
}
.articulo-listas .btn-eliminar:hover {
  background: #fe221b;
  color: #FFF;
}

.resumen {
  border: 1px solid #CCC;
  background: #FFF;
  font-size: 18px;
  border-radius: 5px;
  margin-bottom: 25px;
}

.cartel-final {
  background: #fff;
  padding: 10px;
}
.cartel-final h1 {
  color: #dc3545;
}

@media screen and (max-width: 991px) {
  .articulo-listas {
    display: block;
  }
  .articulo-listas .titulo, .articulo-listas .monto {
    max-width: none;
    text-align: center;
  }
  .articulo-listas .foto {
    margin: 0 auto !important;
  }
  .articulo-listas .btn-eliminar {
    padding: 2px;
    margin-top: 20px;
  }
}
/*

.superior{
    h1{
        font-size: 22px;
        color: $verde;
        text-transform: uppercase;
        margin: 0;
        span{
            font-size: 22px;
            //text-transform:  none;
            color: $azul2;
        }
        svg{
            width: 40px;
            height: 40px;
        }
    }
    .pagination{
        margin: 0;
    }
}

.columna{
    display: none;
    padding-top: 15px;
}
.filtro{
    padding-top: 60px;
    font-family: 'Roboto', sans-serif;
    .control{
        padding: 10px 10px 0 10px;
        font-weight: 700;
    }
    h2 {
        font-size: 15px;
        color: #fff;
        padding: 5px 8px;
        background: $verde; //$azul2;
        margin-top: 10px;
        border-radius: 4px;
        span {
            width: 15px;
            height: 26px;
            margin-right: 5px;
            display: block;
        }
        svg{
            width: 15px;
        }
    }
    a{
        display: block;
        padding-bottom: 3px;
        font-size: 13px;
        .item {
            color: #636363;
            padding-left: 8px;
			text-transform: uppercase
        }
        .count {
            color: #D5A021;
        }
    }
    a.cerrar {
        display: block;
        padding: 3px 8px;
        margin: 0 0 5px 0;
        color: #fff;
        background: #222;
        .item {
            color: #fff;
            padding-left: 0;
        }
        svg {
            width: 16px;
            height: 16px;
            color: red;
        }
    }
    .inv{
        //display: none;
    }
}

.prd-interior{
    padding: 0 20px;
    .producto{
        width: 235px;
        .pie{
            min-height: 82px;
            overflow: hidden;
        }
    }
}

.producto{
    border: 2px solid #fff;
    padding: 0;
    //margin-bottom: 15px;
    background: #fff;
    width: 240px;
    border-radius: 0px;
    font-family: 'Roboto', sans-serif;
    figure{
        background: no-repeat;
        height: 0;
        padding-bottom: 60%;
        position: relative;
        margin-bottom: 0px;
        .content{
            width: 100%;
            height: 100%;
            position: absolute;
            text-align: center;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            img{
                //height: 75%
            }
			font-weight:700;
			color:#253e87;
			text-shadow: 0 0 3px rgba(255,255,255,0.9);
        }
    }
    .invisible{
            display: none;
        }
    .titulo{
        padding: 5px;
        color: #FFF;
        background: $verde;
        text-transform: uppercase;
        span{
            font-weight: 700
        }
    }
    .pie{
        padding: 5px;
        color: #FFF;
        font-size: 12px;
        background: #2C2C34;
        border-radius: 0 0 8px 8px;
        font-weight: 700;
		min-height:82px;
		text-transform: uppercase;
        .bajada{
            font-size: 11px;
            font-weight: 400;
        }
    }
}

a .producto:hover{
    border-color: $azul2;
}

.precio-compra{
	margin-bottom: 25px;
	font-weight: 700;
	color: #2d6267;
	width: 240px;
	background: #f5e9e9;
	border-radius: 0 0 8px 8px;
	font-size: 14px;
	a{
		color: #187b2f
	}
	a.verde{
		color: #187b2f
	}
	svg{
		width: 17px;
		margin-left: 8px
	}
}
.prd-interior{
	.precio-compra{
		width: 235px;
	}	

}

.chk-comprado{
	display: none;
	color:#187b2f
}
.comprado{
	.btn-comprar{
		display: none
	}
	.chk-comprado{
		display: inline-block;
	}
}


.con-precio{
	//border-radius: 8px 8px 0 0;
	.pie{
		border-radius: 0;
	}	
}


*/
/*

//Caja de filtros
.caja-filtro{
    background: #EEE;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    label{
        color: #999;
        font-size: 13px;
        font-family: 'Roboto Condensed', sans-serif;
        margin-bottom: .1rem;
    }
    option:disabled {
        background: #f00;
        display: none
   }
}


//Ampliación de los productos
.prd-detalle{
    max-width: 1140px;
    width: 100%;
    figure{
        text-align: center;
        margin: 0;
        height: 100%;
        display: flex;
        align-items: center;
        img{
            max-height: calc(50vh);
        }
    }
    .titulo{
        font-size: 30px;
        color: $azul2;
        text-transform: uppercase;
        span{
            font-weight: 700
        }
    }
    p{
        color: #999;
    }
    .detalles{
        color: #333;
        font-size: 14px;
		text-transform: uppercase;
        .text-right{
            font-weight: 700;
        }
    }
    .subtitulo{
        font-weight: 700;
        text-align: center;
        background: $azul2;
        color: #FFF;
        border-radius: 3px;
    }
}

.fancybox-content{
    padding: 20px
}


.izeta-logo{
	background:#EC3338;
}


//--------------------------------------------------------------------------------------------------------------------

.boton-filtro{
    padding: 5px 8px;
    background: #253e87;
    border-radius: 5px;
    a{
        text-align: center;
        color: #FFF;
    }
}




@media screen and (max-width: $screen-fixed ) {
    h1{
        font-size: 22px;
        color: $azul1;
        text-transform: uppercase;
        margin: 0 0 0.8rem 0;
        span{
            font-size: 22px;
            text-transform:  none;
            color: $azul2;
        }
    }
	.prd-interior{
		.precio-compra{
			width: 170px;
		}	

	}

    .prd-interior{
        padding: 0 8px;
        .producto{
            width: 170px;
        }
    }
    .producto{
        width: 170px;
        .titulo{
            font-size: 13px;
        }
    }

    .caja{
        .producto{
            .titulo{
                font-size: 13px;
            }
        }
        .cnt-producto{
            margin-right: 0px;
            &:nth-child(4n+1) {  
               margin-right: 0;
            }
        }
        &:after {
            content:none;
        } 
    }
}


@media screen and (max-width: $screen-fixed ) {
    aside.filtro{
        position: fixed;
        z-index: 1;
        background: #EEE;
        bottom: 0;
        top: 0;
        left: 0;
        padding: 64px 8px 25px 8px;
        -webkit-transform: translateX(-$menu-width -200px);
        transform: translateX(-$menu-width - 200px);
        overflow-y: scroll;
    }
    .with--filter{
        aside.filtro{
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
}

*/
footer {
  font-family: "Roboto", sans-serif;
}
footer .marca {
  padding: 20px;
  background: #E6E6E6;
}
footer .firma {
  color: #FFF;
  font-weight: 500;
  background: #347379;
}
footer .firma .logo {
  width: 120px;
  padding-bottom: 15px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 991px) {
  footer .logo {
    margin: 0 auto;
  }
}
.espacio-minimo {
  min-height: calc(100vh - 258px);
}

.carrito-bottom {
  position: fixed;
  right: 35px;
  bottom: 35px;
  display: none;
}
.carrito-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FFF;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: #347379;
  color: #FFF;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.carrito-bottom a img {
  max-width: 24px;
}