#supporter-form-box{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
#supporter-form-box-box{
    width: 100%;
    max-width: 550px;
    height: 100vh;
    max-height: 750px;
    border-radius: 10px;
    background-color: #ffffff;
    box-sizing: border-box;
    box-shadow: 0 0 15px 0 #000;
    overflow-y: scroll;
    position: relative;
}
#supporter-form-message-box-box{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #000;
}
#supporter-form-message-box-1{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
}
#supporter-form-message-box-2{
    width: 100%;
    text-align: center;
}
#supporter-form-message-box-title{
    text-align: center;
    font-size: 1.5em;
    color: #000275;
    line-height: 50px;
}
#supporter-form-message-box-text{
    line-height: 25px;
}
#supporter-form-message-box-3{
    width: 100%;
    display: flex;
    row-gap: 15px;
    box-sizing: border-box;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px 7px 0px 1px;
}
.supporter-form-message-box-button{
    width: 100%;
    height: 45px;
    background-color: #000d29;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 0.9em;
}
#supporter-form-message-box-img-box{
    width: 150px;
    height: 150px;
    background-size: cover;
    position: absolute;
}
#supporter-form-message-box-shadow{
    width: 1px;
    height: 1px;
    border-radius: 50px;
    position: absolute;
}
#supporter-form-box-box-title{
    display: flex;
    justify-content: space-between;
    font-size: 1.5em;
    padding: 15px 10px;
    position: relative;
    box-sizing: border-box;
    cursor: default;
    flex-wrap: nowrap;
}
#supporter-form-box-box-title-close{
    cursor: pointer;
    background-size: cover;
    background-image: url(../img/close.svg);
    width: 30px;
    height: 30px;

}
#supporter-form-box-box-body{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    padding-bottom: 50px;
}
.supporter-form-box{
    width: 100%;
    padding: 0 5px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
}
.supporter-form-input{
    width: 100%;
}
.supporter-form-input input,select{
    width: 100%;
    box-sizing: border-box;
    padding: 7px 3px;
    text-align: center;
    direction: rtl;
    border-radius: 5px;
    border: 1px solid #000;
}
#supporter-form-captcha-box{
    width: 100%;

    height: 80px;
}
#captcha-box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#supporter-form-send-button-box{
    width: 100%;
    height: 40px;
    background-color: #000d29d1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: no-drop;
    color: #fff;
    font-size: 0.9em;
}

.from-input-box-error{
    width: 100%;
    height: 10px;
    font-size: 0.8em;
    padding-right: 4px;
    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%;}
}