/******************************
*   Tipografias
******************************/
@import url('typo.css');
@import url('all.css');

:root {
    --blanco: 255, 255, 255;
    --negro: 0, 0, 0;
    --dark: 37, 40, 44;
    --deg_l: linear-gradient(90deg, rgb(248, 239, 210, 1), rgb(233, 223, 187, 1), rgb(232, 230, 210, 1));
    --griscrem: 125, 118, 106;
    --gris_l: 246, 246, 246;
    --gris_d: 98, 105, 114;
    --cafe: 185, 126, 71;
}

::selection {
    background: rgb(var(--negro), .8);
    color: rgb(var(--blanco), 1);
}
::-moz-selection {
    background: rgb(var(--negro), .8);
    color: rgb(var(--blanco), 1);
}
::-webkit-selection {
    background: rgb(var(--negro), .8);
    color: rgb(var(--blanco), 1);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    background: ;
    color: rgb(var(--gris_d), 1); 
    font-family: 'Satoshi', Helvetica, system-ui;
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
}
figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img { margin: 0 auto; }
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 500;
    color: rgb(var(--negro), 1);
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px;
    background: rgb(var(--negro), .05);
    border-radius: 0px;
    color: rgb(var(--dark), 1);
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: rgb(var(--dark), 1);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: #565656; }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

label {
    font-weight: 500;
    /* font-size: 14px; */
}

p { margin: 0; }
p + p { margin-top: 20px; }

/******************************
*   Loader
******************************/
#intro .logo__ani span,
#intro .c__cta div { opacity: 0; }

#login .logo__ani span,
#login .cont__form,
#login .text__form { opacity: 0; }

#form-consierge .logo__ani span,
#form-consierge .cont__form  { opacity: 0; }

.form__error {color: rgb(109, 36, 36);}

.c__messages { text-align: center; }
* + .c__messages,
.c__messages + * { margin-top: 30px; }
.c__messages .message + .message { margin-top: 8px; }
.message--error { color: rgb(180, 30, 30); }
.message--success { color: rgb(30, 130, 60); }

.user__in .header {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}
.user__in main { opacity: 0; }


/******************************
*	General
******************************/
main {
    min-height: calc(100vh - 141px);
    min-height: calc(100dvh - 141px);
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}
.gray_back{
    background-color:rgb(var(--gris_l));
}
.main-landing {
    min-height: calc(40vh - 20px);
    min-height: calc(40dvh - 20px);
    position: relative;
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;

    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
    padding: 0% 3% 40px;
    margin-top: 3%;;
    margin-left: 3%;
    margin-right: 3%;
    
    
}
main section {
    width: 100%;
    position: relative;
    padding: 40px 0;
}
.info__top {
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
}
.h__full {
    min-height: 100vh;
    min-height: 100dvh;
}

/*-------- Logo --------*/
.logo {
    font-weight: 300;
    font-style: normal;
    letter-spacing: .4em;
    line-height: 1;
    text-transform: uppercase;
    font-size: 30px;
    display: inline-block;
    margin-right: -.4em;
}

/******************************
*   Logo
******************************/
.logo__ani { text-align: center; }
.logo__ani .logo { font-size: 9vw; }
.logo__ani + * { margin-top: 100px; }

/*-------- Header section --------*/
.head__sect + * {
    margin-left: auto;
    margin-right: auto;
}
.head__sect + *,
.head__sect + .c__cta { margin-top: 60px; }
.head__sect { text-align: center; }
.head__sect h3 + * { margin-top: 20px; }
.head__sect h3 { font-size: 26px; }
.head__sect p {
    font-size: 18px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.h__left + * { margin-top: 40px; }
.h__left { text-align: left; }
.h__left h3 { font-size: 26px; }


/*-------- CTA --------*/
.c__cta { margin-left: -10px; }
* + .c__cta { margin-top: 40px; }
.c__cta + .c__cta { margin-top: 10px; }
.c__cta > div {
    text-align: center;
    margin: -10px 0;
}
.cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    margin: 11px;
    font-weight: 500;
    min-width: 200px;
    position: relative;
    text-align: center;
    line-height: 1;
    z-index: 1;
}
a.cta__01 { color: rgb(var(--blanco), 1); }
.cta__01 {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--dark), 1);
}
.cta__02 { border: 1px solid rgb(var(--gris_d), 1); }
.cta__02::before {
    content: '';
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    position: absolute;
    background: rgb(var(--negro), 1);
    z-index: -1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cta__02:hover,
.cont__card:hover .cta__02 {
    color: rgb(var(--blanco), 1);
    border-color: rgb(var(--negro), 1);
}
.cta__02:hover::before,
.cont__card:hover .cta__02::before {
    left: 0;
    right: auto;
    width: 100%;
}
.cta__03 {
    background: var(--deg_l);
    margin: 22px;
}
.cta__03::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 3px;
    /* border: 1px solid rgb(var(--dark), .2); */
}
.cta__01 + .cta__03,
.cta__02 + .cta__03 { margin-left: 22px; }
.cta__03 + .cta__01,
.cta__03 + .cta__02 { margin-left: 10px; }

.fa-key-skeleton {
    display: inline-block;
    margin-right: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.fa-key-skeleton::before {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.cont__mess .c__cta { text-align: center; }

/*-------- Formularios --------*/
.cont__form + *,
* + .cont__form { margin-top: 40px; }
.cont__camps {
    margin-left: auto;
    margin-right: auto;
    max-width: 450px;
}
.camps__line .camp input,
.camps__line .camp select {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}
.camps__line .c__camp { border-bottom: 1px solid rgb(var(--negro), .2); }
.camps__line .c__camp::after {
    position: absolute;
    top: 100%;
    left: 0;
    content: '';
    width: 0%;
    border-top: 1px solid rgb(var(--negro), .5);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.camps__line .camp__active::after { width: 100%; }

.camp + .camp { margin-top: 30px; }
.c__camp { position: relative; }
.camp > div { text-align: center; }
.camp a {
    opacity: .6;
    text-decoration: underline rgb(var(--negro), .4);
}
.camp select { padding-right: 46px; }
.i__camp {
    position: absolute;
    top: 0;
    width: 46px;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.camp .arrow { right: 0 }
.camp .cta { width: 80%; }

.camp + .c__cta { margin-top: 60px; }

.text__form { text-align: center; }
.text__form a { text-decoration: underline; }

.cont__map {
    position: relative;
    width: 100%;
    height: 60vh;
}
.cont__map > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-------- Hero --------*/
.h__fil + .h__fil { margin-top: 20px; }
.h__fil { position: relative; }
.h__top {
    position: relative;
    z-index: 5;
}
.bg__publu {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: 0;
    z-index: -1;
}
.bg__publu figure,
.bg__publu figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner__media a { display: block; }
.cont__banner + .cont__slide { margin-top: 15px; }
.slide__img picture {
    width: 100%;
    display: block;
}
.slide__img picture source,
.slide__img picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.h__tbot .cont__slide { position: relative; }

.slide__txt h2 { font-size: 22px; }
.slide__txt > * + * { margin-top: 20px; }
.slick-slide > div { display: flex; }
.h__tbot .contrls { justify-content: center; }


/*-------- Grid / Items / Card  --------*/
.grid > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-flow: wrap;
    -ms-flex-wrap: wrap;
    flex-flow: wrap;

    row-gap: 60px;
    margin: 0 -15px;
}
.grid__item { padding: 0 15px; }
.item__s { width: 50%; }
.item__l { width: 100%; }
.item__sl { width: 100%; }

.cont__card {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    height: 100%;
}
.fil__card + .fil__card,
.fil__card > div+ div { margin-top: 30px; }

.card__img {
    position: relative;
    overflow: hidden;
}
.card__img figure,
.card__img figure::before  {
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.card__img figure {
    position: relative;
    /* padding-top: 35vh; */
    height: 230px;
}
.card__img figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--cafe), 0);
    z-index: 1;
}
.card__img figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cont__card:hover figure {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transform-origin: 10% 5%;
}
.cont__card:hover figure::before { background: rgb(var(--cafe), .3); }
.card__text * > * + *,
.card__text * + * { margin-top: 6px; }
.card__text * { font-size: 14px; }
.t__title { font-size: 20px; }
.t__price { opacity: .5; }
.t__stock { color: rgb(var(--cafe), 1); }
.fil__card .cta {
    margin: 0;
    min-width: 120px;
    padding: 10px;
}

.g__share > div { justify-content: center; }
.g__share .cont__card:hover figure {
    -webkit-transform: initial;
    -moz-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
    transform: initial;
}
.g__share .cont__card:hover figure::before { background: transparent; }

/*-------- Full fil  --------*/
.fil__col:nth-child(2) { background: rgb(var(--gris_l), 1); }
.fil__col figure {
    width: 100%;
    height: 100%;
    padding-top: 60%;
    position: relative;
}
.fil__col figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.col__contnt { padding: 40px 15px; }
.col__contnt .t__price {
    opacity: 1;
    color: rgb(var(--negro), 1);
}

/*-------- Slide Left  --------*/
.slide__left {
    padding-left: 15px;
    overflow: hidden;
}
.slider__cards .slick-list { width: 110%; }
.slider__cards .slick-track {
    margin-left: -20px;
    margin-right: -20px;
}
.slider__cards .slick-track > div { padding: 0 20px; }

/*-------- Slider --------*/
.cont__slide .slick-dots {
    margin-top: 20px;
    position: relative;
    bottom: initial;
    display: flex;
    justify-content: center;
}
.cont__slide .slick-dots li.slick-active button:before {
    opacity: .75;
    color: rgb(var(--cafe), 1);
}
.cont__slide .slick-dotted.slick-slider { margin-bottom: 0; }
.cont__slide .slick-dots li,
.cont__slide .slick-dots li button,
.cont__slide .slick-dots li button::before {
    width: 10px;
    height: 10px;
    line-height: 13px;
}
.cont__slide .slick-dots li button::before { font-size: 8px; }

.contrls { display: flex; }
* + .contrls { margin-top: 10px; }
.slider__full .contrls,
.slide__galle .contrls { justify-content: center; }
.arrow__contrl {
    font-size: 28px;
    line-height: 28px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-content: center;
    opacity: .4;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.arrow__contrl:hover { opacity: 1; }

.col__contnt .c__cta { text-align: center; }

* + .cont__min { margin-top: 20px; }
.cont__min {
    padding: 0 30px;
    position: relative;
}
.cont__min .arrow__contrl {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
}
.cont__min .a__prev { left: 0; }
.cont__min .a__next { right: 0; }
.graf__min { cursor: pointer; }
.graf__min figure {
    width: 100%;
    padding-top: 100%;
    position: relative;
}
.graf__min figure::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border: 1px solid rgb(var(--negro), 0);
    background: rgb(var(--cafe), 0);
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.graf__min figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cont__min .slick-track > div {
    padding-left: 15px;
    padding-right: 15px;
}
.min__slide .slick-current .graf__min figure::before {
    border: 1px solid rgb(var(--negro), 1);
    background: rgb(var(--cafe), .3);
}

/*-------- Paginador --------*/
.cont__pag ul,
.cont__pag ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont__pag ul li a {
    width: 30px;
    height: 30px;
    font-weight: 500;
    border-radius: 2px;
}
.cont__pag ul li a:hover,
.cont__pag ul li a.active {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--negro), 1);
}

/*-------- Textos --------*/
.box__text * + h4,
.box__text * + h5 { margin-top: 40px; }
.box__text h4,
.box__text h5 { font-size: 20px; }
.box__text * + p,
.box__text ol + p,
.box__text ul + p,
.box__text p + ol,
.box__text p + ul { margin-top: 20px; }

.box__text > div,
.box__text > figure,
.box__text > img { margin: 20px 0; }

.box__text ul,
.box__text ol { padding-inline-start: 20px; }
.box__text ul li::marker,
.box__text ol li::marker {
    color: rgb(var(--cafe), 1);
    font-weight: 500;
}
.box__text ul { list-style: disc; }
.box__text ol { list-style: decimal; }
.box__text ol[type='a'] { list-style: lower-alpha; }
.box__text ul li + li,
.box__text ol li + li { margin-top: 15px; }

/*-------- head__img --------*/
.head__img figure {
    width: 100%;
    height: 45vh;
    min-height: 350px;
    max-height: 400px;
}
.head__img figure img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.head__sect p.note__for { font-size: 14px; }
.note__for span { display: inline-block; }
.note__for span + span {
    margin-left: 15px ;
    padding-left: 15px;
    border-left: 1px solid rgb(var(--gris_d), .4);
}

/*-------- Textos nota --------*/
.txt__note > * {
    margin-left: auto;
    margin-right: auto;
}
.txt__note > h2,
.txt__note > h3,
.txt__note > h4,
.txt__note > h5,
.txt__note > ol,
.txt__note > ul,
.txt__note > p { max-width: 700px; }
.txt__note > figure { max-width: 800px; margin: auto;}

.box__text .slide__left {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-right: -15px;
}
.slide__galle .slider { width: 110%; }
.gallery__slide .slick-track {
    margin-right: -20px;
    margin-left: -20px;
}
.gallery__slide .slick-track > div {
    padding-left: 20px;
    padding-right: 20px;
}

.img__graf figure {
    width: 100%;
    padding-top: 60%;
    position: relative;
}
.img__graf figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*-------- Listado de items --------*/
.tem__list + .tem__list { margin-top: 30px; }
.tem__list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0 -15px;
}
.list__col { padding: 0 15px; }
.col__01 {
    width: 130px;
    min-width: 130px;
}
.col__01 figure {
    position: relative;
    width: 100%;
    padding-top: 70%;
}
.col__01 figure img {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.col__02 { width: calc(100% - 130px); }
.col__02 * > * + *  { margin-top: 20px; }
.col__02 h4 { font-size: 20px; }
.col__02 .c__cta { margin-top: 15px; }

/*-------- Cart Page --------*/
.txt__vacio {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}
.txt__vacio + *,
* + .cont__total { margin-top: 30px; }

.cont__total {
    text-align: right;
    font-weight: 700;
    color: rgb(var(--negro), 1);
    font-size: 20px;
}

/*-------- Tablas --------*/
.cont__table table { width: 100%; }
.cont__table table tr th,
.cont__table table tr td {
    padding: 12px;
    line-height: 1.1;
}
.cont__table table th {
    text-align: center;
    font-weight: 500;
    color: rgb(var(--negro), 1);
}
.cont__table table tr td { border-top: 1px solid rgb(var(--negro), .2); }

.image figure { width: 150px; }

.price { text-align: center; }
.quantity { width: 100px; }
.total,
.remove {
    width: 120px;
    text-align: center;
}
.total { font-weight: 500; }
.remove button {
    width: 30px;
    height: 30px;
    cursor: pointer;
}


/******************************
*	Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}

@media (min-width : 480px) {
}

/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}

@media (max-width : 679px) {
.item__l .card__img figure { height: 200px; }
}
@media (min-width : 680px) {
.logo__ani .logo { font-size: 60px; }
.head__sect h3 { font-size: 32px; }
/*-------- Hero --------*/
.cont__banner + .cont__slide { margin-top: 25px; }
.slide__img picture { height: 55vh; }
.h__tbot .cont__slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.slide__txt { padding-right: 20%; }
.h__tbot .contrls {
    position: absolute;
    top: 0;
    right: 0;
}

/*-------- Grid / Items / Card  --------*/
.grid > div { margin: 0 -20px; }
.grid__item { padding: 0 20px; }
.item__s { width: 33.33%; }
.item__l { width: 66.66%; }
.item__sl { width: 66.66%; }

.card__img figure { height: 310px; }

/*-------- Listado de items --------*/
.col__01 {
    width: 250px;
    min-width: 250px;
}
.col__02 { width: calc(100% - 250px); }
}

/* Small Devices, Nav */
@media (max-width : 767px) {
}

/* Medium Devices to Large Devices */
@media (min-width : 768px){
/*-------- Hero --------*/
.bg__publu {
    top: -25px;
    left: -25px;
    right: -25px;
}

/*-------- Full fil  --------*/
.full__fil,
.fil__col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.fil__col {
    width: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.col__contnt {
    max-width: 650px;
    padding: 60px 15px;
    width: 90%;
}
.fil__col figure { padding-top: 55%; }

}

/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}

/* Large Devices, Wide Screens */
@media (max-width : 991px) {
.cont__table {
    border: 1px solid rgb(var(--negro), .2);
    overflow: auto;
    -webkit-box-shadow:inset 0 0 10px 1px rgb(var(--negro), .1);
    box-shadow:inset 0 0 10px 1px rgb(var(--negro), .1);
}
.name { min-width: 250px; }
}

@media (min-width : 992px) {
/*-------- Hero --------*/
.slide__txt { padding-right: 50%; }

/*-------- Grid / Items / Card  --------*/
.item__s { width: 25%; }
.item__l { width: 50%; }
.item__sl { width: 70%; }

/*-------- Full fil  --------*/
.fil__col:nth-child(1) { width: 54%; }
.fil__col:nth-child(2) { width: 46%; }

}

@media (min-width : 992px) and (max-width : 1200px) {
}



/******************************
*   Header
******************************/
.header {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1000;
    color: rgb(var(--negro), 1);
}
.header.active { background: rgb(var(--blanco), 1); }
.header.scroll {
    background: rgb(var(--blanco), 1);
    -webkit-box-shadow: 0 5px 10px 0 rgb(var(--negro), .1);
    box-shadow: 0 5px 10px 0 rgb(var(--negro), .1);
}
.fil__head { font-size: 14px; }
.logo__main {
    font-size: inherit;
    line-height: 1;
}
.logo__main a { display: block; }
.fil__top {
    padding: 8px 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.top__opt {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.top__opt > div + div { margin-left: 15px; }

/*---------- User ----------*/
.opt__drop { position: relative; }
.fil__opt {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.fil__opt > * + * { margin-left: 6px }
.sum__opt {
    position: absolute;
    top: 100%;
    max-width: 200px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-box-shadow: 0 8px 10px 0 rgb(var(--negro),.1);
    box-shadow: 0 8px 10px 0 rgb(var(--negro), .1);
    z-index: 100;
}
.sum__opt ul { background: rgb(var(--blanco), 1); }
.sum__opt ul li a {
    display: block;
    padding: 10px;
    text-align: center;
}
.sum__opt ul li a:hover { background: rgb(var(--negro), .05); }
.opt__drop:hover .sum__opt {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.opt__drop .arrow {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.opt__drop:hover .arrow {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

/*---------- Search ----------*/
.btn__search {
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
}
.btn__search i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#btn__search { font-size: 18px; }

.cont__serach {
    width: 100%;
    position: absolute;
}
.cont__serach input {
    padding: 6px 6px 6px 43px;
    background: rgb(var(--blanco), 1);
    border: 1px solid rgb(var(--negro), .5);
    border-radius: 4px;
}
.cont__form .btn__search {
    position: absolute;
    top: 0;
    left: 0;
    width: 43px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*---------- Cart ----------*/
.btn__cart {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.btn__cart a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.btn__cart a i { font-size: 18px; }
.counter__cart {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: rgb(var(--negro), 1);
    color: rgb(var(--blanco), 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.counter__cart span {
    font-size: 8px;
    line-height: 1;
    font-weight: bold;
}

/*---------- Languaje ----------*/
.opt__lang .sum__opt ul li a { text-transform: capitalize; }

/*---------- BTN Mob ----------*/
.btn__mob {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.bars {
    position: absolute; 
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn__mob .bars span {
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 10px;
    background: rgb(var(--negro), 1);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__mob .bars span + span {  margin-top: 8px; }
.btn__mob.active .bars span:nth-child(1) {
    -webkit-transform: translate(0px, 9px) rotate(45deg);
    -moz-transform: translate(0px, 9px) rotate(45deg);
    -ms-transform: translate(0px, 9px) rotate(45deg);
    -o-transform: translate(0px, 9px) rotate(45deg);
    transform: translate(0px, 9px) rotate(45deg);
}
.btn__mob.active .bars span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__mob.active .bars span:nth-child(3) {
    -webkit-transform: translate(0px, -9px) rotate(-45deg);
    -moz-transform: translate(0px, -9px) rotate(-45deg);
    -ms-transform: translate(0px, -9px) rotate(-45deg);
    -o-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}
.nav__opt ul li a {
    display: block;
    padding: 10px;
}


/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
.logo__main .logo { font-size: 6vw; }
}
@media (min-width : 680px) {
}
/* Small Devices, Nav */
@media (max-width : 1111px) {

.cont__serach {
    top: 100%;
    left: 0;
    background: rgb(var(--blanco), 1);
    padding: 15px;
    display: none;
    -webkit-box-shadow: 0 8px 10px 0 rgb(var(--negro), .1);
    box-shadow: 0 8px 10px 0 rgb(var(--negro), .1);
}
.top__opt > div + div.opt__cart { margin-left: 5px; }
.fil__bot {
    top: 100%;
    left: -100%;
    background: rgb(var(--blanco), 1);
    position: absolute;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.fil__bot.active { left: 0; }
.fil__bot > div { padding: 30px 10px; }

.opt__fil > div > span { width: 100%; }
.opt__fil .sum__opt {
    width: 100%;
    left: 0;
    max-width: initial;
}
.opt__lang {
    padding: 10px;
    background: rgb(var(--negro), .1);
}
.opt__user {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgb(var(--negro), .1);
}
.opt__user .arrow { display: none; }
.opt__user .sum__opt {
    position: relative;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    -webkit-box-shadow: initial;
    box-shadow: initial;
}
.opt__user .sum__opt ul li a { text-align: left; }
.opt__user .fil__opt {
    padding-left: 10px;
    margin-bottom: 8px;
    pointer-events: none;
}

}

/* Medium Devices to Large Devices */
@media (min-width : 1112px){
.opt__search > .btn__search,
.opt__mob { display: none; }
.fil__top {
    padding: 15px;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.fil__top > * + * { margin-bottom: 8px; }
.top__opt { width: 100%; }
.cont__serach {
    width: 240px;
    position: relative;
}
.nav__opt ul {
    display: flex;
    justify-content: center;
}
.sum__opt { padding-top: 6px; }
.opt__lang .sum__opt ul li a { padding: 6px 10px; }

}




/******************************
*	Footer
******************************/
.footer {
    margin-top: 40px;
    padding: 60px 15px;
    color: rgb(var(--blanco), 1);
    background: rgb(var(--dark), 1);
    font-size: 12px;
    text-align: center;
}
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 { color: rgb(var(--blanco), 1); }
.fil__foo + .fil__foo { margin-top: 60px; }
.foo__nav ul li { display: inline-block; }
.foo__nav ul li a {
    display: block;
    color: rgb(var(--blanco), .9);
    padding: 4px 6px;
}
.foo__contact .head__sect p {
    color: rgb(var(--blanco), .4);
    font-size: inherit;
}
.foo__contact .cont__form { max-width: 460px; }
.foo__contact .cont__form textarea {
    background: rgb(var(--blanco), .1);
    color: rgb(var(--blanco), 1);
    border-radius: 4px;
    font-size: 14px;
    height: 126px;
    resize: none;
}
.foo__contact .cont__form textarea::placeholder { color: rgb(var(--blanco), 1); }
.foo__contact .cont__form .cta__01 {
    background: rgb(var(--blanco), 1);
    color: rgb(var(--dark), 1);
}

.foo__legal { color: rgb(var(--blanco), .4); }
.foo__legal p > * {
    display: inline-block;
    margin: 0 6px;
}
.foo__legal a { text-decoration: underline; }

/* BOTONS FOR NOTES */
.content_btn_notes{
    position: absolute;
    margin: auto;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 469px) {
}
@media (min-width : 680px) {
.foo__legal br { display: none; }
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}


