.therapist-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0,0,0,.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    overflow-y: auto
}

.therapist-popup-overlay.active {
    display: flex
}

.therapist-popup-overlay .therapist-popup-content {
    position: relative;
    background: #fff;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    animation: popupFadeIn 0.3s ease-out
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #314143;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-close:hover {
    background-color: #f1f5f9;
    color: #d1aa4f;
    transform: rotate(90deg)
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner {
    padding: 40px;
    color: #31313f
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner h1,.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner h2,.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner h3,.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner h4,.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner h5,.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner h6 {
    color: #314143;
    margin-bottom: 20px
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner p {
    color: #31313f;
    margin-bottom: 15px
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner a {
    color: #d1aa4f;
    text-decoration: underline
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner a:hover {
    color: #d1aa4f
}

/*Therapist messages*/

.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner .therapist-popup-message{
 padding: 40px 40px 10px;
}

.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner .therapist-popup-message h2{
    text-align: center;
}
.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner .therapist-popup-message h2 span{
    color: #7c9c9f;
}
.therapist-popup-overlay .therapist-popup-content .therapist-popup-inner .therapist-popup-message .options_ctas{
    text-align: center;
    margin-top: 40px;
}
/*Therapist messages*/

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}


@media (max-width: 768px) {
    .gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gfield-image-choice-wrapper-outer {
        padding:0!important;
        margin: 0!important
    }
}

.btn-color-special:hover,.btn-color-special .btn-color:hover {
    color: #000!important
}


@media screen and (max-width: 550px) {
    .therapist-popup-overlay .therapist-popup-content .therapist-popup-inner .therapist-popup-message{
        padding: 30px 10px 10px;
    }
}