:root {
    /* Colores */
    /* ------- */
    --white--1: #fafafa;
    --white--2: #fff;
    --white--3: #F5F5F5;

    --light-gray: #d5d5d5;
    --medium-gray: #bebaba;
    --medium-gray--2: #959595;
    --dark-gray: #4f4f4f;
    --dark-gray--2: #585858;

    --black: #1f1f1f;
    --blue: #0161c8;
    --purple: #845fbb;
    --brown: #ac886b;
    --orange: #f33f3f;

    --transparencia-1: #1f1f1ff8;
    --transparencia-2: #000000bf;
    --transparencia-3: #1f1f1fa8;
    --transparencia-gradient-1: linear-gradient(to top,
            var(--transparencia-3) 20%,
            transparent);

    /* Tipografías (fuentes) */
    /* --------------------- */
    --ff-default: system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
        'Open Sans', 'Helvetica Neue', sans-serif;
    --ff-main: "Roboto", var(--ff-default);
    --ff-variant: "Poppins", var(--ff-default);

    --fw-light: 300;
    --fw-regular: 400;
    --fw-bold: 600;
    --fw-extra-bold: 800;

    /* Font sizes (fs: font-size) */
    /* -------------------------- */
    --fs-3xs: 14px;
    --fs-2xs: 16px;
    --fs-2xs--variant: 17px;
    --fs-xs: 20px;
    --fs-sm: 24px;
    --fs-sm--variant: 26px;
    --fs-lg: 32px;
    --fs-xl: 40px;
    --fs-xl--variant: 50px;
    --fs-2xl: 60px;
    --fs-2xl--variant: 65px;
    --fs-3xl: 80px;

    /* Icon sizes */
    /* ---------- */
    --icon-size-xs: 17px;
    --icon-size-sm: 19px;
    --icon-size-md: 20px;
    --icon-size-lg: 24px;
    --icon-size-xl: 50px;
    --icon-size-2xl: 60px;


    /* Spacings (margins, paddings, gaps) */
    /* ---------------------------------- */
    --space-2xs: 5px;
    --space-xs: 10px;
    --space-sm: 15px;
    --space-md: 20px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 50px;
    --space-3xl: 70px;

    /* Otras utilidades */
    /* ---------------- */
    --invert-to-white: invert(100%) sepia(0%) saturate(7452%) hue-rotate(114deg) brightness(111%) contrast(110%);
    --invert-to-blue: invert(19%) sepia(61%) saturate(3669%) hue-rotate(200deg) brightness(106%) contrast(99%);

    --br-1: 25px;
    --br-2: 15px;
    --br-3: 10px;
    --br-pill: 100px;

    --tr-sm: 0.2s;

    --bs-1: 1px 0px 5px var(--transparencia-3);

    --outl-b-white-1: 1px solid var(--white--1);
    --outl-b-blue-1: 1px solid var(--blue);

    /* ---------------------------------- */
    --primario: var(--blue);
    --secundario: var(--purple);
    --transparencia: rgba(31, 31, 31, 0.014);
    --familia_fuente: var(--ff-main);
}

a:focus {
    outline: transparent;
}

.m-auto {
    margin: auto;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.flex {
    display: flex;
}

.full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.object-cover {
    object-fit: cover;
}

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

/* Reset */
/* ----- */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

button,
input {
    background-color: transparent;
    font-family: var(--ff-main);
    font-size: var(--fs-2xs);

    &,
    &:focus {
        border: none;
        outline: none;
    }
}

main {
    overflow-x: clip;
}

/* ESTILOS SIN RESPONSIVE MAQUETA AQUI */
/* Utilidades */
/* ---------- */
.bg-black {
    background-color: var(--black);
}

.bg-white {
    background-color: var(--white--1);
}

.bg-orange {
    background-color: var(--orange);
}

.color-blue {
    color: var(--blue);
}

.color-purple {
    color: var(--purple);
}

.color-brown {
    color: var(--brown);
}

.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white--1);
}

.invert-white {
    filter: var(--invert-to-white);
}

.color-by-child {
    &:nth-child(4n + 1) {
        --color: var(--blue);
    }

    &:nth-child(4n + 2) {
        --color: var(--purple);
    }

    &:nth-child(4n + 3) {
        --color: var(--brown);
    }

    &:nth-child(4n + 4) {
        --color: var(--orange);
    }
}

#login-modal {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) !important;
    align-content: center;
    transition: all 0.3s ease;
    z-index: 9999;
}

.modal-open {
    #login-modal {
        display: block !important;
        opacity: 1 !important;

        .modal-dialog {
            pointer-events: all !important;

            .loginmodal-container {
                border-radius: 25px;

                p.titulo_login_modal {
                    color: var(--black);
                    font-size: 25px;
                    font-family: var(--ff-main);
                    font-weight: 600;
                    margin-bottom: 10px;
                }

                input[type=text],
                input[type=email],
                input[type=password] {
                    border-radius: 10px;
                    padding: 0 10px;
                }

                .btn-lg.btn-corporativo {
                    width: 100%;
                    padding: 0;
                    height: 50px;
                    font-weight: var(--fw-regular);
                    background-color: var(--blue);
                    border-radius: var(--br-pill);
                    text-transform: capitalize;
                    margin-top: 10px;
                }
            }
        }
    }
}

/* Reutilizables */
/* ---------- */
.m-auto {
    margin: auto;
}

.logo {
    /* width: 91px; */
    aspect-ratio: 1 / 1;

    &.logo--header {
        height: 100%;

        .logo-decorator {
            background-color: var(--white--1);
            width: 186px;
            max-height: 186px;
            display: grid;
            position: relative;
            /* top: calc(-1 * (var(--space-sm) * 3)); */
            top: -35px;

            &::before,
            &::after {
                content: '';
                width: 100%;
                height: 100%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border-radius: 100px;
                outline: var(--outline-width) solid var(--outline-color);
            }

            &::before {
                --outline-width: var(--space-xs);
                --outline-color: #4F4F4F;

                z-index: 1;
            }

            &::after {
                --outline-width: calc(var(--space-xs) * 2);
                --outline-color: #373737;

                z-index: 0;
            }

            img {
                height: 137px;
            }
        }
    }

    &.logo--mobile {
        scale: 0.4;

        .logo-decorator {
            top: calc(-1 * var(--space-lg));
        }
    }

    &.logo--footer {
        height: 100%;
        width: 100%;
        max-height: 185px;
    }
}

.link {
    color: var(--white--2);
    font-family: var(--ff-main);
    font-size: var(--fs-2xs);
    font-weight: var(--fw-regular);
    transition: var(--tr-sm);

    &:hover,
    &:focus {
        color: white;

        &.bg-black {
            background-color: var(--primario);
        }
    }

    &.link--variant {
        font-size: var(--fs-2xs--variant);
    }

    &.link--uppercase {
        text-transform: uppercase;
    }

    &.link--pill {
        width: min(100%, 274px);
        height: 50px;
        margin: 0 auto;
        display: grid;
        place-items: center;
        border-radius: var(--br-pill);
        transition: all 0.3s ease;
    }

    &.link--pill:hover {
        filter: brightness(1.3);
    }
}

.social-links {
    display: flex;
    gap: 15px;

    a {
        aspect-ratio: 1 / 1;
        width: var(--icon-size);
        display: grid;
        place-items: center;

        img {
            width: 100%;
        }

        svg {
            width: 100%;
        }
    }

    &.social-links--secondary-nav {
        --icon-size: var(--icon-size-xs);
    }

    &.social-links--footer {
        --icon-size: var(--icon-size-lg);
        gap: var(--space-sm);
    }
}

.shopping-links {
    display: flex;
    gap: var(--space-xs);

    img {
        filter: var(--invert-to-white);
    }

    a {
        transition: background-color var(--tr-sm);

        &:hover {
            background-color: var(--color);
        }
    }
}

.circle {
    --width: var(--icon-size-sm);
    background-color: var(--color);
    aspect-ratio: 1 / 1;
    width: var(--width);
    display: grid;
    place-items: center;
    border: none;
    border-radius: 100% !important;

    img {
        width: 100%;
    }

    svg {
        width: 100%;
    }

    &.circle--only-border {
        background-color: transparent;
        border: 1px solid var(--color);
    }

    &.circle--lg {
        --width: var(--icon-size-xl);
        width: var(--width);

        img {
            width: var(--icon-size-md);
            filter: brightness(0) invert(1);
        }

        svg {
            width: var(--icon-size-md);
        }
    }

}

/* ************ */
/* * CABECERA * */
/* ************ */
.header {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;

    .header-nav {

        .nav-list {
            margin-bottom: 0;
            padding: 0 var(--space-xl);
            display: flex;
            align-items: center;

            &.nav-list--secondary {
                background-color: var(--transparencia-1);
                height: 45px;
                justify-content: flex-end;
                gap: var(--space-lg);
                border-bottom: 1px solid var(--dark-gray);

                .contact {
                    --icon-size: var(--icon-size-xs);

                    padding-left: var(--space-md);
                    gap: var(--space-md);
                    border-left: 1px solid var(--medium-gray--2);

                    &,
                    .contact-item {
                        display: flex;
                        align-items: center;
                    }

                    .contact-item {
                        gap: var(--space-xs);

                        .contact-item__icon {
                            --icon-size: var(--icon-size-sm);

                            width: var(--icon-size);
                            aspect-ratio: 1 / 1;
                        }

                        .contact-item__text {
                            color: var(--light-gray);
                            font-weight: var(--fw-light);
                            margin-bottom: 0;
                            font-size: 15px;
                        }
                    }
                }
            }

            &.nav-list--main {
                background-color: var(--transparencia-2);
                height: 120px;
                justify-content: space-between;
                gap: 5px;

                .links {
                    height: 100%;
                    gap: 5px;

                    &,
                    .link {
                        display: flex;
                    }

                    li {
                        transition: all 0.3s ease;

                    }

                    .link {
                        height: 100%;
                        align-items: center;
                        padding: 0 var(--space-lg);
                        transition: all 0.3s ease;
                        border-bottom: 3px solid transparent;
                        text-align: center;
                    }

                    li.active,
                    li:hover {
                        .link {
                            background-color: var(--black);
                            border-bottom: 3px solid var(--dark-gray);
                        }
                    }
                }
            }
        }
    }

    &.header--mobile {
        --header-top-h: 52px;
        position: fixed;
        z-index: 11;
        /* overflow-x: clip; */

        .header-top {
            position: relative;
            z-index: 10;
            background-color: var(--transparencia-1);
            height: var(--header-top-h);
            display: flex;
            justify-content: space-between;

            .hmb-button,
            .shopping-btn {
                background-color: var(--color);
                height: 100%;
                aspect-ratio: 1 / 1;
                display: grid;
                gap: var(--space-3xs);
                place-items: center;
                outline: none;
                border: none;
            }

            .hmb-button {
                --color: var(--blue);
                padding: var(--space-sm);

                span {
                    background-color: var(--white--1);
                    width: 100%;
                    height: 2px;
                    display: block;
                    border-radius: var(--br-pill);
                }
            }

            .shopping-btn {
                --color: var(--purple);
                padding: var(--space-xs);

                .shopping-btn__icon {
                    /* width: var(--icon-size-md); */
                    width: 24px;
                    object-fit: contain;
                    filter: var(--invert-to-white);
                }
            }
        }

        .mobile-nav {
            --nav-w: min(100%, 270px);
            --bg-color-nav: #292929;
            background-color: var(--bg-color-nav);
            width: var(--nav-w);
            height: calc(100dvh - 52px);
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            position: absolute;
            translate: calc(var(--nav-w) * -1) 0;
            box-shadow: var(--bs-1);
            transition: translate var(--tr-sm), opacity var(--tr-sm);
            opacity: 0;

            .main-links {
                display: flex;
                flex-direction: column;
                height: 100dvh;
                padding: 0;
                margin: 0;

                li {
                    padding: 17px 25px;
                    border-bottom: 1px solid #505050;
                    transition: var(--tr-sm);

                    .link {
                        color: var(--white--1);
                        font-weight: var(--fw-regular);
                        display: flex;
                        gap: var(--space-xs);
                        align-items: center;

                        img {
                            width: var(--icon-size-lg);
                            filter: var(--invert-to-white);
                        }

                        span {
                            height: fit-content;
                            display: block;
                        }
                    }

                    &:hover {
                        background-color: var(--white--1);

                        .link {
                            color: var(--blue);

                            img {
                                filter: var(--invert-to-blue);
                            }
                        }
                    }

                    &.social-links {
                        justify-content: center;
                        padding: var(--space-sm);
                        border: none;

                        div {
                            width: 100%;
                            display: flex;
                            padding: var(--space-2xs) var(--space-sm);
                            justify-content: center;
                            gap: var(--space-lg);
                            border-radius: var(--br-3);

                            a {

                                img,
                                svg {
                                    width: var(--icon-size-lg);
                                }
                            }
                        }

                        &:hover {
                            background-color: transparent;
                        }
                    }

                    &:has(.shopping-links) {
                        flex-grow: 1;
                        display: grid;
                        align-items: flex-end;

                        .shopping-links {
                            height: 100%;
                            justify-content: center;
                            align-items: flex-end;
                        }

                        &:hover {
                            background-color: transparent;
                        }
                    }
                }
            }

            .search-form {
                margin-top: var(--space-xl);
                padding: var(--space-md);
                padding: 8px 20px 0 20px;

                .search-bar {
                    height: 40px;
                    display: flex;
                    align-items: center;
                    gap: var(--space-2xs);
                    overflow: hidden;

                    input,
                    button {
                        width: 100%;
                        height: 100%;
                        display: block;
                    }

                    input {
                        color: var(--black);
                        padding-left: 15px;
                        border: 1px solid #505050;
                        border-radius: var(--br-1);

                        &::placeholder {
                            color: var(--light-gray);
                        }
                    }

                    button {
                        background-color: var(--white--1);
                        width: 40px;
                        flex-shrink: 0;
                        display: grid;
                        place-items: center;
                        border-radius: 100%;

                        img {
                            width: var(--icon-size-lg);
                            filter: var(--invert-to-blue);
                            padding: 3px;
                        }
                    }
                }
            }

            .favorites-btn {
                margin-top: var(--space-sm);
                padding: var(--space-md);
                display: flex;
                align-items: center;
                gap: var(--space-xs);
                border-bottom: 1px solid #505050;

                .favorites-btn__icon {
                    width: var(--icon-size-md);
                    aspect-ratio: 1 / 1;
                    filter: var(--invert-to-white);
                    margin-right: 3px;
                    margin-bottom: 1px;
                }

                span {
                    font-family: var(--ff-main);
                    transition: var(--tr-sm);
                }

                &:hover {
                    background-color: var(--white--1);

                    .favorites-btn__icon {
                        filter: var(--invert-to-blue);
                    }

                    span {
                        color: var(--blue);
                    }
                }
            }
        }

        .nav-veil {
            background-color: var(--transparencia-3);
            width: 100dvw;
            height: 100dvh;
            position: fixed;
            top: 0;
            left: 0;
            transition: opacity var(--tr-sm);
            opacity: 0;
            display: none;
        }

        &:has(.hmb-button--opened) {
            .nav-veil {
                display: block;
            }

            .mobile-nav {
                translate: 0;
                opacity: 1;
            }

            .nav-veil {
                opacity: 1;
            }
        }
    }
}

.banner-content {

    .section__subtitle,
    .section__title {
        text-shadow: 1px 3px 6px #000000a4;
    }
}

.section {
    --spacing-y: calc(var(--space-lg) + var(--space-3xl));
    padding: var(--spacing-y) var(--space-lg);

    .section__title,
    .section__subtitle {
        font-family: var(--ff-main);
    }

    h1.section__title {
        font-size: var(--fs-3xl);
        max-width: 15ch;
        line-height: 75px;

    }

    h2.section__title {
        color: var(--black);
        font-size: var(--fs-2xl--variant);
        margin-bottom: var(--space-2xl);
    }

    .section__title {
        font-weight: var(--fw-bold);
    }

    .section__subtitle {
        font-size: var(--fs-sm--variant);
        font-style: italic;
        font-weight: var(--fw-light);
        margin-bottom: 10px;
    }

    &.section--top-categories .categories-list,
    &.section--products,
    &.section--equipment {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }


    &.section--news,
    &.section--about-us {
        .link {
            height: 55px;
            transition: all 0.3s ease;
        }

        .link:hover {
            background-color: var(--primario);
        }
    }

    /* ********** */
    /* * BANNER * */
    /* ********** */
    &.section--banner {
        background-image: var(--gradient-bg);
        background-size: 60%;
        background-position: left;
        height: max(650px, 80dvh);
        display: grid;
        align-items: center;
        position: relative;
        padding: unset !important;
        z-index: 0;

        .carousel.slide {
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: 0;
            top: 0;
            left: 0;

            .carousel-inner {
                width: 100%;
                height: 100%;

                .carousel-item {
                    width: 100%;
                    height: 100%;

                    .hero-slide-image {
                        height: 100%;
                        /* o el valor que necesites */
                        background-size: cover;
                        background-position: center;
                    }
                }
            }
        }

        .banner-content {
            position: relative;
            z-index: 2;
            top: 5dvh;
        }

        .opacidad {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            z-index: 1;
            background-color: #000;
            opacity: 0.2;
            pointer-events: none;
        }

        .adorno_banner {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 6px;
            z-index: 1;
            pointer-events: none;
            background-size: 100% 100% !important;

            /* img {
                position: absolute;
                bottom: 0;
                width: 100%;
            } */
        }

        .main-info {
            color: var(--white--1);
        }

        .in-memory {
            position: absolute;
            top: 50%;
            right: calc(var(--space-lg) + (var(--space-xs) * 2));
            transform: translateY(-50%);

            &::before,
            &::after {
                content: '';
                width: 100%;
                height: 100%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border-radius: 100%;
                outline: var(--outline-width) solid var(--outline-color);
            }

            &::before {
                --outline-width: var(--space-xs);
                --outline-color: #ffffff67;

                z-index: 1;
            }

            &::after {
                --outline-width: calc(var(--space-xs) * 2);
                --outline-color: #ffffff48;

                z-index: 0;
            }

            img {
                height: 426px;
            }
        }
    }

    /* ************************** */
    /* * CATEGRORÍAS DESTACADAS * */
    /* ************************** */
    &.section--top-categories {
        background-color: var(--white--1);

        .categories-list {
            .category {
                height: 100%;

                figure {
                    height: 100%;
                    margin: 0;
                    padding: var(--space-sm);
                    display: flex;
                    flex-direction: column;

                    .image-container {
                        overflow: hidden;
                        border-radius: var(--br-1);
                        /* transition: scale var(--tr-sm); */
                        overflow: hidden;

                        img {
                            object-fit: cover;
                            aspect-ratio: 3 / 4;
                            transition: all 0.3s ease-in-out;
                        }
                    }

                    figcaption {
                        h3 {
                            font-family: var(--ff-main);
                            font-size: var(--fs-lg);
                            font-weight: var(--fw-bold);
                            text-align: center;
                            margin-bottom: 0;
                            padding: var(--space-md) 0;
                        }

                        .link {
                            font-weight: var(--fw-regular);
                        }
                    }
                }

                /* 1ª columna */
                &:nth-child(3n + 1) {
                    figure {
                        figcaption {
                            a {
                                background-color: var(--blue);
                            }
                        }
                    }
                }

                /* 2ª columna */
                &:nth-child(3n + 2) {
                    figure {
                        figcaption {
                            a {
                                background-color: var(--purple);
                            }
                        }
                    }
                }

                /* 3ª columna */
                &:nth-child(3n + 3) {
                    figure {
                        figcaption {
                            a {
                                background-color: var(--brown);
                            }
                        }
                    }
                }

                &:hover {
                    figure {
                        .image-container {
                            img {
                                scale: 1.05;
                            }
                        }
                    }
                }

            }
        }
    }

    /* ********* */
    /* PRODUCTOS */
    /* ********* */
    &.section--products {
        --spacing-x: calc(var(--space-md) + var(--space-lg));

        padding: var(--spacing-y) var(--spacing-x);

        .products-list {
            margin-bottom: var(--space-3xl);
            padding: 0;
            row-gap: 60px;

            .product {
                padding: var(--space-sm);
                position: relative;
                pointer-events: all;
                height: 620px;

                .image-container {
                    display: block;
                    border-radius: var(--br-2);
                    box-shadow: 0px 0px 2px var(--medium-gray);
                    overflow: hidden;
                    height: 460px;

                    .product__img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        /* transition: var(--tr-sm); */
                        transition: all 0.5s ease;
                    }
                }

                .product__name {
                    font-family: var(--ff-main);
                    font-size: var(--fs-xs);
                    text-align: center;
                    font-weight: var(--fw-bold);
                    margin: 0;
                    padding: var(--space-lg) 0 var(--space-md);
                    color: var(--black) !important;
                    line-height: 25px;
                }

                .product-bottom {
                    position: absolute;
                    gap: var(--space-sm);
                    bottom: 0;
                    width: 100%;

                    &,
                    .price {
                        display: flex;
                        align-items: center;
                        width: 93%;
                    }

                    .shopping-cart-button {
                        transition: all 0.3s ease;
                    }

                    /* .shopping-cart-button:hover {
                        filter: brightness(1.2);
                    } */

                    .price {
                        background-color: var(--white--1);
                        font-family: var(--ff-main);
                        font-weight: var(--fw-bold);
                        width: 100%;
                        height: 50px;
                        justify-content: center;
                        /* gap: var(--space-2xs); */
                        gap: 8px !important;
                        border-radius: var(--br-pill);

                        .price__actual {
                            color: var(--black);
                            /* font-size: var(--fs-sm--variant); */
                            font-size: 25px !important;
                        }

                        .price__original {
                            color: var(--medium-gray);
                            font-size: var(--fs-xs);
                            text-decoration: line-through;
                        }
                    }
                }

                .like-button {
                    background-color: var(--white--1);
                    width: 35px;
                    aspect-ratio: 1 / 1;
                    position: absolute;
                    top: var(--space-md);
                    right: var(--space-md);
                    border-radius: 100%;
                    z-index: 1;

                    .like-button__img {
                        width: var(--icon-size-xs);
                    }
                }

                &:hover {
                    .product__img {
                        scale: 1.1;
                    }

                    .product__name {
                        color: var(--black);
                    }
                }
            }
        }

        .container-fluid {
            overflow: hidden;
        }

        .link {
            width: 334px;
            height: 60px;
        }
    }

    /* ************ */
    /* EQUIPAMIENTO */
    /* ************ */
    &.section--equipment {
        --spacing-x: calc(var(--space-md) + var(--space-lg));

        margin-bottom: var(--space-3xl);
        padding: var(--spacing-y) var(--spacing-x);

        .equipment {
            background-image: var(--equipment-decorator);
            background-repeat: no-repeat;
            background-position: right;
            color: var(--white--1);
            aspect-ratio: 16 / 9;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: var(--space-lg);
            border-radius: var(--br-1);
            position: relative;
            overflow: hidden;

            &::before,
            &::after {
                content: '';
                background-size: cover;
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                z-index: -1;
            }

            &::before {
                background-image: var(--bg);
            }

            &::after {
                background-image: var(--bg-gradient);
            }

            .equipment__title {
                font-size: var(--fs-xl);
                font-weight: 700;
            }

            .link {
                height: 55px;
                margin: 0;
            }

            .equipment__title,
            .link {
                margin-left: var(--space-3xl);
            }
        }
    }


    /* ********* */
    /* NOVEDADES */
    /* ********* */
    &.section--news {
        background-color: #1F1F1F;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60%;
        background-attachment: fixed;
        width: 100%;
        height: max(65dvh, 650px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;


        &::before,
        &::after {
            content: '';
            width: 100%;
            position: absolute;
            left: 0;
            z-index: 0;
        }

        &::after {
            background-image: var(--bottom-decorator);
            background-size: 100% 100% !important;
            width: 100%;
            height: 6px;
            bottom: -3px;
        }

        &::before {
            /* background-image: var(--bg); */
            background-size: cover;
            height: 100%;
            top: 0;
            opacity: 0.35;
            z-index: 0;
        }

        .section__subtitle,
        .section__title {
            color: var(--white--2);
            z-index: 2;
        }

        .link {
            color: var(--black) !important;
            margin: 0 auto;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .link:hover {
            color: #fff !important;
            background-color: var(--secundario) !important;
        }

        .section__subtitle,
        .setcion__title,
        .link {
            position: relative;
        }
    }

    /* ************** */
    /* SOBRE NOSOTROS */
    /* ************** */
    &.section--about-us {
        background-color: var(--white--3);
        height: max(650px, 85dvh);

        .about-us-info,
        .about-us-image-conatiner {
            padding: 0;
        }

        .section__title {
            font-size: var(--fs-2xl--variant);
            margin-bottom: 20px !important;
        }

        .section__subtitle {
            font-size: var(--fs-sm--variant);
        }

        .section__description {
            color: var(--dark-gray--2);
            font-size: var(--fs-2xs--variant);
            line-height: 1.75em;
            /* margin-bottom: calc(var(--space-3xl) + var(--space-xs)) !important; */
            margin-bottom: 60px;
        }

        .about-us-info {
            padding-right: var(--space-3xl);

            .link {
                margin: 0;
            }
        }

        .about-us-image-conatiner {
            aspect-ratio: 1 / 1;
            position: relative;
            border-radius: 61% 40% 57% 41% / 62% 39% 62% 36%;
            overflow: hidden;

            &::before {
                content: '';
                background-image: var(--decorator);
                background-position: bottom;
                background-repeat: no-repeat;
                width: 100%;
                height: 100%;
                position: absolute;
                bottom: 0px;
                left: 0px;
            }

            img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
        }
    }

}

.interiores {
    margin-top: 0;
}

.lista_productos {

    .product {
        padding: var(--space-sm);
        position: relative;
        pointer-events: all;

        .image-container {
            display: block;
            border-radius: var(--br-2);
            box-shadow: 0px 0px 2px var(--medium-gray);
            overflow: hidden;
            height: 335px;

            .product__img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* transition: var(--tr-sm); */
                transition: all 0.5s ease;
            }
        }

        .product__name {
            font-family: var(--ff-main);
            /* font-size: var(--fs-xs); */
            font-size: 19px;
            text-align: center;
            font-weight: var(--fw-bold);
            margin: 0;
            padding: var(--space-lg) 0 var(--space-md);
            color: var(--black);
        }

        .product-bottom {
            gap: var(--space-sm);
            position: absolute;
            bottom: 60px;
            left: 50%;
            width: 100%;
            display: flex;
            justify-content: center;
            transform: translateX(-50%);

            &,
            .price {
                display: flex;
                align-items: center;
            }

            .price {
                background-color: var(--white--1);
                font-family: var(--ff-main);
                font-weight: var(--fw-bold);
                width: 68%;
                height: 50px;
                justify-content: center;
                /* gap: var(--space-2xs); */
                column-gap: 8px;
                border-radius: var(--br-pill);

                .price__actual {
                    color: var(--black);
                    /* font-size: var(--fs-sm--variant); */
                    font-size: 23px;
                }

                .price__original {
                    color: var(--medium-gray);
                    /* font-size: var(--fs-xs); */
                    font-size: 17px;
                    text-decoration: line-through;
                }
            }
        }

        .like-button {
            background-color: var(--white--1);
            width: 32px;
            aspect-ratio: 1 / 1;
            position: absolute;
            /* top: var(--space-md);
            right: var(--space-md); */
            top: 39px;
            right: 25px;
            border-radius: 100%;
            z-index: 1;

            .like-button__img {
                width: var(--icon-size-xs);
            }
        }

        &:hover {
            .product__img {
                scale: 1.1;
            }

            .product__name {
                color: var(--black);
            }
        }
    }
}

.favoritos-list {
    .btn-corporativo2 {
        padding: 18px 30px;
        border-radius: 100px;
    }

}

.banner-interiores {
    .adorno_banner {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 6px;
        z-index: 1;
        pointer-events: none;
        background-size: 100% 100% !important;

        /* img {
                position: absolute;
                bottom: 0;
                width: 100%;
            } */
    }
}

.interiores.producto-detalle {
    .instrucciones {

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            width: 100%;
            row-gap: 80px;
            padding: 100px 0;

            .instruccion {
                position: relative;
                display: flex;
                flex-direction: column;
                width: 100%;
                height: 100%;
                align-items: center;
                text-align: center;

                img,
                svg {
                    width: 70px;
                    height: 70px;
                }

                p {
                    margin-top: 20px;
                    font-size: 19px;
                    font-family: var(--familia_fuente);
                    font-style: italic;
                }

                /* &:nth-child(even) {
                    p {
                        color: var(--purple);
                    } 
                }

                &:nth-child(odd) {
                    p {
                        color: var(--blue);
                    }
                } */
            }
        }
    }
}

.footer {
    --black-2: #050505;
    --decorator-h: 10px;
    --shadow: 0px 0px 1px #0000005b;
    /* background-color: red; */
    /* padding-top: 10px; */
    width: 100%;
    position: relative;

    .circle.circle--lg {
        transition: all 0.3s ease;
    }

    .circle.circle--lg:hover {
        filter: brightness(1.2);
    }

    .whatsapp-wrapper {
        --icon-size: 57px;
        position: fixed;
        width: fit-content;
        bottom: var(--space-xs);
        right: var(--space-xs);
        z-index: 200;
        transition: all 0.3s ease;

        .whatsapp-wrapper__icon,
        .notifications {
            filter: drop-shadow(var(--shadow));
        }

        .whatsapp-wrapper__icon {
            width: var(--icon-size);
            aspect-ratio: 1 / 1;
        }

        .notifications {
            --notification-color: #E00202;

            background-color: var(--notification-color);
            width: 20px;
            height: 20px;
            display: flex;
            place-content: center;
            position: absolute;
            top: 0;
            right: calc(-1 * var(--space-2xs));

            .notifications__counter {
                font-family: var(--ff-variant);
                font-size: 14px;
                font-weight: var(--fw-bold);
                margin: 0;
            }
        }
    }

    .whatsapp-wrapper:hover {
        scale: 1.05;
    }

    .footer-top {
        display: none;
        background-color: var(--black-2);
        background-image: var(--bg);
        background-repeat: no-repeat;
        background-size: 100%;
        width: 100%;
        min-height: calc(320px + var(--decorator-h));
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: var(--space-2xl);
        /* position: relative; */

        &::before {
            content: '';
            position: absolute;
            top: -3px;
            left: 0;
            width: 100%;
            height: var(--decorator-h);
            background-image: var(--decorator);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .footer-nav--main {
            flex-wrap: wrap;
            justify-content: center;

            &,
            .contact-list,
            .contact-item {
                display: flex;
                align-items: center;
            }

            .contact-list,
            .social-links {
                margin: 0;
                padding: var(--space-xl) var(--space-lg);
            }

            .contact-list {
                flex-wrap: wrap;
                gap: var(--space-lg);

                .contact-item {
                    gap: var(--space-xs);

                    .icon-container {
                        background-color: var(--white--1);
                        width: var(--icon-size-2xl);
                        aspect-ratio: 1 / 1;
                        display: grid;
                        place-items: center;
                        border-radius: var(--br-circle);

                        img {
                            display: block;
                            width: var(--icon-size-lg);
                        }
                    }
                }
            }

            .social-links {
                border-left: 1px solid var(--medium-gray--2);
            }
        }

    }

    .footer-bottom {
        .footer-nav {
            .links-list {
                background-color: var(--black-2);
                margin-bottom: 0;
                padding: var(--space-xl);
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
                font-size: 15px;

                li,
                .link {
                    color: var(--white--1);
                    font-family: var(--ff-variant);
                    font-weight: var(--fw-regular);
                    text-align: center;
                }

                &.links-list:not(.links-list--copy) {
                    column-gap: 0;
                    row-gap: var(--space-md);

                    .link {
                        color: var(--medium-gray--2);
                        padding: 0 var(--space-xs);
                        font-size: 15px;

                        &:hover {
                            color: var(--white--2);
                        }
                    }
                }

                &.links-list--copy {
                    background-color: var(--black);

                    li,
                    .link {
                        font-size: 11.5px;

                    }
                }
            }
        }
    }
}

@media (max-width: 1920px) {
    .footer {
        .footer-top {
            &::before {
                background-size: 100% 100% !important;
            }
        }
    }
}

.otros_productos {
    margin-bottom: 100px;

    .color-by-child {
        &:nth-child(1) {
            --color: var(--blue);
        }

        &:nth-child(3) {
            --color: var(--purple);
        }

        &:nth-child(5) {
            --color: var(--brown);
        }
    }

    .product {
        .image-container {
            height: 380px;
        }
    }

    #productos>div {
        height: 620px;
    }
}

/* VENTANA COOKIES */
.ventana_cookie {
    .contenido {
        .row {
            p {
                font-size: 14px;
            }
        }
    }
}

/*********************************
*        MENU DESPLEGABLE        *
*********************************/
.dropdown-menu>li>a {
    color: var(--blue);
    font-size: 15px;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 20px;
    width: 100%;
}

/* menu doble */

.el-menu {
    height: 140px;
    transition: all .2s ease-in-out;
}

.barra_reducida .el-menu {
    height: 110px;
}

.el-menu {
    position: relative;
}

.primera-menu,
.segunda-menu {
    display: flex;
    position: absolute;
    width: calc(50vw - (90px + 35px));
    height: 100%;
}

.primera-menu {
    right: 155px;
    justify-content: flex-end;
}

.segunda-menu {
    left: 155px;
}

.navbar-nav .logo {
    position: absolute;
}

.navbar-nav .logo {
    position: absolute;
    left: -160px;
    height: 100%;
}

.navbar-nav .logo>a {
    padding: 0;
    height: inherit;
}

.navbar-nav .logo img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 180px;
    z-index: 2;
}

/* -- circulos -- */
.wrapper-flex,
.wrapper-flex-mobile {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-box;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;

    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}


/* -- row -- */
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height.container:before,
.row-eq-height.container:after,
.row-eq-height.row:before,
.row-eq-height.row:after {
    content: normal;
}

.separa-5 {
    height: 5px;
}

.separa-10 {
    height: 10px;
}

.separa-20 {
    height: 20px;
}

.separa-40 {
    height: 40px;
}

.separa-30 {
    height: 30px;
}

.separa-50 {
    height: 50px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.centrado {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.centrado.izquierda {
    justify-content: flex-start;
}

.centrado.derecha {
    justify-content: flex-end;
}

.animacion {
    transition: all 300ms linear !important;
    -webkit-transition: all 300ms linear !important;
    -moz-transition: all 300ms linear !important;
    -ms-transition: all 300ms linear !important;
    -o-transition: all 300ms linear !important;
}

.limitar {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.limitar_1 {
    -webkit-line-clamp: 1;
    /* number of lines to show */
}

.limitar_2 {
    -webkit-line-clamp: 2;
    /* number of lines to show */
}

.limitar_3 {
    -webkit-line-clamp: 3;
    /* number of lines to show */
}

.limitar_4 {
    -webkit-line-clamp: 4;
    /* number of lines to show */
}

.limitar_5 {
    -webkit-line-clamp: 5;
    /* number of lines to show */
}

.limitar_6 {
    -webkit-line-clamp: 6;
    /* number of lines to show */
}

.limitar_7 {
    -webkit-line-clamp: 7;
    /* number of lines to show */
}

.limitar_8 {
    -webkit-line-clamp: 8;
    /* number of lines to show */
}

.limitar_9 {
    -webkit-line-clamp: 9;
    /* number of lines to show */
}

.limitar_10 {
    -webkit-line-clamp: 10;
    /* number of lines to show */
}

.caja {
    overflow: hidden;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/*********************************
*            INTERIORES          *
*********************************/

.antetitulo {
    font-size: var(--fs-sm--variant);
    font-style: italic;
    font-weight: var(--fw-light);
    margin-bottom: -8px;
    font-family: var(--ff-main);
}

.titulo {
    font-family: var(--ff-main);
    font-weight: var(--fw-bold);
    color: var(--black);
    font-size: var(--fs-2xl--variant);
    /* margin-bottom: var(--space-2xl); */
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.filtros.interiores {

    .bs-searchbox,
    .bs-actionsbox,
    .bs-donebutton {
        padding-bottom: 8px;
    }

    .bootstrap-select .dropdown-menu {
        margin-top: 5px;
    }

    .row>div {
        align-content: center;
    }

    .btn-corp {
        height: 45px;
        margin-bottom: unset !important;
    }

    .dropdown-menu li a .text {
        font-family: var(--familia_fuente);
    }

    .dropdown-toggle {
        height: 100%;
        border: 2px solid #f0f0f0;

        .filter-option {
            align-content: center;
            font-size: 16px;
        }
    }

    .dropdown-menu>.active>a,
    .dropdown-menu>.active>a:focus,
    .dropdown-menu>.active>a:hover {
        background-color: var(--primario);
    }

    .btn-default.active,
    .btn-default:active,
    .btn-default:hover,
    .open>.dropdown-toggle.btn-default {
        background-color: #f2f2f2;
        border: 2px solid #dcdcdc;
    }

    .dropdown-toggle::after {
        display: none;
    }

    fieldset {
        height: 100%;

        .form-group {
            height: 100%;
            margin-bottom: 0;

            .form-group {
                height: 100%;
            }

            .dropdown {
                height: 100% !important;
            }
        }
    }
}

.interiores {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%);
}

/* ESTILOS CKEDITOR */

/*
 * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */

.textaco {
    p {
        color: var(--dark-gray--2);
        font-size: var(--fs-2xs--variant);
        line-height: 1.75em;
    }

    & .image {
        display: table;
        clear: both;
        text-align: center;

        /* Make sure there is some space between the content and the image. Center image by default. */
        /* The first value should be equal to --ck-spacing-large variable if used in the editor context
	 	to avoid the content jumping (See https://github.com/ckeditor/ckeditor5/issues/9825). */
        margin: 0.9em auto;

        /* Make sure the caption will be displayed properly (See: https://github.com/ckeditor/ckeditor5/issues/1870). */
        min-width: 50px;

        & img {
            /* Prevent unnecessary margins caused by line-height (see #44). */
            display: block;

            /* Center the image if its width is smaller than the content's width. */
            margin: 0 auto;

            /* Make sure the image never exceeds the size of the parent container (ckeditor/ckeditor5-ui#67). */
            max-width: 100%;

            /* Make sure the image is never smaller than the parent container (See: https://github.com/ckeditor/ckeditor5/issues/9300). */
            min-width: 100%;

            /* Keep proportions of the block image if the height is set and the image is wider than the editor width.
			See https://github.com/ckeditor/ckeditor5/issues/14542. */
            height: auto;
        }
    }

    & .image-inline {
        /*
		 * Normally, the .image-inline would have "display: inline-block" and "img { width: 100% }" (to follow the wrapper while resizing).
		 * Unfortunately, together with "srcset", it gets automatically stretched up to the width of the editing root.
		 * This strange behavior does not happen with inline-flex.
		 */
        display: inline-flex;

        /* While being resized, don't allow the image to exceed the width of the editing root. */
        max-width: 100%;

        /* This is required by Safari to resize images in a sensible way. Without this, the browser breaks the ratio. */
        align-items: flex-start;

        /* When the picture is present it must act as a flex container to let the img resize properly */
        & picture {
            display: flex;
        }

        /* When the picture is present, it must act like a resizable img. */
        & picture,
        & img {
            /* This is necessary for the img to span the entire .image-inline wrapper and to resize properly. */
            flex-grow: 1;
            flex-shrink: 1;

            /* Prevents overflowing the editing root boundaries when an inline image is very wide. */
            max-width: 100%;
        }
    }
}

.ck.ck-editor__editable {

    /*
	 * Inhertit the content styles padding of the <figcaption> in case the integration overrides `text-align: center`
	 * of `.image` (e.g. to the left/right). This ensures the placeholder stays at the padding just like the native
	 * caret does, and not at the edge of <figcaption>.
	 */
    & .image>figcaption.ck-placeholder::before {
        padding-left: inherit;
        padding-right: inherit;

        /*
		 * Make sure the image caption placeholder doesn't overflow the placeholder area.
		 * See https://github.com/ckeditor/ckeditor5/issues/9162.
		 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /*
	 * See https://github.com/ckeditor/ckeditor5/issues/15115.
	 */
    & .image {
        z-index: 1;

        /*
		 * Make sure the selected image always stays on top of its siblings.
		 * See https://github.com/ckeditor/ckeditor5/issues/9108.
		 */
        &.ck-widget_selected {
            z-index: 2;
        }
    }

    /*
	 * See https://github.com/ckeditor/ckeditor5/issues/15115.
	 */
    & .image-inline {
        z-index: 1;

        /*
		 * Make sure the selected inline image always stays on top of its siblings.
		 * See https://github.com/ckeditor/ckeditor5/issues/9108.
		 */
        &.ck-widget_selected {
            z-index: 2;

            /*
			 * Make sure the native browser selection style is not displayed.
			 * Inline image widgets have their own styles for the selected state and
			 * leaving this up to the browser is asking for a visual collision.
			 */
            & ::selection {
                display: none;
            }
        }
    }

    /* Keep proportions of the inline image if the height is set and the image is wider than the editor width.
	See https://github.com/ckeditor/ckeditor5/issues/14542. */
    & .image-inline img {
        height: auto;
    }

    /* The inline image nested in the table should have its original size if not resized.
	See https://github.com/ckeditor/ckeditor5/issues/9117. */
    & td,
    & th {
        & .image-inline img {
            max-width: none;
        }
    }
}

@import "@ckeditor/ckeditor5-ui/theme/mixins/_mediacolors.css";

:root {
    --ck-color-image-caption-background: hsl(0, 0%, 97%);
    --ck-color-image-caption-text: hsl(0, 0%, 20%);
    --ck-color-image-caption-highlighted-background: hsl(52deg 100% 50%);
}

/* Content styles */
.textaco .image>figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: var(--ck-color-image-caption-text);
    background-color: var(--ck-color-image-caption-background);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;

    /* Improve placeholder rendering in high-constrast mode (https://github.com/ckeditor/ckeditor5/issues/14907). */
    @media (forced-colors: active) {
        background-color: unset;
        color: unset;
    }
}

/* Editing styles */
.ck.ck-editor__editable .image>figcaption.image__caption_highlighted {
    @mixin ck-media-default-colors {
        animation: ck-image-caption-highlight .6s ease-out;
    }

    @media (prefers-reduced-motion: reduce) {
        animation: none;
    }
}

@keyframes ck-image-caption-highlight {
    0% {
        background-color: var(--ck-color-image-caption-highlighted-background);
    }

    100% {
        background-color: var(--ck-color-image-caption-background);
    }
}

.ck.ck-image-insert-url {
    width: 400px;
    padding: var(--ck-spacing-large) var(--ck-spacing-large) 0;

    & .ck-image-insert-url__action-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.ck.ck-editor__editable {
    & img.image_placeholder {
        background-size: 100% 100%;
    }
}

/* Preserve aspect ratio of the resized image after introducing image height attribute. */
.textaco img.image_resized {
    height: auto;
}

.textaco .image.image_resized {
    max-width: 100%;
    /*
	The `<figure>` element for resized images must not use `display:table` as browsers do not support `max-width` for it well.
	See https://stackoverflow.com/questions/4019604/chrome-safari-ignoring-max-width-in-table/14420691#14420691 for more.
	Fortunately, since we control the width, there is no risk that the image will look bad.
	*/
    display: block;
    box-sizing: border-box;

    & img {
        /* For resized images it is the `<figure>` element that determines the image width. */
        width: 100%;
    }

    &>figcaption {
        /* The `<figure>` element uses `display:block`, so `<figcaption>` also has to. */
        display: block;
    }
}

.ck.ck-editor__editable {

    /* The resized inline image nested in the table should respect its parent size.
	See https://github.com/ckeditor/ckeditor5/issues/9117. */
    & td,
    & th {
        & .image-inline.image_resized img {
            max-width: 100%;
        }
    }
}

[dir="ltr"] .ck.ck-button.ck-button_with-text.ck-resize-image-button .ck-button__icon {
    margin-right: var(--ck-spacing-standard);
}

[dir="rtl"] .ck.ck-button.ck-button_with-text.ck-resize-image-button .ck-button__icon {
    margin-left: var(--ck-spacing-standard);
}

.ck.ck-dropdown .ck-button.ck-resize-image-button .ck-button__label {
    width: 4em;
}

:root {
    --ck-image-style-spacing: 1.5em;
    --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing) / 2);
}

.textaco {

    /* See: https://github.com/ckeditor/ckeditor5/issues/16317 */
    & .image {

        /* Provides a minimal side margin for the left and right aligned images, so that the user has a visual feedback
		confirming successful application of the style if image width exceeds the editor's size.
		See https://github.com/ckeditor/ckeditor5/issues/9342 */
        &.image-style-block-align-left,
        &.image-style-block-align-right {
            max-width: calc(100% - var(--ck-image-style-spacing));
        }

        /* Allows displaying multiple floating images in the same line.
		See https://github.com/ckeditor/ckeditor5/issues/9183#issuecomment-804988132 */
        &.image-style-align-left,
        &.image-style-align-right {
            clear: none;
        }

        &.image-style-side {
            float: right;
            margin-left: var(--ck-image-style-spacing);
            max-width: 50%;
        }

        &.image-style-align-left {
            float: left;
            margin-right: var(--ck-image-style-spacing);
        }

        &.image-style-align-right {
            float: right;
            margin-left: var(--ck-image-style-spacing);
        }

        &.image-style-block-align-right {
            margin-right: 0;
            margin-left: auto;
        }

        &.image-style-block-align-left {
            margin-left: 0;
            margin-right: auto;
        }
    }

    & .image-style-align-center {
        margin-left: auto;
        margin-right: auto;
    }

    & .image-style-align-left {
        float: left;
        margin-right: var(--ck-image-style-spacing);
    }

    & .image-style-align-right {
        float: right;
        margin-left: var(--ck-image-style-spacing);
    }

    /* Simulates margin collapsing with the preceding paragraph, which does not work for the floating elements. */
    & p+.image.image-style-align-left,
    & p+.image.image-style-align-right,
    & p+.image.image-style-side {
        margin-top: 0;
    }

    & .image-inline {

        &.image-style-align-left,
        &.image-style-align-right {
            margin-top: var(--ck-inline-image-style-spacing);
            margin-bottom: var(--ck-inline-image-style-spacing);
        }

        &.image-style-align-left {
            margin-right: var(--ck-inline-image-style-spacing);
        }

        &.image-style-align-right {
            margin-left: var(--ck-inline-image-style-spacing);
        }
    }
}

.ck.ck-splitbutton {

    /* The button should display as a regular drop-down if the action button
	is forced to fire the same action as the arrow button. */
    &.ck-splitbutton_flatten {

        &:hover,
        &.ck-splitbutton_open {

            &>.ck-splitbutton__action:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
                background-color: var(--ck-color-button-on-background);

                &::after {
                    display: none;
                }
            }
        }

        &.ck-splitbutton_open:hover {

            &>.ck-splitbutton__action:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
                background-color: var(--ck-color-button-on-hover-background);
            }
        }
    }
}

.textaco figure.media iframe.youtube {
    width: 100% !important;
    aspect-ratio: 16/9;
    height: auto;
}

/* FIN ESTILOS CKEDITOR */
#swipebox-overlay {
    background: #0d0d0ddb;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
    background: transparent;
}

.ug-lightbox .ug-lightbox-overlay {
    background: #0d0d0ddb;
}

/* Detalle producto */
.breadcrumb>li {
    font-size: 13px;
}

.tag_option {
    margin: 5px;
    color: var(--primario);
    font-size: 13px;
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

.tag-circle {
    position: relative;
    height: 42px;
    width: 42px;
    border-radius: 100%;
    display: inline-block;
    align-content: center;
    border: 2px solid #fff;
    /* overflow: hidden; */
    border: 2px solid #f5f5f5;
}

.tag-circle img {
    height: 33px;
    width: 38px;
    border-radius: 40px;
    object-fit: cover;
}

.tag_bloque {
    height: 40px;
    width: 70px;
    display: inline-flex;
    background-color: var(--transparencia);
    justify-content: center;
    align-items: center
}

.tag-circle.active {
    border: 2px solid var(--primario);
}

.tag_bloque.active {
    background-color: var(--primario);
}

.tag_option.active a {
    color: #fff;
}

.foto_principal .imagen {
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: 1px solid #f5f5f5
}

.foto_principal.mini .imagen {
    height: 444px;
    background-size: cover;
}

.foto_principal {
    border-radius: 25px;
}

.foto_principal .lupa {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 300ms all linear;
    color: #fff;
    font-size: 40px;
    border-radius: 25px;
}

.foto_principal .lupa:hover {
    opacity: 1;
}

.quantity {
    border: 2px solid var(--primario);
    border-radius: 100px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.quantity label {
    position: relative;
    top: 3px;
    display: inline-block;
    padding: 0 20px;
    color: var(--primario);
    font-size: 15px;
    margin: 0;
    height: 100%;
    font-weight: 500;
}

.quantity-controls .fa {
    color: var(--primario);
}

.quantity-controls {
    display: inline-block;
    position: relative;
}

.quantity-controls span {
    color: #888;
    cursor: pointer;
    height: 48px;
    line-height: 48px;
    font-size: 11px;
    position: absolute;
    top: 0;
    width: 26px;
    -webkit-transition: color .15s ease-in-out;
    -moz-transition: color .15s ease-in-out;
    transition: color .15s ease-in-out;

    color: #171717;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.quantity-controls span.right {
    right: 0;
    text-align: left;
}

.input-container i {
    position: absolute;
    top: 50%;
    left: 17px;
    font-size: 14px;
    transform: translateY(-50%);
    color: #aaa;
}

.lista_productos {
    .sin-resultados {
        font-size: 16px;
        color: #845fbbb3;
        font-family: var(--familia_fuente);
        font-weight: normal;
    }
}

.lista-favoritos {
    >p {
        font-size: 16px;
        color: #845fbbb3;
        margin-top: 40px;
        font-family: var(--familia_fuente);

        strong {
            font-weight: normal;
        }
    }

    .lista_productos>div {
        display: flex;
        flex-direction: column;

        /* >div {
            width: 100% !important;
        } */
    }
}

.input-search {
    padding-left: 28px;
    font-size: 16px;
    border: 2px solid #f0f0f0;
    background-color: #fff;

    &::placeholder {
        color: #999;
    }
}

.input-search.form-control:focus {
    box-shadow: unset !important;
    border: 2px solid #dcdcdc;
    background-color: #f2f2f2;
}

.lista_productos_sin_stock {
    border: 2px solid red;
    padding: 20px 20px;
    list-style-type: none;
}

.lista_productos_sin_stock li {
    color: #f4573a;
    font-weight: 600;
}

#productos>div {
    padding: 30px 20px;
    height: 575px;
}

#cantidad {
    border: 0;
    font-family: inherit;
    font-size: 17px;
    height: 48px;
    line-height: 48px;
    margin: 0 20px;
    margin-right: 26px;
    outline: 0;
    padding: 0;
    position: relative;
    width: 40px;
    -webkit-appearance: none;
    color: var(--primario);
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.otros_productos h2,
.otros_productos h3 {
    color: var(--primario);
    font-weight: 400;
    font-family: var(--familia_fuente);
    margin-top: 40px;
}

.otros_productos h2 {
    font-size: 27px;
}

.botones_carro {
    width: calc(100% - 225px);
    float: right;
}

.botones_carro.grande {
    width: 100%;
}

.wishlist-btn {
    position: absolute;
    top: 3px;
    right: 5px;
    z-index: 10;
}

.btn_love img,
.btn_love svg {
    height: 30px;
    width: 30px;
}

.btn_love svg {
    path {
        fill: var(--black) !important;
    }
}

.btn-filtro {
    height: 34px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
}

.botones_carro .btn-tam {
    height: 52px;
    width: 100%;
    border-radius: 100px;
}

.descarga.uno:hover .btn {
    color: #fff;
    background-color: var(--secundario);
}

.descarga.dos:hover .btn {
    color: var(--secundario);
    background-color: #e8d6fb;
}

.mayorista {
    color: var(--secundario);
    background-color: #e8d6fb;
    border: 2px solid var(--secundario);
    padding: 16px 14px;
    text-align: center;
    font-weight: 600;
}

.btn-corporativo {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    border: 0px;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-lg.btn-corporativo {
    padding: 18px 30px;
    border-radius: 100px;
}

.btn-corporativo .btn-carro_portada img {
    height: 20px;
    width: 20px;
    margin-right: 15px;
    border-radius: 0;
}

.btn-comprar {
    border: 0;
}

.btn-grandotes {
    padding: 15px;
    border-radius: 100px;
}

.btn-corporativo2 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    border: 0px;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px
}

.btn-corporativo3 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    border: 0px;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-corporativo:hover,
.btn-corporativo:focus,
.btn-corporativo:active {
    background-color: #4181c5;
    color: #fff
}

.btn-corporativo2:hover,
.btn-corporativo2:focus,
.btn-corporativo2:active {
    background-color: #5c5b5b;
    color: #fff
}

.btn-corporativo3:hover,
.btn-corporativo3:focus,
.btn-corporativo3:active {
    background-color: #5c5b5b;
    color: #fff
}

.desactivado {
    opacity: 0.6;
}

.acceso a {
    color: #fff;
}

.lista_productos .btn_love img,
.bienvenida .btn_love img {
    height: 22px;
    width: 22px;
}

.producto-detalle {
    hr {
        background-color: #b6b6b6 !important;
        height: 1px;
        width: 90%;
        margin: auto;
    }
}

.otros_productos {

    .lista_productos#productos {
        display: flex;

        .image-container {

            .product__img {
                height: 450px;
            }
        }
    }
}

.left .caja_redes a {
    width: 45px;
    height: 45px;
}

.btn-corp {
    background-color: var(--primario);
    color: #fff !important;
    border: 0;
}

.btn-default-formulario {
    background-color: #c6c6c6;
    color: #fff !important
}

.nav-botones {
    border: none;
}

.nav-botones>li>a {
    background-color: #fff;
    border-radius: 0px;
    margin: 0px 10px;
    color: #78c74a;
    border: 2px solid var(--primario);
}

.nav-botones>li>a:focus,
.nav-botones>li>a:hover {
    background-color: #f5f5f5;
    color: #78c74a;
    border: 2px solid var(--primario);
}

.nav-botones>li.active>a,
.nav-botones>li.active>a:focus,
.nav-botones>li.active>a:hover {
    background-color: var(--primario);
    color: #fff;
    border: 2px solid var(--primario);
}

#title_prod,
#title_prod_2 {
    font-family: var(--ff-main);
    text-transform: uppercase;
    font-weight: 400;
    color: var(--secundario);
    font-size: 30px;
    margin-top: 0px
}

#title_prod_2 {
    font-size: 35px;
    margin-bottom: 10px;
    text-align: center;
}

.marco-izq {
    padding: 0 0 0 25px;
}

h3.categoria {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--dark-gray);
    font-weight: 400;
    font-family: var(--familia_fuente);
    margin-top: 0px;
    font-style: italic;
}

.producto-detalle {
    .textaco {
        p {
            font-size: 16px;
        }
    }
}

span.precio {
    font-size: 26px;
    font-family: 'Open Sans', sans-serif;
    color: var(--secundario);
    font-weight: 400
}

.producto-detalle .opciones {
    margin-top: 10px;

    .contenedor_alt {
        display: none;
        opacity: 0;
        position: absolute;
        background-color: var(--transparencia);
        transition: all 0.2s ease;
        left: 50%;
        transform: translateX(-50%);
        top: -33px;
        border-radius: 10px;
        width: max-content;
        z-index: 5;

        p {
            color: var(--primario) !important;
            margin: 3px 10px;
            font-size: 13px;
        }
    }

    .elegir-color:hover .contenedor_alt {
        /* visibility: visible; */
        display: block;
        opacity: 1;
    }
}

.titulotag {
    font-weight: 700;
    font-size: 15px;
    color: var(--primario);
    align-content: center;
}

.videos_responsive {
    width: 600px;
    float: left;
    margin-right: 20px;
    margin-bottom: 30px;
}

ul.columnas-detalle {
    list-style-type: disc;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    list-style-position: inside;
}

.otras_fotos .imagen {
    height: 150px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.breadcrumb {
    margin: 0;
    background-color: transparent
}

.breadcrumb li a {
    text-transform: capitalize;
    color: var(--black)
}

.breadcrumb>.active {
    color: var(--black-2) !important;
    font-weight: 600;
}

.precios .tachado {
    text-decoration-line: line-through;
    color: var(--medium-gray);
    font-size: 16px;
    margin-left: 5px;
}

/*** PROGRAMAS ***/

/*
.cabecera {
background-color: #78c74a;
border: solid 0px #fff;
color: #fff;
padding: 5px;
font-size: 14px;
}
*/

.fila1 {
    background-color: #d9ebd9;
    border: solid 2px #fff;
    padding: 8px;
}

.fila2 {
    background-color: #fff;
    border: solid 2px #fff;
    padding: 8px;
}

.mini_icono_text {
    margin-top: 4px;
    font-size: 24px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}


.lista_productos .fa {
    color: var(--secundario);
}

.mini_icono_text .fa-download {
    color: var(--secundario);
}


.fecha_archivos {
    font-size: 14px;
    margin: 5px;
}

.elementos_desc>div:nth-child(even) {
    background-color: #d9ebd9
}

.elementos_desc .text_content {
    margin: 10px 0px
}

.elementos_desc .text_content p {
    margin: 0px
}

.elementos_desc p.fecha_archivos {
    text-align: center
}

.area_fav {
    img {
        position: relative;
        top: 5px;
    }
}

/**************************
SWIPEBOX
**************************/

.cuadro_fotos {
    padding-top: 15px;
    background-color: #f5f5f5;
    border: 1px solid #efefef;
}

.cuadro_fotos .foto_principal {
    background-color: #fff;
    margin-bottom: 15px
}

.cuadro_fotos .galeria {
    padding: 30px 15px;
    background-color: #3b3b3b
}

.swipebox .imagen {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}

/*.swipebox .imagen:after{content:'';padding-top:66.66%;display:block}*/

.swipebox .imagen:after {
    content: '';
    padding-top: 100%;
    display: block
}

.swipebox .padre_imagen .imagen {
    content: '';
    padding-top: 100%;
    display: block
}

.btn-precio {
    padding: 0
}

.foto_color .imagen {
    float: left;
    height: 75px;
    width: 75px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 15px 30px 0
}

.swipebox .imagen.secundaria {
    background-size: contain;
}

.zona_galeria_mini .bx-wrapper .bx-prev {
    left: -45px;
}

.zona_galeria_mini .bx-wrapper .bx-next {
    right: -45px;
}

.bx-wrapper .bx-controls-direction a {
    z-index: 1000;
    filter: contrast(0.3);
}

.bx-wrapper .bx-viewport {
    box-shadow: none;
    border: none;
}

/******************** NUEVA CESTA ********************/
#cesta .articulo .padding {
    padding-right: 30px
}

#stripe-modal.modal.in {
    opacity: 1 !important;
}

#stripe-modal {
    .modal-content {
        width: 600px !important;

        .stripe-error {
            width: 340px !important;
            line-height: normal !important;
            font-size: 11px !important;
        }
    }

    .header-logo {
        background-size: 80% !important;
    }

    .modal-dialog {
        align-content: center;
        /* bottom: 50px; */
    }

    .modal-header {
        flex-direction: column;
        border-radius: 10px 10px 0 0 !important;
    }

    .modal-footer {
        justify-content: center;
        padding-top: 16px;
        padding-bottom: 20px;
    }
}

.box-cesta {
    .articulo {
        display: flex;

        .precio-articulo {
            font-size: 16px;
            color: var(--secundario);
            font-weight: 500;
        }

        h4 {
            font-size: 18px;
        }
    }
}

.resumen-cesta {
    padding: 20px
}

.resumen-cesta .ancho-resumen {}

.resumen-cesta .label-resumen {
    float: right
}

.resumen-cesta .label-resumen .cesta-bono {
    font-size: 24px;
    margin-right: 10px
}

.resumen-cesta .label-resumen .precio_descuento {
    font-size: 24px;
    margin-left: 10px
}

.resumen-cesta .label-resumen .bigger {
    font-size: 24px;
}

.resumen-cesta .label-resumen p {
    margin: 0
}

.resumen-cesta .aplicar_codigo {
    height: 52px;
    border-radius: 0;
    border-right: none
}

.resumen-cesta .input-group-btn {
    border-radius: 0 100px 100px 0;
    border-left: none;
    z-index: 3;
}

.resumen-cesta .btn-codigo {
    color: #fff;
    border: 2px solid #fff;
    height: 59px;
    cursor: pointer;
    display: flex;
    min-width: 55px;
    align-items: center;
    justify-content: center;
    background-color: var(--primario);
    margin-left: -41px !important;
    bottom: 1px;
    border-radius: 0 100px 100px 0;
}

s#gastos .radio,
#gastos label {
    margin: 0
}

#gastos label {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

#gastos .radio .colocar {
    width: 0px;
    margin-bottom: 5px;
    font-size: 16px;
}

.marco-gasto {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px 0px;
    border-radius: 2.5px;

    small {
        font-size: 13px;
    }

    .text-right {
        font-size: 16px;
    }
}

#configurar-cesta {
    .botones-resumen {
        .form-group {
            border-radius: 100px;
        }
    }

    .form-control {
        font-size: 15px;
        border-radius: 2.5px;
        height: 45px;

        &.aplicar_codigo {
            height: 55px;
            border-radius: 100px;
            padding: 0 15px;
        }
    }
}

.resumen-total strong {
    text-transform: uppercase;
    position: relative;
    top: 10px;
    font-size: 15px;
}

.metodos-pago .radio-inline {
    font-size: 18px;
    margin-left: 20px;
}

.btn-borrartodo {
    border-radius: 0px;
    background-color: var(--secundario);
    color: #fff !important;
    font-size: 14px;
    border-radius: 100px;
    padding: 8px 15px;
}

.swal2-popup {
    font-size: 1.6rem !important;
}

.condiciones a {
    color: var(--primario);
}

/*************************  Cesta Lateral  *************************/
.titulares-resumen {
    color: var(--primario);
}

#configurar-cesta h4 {
    color: var(--primario);
    font-size: 19px;
    margin-bottom: 20px;
    margin-top: 25px;
}

.menu-cesta {
    position: fixed;
    top: 0;
    right: 0px;
    height: 100vh;
    width: 480px;
    background-color: #fff;
    z-index: 1000;
    transition: 400ms all linear;
    box-shadow: 0px 8px 10px -5px rgba(51, 51, 51, 0.2), 0px 16px 24px 2px rgba(51, 51, 51, 0.14), 0px 6px 30px 5px rgba(51, 51, 51, 0.12)
}

.menu-cesta .cabecera-cesta {
    padding-top: 27px;
    background-color: #d9d9d9;
    height: 90px;
    position: relative
}

#gastos {
    .nombre-zona {
        margin-left: 5px;
    }
}

.marco-gasto {
    input {
        top: 50%;
        transform: translateY(-70%);
    }
}

#datos-cliente {
    h3 {
        font-size: 19px;
    }

    .form-control {
        font-size: 14px;
        height: 45px;
        margin-top: 1px;
        padding-left: 10px;
        border-radius: 2.5px;

        &::placeholder {
            color: #b4b4b4;
        }
    }
}

.fondo-cesta {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fondo-cesta .overlay-cesta {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primario)
}

.menu-cesta .cabecera-cesta h3 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-family: var(--familia_fuente);
    text-align: center
}

.cerrar-cesta {
    position: absolute;
    top: 25px;
    right: 20px;
    transition: 200ms all linear;
    border-radius: 50%;
    cursor: pointer
}

.cerrar-cesta img {
    height: 40px;
    width: 40px
}

.cuerpo-cesta {
    height: calc(100vh - 260px);
    padding: 30px;
    overflow: scroll;

    .precio-articulo {
        font-size: 16px;
        color: var(--secundario);
        font-weight: 500;
    }
}

.pagar-cesta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 120px;
    padding: 0px 30px;
    margin-bottom: 5px;

    strong {
        margin-right: 5px;
        font-size: 14px;
    }
}

.pagar-cesta p {
    text-align: center
}

.pagar-cesta p span {
    font-size: 30px;
    font-weight: 400;
}

.pie-cesta {
    height: 50px;
    background-color: #f7f7f7
}

.articulo {
    position: relative;

    p {
        font-size: 13px;

        strong {
            color: #333;
        }
    }

    .btn-circle {
        width: 35px !important;
        height: 35px !important;
    }

    .fa-trash {
        font-size: 15px;
    }
}

.articulo img {
    width: 100%;
    height: 115px;
    object-fit: contain
}

.articulo h4 {
    font-size: 16px;
    font-family: var(--familia_fuente);
    color: #6a6a6a;
}

.articulo .controles-articulo {
    height: 30px
}

.articulo .controles-articulo .operators {
    height: 30px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    justify-content: flex-start
}

.articulo .btn-circle {
    border: 1px solid #353535;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    float: right;
    color: #353535;
    cursor: pointer;
}

.menu-cesta .icono-cesta {
    width: auto;
    height: 25px;
    margin: 0 6px
}

.btn-operator {
    color: #272727
}

.btn-operator:hover,
.btn-operator:focus,
.btn-operator:active {
    color: #626062
}

#precio_label {
    text-align: center;
}

#manto-cesta,
#manto-movil {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: -1
}

#manto-cesta.toogled,
#manto-movil.toogled {
    z-index: 30
}

span.cesta-bono {
    color: #3c763d
}

.btn-cesta {
    height: 48px;
    background-color: #272727;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    color: #fff;
}

.btn-cesta:hover,
.btn-cesta:focus,
.btn-cesta:active {
    color: #fff;
    background: #272727
}

.boton-cesta-real {
    cursor: pointer;
}

/* Animaciones */
.menu-cesta {
    transform: translate(530px, 0px);
}

.mostrarCesta .menu-cesta {
    transform: translate(0px, 0px);
}

a.cerrar-cesta:hover {
    background-color: #626062
}

@media (max-width: 767px) {
    .textaco figure.image {
        width: 100% !important;
    }

    .filtros.interiores {
        .btn-corp {
            margin-top: 10px;
        }
    }

    #title_prod_2 {
        margin-bottom: 0;
    }

    .btn_love.btn-favoritos {
        margin-bottom: 10px;
        margin-top: -10px;
    }

    .span.precio {
        font-size: 42px;
    }

    .textaco p {
        font-size: 15px;
        line-height: 1.6em;
    }

    .bloque_contenido .titulo h4 {
        font-size: 18px !important;
        line-height: 1.4em;
    }

    .bloque_imagenes p {
        font-size: 15px !important;
        line-height: 1.6em;
    }

    .quantity label {
        top: 0;
    }

    .logo {
        &.logo--footer {
            max-height: 150px;
        }
    }

    .precios .tachado {
        font-size: 30px;
        margin-left: 0px;
    }

    .interiores,
    .productos {
        .container {
            padding: 0 20px;
        }

        .titulo {
            /* font-size: 55px !important; */
            margin-top: 5px;
        }
    }

    .filtros>.container {
        padding: 8px;
    }

    .filtros.interiores {
        height: 100%;

        .row>div {
            margin-bottom: 10px;
        }

        fieldset {
            height: 40px;
        }
    }

    .contenedor_alt {
        top: 45px !important;
    }

    .interiores.producto-detalle>.container {
        padding: 0 25px;
    }

    /* .nav-veil {
        display: none;
    } */

    .textaco .image_resized,
    .textaco img {
        height: auto;
        max-width: 100%;
    }

    .menu-cesta {
        width: 100vw;
        transform: translate(110vw, 0px);
    }

    .menu-cesta .cabecera-cesta {
        padding-top: 15px;
        height: 50px
    }

    .marco-izq {
        padding: 0 !important;
    }

    .menu-cesta .cabecera-cesta h3 {
        font-size: 20px
    }

    .cerrar-cesta {
        top: 10px;
        right: 10px
    }

    .cerrar-cesta img {
        height: 30px;
        width: 30px
    }

    .cuerpo-cesta {
        height: calc(100vh - 225px);
        padding: 30px;
        overflow: scroll
    }

    #manto-cesta.toogled,
    #manto-movil.toogled {
        z-index: 9;
        opacity: 0.6;
        background-color: #0d0d0d;
    }
}

/*************************  Archivos adjuntos y tipografias  *************************/
.tipografia,
.titulo-contenido {
    text-align: left;
    color: #505050;
    text-transform: uppercase;
    font-family: var(--familia_fuente);
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
}

.titulo-contenido {
    color: #000;
}

.tipografia i {
    color: var(--secundario)
}

.listado {
    text-align: justify;
}

.listado ul,
.listado li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.listado li {
    padding: 20px;
    background-color: var(--transparencia);
}

.listado li a,
.listado li.alt a {
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.listado li.alt {
    background-color: transparent;
}

.listado li.alt a {
    color: #000;
    text-decoration: none;
}

.listado a {
    color: #000;
    text-decoration: none;
}

.listado a:hover,
.listado li.alt a:hover {
    color: var(--secundario);
    text-decoration: none;
}

.btn-gris {
    color: #333;
    background-color: #fafafa
}

.btn-gris:hover,
.btn-gris:focus,
.btn-gris:active {
    color: #333;
    background-color: #dedede
}

/****************************  MULTIFORMA  ****************************/
.bloque_imagen_lista ul {
    list-style: none;
    padding: 0
}

.bloque_imagen_lista i {
    color: var(--secundario)
}

.bloque_cabecera .bloque_titulo {
    background-color: var(--primario);
    padding: 15px;
    border-radius: 25px 25px 0 0;
}

.bloque_cabecera .bloque_interior {
    background-color: var(--transparencia);
    padding: 30px 15px;
    border-radius: 0 0 25px 25px;
}

.bloque_cabecera .bloque_titulo h3 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--familia_fuente);
    font-weight: 300;
    font-size: 22px;
}

.bloque_cabecera .imagen {
    width: 100%;
    border-radius: 25px;
}

.bloque_cabecera h4 {
    text-transform: uppercase;
    font-size: 21px;
    font-family: var(--familia_fuente);
    color: var(--secundario)
}

/*.bloque_cabecera .texto{font-size:18px;font-weight:300}*/

.bloque_imagen_lista .imagen {
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px
}

.bloque_imagen_lista h4 {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--familia_fuente);
    color: var(--primario);
    font-size: 22px
}

.bloque_puntos ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.bloque_puntos ul li {
    margin-bottom: 15px;
    color: var(--dark-gray--2);
    font-size: var(--fs-2xs--variant);
    line-height: 1.75em;
}

.bloque_puntos ul li>p>.fa {
    font-size: 20px;
    color: var(--secundario)
}

.bloque_contenido .titulo {
    background-color: var(--primario);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 25px;
}

.bloque_contenido .titulo h4 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--familia_fuente);
    font-weight: 300
}

.ug-thumb-wrapper.ug-tile {
    border-radius: 25px;

    ug-thumb-overlay {
        border-radius: 25px;
    }
}

.ug-lightbox .ug-lightbox-button-close {
    left: 1720px;
    top: 8px;
}

.bloque_contenido .bloque {
    padding: 0 10px
}

.bloque_desplegable .fondo,
.bloque_documentos .fondo {
    background-color: var(--transparencia);
    padding: 20px;
    margin-bottom: 40px
}

.bloque_desplegable .panel-group,
.bloque_documentos .panel-group {
    margin: 0
}

.bloque_desplegable h2,
.bloque_documentos h2 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--familia_fuente);
    color: var(--secundario)
}

.bloque_desplegable .panel-default {
    border-color: var(--primario)
}

.bloque_desplegable .panel-default>.panel-heading {
    background-color: var(--primario);
    color: #fff;
    border-color: var(--primario)
}

.bloque_desplegable h2 .fa {
    color: var(--secundario)
}

.bloque_desplegable .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--primario)
}

.bloque_imagenes {
    p {
        color: var(--dark-gray--2);
        font-size: var(--fs-2xs--variant);
        line-height: 1.75em;
    }

    img {
        width: 100%;
        object-fit: cover;
        border-radius: 25px;
    }

    .flexible {
        display: flex;
        align-items: center
    }
}

/****************************  IDIOMAS  ****************************/
#idiomasside {
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 900;
}

#idiomasside li {
    padding: 10px;
    list-style-type: none;
}

#idiomasside img {
    height: 40px;
}

#idiomasside font {
    display: none;
}

.zona-idiomas-movil {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    margin-top: 25px;
}

.zona-idiomas-movil .flag {
    height: 50px;
    width: 30px;
}

/*************************  BLOG  *************************/
.alergenos {
    display: flex;
    justify-content: space-evenly;
    align-content: space-evenly;
    flex-wrap: wrap
}

.alergenos .padre_fondo {
    margin: 0
}

.alergenos .caja_alergenos {
    padding: 0 10px
}

.alergenos .caja_alergenos:hover {
    transform: translateY(0)
}

.bloque.principal.noticia {
    display: inherit
}

.noticias,
.post_details ul,
.popular {
    list-style: none;
    padding: 0;
    margin: 0
}

.noticia a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #333333
}

.noticias .imagen {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

.noticias .imagen:after {
    content: "";
    padding-top: 50%;
    display: block
}

.not-imagen {
    background-color: #ededed
}

#modal-cita .form-control {
    color: var(--primario);
    border-radius: 10px !important;
    background: #f8fbff;
    padding: 6px 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    border: 1px solid var(--primario);
}

#modal-cita input::-webkit-input-placeholder,
#modal-cita textarea::-webkit-input-placeholder {
    color: var(--primario);
}

#modal-cita input:-moz-placeholder,
/* Firefox 18- */
#modal-cita textarea:-moz-placeholder {
    /* Firefox 18- */
    color: var(--primario);
}

#modal-cita input::-moz-placeholder,
/* Firefox 19+ */
#modal-cita textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--primario);
}

#modal-cita input:-ms-input-placeholder,
#modal-cita textarea:-ms-input-placeholder {
    color: var(--primario);
}

#modal-cita input::placeholder,
#modal-cita textarea::placeholder {
    color: var(--primario);
}

#modal-cita .form-control {
    height: 50px;
}

#modal-cita p {
    color: var(--primario);
}

#modal-cita textarea.form-control {
    height: 120px;
}

.full-width {
    width: 100%
}

.noticia .titular {
    margin-bottom: 0;
    border-bottom: solid 1px #f3f3f3
}

.noticia .titular h1 {
    color: #1e1f1d;
    margin-bottom: 10px
}

.noticia .titular a>h3 {
    margin-bottom: 17px;
    font-size: 24px;
    text-transform: uppercase;
    text-align: left;
    color: #333333;
    font-family: var(--familia_fuente);
}

.noticia .post_details {
    color: #fff;
    background-color: var(--primario);
    padding: 10px;
    border-bottom: solid 5px var(--primario);
    text-align: right;
    font-size: 13px
}

.post_details li {
    font-family: var(--familia_fuente);
    font-size: 13px;
    font-weight: 300;
    color: #fff
}

.noticia-detalle-fecha small {
    font-family: var(--familia_fuente);
    font-weight: 300;
    color: #302224
}

.post_details i {
    color: #fff
}

.noticia-detalle-fecha i {
    color: #2f3668
}

.noticia .contenido {
    padding: 5px 15px 10px;
    background-color: #fff;
    border: 1px solid #ffefcc
}

.contenido_noticia_lista {
    padding: 0 20px;
    background-color: var(--transparencia)
}

.noticia-detalle-fecha {
    text-align: right;
    color: #2b2b2b
}

.widget-noticias {
    background-color: #f3f3f3;
    padding: 15px
}

.widget-noticias h5 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primario);
    font-family: var(--familia_fuente);
}

.widget-noticias .input-group-btn {
    height: 100%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.widget-noticias .input-group-btn button {
    height: 100%;
    border: 1px solid var(--primario);
    background-color: var(--primario);
    color: #fff
}

.widget-noticias .input-group-btn i {
    font-size: 16px
}

.widget-noticias2 {
    position: sticky;
    position: -webkit-sticky;
    top: 20px;
}

.popular {
    font-size: 13px
}

.mini-noticia {
    float: none;
}

.mini-noticia a {
    font-family: var(--familia_fuente);
    font-weight: 400;
    font-size: 14px
}

.popular li {
    padding: 10px 0;
    border-bottom: dotted 1px rgb(129, 97, 159)
}

.popular .imagen {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 10px;
    border-radius: 3px;
    background-size: cover;
    background-position: center center
}

.popular a.title {
    color: #070707;
}

.popular a.texto-breve {
    color: #707070;
    font-weight: 300;
    font-family: "Lato", sans-serif;
    font-size: 12px
}

.popular a.title:hover,
.popular a.title:focus,
.popular a.title:active {
    color: #070707
}

.bloque.noticia {
    margin-bottom: 40px
}

.cuadro_noticia {
    background-color: var(--transparencia);
    max-width: 400px;
    float: left;
    margin: 0px 20px 12px 0px;
}

.titulo_noticia {
    color: var(--primario);
    font-size: 30px;
    text-transform: uppercase;
    font-family: var(--familia_fuente);
    margin: 0;
}

#busqueda {
    border-color: var(--primario);
}

.marco-contacto {
    background-color: var(--transparencia);
    padding: 25px;
    border-radius: 20px;
}

.marco-contacto h3 {
    margin-top: 0px
}

.widget-noticias {
    background-color: var(--transparencia)
}

.cuerpo_zone label {
    font-size: 15px;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--text-muted);
}

.marco-contacto .input-group-addon {
    width: auto;
    padding: 15px 13px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #fff !important;
    text-align: center;
    background-color: var(--primario);
    border-radius: 4px;
    align-content: center;
}

.marco-contacto .form-control {
    border-color: var(--primario);
    font-size: 14px;
}

.input-group .form-control {
    z-index: 0;
    font-size: 14px;
    height: 45px;
    margin-top: 1px;
}

.zona-mapa iframe {
    height: 100%;
    width: 100%;
}

.ocultorobots {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
}

/* TABLA MIS PEDIOS*/
.tabla_cabecera .row {
    font-weight: 400;
    background-color: var(--primario);
    color: #fff
}

#tabla_stocks_resultados .row:nth-child(even) {
    background-color: var(--transparencia)
}

.tabla_stocks .cell {
    padding: 15px
}

.tabla_stocks .cell-btn {
    padding: 10px
}

.avisono {
    margin: 10px 0px;
    font-size: 18px
}

textarea {
    resize: vertical;
}


/*************************  INTERIOR  *************************/
.fa-angle-down {
    padding-left: 5px;
}

/*MENU VIEJO
    .navbar-default .dropdown-menu{
    background-color: #fff;
    color: #000;
    top: 99%;
}

.navbar-default .dropdown-menu>li>a {
    padding: 18px 20px;
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: var(--primario);
    border-bottom: 1px dotted #4b4a4a;
}

.superior .dropdown-menu>li>a {
    padding: 18px 20px;
    color: #000;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    border-bottom: 1px dotted #c6c6c6;
    border-right:  1px dotted #c6c6c6;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    background-color: var(--transparencia);
    color: #2c2c2c
}

.dropdown-menu {
    padding: 0;
}

.superior .open>.dropdown-menu {
    width: 185px;
    top: 32px;
}

.superior .dropdown-menu>.active>a, .superior .dropdown-menu>.active>a:focus, .superior .dropdown-menu>.active>a:hover, .superior .dropdown-menu>li>a:focus, .superior .dropdown-menu>li>a:hover {
    background-color: #dddddd;;
    color: #09090c;
    font-weight: 700;
}

.navbar-default .dropdown-menu>.active>a, .navbar-default .dropdown-menu>.active>a:focus, .navbar-default .dropdown-menu>.active>a:hover, .navbar-default .dropdown-menu>li>a:focus, .navbar-default .dropdown-menu>li>a:hover {
    background-color: #000;
    color: #fff;
    font-weight: 700;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: transparent;
}

.superior .open>a, .superior .open>a:focus, .superior .open>a:hover {
    background-color: transparent;
}
*/

.acceso a p {
    color: var(--primario);
    font-weight: 600;
    margin: 0;
}

.noestavisibleparapersonas {
    display: none;
}

.banner_interior {
    width: 100%;
    height: 400px;
    background-size: cover;
    overflow: hidden;
    background-position: center;
}

.header.interior {
    .nav-list--main {
        height: 105px !important;
    }

    .logo-decorator {
        width: 160px;

        img {
            height: 120px;
        }
    }


}

.corte_banner_interior {
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0px;
    z-index: 1;
}

.banner_interior .imagen {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(4px);
}

.banner_interior .texto {
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
}

.banner_interior .texto img {
    margin-top: 20px;
}

.banner_interior.interior_azul .texto {
    background-color: rgba(69, 183, 245, 0.5);
}

.banner_interior.interior_amarillo .texto {
    background-color: rgba(247, 201, 110, 0.5);
}

.banner_interior.interior_rojo .texto {
    background-color: rgba(245, 104, 78, 0.5);
}

.banner_interior p {
    margin-top: 0;
    font-size: 60px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0px;
    font-family: 'Open Sans';
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}

.banner_interior h1 {
    margin-top: 0;
    font-size: 60px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0px;
    font-family: 'Open Sans';
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #fff;
    background-color: var(--primario);
}

.nav-pills>li>a {
    color: #000;
    font-family: 'Open Sans';
    font-weight: 400;
    text-transform: uppercase;
}

/************************************
*              FILTROS              *
************************************/

.filtros {
    height: 120px;
    background-color: var(--transparencia);
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
    padding: 0;
}

.producto-detalle .filtros {
    height: 44px;
}

.filtros.interiores {
    background: #f9f9f9;
}

.filtros.gestion {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filtros.gestion>div {
    width: 100%;
    margin-top: 15px;
}


.centrarflitros {
    display: flex;
    align-items: center;
}

/************************************
*             BUSCADOR              *
************************************/

#buscador_emergente {
    position: absolute;
    top: 195px;
    width: 100%;
    z-index: 1000;
    transition: 300ms all ease
}

#buscador_emergente.oculto {
    visibility: hidden;
    opacity: 0;
    top: 0
}

.buscador_emergente>div {
    background: #fff;
    border-bottom: 1px solid #e4e9ef;
    box-shadow: 0 0 3px #ccc;
    padding: 15px
}

.input_buscador {
    border-right: 0;
    box-shadow: none;
    border-radius: 0
}

.boton_input_buscador {
    border-radius: 0;
    padding: 10px;
    border-left: 0;
    border-right: 0;
    color: rgba(0, 0, 0, .3);
    background-color: #fff !important
}

.cerrar_input_buscador {
    border-right: 0;
    border-right: 1px #ccc solid;
    color: rgba(0, 0, 0, .3);
    padding: 10px;
    border-radius: 0;
    background-color: #fff !important
}

#buscador {
    position: fixed;
    z-index: 99999;
    height: 100%;
    width: 100%;
    display: flex;
    pointer-events: none
}

#buscador.search-active {
    overflow: hidden;
    pointer-events: auto
}

#buscador.search-active .search-input {
    opacity: 1;
    transform: none;
    pointer-events: all
}

#buscador.search-active .icon-close {
    opacity: 1;
    transform: rotate(-90deg)
}

#buscador.search-active .control {
    cursor: default
}

#buscador.search-active .control .btn-material {
    transform: scale(70);
    right: 1000px;
    top: 0
}

#buscador.search-active .control .icon-material-search {
    opacity: 0
}

.icon-close {
    position: fixed;
    top: 30px;
    right: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 70px !important;
    opacity: 0;
    transition: all .3s ease-in-out
}

.icon-close:hover {
    transform: rotate(0)
}

.search-input {
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50px;
    margin-top: -40px;
    pointer-events: none;
    opacity: 0;
    transform: translate(40px, 0);
    transition: all .3s ease-in-out
}

.search-input input {
    color: #fff;
    font-size: 54px;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: 0;
    font-weight: 200;
    font-family: 'Open Sans';
}

.search-input i {
    color: #fff;
    font-size: 50px;
    margin-right: 15px
}

.search-input ::-webkit-input-placeholder {
    color: #eee
}

.search-input :-moz-placeholder {
    color: #eee;
    opacity: 1
}

.search-input ::-moz-placeholder {
    color: #eee;
    opacity: 1
}

.search-input :-ms-input-placeholder {
    color: #eee
}

.wow {
    visibility: hidden;
}

.full-width {
    width: 100%
}

.control {
    cursor: pointer
}

.control .btn-material {
    position: absolute;
    top: -100px;
    width: 60px;
    height: 60px;
    right: 0;
    border-radius: 100%;
    box-sizing: border-box;
    background: var(--secundario);
    outline: 0;
    opacity: .9;
    transform-origin: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all .7s cubic-bezier(0.4, 0, 0.2, 1)
}

.control .btn-material:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23)
}

.control .icon-material-search {
    color: #fff;
    position: absolute;
    top: -10px;
    right: 78px;
    transition: opacity .3s ease-in-out
}

.navbar-img {
    display: none
}

.modal-header {
    background-color: var(--primario);
    color: #fff;
}

.modal-content {
    border: 0;
}

.modal-header .close {
    color: #FFFFFF;
}

/************************************
*             PAGINACION            *
************************************/

.paginacion {
    padding: unset !important;
    height: unset !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    /* margin-bottom: 40px; */

    .post_pager {
        margin-top: 50px !important;
    }
}

.btn-pagination {
    color: #FFFFFF;
    background-color: #1f1f1f;
    border-color: #1f1f1f;
    border-radius: 25px;
    padding: 10px 23px !important;
    margin-right: 10px !important;
}

.btn-pagination:hover,
.btn-pagination:focus,
.btn-pagination:active,
.btn-pagination.active,
.open .dropdown-toggle.btn-pagination {
    color: #FFFFFF;
    background-color: var(--primario);
    border-color: var(--primario);
    box-shadow: unset !important;
    outline: unset !important;
    outline-offset: unset !important;
}

.btn-pagination:active,
.btn-pagination.active,
.open .dropdown-toggle.btn-pagination {
    background-image: none;
}

.btn-pagination.disabled,
.btn-pagination[disabled],
fieldset[disabled] .btn-pagination,
.btn-pagination.disabled:hover,
.btn-pagination[disabled]:hover,
fieldset[disabled] .btn-pagination:hover,
.btn-pagination.disabled:focus,
.btn-pagination[disabled]:focus,
fieldset[disabled] .btn-pagination:focus,
.btn-pagination.disabled:active,
.btn-pagination[disabled]:active,
fieldset[disabled] .btn-pagination:active,
.btn-pagination.disabled.active,
.btn-pagination[disabled].active,
fieldset[disabled] .btn-pagination.active {
    background-color: #3a39367a;
    border-color: #3A3936;
}

.btn-pagination .badge {
    color: #0977b2;
    background-color: #FFFFFF;
}

.btn-pagination {
    padding: 10px 20px;
    font-size: 14px;
    margin: 0 15px;
    border: 1px solid;
}

.proyecto .imagen {
    background-size: cover;
}

.proyecto h3 {
    font-family: var(--familia_fuente);
    margin-bottom: 40px;
    text-align: center;
}

/************************************
*         INSTAGRAM WIDGET          *
************************************/

.instagram-widget>div {
    position: relative;
    padding-top: calc(100vw / 6);
    width: 100%;
    overflow: hidden;
}

.instagram-widget iframe {
    border: none !important;
    overflow: hidden !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/************************************
*           SELECT BONITO           *
************************************/

.selectbonito {
    position: relative;
}

.selectbonito:after {
    content: '\f078';
    font: normal normal normal 10px/1 FontAwesome;
    color: #ffffff;
    right: 0;
    position: absolute;
    pointer-events: none;

    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
    display: none;
}

.selectbonito select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add some styling */

    display: block;
    width: 100%;
    float: right;
    background-image: none;
    -ms-word-break: normal;
    word-break: normal;
}

/* whatsapp */
.floating-icons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
}

.floating-icons a {
    display: inline-block;
    transition: all .2s ease-in-out;
}

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

.floating-icons img {
    max-width: 48px;
    height: auto;
}

.floating-icons a:hover {
    transform: scale(0.9);
}

/* ESTILOS RESPONSIVE MAQUETA AQUI */
@media (width > 1920px) {
    .section {
        &.section--banner {

            .banner-content {
                width: 80%;
                max-width: 1920px;
                margin: 0 auto;
                height: 100%;
                display: flex;
                gap: var(--space-2xl);
                justify-content: space-between;
                align-items: center;

                .main-info {
                    width: fit-content;
                    min-width: fit-content;
                    margin: 0;
                    padding-right: var(--space-lg);

                    .section__title {
                        max-width: none;
                    }
                }

                .in-memory {
                    width: fit-content;
                    height: fit-content;
                    position: relative;
                    top: 0;
                    right: 0;
                    transform: none;
                }
            }
        }
    }
}

@media (width < 1600px) {
    .section--products {

        .products-list {

            .product {
                height: 535px !important;

                .image-container {
                    height: 370px !important;
                }
            }
        }
    }
}

@media (width < 1400px) {
    .section {
        &.section--banner {
            .in-memory {
                scale: 0.8;
            }
        }

        &.section--equipment {
            .equipment {

                .equipment__title,
                .link {
                    margin-left: var(--space-xl);
                }
            }
        }
    }
}

@media (width < 1200px) {
    .titulo {
        font-size: 48px;
    }

    /* #productos>div {
        height: 720px;
    } */

    .subtitulo {
        font-size: 22px;
    }

    .control .btn-material {
        display: none;
    }

    .producto-detalle .filtros {
        margin-top: 52px;
    }

    .section {
        &.section--banner {

            .section__title,
            .section__subtitle {
                text-align: center;
                margin: 0 auto;
            }

            .section__title {
                /* font-size: var(--fs-2xl--variant); */
            }

            .section__subtitle {
                /* font-size: var(--fs-sm); */
            }
        }

        &.section--top-categories,
        &.section--products,
        &.section--news {

            .section__title,
            .section__subtitle,
            .section__description {
                text-align: center;
            }

            .section__title {
                /* font-size: var(--fs-xl); */
                font-size: 48px;
            }

            .section__subtitle {
                /* font-size: var(--fs-xs); */
                font-size: 22px;
            }
        }

        &.section--about-us {
            .section__title {
                font-size: 48px;
            }

            .section__subtitle {
                /* font-size: var(--fs-xs); */
                font-size: 22px;
            }
        }

        &.section--top-categories {
            .categories-list {
                .category {
                    max-width: 420px;
                    margin: 0 auto var(--space-lg);

                    figure {
                        figcaption {
                            h3 {
                                font-size: var(--fs-sm--variant);
                            }
                        }
                    }

                }
            }
        }

        &.section--equipment {
            .equipment {
                gap: var(--space-xl);

                .equipment__title,
                .link {
                    margin: 0 auto;
                }

                .equipment__title {
                    font-size: var(--fs-lg);
                }

                .link {
                    height: 50px;
                }
            }
        }

        &.section--about-us {
            height: fit-content;
            padding: calc(var(--space-3xl) + var(--space-2xl)) 0;
        }
    }
}


@media (width < 992px) {
    #stripe-modal {
        .modal-content {
            width: 500px !important;
        }
    }

    .section {
        &.section--top-categories {
            .categories-list {
                flex-direction: column;
            }
        }

        &.section--about-us {
            height: auto;
            padding: calc(var(--space-3xl) + var(--space-lg)) var(--space-md) var(--space-md);

            .section__title,
            .section__subtitle,
            .section__description {
                text-align: center;
            }

            .section__title {
                font-size: var(--fs-xl);
            }

            .section__subtitle {
                font-size: var(--fs-xs);
            }

            .about-us-info {
                padding-right: 0;
            }

            .about-us-image-conatiner {
                width: min(95%, 620px);
                margin: 0 auto;
            }

            .link {
                margin: calc(var(--space-3xl) + var(--space-md)) auto;
            }
        }
    }

    .footer {
        .whatsapp-wrapper {
            --icon-size: var(--icon-size-2xl);
        }

        .footer-top {
            padding-top: var(--space-3xl);
            flex-direction: column;
        }
    }

    #productos>div {
        height: 580px;
    }

    .interiores.producto-detalle {
        .instrucciones {
            .grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
                gap: unset;
                row-gap: 100px;
                column-gap: 10px;
            }
        }
    }
}


@media (width < 768px) {
    .section {

        &.section--products,
        &.section--equipment {
            padding-right: var(--space-lg);
            padding-left: var(--space-lg);
        }

        &.section--top-categories {
            .categories-list {
                .category {
                    figure {
                        padding-left: 0;
                        padding-right: 0;
                    }
                }
            }
        }

        &.section--products {
            .products-list {
                .product {
                    .wishlist-btn {
                        top: 10px;
                        right: 1px;
                    }

                    h4.product__name {
                        /* font-size: var(--fs-3xs); */
                        font-size: 22px;
                        line-height: 30px;
                    }

                    .product-bottom {
                        height: 40px;
                        gap: var(--space-2xs);
                        left: 50%;
                        transform: translateX(-50%);

                        .price,
                        .shopping-cart-button {
                            height: 100%;
                        }

                        .price {
                            .price__actual {
                                font-size: var(--fs-xs);
                            }

                            .price__original {
                                font-size: var(--fs-2xs);
                            }
                        }
                    }
                }
            }
        }

        &.section--equipment {
            margin-bottom: 0;
            padding-top: 0 !important;

            .equipment {
                .equipment__title {
                    font-size: var(--fs-sm--variant);
                    text-align: center;
                }
            }
        }
    }

    #productos>div {
        height: auto;
        padding: 35px 25px;
    }

    .lista_productos {
        & .product {
            .product-bottom {
                position: relative;
                bottom: unset;
                left: unset;
                transform: unset;

                .price {
                    width: 100%;
                }
            }
        }
    }

    .interiores.producto-detalle {
        .instrucciones {
            .grid {
                column-gap: 15px;
                row-gap: 65px;
                padding: unset;
                padding-top: 60px;
                padding-bottom: 100px;

                .instruccion {

                    img,
                    svg {
                        width: 65px;
                        height: 65px;
                    }

                    p {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    .footer {
        .footer-top {
            padding: var(--space-3xl) var(--space-3xl) var(--space-2xl);

            .footer-nav {
                flex-direction: column;

                .contact-list {
                    max-width: 270px;
                }

                .social-links {
                    padding-bottom: 0;
                    border: none;
                }
            }
        }
    }
}

/*//ESTILOS GENERALES//*/
@media (max-width: 1200px) {
    .dropdown-submenu>a:after {
        display: none;
    }

    .sidebar-wrapper.left .form-control {
        height: 43px;
        padding: 6px 12px;
        color: var(--secundario);
        font-style: italic;
        background-color: #ffffff;
        border: 1px solid #91a22f;
        border-radius: 4px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sidebar-nav li a.favorito {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .caja_favorito,
    .caja_redes {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .caja_favorito a,
    .caja_redes a {
        padding: 0 10px !important;
        margin: 10px 0 !important;
    }

    .caja_acceso a {
        padding: 0 20px !important;
    }

    .caja_favorito a img {
        margin-left: 0 !important;
    }

    .sidebar-wrapper li img,
    .caja_redes a img {
        height: 20px;
        transition: all .2s ease-in-out;
    }

    .sidebar-wrapper.left .btn {
        padding: 6px 11px;
        height: 43px;
        border-radius: 4px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        background-color: var(--primario);
        border: 1px solid var(--primario);
    }

    .sidebar-wrapper.left .sidebar-nav li:first-child {
        padding: 10px 20px;
        text-indent: 0px;
        padding-top: 25px;
    }

    .left .sidebar-nav .multi-level li:first-child {
        padding: 0;
    }

    .left .sidebar-nav .multi-level li:last-child a {
        text-indent: 0;
    }

    .banner_interior {
        height: 250px;
    }

    .fijar {
        position: fixed;
        width: 100%;
    }
}

@media (min-width: 993px) {

    /* móviles */
    .desfijar {
        position: absolute !important;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .zona-contacto {
        order: 1;

        .marco-contacto {
            margin-top: 0;
            margin-bottom: 40px;
        }
    }

    .zona-mapa {
        order: 2;
    }

    /* móviles */

    /* menu_desplegable, descomentar si es necesario para el menu de movil */

    /*
    .sidebar-nav .multi-level li a{
        text-indent: 0;
        padding-left: 40px !important;
    }
    .sidebar-nav .multi-level li:first-child{
        padding: 0;
    }
    .sidebar-nav .multi-level li:last-child a{
        text-indent: 0;
    }
    .sidebar-nav .multi-level li.active a{background-color: rgba(0, 0, 0, 0.45);}
    .sidebar-nav .multi-level li:first-child{
        padding: 0;
    }
    .sidebar-nav .multi-level li:last-child a{
        text-indent: 0;
    }
    .sidebar-nav .multi-level li.active a{
        text-decoration: none;
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.30);
        font-weight: 400;
    }

	.sidebar-wrapper{opacity: 1}

	.sidebar-nav .open>.dropdown-menu {
		position: static;
		background-color: transparent;
		border: none;
		box-shadow: none;
		margin: 0;
		padding: 0;
	}

	.sidebar-nav .dropaco .dropdown-menu>li>a {
		text-align: left;
		padding: 8px 20px;
		background-color: rgba(0, 0, 0, 0.25);
		white-space: initial;
		color: #ffffff;
		font-size: 15px;
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 300;
	}
    
    .sidebar-nav .multi-level li.active a {
        background-color: rgba(0, 0, 0, 0.45);
    }
*/

    /* menu_desplegable */

    /* whatsapp */
    .floating-icons {
        bottom: 1rem;
        right: 1rem;
    }

    .videos_responsive {
        width: 100%;
        float: none
    }

    .marco-contacto {
        margin-top: 40px;
    }

    .botones_carro {
        width: 100%;
        margin-top: 20px
    }

    .otras_fotos .imagen {
        height: 100px;
    }

    .foto_principal .imagen {
        width: 100%
    }

    .zona_galeria_mini .bx-wrapper .bx-prev {
        display: none;
    }

    .zona_galeria_mini .bx-wrapper .bx-next {
        display: none;
    }


    .instagram-widget>div {
        position: relative;
        padding-top: calc(100vw / 3);
    }

    .instagram-widget iframe {
        width: 200% !important;
    }

    .padre_imagen .imagen {
        background-size: contain;
    }

    .sidebar-wrapper.left .form-control {
        height: 43px;
        padding: 6px 12px;
        color: var(--secundario);
        font-style: italic;
        background-color: #ffffff;
        border: 1px solid var(--primario);
        border-radius: 4px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sidebar-nav li a.favorito {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .caja_favorito,
    .caja_redes {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .caja_favorito a,
    .caja_redes a {
        padding: 0 10px !important;
        margin: 10px 0 !important;
    }

    .caja_acceso a {
        padding: 0 20px !important;
    }

    .caja_favorito a img {
        margin-left: 0 !important;
    }

    .sidebar-wrapper li img,
    .caja_redes a img {
        height: 25px;
        transition: all .2s ease-in-out;
    }

    .sidebar-wrapper.left .sidebar-nav li:first-child {
        padding: 10px 20px;
        text-indent: 0px;
        padding-top: 25px;
    }

    .left .sidebar-nav .multi-level li:first-child {
        padding: 0;
    }

    .left .sidebar-nav .multi-level li:last-child a {
        text-indent: 0;
    }

    .left .sidebar-nav .multi-level li.active a {
        text-decoration: none;
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.30);
        font-weight: 400;
    }

    .quantity {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .quantity label {
        margin-bottom: 0;
    }

    .zona-mapa iframe {
        height: 500px;
    }
}

@media (max-width: 767px) {

    #stripe-modal {
        .modal-content {
            width: 380px !important;
        }
    }

    @supports (-webkit-hyphens: none) {
        .section--news {
            background-attachment: scroll !important;
        }
    }

    /* móviles */
    .marco-izq .col-xs-10 {
        margin-left: 0px;
    }

    .filtros {
        height: 260px;
    }

    .titulo {
        font-size: 42px;
    }

    .antetitulo {
        font-size: 20px;
    }

    .section {

        &.section--top-categories,
        &.section--products,
        &.section--news {
            padding: 75px 24px 90px 35px !important;

            .section__title {
                font-size: 42px;
            }

            .section__subtitle {
                font-size: 20px;
            }
        }

        &.section--top-categories {
            padding-bottom: 50px !important;
        }

        &.section--about-us {
            .section__title {
                font-size: 42px;
            }

            .section__subtitle {
                font-size: 20px;
            }
        }

        &.section--banner {
            .banner-content {
                top: 2dvh;
            }

            .section__title {
                font-size: 60px !important;
                line-height: 60px;
            }
        }
    }

    h3.categoria {
        text-align: center;
    }

    span.precio {
        font-size: 45px;
        font-family: var(--familia_fuente);
        font-weight: 400;
    }

    span.tachado {
        font-size: 24px;
        font-family: var(--familia_fuente);
        font-weight: 400;
    }

    .precios_estilos {
        text-align: center;
        width: 100%;
    }

    .banner_interior {
        height: 250px;
    }

    .otras_fotos {
        margin-bottom: 30px
    }

    .nav-botones>li {
        float: none;
        width: 100%;
        margin-bottom: 10px
    }

    .nav-botones>li>a {
        margin: 0;
    }

    .lista_productos {
        .like-button {
            top: 50px !important;
        }
    }

    .btn-pagination {
        padding: 6px 12px;
        font-size: 12px;
        margin: 0 7px;
        border: 1px solid;
    }

    h3 {
        font-size: 20px;
    }

    .proyecto .imagen {
        background-size: cover;
    }

    .cuadro_noticia {
        float: none;
        position: relative;
        width: 100%;
        margin: 0 auto 30px;
    }

    .instagram-widget>div {
        position: relative;
        padding-top: calc(100vw / 2);
    }

    .instagram-widget iframe {
        width: 300% !important;
    }
}