/* ---------------------------------------- */
/* Predefinidos */

/* Variables */
:root {
    --breakpoint-xxs: 320px;
    --breakpoint-xs: 570px;
    --breakpoint-s: 1040px;
    --breakpoint-m: 1170px;
    --breakpoint-l: 1500px;
}

/* Limpieza */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;

}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
}

figure {
    margin: 0;
}

p:empty {
    display: none;
}

s {
    text-decoration: line-through;
}

/* Antialiasing */
body,
input,
textarea,
select,
button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Barra de WordPress */
#wpadminbar {
    top: auto;
    bottom: 0;
    opacity: 0.5;
    transition: 0.5s;
}

#wpadminbar:hover {
    opacity: 1;
}

/* Fieldset */
fieldset {
    border: none;
    background: none;
}

/* ---------------------------------------- */
/* Mostrar y ocultar elementos */

@media (max-width: 1440px) {

    .hide--l {
        display: none !important;
    }

}

@media (max-width: 1110px) {

    .hide--m {
        display: none !important;
    }

}

@media (max-width: 980px) {

    .hide--s {
        display: none !important;
    }

}

@media (max-width: 570px) {

    .hide--xs {
        display: none !important;
    }

}

@media (max-width: 320px) {

    .hide--xxs {
        display: none !important;
    }

}

@media (min-width: 1441px) {

    .show--l {
        display: none !important;
    }

}

@media (min-width: 1111px) {

    .show--m {
        display: none !important;
    }

}

@media (min-width: 981px) {

    .show--s {
        display: none !important;
    }

}

@media (min-width: 571px) {

    .show--xs {
        display: none !important;
    }

}

@media (min-width: 321px) {

    .show--xxs {
        display: none !important;
    }

}


/* ---------------------------------------- */
/* Bloquear scroll */

.scroll--block {
    overflow-y: hidden;
}


/* ---------------------------------------- */
/* Posicionamiento */

.position {
    top: 0;
    width: 100%;
}

/* Posición */
.position--sticky {
    position: sticky;
}

.position--fixed {
    position: fixed;
}

.position--absolute {
    position: absolute;
}

/* Tamaño */
.position--fullscreen {
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
}

/* Z-index */
.position--index-1000 {
    z-index: 1000;
}



/* ---------------------------------------- */
/* Section */

.section {
    position: relative;
    width: 100%;
}

/* Margen */
.section--margin-none {
    margin-block: 0;
}

.section--margin-s {
    margin-block: clamp(60px, 10vw, 100px);
}

.section--margin-m {
    margin-block: clamp(80px, 12vw, 150px);
}

.section--margin-l {
    margin-block: clamp(100px, 14vw, 250px);
}

.section--margin-top-none {
    margin-top: 0;
}

.section--margin-top-s {
    margin-top: clamp(60px, 10vw, 100px);
}

.section--margin-top-m {
    margin-top: clamp(80px, 12vw, 150px);
}

.section--margin-top-l {
    margin-top: clamp(100px, 14vw, 250px);
}

.section--margin-bottom-none {
    margin-bottom: 0;
}

.section--margin-bottom-s {
    margin-bottom: clamp(60px, 10vw, 100px);
}

.section--margin-bottom-m {
    margin-bottom: clamp(80px, 12vw, 150px);
}

.section--margin-bottom-l {
    margin-bottom: clamp(100px, 14vw, 250px);
}

/* Relleno */
.section--padding-none {
    padding-block: 0;
}

.section--padding-s {
    padding-block: clamp(60px, 10vw, 100px);
}

.section--padding-m {
    padding-block: clamp(80px, 12vw, 150px);
}

.section--padding-l {
    padding-block: clamp(100px, 14vw, 250px);
}

.section--padding-top-none {
    padding-top: 0;
}

.section--padding-top-s {
    padding-top: clamp(60px, 10vw, 100px);
}

.section--padding-top-m {
    padding-top: clamp(80px, 12vw, 150px);
}

.section--padding-top-l {
    padding-top: clamp(100px, 14vw, 250px);
}

.section--padding-bottom-none {
    padding-bottom: 0;
}

.section--padding-bottom-s {
    padding-bottom: clamp(60px, 10vw, 100px);
}

.section--padding-bottom-m {
    padding-bottom: clamp(80px, 12vw, 150px);
}

.section--padding-bottom-l {
    padding-bottom: clamp(100px, 14vw, 250px);
}

/* Ajuste para que funcionen los fondos */
.section>.background {
    position: static;
}

/* Padding-top obligatorio en primera sección cuando tiene header transparente */
@media (max-width: 980px) {

    body.has-transparent-header main>*:first-child .section--padding-s.section--padding-top-default,
    body.has-transparent-header main>*:first-child .section--padding-m.section--padding-top-default,
    body.has-transparent-header main>*:first-child .section--padding-l.section--padding-top-default,
    body.has-transparent-header main>*:first-child .section--padding-top-s,
    body.has-transparent-header main>*:first-child .section--padding-top-m,
    body.has-transparent-header main>*:first-child .section--padding-top-l {
        padding-top: 140px;
    }

}



/* ---------------------------------------- */
/* Fondo */

.background {
    position: relative;
    height: 100%;
}

.background>* {
    position: relative;
    z-index: 1;
}

/* Imagen o vídeo */
.background__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}


/* ---------------------------------------- */
/* Contenedor */

.container {
    margin-inline: auto;
    padding-inline: 0;
    width: 100%;
}

.container+.container {
    margin-top: clamp(50px, 7vw, 60px);
}

/* Anchura */
/* .container--full {
    padding-inline: min(8vw, 80px);
} */

.container--l {
    padding-inline: min(8vw, 80px);
    width: min(100%, var(--breakpoint-l));
}

.container--m {
    padding-inline: min(8vw, 80px);
    width: min(100%, var(--breakpoint-m));
}

.container--s {
    padding-inline: min(8vw, 80px);
    width: min(100%, var(--breakpoint-s));
}

.container--xs {
    padding-inline: min(8vw, 80px);
    width: min(100%, var(--breakpoint-xs));
}

.container--xxs {
    padding-inline: min(8vw, 80px);
    width: min(100%, var(--breakpoint-xxs));
}


@media (max-width: 570px) {

    /*     .container--full {
        padding-inline: 20px;
    } */

    .container--l {
        padding-inline: 20px;
    }

    .container--m {
        padding-inline: 20px;
    }

    .container--s {
        padding-inline: 20px;
    }

    .container--xs {
        padding-inline: 20px;
    }

    .container--xxs {
        padding-inline: 20px;
    }

}



/* ---------------------------------------- */
/* Grid */

.grid {
    display: grid;
    width: 100%;
    align-items: stretch;
}

.grid>div>.card {
    height: 100%;
}

/* Columnas */
.grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1440px) {

    .grid--cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid--cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid--cols-6 {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (max-width: 1110px) {

    .grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--cols-6 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 980px) {

    .grid--cols-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid--cols-2>* {
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .grid--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 570px) {

    .grid--cols-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid--cols-3>* {
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .grid--cols-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid--cols-4>* {
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .grid--cols-5 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid--cols-5>* {
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .grid--cols-6 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid--cols-6>* {
        grid-column: unset !important;
        grid-row: unset !important;
    }

}

/* Separación entre filas */
.grid--rows-gap-10 {
    row-gap: 10px;
}

.grid--rows-gap-20 {
    row-gap: 20px;
}

.grid--rows-gap-30 {
    row-gap: 30px;
}

.grid--rows-gap-40 {
    row-gap: 40px;
}

.grid--rows-gap-50 {
    row-gap: 50px;
}

.grid--rows-gap-60 {
    row-gap: clamp(50px, 8vw, 60px);
}

.grid--rows-gap-70 {
    row-gap: clamp(50px, 8vw, 70px);
}

.grid--rows-gap-80 {
    row-gap: clamp(50px, 8vw, 80px);
}

.grid--rows-gap-90 {
    row-gap: clamp(50px, 8vw, 90px);
}

.grid--rows-gap-100 {
    row-gap: clamp(60px, 9vw, 100px);
}

.grid--rows-gap-110 {
    row-gap: clamp(60px, 9vw, 110px);
}

.grid--rows-gap-120 {
    row-gap: clamp(60px, 9vw, 120px);
}

.grid--rows-gap-130 {
    row-gap: clamp(60px, 9vw, 130px);
}

.grid--rows-gap-140 {
    row-gap: clamp(70px, 10vw, 140px);
}

.grid--rows-gap-150 {
    row-gap: clamp(70px, 10vw, 150px);
}

.grid--rows-gap-160 {
    row-gap: clamp(70px, 10vw, 160px);
}

.grid--rows-gap-170 {
    row-gap: clamp(70px, 10vw, 170px);
}

.grid--rows-gap-180 {
    row-gap: clamp(80px, 11vw, 180px);
}

.grid--rows-gap-190 {
    row-gap: clamp(80px, 11vw, 190px);
}

.grid--rows-gap-200 {
    row-gap: clamp(80px, 11vw, 200px);
}

.grid--rows-gap-210 {
    row-gap: clamp(80px, 11vw, 210px);
}

.grid--rows-gap-220 {
    row-gap: clamp(90px, 12vw, 220px);
}

.grid--rows-gap-230 {
    row-gap: clamp(90px, 12vw, 230px);
}

.grid--rows-gap-240 {
    row-gap: clamp(90px, 12vw, 240px);
}

.grid--rows-gap-250 {
    row-gap: clamp(90px, 12vw, 250px);
}

/* Separación entre columnas */
.grid--cols-gap-10 {
    column-gap: 10px;
}

.grid--cols-gap-20 {
    column-gap: 20px;
}

.grid--cols-gap-30 {
    column-gap: clamp(20px, 1vw, 30px);
}

.grid--cols-gap-40 {
    column-gap: clamp(20px, 2vw, 40px);
}

.grid--cols-gap-50 {
    column-gap: clamp(20px, 2vw, 50px);
}

.grid--cols-gap-60 {
    column-gap: clamp(20px, 3vw, 60px);
}

.grid--cols-gap-70 {
    column-gap: clamp(20px, 3vw, 70px);
}

.grid--cols-gap-80 {
    column-gap: clamp(20px, 4vw, 80px);
}

.grid--cols-gap-90 {
    column-gap: clamp(20px, 4vw, 90px);
}

.grid--cols-gap-100 {
    column-gap: clamp(20px, 5vw, 100px);
}

.grid--cols-gap-110 {
    column-gap: clamp(20px, 5vw, 110px);
}

.grid--cols-gap-120 {
    column-gap: clamp(20px, 6vw, 120px);
}

.grid--cols-gap-130 {
    column-gap: clamp(20px, 6vw, 130px);
}

.grid--cols-gap-140 {
    column-gap: clamp(20px, 7vw, 140px);
}

.grid--cols-gap-150 {
    column-gap: clamp(20px, 7vw, 150px);
}

.grid--cols-gap-160 {
    column-gap: clamp(20px, 8vw, 160px);
}

.grid--cols-gap-170 {
    column-gap: clamp(20px, 8vw, 170px);
}

.grid--cols-gap-180 {
    column-gap: clamp(20px, 9vw, 180px);
}

.grid--cols-gap-190 {
    column-gap: clamp(20px, 9vw, 190px);
}

.grid--cols-gap-200 {
    column-gap: clamp(20px, 10vw, 200px);
}

.grid--cols-gap-210 {
    column-gap: clamp(20px, 10vw, 210px);
}

.grid--cols-gap-220 {
    column-gap: clamp(20px, 11vw, 220px);
}

.grid--cols-gap-230 {
    column-gap: clamp(20px, 11vw, 230px);
}

.grid--cols-gap-240 {
    column-gap: clamp(20px, 12vw, 240px);
}

.grid--cols-gap-250 {
    column-gap: clamp(20px, 12vw, 250px);
}

/* Alineación */
.grid--valign-top {
    align-items: flex-start;
}

.grid--valign-middle {
    align-items: center;
}

.grid--valign-bottom {
    align-items: flex-end;
}

/* Opciones para mobile */
@media (max-width: 570px) {

    .grid--mobile-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--mobile-invert {
        display: flex;
        flex-direction: column-reverse;
    }

}


/* ---------------------------------------- */
/* Flex */

.flex,
.wpforms-field-pagebreak>div {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

/* Altura completa */
.flex--fullheight {
    height: 100%;
    flex-wrap: nowrap;
}

/* Dirección */
.flex--direction-row {
    flex-direction: row;
}

.flex--direction-column {
    flex-direction: column;
}

/* Distribución */
.flex--distribute-xxl {
    gap: 68px;
}

.flex--distribute-xl {
    gap: 48px;
}

.flex--distribute-l {
    gap: 28px;
}

.flex--distribute-m {
    gap: 16px;
}

.flex--distribute-s,
.wpforms-field-pagebreak>div {
    gap: 8px;
}

.flex--distribute-xs {
    gap: 2px;
}


@media (max-width: 1440px) {

    .flex--distribute-xxl {
        gap: 56px;
    }

    .flex--distribute-xl {
        gap: 32px;
    }

}

@media (max-width: 1110px) {

    .flex--distribute-xxl {
        gap: 24px;
    }

    .flex--distribute-xl {
        gap: 20px;
    }

    .flex--distribute-l {
        gap: 23px;
    }

    .flex--distribute-m {
        gap: 12px;
    }

    .flex--distribute-s {
        gap: 6px;
    }

}

@media (max-width: 680px) {

    .flex--distribute-xxl {
        gap: 28px;
    }

    .flex--distribute-l {
        gap: 16px;
    }

}

/* Alineación */
.flex--align-left {
    justify-content: flex-start;
}

.flex--align-center {
    justify-content: center;
}

.flex--align-right,
.wpforms-field-pagebreak>div {
    justify-content: flex-end;
}

.flex--align-justify {
    justify-content: space-between;
}

/* Alineación vertical */
.flex--valign-top {
    align-items: flex-start;
}

.flex--valign-middle {
    align-items: center;
}

.flex--valign-bottom {
    align-items: flex-end;
}

/* Wrap */
.flex--nowrap {
    flex-wrap: nowrap;
}


/* ---------------------------------------- */
/* Caja */

.box {
    position: relative;
}

/* Sombra */
.box--shadow-1 {
    box-shadow: 0 0 6px 0 rgb(0 0 0 / 5%);
}

.box--shadow-2 {
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 10%);
}

.box--shadow-3 {
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
}

.box--shadow-4 {
    box-shadow: 0 0 9px 0 rgb(0 0 0 / 20%);
}

.box--shadow-5 {
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
}

.box--shadow-6 {
    box-shadow: 0 0 11px 1px rgb(0 0 0 / 30%);
}

.box--shadow-7 {
    box-shadow: 0 0 12px 1px rgb(0 0 0 / 35%);
}

.box--shadow-8 {
    box-shadow: 0 0 13px 2px rgb(0 0 0 / 40%);
}

.box--shadow-9 {
    box-shadow: 0 0 14px 2px rgb(0 0 0 / 45%);
}

.box--shadow-10 {
    box-shadow: 0 0 15px 2px rgb(0 0 0 / 50%);
}

/* Bordes redondeados */
.box--border-radius-5 {
    border-radius: 5px;
    contain: paint;
}

.box--border-radius-10 {
    border-radius: 10px;
    contain: paint;
}

.box--border-radius-15 {
    border-radius: 15px;
    contain: paint;
}

.box--border-radius-20 {
    border-radius: 20px;
    contain: paint;
}

.box--border-radius-25 {
    border-radius: 25px;
    contain: paint;
}

.box--border-radius-30 {
    border-radius: 30px;
    contain: paint;
}

.box--border-radius-35 {
    border-radius: 35px;
    contain: paint;
}

.box--border-radius-40 {
    border-radius: 40px;
    contain: paint;
}

.box--border-radius-45 {
    border-radius: 45px;
    contain: paint;
}

.box--border-radius-50 {
    border-radius: 50px;
    contain: paint;
}

.box--border-radius-55 {
    border-radius: 55px;
    contain: paint;
}

.box--border-radius-60 {
    border-radius: 60px;
    contain: paint;
}

.box--border-radius-65 {
    border-radius: 65px;
    contain: paint;
}

.box--border-radius-70 {
    border-radius: 70px;
    contain: paint;
}

.box--border-radius-75 {
    border-radius: 75px;
    contain: paint;
}

.box--border-radius-80 {
    border-radius: 80px;
    contain: paint;
}


/* ---------------------------------------- */
/* Relleno */

/* Horizontal */
.padding--horizontal-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.padding--horizontal-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding--horizontal-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.padding--horizontal-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding--horizontal-25 {
    padding-top: clamp(20px, 3vw, 25px);
    padding-bottom: clamp(20px, 3vw, 25px);
}

.padding--horizontal-30 {
    padding-top: clamp(20px, 3vw, 30px);
    padding-bottom: clamp(20px, 3vw, 30px);
}

.padding--horizontal-35 {
    padding-top: clamp(25px, 3vw, 35px);
    padding-bottom: clamp(25px, 3vw, 35px);
}

.padding--horizontal-40 {
    padding-top: clamp(25px, 4vw, 40px);
    padding-bottom: clamp(25px, 4vw, 40px);
}

.padding--horizontal-45 {
    padding-top: clamp(30px, 4vw, 45px);
    padding-bottom: clamp(30px, 4vw, 45px);
}

.padding--horizontal-50 {
    padding-top: clamp(30px, 4vw, 50px);
    padding-bottom: clamp(30px, 4vw, 50px);
}

.padding--horizontal-55 {
    padding-top: clamp(35px, 5vw, 55px);
    padding-bottom: clamp(35px, 5vw, 55px);
}

.padding--horizontal-60 {
    padding-top: clamp(35px, 5vw, 60px);
    padding-bottom: clamp(35px, 5vw, 60px);
}

.padding--horizontal-65 {
    padding-top: clamp(35px, 5vw, 65px);
    padding-bottom: clamp(35px, 5vw, 65px);
}

.padding--horizontal-70 {
    padding-top: clamp(40px, 6vw, 70px);
    padding-bottom: clamp(40px, 6vw, 70px);
}

.padding--horizontal-75 {
    padding-top: clamp(40px, 6vw, 75px);
    padding-bottom: clamp(40px, 6vw, 75px);
}

.padding--horizontal-80 {
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 80px);
}

/* Vertical */
.padding--vertical-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.padding--vertical-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.padding--vertical-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.padding--vertical-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.padding--vertical-25 {
    padding-left: clamp(20px, 3vw, 25px);
    padding-right: clamp(20px, 3vw, 25px);
}

.padding--vertical-30 {
    padding-left: clamp(20px, 3vw, 30px);
    padding-right: clamp(20px, 3vw, 30px);
}

.padding--vertical-35 {
    padding-left: clamp(25px, 3vw, 35px);
    padding-right: clamp(25px, 3vw, 35px);
}

.padding--vertical-40 {
    padding-left: clamp(25px, 4vw, 40px);
    padding-right: clamp(25px, 4vw, 40px);
}

.padding--vertical-45 {
    padding-left: clamp(30px, 4vw, 45px);
    padding-right: clamp(30px, 4vw, 45px);
}

.padding--vertical-50 {
    padding-left: clamp(30px, 4vw, 50px);
    padding-right: clamp(30px, 4vw, 50px);
}

.padding--vertical-55 {
    padding-left: clamp(35px, 5vw, 55px);
    padding-right: clamp(35px, 5vw, 55px);
}

.padding--vertical-60 {
    padding-left: clamp(35px, 5vw, 60px);
    padding-right: clamp(35px, 5vw, 60px);
}

.padding--vertical-65 {
    padding-left: clamp(35px, 5vw, 65px);
    padding-right: clamp(35px, 5vw, 65px);
}

.padding--vertical-70 {
    padding-left: clamp(40px, 6vw, 70px);
    padding-right: clamp(40px, 6vw, 70px);
}

.padding--vertical-75 {
    padding-left: clamp(40px, 6vw, 75px);
    padding-right: clamp(40px, 6vw, 75px);
}

.padding--vertical-80 {
    padding-left: clamp(40px, 6vw, 80px);
    padding-right: clamp(40px, 6vw, 80px);
}


/* ---------------------------------------- */
/* Superponer */

.overlap {
    position: relative;
    z-index: 1;
}

@media (min-width: 1441px) {

    /* Arriba */
    .overlap--top-50 {
        margin-top: -50px;
    }

    .overlap--top-100 {
        margin-top: -100px;
    }

    .overlap--top-150 {
        margin-top: -150px;
    }

    .overlap--top-200 {
        margin-top: -200px;
    }

    .overlap--top-250 {
        margin-top: -250px;
    }

    .overlap--top-300 {
        margin-top: -300px;
    }

    .overlap--top-350 {
        margin-top: -350px;
    }

    .overlap--top-400 {
        margin-top: -400px;
    }

    .overlap--top-450 {
        margin-top: -450px;
    }

    .overlap--top-500 {
        margin-top: -500px;
    }

    /* Abajo */
    .overlap--bottom-50 {
        margin-bottom: -50px;
    }

    .overlap--bottom-100 {
        margin-bottom: -100px;
    }

    .overlap--bottom-150 {
        margin-bottom: -150px;
    }

    .overlap--bottom-200 {
        margin-bottom: -200px;
    }

    .overlap--bottom-250 {
        margin-bottom: -250px;
    }

    .overlap--bottom-300 {
        margin-bottom: -300px;
    }

    .overlap--bottom-350 {
        margin-bottom: -350px;
    }

    .overlap--bottom-400 {
        margin-bottom: -400px;
    }

    .overlap--bottom-450 {
        margin-bottom: -450px;
    }

    .overlap--bottom-500 {
        margin-bottom: -500px;
    }

}

@media (max-width: 1440px) and (min-width: 1111px) {

    /* Arriba */
    .overlap--l-top-50 {
        margin-top: -50px;
    }

    .overlap--l-top-100 {
        margin-top: -100px;
    }

    .overlap--l-top-150 {
        margin-top: -150px;
    }

    .overlap--l-top-200 {
        margin-top: -200px;
    }

    .overlap--l-top-250 {
        margin-top: -250px;
    }

    .overlap--l-top-300 {
        margin-top: -300px;
    }

    .overlap--l-top-350 {
        margin-top: -350px;
    }

    .overlap--l-top-400 {
        margin-top: -400px;
    }

    .overlap--l-top-450 {
        margin-top: -450px;
    }

    .overlap--l-top-500 {
        margin-top: -500px;
    }

    /* Abajo */
    .overlap--l-bottom-50 {
        margin-bottom: -50px;
    }

    .overlap--l-bottom-100 {
        margin-bottom: -100px;
    }

    .overlap--l-bottom-150 {
        margin-bottom: -150px;
    }

    .overlap--l-bottom-200 {
        margin-bottom: -200px;
    }

    .overlap--l-bottom-250 {
        margin-bottom: -250px;
    }

    .overlap--l-bottom-300 {
        margin-bottom: -300px;
    }

    .overlap--l-bottom-350 {
        margin-bottom: -350px;
    }

    .overlap--l-bottom-400 {
        margin-bottom: -400px;
    }

    .overlap--l-bottom-450 {
        margin-bottom: -450px;
    }

    .overlap--l-bottom-500 {
        margin-bottom: -500px;
    }

}

@media (max-width: 1110px) and (min-width: 981px) {

    /* Arriba */
    .overlap--m-top-50 {
        margin-top: -50px;
    }

    .overlap--m-top-100 {
        margin-top: -100px;
    }

    .overlap--m-top-150 {
        margin-top: -150px;
    }

    .overlap--m-top-200 {
        margin-top: -200px;
    }

    .overlap--m-top-250 {
        margin-top: -250px;
    }

    .overlap--m-top-300 {
        margin-top: -300px;
    }

    .overlap--m-top-350 {
        margin-top: -350px;
    }

    .overlap--m-top-400 {
        margin-top: -400px;
    }

    .overlap--m-top-450 {
        margin-top: -450px;
    }

    .overlap--m-top-500 {
        margin-top: -500px;
    }

    /* Abajo */
    .overlap--m-bottom-50 {
        margin-bottom: -50px;
    }

    .overlap--m-bottom-100 {
        margin-bottom: -100px;
    }

    .overlap--m-bottom-150 {
        margin-bottom: -150px;
    }

    .overlap--m-bottom-200 {
        margin-bottom: -200px;
    }

    .overlap--m-bottom-250 {
        margin-bottom: -250px;
    }

    .overlap--m-bottom-300 {
        margin-bottom: -300px;
    }

    .overlap--m-bottom-350 {
        margin-bottom: -350px;
    }

    .overlap--m-bottom-400 {
        margin-bottom: -400px;
    }

    .overlap--m-bottom-450 {
        margin-bottom: -450px;
    }

    .overlap--m-bottom-500 {
        margin-bottom: -500px;
    }

}

@media (max-width: 980px) and (min-width: 571px) {

    /* Arriba */
    .overlap--s-top-50 {
        margin-top: -50px;
    }

    .overlap--s-top-100 {
        margin-top: -100px;
    }

    .overlap--s-top-150 {
        margin-top: -150px;
    }

    .overlap--s-top-200 {
        margin-top: -200px;
    }

    .overlap--s-top-250 {
        margin-top: -250px;
    }

    .overlap--s-top-300 {
        margin-top: -300px;
    }

    .overlap--s-top-350 {
        margin-top: -350px;
    }

    .overlap--s-top-400 {
        margin-top: -400px;
    }

    .overlap--s-top-450 {
        margin-top: -450px;
    }

    .overlap--s-top-500 {
        margin-top: -500px;
    }

    /* Abajo */
    .overlap--s-bottom-50 {
        margin-bottom: -50px;
    }

    .overlap--s-bottom-100 {
        margin-bottom: -100px;
    }

    .overlap--s-bottom-150 {
        margin-bottom: -150px;
    }

    .overlap--s-bottom-200 {
        margin-bottom: -200px;
    }

    .overlap--s-bottom-250 {
        margin-bottom: -250px;
    }

    .overlap--s-bottom-300 {
        margin-bottom: -300px;
    }

    .overlap--s-bottom-350 {
        margin-bottom: -350px;
    }

    .overlap--s-bottom-400 {
        margin-bottom: -400px;
    }

    .overlap--s-bottom-450 {
        margin-bottom: -450px;
    }

    .overlap--s-bottom-500 {
        margin-bottom: -500px;
    }

}

@media (max-width: 570px) and (min-width: 321px) {

    /* Arriba */
    .overlap--xs-top-50 {
        margin-top: -50px;
    }

    .overlap--xs-top-100 {
        margin-top: -100px;
    }

    .overlap--xs-top-150 {
        margin-top: -150px;
    }

    .overlap--xs-top-200 {
        margin-top: -200px;
    }

    .overlap--xs-top-250 {
        margin-top: -250px;
    }

    .overlap--xs-top-300 {
        margin-top: -300px;
    }

    .overlap--xs-top-350 {
        margin-top: -350px;
    }

    .overlap--xs-top-400 {
        margin-top: -400px;
    }

    .overlap--xs-top-450 {
        margin-top: -450px;
    }

    .overlap--xs-top-500 {
        margin-top: -500px;
    }

    /* Abajo */
    .overlap--xs-bottom-50 {
        margin-bottom: -50px;
    }

    .overlap--xs-bottom-100 {
        margin-bottom: -100px;
    }

    .overlap--xs-bottom-150 {
        margin-bottom: -150px;
    }

    .overlap--xs-bottom-200 {
        margin-bottom: -200px;
    }

    .overlap--xs-bottom-250 {
        margin-bottom: -250px;
    }

    .overlap--xs-bottom-300 {
        margin-bottom: -300px;
    }

    .overlap--xs-bottom-350 {
        margin-bottom: -350px;
    }

    .overlap--xs-bottom-400 {
        margin-bottom: -400px;
    }

    .overlap--xs-bottom-450 {
        margin-bottom: -450px;
    }

    .overlap--xs-bottom-500 {
        margin-bottom: -500px;
    }

}

@media (max-width: 320px) {

    /* Arriba */
    .overlap--xxs-top-50 {
        margin-top: -50px;
    }

    .overlap--xxs-top-100 {
        margin-top: -100px;
    }

    .overlap--xxs-top-150 {
        margin-top: -150px;
    }

    .overlap--xxs-top-200 {
        margin-top: -200px;
    }

    .overlap--xxs-top-250 {
        margin-top: -250px;
    }

    .overlap--xxs-top-300 {
        margin-top: -300px;
    }

    .overlap--xxs-top-350 {
        margin-top: -350px;
    }

    .overlap--xxs-top-400 {
        margin-top: -400px;
    }

    .overlap--xxs-top-450 {
        margin-top: -450px;
    }

    .overlap--xxs-top-500 {
        margin-top: -500px;
    }

    /* Abajo */
    .overlap--xxs-bottom-50 {
        margin-bottom: -50px;
    }

    .overlap--xxs-bottom-100 {
        margin-bottom: -100px;
    }

    .overlap--xxs-bottom-150 {
        margin-bottom: -150px;
    }

    .overlap--xxs-bottom-200 {
        margin-bottom: -200px;
    }

    .overlap--xxs-bottom-250 {
        margin-bottom: -250px;
    }

    .overlap--xxs-bottom-300 {
        margin-bottom: -300px;
    }

    .overlap--xxs-bottom-350 {
        margin-bottom: -350px;
    }

    .overlap--xxs-bottom-400 {
        margin-bottom: -400px;
    }

    .overlap--xxs-bottom-450 {
        margin-bottom: -450px;
    }

    .overlap--xxs-bottom-500 {
        margin-bottom: -500px;
    }

}



/* ---------------------------------------- */
/* Botones */

.button,
.wpforms-submit,
.wpforms-page-button,
.hs-button {
    display: inline-flex;
    cursor: pointer;
    transition: 0.15s;
    line-height: 1;
    text-align: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Iconos */
.button>.button__icon--left {
    margin-left: 0 !important;
}

.button>.button__icon--right {
    margin-right: 0 !important;
}

/* Anotación */
.buttons__item__annotation {
    display: block;
    margin-top: 10px;
}



/* ---------------------------------- */
/* Formularios */

.form {
    text-align: left;
    width: 100%;
}

.form--wpforms .wpforms-container {
    margin: 0;
}

/* Espacio entre campos */
.form--wpforms .wpforms-field,
.form--hubspot .hs-form-field,
.form-row {
    padding: 0 !important;
    margin-bottom: 16px;
}

.form--wpforms .wpforms-field:last-child,
.form-row-wrapper:last-child {
    margin-bottom: 0;
}

/* Espacio respecto a CTAs */
.form--wpforms .wpforms-submit-container,
.form--wpforms .wpforms-field-pagebreak,
.form--hubspot .hs_submit {
    margin-top: 35px;
    padding: 0 !important;
}

/* Campos de WooCommerce */
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
}

.select2-container .select2-selection--single {
    height: 56px;
    border-radius: 5px;
    background-color: #FBF6F6;
    border-color: #EAEAEA;
    font-size: 16px;
    line-height: 1.7;
    display: flex;
    align-items: center;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 20px;
}

.select2-selection__arrow {
    top: 14px !important;
    right: 10px !important;
    width: 20px !important;
}

.input--little+.select2-container .select2-selection--single {
    height: 42px;
    margin-bottom: 1px;
}

.input--little+.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 12px;
}

.input--little+.select2-selection__arrow {
    top: 8px !important;
}

/* Limpiar campos */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="radio"],
input[type="checkbox"],
input[type="number"],
textarea,
select {
    appearance: none;
    background: none;
    outline: none;
    border: 1px solid;
}

/* Campos de texto y select */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100% !important;
    max-width: none !important;
}

textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 70px;
    max-height: 350px;
}

/* Select */
select {
    cursor: pointer;
}

.form--hubspot .hs-fieldtype-select .input {
    position: relative;
}

.wpforms-field-select::after,
.form--hubspot .hs-fieldtype-select .input::after {
    font-family: 'Material Symbols Outlined';
    content: "expand_more";
    -webkit-font-feature-settings: 'liga';
    font-size: 22px;
    pointer-events: none;
    position: absolute;
    color: #636363;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Fecha */
.form--wpforms .wpforms-datepicker-wrap .wpforms-field-medium+.wpforms-datepicker-clear {
    right: 12px !important;
}

/* Checkbox y radio */
input[type="checkbox"],
input[type="radio"] {
    width: 20px !important;
    min-width: 20px;
    max-width: 20px;
    height: 20px !important;
    margin: 0 !important;
    cursor: pointer;
}

.form--wpforms .wpforms-field-gdpr-checkbox ul,
.form--wpforms .wpforms-field-checkbox ul,
.form--wpforms .wpforms-field-radio ul,
.form--hubspot .hs-fieldtype-booleancheckbox ul,
.form--hubspot .hs-fieldtype-checkbox ul,
.form--hubspot .hs-fieldtype-radio ul {
    padding: 0;
    margin: 0;
    line-height: 1.3;
}

.form--wpforms .wpforms-field-gdpr-checkbox ul,
.form--hubspot .hs-fieldtype-booleancheckbox ul {
    line-height: 1.5;
}

.form--wpforms .wpforms-field-gdpr-checkbox,
.form--wpforms .wpforms-field-checkbox,
.form--wpforms .wpforms-field-radio,
.form--wpforms .wpforms-field-file-upload,
.form--hubspot .hs-fieldtype-booleancheckbox,
.form--hubspot .hs-fieldtype-checkbox,
.form--hubspot .hs-fieldtype-radio,
.form--hubspot .hs-fieldtype-file {
    margin: 25px 0;
}

.form--wpforms .wpforms-field-gdpr-checkbox li,
.form--wpforms .wpforms-field-checkbox li,
.form--wpforms .wpforms-field-radio li,
.form--hubspot .hs-fieldtype-booleancheckbox li,
.form--hubspot .hs-fieldtype-checkbox li,
.form--hubspot .hs-fieldtype-radio li {
    display: flex;
    margin: 0;
    margin-bottom: 7px;
}

.form--hubspot .hs-fieldtype-booleancheckbox li label,
.form--hubspot .hs-fieldtype-checkbox li label,
.form--hubspot .hs-fieldtype-radio li label,
.woocommerce-form__label-for-checkbox {
    display: flex;
}

.form--wpforms .wpforms-field-gdpr-checkbox li:last-child,
.form--wpforms .wpforms-field-checkbox li:last-child,
.form--wpforms .wpforms-field-radio li:last-child,
.form--hubspot .hs-fieldtype-booleancheckbox li:last-child,
.form--hubspot .hs-fieldtype-checkbox li:last-child,
.form--hubspot .hs-fieldtype-radio li:last-child {
    margin-bottom: 0;
}

.form--wpforms .wpforms-field-gdpr-checkbox .wpforms-field-label-inline,
.form--wpforms .wpforms-field-checkbox .wpforms-field-label-inline,
.form--wpforms .wpforms-field-radio .wpforms-field-label-inline,
.form--hubspot .hs-fieldtype-booleancheckbox li label span,
.form--hubspot .hs-fieldtype-checkbox li label span,
.form--hubspot .hs-fieldtype-radio li label span,
.woocommerce-form__label-for-checkbox>span {
    padding-left: 10px;
    cursor: pointer;
}

.form--wpforms .wpforms-field-gdpr-checkbox .wpforms-field-label-inline a,
.form--wpforms .wpforms-field-checkbox .wpforms-field-label-inline a,
.form--wpforms .wpforms-field-radio .wpforms-field-label-inline a,
.form--hubspot .hs-fieldtype-booleancheckbox li label span a,
.form--hubspot .hs-fieldtype-checkbox li label span a,
.form--hubspot .hs-fieldtype-radio li label span a {
    text-decoration: underline;
    border: none !important;
}


/* Range */
input[type=range] {
    height: 24px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #343434;
    background: #f0f0f0;
    border-radius: 20px;
    border: 0px solid #343434;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #343434;
    border: 0px solid #343434;
    height: 15px;
    width: 15px;
    border-radius: 25px;
    background: #343434;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #f0f0f0;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #343434;
    background: #f0f0f0;
    border-radius: 20px;
    border: 0px solid #343434;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #343434;
    border: 0px solid #343434;
    height: 15px;
    width: 15px;
    border-radius: 25px;
    background: #343434;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #f0f0f0;
    border: 0px solid #343434;
    border-radius: 40px;
    box-shadow: 0px 0px 0px #343434;
}

input[type=range]::-ms-fill-upper {
    background: #f0f0f0;
    border: 0px solid #343434;
    border-radius: 40px;
    box-shadow: 0px 0px 0px #343434;
}

input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #343434;
    border: 0px solid #343434;
    height: 15px;
    width: 15px;
    border-radius: 25px;
    background: #343434;
    cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
    background: #f0f0f0;
}

input[type=range]:focus::-ms-fill-upper {
    background: #f0f0f0;
}


/* Letra pequeña del RGPD */
.form--wpforms .wpforms-field-gdpr-checkbox .wpforms-field-description,
.form--hubspot .hs-richtext {
    height: 60px;
    overflow-y: auto;
    color: #a2a2a2;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}

.form--hubspot .hs-richtext {
    margin-bottom: -10px !important;
}

.form--hubspot .hs-richtext p {
    margin: 0;
}

/* Campos de archivo */
.form--wpforms .modern-title {
    color: #837b7b;
}


/* Labels */
.form--wpforms .wpforms-field-label,
.form--hubspot .hs-form-field>label,
.wcform__field__label {
    margin-bottom: 5px;
    display: block;
}

.form--wpforms .wpforms-field-checkbox .wpforms-field-label,
.form--wpforms .wpforms-field-radio .wpforms-field-label,
.form--hubspot .hs-fieldtype-checkbox>label,
.form--hubspot .hs-fieldtype-radio>label {
    margin-bottom: 10px;
}


/* Textos de ayuda */
.form--hubspot .hs-field-desc {
    display: block;
    margin-top: -4px;
    margin-bottom: 6px;
}

.form--wpforms .wpforms-container .wpforms-field-description {
    margin-top: 5px;
    margin-bottom: 8px;
}

.wcform__field__description {
    margin-top: 5px;
    display: block;
}


/* Asteriscos de campos requeridos */
.form--wpforms .wpforms-required-label,
.form--hubspot .hs-form-required,
.woocommerce-form__label-for-checkbox .required {
    display: none;
}

/* Mensajes de error */
.form--wpforms .wpforms-container label.wpforms-error,
.form--hubspot .hs-error-msg {
    margin-top: 7px;
    display: block;
    line-height: 1.4;
}

.form--wpforms .wpforms-field-gdpr-checkbox label.wpforms-error,
.form--wpforms .wpforms-field-checkbox label.wpforms-error,
.form--wpforms .wpforms-field-radio label.wpforms-error,
.form--hubspot .hs-fieldtype-booleancheckbox .hs-error-msg,
.form--hubspot .hs-fieldtype-checkbox .hs-error-msg,
.form--hubspot .hs-fieldtype-radio .hs-error-msg {
    margin-left: 30px;
}

.form--hubspot .hs-error-msgs {
    list-style: none;
    margin: 0;
    padding: 0;
}

.form--hubspot .hs_error_rollup {
    display: none;
}

.form--wpforms .wpforms-error-container,
.wcnotices.woocommerce-error,
.wcnotices.woocommerce-message,
.wcnotices.woocommerce-info {
    padding: 15px;
    font-size: 17px;
    background: #f8d9d9;
    margin-bottom: 40px;
    list-style: none;
    color: #bf1111;
    border-radius: 6px;
}

.wcnotices.woocommerce-message {
    background: #ebf0e1;
    color: #659401;
}

.wcnotices.woocommerce-info {
    background: #e3eef1;
    color: #156fc3;
}

/* Mensaje al enviar el formulario */
.form--wpforms .wpforms-confirmation-container p {
    margin: 0 !important;
}


/* Formulario por pasos */
.form--wpforms .wpforms-field-pagebreak .wpforms-clear::before,
.form--wpforms .wpforms-field-pagebreak .wpforms-clear::after {
    content: none;
}

/* Formulario por pasos: botonería */
/*
.wpforms-field-pagebreak > div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}
.wpforms-field-pagebreak > div > button {
	display: block;
}
.wpforms-field-pagebreak > div > .wpforms-page-next {
    justify-self: flex-end;
}
*/


/* Formulario por pasos: conector */
.form--wpforms .wpforms-container .wpforms-page-indicator {
    margin: 0;
}

.form--wpforms .wpforms-page-indicator-page .wpforms-page-indicator-page-number {
    transition: 0.15s;
}

.form--wpforms .wpforms-page-indicator-page .wpforms-page-indicator-page-triangle {
    transition: 0.15s;
    opacity: 0;
}

.form--wpforms .wpforms-page-indicator-page.active .wpforms-page-indicator-page-triangle {
    opacity: 1;
}

.form--wpforms .wpforms-container .wpforms-page-indicator.connector .wpforms-page-indicator-page {
    position: relative;
    height: 50px;
}

.form--wpforms .wpforms-page-indicator-page .wpforms-page-indicator-page-title {
    transition: 0.15s;
    opacity: 0;
    pointer-events: none;
    padding: 0 !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 700;
}

.form--wpforms .wpforms-page-indicator-page.active .wpforms-page-indicator-page-title {
    opacity: 1;
    pointer-events: unset;
}

/* Formulario por pasos: barra de progreso */
.form--wpforms .wpforms-page-indicator.progress {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
    margin-bottom: 40px;
}

.form--wpforms .wpforms-page-indicator.progress .wpforms-page-indicator-page-title,
.form--wpforms .wpforms-page-indicator.progress .wpforms-page-indicator-page-title-sep {
    display: none !important;
}

.form--wpforms .wpforms-page-indicator-page-progress-wrap {
    border-radius: 0 !important;
}

.form--wpforms .wpforms-page-indicator.progress .wpforms-page-indicator-steps {
    font-weight: 700;
    color: #343434 !important;
}

/* Formulario por pasos: alinear último botón de enviar */
.form--wpforms .wpforms-form {
    position: relative;
}

.form--wpforms .wpforms-page-indicator+.wpforms-field-container+.wpforms-submit-container {
    position: absolute;
    margin: 0;
    /*transform: translateY(-100%);*/
    right: 0;
}


.grecaptcha-badge {
    display: none !important;
}


/* ---------------------------------------- */
/* Navegación con stroll */

.scrollnav__categories {
    min-width: 320px;
}

.scrollnav__categories__wrapper {
    top: 160px;
    list-style: none;
}

.scrollnav__categories__open {
    display: none;
    cursor: pointer;
    margin-bottom: 30px;
}

.scrollnav__categories__close {
    display: none;
}

.scrollnav__categories__link--active,
.scrollnav .is-active {
    color: #343434 !important;
}

.scrollnav__content {
    width: 100%;
}

@media (max-width: 1440px) {

    .biases__categories {
        min-width: 230px;
    }

    .biases__categories__link {
        font-size: 28px;
    }

}

@media (max-width: 1110px) {

    .scrollnav {
        flex-direction: column;
        align-items: flex-start;
    }

    .scrollnav>* {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .scrollnav__categories {
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        transition: 0.4s;
    }

    .scrollnav__categories__wrapper {
        padding: 80px 12px;
        position: absolute;
        background: white;
        bottom: 0;
        left: 0;
        top: auto;
        transition: 0.3s;
        transform: translateY(15px);
    }

    .scrollnav__categories__close {
        position: absolute;
        top: 10px;
        right: 6px;
        cursor: pointer;
        display: block;
    }

    .scrollnav__categories__bg {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #343434;
        opacity: 0.8;
        display: block;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .scrollnav__categories__open {
        display: inline-flex;
        color: white;
    }

    .scrollnav--categories-open .scrollnav__categories {
        opacity: 1;
        pointer-events: unset;
    }

    .scrollnav--categories-open .scrollnav__categories__wrapper {
        transform: none;
    }

}



.biases__hidden {
    display: none;
}


/* ---------------------------------------- */
/* Iconos */

/* Relleno */
.material-symbols-outlined--filled {
    font-variation-settings: 'FILL' 1;
}


/* ---------------------------------------- */
/* Slider */

.slider {
    padding: 0 80px;
    position: relative;
}

/* Ajustes flechas */
.slider .swiper-button-next,
.slider .swiper-button-prev {
    width: auto;
    height: auto;
    margin: 0;
    transform: translateY(-50%);
    top: 50%;
    overflow: hidden;
    color: inherit;
}

.slider .swiper-button-next::after,
.slider .swiper-button-prev::after {
    content: none;
}

.slider .swiper-button-prev {
    left: 0;
}

.slider .swiper-button-next {
    right: 0;
}


/* Ajustes navegación */
.slider .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.slider .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    margin: 0 !important;
    border-radius: 0;
    position: relative;
    background: none;
    opacity: 1;
}

.slider .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 1000px;
    transition: 0.15s;
    background-color: #d0d0d0;
}



/* ---------------------------------------- */
/* Acomodar */

.tidy {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tidy figcaption {
    display: none;
}

.tidy figure {
    width: 100%;
    height: 100%;
}

.tidy img,
.tidy video,
.tidy iframe {
    width: 100%;
    height: 100%;
    display: block !important;
}

/* Fit */
.tidy--fit-contain img,
.tidy--fit-contain video {
    object-fit: contain;
    object-position: center;
}

.tidy--fit-cover img,
.tidy--fit-cover video {
    object-fit: cover;
    object-position: center;
}

/* Anchura */
.tidy--width-50 {
    width: 50px;
}

.tidy--width-60 {
    width: 60px;
}

.tidy--width-100 {
    width: 100px;
}

.tidy--width-150 {
    width: 150px;
}

.tidy--width-200 {
    width: 200px;
}

.tidy--width-250 {
    width: 250px;
}

.tidy--width-300 {
    width: 300px;
}

.tidy--width-350 {
    width: 350px;
}

.tidy--width-400 {
    width: 400px;
}

.tidy--width-450 {
    width: 450px;
}

.tidy--width-500 {
    width: 500px;
}

.tidy--width-550 {
    width: 550px;
}

.tidy--width-600 {
    width: 600px;
}

/* Altura */
.tidy--height-50 {
    height: 50px;
}

.tidy--height-100 {
    height: 100px;
}

.tidy--height-150 {
    height: 150px;
}

.tidy--height-200 {
    height: 200px;
}

.tidy--height-250 {
    height: 250px;
}

.tidy--height-300 {
    height: 300px;
}

.tidy--height-350 {
    height: 350px;
}

.tidy--height-400 {
    height: 400px;
}

.tidy--height-450 {
    height: 450px;
}

.tidy--height-500 {
    height: 500px;
}

.tidy--height-550 {
    height: 550px;
}

.tidy--height-600 {
    height: 600px;
}


/* ---------------------------------------- */
/* Masonry */

.masonry {
    display: grid;
    grid-gap: 25px;
}

.masonry--cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.masonry--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.masonry--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.masonry--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1110px) {

    .masonry {
        grid-gap: 15px;
    }

}

@media (max-width: 680px) {

    .masonry {
        grid-template-columns: repeat(1, 1fr);
    }

    .masonry__media {
        grid-column: unset !important;
    }

    .masonry__file {
        aspect-ratio: unset !important;
    }

}


/* ---------------------------------------- */
/* Tabs */

.tab {
    display: none;
}

.tab--displayed {
    display: block;
}


/* ---------------------------------------- */
/* Pop Ups */

.popup {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1000;
    padding: 10px;
}

.popup__background {
    opacity: 0;
    transition: 1s;
    background: black;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.popup__wrapper {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.popup--displayed {
    pointer-events: unset;
}

.popup--displayed .popup__background {
    opacity: 0.7;
}

.popup--displayed .popup__wrapper {
    opacity: 1;
    transform: none;
}


/* ---------------------------------------- */
/* Load more */

.load-more>.load-more__hide {
    display: none;
}


/* ---------------------------------------- */
/* Logo */

.logo {
    position: relative;
}

.logo__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}

.logo__image--secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}


/* ---------------------------------------- */
/* Dropdown */

.dropdown {
    position: relative;
    text-transform: uppercase;
}

.dropdown__current {
    cursor: pointer;
}

.dropdown__current__icon {
    transition: 0.15s;
}

.dropdown__dropped {
    position: absolute;
    top: 100%;
    left: calc(50% - 2px);
    transform: translateX(-50%) translateY(10px);
    padding-top: 8px;
    pointer-events: none;
    transition: 0.3s;
    opacity: 0;
    text-align: center;
}

.dropdown__item {
    list-style: none;
}

.dropdown__item--current {}

.dropdown__link {
    padding: 1px 0;
    display: inline-block;
}

.dropdown:hover .dropdown__dropped {
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: unset;
}

.dropdown:hover .dropdown__current__icon {
    transform: scale(1, -1);
}


/* ---------------------------------------- */
/* Texto formateado */

/* Alineamiento */
.text--align-left {
    text-align: left;
}

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

.text--align-center .flex {
    justify-content: center;
}

.text--align-right {
    text-align: right;
}

.text--align-right .flex {
    justify-content: flex-end;
}

/* Márgenes contenidos */
.text>*:first-child {
    margin-top: 0 !important;
}

.text>*:last-child {
    margin-bottom: 0 !important;
}

/* Enlaces internos */
.text--links-m a:not(.button):not(.share__link):not(.cta_button) {
    border-bottom: 2px solid;
}

.text--links-s a:not(.button):not(.share__link):not(.cta_button) {
    border-bottom: 1px solid;
}

/* Indent de listados */
.text ol,
.text ul {
    padding-left: 30px;
}

.text li:first-child {
    margin-top: 0;
}

.text li:last-child {
    margin-bottom: 0;
}

.text .flex {
    padding: 0;
}

/* Embebidos */
.text iframe {
    max-width: 100%;
}

/* Medios de WordPress y Hubspot */
.text .wp-block-image img,
.text .hs-cta-img {
    margin: 0;
}

.hs-cta-wrapper {
    display: block;
}

.hs-cta-wrapper img {
    width: 100%;
}

/* ---------------------------------------- */
/* Texto */

/* Tabla */
table:not(.pika-table) {
    width: 100%;
    border-collapse: collapse;
}

table:not(.pika-table) td,
table:not(.pika-table) th {
    vertical-align: top;
}

.wp-block-table table:not(.pika-table) {
    margin: 0 !important;
}

/* Intro */
.intro {
    padding-left: 22px;
    border-left: 6px solid;
}

/* Tweet */
.tweet {
    color: #1f9bf0;
}

.tweet__wrapper {
    display: flex;
    align-items: center;
    background-color: #ebf6fe;
    border: 3px solid #1f9bf0 !important;
    transition: 0.15s;
    justify-content: space-between;
}

.tweet__icon {
    margin-left: 20px;
    font-size: 30px;
    transition: 0.25s;
}

.tweet:hover .tweet__wrapper {
    transform: scale(1.01);
    background-color: #e7f5ff;
}

.tweet:hover .tweet__icon {
    transition-delay: 0.1s;
    transform: scale(1.3);
}

/* Cita */
.wp-block-quote {
    text-align: center;
    padding-top: 100px;
    position: relative;
}

.wp-block-quote::before {
    content: '“';
    opacity: 0.6;
    font-size: 210px;
    line-height: 1;
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
}

.wp-block-quote p {
    max-width: 600px;
    margin: auto !important;
    margin-bottom: 20px !important;
}

.wp-block-quote cite {
    font-size: 16px;
    opacity: 0.7;
}

/* Check */
.check {
    display: flex;
}

.check+.check {
    margin-top: 12px;
}

.check__icon {
    margin-right: 12px;
}

.check__text {
    margin-top: 6px;
}

/* Captions */
figcaption {
    border-top: 1px solid;
}

/* Medios */
.wp-block-image img {
    display: inline-block;
}

.wp-block-video video {
    display: inline-block;
}


/* ---------------------------------------- */
/* Tablas de precios */

/* Virgo */
.virgo {
    padding-top: 60px;
}

.virgo--featured {
    padding-top: 0;
}

.virgo__featured {
    height: 60px;
}

.virgo__description {
    margin-top: 5px;
}

.virgo__characteristics {
    list-style: none;
    margin-top: 30px;
}

.virgo__characteristic {
    display: flex;
    margin-bottom: 12px;
}

.virgo__characteristic:last-child {
    margin-bottom: 0;
}

.virgo__characteristic__icon {
    margin-right: 6px;
    margin-top: -1px;
}

.virgo__price {
    display: flex;
    align-items: center;
    line-height: 1;
}

.virgo__price__currency {
    margin-left: 8px;
}

.virgo__buttons {
    margin-top: 30px;
}


/* ---------------------------------------- */
/* Pasos */

/* Leo */
.leo {
    position: relative;
}

.leo__step {
    position: absolute;
    font-size: 130px;
    line-height: 1;
    margin-left: -60px;
    opacity: 0.08;
    z-index: -1;
    width: 80px;
    text-align: right;
    top: -30px;
}


/* ---------------------------------------- */
/* Counters */

/* Linx */
.linx__value {
    margin-bottom: -3px;
}

.linx__title {
    margin-bottom: 5px;
}

.linx__subtitle {
    margin: auto;
    max-width: 200px;
    margin-top: 10px;
}


/* ---------------------------------------- */
/* Características */

/* Centauri */
.centauri__image {
    display: inline-block;
    max-height: 90px;
}

.centauri__text {
    margin-top: 30px;
}

/* Gemeni */
.gemini__image {
    min-width: 70px;
    max-width: 70px;
    max-height: 80px;
}


/* ---------------------------------- */
/* Testimonios */

/* Vega */
.vega {
    text-align: center;
}

.postid-8489 .vega {
    text-align: left;
}

.postid-8489 .vega__stars .stars {
    justify-content: flex-start;
}

.vega__stars {
    margin-bottom: 15px;
}

.vega__author {
    margin-top: 20px;
    display: block;
    font-style: normal;
    color: #373737;
}

.vega__author__role {
    display: block;
    color: #717171;
}


/* ---------------------------------- */
/* Cards */

.card {
    position: relative;
}

/* Orión */
.orion {
    background: linear-gradient(rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
}

.orion__gallery {
    list-style: none;
    position: relative;
    z-index: -1;
}

.orion__gallery__image {
    transition: 1.5s;
}

.orion__data {
    position: absolute;
    bottom: 0;
    max-width: 380px;
}

.orion:hover .orion__gallery__image {
    transform: scale(1.1);
}

/* Casiopea */
.casiopea.card--format-featured:nth-child(even) .casiopea__wrapper>*:first-child {
    grid-column: 2;
    grid-row: 1;
}

.casiopea.card--format-featured:nth-child(even) .casiopea__wrapper>*:last-child {
    grid-column: 1;
    grid-row: 1;
}

.casiopea__data {
    max-width: 600px;
}

@media (max-width: 980px) {

    .casiopea.card--format-featured .casiopea__gallery>div {
        height: 350px;
    }

}

@media (max-width: 570px) {

    .casiopea.card--format-featured .casiopea__gallery>div {
        height: 250px;
    }

}




/* ---------------------------------- */
/* Acordeones */

.accordion+.accordion {
    margin-top: 12px;
}

.accordion__content {
    display: none;
    max-width: var(--breakpoint-s);
}

.accordion--displayed .accordion__content {
    display: block;
}

/* Aries */
.aries__title {
    position: relative;
    cursor: pointer;
    padding-right: 50px;
}

.aries__title__arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.15s;
    pointer-events: none;
}

.accordion--displayed .aries__title__arrow {
    transform: translateY(-50%) scale(1, -1);
}


/* ---------------------------------- */
/* Menus */

.menu__item__description {
    display: block;
    margin-top: 8px;
}


/* ---------------------------------- */
/* Headers */

.header__hamburguer {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}

.header__hamburguer>* {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: 0.3s;
    pointer-events: none;
}

.header__hamburguer__close {
    opacity: 0;
}

.header--open .header__hamburguer {
    color: black !important;
}

.header--open .header__hamburguer>* {
    transform: translateX(-50%) translateY(-50%) scale(-1, 1);
}

.header--open .header__hamburguer__close {
    opacity: 1;
}

.header--open .header__hamburguer__menu {
    opacity: 0;
}

.header--open .header__logo .logo__image--main {
    opacity: 1 !important;
}

.header--open .header__logo .logo__image--secondary {
    opacity: 0 !important;
}

.header--top.header--transparent.header--double-logo .header__logo .logo__image--main {
    opacity: 0;
}

.header--top.header--transparent.header--double-logo .header__logo .logo__image--secondary {
    opacity: 1;
}

.header--top.header--transparent .header__breadcrumbs .perseo {
    color: white !important;
    opacity: 0.6;
}

.header__breadcrumbs {
    transition: 0.3s;
}

.header--transparent:not(.header--top) .header__breadcrumbs {
    opacity: 0;
    pointer-events: none;
}

.menu__item--open {}


/* Andromeda */
.andromeda__right>*,
.andromeda__left>* {
    z-index: 1;
}

.andromeda__left {
    z-index: 2;
}

.andromeda__background,
.andromeda__box,
.andromeda .logo__image,
.andromeda__nav,
.andromeda__cart {
    transition: 0.3s;
}

/* .andromeda__nav {
    text-transform: lowercase;
} */

.andromeda__nav>.menu>.menu__container>.menu__item>.menu__item__link {
    padding: 34px 14px;
    padding-bottom: 25px;
    display: inline-block;
    transition: 0.15s;
}

.andromeda__nav>.menu>.menu__container>.menu__item>.menu__item__link:hover,
.andromeda__nav>.menu>.menu__container>.menu__item--open>.menu__item__link {
    color: var(--woko-green);
}

.andromeda__nav>.menu>.menu__container>.menu__item>.menu__item__link:active {
    transform: scale(0.97);
}

.andromeda__cart {
    position: relative;
    display: flex;
}

.andromeda__cart:hover {
    color: var(--woko-green) !important;
}

.andromeda__cart__count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #BC2D00;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/*
.andromeda__nav > .menu > .menu__container > .menu__item > .menu__item__link > span {
    position: relative;
}
.andromeda__nav > .menu > .menu__container > .menu__item > .menu__item__link > span::after {
    content: attr(data-title);
    position: absolute;
    pointer-events: none;
    left: 0;
    color: var(--woko-green);
    width: 0;
    transition: 0.3s;
    overflow: hidden;
    white-space: nowrap;
}
.andromeda__nav > .menu > .menu__container > .menu__item > .menu__item__link:hover > span::after {
    width: 100%;
}
*/
.header--top.header--transparent--white:not(.header--open) .andromeda__nav,
.header--top.header--transparent--white:not(.header--open) .andromeda__cart {
    color: white;
}

.andromeda__megamenu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 84px;
    background: white;
    text-align: left;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    color: #343434;
    text-transform: initial;
}

.andromeda__megamenu__wrapper {
    padding: 70px 0;
    padding-left: 152px;
}

.andromeda__megamenu__title {
    margin-bottom: 45px;
    display: block;
}

.andromeda__megamenu__wrapper>ul {
    list-style: none;
    max-width: 700px;
}

.menu__item--open .andromeda__megamenu {
    opacity: 1;
    pointer-events: unset;
}

.header--top .andromeda__box {
    box-shadow: none;
}

.header--top.header--transparent .andromeda__background {
    background: none;
}

.header--top.header--transparent--white .andromeda__hamburguer {
    color: white;
}



.andromeda__resp_menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.andromeda__resp_menu__wrapper {
    overflow-y: auto;
    max-height: 100%;
    padding: 100px 0;
}

.andromeda__resp_menu::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.99);
    display: block;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.andromeda__resp_menu .menu__item {
    list-style: none;
}

.andromeda__resp_menu .menu__container>.menu__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.andromeda__resp_menu .menu__container>.menu__item>.menu__item__link {
    display: block;
    padding: 16px 0;
    position: relative;
}

.andromeda__resp_menu .menu__container>.menu__item--has-children>.menu__item__link::after {
    content: '';
    border: solid #343434;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: translateY(calc(-50% - 1px)) rotate(45deg);
    position: absolute;
    transition: 0.15s;
    pointer-events: none;
    right: 15px;
    top: 50%;
}

.andromeda__resp_menu .menu__submenu {
    margin-left: 25px;
    margin-bottom: 22px;
    margin-top: 5px;
    font-size: 18px;
    display: none;
}

.andromeda__resp_menu .menu__submenu>.menu__item>.menu__item__link {
    padding: 8px 0;
    display: block;
}

.andromeda__resp_menu .menu__item--displayed .menu__submenu {
    display: block;
}

.andromeda__resp_menu .menu__container>.menu__item--has-children.menu__item--displayed>.menu__item__link::after {
    transform: translateY(calc(-50% + 2px)) rotate(-135deg);
}


.header--open .andromeda__resp_menu {
    opacity: 1;
    pointer-events: unset;
}


/* ---------------------------------- */
/* Footer */

/* Hércules */
.hercules__left>* {
    margin: 35px 0;
}

.hercules__left>*:first-child {
    margin-top: 0;
}

.hercules__left>*:last-child {
    margin-bottom: 0;
}

.hercules__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hercules__right li {
    list-style: none;
}

.hercules__right a {
    display: inline-block;
    padding: 5px 0;
}

.hercules__right__menu {
    margin-top: 10px;
}

.hercules .menu a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {

    .hercules__bottom .flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .hercules__bottom .flex--distribute-m>* {
        margin: 3px 0;
    }

}

@media (max-width: 570px) {

    .hercules__right>div {
        flex-direction: column;
    }

    .hercules__right>div>* {
        margin: 15px 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hercules__right {
        width: 100%;
        margin-top: 30px;
    }

    .hercules__wrapper {
        flex-direction: column;
    }

}


/* ---------------------------------- */
/* Switchers */

/* Acuario */
.acuario {
    display: inline-flex;
    list-style: none;
    overflow: hidden;
}

.acuario__item {
    transition: 0.15s;
}

.acuario__link {
    padding: 15px 35px;
    display: block;
}


/* ---------------------------------- */
/* Widgets */

/* Share */
.share {
    text-align: left;
}

.share__copy {
    display: block;
    margin-bottom: 15px;
    max-width: 300px;
}

.share__link i {
    width: 38px;
    height: 38px;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: 0.15s;
}


/* ---------------------------------- */
/* Banners */

/* CTA */
.cta .tidy {
    margin: 0 !important;
}

.cta img {
    margin: 0 !important;
}



/* ---------------------------------- */
/* WooCommerce */

.checkout .blockOverlay {
    position: relative;
    background-color: #F8F6F4 !important;
}

.checkout.processing .blockOverlay::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='L9' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Cpath fill='%23000000' d='M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' dur='1s' from='0 50 50' to='360 50 50' repeatCount='indefinite' /%3E%3C/path%3E%3C/svg%3E");
    width: 150px;
    height: 150px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background-repeat: no-repeat;
}

.payment_box {
    padding: 10px;
    margin-top: 20px;
}

.payment_box fieldset {
    border: none;
    margin: 15px 0;
}

.woocommerce-error.wc-stripe-error {
    color: #f23e3e;
    list-style: none;
    margin-top: 20px;
    font-weight: 500;
}

.wc-credit-card-form.wc-payment-form .form-row {
    margin-bottom: 10px;
}

.wc-credit-card-form.wc-payment-form .form-row-last {
    margin-bottom: 0;
}

.payment_method_stripe .wc-credit-card-form+fieldset {
    display: none;
}

.payment_method_ppcp-gateway .payment_box {
    display: none !important;
}

.woocommerce-terms-and-conditions-wrapper a {
    text-decoration: underline;
}

.woocommerce-shipping-methods {
    list-style: none;
}

.shipping-calculator-button {
    text-decoration: underline;
}

.woocommerce-cart-form__contents .product-thumbnail {
    display: none;
}

.woocommerce-cart-form__contents .cart_item td {
    vertical-align: middle;
}


.cart_totals .blockOverlay {
    background-color: #F8F6F4 !important;
}

.woocommerce-checkout-review-order__background {
    background-color: #F1F2F5;
}

.checkout.woocommerce-checkout .woocommerce-error {
    list-style: none;
    margin-bottom: 50px !important;
}

.wc_payment_method {
    background: #dde5ec;
    border-radius: 5px;
    margin-bottom: 8px;
    list-style: none;
    padding: 12px;
}

.wc_payment_method:last-child {
    margin-bottom: 0;
}

.wc_payment_method>input {
    position: relative;
    top: 4px;
}

.wc_payment_method>label {
    margin-left: 7px;
    font-weight: 500;
    line-height: 1;
}



.notice,
.wcnotices,
.checkout.woocommerce-checkout .woocommerce-error {
    padding: 15px 20px;
    background-color: #cfe1cb;
    border-radius: 5px;
    color: #074707;
    margin-bottom: 8px;
    font-weight: 500;
    list-style: none;
}

.notice:last-child,
.wcnotices:last-child,
.checkout.woocommerce-checkout .woocommerce-error:last-child {
    margin-bottom: 0;
}

.wcnotices.woocommerce-info {
    background-color: #d6e6ef;
    color: #3c7fc6;
}

.checkout.woocommerce-checkout .woocommerce-error {
    background-color: #f1cfcf;
    color: #d82727;
}


.woocommerce-form__label-for-checkbox>span:not(.woocommerce-terms-and-conditions-checkbox-text) {
    margin-top: -4px;
}


.shipping-calculator-form .form-row {
    margin-bottom: 5px;
}

.woocommerce-shipping-fields {
    margin: 30px 0;
}