#welcome-discount-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.promo-content {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    max-width: 95%;
}

.promo-content__buttons {
    display: flex; flex-direction: column; gap: 1.5rem;
}
@media screen and (min-width: 768px) {
    .promo-content__buttons {
        display: flex; gap: 1.5rem;
    }
}

.promo-content__heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.promo-content__subheading {
    font-size: 2.4rem;
}

.promo-content__msg-top {
    font-size: 1.2rem;
}
.promo-content__msg-bottom {
    margin-bottom: 0.5rem;
}

.promo-content h2,
.promo-content p {
    color: #ff3131;
}

#promo-timer {
    font-weight: 700;
    /* color: black; */
    font-size: 2.2rem;
}

button {
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

#welcome-discount-popup-timer {
    position: absolute;
    bottom: -100px;
    right: 0;
    border: 2px solid #ff3131;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ff3131;
    color: white;
    border-radius: 1rem;
    cursor: pointer;
}
.welcome-discount-popup-timer__text {
    font-size: 0.8rem;
    font-weight: 500;
}

#welcome-discount-popup-timer-value {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.promo-applied-message {
    margin-bottom: 0;
    font-size: 1.6rem;
}

#apply-promo {
    background: #ff3131;
    color: #fff;

    animation: tilt-shaking 2s ease-in-out infinite;
    /* // box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); */
    /* &:hover {
        animation: none;
        // opacity: 0.5;
        // background-color: black !important;
        // transform: translateY(150px);
    } */
}