.body-verify-body-box{
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    backdrop-filter: blur(10px);

}
.body-verify-body{
    width: 100%;
    background-color: #ffffff;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 #0026ff;
    padding: 10px;
    box-sizing: border-box;
    margin: 40px;
    overflow: hidden;
}
.body-verify-body-title-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.body-verify-body-title-text{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: 5px;
}
.body-verify-body-title-text-text{
    font-size: 1.3em;
}
.body-verify-body-title-text-img img{
    width: 40px;
    height: 40px;
}
.line{
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #000d29;
    margin: 10px auto;
}
.body-verify-form-selector-box{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}
.body-verify-form-selector{
    position: relative;
}
.body-verify-form-select-box{
    display: flex;
    flex-wrap: nowrap;
    column-gap: 10px;
}
.body-verify-form-select{
    padding: 10px 7px;
    cursor: pointer;
}
.body-verify-form-select-line{
    background-color: #000000;
    height: 3px;
    border-radius: 10px;

    position: absolute;
    bottom: 0;
    right: 0;
    width: 110px;
    height: 3px;
    transition: all .3s ease;
}
.body-verify-form-box-box{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 5px 0;
}
.body-verify-form-box{
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;

}
.body-verify-form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}
.body-verify-form-input-box{
    display: grid;
    row-gap: 5px;
    width: 100%;
}
.body-verify-form-input-box-label{width: 100%;}
.body-verify-form-input-box-input input{
    width: 100%;
    box-sizing: border-box;
    border-radius: 7px;
    padding: 7px 5px;
    text-align: center;
    border: 1px solid #000;
    letter-spacing: 4px;
    font-weight: 600;
}
.body-verify-form-input-box-captcha-box{
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#body-verify-form-input-box-captcha{
    width: 290px;
    height: 72px;
    border-radius: 5px;
}
.body-verify-form-button-box{
    width: 100%;
}
.body-verify-form-button{
    width: 100%;
    height: 40px;
    color: #fff;
    background-color: #000d29;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}
@keyframes change_form {
    from{
        transform: translateY(40px);
        opacity: 0.1;
    }to{
        transform: translateY(0);
        opacity: 1;
    }
}
#st-data-2-box{
    display: none;
}
#st-data-2-bday{
    display: flex;
    flex-wrap: wrap;
}

#st-data-2-bday .body-verify-form-input-box-input{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    direction: ltr;
    column-gap: 10px;
}
.body-verify-form-input-box-input div{
    width: 100%;
}
.body-verify-form-input-box-input div select{
    width: 100%;
    text-align: right;
    padding: 5px 0px;
    border-radius: 5px;
    direction: rtl;
}
.form-input-error{
    height: 15px;
    font-size: 0.8em;
    font-weight: 600;
    color: #e60000;
    direction: rtl;
}































loading-animation{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    column-gap: 5px;
    padding: 5px;
    direction: rtl;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    /* border: 2px solid #ffffff8f; */
    z-index: 2;
    backdrop-filter: blur(20px);
    background-color: #ffffff;
    cursor: not-allowed;
}
.loading-animation-line {
    height: 1%;
    max-height: 30px;
    width: 3px;
    background-color: #000d29;
    border-radius: 5px;
}
.loading-animation-line.loading-line-0{animation: loading-line-animation 750ms 000ms  linear infinite alternate;}
.loading-animation-line.loading-line-1{animation: loading-line-animation 750ms 100ms  linear infinite alternate;}
.loading-animation-line.loading-line-2{animation: loading-line-animation 750ms 200ms  linear infinite alternate;}
.loading-animation-line.loading-line-3{animation: loading-line-animation 750ms 300ms  linear infinite alternate;}
.loading-animation-line.loading-line-4{animation: loading-line-animation 750ms 400ms  linear infinite alternate;}
.loading-animation-line.loading-line-5{animation: loading-line-animation 750ms 500ms  linear infinite alternate;}
.loading-animation-line.loading-line-6{animation: loading-line-animation 750ms 600ms  linear infinite alternate;}

.loading-animation-line-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    column-gap: 5px;
    height: 100%;
    direction: ltr;
}


@keyframes loading-line-animation {
    from{height: 1%;}
    to{height: 100%;}
}