.popup-open{
    overflow: hidden;
}
.popup-open .popup-overlay {
    overflow-x: hidden;
    overflow-y: auto;
}
.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100%;
    padding: 0;
}
.popup-overlay.active{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.popup-content {
    position: relative;
    padding: 0;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    padding: 30px 0;
    width: 80%;
}
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"} 
    to {top:0; opacity:1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}
}
@keyframes animatetop {
    from {top:-300px; opacity:0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}
    to {top:0; opacity:1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}
}
.popup-content .close-content{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 15px;
    cursor: pointer;
}
.popup-content .close-content i{
    color: #000000;
    margin-left: 6px;
}
.popup-content button.close-content:hover {
    opacity: 0.5;
}
.popup-overlay .popup-content .content-content{
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    display: flex;
}
.popup-overlay .popup-content .content-content .image-content{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.popup-content .common-form .section1 {
    padding: 0;
    border-bottom: 0;
}
/* md */
@media screen and (max-width: 1199px){
}

/* sm */
@media screen and (max-width: 991px){
    .popup-overlay.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .popup-overlay .popup-content .content-content{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: start;
            -ms-flex-align: start;
                    -ms-grid-row-align: flex-start;
                align-items: flex-start;
    }
}

/* xs */
@media screen and (max-width: 767px){
    .popup-content button.close-content {
        right: 10px;
    }
}

/* xxs */
@media screen and (max-width: 500px){
    .popup-overlay .popup-content .content-content {
        padding: 50px 0;
    }
}