body {
    margin: 0px;
    overflow-x: hidden;
    background: #f9f6ed;
}

main {
    background: #f9f6ed;
}

* {
    box-sizing: border-box;
    outline: none;
    color: black;
}

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

input {
    padding: 0px;
    border: none;
    background: none;
}

.wnr-container {
    padding: 6.25vw 7.2vw;
    display: flex;
    justify-content: space-between;
}

.d-block {
    display: block;
}

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

.h-auto {
    height: auto;
}

.col-4 {
    flex: 0 0 33.33%;
}

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

.black-button:disabled {
    background: #969595;
    cursor: no-drop;
}

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

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.mb-4 {
    margin-bottom: 0.3125vw;
}

.mb-8 {
    margin-bottom: 0.625vw;
}

.mb-12 {
    margin-bottom: 0.9375vw;
}

.mb-16 {
    margin-bottom: 1.25vw;
}

.mb-20 {
    margin-bottom: 1.5625vw;
}

.mb-24 {
    margin-bottom: 1.875vw;
}

.mb-28 {
    margin-bottom: 2.1875vw;
}

.mb-32 {
    margin-bottom: 2.5vw;
}

.mb-36 {
    margin-bottom: 2.8125vw;
}

.mt-32 {
    margin-top: 2.5vw;
}

.mb-40 {
    margin-bottom: 3.125vw;
}

.mb-48 {
    margin-bottom: 3.75vw;
}

.mb-64 {
    margin-bottom: 5vw;
}

.mb-80 {
    margin-bottom: 6.25vw;
}

.mb-96 {
    margin-bottom: 7.5vw;
}

.mb-104 {
    margin-bottom: 6vw;
}

.mb-120 {
    margin-bottom: 9.375vw;
}

.mr-4 {
    margin-right: 0.3125vw;
}

.mr-12 {
    margin-right: 0.9375vw;
}

.mr-16 {
    margin-right: 1.25vw;
}

.mr-32 {
    margin-right: 2.5vw;
}

.mt-0 {
    margin-top: 0px;
}

.pt-0 {
    padding-top: 0px;
}

.c-pointer {
    cursor: pointer;
}

.black-button,
.white-button {
    color: var(--white);
    padding: 1.25vw 1.875vw;
    background: #6f6b4d;
    border-radius: 0.625vw;
    cursor: pointer;
    width: fit-content;
    text-align: center;
}

.white-button {
    background: #fff !important;
    color: var(--black);
    border: 0.078125vw solid var(--black);
}

.offer-box {
    position: relative;
    width: 80vw;
    height: 15.9375vw;
    margin-top: 8.625vw;
    flex-direction: column;
    padding: 3.125vw;
    gap: 2.1875vw;
    border-radius: 0.625vw;
    background: #ffffff;
    justify-self: center;
    box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.16), 0px 0px 1px rgba(0, 0, 0, 0.4);
}

.blueC {
    color: var(--blueC) !important;
}

.offer-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.3vw 0.9vw;
    width: fit-content;
    height: 2.5vw;
    border: 0.072vw solid #000000;
    border-radius: 0.625vw;
    margin-top: 2.1875vw;
    cursor: pointer;
    color: #6f6b4d;
}

.view-more-button {
    position: absolute;
    top: 3.867vw;
    right: 3.125vw;
    width: 2.5vw;
    cursor: pointer;
}

.offer-info {
    position: absolute;
    bottom: 3.4375vw;
    right: 3.125vw;
    display: flex;
    align-items: center;
}

.offer-info img {
    width: 1.25vw;
    margin-right: 0.3125vw;
    margin-left: 0.625vw;
}

.offer-info span {
    display: flex;
    align-items: center;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #00000085;
    display: flex;
    align-items: center;
    cursor: wait;
    justify-content: center;
}

#loader img {
    width: 8vw;
}

#toast-error,
#toast-success {
    position: fixed;
    width: max-content;
    left: 50%;
    bottom: 4vw;
    transform: translateX(-50%);
    color: white;
    padding: 1.25vw 1.875vw;
    border-radius: 0.625vw;
    box-shadow: 0 0.3125vw 0.9375vw rgba(0, 0, 0, 0.2);
    font-weight: bold;
    z-index: 9999;
    animation: slideUp 0.3s ease, fadeOut 0.3s ease 4.5s forwards;
    width: max-content;
}

#toast-error {
    background-color: #ff0000;
    /* Rojo */
}

#toast-success {
    background-color: #00aa00;
    /* Rojo */
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {

    .resp-mb .mb-4,
    .resp-mb.mb-4 {
        margin-bottom: 1.0256vw;
    }

    .resp-mb .mb-8,
    .resp-mb.mb-8 {
        margin-bottom: 2.0513vw;
    }

    .resp-mb .mb-12,
    .resp-mb.mb-12 {
        margin-bottom: 3.0769vw;
    }

    .resp-mb .mb-16,
    .resp-mb.mb-16 {
        margin-bottom: 4.1026vw;
    }

    .resp-mb .mb-20,
    .resp-mb.mb-20 {
        margin-bottom: 5.1282vw;
    }

    .resp-mb .mb-24,
    .resp-mb.mb-24 {
        margin-bottom: 6.1538vw;
    }

    .resp-mb .mb-28,
    .resp-mb.mb-28 {
        margin-bottom: 7.1795vw;
    }

    .resp-mb .mb-32,
    .resp-mb.mb-32 {
        margin-bottom: 8.2051vw;
    }

    .resp-mb .mb-36,
    .resp-mb.mb-36 {
        margin-bottom: 9.2308vw;
    }

    .resp-mb .mb-40,
    .resp-mb.mb-40 {
        margin-bottom: 10.2564vw;
    }

    .resp-mb .mb-48,
    .resp-mb.mb-48 {
        margin-bottom: 12.3077vw;
    }

    .resp-mb .mb-64,
    .resp-mb.mb-64 {
        margin-bottom: 16.4103vw;
    }

    .resp-mb .mb-80,
    .resp-mb.mb-80 {
        margin-bottom: 20.5128vw;
    }

    .resp-mb .mb-96,
    .resp-mb.mb-96 {
        margin-bottom: 24.6154vw;
    }

    .resp-mb .mb-104,
    .resp-mb.mb-104 {
        margin-bottom: 26.6667vw;
    }

    .resp-mb .mb-120,
    .resp-mb.mb-120 {
        margin-bottom: 30.7692vw;
    }
}

@media (min-width: 1400px) {
    #header-container {
        transform: scale(0.8);
        transform-origin: top center;
        height: 17.5vw;
        margin-bottom: -9vw;
        z-index: 3;
        position: relative;
        background: none;
    }

    .scroller-secret {
        transform: scale(0.8);
        transform-origin: top center;
    }

    .home-containerA .scroller {
        height: 27vw;
    }

    #header-picker {
        transform: scale(0.8);
        transform-origin: top center;
    }

    .home-containerA {
        padding: 3.25vw 0vw;
        padding-bottom: 0px;
        height: auto;
    }

    .home-containerA .offer-box {
        transform: scale(0.8);
        transform-origin: top center;
        margin-top: 4vw;
    }

    .home-locations {
        transform: scale(0.8);
        transform-origin: top left;
        width: 125vw;
        padding: 3vw 14.2vw;
        height: 61vw;
        margin-bottom: -17vw;
    }

    .home-containerB {
        transform: scale(0.8);
        transform-origin: top center;
        margin-top: 5vw;
        padding-top: 3vw;
        height: 60vw;
    }

    footer {
        transform: scale(0.8);
        transform-origin: top left;
        width: 125% !important;
        justify-content: center;
    }

    .footer-content {
        max-height: 13vw;
    }
}

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

.m-0 {
    margin: 0 !important;
}

.mb-1 {
    margin-bottom: 1vw !important;
}

.p-0 {
    padding: 0 !important;
}