.mc-promo-popup {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.7);
    transform: translateY(-60%) scale(0);
    transition: transform 0.3s cubic-bezier(0.2, 0.0, 0.6, 1);
    z-index: 99999;
}

.mc-promo-popup, .mc-promo-popup * {
    font-size: 16px;
    box-sizing: border-box !important;
    max-width: 100%;
}

.mc-promo-popup.visible {
    transform: translateY(0) scale(1);
}

.mc-logo { text-align: center; width: 150px; margin: 0 auto;}

.mc-promo-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Popup-specific styles */
.mc-promo-body {
    border-radius: 4px;
    box-shadow: 0 4px 40px 15px rgba(30, 30, 30, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #FFF;
    color: #333;
    min-width: 300px;
    max-width: 550px;
    text-align: left;
}

.mc-promo-body p {
    color: #555;
}

.mc-promo-body strong {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.mc-promo-body .actions {
    display: block;
    position: relative;
    clear: both;
    text-align: center;
}

.mc-promo-body button {
    background: #09a468;
    color: #baffe5;
    font-size: 16px;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    border: 0;
    padding: 28px;
    margin: 10px 5px 0;
    text-shadow: 0 -1px rgb(255 255 255 / 70%);
}

.mc-promo-body button.yes {
    background: #CCC;
    border-color: #BBB;
    color: #444;
}
.mc-promo-body-inner { border: 1px solid #ccc; padding: 15px; border-radius: 5px; }

.mc-promo-body .close { cursor:pointer; margin-top: 25px; font-size: 11px; text-decoration: underline; }

.mc-promo-body .close span {
    background: #6d6f73;
    color: white;
    padding: 0 4px 2px 4px;
    font-size: 10px;
    /* vertical-align: middle; */
    /* line-height: 10px; */
    /* vertical-align: middle; */
    border-radius: 10px;
    position: relative;
    top: -2px;
}
.mc-promo-body .green { color: #216b25; font-weight: bold; }

.mc-promo-close {
    font-size: 16px;
    border-radius: 16px;
    position: absolute;
    top: -14px;
    right: -14px;
    padding: 10px;
    cursor: pointer;
    background: #333;
    height: 32px;
    width: 32px;
    line-height: 9px;
    text-align: center;
    color: #EEE;
    box-shadow: 0 1px 3px rgba(10, 10, 10, 0.4);
}

@media only screen and (max-width: 600px) {
    .mc-promo-body {
        min-width: 90%;
    }

    .mc-promo-popup p.lead {
        font-size: 14px;
    }
}
