*{
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HK Grotesk';
    overflow-x: hidden;
    background: #F4F4F4;
}
img.vba_banner{
    width: 100%;
    display: block;
}
img.vba_banner_desk{
    display: none;
}
.container{
    padding-left: 15px;
    padding-right: 15px;
}
.vba_text{
    text-align: center;
}
.than_head{
    font-family: 'Gabriola';
    font-size: 45px;
    margin: 0px auto;
    font-weight: 400;
}
.play_head{
    font-family: 'Gabriola';
    font-size: 28px;
    font-weight: 400;
    margin: 0px auto 0px auto;
}
.vba_head{
    font-family: 'Gabriola';
    font-size: 35px;
    color: #4799D3;
    font-weight: 400;
    margin: -10px auto;
}
.vba_head span{
    color: #F69E19;
}
.userdetail_bg{
    background: #fff;
    padding: 40px 0px;
    border-radius: 20px 20px 0px 0px;
}
.user_detail_content p{
    font-size: 18px;
    text-align: center;
    margin: 0px auto;
    font-weight: 400;
    line-height: 27px;
    margin: 0px auto 20px auto;
}
.user_detail_content p span{
    font-weight: 600;
}
.user_form{
    margin-bottom: 20px;
}
.user_form h5{
    font-size: 16px;
    margin: 0px 0px 5px 0px;
    font-weight: 600;
}
input.name_input{
    width: 100%;
    border: 1.5px solid #E7E7E7;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    padding: 0px 10px;
    box-sizing: border-box;
    color: #000;
    outline: none;
}
input.name_input::placeholder{
    color: rgba(0, 0, 0, 0.6);
}
.select_div{
    position: relative;
}
.select_div select{
    width: 100%;
    border: 1.5px solid #E7E7E7;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    padding: 0px 35px 0px 10px;
    box-sizing: border-box;
    color: #000;
    outline: none;
    background: none;
    appearance: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.select_div img{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
}
.submit_btn{
    background: #40A0DD;
    color: #fff;
    width: 100%;
    height: 60px;
    border: 1px solid #40A0DD;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 80px;
    font-size: 18px;
    box-shadow: inset  0px -5px 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto 40px auto;
}
.loader_pos{
    position: fixed;
    inset: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
}
.loder_spin{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}
.loder_spin img{
    width: 60px;
    animation: 0.8s spin linear infinite;
}
@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.update_bg{
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
}
.close_popup{
    background: none;
    border: none;
    outline: none;
    margin-left: auto;
    display: block;
}
img.ref_img{
    width: 100px;
    display: block;
    margin: 0px auto 20px auto;
}
.update_bg h3{
    text-align: center;
    font-size: 20px;
    line-height: 27pxs;
    font-weight: 600;
}
.desk_view{
    max-width: 450px;
    margin: 0px auto;
}
img.vk_logo{
    width: 150px;
    margin: 0px auto;
    display: block;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}
@media only screen and (min-width: 1201px) {
    img.vba_banner_desk{
        display: block;
    }
    img.vba_banner{
        display: none;
    }
    img.vk_logo{
        width: 300px;
        top: 20%;
    }
}