.mu-promo-modal {
    position: fixed;
    bottom: 1rem;
    left: 1.5rem;
    width: 100%;
    z-index: 9999;
}

.mu-promo-modal__container {
    position: relative;
    background: #004a8e;
    color: #fff;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.14);
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mu-promo-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 100;
}

.mu-promo-modal__close:hover {
    background: none;
    color: #fff;
}

.promo-modal-content h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promo-modal-content p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.21429rem;
}

.promo-code-text {
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: underline;
}

.promo-code-text:hover {
    text-decoration: none;
}

@media (max-width: 420px) {
    .mu-promo-modal {
        left: 0;
        bottom: 0;
    }

    .mu-promo-modal__container {
        width: 100%;
        border-radius: 0;
        padding: 20px 10px;
    }
}