.popup-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    &.active {
        display: flex;
    }
    .popup-box-content {
        position: relative;
        background: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
        max-width: 600px;
        margin: 0 auto;
        h2 {
            font-size: 24pt;
            font-family: 'graphik-bold';
            margin-bottom: 20px;
        }
        p {
            font-size: 16pt;
            margin-bottom: 20px;
        }
        .popup-box-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24pt;
            color: #000;
            cursor: pointer;
            background: transparent;
            border: 0px;
        }
    }
}
.popup-box-link {
    display: inline-block;
    padding: 12px 20px;
    background: var(--nectar-accent-color);
    color: #fff;
    border: 0px;
    border-radius: 0px;
    text-decoration: none;
    margin-top: 20px;
    cursor: pointer;
    font-family: 'graphik-bold';
    text-transform: uppercase;
    font-size: 18pt;
    &:hover {
        background: #2b015c;
    }
}
.light .popup-box-link {
    background: #fff;
    color: var(--nectar-accent-color);
    border: 2px solid var(--nectar-accent-color);
    &:hover {
        background: var(--nectar-accent-color);
        color: #fff;
    }
}

@media (max-width: 768px) {
    .popup-box > .popup-box-content {
        padding: 40px 20px 20px 20px;
        max-width: calc(100% - 40px);
        .popup-box-close {
            top: 10px;
            right: 10px;
        }
    }
    .popup-box-link {
        padding: 10px 15px;
        font-size: 16pt;
    }
}