/*
    linear-gradient(Direction || Angle, color Stop 1, Color Stop 2, ......) 
    background-image: linear-gradient(to bottom, rgb(7, 64, 156), rgb(210, 218, 223))
*/
*{
    position: relative;
    margin:0 !important;
    padding:0 !important;
    font-family: Droid Arabic Kufi;
}
.modal {
    position: absolute;
    float:right;
}
body{
    display:flex;
    align-items:center; 
    justify-content:center; 
    text-align:center;
}
.dv_main{
    position: relative;
    width:100vw;
    height: 100vh;
    display:flex;
    overflow: auto;
    align-items:center; 
    justify-content:center; 
    text-align:center;
    background: linear-gradient(to left, transparent, #70a3ce);
	background-size: 100% 100%;
}
.dv_bdy{
    position: relative;
    display: block;
    width:60vw;
    height: 80vh;
    min-height: 515px;
    border-radius: 10px;
    background-color: rgba(28, 81, 131, 0.6);
    box-shadow: -4px 4px 10px 0px #6f6f71;
}

.dv_bdy_top{
    position: relative;
    display: block;
    float:right;
    direction:rtl;
    width:100%;
    height: 80%;
}
.dv_btp_hdr{
    position: relative;
    display: flex !important;
    float:right !important;
    direction:rtl;
    margin:0 !important;
    height:10% !important;
    font-size:18px;
    align-items:center; 
    justify-content:right; 
    text-align:center;
    color:#FFFFFF;
}
.spn_bak{
    position: absolute;
    left:10px !important;
    display: inline-flex;
    width:30px;
    height:30px;
    cursor: pointer;
    font-size: 16px;
    color:#FFFFFF;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(130deg, #00b289, #014bba 120%) no-repeat center 100%; /* Modern gradient */
    box-shadow: -4px 4px 10px 0px #5a5a5a;
}
.spn_bak:hover{
    color:orange;
    background: linear-gradient(130deg, #00b289, #014bba 95%) no-repeat center 100%; /* Modern gradient */
    transition: .3s;
}
.dv_ulc{
    position: relative;
    display: block;
    float:right;
    direction: rtl;
    padding-top:10px !important;
    padding-right: 10px !important;
    margin:0 !important;
    top:0 !important;
    width:100%;
    max-width: 100%;
    height:90%;
    max-height: 85%;
    overflow: auto !important;
}
.dv_ulc ul{
    position: relative;
    display: block;
    float:right;
    direction: rtl;
    width:100%;
}
.dv_ulc ul.ul_con{
    list-style-type:square !important;
    list-style-position: inside;
}
.dv_ulc ul li{
    position: relative;
    display: block;
    float:right;
    width:100%;
    direction:rtl;
    text-align: right;
    color:#FFFFFF;
    font-size: 12px;
    margin-right: 20px;
}
.dv_bdy_btm{
    position: absolute !important;
	display: block;
	float:left;
	width:100%;
    height:40px;
    margin:0;
    padding:5px;
    left: 1px;
    font-size: 9px;
	bottom:0;
}
.dv_ftr_lft, .dv_ftr_rit{
    position: relative;
    display: inline-flex;
    float:left;
    height:100%;
    font-size:10px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
}
.dv_ftr_lft{
    width: 40px;
}
.dv_ftr_rit{
    width:calc(100% - 40px);
}
.btn_ctl{
    position: relative;
    display: inline;
    float: right;
    width: 100%;
    height: 33px;
    font-size: 11px;
    font-weight: 400;
    color:white;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
    background: linear-gradient(to left, transparent, #1680c7);
    box-shadow: -1px 1px 4px 0px #414040;
    border:none !important;
}
.btn_ctl:hover{
    background: rgb(3 0 0);
    background: linear-gradient(130deg, #4f8cb6, #1680c7 120%) no-repeat center 100%; /* Modern gradient */
    color:orange;
    transition: .3s !important;
}
.btn_bak{
    width:35px;
    height:35px;
    border-radius: 50%;
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
}
.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 10px; 
    color: #294293;
}

.line-with-text::before,
.line-with-text::after {
    content: ""; 
    flex-grow: 1; 
    height: 1px;
    background-color: #ccc; 
    margin: 0 10px; 
}

.line-with-text::before {
    background: linear-gradient(to right, transparent, #294293);
}

.line-with-text::after {
    background: linear-gradient(to left, transparent, #294293);
}