.wps-promo-modal {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 120;
    padding: 40px 20px;
    overflow: hidden;
}

.wps-promo-modal:not(.wps-promo-modal-active) {
    height: 0;
    width: 0;
}

.wps-promo-modal-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease-out;
}

.wps-promo-modal:not(.wps-promo-modal-active) .wps-promo-modal-overlay,
.wps-promo-modal.wps-promo-modal-closing .wps-promo-modal-overlay {
    opacity: 0;
    transition: all 0.2s ease-out 0.2s;;
}

.wps-promo-modal-inner {
    display: flex;
    justify-content: center;
    width: 500px;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.2s ease-out 0.2s;
}

.wps-promo-modal:not(.wps-promo-modal-active) .wps-promo-modal-inner,
.wps-promo-modal.wps-promo-modal-closing .wps-promo-modal-inner {
    margin-top: 80px;
    opacity: 0;
    transition: all 0.2s ease-out;
}

.wps-promo-modal-close {
    position: absolute;
    top: -30px;
    right: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.wps-promo-modal-close svg {
    height: 16px;
    width: 16px;
}

.wps-promo-modal-close path {
    fill: #fff;
}

.wps-promo-modal-content {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
    overflow: auto;
}
