.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}
.promo {
    width: 100%;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 200px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}
.promo figure {
    background: #f5f5f5;
}
.promo figure img.promo-image {
    display: block;
    width: 100%;
    height: auto;
}
.promo figure .promo-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}
.promo figure .promo-close img {
    margin: 7px;
    width: 16px;
    height: 16px;
}
.promo .promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}
.promo .promo-content .promo-title {
    font-weight: 800;
    font-size: 22px;
    text-wrap: balance;
}
.promo .promo-content .promo-buttons {
    margin: 25px 0 0;
    display: grid;
    grid-template-columns: auto auto;
    place-items: center;
    gap: 15px;
}
.promo .promo-content .promo-buttons .button {
    margin: 1px 0 0;
    min-width: auto;
    padding: 10px 30px;
    background: #8db600;
    border-bottom: 3px solid #556d00;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
}
.promo .promo-content .promo-buttons .button:hover {
    background: #719200;
    border-bottom: 3px solid #384900;
}
.promo .promo-content .promo-buttons .button-no {
    color: #909293;
    cursor: pointer;
    font-size: 16px;
}
.promo .promo-content .promo-buttons .button-no:hover {
    color: #212427;
    text-decoration: underline;
}
.promo .promo-content .promo-footer-content {
    margin: 15px 0 0;
    font-size: 15px;
    font-weight: 500;
    color: #7fa400;
}