.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    justify-content: center;
    align-items: center;
    z-index: 2147483646;
}

.popup.show {
    display: flex;
}

.popup-box {
    padding: 64px 56px;
    margin: 0 16px;
    border-radius: 16px;
    background-color: #fff;
    width: 100%;
    max-width: 670px;
}

.popup-box h3 {
    font-family: "OpenSans-Regular";
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    color: #0e1113;
    padding-bottom: 32px;
}

.popup-links-main {
    text-align: center;
}

a.popup-links {
    font-family: "OpenSans-SemiBold";
    font-size: 18px;
    line-height: 1.44;
    text-align: center;
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    background-color: #24005b;
    margin-bottom: 16px;
    width: auto;
    position: relative;
    display: inline-block;
}

a.popup-links:last-child {
    margin-bottom: 0;
}

p.popup-inc {
    font-family: "OpenSans-Regular";
    font-size: 14px;
    line-height: 1.57;
    text-align: center;
    color: #0e1113;
    padding-top: 32px;
}