#vv-popup-main{
    display: none;
    z-index: 100000000000;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
#vv-popup-wrapper{
    display: flex;
    align-items: center;
    height: 100vh;
}
#vv-popup-container{
    background-color: #fff;
    width: calc(100vw - 20px);
    height: fit-content;
    overflow-y: auto;
    position: relative;
    margin-left: 10px;
    border-radius: 8px;
}
.vv-popup-default-header{
    background-color: #fff;
}
.vv-popup-image-close-btn{
    display: flex;
    justify-content: right;
    padding: 40px 40px 0 0;
}
.vv-popup-close-btn-container{
    cursor: pointer;
}

.vv-popup-close-btn-container svg{
    width: 25px;
    height: 25px;
}

#vv-popup-default-form{
    padding: 20px 40px 40px 40px;
}
.vv-popup-default-title{
    font-family: "Kumbh Sans", Arial, sans-serif;
    font-size: 25px;
    color: #000;
    font-weight: 700;
    margin-bottom: 22px;
}
#vv-popup-default-form label{
    cursor: pointer;
    font-family: "Kumbh Sans", Arial, sans-serif;
    font-size: 15px;
    color: #5E5E5E;
    margin-top: 10px;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none; 
}
#vv-popup-default-form input{
    margin-right: 4px !important;
}
#vv-popup-default-submit-container{
    display: flex;
    justify-content: right;
    margin-top: 22px;
}
#vv-popup-default-submit{
    font-family: "Kumbh Sans", Arial, sans-serif;
    font-size: 17px;
    color: #fff;
    background-color: #5060F6;
    width: fit-content;
    height: fit-content;
    padding: 12px 30px;
    border-radius: 4px;
}
#vv-popup-default-submit:hover{
    cursor: pointer;
}
#vv-popup-default-submit.loading:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    margin-left: 5px;
    margin-top: 0;
    animation: vv-loading 0.7s linear infinite;
}
#vv-popup-container .wpforms-container{
    box-shadow: none !important;
}
#vv-webform-main{
    display: none;
}
#vv-online-store-main{
    display: none;
}

#vv-popup-main .vv-popup-wpform-title{
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

#vv-popup-main .vv-popup-wpform-title span{
    font-family: "Kumbh Sans", Arial, sans-serif;
    font-size: 20px;
    color: #444444;
    font-weight: 700;
    width: calc(100% - 10px);
    text-align: center;
    line-height: 1.1em;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;
    margin-top: 10px;
}

@media only screen and (min-width: 900px){
    #vv-popup-wrapper{
        justify-content: center;
    }
    #vv-popup-container{
        width: 700px;
        height: fit-content;
        margin-left: 0;
    }
    .vv-popup-default-title{
        font-size: 30px;
        margin-bottom: 12px;
    }
    #vv-popup-default-submit-container{
     margin-top: 0;
    }

    #vv-popup-main .vv-popup-wpform-title span{
        width: calc(100% - 120px);
    }
}
@keyframes vv-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}