.popup-bg {
    position: fixed;
    top: 0;
    z-index: 2;

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;

    height: 100%;
    overflow: auto;
}

.popup-bg.hasBackgroundShadow {
    background-color: rgba(0,0,0,0.1);
}

.popup-wrapper {
    position: relative;
    padding: 32px;
    background: var(--white);
    border: 1px solid #CACACA;
    box-shadow: 0px 0px 60px rgba(60, 67, 84, 0.23);
    border-radius: 5px;
    margin: 80px 0;
}
.popup-error{
    color: #FF0000;
}

.popup-head h3{
    font-family: "Lato Bold";
    margin-bottom: 36px;
}

.popup-foot {
    margin-top: 46px;
    display: flex;
    justify-content: space-between;
}

.popup-cancel {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    color: var(--green-primary);
    font-family: "Lato Bold";
    text-decoration: underline;
    font-size: 16px;
    gap: 4px;

    text-align: left;
    max-width: 50%;
}

.popup-cta.btn-default{
    padding: 16px 12px;
    font-size: 16px;
}

.form-row {
    margin-bottom: 28px;
}

.form-row:not(.form-row-radio) label {
    margin-bottom: 8px;
}

.form-row-radio {
    display: flex;
    align-items: center;
    gap: 8px
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
  opacity: 0;
}

.popup-loader
{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FFF;
    opacity: 0.8;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


@media only screen and (max-width: 767px){
    .popup-cancel {
        font-size: 14px;
    }

    .popup-cta.btn-default {
        font-size: 14px;
        padding: 12px;
    }
}