.pc-popup {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 350px;
    margin: 20px auto;

    .mfp-close {
        display: none;
    }
}

.pc-popup--notification {
    .pc-popup__button-group > :first-child {
        display: none;
    }
}

.pc-popup__content {
    padding: 40px 20px;
}

.pc-popup__button-group {
    border-top: 1px solid #D9D9D9;
    display: flex;
}

.pc-popup__button {
    background-color: white; //#f2f2f2;
    border: none;
    flex-grow: 1;
    padding: 20px;
    transition: background-color ease .3s;

    &:hover {
        background-color: darken(white, 10%);
        cursor: pointer;
    }

    &:not(:last-child) {
        border-right: 1px solid #D9D9D9;
    }
}

.pc-popup-source-wrapper .pc-popup-source {
    display: none;
}