@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap');
*, body{
    font-family: "Noto Kufi Arabic", sans-serif;
}
/* Chrome and Edge */ 
input::-ms-reveal,
input::-ms-clear,
input::-webkit-clear-button,
input::-webkit-credentials-auto-fill-button,
input::-webkit-password-toggle-button {
    display: none;
}

:root{
    --blue: #1e90ff;
    --white: #eee;
    --white-2: #ddd;
    --black: #222;
    --green: rgb(56, 216, 126);
}
body{
    margin: 0;
    text-align: right;
    background-color: #f2f2f2;
}
.side_bar{
    width: 250px; height: 100vh;
    background-color: var(--blue);
    position: fixed;
    right: 0; 
    z-index: 3;
}
.side_bar .logo{
    color: var(--white);
    margin-right: 40px;
    margin-top: 50px;
    cursor: pointer;
}
.side_bar .logo svg{
    margin-left: 8px;
    font-size: 52px;
    width: 40px;

}
.side_bar .logo img{
    width: 100px;
    margin-bottom: -10px;
}
.side_bar .about{
    color: #fff;
    width: 200px;
    margin: auto;
    margin-top: 60px;
    text-align: right;
    font-weight: 400;
}
.side_bar .about span{
    font-weight: 700;
}
.side_bar ol{
    list-style: none;
    display: flex; flex-direction: column;
    gap: 20px;
    width: 200px;
    margin: auto; 
    margin-top: 40px;
    padding: 0;
}
.side_bar ol li{
    margin-left: 25px;
    width: 150px; 
    height: 35px; 
    align-content: center;
    padding-right: 25px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 4px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .3s;
    font-size: 15px;
}
.side_bar ol li.active{
    color: var(--blue);
}
.side_bar ol li:hover{
    opacity: .85;
}
.side_bar ol li i{
    margin-left: 8px;
}
.side_bar .langs,
.side_bar .logout{
    margin: auto;
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex; 
    flex-direction: column;
    gap: 20px;
}
.side_bar .langs .ar,
.side_bar .langs .en,
.side_bar .logout{
    display: flex;
    justify-content: space-between;
    height: 30px;
    background-color: #eee;
    width: 140px;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .3s;
}
.side_bar .langs .ar:hover,
.side_bar .langs .en:hover,
.side_bar .logout:hover{
    opacity: .85;
}
.side_bar .langs .country{
    display: flex; gap: 8px;
}
.side_bar .langs .country .flag{
    font-size: 28px;
    line-height: 26px;
}
.side_bar .langs .country .flag img{
    width: 28px;
}
.side_bar .langs div p{
    height: 35px;
    margin-top: -0px;
}
.side_bar .logout{
    background-color: var(--white);
    display: inline;
    text-align: right;
    padding-right: 25px;
    height: 24px; line-height: 24px;
    color: #f22;
    font-weight: 500;
    font-size: 14px;
}
.side_bar .logout i{
    margin-left: 8px;
    transform: rotate(180deg);
}
/* navbar */
.navbar{
    /* border: .5px solid red; */
    width: 800px;
    padding: 15px 0;
    padding-top: 25px;
    margin: auto;
    transform: translateX(-50px);
    direction: rtl;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}
.navbar input.search{
    width: 240px; height: 32px;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 0 10px;
    padding-right: 30px;
    margin-right: 40px;
}
.navbar i.search-i{
    position: absolute;
    margin-right: 50px;
    margin-top: 9px;
    color: #555;
    font-size: 14px;
}
.navbar .stack {
    /* border: 1px solid gray; */
    width: fit-content; height: 34px; line-height: 34px;
    margin-left: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.navbar .stack .flag{
    cursor: pointer;
}
.navbar .stack .flag img{
    width: auto; height: 22px;
    padding: 6px;
    border-radius: 4px;
    padding-top: 5px;
}
.navbar .stack .notification{
    color: var(--blue);
    cursor: pointer;
    font-size: 22px;
}
.navbar .stack .notification .length{
    background-color: #f22; color: #fff;
    font-size: 10px; height: 18px; width: 18px; line-height: 18px;
    border-radius: 50px;
    position: absolute;
    margin-top: -32px;
    margin-right: -8px;
    font-weight: 600;
    text-align: center;
    display: none;
}
.navbar .stack img{
    border-radius: 50px;
    cursor: pointer;
    height: 34px; width: 34px;
}
/* notification */
.notification_alert{
    box-shadow: 2px 2px 8px rgba(8, 8, 8, 0.2);
    background: white;
    width: 300px;
    height: fit-content;
    padding-top: 15px; 
    padding-bottom: 15px;
    border-radius: 6px;
    z-index: 2; 
    direction: rtl;
    letter-spacing: .2px;
    position: absolute;
    left: 40px;
    top: 70px;
    display: none;
}
.notification_alert .top{
    display: flex;
    justify-content: space-around;
    height: 32px; line-height: 32px;
}
.notification_alert .top .read_all{
    color: var(--blue);
    font-size: 12px;
    cursor: pointer;
}
.notification_alert .body{ 
    margin-top: 10px;
    display: flex; flex-direction: column;
    gap: 4px;
    max-height: 350px;
    overflow-y: auto;
}
.notification_alert .body .notification_div{
    background-color: rgba(30, 144, 255, .15);
    height: fit-content;
    padding: 8px 20px;
    padding-bottom: 0px;
    font-size: 14px;
    cursor: pointer;
    color: #222;
}
.notification_alert .body .notification_div b{
    font-weight: 600;
}
.notification_alert .body .notification_div .time{
    color: #999;
    margin-top: 10px;
}
/* search */
.search_alert{
    width: 245px;
    height: fit-content;
    max-height: 300px; 
    background-color: #fff;
    box-shadow: 2px 2px 8px rgba(8, 8, 8, 0.2);
    position: absolute;
    padding: 20px;
    z-index: 2;
    border-radius: 8px;
    overflow-y: auto;
    right: 40px;
    top: 70px;
    display: none;
}
.search_alert .top{
    color: #888;
    font-size: 12px;
}
.search_alert .result{
    background-color: rgba(30, 144, 255, .15);
    height: fit-content;
    padding: 0 20px;
    cursor: pointer;
    margin: 0;
}
.search_alert .result p:first-child{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    height: fit-content;
    padding-top: 4px;
}
.search_alert .result p:nth-child(2){
    color: #555;
    font-size: 12px;
    margin-top: 0;
    height: fit-content;
    padding-bottom: 2px;
}
/* container */
.container{
    /* border: 1px solid gray; */
    width: 800px; 
    height: fit-content;
    min-height: 600px;
    margin: auto;
    transform: translateX(-50px);
    display: grid; gap: 20px;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr 2fr;
    grid-template-areas:    'c1 c2' 
                            'c3 c3';
    padding-bottom: 20px;
}
.container .card{
    width: 350px; height: 120px;
    background-color: white;
    box-shadow: 2px 2px 8px #ddd;
    border-radius: 10px;
    margin-left: 40px;
    margin-top: 20px;
}
.container .card:nth-child(1){
    grid-area: c1;
}
.container .card:nth-child(2){
    grid-area: c2;
    margin-left: 0;
}
.container .card:nth-child(3){
    grid-area: c3;
    width: 720px; height: 420px;
    margin-top: -55px;
    padding-top: 5px;
}
.container .card .title{
    direction: rtl;
    margin-top: 15px; margin-right: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #777;
}
.container .card .num{
    text-align: center;
    margin-top: 0px;
    font-size: 32px;
    font-weight: bolder;
    color: #333;
}

/* chart style */
.chart_container{
    min-width: 600px;
    /* width: fit-content; */
    height: 300px; 
    padding: 20px 0px 40px 0px;
    /* background-color: skyblue; */
    margin: 0 20px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    overflow-y: auto;
}
.chart_unite{
    /* background-color: burlywood; */
    min-width: 60px; height: 300px;
    border-radius: 8px;
}
.chart_unite p{
    /* background-color: red; */
    text-align: center;
    vertical-align: bottom;
    margin-top: 5px;
    height: 30px; line-height: 30px;
    width: 60px;
    font-size: 13px;
    overflow: hidden;
}
.chart_unite .chart{
    background-color: var(--green);
    width: 100%;
    height: 275px;
    border-radius: 8px;
    text-align: center;
    line-height: 45px;
    color: #222;
    font-weight: 500;
}
.chart_unite .chart.small_chart{
    line-height: 0px;
}

/* error login class */
.error{
    background-color: #f22; color: #fff;
    width: 540px;
    margin: auto;
    margin-top: 20px;
    text-align: center;
    padding: 6px 0;
    font-size: 14px;
    border-radius: 6px;
    display: none;
}
/* class page */
.container_class{
    width: 800px; 
    height: fit-content; 
    min-height: 100vh;
    margin: auto;
    transform: translateX(-50px);
}
.container_class .data{
    display: flex; 
    flex-direction: column; 
    gap: 15px;;
}
.container_class form{
    /* background-color: ghostwhite; */
    width: 600px;
    margin: auto;
    padding: 20px;
    direction: rtl;
    padding-top: 50px;
}
.container_class form textarea{
    min-width: 550px; max-width: 550px;
    min-height: 120px; max-height: 300px;
    border-radius: 8px;
    border: 1px solid gray;
    padding: 15px 20px;
    font-size: 14px;
}
.container_class form .upload_container{
    width: 590px;
    display: flex; 
    justify-content: space-between;
}
.container_class form .upload_container p{
    margin: 0;
}
.container_class form .upload_container p:first-child{
    cursor: pointer;
}
.container_class form .upload_container p:first-child i{
    margin-left: 8px;
}
.container_class form .numbers{
    /* background-color: greenyellow; */
    margin-top: 40px;
    width: 590px;
}
.container_class form .numbers .top{
    display: flex; 
    justify-content: space-between;
    height: 40px; line-height: 40px;
}
.container_class form .numbers .top .title{
    font-size: 18px;
}
.container_class form .numbers .top div:nth-child(2){
    width: 140px; height: 20px; line-height: 20px;
    border: none;
    border-radius: 4px;
    background: var(--green); color: #222;
    cursor: pointer;
    transition: scale .2s;
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    padding: 4px 0;
}
.container_class form .numbers .top button:hover{
    scale: 1.04;
}
.container_class .numbers ol.numbers_list{
    list-style: none;
    padding: 0;
    display: grid; 
    grid-template-columns: repeat(4, auto);
    justify-content: right;
    gap: 14px ;
    width: 590px;
    direction: ltr;
    margin: auto;
    margin-top: 20px;
}
.container_class .numbers ol.numbers_list li{ 
    background-color: var(--blue);
    color: #fff;
    width: fit-content; max-width: 120px;
    height: fit-content; 
    font-size: 12px;
    border-radius: 4px;
    padding: 0 10px;
    text-align: center;
}
.container_class .numbers ol.numbers_list li form{
    background-color: greenyellow; 
    height: 28px; 
    width: 100%;
    padding: 0;
    direction: ltr;
}
.container_class .numbers ol.numbers_list li form button{
    background: transparent;
    border: none;
}
.container_class .numbers ol.numbers_list li i{ 
    cursor: pointer;
    background-color: #f22;
    height: 16px; line-height: 16px; 
    width: 16px;
    font-size: 14px;
    text-align: center;
    border-radius: 3px;
    margin-left: 4px;
    text-align: center;
    margin-left: 4px; margin-top: 4px;
    border-radius: 3px;
    cursor: pointer;
}
.container_class .numbers .show_all_numbers{
    /* background-color: skyblue; */
    height: 40px; line-height: 40px;
    width: 100%; 
    text-align: center;
    margin-top: 30px;
}
.container_class .numbers .show_all_numbers hr{
    position: absolute;
    margin-top: 20px;
    width: 590px;
    height: 1px;
    background-color: var(--blue);
    border: none;
}
.container_class .numbers .show_all_numbers span{
    position: relative;
    padding:  4px 50px;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 12px;
    border-radius: 50px;
    background-color: #fff;
    cursor: pointer;
}
.container_class .check{
    margin-top: 40px;
    font-size: 14px;
}
.container_class .check label{
    cursor: pointer;
    margin-right: -8px;
    padding-right: 8px;
}
.container_class .check input[type=checkbox]{
    width: 16px; 
    height: 16px;
    border: 1px solid red;
    background-color: red;
    border-radius: 8px;
    cursor: pointer;
}
.send_msg{
    width: 100%;
    height: 36px;
    font-size: 13px;
    border: none;
    background-color: var(--green);
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    opacity: .9;
}
.send_msg:hover{
    opacity: 1;
}
.success_message {
    background-color: rgba(0, 0, 0, .15);
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    align-content: center;
    border-radius: 8px;
    z-index: 2;
    direction: rtl;
    display: none;
}
.success_message::after {
    content: "قيد الإرسال ...";
    background-color: #fff;
    width: 300px;
    height: 80px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    border-radius: 8px;
    align-content: center;
}

/* class full screens */
.Full_Screen_all_numbers,
.Full_screen_add_numbers,
.Full_screen_files{
    background-color: rgba(8, 8, 8, 0.7);
    position: fixed;
    top: 0; 
    left: 0;
    z-index: 3;
    width: 100%; 
    height: 100%;
    display: none;
}
.Full_screen_add_numbers{
    /* display: block; */
    text-align: center;
}
.container_all_numbers,
.container_add_numbers,
.container_files{
    background-color: #fff;
    width: 700px; 
    height: 500px;
    margin: auto; 
    margin-top: 50px;
    border-radius: 12px;
    padding-top: 25px;
}
.close_fs{
    color: #fff;
    position: absolute;
    left: 30px; 
    top: 30px;
    font-size: 20px;
    cursor: pointer;
}
.container_all_numbers .top{
    /* background-color: greenyellow; */
    width: 600px;
    margin: auto; 
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}
.container_all_numbers .top .search-box {
    position: relative;
}
.container_all_numbers .top input{
    height: 32px;
    border: 1px solid #aaa;
    border-radius: 5px;
    font-size: 12px;
    padding: 0 30px;
    direction: rtl;
    outline: none;
    width: 180px;
}
.container_all_numbers .top input:focus{
    border-color: var(--blue);
}
.container_all_numbers .top input:focus ~ i{
    color: var(--blue);
}
.container_all_numbers .top i{
    position: absolute;
    color: #aaa;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
}
.container_all_numbers ol.body{
    list-style: none;
    width: 600px; max-height: 390px;
    margin: auto; margin-top: 30px;
    padding: 0;
    display: grid; 
    grid-template-columns:  repeat(4, auto);
    gap: 12px;    
    justify-content: right;
    overflow-y: auto;
    padding: 12px 30px;
    direction: ltr;
}
.container_all_numbers ol.body li{
    background-color: var(--blue);
    color: #fff;
    width: fit-content;
    height: fit-content; 
    font-size: 12px;
    border-radius: 4px;
    padding: 0 10px;
}
.container_all_numbers ol.body li i{
    height: 1cap;
    cursor: pointer;
    background-color: red;
    height: 16px; line-height: 16px; width: 16px;
    text-align: center;
    border-radius: 3px;
    margin-left: 4px;background-color: red;
    font-size: 12px;
    text-align: center;
    margin-left: 4px; margin-top: 4px;
    border-radius: 3px;
    cursor: pointer;
}
.container_add_numbers textarea{
    min-width: 570px; max-width: 570px;
    min-height: 300px; max-height: 300px;
    margin-top: 20px;
    border-radius: 6px;
    border: 1px solid gray;
    direction: rtl;
    padding: 20px 15px;
    font-size: 14px;
}
.container_add_numbers button{
    width: 604px;
    border: none;
    background-color: var(--green);
    height: fit-content;
    font-size: 12px;
    margin-top: 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: scale .3s;
    padding: 6px 0;
}
.container_add_numbers button:hover{
    scale: 1.02;
}
/* profile */
.container_profile{
    width: 800px; 
    margin: auto;
    padding-top: 40px;
    transform: translateX(-50px);
}
.container_profile .profile-box {
    background-color: #fff;
    box-shadow: 2px 2px 4px 4px #ddd;
    border-radius: 12px;
    margin-top: 20px;
    padding-bottom: 100px;
    margin-bottom: 100px;
    overflow: hidden;
}
.container_profile .profile-box .block-div {
    position: absolute;
    color: var(--blue);
    top: 240px;
    right: 6%;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    opacity: .6;
}
.container_profile .profile-box .block-div:hover {
    opacity: .9;
}
.container_profile .profile-box .statistics-icon {
    position: absolute;
    color: var(--blue);
    top: 240px;
    left: 6%;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    opacity: .6;
}
.container_profile .profile-box .statistics-icon:hover {
    opacity: .9;
}
.container_profile .cover{
    background-color: rgba(30, 144, 255, .2);
    width: 100%; height: 160px;
    display: flex; justify-content: center;
    position: relative;
}
.container_profile .cover img{
    border-radius: 50%;
    width: 120px; height: 120px;
    margin-top: 100px;
    border: 2px solid var(--blue);
    opacity: .8;
}
.container_profile .cover .update{
    background-color: #fff;
    width: 124px; height: 124px;
    text-align: center;
    align-content: center;
    border-radius: 50%;
    font-size: 22px; color: #eee;
    position: absolute;
    transform: translateX(-124px);
    margin: auto; top: 100px;
    cursor: pointer;
    visibility: hidden;
}
.container_profile .name{
    margin-top: 80px;
    display: flex;justify-content: center;
}
.container_profile .name input{
    text-align: center;
    font-size: 18px;
    border: none;
    background-color: transparent;
    border-radius: 4px;
}
.container_profile .data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    gap: 12px;
}
.container_profile .data div {
    width: 100%;
    text-align: center;
}
.container_profile .data input{
    width: 120px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    text-align: center;
    padding: 2px;
    background-color: #fff;
    color: #aaa;
    font-weight: normal;
}
.container_profile .data div:nth-of-type(2) {
    grid-column: span 2;
} 
.container_profile .data div:nth-of-type(2) input {
    width: 260px;
}

.container_files .top{
    /* background-color: red; */
    display: flex;
    justify-content: space-around;
    direction: rtl;
}
.container_files .top p{
    margin: 0;
}
.container_files .top form p label{
    color: var(--blue);
    cursor: pointer;
}
.container_files .body {
    /* background-color: red; */
    width: 450px; height: 400px;
    padding: 12px 0; 
    padding-left: 40px;
    margin: auto;
    margin-top: 30px;
    direction: rtl;
    display: grid; grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 40px ;
    overflow: auto;
}
.container_files .body .file{
    height: fit-content; width: 200px; 
    border: 1px gray solid;
    border-radius: 6px;
}
.container_files .body .file .file_show{
    /* background-color: red; */
    width: 200; height: 250px;
    margin-top: -20px; padding-top: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;  
    align-items: center;
}
.container_files .body .file .file_show img,
.container_files .body .file .file_show video{
    width: 100%; 
    max-width: 100%;
    max-height: 100%;  
    transform: translateY(-5px);
}
.container_files .body .file i.fa-xmark{
    background-color: #f22; color: #eee;
    width: 20px; height: 20px; line-height: 20px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    top: -8px;
    margin-right: 188px;
    cursor: pointer;
    display: block;
    visibility: hidden;
}

/* numbers page */
.numbers-container {
    width: 600px;
    margin: auto;
    padding: 80px 0;
}
.numbers-container .top {
    display: flex;
    justify-content: space-between;
    direction: rtl;
}
.numbers-container .top .left i{
    width: 40px;
    height: 40px;
    align-content: center;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}
.numbers-container .top .left::selection{
    background-color: transparent;
}
.numbers-container .top .left i:hover{
    opacity: .7;
}
.numbers-container .fa-filter {
    background-color: transparent;
    color: #555;
}
.numbers-container .fa-filter.active {
    background-color: white;
}
.numbers-container .fa-user-xmark {
    background-color: rgba(0, 0, 0, .15);
    color: #555;
}
.numbers-container .fa-phone {
    background-color: rgb(57, 235, 57);
    color: #fff;
}
.numbers-container .fa-copy {
    background-color: var(--blue);
    color: #fff;
}
.numbers-container .filter {
    height: 60px;
    display: none;
    background-color: #fff;
    margin-top: 20px;
    text-align: center;
    align-content: center;
}
.numbers-container .filter.active {
    display: block;
}
.numbers-container .filter input {
    height: 35px;
    border-radius: 5px;
    border: 1px solid #bbb;
    width: 120px;
    outline: none;
    padding: 0 12px;
}
.numbers-container .filter input:focus {
    border-color: var(--blue);
}
.numbers-container ol.body {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: left;
    gap: 20px;
    padding: 0;
}
.numbers-container ol.body li {
    border: 1px solid var(--blue);
    background-color: whitesmoke;
    border-radius: 5px;
    width: 120px;
    padding: 0 30px 0 15px;
    color: #222;
    text-align: left;
    position: relative;
    font-size: 15px;
}
.numbers-container ol.body li i{
    position: absolute;
    color: #f88;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    font-size: 20px;
}
.numbers-container ol.body li i:hover{
    color: #f55;
}

/* full screen */
.full_screen {
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: none;
}
.full_screen .statistics-box,
.full_screen .copy-box,
.full_screen .block-box {
    background-color: #fff;
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    border-radius: 8px;
    direction: rtl;
    display: none;
}

.full_screen .statistics-box h4 {
    color: var(--blue);
}
.full_screen .statistics-box ol {
    list-style: none;
    padding: 0;
}
.full_screen .statistics-box li {
    height: 40px;
    font-size: 12px;
    color: #444;
}

.full_screen .copy-box .head i {
    color: var(--blue);
}
.full_screen .copy-box .body,
.full_screen .block-box .body {
    height: 350px;
    margin-top: 20px;
    overflow: auto;
}
.full_screen .copy-box .body p,
.full_screen .block-box .body p {
    height: 45px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.full_screen .copy-box .body p:nth-child(odd) {
    background-color: rgba(191, 231, 247, 0.63);
}
.full_screen .block-box .body p:nth-child(odd) {
    background-color: rgba(255, 0, 0, .15);
}
.full_screen .copy-box .body p i.fa-paste {
    color: #555;
    cursor: pointer;
    font-size: 18px;
}
.full_screen .copy-box .body p i.fa-check {
    color: rgb(22, 197, 22);
    cursor: pointer;
    font-size: 18px;
}
.full_screen .copy-box .body p i.fa-paste:hover {
    color: #444;
}
.full_screen .block-box .body p span{
    direction: ltr;
}
.full_screen .block-box .body p button{
    border: none;
    cursor: pointer;
    background-color: var(--blue);
    color: #fff;
}
.full_screen .block-box .body p button.block{
    background-color: #f33;
}

/* setting api container */
.setting-api-container{
    width: 500px;
    /* background-color: red; */
    margin: auto;
    transform: translateX(-50px);
    padding-top: 60px;
    padding-right: 6px;
    direction: ltr;
}
.setting-api-container .head{
    /* background-color: red; */
    text-align: left;
    margin-bottom: 40px;
}
.setting-api-container .head div{
    border-bottom: 3px solid var(--green);
    cursor: pointer;
    width: fit-content;
}

.setting-api-container input{
    width: 460px;
    border-radius: 6px;
    border: 1px solid gray;
    margin-bottom: 12px;
    height: 40px;
    padding: 0 20px;
}
.setting-api-container input[type='submit']{
    background-color: var(--green);
    color: #fff;
    width: 504px;
    border: none;
    cursor: pointer;
}



/* Sign In Style */
.sign_in_container{
    width: 600px; 
    height: 100vh;
    /* background-color: #f00; */
    margin: auto;
    transform: translateX(-50px);
    text-align: center;
}
.sign_in_container .top{
    color: var(--blue);
    padding-top: 50px;
    font-weight: 600;
    font-size: 32px;
}
.sign_in_container .top_welcome{
    color: #222;
    margin-top: -4px;
    font-size: 14px;
    line-height: 1.6;
}
.sign_in_container form{
    display: flex;
    flex-direction: column;
    width: 500px;
    margin: auto;
    gap: 20px;
    margin-top: 40px;
    direction: rtl;
    position: relative;
}
.sign_in_container form input{
    border-radius: 6px;
    border: 1px solid gray;
    height: 35px;
    padding: 0 15px;
}
.sign_in_container form .validation{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 5;
}
.sign_in_container form .validation .remember{
    display: flex;
    height: 32px; 
    line-height: 32px;
}
.sign_in_container form .validation .remember input{
    cursor: pointer;
    height: fit-content;
    margin-top: 10px;
}
.sign_in_container form .validation .remember label{
    cursor: pointer;
    padding-right: 6px;
}
.sign_in_container form .validation .forget {
    color: var(--blue);
    cursor: pointer;
}
.sign_in_container button{
    background-color: var(--blue);
    border: none;
    padding: 6px 0;
    color: #fff;
    border-radius: 6px;
    margin-top: -10px;
    cursor: pointer;
}
.sign_in_container .or{
    /* background: RED; */
    width: 500px;
    margin: auto;
    margin-top: 0px;
    height: 30px;
}
.sign_in_container .or hr{
    position: absolute;
    z-index: 0;
    background-color: #888;
    width: 497px;
    margin-top: 14px;
    padding: 0px;
    border: none;
    height: 1px;
}
.sign_in_container .or p{
    background-color: var(--white);
    line-height: 30px;
    width: 80px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.sign_in_container button.sign_up, 
.sign_in_container button.sign_in{
    width: 300px;
    margin-top: 20px;
    background-color: #fff;
    color: var(--blue);
    border: 1px solid var(--blue);
}
.sign_in_container .steps{
    /* background-color: red; */
    display: flex;
    width: 300px;
    margin: auto;
    margin-top: 20px;
    direction: rtl;
}
.sign_in_container .steps hr{
    width: 80px;
    border: none;
    background: #ccc;
    height: 4px;
    border-radius: 50px;
}
.sign_in_container .steps hr:nth-child(1){
    background-color: var(--blue);
}
.sign_in_container .form_section_1, 
.sign_in_container .form_section_2, 
.sign_in_container .form_section_3{
    display: flex; 
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
    overflow: hidden;
}
.password_param{
    width: 42px; 
    height: 38px;
    align-content: end;
    position: absolute;
    left: 0;
}
.password_param i{
    color: var(--blue);
    font-size: 22px;
    cursor: pointer;
}
.form_section_1 {
    position: relative;
}
.form_section_1 .password_param {
    bottom: 0;
}
@supports (-moz-appearance: none) {
    .password_param i{
        margin-left: -10px;
    }
}
.password_param i:nth-child(2){
    display: none;
}
.sign_in_container .form_section_3 img{
    width: 200px; height: 200px;
    background-color: white;
    margin: auto;
    border: 4px solid var(--blue);
}
.sign_in_container .form_section_3 .import_photo{
    background-color: var(--blue); color: #fff;
    height: 30px; line-height: 30px;
    opacity: .8;
    width: 200px;
    margin-right: 150px;
    margin-top: 174px;
    position: absolute;
    cursor: pointer;
    /* visibility: hidden; */
    /* opacity: 0; */
    transition: opacity .5s, visibility .5s;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
}
@-moz-document url-prefix() {
    /* Firefox specific CSS */
    .sign_in_container .form_section_3 .import_photo{
        margin-left: -150px;
    }
}


/* mobile size */
.login_navbar{
    display: none;
}
.bottom_bar{
    display: none;
    direction: rtl;
    z-index: 1;
}
.bottom_bar div:last-child i{
    transform: rotate(180deg);
}
@media screen and (max-width:950px) {
    .sign_in_container{
        height: 100%;
        padding-bottom: 40px;
        transform: none !important;
        padding-top: 80px;
    }
    .chart_container {
        min-width: 70vw;
    }
    /* container */
    .container {
        transform: unset;
    }
    /* numbers */
    .numbers-container {
        width: 80%;
        padding-top: 120px;
    }
    .numbers-container ol.body {
        grid-template-columns: repeat(3, auto);
    }
}
@media screen and (max-width:650px) {
    .login_navbar{
        height: 70px;
    }
    .login_navbar .logo{
        margin-left: 0;
        height: 50px;
    }
    .login_navbar .logo img{
        height: 50px;
    }
    .login_navbar .logo svg{
        height: 50px;
    }
    .login_navbar .langs{
        margin-right: 0;
    }
    .login_navbar .langs .en, 
    .login_navbar .langs .ar{
        height: 30px; width: 40px;
    }
    .login_navbar .langs img{
        width: 25px;
    }

    .sign_in_container .top{
        font-size: 24px;
    }
    .sign_in_container input{
        width: 350px;
        margin: auto;
        font-size: 13px;
    }
    .password_param {
        margin-left: 390px;
    }
    .sign_in_container form .validation{
        width: 350px;
        margin: auto;
        font-size: 14px;
    }
    .sign_in_container form .validation .remember{
        display: flex;
        line-height: 30px;
    }
    .sign_in_container form .validation .remember input{
        width: 20px;
        margin-top: 7px;
    }
    .sign_in_container form .validation .remember label{
        width: fit-content;
    }
    .sign_in_container form .validation .forget{
        line-height: 30px;
    }
    .sign_in_container button{
        width: 380px;
        margin: auto;
    }
    .sign_in_container .or{
        width: 380px;
    }
    .sign_in_container .or hr{
        width: 380px;
    }
    .sign_in_container .or p{
        width: 60px;
    }
    .sign_in_container button.sign_up, .sign_in_container button.sign_in{
        width: 200px;
        font-size: 12px;
    }
}
@media screen and (max-width:600px) {
    .login_navbar .logo{
        margin-right: 30px;
    }
    .login_navbar .langs{
        margin-left: 50px;
    }
    .sign_in_container{
        width: fit-content;
    }
    /* numbers */
    .numbers-container ol.body {
        grid-template-columns: repeat(2, auto);
        justify-content: space-evenly;
    }
}
@media screen and (max-width:500px) {
    .login_navbar .logo{
        height: 40px;
        /* background-color: red; */
        width: fit-content;
        margin-top: 15px;
        margin-right: 40px;
    }
    .login_navbar .logo svg, 
    .login_navbar .logo img{
        height: 40px;
    }
    .sign_in_container{
        /* background-color: red; */
        width: 100%;
    }
    .sign_in_container form{
        width: fit-content;
    }
    .sign_in_container .top{
        width: fit-content;
        margin: auto;
    }
    .sign_in_container .top_welcome{
        width: fit-content;
        margin: auto;
        margin-top: 4px;
    }
    .sign_in_container input{
        width: 300px;
    }
    .password_param{
        margin-left: 290px;
    }
    .sign_in_container form .validation{
        width: 300px;
    }
    .sign_in_container button{
        width: 330px;
    }
    .sign_in_container .or{
        width: 330px;
    }
    .sign_in_container .or hr{
        width: 330px;
    }
}
@media screen and (max-width:450px) {
    .login_navbar .logo{
        margin-right: 30px;
    }
    .login_navbar .langs{
        margin-left: 30px;
    }
    .sign_in_container input{
        width: 250px;
    }
    .password_param{
        margin-left: 240px;
    }
    .sign_in_container form .validation{
        width: 270px;
        font-size: 13px;
    }
    .sign_in_container form .validation .remember{
        width: 100px;
    }
    .sign_in_container button{
        width: 280px;
    }
    .sign_in_container .or{
        width: 270px;
    }
    .sign_in_container .or hr{
        width: 270px;
    }
    .error_message{
        width: 80%;
    }
    /* numbers */
    .numbers-container ol.body {
        grid-template-columns: repeat(1, auto);
    }
}

/* admin pages */
@media screen and (max-width:1150px) {
    #menu,
    .side_bar{
        display: none;
    }
    .login_navbar{
        display: inline;
        background-color: var(--blue);
        height: 80px;
        width: 100vw;
        margin: auto;
        z-index: 2;
        position: absolute;
        left: 0;
        display: flex;
        justify-content: space-between;
        direction: rtl;
    }
    .login_navbar .logo{
        height: 60px; width: 180px;
        display: flex; gap: 20px;
        margin: 10px 80px; 
        direction: ltr;
        cursor: pointer;
    }
    .login_navbar .logo img{
        height: 60px;
    }
    .login_navbar .logo svg{
        color: #fff;
        height: 60px;
    }
    .login_navbar .langs{
        margin: 20px 80px;
    }
    .login_navbar .langs .en, 
    .login_navbar .langs .ar{
        background-color: rgba(255, 255, 255, 0.8);
        width: 50px; 
        height: 40px; line-height: 40px;
        display: flex;
        direction: ltr;
        justify-content: space-between;
        border-radius: 6px;
        cursor: pointer;
    }
    .login_navbar .langs img{
        width: 30px; height: fit-content; 
        margin: auto;
    }
    /* navBar */
    .navbar {
        padding-top: 120px;
        transform: unset;
    }
    .container, 
    .navbar{
        width: 70vw;
    }
    .search_alert{
        right: 40px;
        top: 160px;
    }
    .notification_alert{
        left: 40px;
        top: 160px;
    }
    .container{
        gap: 2vw;
        transform: none;
    }
    .container .card{
        width: 30vw;
        
    }
    .container .card:nth-child(3){
        width: 62vw;
    }
    .bottom_bar{
        height: 80px; 
        width: 100vw;
        background-color: #fff;
        box-shadow: 2px 2px 2px 8px #eee;
        position: fixed;
        bottom: 0;
        left: 0;
        text-align: center;
        display: flex;
        justify-content: space-around;
    }
    .bottom_bar div{
        width: calc(70vw/5);
        height: fit-content;
        height: 30px;
        margin-top: 15px;
        cursor: pointer;
        color: #222;
    }
    .bottom_bar div i{
        font-size: 22px;
        margin: 0;
    }
    .bottom_bar div p{
        font-size: 12px;
        margin: 0;
    }
    .bottom_bar div.active{
        color: var(--blue);
    }
    .bottom_bar div:last-child{
        color: #f22;
    }
    /* setting */
    .setting-api-container{
        transform: translateX(0);
        transform: translateY(70px);
    }
}
@media screen and (max-width:750px) {
    .navbar{
        width: 92vw;
    }
    .search_alert{
        right: 30px;

    }
    .navbar input.search {
        width: 30vw;
        margin-right: 4vw;
    }
    .navbar i.search-i{
        margin-right: 5.7vw;
    }
    .navbar .stack{
        margin-left: 4vw;
    }
    .notification_alert{
        left: 5vw;
    }
    .container{
        width: 90vw;
    }
    .container .card{
        width: 40vw;
        margin-left: 4vw;
    }
    .container .card:nth-child(3){
        width: 82vw;
    }
    .bottom_bar div{
        width: calc(90vw/5);
    }
}
@media screen and (max-width: 650px) {
    .setting-api-container{
        width: 80vw;
    }
    .setting-api-container input{
        width: 70vw;
    }
    .setting-api-container input[type="submit"] {
        width: calc(70vw + 40px);
        margin: auto;
    }
}
@media screen and (max-width:550px) {
    .navbar {
        width: 99vw;
    }
    .navbar .stack .flag img, 
    .navbar .stack .notification{
        height: 20px;
        margin-top: 5px;
    }
    .navbar .stack img{
        height: 25px; width: 25px;
        margin: auto;
    }
    .notification_alert .top{
        height: 24px; line-height: 24px;
    }
    .notification_alert .top .title{
        font-size: 14px;
        font-weight: 400;
    }
    .notification_alert .body .notification_div{
        font-size: 14px;
    }
    .notification_alert .body .notification_div .time{
        font-size: 12px;
        margin-top: 2px; margin-bottom: 6px;
    }
    .container .card .title{
        color: #888;
        font-size: 12px;
    }
    .bottom_bar div{
        width: 20%;
    }
}

/* user pages */
@media screen and (max-width:1150px) {
    .container_profile{
        transform: translateX(0);
        width: 500px;
    }
}


/* class */
@media screen and (max-width:1150px) {
    .container_class{
        transform: translateX(0);
        width: 100%;
        padding-top: 20px;
    }
    .error_message{
        right: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .container_class form {
        margin-bottom: 100px;
        padding-top: 90px;
    }
}
@media screen and (max-width:950px) {
    .container_all_numbers, 
    .container_add_numbers, 
    .container_files{
        width: 80vw;
        margin-top: 80px;
    }
    .container_all_numbers .top{
        width: 75vw;
    }
    .container_all_numbers ol.body{
        width: 75vw;
        padding: 0;
    }
}
@media screen and (max-width:850px) {
    .container_class{
        width: 100vw;
    }
    .container_all_numbers ol.body{
        grid-template-columns: auto auto auto;
    }
    .container_add_numbers textarea{
        min-width: 65vw;
        max-width: 65vw;
    }
    .container_add_numbers button{
        width: calc(65vw + 30px);
    }
}
@media screen and (max-width:750px) {
    .container_class form{
        width: 80vw;
    }
    .container_class form textarea {
        min-width: 74vw;
        max-width: 74vw;
        margin: auto;
    }
    .container_class form .upload_container{
        width: 80vw;
        margin: auto;
    }
    .container_class form .numbers{
        width: 80vw;
        margin: auto;
        margin-top: 50px;
    }
    .container_class .numbers ol.numbers_list{
        width: 80vw;
        gap: 4px;
        justify-content: space-around;    
    }
    .container_class .numbers .show_all_numbers hr{
        width: 80vw;
    }
}
@media screen and (max-width:650px) {
    .container_class .numbers ol.numbers_list{
        grid-template-columns: auto auto auto;
    }
    .container_all_numbers ol.body{
        grid-template-columns: auto auto ;
    }
    .container_files .body{
        grid-template-columns: auto;
        justify-content: center;
        width: 70vw;
        padding-left: 0; padding-right: 0;
    }
}
@media screen and (max-width:500px) {
    .container_class .numbers ol.numbers_list{
        grid-template-columns: auto auto;
    }
    /* profile */
    .container_profile {
        width: 90vw;
    }
    .container_profile .cover img {
        width: 60px;
        height: 60px;
        margin-top: 130px;
    }
}