/**
 * Estilos para tienda oficial de Rafa Nadal
 */


/** 
 * 
 * VARIABLES 
 * 
 * */
:root {
    --font-family: 'Montserrat', sans-serif;
    --font-size: 16px;
    --color-link: #09101D;
    --color-blue: #001F63;
    --color-grey: #6C6C6C;
    --sb-track-color: #ffffff;
    --sb-thumb-color: #001F63;
    --sb-size: 15px;
    --sb-div-size: 10px;
}


/** 
 * 
 * FUENTES 
 * 
 * */
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Light.woff2') format('woff2'),
        url('fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Medium.woff2') format('woff2'),
        url('fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.woff2') format('woff2'),
        url('fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
        url('fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/**
 * SCROLLBARS
 */

::-webkit-scrollbar {
    width: var(--sb-size);
}

div::-webkit-scrollbar {
    width: var(--sb-div-size);
}

::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

@supports not selector(::-webkit-scrollbar) {
    body, div {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

/** 
 * 
 * GENERALES 
 * 
 * */

body, html {
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: 400;
    color: #2F2F2F;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ps-hidden-by-js {
    display: none !important;
}

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

input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0 5px 0 0;
    font: inherit;
    color: var(--color-link);
    width: 18px;
    height: 18px;
    border: 3px solid var(--color-link);
    border-radius: 50%;
    transform: translateY(-1px);
    display: inline-flex;
    cursor: pointer;
    min-width: 18px;
    min-height: 18px;
    justify-content: center;
    align-items: center;
}

input[type="radio"]:before {
    content: "";
    width: 6px;
    height: 6px;
    transition: 60ms opacity ease-in-out;
    opacity: 0;
    background-color: var(--color-link);
    transition: all 0.2s ease;
    transform: scale(2);
    border-radius: 50%;
}

input[type="radio"]:checked::before {
    opacity: 1;
    transform: scale(1);
}

input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0 5px 0 0;
    font: inherit;
    color: var(--color-link);
    width: 18px;
    height: 18px;
    border: 3px solid var(--color-link);
    border-radius: 4px;
    /*transform: translateY(4px);*/
    display: inline-flex;
    cursor: pointer;
    min-width: 18px;
    min-height: 18px;
    justify-content: center;
    align-items: center;
}

input[type="checkbox"]:before {
    content: "";
    width: 10px;
    height: 8px;
    transition: 60ms opacity ease-in-out;
    opacity: 0;
    background-image: url(../images/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.2s ease;
    transform: scale(2);
}

input[type="checkbox"]:checked::before {
    opacity: 1;
    transform: scale(1);
}

.transition {
    transition: all 0.2s ease;
}

.content-center {
    max-width: 1369px;
    margin: auto;
    padding: 0 16px;
}

section.content-center {
    padding-left: 16px;
    padding-right: 16px;
}

.content-center .content-center, .home-newsletter .content-center {
    padding: 0;
}

@media (min-width: 768px) {
    .content-center {
        padding: 0;
    }
}

#order-detail .content-center#wrapper {
    max-width: 1215px;
}

.flex-container {
    display: flex;
}

.inline-flex-container {
    display: inline-flex;
}

@media (max-width: 996px) {
    .flex-container {
        flex-direction: column;
    }

    .flex-container.no-ch {
        flex-direction: row;
    }
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.grid-container {
    display: grid;
}

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

@media (max-width: 996px) {
    .flex-row {
        flex-direction: column;
    }

    .flex-row.no-ch {
        flex-direction: row;
    }
}

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

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

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

a {
    color: var(--color-link);
    text-decoration: none;
}

.input-text {
    background-color: transparent;
    border: 1px solid #020202;
    border-radius: 32px;
    color: #020202;
    padding: 16px 32px;
    background-color: #fff;
    max-width: 100%;
}

.input-text[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.input-text[type="file"]+label {
    background-color: #fff;
    border: 1px solid var(--color-blue);
    border-radius: 32px;
    color: #fff;
    cursor: pointer;
    padding: 8px 32px;
    display: inline-flex;
    gap: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-block;
    color: var(--color-blue);
}

.input-text[type="file"]:focus+label,
.input-text[type="file"]+label:hover {
    background-color: var(--color-blue);
    color: #fff;
}

.input-text__small {
    padding: 6px 12px;
}

.input-text-label.required:after {
    content: "*";
    color: rgb(136, 23, 23);
    margin: 0 0 0 2px;
}

.input-type-checkbox .input-text-label.required:after {
    display: none;
}

.button {
    background-color: var(--color-blue);
    border: 1px solid var(--color-blue);
    border-radius: 32px;
    color: #fff;
    cursor: pointer;
    padding: 16px 32px;
    /*text-transform: uppercase;*/
    display: inline-flex;
    gap: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: all 0.2s ease;
}

.button.disabled {
    opacity: .7;
    background-color: #2F2F2F;
}

.button__block {
    width: 100%;
}

.button:hover {
    background-color: #fff;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
}

.button__outline {
    background-color: #fff;
    color: var(--color-blue);
}

.button__outline:hover {
    background-color: var(--color-blue);
    color: #fff;
}

.button.active {
    background-color: var(--color-blue);
    color: #fff;
}

.button__noline {
    background-color: transparent;
    color: var(--color-blue);
    border-color: transparent;
}

.button__noline:hover {
    border-color: transparent;
}

.button__middle {
    padding: 10px 18px;
}

.button-container {
    gap: 25px;
}

.button__small {
    font-size: 13px;
    padding: 5px 15px;
}

.button--danger {
    background-color: #721c1c;
    color: #fff;
}

.button--danger :hover {
    background-color: #fff;
    color: #721c1c;
    border-color: #721c1c;
}

.title-dot {
    padding-top: 40px;
}

.title-dot.title-dot__left:before {
    content: "";
    height: 50px;
    width: 50px;
    background-color: #F3F900;
    border-radius: 50%;
    transform: translate(25px, -25px);
    z-index: -1;
    min-width: 50px;
    min-height: 50px;
}

@media (max-width: 996px) {
    .title-dot.title-dot__left:before {
        transform: translate(0, 0);
        position: absolute;
        top: 32px;
        left: 30px;
    }

    .home-reviews .text-title.title-dot.title-dot__left:before {
        left: 65px;
    }
}

.title-dot span {
    position: relative;
    z-index: 1;
}

.title-dot.title-dot__right:after {
    content: "";
    height: 50px;
    width: 50px;
    background-color: #F3F900;
    border-radius: 50%;
    transform: translate(-25px, -25px);
    z-index: 0;
    min-width: 50px;
    min-height: 50px;
}

@media (max-width: 996px) {
    .title-dot.title-dot__right:after {
        transform: translate(0, 0);
        position: absolute;
        top: 32px;
        right: 30px;
    }
}

.text-title {
    font-weight: 300;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    line-height: 42px;
}

@media (max-width: 992px) {
    .text-title {
        position: relative;
    }
}

.text-title__left {
    text-align: left;
}

.text-title__transform-none {
    text-transform: none;
}

body .text-title__margin-top {
    margin: 40px 0 8px 0 !important;
}

.text-subtitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    margin: 0 0 24px 0;
}

.hide {
    display: none;
}

@media (max-width: 996px) {
    .hidden-sm-down {
        display: none;
    }
}

@media (min-width: 996px) {
    .hidden-md-up {
        display: none;
    }
}

.table__container {
    width: 100%;
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    padding: 16px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 16px 8px 16px 0;
    border-bottom: 1px solid #AFAFAF;
}

.table th {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    padding-top: 0;
}

.table tbody th {
    font-weight: 700;
}

.table tbody tr:last-child th, .table tbody tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
}

.label {
    font-size: 12px;
    border-radius: 4px;
    padding: 4px;
    display: inline-block;
}

.label.bright {
    color: #fff;
}

.notifications-container {
    margin: 0 0 16px 0;
}

.full-width {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.tab-content {
    gap: 16px;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}

.tab-content .tab-pane .button-container {
    margin: 16px 0 0 0;
}

/**
 * 
 * 
 * HOME BANNERS IMAGES
 * 
 * 
 */
.home-banner-images {
    gap: 8px;
    padding: 40px 16px;
    flex-direction: column-reverse;

    img {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .home-banner-images {
        padding: 80px 0;
        flex-direction: row;

        a {
            width: 100%;
        }
    }
}

/** 
 * 
 * HEADER 
 * 
 * */

.language-selector__current .lang-flag {
    width: 24px;
}

.header-container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 15;
    position: sticky;
    top: 0;
    background-color: #fff;
}

.header-container__content {
    justify-content: space-between;
    padding: 24px 16px;
}

.mobile-menu__container {
    display: none;
}

@media (max-width: 996px) {
    .header-container__content {
        flex-direction: row;
        align-items: center;
        gap: 30px;
        padding: 16px;
    }

    #checkout .header-container__content {
        justify-content: center;
    }

    .mobile-menu__container {
        order: 1;
        display: flex;
    }

    #checkout .mobile-menu__container {
        display: none;
    }

    .header-logo {
        order: 2;
    }

    .user-menu {
        order: 3;
    }

    .menu-search {
        display: none;
    }

    .user-menu__container__selectors {
        display: none;
    }

    .user-menu__container {
        flex-direction: row;
    }
}

.header-logo {
    max-width: 174px;
    padding: 17px;
    width: 100%;
}

@media (max-width: 996px) {
    .header-logo {
        max-width: 90px;
        padding: 0;
    }
}

.logo__image {
    width: 100%;
    max-width: 139px;
}

.menu-search {
    gap: 24px;
    width: 100%;
}

#checkout .menu-search {
    display: none;
}

.search-form__input {
    border: 1px solid #020202;
    border-radius: 32px;
    padding: 8px 16px;
    width: 100%;
}

@media (min-width: 996px) {
    .search-form__input {
        max-width: 538px;
    }
}

.menu {
    gap: 32px;
    padding: 8px 0;
}

.menu__item {
    padding: 4px 0;
}

@media (min-width: 996px) {
    .menu__item {
        padding: 7px 0;
    }
}

.menu__link__selected {
    font-weight: 700;
}

@media (min-width: 996px) {
    .menu__link:hover {
        text-decoration: underline;
    }

    .menu .submenu[data-depth="1"] {
        display: none;
        position: absolute;
        top: 100%;
        background-color: #fff;
        padding: 50px 47px 10px 47px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 70px;
        flex-direction: row;
        justify-content: center;
    }

    .menu .submenu[data-depth="1"]>li>.menu__link {
        font-weight: 700;
        font-size: 20px;
        display: block;
        margin: 0 0 16px 0;
    }

    .menu .submenu[data-depth="2"] {
        flex-direction: column;
        gap: 4px !important;
    }

    .menu li.menu__item--active .submenu {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 70px;
    }

    .menu li.menu__item--active>.submenu {
        box-shadow: 0 30px 40px 0px rgba(0, 0, 0, .09);
        padding-top: 10px;
    }

    .menu .submenu .menu__item {
        white-space: nowrap;
    }

    .menu .submenu .menu__item.menu__link-all {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.menu .submenu .menu__item.menu__link-all a {
    font-weight: normal;
    text-decoration: underline;
    font-size: 16px;
}

.menu__item.menu__close {
    display: none;
}

@media (min-width: 1281px) {
    .menu .submenu[data-depth="1"] {
        padding: 40px 47px;
    }
}

@media (max-width: 996px) {

    .menu__item.menu__close {
        display: flex;
        gap: 5px;
        font-weight: 700;
        align-items: center;
        padding: 0 0 16px 0;
        margin: 16px 0 16px 0;
        border-bottom: 1px solid #000;
    }

    .menu__item.menu__close:before {
        content: "";
        height: 24px;
        width: 24px;
        background-image: url(../images/menu-right.svg);
        background-size: contain;
        display: block;
        transform: rotate(180deg);
        background-repeat: no-repeat;
    }

    .menu__item--banner {
        display: none;
    }

    .menu__link__selected {
        font-weight: 400;
    }

    .menu {
        gap: 0;
    }

    .submenu {
        gap: 0;
    }

    .menu__item {
        padding: 8px 0;
        text-transform: capitalize;
    }

    .menu__link[data-depth="0"] {
        display: block;
        font-weight: 700;
        padding: 0 0 16px 0;
        border-bottom: 1px solid #000;
    }

    .menu__link[data-depth="1"] {
        display: flex;
        justify-content: space-between;
    }

    /*.menu__item.menu__with-submenu {
        position: relative;
    }*/

    /*.menu__item.menu__with-submenu .menu__link:after {
        content: "";
        width: 24px;
        height: 24px;
        background-image: url(../images/menu-right.svg);
        background-size: contain;
    }*/

    .menu__item.menu__with-submenu .open-submenu {
        width: 24px;
        height: 24px;
        background-image: url(../images/menu-right.svg);
        background-size: contain;
        display: block;
    }

    .menu__item[data-depth="1"] .submenu {
        padding: 16px 16px;
        position: absolute;
        inset: 8px 0 0 0;
        background-color: #fff;
        transition: all 0.3s ease;
        transform: translateX(100%);
        justify-content: flex-start;
    }

    .menu__item.submenu-active[data-depth="1"] .submenu {
        transform: translateX(0);
    }

    .menu-mobile-active {
        overflow: hidden;
    }

    .menu-mobile-active .menu-search {
        display: block;
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        z-index: 1;
        bottom: 0;
        background-color: #fff;
        overflow: auto;
    }

    .menu-mobile-active .menu-search:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 1px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .menu--container {
        padding: 24px 16px;
        position: relative;
        overflow: hidden;
    }

    .search-form {
        display: none;
    }

    .search-mobile-active .menu-search {
        display: block;
        position: absolute;
    }

    .search-mobile-active .menu--container {
        display: none;
    }

    .search-mobile-active .search-form {
        display: block;
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        z-index: 1;
        background-color: #fff;
        overflow: hidden;
        padding: 16px;
        box-shadow: 0 15px 10px rgba(0, 0, 0, 0.03);
    }

    .search-mobile-active .search-form:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 1px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

}

@media (max-width: 996px) {
    .mobile-menu__container {
        flex-direction: row;
        gap: 5px;
    }
}

.user-menu__item .wishlist span {
    display: none;
}

.user-menu__item .wishlist:before {
    content: "";
    height: 24px;
    width: 24px;
    background-image: url(../images/heart.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.user-menu__item .account {
    gap: 8px;
    align-items: center;
}

.user-menu__item .account:before {
    content: "";
    height: 24px;
    width: 24px;
    background-image: url(../images/user.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.user-menu__link--cart:before {
    content: "";
    height: 24px;
    width: 24px;
    background-image: url(../images/cart.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.user-menu__link--cart-full {
    position: relative;
}

.user-menu__link--cart-full:after {
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: var(--color-blue);
    top: 6px;
    right: -2px;
    position: absolute;
}

.user-menu__link--cart>span {
    display: none;
}

/** 
 * 
 * TOP BANNER 
 * 
 * */
.top-banner {
    background-color: var(--color-blue);
    color: #fff;
    padding: 16px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

#checkout .top-banner {
    display: none;
}

@media (max-width: 996px) {
    .top-banner {
        font-size: 14px;
        padding: 8px;
    }
}

/** 
 * 
 * BANNER HOME 
 * 
 * */
.banner-home {
    gap: 16px;
    margin: 14px;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .banner-home {
        padding: 0 80px;
        margin: 0 auto;
        flex-direction: row;
        gap: 80px;
    }
}

.banner-home__child {
    flex-grow: 1;
    flex-basis: 0;
}

.banner-home__text {
    gap: 16px;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .banner-home__text {
        gap: 40px;
        background-image: url(../images/banner-home-background.svg);
        background-size: 322px;
        background-position: top center;
        background-repeat: no-repeat;
    }
}

.banner-home__title {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--color-blue);
    text-align: center;
}

@media (min-width: 768px) {
    .banner-home__title {
        font-size: 80px;
        text-align: left;
    }
}

.banner-home__content {
    font-weight: 300;
    font-size: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .banner-home__content {
        font-size: 32px;
        text-align: left;
    }
}

/**
 * 
 * HOME INFO
 * 
 */

.home-info__container {
    background-color: #F8F8F8;
    padding: 24px 17px;
    margin: 40px 0;
    flex-direction: row;
}

@media (min-width: 768px) {
    .home-info__container {
        padding: 48px 80px;
        margin: 48px 0;
    }
}


.home-info__checkout-process__info {
    border: 1px solid #000;
    padding: 24px 20px;
    border-radius: 4px;
    margin: 32px 0 0 0;
}

.home-info__checkout-process__info .home-info__element,
.home-info__checkout-process__info .home-info__separator {
    display: none;
}

.home-info__checkout-process__info .home-info__subelement {
    display: flex;
}

.home-info__checkout-process__info .home-info__subtitle,
.home-info__checkout-process__info .home-info__content {
    font-size: 14px;
}

.home-info__checkout-process__info .home-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.home-info__product-detail {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.home-info {
    gap: 54px;
}

@media (max-width: 996px) {
    .home-info {
        flex-wrap: wrap;
        flex-grow: 1;
        flex-direction: row;
        gap: 24px;
    }
}

.home-info__separator {
    width: 1px;
    background-color: #AFAFAF;
    height: 93px;
}

.home-info__element {
    gap: 15px;
    width: 100%;
}

@media (max-width: 996px) {
    .home-info__separator {
        width: 100%;
        height: 1px;
    }

    .home-info__subelement {
        flex-basis: 40%;
        flex-grow: 1;
    }
}

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

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

@media (max-width: 996px) {
    .home-info__subtitle {
        font-size: 14px;
    }
}

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

@media (max-width: 996px) {
    .home-info__content {
        font-size: 14px;
    }
}

/**
 * 
 * HOME
 * 
 * 
 */
.home-products__title {
    margin: 0 0 40px 0;
}

.home-products__categories {
    gap: 15px;
    margin: 30px 0;
    flex-direction: row;
    overflow: auto;
    flex-wrap: nowrap;
    flex: 1;
    padding: 20px 0;
}

@media (max-width: 996px) {
    .home-products__categories {
        justify-content: left;
    }
}

@media (min-width: 992px) {
    .home-products__categories {
        margin: 80px 0 40px 0;
        padding: 0;
    }
}

.home-products__categories--link {
    display: block;
    padding: 12px 32px;
    border-radius: 50px;
    color: #020202;
    white-space: nowrap;
    font-size: 20px;
}

.home-products__categories--link:hover {
    background-color: var(--color-blue);
    color: #fff;
}

.home-products__categories--link-active {
    background-color: var(--color-blue);
    color: #fff;
    font-weight: 700;
}

.home-products__categories-tabs .tab-pane.active {
    opacity: 1;
    z-index: 5;
    transform: translate(0, 0);
}

.home-products__categories-tabs .tab-pane {
    opacity: 0;
    z-index: -1;
    transform: translate(0, 40px);
}

/**
 * 
 * MENU USUARIO
 * 
 */
.user-menu {
    gap: 32px;
    justify-content: space-between;
    padding: 8px 0;
}

#checkout .user-menu {
    display: none;
}

.user-menu__container {
    gap: 15px;
}

.user-menu__link {
    gap: 8px;
    white-space: nowrap;
    padding: 7px 0;
}

.user-menu__link--account:before {
    background-image: url(../images/login.svg);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    display: block;
    width: 24px;
    height: 24px;
}

@media (max-width: 996px) {
    .user-menu__link {
        font-size: 0;
    }

    .user-menu__link:before {
        background-repeat: no-repeat;
        background-position: center;
        content: "";
        display: block;
        width: 24px;
        height: 24px;
    }

    .user-menu__link--wishlist:before {
        background-image: url(../images/wishlist.svg);
    }

    .user-menu__link--cart:before {
        background-image: url(../images/cart.svg);

    }
}

/**
 * 
 * HOME BANNER DESPUES DE PRODUCTO
 */
.home-banner-after-products {
    background-color: #f6f6f6;
    background: linear-gradient(to right, #ececec 0%, #f6f6f6 100%);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.home-banner-after-products__container {
    gap: 24px;
}

@media (min-width: 768px) {
    .home-banner-after-products__container {
        gap: 54px;
    }
}

.home-banner-after-products__image {
    width: 100%;
    max-width: 517px;
}

.home-banner-after-products__title {
    margin: 0 0 20px 0;
    position: relative;
}

@media (min-width: 992px) {
    .home-banner-after-products__title {
        margin: 0 0 30px 0;
    }
}

.home-banner-after-products__content {
    font-size: 20px;
    color: var(--color-grey);
    padding: 0 16px;
    line-height: 1.7;
    text-align: center;
}

@media (min-width: 768px) {
    .home-banner-after-products__content {
        padding: 0 40px 0 0;
        text-align: left;
    }
}

.home-banner-after-products__text .button-container {
    padding: 20px 16px 16px 16px;
    margin: 0;
}

@media (min-width: 768px) {
    .home-banner-after-products__text .button-container {
        margin: 40px 0 0 0;
        padding: 0;
    }
}

/** 
 * 
 * PRODUCTOS 
 * 
 */
.product-description-resume {
    margin: 0 0 16px 0;
    color: #6C6C6C;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.read-more {
    margin-left: 4px;
}

.show-read-more .more-text {
    display: none;
}

.product-flags {
    position: absolute;
    top: 5px;
    left: 5px;
    gap: 7px;
    z-index: 1;
}

.product-flag {
    padding: 2px 6px;
    font-size: 11px;
    text-transform: uppercase;
    background-color: var(--color-blue);
    color: #fff;
    border-radius: 3px;
}

.product-flag.out_of_stock {
    background-color: #721c1c;
}

.home-products__title {
    margin: 0 0 40px 0;
}

@media (max-width: 996px) {
    .home-products__title {
        position: relative;
    }
}

.list-products {
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0 80px;
    padding: 0 14px 30px 14px;
}

@media (max-width: 996px) {
    .list-products {
        padding: 0 0px 30px 0px;
    }
}

.grid-products .list-products {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-products .list-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1320px) {
    .list-products {
        padding: 0 0 92px 0;
    }
}

@media (min-width: 1320px) {
    .list-products.capitalize-product .list-products__element:first-child {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 518 / 828;
        overflow: hidden;
        position: relative;
        margin-right: 40px;
        max-width: 515px;
        margin-left: auto;
    }

    .list-products.capitalize-product .list-products__element:first-child img {
        position: relative;
        left: -25%;
        height: 100%;
        width: auto !important;
        max-width: max-content;
        transform: scale(1.04);
        position: absolute;
    }
}

.list-products__element {
    max-width: 100%;
    position: relative;
}

.list-products__element--no-image {
    padding-top: 50px;
}

.list-products__element-capitalize img {
    width: 100%;
}

.grid-products .list-products__element {
    max-width: 738px;
    max-width: 369px;
}

@media (min-width: 996px) {
    .grid-products .list-products__element {
        max-width: 530px;
    }
}

.list-products__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url(../images/wishlist.svg);
    background-size: contain;
    text-indent: -20000px;
    z-index: 9;
}

.list-products__element .wishlist-button-add {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 9;
    background-color: transparent;
}

.list-product-thumbnail_container {
    display: block;
    margin: 0;
}

.list-product-thumbnail_container li {
    max-width: 100%;
}

.list-products__info {
    padding: 8px;
}

.list-products__name {
    font-weight: 400;
    font-size: 14px;
    margin: 0 100px 8px 0;
}

.list-products__price--container {
    justify-content: space-between;
    font-size: 14px;
}

.list-products__add_cart {
    font-weight: 500;
    text-decoration: underline;
}

.list-products__price {
    font-size: 16px;
}

.list-products__price.special-price {
    .regular-price {
        text-decoration: line-through;
    }

    .price {
        font-weight: 700;
    }
}

.list-products__variant-links {
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    transform: translate(0, -32px);
    opacity: 0;
}

.list-products__element:hover .list-products__variant-links {
    opacity: 1;
    transform: translate(0, -52px);
}

.list-products__variant-links--items {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 3px;
    opacity: .8;
}

.list-products__variant-links--items:hover {
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, .4);
}


.list-products__banner {
    gap: 16px;
}

@media (min-width: 768px) {
    .list-products__banner {
        grid-column: span 2;
    }
}

.list-products__banner__image img {
    width: 100%;
}

.list-products__banner__content__title {
    text-align: center;
    margin: 0;
    padding: 8px 0;
    color: #6C6C6C;
    font-size: 20px;
    font-weight: 400;
}

.pagination {
    gap: 15px;
    margin: 0 0 16px 0;
}

.pagination__summary {
    text-align: center;
}

.pagination__pages--list {
    margin: auto;
    gap: 10px;
}

.pagination__pages--link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 35px;
    height: 35px;
    background-color: var(--color-blue);
    color: #fff;
    padding: 0 20px;
}

.pagination-load-more {
    font-weight: 500;
    font-size: 14px;
    gap: 10px;
    text-decoration: underline;

    &:hover {
        text-decoration: none;
    }
}

.pagination-load-more:after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../images/facet-arrow.svg);
    background-size: contain;
}

/*.pagination-load-more.loading:after {
    background-image: url(../images/spinner.gif);
}*/

/**
 * 
 * SLIDER PRODUCTS
 * 
 */

.slider-products.list-products {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 80px;
}

.slider-products>.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 16px;
}

.slider-products>.slick-dots li button {}

.slider-products>.slick-dots li button:before {
    border-radius: 5px;
    content: "";
    background-color: #D9D9D9;
}

.slider-products>.slick-dots li button:before, .slider-products>.slick-dots li button {
    width: 45px;
    height: 8px;
}

@media (max-width: 996px) {
    .slider-products>.slick-dots li button:before, .slider-products>.slick-dots li button {
        width: 22px;
    }
}

.slider-products>.slick-dots li.slick-active button:before {
    background-color: #001F63;
}

.slider-products>.slick-arrow {
    background-color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.slider-products>.slick-arrow:before {
    content: "";
    width: 16px;
    height: 14px;
    display: block;
}

.slider-products>.slick-next {
    right: 20px;
}

.slider-products>.slick-next:before {
    background-image: url(../images/arrow-right.svg);
}

.slider-products>.slick-prev {
    left: 20px;
}

.slider-products>.slick-prev:before {
    background-image: url(../images/arrow-left.svg);
}

.list-products>.slick-list>.slick-track>.slick-slide {
    margin: 0 10px;
}

.list-product-thumbnail_container img {
    width: 100%;
}

.list-product-thumbnail_container .slick-dots {
    position: absolute;
    right: 0;
    margin: 10px 0 0 0;
}

.list-product-thumbnail_container .slick-dots li button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.list-product-thumbnail_container .slick-dots li button:before {
    position: relative;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    line-height: initial;
    background-color: #AFAFAF;
    content: "";
    opacity: 1;
}

.list-product-thumbnail_container .slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #020202;
}

/**
 * 
 * HOME INSTAGRAM
 * 
 * 
 */

.home-instagram {
    margin: 0 0 80px 0;
    position: relative;
    padding: 0 16px 0 16px;
    padding: 0 16px 16px 16px;
    background: linear-gradient(to bottom, #ffffff 0%, #ebebeb 100%);
}

@media (min-width: 768px) {
    .home-instagram {
        margin: 0 0 80px 0;
        background: transparent;
        padding: 0 16px 0 16px;
    }
}

.home-instagram__content {
    font-size: 20px;
    margin: 0 0 24px 0;
    color: var(--color-grey);
}

.home-instagram__images {
    padding-bottom: 20px;
}

.home-instagram__images img {
    max-height: 100%;
    max-width: 370px;
}

@media (min-width: 992px) {
    .home-instagram__images img {
        max-height: 588px;
        max-width: 100%;
    }
}

.home-instagram__images .slick-slide {
    margin: 0 12px;
}

.home-instagram__images figcaption {
    display: block;
    margin: 12px 0 0 0;
    color: var(--color-grey);
}

.home-instagram__images>.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: end;
    gap: 16px;
}

.home-instagram__images>.slick-dots li button {
    width: 45px;
    height: 8px;
}

.home-instagram__images>.slick-dots li button:before {
    width: 45px;
    height: 8px;
    border-radius: 5px;
    content: "";
    background-color: #D9D9D9;
}

.home-instagram__images>.slick-dots li.slick-active button:before {
    background-color: #001F63;
}

/**
 * 
 * REVIEWS
 * 
 */
.home-reviews-list__item {
    border: 1px solid #AFAFAF;
    padding: 16px;
    border-radius: 4px;
}

.home-reviews-list__user-container {
    gap: 15px;
    margin: 0 0 24px 0;
}

.home-reviews-list__user {
    gap: 10px;
    color: var(--color-grey);
}

.home-reviews-list {
    padding-bottom: 20px;
}

.home-reviews-list .slick-slide {
    margin: 0 18px;
}

.home-reviews-list__content {
    font-size: 14px;
    color: var(--color-grey);
}

.home-reviews-list__rating {
    background-image: url(../images/star.svg);
    height: 20px;
    width: 20px;
    background-size: 20px;
    background-repeat: space;
}


.home-reviews-list__item-featured {
    background-color: #f8f8f8;
}

.home-reviews-list__item-featured .home-reviews-list__content {
    text-align: center;
}

.home-reviews-list__item-featured .home-reviews-list__user-container {
    flex-direction: column;
}

.home-reviews-list__rating[data-rating="1"] {
    width: 20px;
}

.home-reviews-list__rating[data-rating="2"] {
    width: 40px;
}

.home-reviews-list__rating[data-rating="3"] {
    width: 60px;
}

.home-reviews-list__rating[data-rating="4"] {
    width: 80px;
}

.home-reviews-list__rating[data-rating="5"] {
    width: 100px;
}

.home-reviews-list>.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: end;
    gap: 16px;
}

@media (max-width: 996px) {
    .home-reviews-list>.slick-dots {
        bottom: -40px;
    }
}

.home-reviews-list>.slick-dots li button {}

.home-reviews-list>.slick-dots li button:before {
    border-radius: 5px;
    content: "";
    background-color: #D9D9D9;
}

.home-reviews-list>.slick-dots li button, .home-reviews-list>.slick-dots li button:before {
    width: 45px;
    height: 8px;
}

@media (max-width: 996px) {
    .home-reviews-list>.slick-dots li button, .home-reviews-list>.slick-dots li button:before {
        width: 22px;
    }
}

.home-reviews-list>.slick-dots li.slick-active button:before {
    background-color: #001F63;
}

.home-reviews .text-title {}

/**
 * 
 * NEWSLETTER
 * 
 */
.home-newsletter {
    margin: 40px 0 0 0;
    padding: 40px 16px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 996px) {
    .home-newsletter {
        padding: 80px 16px;
    }
}

.home-newsletter:after {
    content: "";
    position: absolute;
    height: 449px;
    width: 449px;
    border-radius: 50%;
    background-color: #F3F900;
    bottom: -180px;
    right: -115px;
    z-index: 0;
}

.home-newsletter .alert {
    margin: 16px 0 0 0;
    font-weight: 700;
    color: #fff;
    background-color: #036300;
    text-align: center;
    padding: 16px;
    border-radius: 30px;
}

.home-newsletter .alert.alert-danger {
    background-color: #721c1c;
}

.home-newsletter__form {
    width: 100%;
    max-width: 665px;
    z-index: 1;
    position: relative;
}

.ajax-loading .home-newsletter__form {
    position: relative;
}

.ajax-loading .home-newsletter__form:before {
    content: "";
    inset: 0;
    position: absolute;
    background-image: url(../images/loading.gif);
    background-color: #fff;
    z-index: 10;
    background-position: center 100px;
    background-repeat: no-repeat;
    opacity: .6;
}

.home-newsletter__title {
    text-align: left;
    margin: 0 0 40px 0;
}

.home-newsletter__content {
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.home-newsletter__input_group {
    gap: 24px;
    margin: 0 0 40px 0;
}

.home-newsletter__input_group .input-text {
    max-width: 500px;
    width: 100%;
    background-image: url(../images/mail.svg);
    background-repeat: no-repeat;
    background-position: center left 15px;
    padding-left: 50px;
}

.home-newsletter__submit:before {
    width: 20px;
    height: 20px;
    background-image: url(../images/send.svg);
    display: block;
    content: "";
}

.home-newsletter__input_checkbox {
    gap: 12px;
}

.home-newsletter__input_checkbox input[type="checkbox"] {
    transform: translateY(0);
}

.home-newsletter__input_checkbox a {
    text-decoration: underline;
}

/**
 * 
 * FOOTER LOGOS
 */

.footer-logos {
    background-color: #F8F8F8;
}

.footer-logos__container {
    justify-content: space-between;
    padding: 55px 16px;
    flex-wrap: nowrap;
    overflow: auto;
}

@media (max-width: 996px) {
    .footer-logos__container {
        justify-content: left;
        align-items: center;
        gap: 40px;
        flex-direction: row;
        padding: 50px;
    }
}

.footer-logos__item {
    min-width: 127px;
}

/**
 * 
 * FOOTER
 * 
 * 
 */

#footer {
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.page-footer {
    padding: 30px 0;
}

.footer-logo {
    padding: 77px 0;
}

.footer-menu {
    justify-content: space-between;
    padding: 48px 80px 0 80px;
    max-width: 1198px;
    margin: 0 auto;
    border-top: 1px solid var(--color-blue);
}

.footer-menu>* {
    display: none;
}

.footer-menu>.footer-menu__item {
    display: block;
}

@media (max-width: 996px) {
    .footer-menu {
        gap: 40px;
        border-top: none;
    }

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

.footer-menu__item #link-custom-page-instagram-7 {
    display: flex;
    gap: 8px;
    align-items: center;
}

@media screen and (max-width: 996px) {
    .footer-menu__item #link-custom-page-instagram-7 {
        justify-content: center;
    }
}

.footer-menu__item #link-custom-page-instagram-7:before {
    content: "";
    height: 40px;
    width: 40px;
    background-image: url(../images/instagram.svg);
    background-size: contain;
}

.footer-menu__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 40px 0;
}

.footer-menu__list {
    gap: 24px;
}

.footer-payment-methods {
    gap: 16px;
}

@media (max-width: 996px) {
    .footer-payment-methods {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
    }
}

.footer-menu__link-icon {
    gap: 13px;
    display: flex;
    align-items: center;
}

.footer-menu__link-icon:before {
    content: "";
    height: 30px;
    width: 30px;
    background-size: contain;
}

.footer-menu__link-instagram:before {
    background-image: url(../images/instagram.svg);
}

.footer-menu__item--title-payment-methods {
    margin-top: 20px;
}

.footer-menu__link:hover {
    text-decoration: underline;
}

.after-footer-menu {
    background-color: var(--color-blue);
    padding: 16px;
    color: #fff;
    margin: 80px 0 0 0;
    font-size: 14px;
}

.after-footer-menu__container {
    justify-content: space-between
}

@media (max-width: 996px) {
    .after-footer-menu__container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 16px;
    }
}

.after-footer-menu__links {
    gap: 16px;
}

@media (max-width: 996px) {
    .after-footer-menu__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.after-footer-menu__links a {
    text-decoration: underline;
}

.after-footer-menu__link:hover {
    text-decoration: underline;
}

.after-footer-menu__link {
    color: #fff;
}

/**
 * 
 * 
 * SELECTORES
 * 
 * 
 */

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

.dropdown .expand-more {
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown .expand-more:after {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/selector.svg);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}

.dropdown .expand-more .lang-flag {
    max-width: 24px;
    height: auto;
}

.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #020202;
    display: none;
    padding: 8px;
    z-index: 9;
}

/**
 * 
 * GRID DE PRODUCTOS
 * 
 */

body .faceted-overlay {
    background-color: rgba(255, 255, 255, 0.5);
}

body .faceted-overlay .spinner {
    border-top-color: var(--color-blue);
    animation: spin .7s infinite linear;
}

.grid-products {
    gap: 32px;
}

.category-header {
    gap: 84px;
    margin: 0 0 80px 0;
}

.category-header__title {
    margin: 0;
    padding: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .category-header__title {
        min-width: 400px;
        text-align: left;
    }
}

.category-header__description {
    color: var(--color-grey);
    line-height: 24px;
}

.product-list-top {
    justify-content: space-between;
    margin: 0 0 20px 0;
}

.product-list-top .total-products {
    color: var(--color-grey);
}

@media (max-width: 996px) {
    .product-list-top .total-products {
        display: none;
    }
}

.products-order-by__container {
    gap: 6px;
    align-items: center;
}

.products-order-by__container strong {
    white-space: nowrap;
}

.products-order-by {
    border: none;
    background-color: transparent;
    cursor: pointer;
    text-align: right;
    width: fit-content;
}

@media (max-width: 996px) {
    .products-order-by {
        width: 100%;
    }
}

.products-order-by:focus {
    outline: none;
}

/**
 * 
 * COLUMNAS
 * 
 * 
 */

.js-content-wrapper {
    width: 100%;
}

.columns {
    gap: 32px;
}

.left-column, .right-column, .center-column {
    width: 100%;
}

.left-column, .right-column {
    gap: 20px;
    display: none;
}

#category .left-column, .left-column:empty, #category .right-column, .right-column:empty {
    display: block
}

.column-block {
    border-radius: 4px;
    border: 1px solid #AFAFAF;
    padding: 16px;
}

@media (min-width: 996px) {
    .left-column, .right-column {
        max-width: 278px;
    }

    .left-column {
        position: sticky;
        top: 240px;
        align-self: flex-start;
    }
}

.column-block__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
}

@media (min-width: 996px) {
    .column-block__title {
        font-size: 24px;
    }
}

#search_filters .column-block__title {
    display: flex;
    gap: 10px;
}

#search_filters .column-block__title:before {
    content: "";
    height: 25px;
    width: 25px;
    background-image: url(../images/filter.svg);
    background-size: contain;
    display: block;
}

/**
 * 
 * BREADCRUMB
 * 
 */
.breadcrumb__container {
    margin: 32px 0 48px 0;
}

.breadcrumb {
    align-items: center;
}

.breadcrumb li {
    align-items: center;
}

.breadcrumb li:after {
    content: "";
    height: 32px;
    width: 32px;
    background-image: url(../images/breadcrumb-separator.svg);
    background-size: contain;
}

.breadcrumb li:last-child:after {
    display: none;
}

/**
 * 
 * MODULO FACETS
 * 
 */
.facet {}

.facets-list {
    padding: 4px;
    gap: 16px;
}

.facet-title {
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-grey);
    margin: 0 0 0 0;
    display: flex;
    justify-content: space-between;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    width: 100% !important;
}

.facet-title:after {
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../images/facet-arrow.svg);
    background-size: contain;
    transition: all 0.2s ease;
}

.facet[open] .facet-title {
    margin: 0 0 16px 0;
}

.facet[open] .facet-title:after {
    transform: rotate(180deg);
}

.facet-title:marker {
    display: none;
}

.active_filters {
    display: none;
}

#search_filters .active_filters {
    display: block;
}

.active-filters-list {
    margin: 0 0 16px 0;
}

.active-filters-list__item {
    border-radius: 4px;
    background-color: #4BE8CA;
    padding: 2px 12px;
    margin: 0 16px 5px 0;
    gap: 12px;
    align-items: center;
}

.active-filters-list__item a {
    font-size: 22px;
}

.clear-all-wrapper {
    gap: 12px;
    color: var(--color-grey);
    align-items: center;
    margin: 0 0 16px 0;
}

.clear-all-wrapper .btn {
    font-size: 22px;
    color: var(--color-grey);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.facet-slider-text {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    padding: 0 0 0 0;
}

/**
 * 
 * MI CUENTA
 * 
 */

.account__sidebar {
    max-width: 461px;
    padding: 40px 43px;
    background-color: #f8f8f8;
    width: 100%;
}

@media (max-width: 996px) {

    .account__sidebar {
        position: fixed;
        left: 0;
        top: 150px;
        bottom: 0;
        z-index: 12;
        overflow: auto;
        transform: translateX(-100%);
    }

    .account-menu-viewed .account__sidebar {
        transform: translateX(0);
    }

    .account__sidebar .show-account-menu {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .account__sidebar .show-account-menu:before {
        content: "";
        width: 24px;
        height: 24px;
        background-image: url(../images/close.svg);
        background-size: contain;
        display: block;
        position: relative;
    }

    body.account-menu-viewed {
        overflow: hidden;
    }
}

.account__sidebar:before {
    content: "";
    position: absolute;
    height: 108px;
    width: 108px;
    border-radius: 50%;
    background-color: #F3F900;
    top: -50px;
    right: 0;
    z-index: 0;
}

@media (min-width: 992px) {
    .account__sidebar {
        position: sticky;
        top: 210px;
        align-self: flex-start;
        overflow: hidden;
        padding: 80px 103px 80px 84px;
    }
}

.account__sidebar .text-title {
    color: var(--color-blue);
    width: 20px;
}

.account-menu__container {
    padding: 24px 16px 16px 16px;
}

.account-menu__container a {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    align-items: center;
}

.account-menu__container a:before {
    content: "";
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    background-image: url(../images/account-menu.svg);
}

.account__container--links {
    gap: 16px;
}

.account__container--links-info {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 40px 0 14px 0;
}

.button-logout__container {
    margin: 40px 0 0 0;
}

.button-logout {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-blue);
    text-decoration: underline;
    gap: 10px;
}

.button-logout:before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../images/logout.svg);
    background-size: contain;
}

.account__content {
    padding: 16px 16px 185px 16px;
    width: 100%;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .account__content {
        padding: 76px 104px;
    }
}

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

.account__content .button-container {
    margin: 40px 0 0 0;
}

.account-header {
    margin: 0 0 24px 0;
    justify-content: space-between;
}

.account-header .text-subtitle {
    margin: 0;
    font-size: 32px;
}

.account-header__edit-button {
    align-items: center;
}

.account-header__edit-button:before {
    background-image: url(../images/edit.svg);
    content: "";
    height: 24px;
    width: 24px;
    background-size: contain;
}

.account-header__addresses {
    justify-content: space-between;
    flex-wrap: wrap;
}

.account-header__addresses p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    max-width: 650px;
}

.account-resume {
    gap: 24px;
}

.account-resume__item {
    padding: 0;
    gap: 8px;
    font-size: 20px;
    line-height: 33px;
}

@media (min-width: 768px) {
    .account-resume__item {
        padding: 0 0 0 16px;
    }
}

.account-resume__item>p {
    gap: 8px;
}

.account-resume__info {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.account-resume__icon:before {
    content: "";
    height: 32px;
    width: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.account-resume__icon {
    gap: 8px;
    align-items: center;
}

.account-resume__item-user .account-resume__icon:before {
    background-image: url(../images/user.svg);
}

.account-resume__item-email .account-resume__icon:before {
    background-image: url(../images/mail.svg);
}

.account-resume__item-password .account-resume__icon:before {
    background-image: url(../images/password.svg);
}

.account-resume__item-phone .account-resume__icon:before {
    background-image: url(../images/phone.svg);
}

.account-resume__item-calendar .account-resume__icon:before {
    background-image: url(../images/calendar.svg);
}

.js-address-form .form-footer {
    margin: 24px 0 0 0;
}

/**
 * mis pedidos
 */

.order-actions__container {
    gap: 8px;
}

.order-actions__container .button {
    white-space: nowrap;
}

.account-header__orders {
    gap: 8px;
}

.account-header__orders p {
    max-width: 569px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.orders__container {
    max-width: 661px;
    margin: 24px 0 0 0;
    gap: 24px;
}

.shopping-cart .orders__container {
    margin: 0;
}

.orders__container--item {
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    overflow: hidden;
}

.orders__container--item-data {
    width: 100%;
    padding: 16px 24px;
    position: relative;
    gap: 4px;
}

.orders__container--item-image {
    max-width: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .orders__container--item-image {
        max-width: 253px;
    }
}

.orders__container--item-image li {
    display: none;
}

.orders__container--item-image li:first-child {
    display: block;
}

.orders__container--item-options {
    margin: 16px 0 0 0;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.orders__container-header {
    gap: 16px;
    justify-content: space-between;
}

.orders__container--item-status__container {
    margin: 0 0 16px 0;
}

.orders__container--item-status {
    font-size: 13px;
    font-weight: 700;
    line-height: 21px;
    padding: 2px 5px;
}

.orders__container--item-status__container .orders__container--item-status {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    padding: 3px 9px;
    display: inline-block;
    border-radius: 3px;
}

.orders__container--item-status.bright {
    color: #fff;
}

.orders__container--item-reference {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.orders__container--item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #6C6C6C;
}

.orders__container--item-payment {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    margin: 5px 0 0 0;
}

.view-order-details-link.button:before {
    content: "";
    height: 24px;
    width: 24px;
    background-image: url(../images/cart-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.view-order-details-link.button:hover:before {
    background-image: url(../images/cart.svg);
}

.orders__container--item-invoice.button {
    text-decoration: underline;
    font-weight: 400;
    padding-left: 0;
    padding-right: 0;
}

.orders__container--item-invoice.button:before {
    content: "";
    height: 24px;
    width: 24px;
    background-image: url(../images/download.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

/**
 * 404
 */

#pagenotfound #main {
    padding: 100px 0;
    text-align: center;
}

.page-content.page-not-found {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    text-align: center;
}

.page-content.page-not-found .search-form {
    margin: 50px 0 0 0;
}

/**
 * LOGIN
 */

.login__container {
    gap: 80px;
    padding: 16px 16px 183px 16px;
    position: relative;
    z-index: 1;
}

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

@media (max-width: 992px) {
    .login__container .button-container .button {
        width: 100%;
    }

    .register-form__container .button-container .button {
        width: 100%;
    }
}

.login__container section:first-child:after {
    content: "";
    left: 0;
    right: 0;
    bottom: -40px;
    height: 1px;
    background-color: var(--color-blue);
    position: absolute;
}

@media (min-width: 992px) {
    .login__container {
        gap: 194px;
        padding: 64px 0 118px 0;
    }

    .login__container section:first-child:after {
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        top: 0;
        right: -97px;
        left: auto;
    }
}

.user-background-circle {
    position: relative;
}

.user-background-circle:after {
    content: "";
    position: absolute;
    height: 449px;
    width: 449px;
    border-radius: 50%;
    background-color: #F3F900;
    bottom: -290px;
    right: -97px;
    z-index: 0;
}

@media (min-width: 992px) {
    .user-background-circle:after {
        right: -115px;
        bottom: -180px;
    }
}

.login__container .text-subtitle {
    margin: 0 0 24px 0;
}

.login__container .button-container {
    margin: 40px 0 0 0;
}

.text-login {
    font-weight: 400;
    line-height: 24px;
}

.text-login strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.login-form__container {
    margin: 16px 0 0 0;
    gap: 16px;
}

.login-form-input__container {
    gap: 8px;
}

.login-form-input__container .input-text {
    width: 100%;
    background-repeat: no-repeat;
    background-position: 18px center;
    padding-left: 60px;
}

.login-form-input__container .input-text#field-email {
    background-image: url(../images/mail.svg);
}

.login-form-input__container .input-text#field-password,
.login-form-input__container .input-text#field-new_password {
    background-image: url(../images/password.svg);
}

.login-form-input__container .input-text#field-firstname,
.login-form-input__container .input-text#field-lastname {
    background-image: url(../images/user.svg);
}

.login-form-input__container .input-text#field-birthday {
    background-image: url(../images/calendar.svg);
    background-size: 30px;
}


.login-form-input__container .input-group-password {
    position: relative;
}

.login-form-input__container .input-group-password .input-group-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    z-index: 5;
    bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-input__container .input-group-password .input-group-btn .btn {
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

.login-form-input__container.input-type-checkbox .input-text-comment {
    display: none;
}

#authentication .home-newsletter,
#addresses .home-newsletter,
#my-account .home-newsletter,
.page-customer-account .home-newsletter {
    display: none;
}

.forgot-password a {
    font-weight: 700;
}


/**
 * PASSWORD
 */

#password .home-newsletter {
    display: none;
}

.forgotten-password__container {
    max-width: 586px;
    padding: 40px 0 183px 0;
}

@media (min-width: 992px) {
    .forgotten-password__container {
        padding: 64px 0 278px 0;
    }
}

.forgotten-password__container .form-fields {
    margin: 16px 0 0 0;
}

/*.forgotten-password__container .input-text {
    width: 100%;
    background-repeat: no-repeat;
    background-position: 18px center;
    padding-left: 60px;
}*/

.forgotten-password__container .input-text#email {
    background-image: url(../images/mail.svg);
}

.forgotten-password__container .button-container {
    margin: 40px 0 0 0;
}

/**
 * CREAR CUENTA
 */

.password-requirements {
    margin: 5px 0 16px 0;
    font-size: 13px;
    gap: 3px;
}

.password-requirements em {
    font-style: normal;
}

.js-parent-focus {
    position: relative;
}

.popover {
    background-color: #fff;
    border: #e4e4e4;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
}

#registration .home-newsletter {
    display: none;
}

.register-form__container {
    max-width: 435px;
    padding: 40px 0 183px 0;
}

@media (min-width: 992px) {
    .register-form__container {
        padding: 64px 0 113px 0;
    }
}

.register-form__container .text-title {
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.register-form-login {
    margin: 0 0 24px 0;
}

.form__container {
    gap: 16px;
}

.input-text-comment {
    font-size: 12px;
    display: block;
    margin: 10px 0 0 0;
}

.input-text-comment:empty {
    display: none;
}

.login-form-input__container label em {
    display: block;
    margin: 5px 0 0 0;
    font-size: 12px;
    font-style: normal;
}

.register-form__container .button-container {
    margin: 40px 0 0 0;
}

/**
 * CMS
 */

.page-header-title {
    margin: 48px 0 40px 0;
    padding: 0 16px;
}

section.page-cms {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    padding: 0 0 120px 0;

    p {
        margin: 0 0 10px 0;

        &:last-child {
            margin: 0;
        }
    }
}

.page-cms #wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 0 0;
}

.page-cms #wrapper h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 16px 0 0 0;
}

.page-cms #wrapper h5 {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    margin: 16px 0 0 0;
}

#cms .home-newsletter {
    display: none;
}

/**
 * FICHA DE PRODUCTO
 */

.quick-view, .quick-view span {
    display: none;
}

.open-quick-view .quick-view {
    position: absolute;
    display: block;
    inset: 0 0 50px 0;
    z-index: 10;
}

.product-information.loading {
    position: relative;
}

.product-information.loading:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: .5;
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 30;
}

@media (max-width: 996px) {
    .product-images__container {
        margin: 0 0 16px 0;
        flex-direction: column-reverse;
        display: flex;
    }
}

.product-column__item .breadcrumb__container {
    margin: 0 0 16px 0;
}

@media (max-width: 996px) {
    .product-column__item .breadcrumb__container {
        display: none;
    }
}

.product-column__item .breadcrumb li {
    display: none;
}

.product-column__item .breadcrumb li:first-child, .product-column__item .breadcrumb li:last-child {
    display: flex;
}

.product-column__item .breadcrumb li:last-child {
    font-weight: 700;
}

.product-column__item {
    width: 100%;
}

.product-images__list {
    padding: 16px 0;
    gap: 16px;
    flex-direction: row;
    overflow: auto;
}

.product-images__item {
    max-width: 78px;
}

@media (min-width: 996px) {
    .product-images__list {
        align-items: center;
        justify-content: center;
        padding: 20px 32px 20px 0;
        flex-direction: column;
    }

    .product-images__item {
        max-width: 150px;
    }
}

.product-images__list-small .product-images__item {
    max-width: 65px;
}

.product-images__item .js-thumb {
    cursor: pointer;
    border-radius: 4px;
}

.product-cover img {
    width: 100%;
}

@media (min-width: 996px) {
    .product-cover {
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .product-cover img {
        position: relative;
        height: 100%;
        width: auto !important;
        max-width: max-content;
        transform: scale(1.04);
    }
}

.product-images__item .js-thumb:hover, .product-images__item .js-thumb.js-thumb-selected {
    border: 2px solid var(--color-blue);
}

.product-column__details {
    padding: 0 0 15px 0;
}

.product-container.product-pack .product-column__images {
    display: none;
}

@media (min-width: 996px) {
    .product-column__details {
        padding: 18px 0 0 80px;
    }

    .product-column__images {
        max-width: 630px;
    }
}

.product-detail__description {
    margin: 0 0 16px 0;
    color: #6C6C6C;
    font-weight: 400;
    line-height: 24px;
    padding: 60px 0;
}

.size-guide__link {
    gap: 8px;
    align-items: flex-start;
    text-decoration: underline;
    padding: 0 0 0 8px;
}

@media (min-width: 996px) {
    .size-guide__link {
        align-items: center;
    }
}

.product-detail__variants {
    margin: 16px 0 10px 0;
}

.product-variants__item {
    gap: 16px;
}

.product-variants__list-item {
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 996px) {
    .product-variants__list-item .size-guide__container {
        width: 100%;
    }
}

.product-variants__list-label .radio-label {
    height: 32px;
    border: 1px solid var(--color-link);
    border-radius: 4px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0 10px;
}

.product-variants__list-label input {
    display: none;
}

.product-variants__list-label input:checked+.radio-label, .product-variants__list-label .radio-label:hover {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: #fff;
}

.product-variants__list-label.out-stock-product .radio-label {
    background-color: #F8F8F8;
    border-color: #d9d9d9;
    color: #6C6C6C;
    cursor: not-allowed;
    opacity: .6;
}

.product-detail__quantity {
    gap: 16px;
    align-items: center;
}

.product-detail__quantity .qty {
    gap: 0;
    max-width: 135px;
    align-items: center;
}

.product-pack--container {
    margin: 0 0 32px 0;
}

.product-pack .h4 {
    margin: 0 0 16px 0;
    color: #6C6C6C;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.pack-products-list {
    gap: 16px;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .pack-products-list {
        grid-template-columns: 1fr 1fr;
    }
}

.pack-products-list .pack-product-container {}

.pack-products-list .pack-product-container .mask {
    margin: 0 0 8px 0;
}

.pack-products-list .pack-product-container .pack-product-name {
    font-weight: 400;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.pack-products-list .pack-product-container .pack-product-price {
    font-size: 16px;
}

.pack-products-list .pack-product-container .pack-product-quantity {
    font-size: 16px;
}

/*.product-pack {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}*/
.product-pack-price {
    font-size: 32px;
    line-height: 39.01px;
    font-weight: 700;
    color: var(--color-blue);
}

.product-pack .product-add-to-cart {
    background-color: #fff;
    position: sticky;
    bottom: 0;
    padding-bottom: 16px;
}

.qty input {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    padding: 0 16px;
    border: none;
    max-width: 100%;
    text-align: center;
}

.qty input:focus {
    outline: none;
}

.btn-touchspin.js-touchspin {
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-link);
    color: var(--color-link);
    background-color: transparent;
    position: absolute;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-touchspin.js-touchspin:hover {
    background-color: var(--color-link);
    color: #fff;
}

.btn-touchspin.js-touchspin i {
    display: none;
}

.bootstrap-touchspin {
    position: relative;
    padding: 0 32px;
    max-width: 100%;
}

.bootstrap-touchspin-up {
    top: 0;
    right: 0;
}

.bootstrap-touchspin-up:after {
    content: "+";
}

.bootstrap-touchspin-down {
    top: 0;
    left: 0;
}

.bootstrap-touchspin-down:after {
    content: "-";
}

.js-product-availability {
    padding: 10px 0;
    color: #BF6700;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    margin: 0 0 16px 0;
    gap: 7px;
    align-items: center;
    display: none;
}

.js-product-availability:before {
    content: "";
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/alert.svg);
    display: block;
}

.js-product-availability.product-availability--no_products {
    color: #BF3000;
}

.js-product-availability.product-availability--no_products:before {
    background-image: url(../images/alert-availability.svg);
}


.product_category_reference {
    justify-content: space-between;
    margin: 0 0 16px 0;
    color: var(--color-blue);
}

.product_comments_wishlist {
    justify-content: space-between;
    margin: 0 0 16px 0;
    color: var(--color-blue);
    align-items: center;
}

.tax-shipping-delivery-label {
    display: none;
}

.product-prices {
    gap: 24px;
    padding: 0 0 16px 0;
}

@media (min-width: 768px) {
    .product-prices {
        align-items: flex-end;
    }
}

.product-prices .current-price {
    font-weight: 700;
    color: var(--color-blue);
}

.product-prices__item {
    font-size: 32px;
    line-height: 39.01px;
}

.product-prices__item .label-price {
    font-size: 14px;
    font-weight: 400;
    line-height: 17.07px;
    text-align: left;
}

.product-prices__item.product-discount {
    color: #6C6C6C;
}

.product-prices__item.product-discount .label-price {
    text-decoration: line-through;
}

.product-gallery__main {
    gap: 148px;
}

@media (min-width: 768px) {
    .product-gallery__main {
        align-items: center;
    }
}

.product-gallery__main figure, .product-gallery__main .product-detail__description {
    width: 100%;
}

.product-gallery__main .title-dot.title-dot__right:after {
    transform: translate(-20px, 15px);
}

.product-accessories {
    margin: 80px 0 0 0;
}

.product-add-to-cart {
    padding: 16px 0 0 0;
}

@media (max-width: 768px) {
    .product-add-to-cart {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 11;
        background-color: #fff;
        padding: 16px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .js-product-availability {
        justify-content: center;
        padding: 0;
    }

    .product-detail__quantity {
        justify-content: space-between;
    }

    .product-add-to-cart.hide-add-to-cart {
        transform: translate(0, 100%);
    }
}

.js-mailalert {
    gap: 8px;
}

.js-mailalert .input-text {
    background-image: url(../images/mail.svg);
    width: 100%;
    background-repeat: no-repeat;
    background-position: 18px center;
    padding-left: 60px;
}

.js-mailalert-alerts {
    padding: 8px 0 0 0;
    text-align: center;
}

.product-gallery {
    margin: 0 0 80px 0;
}

.product-gallery__list {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.product-images {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 80px 0 0 0;
}

@media (min-width: 768px) {
    .product-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-images img {
    width: 100%;
}

.wishlist-button-product {
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wishlist-button-product .material-icons {
    display: none;
}

.wishlist-button-product:after {
    content: "";
    height: 24px;
    width: 24px;
    background-image: url(../images/heart.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/** mensajes de error */
.help-block {
    margin: 0 0 16px 0;
}

.help-block .alert {
    padding: 8px 16px;
    border: 1px solid #868686;
    background-color: #e9e9e9;
    border-radius: 30px;
}

.help-block .alert.alert-danger {
    border: 1px solid #3c0606;
    background-color: #a12a2a;
    color: #fff;
}

/**
 * carrito
 */

.shopping-cart-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 20;
    background-color: #fff;
    transform: translate(-100%, 0);
    padding: 72px 48px 0 48px;
    overflow: auto;
    max-width: 550px;
    width: 100%;
}

.shopping-cart-wrapper.loading:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: .5;
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 30;
}

.shopping-cart-viewed .shopping-cart-wrapper {
    transform: translate(0, 0);
}

.shopping-cart-viewed {
    overflow: hidden;
}

.shopping-cart-wrapper__overlay {
    background-color: #000;
    position: fixed;
    inset: 0;
    transform: translate(-100%, 0);
    opacity: 0;
}

.shopping-cart-wrapper-close {
    position: absolute;
    top: 24px;
    right: 24px;
    height: 24px;
    width: 24px;
    background-image: url(../images/close.svg);
    background-size: contain;
}

.shopping-cart-viewed .shopping-cart-wrapper__overlay {
    opacity: .3;
    z-index: 19;
    transform: translate(0, 0);
}

.shopping-cart-total {
    gap: 16px;
    margin: 48px 0 0 0;
}

.shopping-cart-total__item {
    justify-content: space-between;
}

.shopping-cart-total__item.flex-row.shipping {
    display: none;
}

.shopping-cart-buttons {
    gap: 24px;
    margin: 20px 0 0 0;
    position: sticky;
    bottom: 0;
    background-color: #fff;
    padding: 20px 0 48px 0;
}

.shopping-cart-product-list {
    gap: 16px;
}

.shopping-cart-product-list__item {
    gap: 16px;
}

.shopping-cart-product-list__info {
    gap: 10px;
    color: #6C6C6C;
}

.cart-summary-products .shopping-cart-product-list__info {
    gap: 8px;

    .product-line-info {
        font-size: 12px;
        line-height: 10px;
    }
}

.shopping-cart-product-list__info-name {}

.shopping-cart-product-list__info-price {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #020202;
}

.shopping-cart-product-list__actions {
    gap: 16px;
    font-size: 12px;
}

.shopping-cart__footer {
    margin: 16px 0 0 0;
    flex-direction: column;
}

.cart-summary-totals {
    margin: 8px 0 0 0;
    padding: 8px 0 0 0;
    border-top: 1px solid #6C6C6C;
}

.cart-detailed-totals, .cart-detailed-subtotals {
    gap: 8px;
}

.orders__container--item-data .qty {
    max-width: 150px;
}

.shopping-cart .orders__container--item-payment {
    justify-content: space-between;
}

/**
 * ventanas modales
 */

.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    overflow: auto;
    transform: translate(-100%, 0);
    transition: all 0.3s ease;
}

.modal.in {
    transform: translate(0, 0);
}

.modal-dialog {
    padding: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}

.modal-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
}

.modal-header {
    margin: 0 0 24px 0;
}

.modal-header .close {
    background-color: transparent;
    cursor: pointer;
    border: none;
}

.js-checkout-modal {
    display: none;
}

.modal.quickview {
    right: inherit;
    max-width: 462px;
}

.modal.quickview .product-images__list,
.modal.quickview #product-description-short,
.modal.quickview .size-guide__container {
    display: none;
}

.modal.quickview .h1,
.modal.quickview .product-prices__item {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    margin: 0;
    color: var(--color-blue)
}

.modal.quickview .product-images__container {
    margin: 0 0 16px 0;
}

.modal.quickview .modal-dialog {
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    /*display: flex;
    flex-direction: column;
    justify-content: center;*/
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 98;
    transition: all 0.3s ease;
    opacity: 0;
}

.modal-backdrop.in {
    opacity: 1;
}

.modal .modal-content {
    padding: 30px 0 0 0;
}


.modal .modal-header {
    display: flex;
    justify-content: end;
    margin: 0;
    position: fixed;
    left: 0;
    right: 30px;
    top: 15px;
    z-index: 10;
}

.modal .close:before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../images/close.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

/**
 * checkout
 */

.checkout-step-unreachable {
    display: none !important;
}

@media (max-width: 996px) {
    .footer-sticky {
        position: sticky;
        bottom: 0;
        align-self: flex-start;
        background-color: #fff;
        padding: 16px 0;
    }
}

.selector-checkout {
    gap: 16px;
    margin: 0 0 24px 0;
}

.selector-checkout__item {
    width: 100%;
}

.checkout-process {
    gap: 100px;
    justify-content: space-between;
    max-width: 994px;
    margin: 0 auto;
    width: 100%;
    padding: 30px 0;
}

.checkout-process__element {
    width: 100%;
}

.checkout-process__summary-payment-methods {
    margin: 24px 0 0 0;
    text-align: center;
    gap: 16px;
}

.checkout-process__summary-payment-methods .footer-payment-methods {
    justify-content: center;
}

@media (min-width: 996px) {
    section.checkout-process {
        padding: 60px 0;
    }

    .checkout-process__data {
        width: 100%;
        gap: 10px;
    }

    .checkout-process__summary {
        max-width: 381px;
        position: sticky;
        top: 230px;
        align-self: flex-start;
    }

    .checkout-process__summary-products {
        background-color: #fff;
    }
}

.checkout-process__summary-products {
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    padding: 16px;
}

.checkout-process__summary-products-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    margin: 0 0 24px 0;
}

.checkout-process__data .checkout-step .text-title {
    font-size: 32px;
    margin: 0;
}

.checkout-process__data .checkout-step-complete.checkout-step .text-title {
    font-size: 16px;
    line-height: 25px;
}

.checkout-process__data .checkout-step.js-current-step .text-title {
    margin: 0 0 30px 0;
}

.checkout-process__data .checkout-step .text-title .step-number {
    display: none;
}

.checkout-process__data .checkout-step .text-title .step-edit {
    margin: 0 0 0 auto;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.checkout-process__data .checkout-step-complete.checkout-step .text-title .step-edit {
    margin-left: 10px;
}

.form-footer {
    gap: 16px;
    width: 100%;
    align-items: center;
}

@media (min-width: 768px) {
    .checkout-process__data .form-footer {
        margin: 24px 0 0 0;
    }

}

.checkout-process__data .checkout-step .content {
    display: none;
}

.checkout-process__data .checkout-step.js-current-step .content {
    display: block;
    padding: 0 0 60px 0;
}

.checkout-step .content .identity {
    margin: 0 0 8px 0;
}

.checkout-step .content .identity a {
    text-decoration: underline;
}

#cart .home-newsletter,
#cart .breadcrumb__container,
#checkout .home-newsletter,
#checkout .breadcrumb__container,
#order-confirmation .breadcrumb__container {
    display: none;
}

.checkout-process__element .input-text {
    padding: 10px 10px 10px 43px;
    background-position: 10px center;
}

.promo-code {
    gap: 8px;
    margin: 0 0 24px 0;
    padding: 0 0 24px 0;
    border-bottom: 1px solid #6C6C6C;
}

.promo-code .alert {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin: 5px 0 0 0;
}

.promo-code form {
    gap: 16px;
}

.promo-code p {
    color: #6C6C6C;
}

.promo-code .promo-input {
    width: 100%;
    padding: 10px 15px;
}

.button-promo-code {
    border: none;
    text-decoration: underline;
    cursor: pointer;
    background-color: transparent;
    white-space: nowrap;
}

.js-address-selector {
    gap: 16px;
    margin: 16px 0 0 0;
}

.js-address-item {
    gap: 16px;
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    padding: 16px;
}

.js-address-selector .address-footer, .address-body .address-footer {
    margin: 16px 0 0 0;
}

.js-address-selector .radio-block, .address-body {
    gap: 8px;
}

.js-address-selector .radio-block .address, .address-body address {
    font-size: 13px;
    font-style: normal;
}

.js-address-selector .radio-block .address, .js-address-selector .address-footer {
    display: none;
}

.js-address-item.selected .radio-block .address, .js-address-item.selected .address-footer {
    display: block;
}

.js-address-selector .radio-block .custom-radio {
    cursor: pointer;
}

.addresses-list {
    gap: 40px;
}

.address-list__item {
    border: 1px solid #020202;
    border-radius: 4px;
}


.address-list__item__summary {
    padding: 16px;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    cursor: pointer;
    align-items: center;
}

.address-list__item[open] .address-list__item__summary {
    border-bottom: 1px solid #020202;
}

.address-list__item__content {
    padding: 16px;
}

.address-list__item__address {
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    gap: 8px;
}

.checkout-step .address-list__item__address {
    font-size: 14px;
    gap: 0;
}

.addresses-footer {
    margin: 16px 0 0 0;
}

.cart-summary-products {
    margin: 0 0 16px 0;
    border: 1px solid #AFAFAF;
    border-radius: 4px;
}

.cart-summary-products summary {
    padding: 8px;
    cursor: pointer;
    list-style: none;
    display: flex;
    gap: 8px;
    white-space: nowrap;
    align-items: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cart-summary-products summary:before {
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../images/shirt.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin: 0;
}

.cart-summary-products summary:after {
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../images/summary-products.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin: 0 0 0 auto;
    transition: transform 0.3s ease;
}

.cart-summary-products[open] summary:after {
    transform: rotate(180deg);
}

.cart-summary-products[open] summary {
    border-bottom: 1px solid #AFAFAF;
}

.cart-summary-products .shopping-cart-product-list, .cart-summary-products address {
    padding: 16px;
    font-size: 14px;
    font-style: normal;
}

.cart-summary-products .shopping-cart-product-list__image {
    min-width: 140px;
}

.cart-summary-products .shopping-cart-product-list__image img {
    width: 100%;
}

.shopping-cart-product-list__image {
    max-width: 100px;
}

.checkout-process__summary-products .cart-summary-line {
    justify-content: space-between;
}

.cart-summary-line .value {
    text-align: right;
}

.checkout-process__summary-products .cart-total {
    font-weight: 700;
}

.shopping-cart-total-container, .cart-summary-subtotals-container, .cart-summary-totals {
    gap: 8px;
}

.remove-voucher {
    text-decoration: underline;
    color: rgb(138, 39, 39);
    font-size: 12px;
}

.shopping-cart__header {
    max-width: 1104px;
    margin: 40px auto 0 auto;
    width: 100%;
}

/*
.ajax-loading .checkout-process, .ajax-loading .checkout-process {
    position: relative;
}

.ajax-loading .checkout-process:before, .ajax-loading .checkout-process:before {
    content: "";
    inset: 0;
    position: absolute;
    background-image: url(../images/loading.gif);
    background-color: #fff;
    z-index: 10;
    background-position: center 100px;
    background-repeat: no-repeat;
    opacity: .6;
}

.ajax-loading .checkout-process:before {
    background-position: center;
}
*/
.ajax-loading .page {
    position: relative;
}

.ajax-loading .page:before {
    content: "";
    inset: 0;
    position: fixed;
    background-image: url(../images/loading-black.gif);
    background-color: #000;
    z-index: 1000;
    background-position: center 100px;
    background-repeat: no-repeat;
    opacity: .6;
    background-position: center;
}

/**
 * ligthbox
 */
.mfp-content .page-content {
    max-width: 960px;
    background-color: #fff;
    padding: 30px;
    margin: auto;
    overflow: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

body .mfp-preloader {
    color: var(--color-blue);
}

body .mfp-bg {
    background-color: #fff;
}

body .mfp-content {
    padding: 60px 0;
}

/**
 * notificaciones
 */
.notifications-container__list {
    gap: 8px;
    margin: 16px 0;
}

.notifications-container__list-item {
    padding: 16px;
    border-radius: 4px;
    margin: 30px 0 0 0;
}

.alert-danger .notifications-container__list-item {
    background-color: #721c1c;
    color: #fff;
}

.alert-warning .notifications-container__list-item {
    background-color: #BF6700;
    color: #fff;
}

.alert-success .notifications-container__list-item {
    background-color: rgb(8, 88, 8);
    color: #fff;
}

.alert-info .notifications-container__list-item {
    background-color: #AFAFAF;
}

/**
 * envios
 */

.shipping-order-options {
    margin: 16px 0 0 0;
}

.shipping-order-options .input-text {
    width: 100%;
    min-height: 200px;
    border-radius: 4px;
    background-image: url(../images/user.svg);
    background-position: 5px 5px;
    background-repeat: no-repeat;
    border-color: #6C6C6C;

}

.shipping-order-options__comments {
    gap: 8px;
}

.delivery-options {
    gap: 24px;
}

.delivery-options__item {
    border: 2px solid #AFAFAF;
    padding: 16px;
    border-radius: 4px;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.delivery-option__carrier-input {
    display: none !important;
}

.delivery-option__carrier-input:checked+.delivery-options__item {
    border: 2px solid var(--color-blue);
}

.delivery-option__carrier-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--color-blue);
}

/**
 * payment
 */
.js-conditions-to-approve {
    margin: 16px 0 0 0;
    padding: 16px 0 24px 0;
    border-top: 1px solid #6C6C6C;
}

.conditions-to-approve__item {
    gap: 8px;
    align-items: flex-start;
}

.payment-options__list {
    gap: 24px;
}

.payment-options__item {
    border: 2px solid #AFAFAF;
    padding: 16px;
    border-radius: 4px;
    gap: 16px;
    align-items: center;
    cursor: pointer;
}

.payment-option__carrier-input:checked+.payment-options__item {
    border: 2px solid var(--color-blue);
}

.payment-options__item:before {
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    width: 70px;
    height: 35px;
    background-size: contain;
}

.payment-options__item.stripe_official:before {
    background-image: url(../images/payment/stripe.svg);
}

.payment-options__item.redsys:before {
    background-image: url(../images/payment/creditcard.svg);
}

#payment-option-2-container .payment-options__item:before {
    background-image: url(../images/payment/bizum.svg);
}

.payment-options__item.ps_wirepayment:before {
    background-image: url(../images/payment/transfer.svg);
}

.payment-options__item.paypal:before, .payment-options__item.paypal_bnpl:before {
    background-image: url(../images/payment/paypal.svg);
}

.pp-info {
    background-color: #fff;
}

body .pp__text-primary {
    display: none !important;
}

body [data-container-express-checkout] {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: normal !important;
    justify-content: center;
    width: 100%;
}

[data-container-bnpl] {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: normal !important;
}

body [paypal-mark-container] {
    display: none !important;
}

.payment-options__item label {
    cursor: pointer;
}

.payment-option {
    display: block;
}

.js-carrier-extra-content:empty {
    display: none;
}

.js-additional-information {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.payment-option__carrier-input {
    display: none !important;
}

/**
 * confirmacion de pedido
 */
.order-confirmation__container {
    gap: 90px;
    max-width: 994px;
    justify-content: center;
    margin: 0 auto 120px auto;
    padding: 60px 0 0 0;
}

@media (max-width: 996px) {
    .order-confirmation__container {
        gap: 140px;
    }
}

.order-confirmation__container aside {
    max-width: 452px;
}

.order-confirmation__container:after {
    content: "";
    display: block;
    width: 327px;
    height: 250px;
    background-image: url(../images/confirmation.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 996px) {
    .order-confirmation__container:after {
        margin: auto;
    }
}

@media (min-width: 768px) {
    .order-confirmation__container .text-title {
        margin-left: -55px;
    }
}

.order-confirmation__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #6C6C6C;
}

.content-hook_payment_return {
    margin: 24px 0 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.order-confirmation__order-detail {
    margin: 16px 0 0 0;
    gap: 8px;
}

/**
 * detalle pedido
 */
.order-details__data {}

@media (min-width: 996px) {
    .order-details__data {
        position: sticky;
        top: 230px;
        align-self: flex-start;
        width: 100%;
        max-width: 438px;
    }
}

.order-details__box-container {
    gap: 16px;
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    padding: 16px;
}

.order-details__box-text {
    font-size: 14px;
    font-weight: 400;
    color: #6C6C6C;
}

.order-details__box-form {
    gap: 8px;
    margin: 16px 0 0 0;
}

.order-details__box-form .input-text {
    width: 100%;
}

.order-details__box-field {
    gap: 8px;
    align-items: center;
}

.order-details__data-container {}

.order-details__products {
    gap: 16px;
}

@media (min-width: 768px) {
    .order-details__products {
        max-width: 661px;
        gap: 24px;
    }

    .order-details__products .orders__container {
        max-width: 100%;
        margin: 0;
    }
}

.order-details__container {
    gap: 16px;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .order-details__container {
        gap: 106px;
    }
}

body .order-details__title {
    font-size: 48px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
    margin: 0;
    padding: 0 0 0 5px;
    position: relative;
}

body .order-details__title.title-dot.title-dot__left:before {
    transform: translate(0, 0);
    position: absolute;
    top: 0;
    left: -15px;
}

.order-detail__actions {
    gap: 8px;
    margin: 16px auto 0 auto;
}

.order-detail__actions .orders__container--item-invoice {
    border: none;
}

.order-details__data-items {
    gap: 8px;
    margin: 16px 0 0 0;
}

.order-return__products-wrapper {
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    padding: 16px;
    margin: 16px 0 0 0;
    display: none;

}

.order-return__products-wrapper textarea.input-text {
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #6C6C6C;
}

.order-return__products-wrapper .form-footer {
    margin: 8px 0 0 0;
}

.order-return__products-header {
    margin: 0 0 16px 0;
}

.order-details__data-items {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    gap: 4px;
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #AFAFAF;
    color: #6C6C6C;
}

.order-details-steps {
    gap: 16px;
}

@media (max-width: 996px) {
    .order-details-steps {
        overflow: auto;
    }

    .order-details-steps__item {
        min-width: 170px;
    }
}

.order-details-steps__item {
    border-radius: 4px;
    background-color: #F8F8F8;
    padding: 8px;
    gap: 6px;
    text-align: center;
    justify-content: center;
    font-size: 14px;
}

.orders__container--item-total {
    gap: 16px;
    align-items: center;
}

.order-details-messages {
    gap: 16px;
}

.order-details-message-item {
    padding: 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #6C6C6C;
    background-color: #F8F8F8;
    gap: 16px;
}

.order-details-message-item__employee {
    background-color: #edebeb;
    border: 1px solid #cdcdcd;
}

.order-details-message-item__name {
    font-weight: bold;
    text-align: right;
    border-right: 1px solid #AFAFAF;
    padding: 0 16px 0 0;
}

#order-detail .home-newsletter {
    display: none;
}

/** gdpr */
.psgdpr-content {
    gap: 16px;
}

.psgdpr-content__item {
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    padding: 16px;
}

.psgdpr-content__item {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #6C6C6C;
    gap: 8px;
}

.psgdpr-content__item-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    color: #2F2F2F;
    padding: 0 0 8px 0;
}

.psgdpr-content__item-actions {
    gap: 16px;
}

/** nuestra marca */
.our-brand__banner {
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 79px;
}

.our-brand__banner--container {
    width: 100%;
}

.our-brand__subtitle {
    font-size: 32px;
    font-weight: 300;
    line-height: 48px;
}

.our-brand__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
    max-width: 555px;
}

.our-brand__history {
    margin: 0 0 80px 0;
}

.our-brand__history-list {
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

@media (min-width: 996px) {
    .our-brand__history-list:after {
        content: "";
        position: absolute;
        top: 50%;
        height: 8px;
        margin-top: -4px;
        background-color: var(--color-blue);
        border-radius: 20px;
        left: 0;
        right: 0;
    }
}

.our-brand__history-item {
    text-align: center;
    gap: 4px;
    max-width: 180px;
    position: relative;
    min-height: 100px;
    justify-content: center;
}

.our-brand__history-item:nth-child(even) {
    margin-top: 110px;
}

.our-brand__history-item:nth-child(odd) {
    margin-bottom: 110px;
}

.our-brand__history-item:nth-child(even):after,
.our-brand__history-item:nth-child(odd):after {
    content: "";
    height: 22px;
    width: 22px;
    background-color: var(--color-blue);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -11px;
}

.our-brand__history-item:nth-child(even):after {
    top: -23px;
}

.our-brand__history-item:nth-child(odd):after {
    bottom: -23px;
}

.our-brand__history-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-blue);
}

.our-brand__section-subtitle {
    margin: 0;
}

.our-brand__columns {
    gap: 56px;
}

.our-brand__column {
    width: 100%;
    gap: 40px;
    justify-content: center;
}

.our-brand__column p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: #6C6C6C;
}

.our-brand__column-image {
    max-width: 517px;
}

.our-brand__column-image img {
    height: auto;
    width: 100%;
}

.our-brand__academy, .our-brand__museum, .our-brand__ecommerce {
    padding: 80px 0 0 0;
    background: linear-gradient(to bottom, #ebebeb 0%, #f0f0f0 100%);
}

.our-brand__ecommerce {
    padding: 87px 0;
}

.our-brand__hotel, .our-brand__museum-shop {
    padding: 80px 0 0 0;
}

.our-brand__ecommerce-image__container {
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.our-brand__ecommerce-image {
    max-width: 322px;
}

.our-brand__ecommerce-image__container h4 {
    margin: 0;
    font-size: 30.55px;
    font-weight: 700;
    line-height: 37.24px;
}

.our-brand__ecommerce-image__container h5 {
    margin: 0;
    font-size: 26.73px;
    font-weight: 400;
    line-height: 40.09px;
    text-align: left;
}

.our-brand__our-values {
    padding: 80px 0;
}

.our-brand__our-values__text {
    margin: 16px auto 80px auto;
    max-width: 831px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #6C6C6C;
}

.our-brand__our-values__list {
    grid-template-columns: 1fr;
    gap: 80px;
}

@media (min-width: 768px) {
    .our-brand__our-values__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 996px) {
    .our-brand__our-values__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1180px) {
    .our-brand__our-values__list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.our-brand__our-values__item {
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.our-brand__gallery-list {
    gap: 8px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .our-brand__gallery-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 996px) {
    .our-brand__gallery-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.our-brand__gallery-list img {
    width: 100%;
}

.our-brand__button:before {
    content: "";
    width: 20px;
    height: 18px;
    background-image: url(../images/our-brand-icon.svg);
    background-size: contain;
}

body .fancybox-skin {
    background-color: #fff;
}

body .fancybox-overlay {
    background: rgba(255, 255, 255, .5);
}

body .fancybox-opened .fancybox-skin {
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    border-radius: 20px;
}

body .fancybox-close {
    background-image: url(../images/close.svg);
    background-repeat: no-repeat;
    top: 24px;
    right: 24px;
    height: 24px;
    width: 24px;
}

.footer-comments {
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid #cccccc;
}

/** contacto */
.contact-form__container .form__container {
    max-width: 435px;
}

/** filtros */
@media (max-width: 996px) {
    .filters-opened #search_filters {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 20;
        background-color: #fff;
        padding: 16px;
        border: none;
        border-radius: 0;
    }

    .search_filters__container {
        display: none;
    }

    .filters-opened .search_filters__container {
        display: block;
    }

    .search_filters__footer {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 40px 0 0 0;
    }

    .filters-opened .close-filters {
        position: absolute;
        top: 18px;
        right: 20px;
        width: 24px;
        height: 24px;
        background-image: url(../images/close.svg);
        background-size: contain;
    }

    .search_filters__apply:before {
        content: "";
        width: 24px;
        height: 24px;
        background-image: url(../images/filters.svg);
        background-size: contain;
    }

    #search_filters {
        width: auto;
    }

    #search_filters .active_filters {
        display: none;
    }

    .filters-opened #search_filters .active_filters {
        display: block;
    }

    #search_filters .column-block__title {
        margin: 0;
    }

    .filters-opened #search_filters .column-block__title {
        margin: 0 0 24px 0;
    }

    #search_filters {
        width: 230px;
    }

    .filters-opened #search_filters {
        width: 100%;
    }
}

.related-products-reference {
    margin: 0 0 16px 0;
}

.related-products-reference p {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6C6C6C;
}

.related-products-reference__list {
    gap: 10px;
    flex-wrap: wrap;
}

.related-products-reference__list:hover li {
    opacity: .5;
}

.related-products-reference__list li:hover {
    opacity: 1;
}

.related-products-reference__item {
    max-width: 64px;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid transparent;
}

.related-products-reference__item.selected, .related-products-reference__item:hover {
    border-color: #001F63;
}

/** slider */
.carousel-inner {
    margin: 0 0 50px 0;

    .carousel-item {

        position: relative;
        overflow: hidden;

        figure {
            display: flex;
            justify-content: center;
            align-items: center;

            picture {
                width: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    max-width: 100%;
                }
            }
        }

        .caption {
            text-align: left;
            position: absolute;
            inset: 0;
            display: flex;
            padding: 60px;
            flex-direction: column;
            justify-content: end;
            box-sizing: border-box;
            color: #fff;

            @media (min-width: 996px) {
                padding: 230px 52.5% 230px 230px;
                justify-content: center;
            }

            .home-info__title {
                text-align: center;
                font-size: 37px;
                margin: 0 0 10px 0;

                @media (min-width: 996px) {
                    font-size: 65px;
                    text-align: left;
                }
            }

            .home-info__content {
                text-align: center;
                font-size: 20px;

                @media (min-width: 996px) {
                    text-align: left;
                }

                * {
                    text-align: center;
                    font-size: 20px;
                    margin: 0 0 5px 0;
                    line-height: 16px;
                    display: none;

                    @media (min-width: 996px) {
                        text-align: left;
                        font-size: 20px;
                        line-height: 25px;
                        display: block;
                    }
                }
            }
        }
    }

    .slick-prev {
        left: 15px;

        @media (min-width: 996px) {
            left: 30px;
        }
    }

    .slick-next {
        right: 15px;

        @media (min-width: 996px) {
            right: 30px;
        }
    }

    .slick-prev:before {
        background-image: url(../images/arrow-left.svg);
    }

    .slick-prev, .slick-next {
        background-color: #fff;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9;
    }

    .slick-next:before {
        background-image: url(../images/arrow-right.svg);
    }

    .slick-arrow:before {
        content: "";
        width: 16px;
        height: 14px;
        display: block;
    }

    .slick-dots {
        position: absolute;
        bottom: 25px;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 16px;

        li button:before, li button {
            width: 45px;
            height: 8px;
        }

        li button:before, li button {
            width: 45px;
            height: 8px;
            border-radius: 5px;
            content: "";
            background-color: #D9D9D9;
        }

        li.slick-active button:before {
            background-color: #001F63;
        }

    }
}



/** envios internacionales */
body {
    .correos-carrer-content.international {
        padding: 20px;
        background-color: #F8F8F8;
        border-radius: 5px;
        border: 1px solid #AFAFAF;
        box-sizing: border-box;

        #aduana_content {
            margin: 0 0 10px 0;
        }

        input[name='cr_international_mobile'] {
            width: 100%;
            margin: 5px 0 0 0;
            padding: 10px;
            border-radius: 5px;
        }
    }
}

.captcha_register {
    display: none;
}

.login-form-input__container label[for=field-captcha] {
    display: none;
}