 * {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;

 }

 a {
     text-decoration: none;
     transition: all .4s ease-in-out;
     color: inherit;
 }

 a,
 button,
 input[type="button"] {
     cursor: pointer;
     transition: all .5s ease-in-out;
 }

 a:focus,
 a:hover {
     text-decoration: none;
     color: inherit;
 }

 button {
     background: transparent;
     border: none;
 }

 button:focus {
     outline: none
 }

 .list-inline-item:not(:last-child),
 ul {
     margin-right: 0;
 }

 ul {
     padding-left: 0;
     padding-right: 0;
     transition: all .4s ease-in-out;
     margin: 0;
 }

 ul li {
     list-style-type: none
 }

 :focus {
     outline: none;
 }

 .text-center {
     text-align: center;
 }

 .text-right {
     text-align: right
 }

 .text-left {
     text-align: left
 }

 /*
 .row {
     margin-left: 0;
     margin-right: 0;
 }
*/
 .padd-0 {
     padding-left: 0;
     padding-right: 0
 }

 .padd-5 {
     padding-left: 5px;
     padding-right: 5px
 }

 .sec-marg {
     margin-top: 40px;
     margin-bottom: 40px
 }

 .sec-padd {
     padding-top: 50px;
     padding-bottom: 50px;
 }

 .pl-10 {
     padding-left: 10px;
 }

 .pr-10 {
     padding-right: 10px;
 }

 .pt-10 {
     padding-top: 10px;
 }

 .pb-10 {
     padding-bottom: 10px;
 }

 .pl-20 {
     padding-left: 20px;
 }

 .pr-20 {
     padding-right: 20px;
 }

 .pt-20 {
     padding-top: 20px;
 }

 .pb-20 {
     padding-bottom: 20px;
 }

 .ml-10 {
     margin-left: 10px;
 }

 .mr-10 {
     margin-right: 10px;
 }

 .mt-10 {
     margin-top: 10px;
 }

 .mb-10 {
     margin-bottom: 10px;
 }

 .ml-20 {
     margin-left: 20px;
 }

 .mr-20 {
     margin-right: 20px;
 }

 .mt-20 {
     margin-top: 20px;
 }

 .mb-20 {
     margin-bottom: 20px;
 }

 .m-20 {
     margin: 20px;
 }

 .p-15 {
     padding: 15px;
 }

 .r-0 {
     border-radius: 0 !important;
 }

 .p-0 {
     padding: 0 !important;
 }

 .f-b {
     font-weight: 600;
 }


 .mx-1 {
     margin-left: .25rem !important;
 }

 :focus {
     box-shadow: none !important;
     border-color: inherit;
 }

 .d-none {
     display: none
 }

 .d-block {
     display: block
 }

 .dropdown-toggle::after {
     display: none
 }

 .dropdown {
     display: inline-block;
 }

 .dropdown-menu {
     float: none;
     text-align: start;
 }

 select.form-control:not([size]):not([multiple]) {
     height: auto;
 }

 input::-webkit-outer-spin-button,
 input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }

 p {
     margin: 0;
 }

 .flex-grow-1 {
     flex-grow: 1
 }

 input[type=checkbox]:not(.form-check-input),
 input[type=radio] {
     position: relative;
     width: 20px;
     height: 20px;
     vertical-align: middle;
     border: none !important;
     outline: none !important;
 }

 input[type=checkbox]:not(.form-check-input):before {
     top: 0;
     left: 0;
     width: 20px;
     height: 20px;
     content: "";
     position: absolute;
     background: var(--main);
     border-radius: 3px;
 }

 input[type=checkbox]:not(.form-check-input)::after {
     background: transparent;
     border: 2px solid #FFFFFF;
     top: 0px;
     left: 7px;
     width: 6px;
     height: 15px;
     content: "";
     position: absolute;
     border-top-color: transparent;
     border-left-color: transparent;
     transform: rotate(0deg) scale(0);
     transition: all 0.2s linear 0s;
 }

 input[type=checkbox]:not(.form-check-input):checked::after {
     transform: rotate(45deg) scale(1);
 }

 input[type=radio]:before {
     top: 0;
     left: 0;
     width: 20px;
     height: 20px;
     border: 2px solid var(--main);
     content: "";
     position: absolute;
     background: #fff;
     border-radius: 50%;
 }

 input[type=radio]:after {
     top: 50%;
     left: 50%;
     width: 12px;
     height: 12px;
     content: "";
     position: absolute;
     transform: translate(-50%, -50%) scale(0);
     background: var(--main);
     border-radius: 50%;
     transition: all 0.2s linear 0s;
 }

 input[type=radio]:checked::after {
     transform: translate(-50%, -50%) scale(1);
 }

 .form-check-input {
     height: 22px;
     width: 45px !important;
 }

 .form-check-input:checked {
     border-color: var(--main);
     background-color: var(--main);
 }

 :root {
     --main: #196AB3;
     --white: #ffffff;
     --gray: #7C7B7B;
 }

 .main-color {
     color: var(--main) !important;
 }

 .bg-main {
     background-color: var(--main) !important;
 }

 .gray-color {
     color: var(--gray) !important;
 }

 .font-11 {
     font-size: 11px;
 }

 .font-18 {
     font-size: 18px;
 }

 .font-20 {
     font-size: 20px;
 }

 .under-line {
     text-decoration: underline !important;
 }

 .overflow-auto {
     overflow: auto;
 }

 .btn-main {
     display: block;
     background: var(--main);
     color: var(--white) !important;
     width: auto;
     max-width: 100%;
     padding: 0;
     border-radius: 6px;
     text-align: center;
     text-shadow: 0 0;
     height: 51px;
     line-height: 51px;
     padding: 0 13px;
     border: 1px solid var(--main);

     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
 }

 .btn-main[disabled] {
     opacity: 0.7;
     pointer-events: none;
 }

 .btn-main-w {
     background: #fff;
     color: var(--main) !important;
     border: 1px solid var(--main)
 }

 .btn-main-R {
     background: crimson;
     border: 1px solid crimson
 }

 .btn-main-Rw {
     background: #fff;
     color: crimson !important;
     border: 1px solid crimson
 }

 .btn-main-G {
     background: #00AD03;
     border: 1px solid #00AD03
 }


 textarea {
     resize: none;
 }

 @font-face {
     font-family: "myFont";
     src: url(../fonts/JF-Flat-regular.ttf);

 }

 .rounded {
     border-radius: 12px !important;
 }

 .po_R {
     position: relative;
 }

 .overflow-hidden {
     overflow: hidden;
 }

 body {
     direction: rtl;
     text-align: right;
     font-family: "myFont";
     word-spacing: 1px;
     background: #F7F7F8;
     color: #1C1C1C;
     font-size: 15px;
     text-shadow: 0 0;
     overflow-x: hidden
 }

 .containerBox_ {
     background: var(--white);
     padding: 20px;
     border-radius: 15px;
     border: 1px solid #F2F2F2;
 }


 .body-content {
     padding: 24px;
     transition: all 0.4s linear 0s;
     margin-inline-start: 304px;
 }

 body.active .body-content {
     margin-inline-start: 0;
 }

 .sidebar {
     position: fixed;
     background: var(--white);
     width: 280px;
     top: 24px;
     right: 24px;
     bottom: 24px;
     border: 1px solid #F2F2F2;
     border-radius: 15px;
     display: flex;
     flex-direction: column;
     gap: 30px;
     transition: all 0.5s ease 0s;
     z-index: 999;
 }

 body.active .sidebar {
    transform: translateX(calc(100% + 24px));
 }

 .sidebar .logo_ {
     padding: 24px 24px 0 24px;
 }

 .colse-sidebar {
     padding: 0;
     width: 35px;
     height: 35px;
     border: 1px solid crimson;
     color: crimson;
     font-size: 17px;
     border-radius: 50%;
     position: absolute;
     left: 5px;
     top: 5px;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     display: none;
 }

 .sidebar .links {
     padding: 0 24px 24px 24px;
     flex-grow: 1;
     overflow: auto;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .sidebar .links .link {
     display: flex;
     align-items: center;
     gap: 6px;
     padding: 12px;
     border-radius: 18px;
     transition: all 0.5s ease 0s;
     text-align: start;
 }

 .sidebar .links .link:hover {
     background-color: #f7f7f7
 }

 .sidebar .links .link.active {
     background-color: var(--main);
     color: var(--white);
 }

 .sidebar .links .link .img_ {
     width: 24px;
     height: 24px;
     position: relative;
     flex-shrink: 0;
 }

 .sidebar .links .link .img_ img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: all 0.5s ease 0s;
 }

 .sidebar .links .link>span {
     flex-grow: 1;
     overflow: hidden;
     white-space: nowrap;
     text-overflow: ellipsis;
 }


 .sidebar .links .link .img_ img:last-child,
 .sidebar .links .link.active .img_ img:first-child {
     transform: scale(0);
 }

 .sidebar .links .link.active .img_ img:last-child {
     transform: scale(1);
 }



 header {
     background-color: var(--white);
     position: sticky;
     top: 15px;
     left: 0;
     width: 100%;
     z-index: 88;
     padding: 18px 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border: 1px solid #F2F2F2;
     border-radius: 15px;
     transition: all 0.3s ease 0s;
     margin-bottom: 20px;
     box-shadow: 0px -50px 5px 5px rgba(251, 251, 251, 0.8);
     gap: 5px;
 }

 .navbar-btn {
     width: 40px;
     height: 40px;
     border: 1px solid var(--main);
     color: var(--main);
     padding: 0;
     border-radius: 12px;
     display: flex;
     justify-content: center;
     align-items: center;
 }


 .lang_btn{
    display: flex;
    align-items: center;
    background-color: #F7F7F8;
    overflow: hidden;
    border-radius: 50px;
 }

  .lang_btn .btn_{
     padding: 8px 15px;
     cursor: pointer;
     transition: all 0.3s ease 0s;
  }

    .lang_btn .btn_.active{
     background-color: var(--main);
     color: var(--white);
  }


 .notification {
     height: 43px;
     width: 43px;
     background-color: #F7F7F8;
     color: var(--main);
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
     position: relative;
 }

 .notification.notif-icon::after {
     content: attr(data-number);
     position: absolute;
     top: -5px;
     right: -5px;
     background-color: crimson;
     color: var(--white);
     width: 20px;
     height: 20px;
     font-size: 10px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-weight: bold;
     border: 2px solid var(--white)
 }


 .item-notification_ .icon_ {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: #F7F7F8;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-shrink: 0;
 }

 .item-notification_ .info_ {
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .nav-pills {
     display: flex;
     align-items: center;
     gap: 10px;
     flex-wrap: nowrap;
     flex-grow: 1;
 }

 .nav-pills>button {
     flex-basis: 190px;
     padding: 13px 15px;
     white-space: nowrap;
     border: 1px solid var(--main) !important;
     color: inherit !important;
 }

 .nav-pills>button.nav-link.active {
     background-color: var(--main);
     color: #ffffff !important;
 }

 .filter_+.select2-container {
     width: 200px !important;
 }


 .box_placard {
     position: relative;
     border: 1px solid #EEE;
     padding: 12px;
     border-radius: 12px;
     background-color: #FFFFFF;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 10px;
     height: 100%;
 }

 .box_placard > a {
    display: block;
    width: 100%;
 }

 .box_placard .img_ {
     width: 100%;
     height: 160px;
     border-radius: 12px;
     overflow: hidden;
     object-fit: cover;
     object-position: center;
 }

 .box_placard a .img_ {
     height: 250px;
 }

 .box_placard .btn_ {
     width: 30px;
     height: 30px;
     position: absolute;
     left: 20px;
     top: 20px;
     border: 1px solid var(--white);
     border-radius: 50%;
     color: var(--white);
     box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2) !important;
     font-size: 12px;
 }

 .btnFilter_ .btn_ {
     background: #EEEEEE;
     padding: 13px 5px;
     flex-basis: 120px;
     border-radius: 6px;
 }

 .btnFilter_ .btn_.active {
     background: var(--main);
     color: #ffffff !important;
 }

 .imgPaner_{
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #EEE;
    margin-bottom: 15px;
 }

  .imgPaner_ > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .item_commit img{
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }



 .modal-dialog.modal-sm {
     max-width: 450px;
 }

 .modal .close {
     width: 30px;
     height: 30px;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 1;
     border-radius: 50%;
     font-size: 32px;
     color: crimson !important;
     text-shadow: none;
     border: 2px solid crimson !important;
     position: absolute;
     top: 1rem;
     left: 1rem;
 }

 .modal-content {
     border: none;
     border-radius: 20px;
 }

 /*--------------------------------*/

 .outer_logins_page {
     display: flex;
 }

 .outer_logins_page>div {
     flex: 1;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .outer_logins_page .paner_login {
     background: var(--main);
     color: #FFF;
     position: sticky;
     top: 0;
     left: 0;
     height: 100%;
     text-align: center;
     flex-direction: column;
     padding: 40px;
     gap: 20px;
 }

 .paner_login .img_ {
     width: 100%;
     flex-grow: 1;
     border-radius: 15px;
     overflow: hidden;
     position: relative;
 }

 .paner_login .img_>img {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .outer_logins_page .form-content {
     flex-basis: 450px;
 }


 .form-group {
     margin-bottom: 15px;
 }

 .form-content .form-group>label:first-child {
     display: inline-block;
     margin-bottom: 6px;
     font-size: 14px;
 }

 .form-control {
     padding: 15px 10px;
     border-radius: 6px;
     background: #FFFFFF;
     font-size: 13px;
     border-color: #EEE;
     text-align: right;
 }

 .inputIcon_ .form-control {
     padding-inline-start: 40px;
 }

 .inputIcon_ .icon_ {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     right: 11px;
 }

 .form-control:focus {
     border-color: var(--main) !important
 }

 textarea.form-control {
     height: 140px
 }

 .icon_fa {
     position: absolute;
     font-size: 18px;
     left: 10px;
     color: #707070;
     top: 50%;
     transform: translateY(-50%)
 }

 .show_pass:after {
     content: "\f06e";
     font-family: "Font Awesome 5 Free";
     cursor: pointer;
 }

 .show_pass.active:after {
     content: "\f070";
     font-family: "Font Awesome 5 Free";
     cursor: pointer;
 }

 .chose_lphone {
     position: absolute;
     top: 50%;
     left: 1px;
     height: calc(100% - 21px);
     transform: translateY(-50%);
     padding: 0 10px;
     border-radius: 0;
     line-height: 31px;
     border: none;
     border-inline-start: 1px solid #EEE;
     z-index: 5;
     background: transparent;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .chose_lphone:after {
     display: none;
 }

 label.error {
     font-size: 13px;
     font-weight: bold;
     margin: 0;
     color: crimson;
 }


 .pinlogin {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .pinlogin .pinlogin-field {
     margin: 0 !important;
     height: 60px;
     flex-grow: 1;
     border-radius: 6px;
     border-color: var(--main);
     font-size: 26px;
     font-family: fantasy;
     padding: 10px;
 }

 /*--------------------------------*/

 .select2-container {
     width: 100% !important;
 }

 .select2-container--default .select2-selection--single .select2-selection__rendered {
     line-height: 51px;
     padding: 0px 10px;
     font-size: 13px;
     color: #495057;
 }

 .select2-container .select2-selection--single {
     height: 51px;
     border-radius: 5px;
     border-color: #EEE;
     background: #FFFFFF;
 }

 .select2-container--default .select2-selection--single .select2-selection__arrow {
     top: 50%;
     transform: translateY(-50%);
     left: 0px;
 }


 .select2-container--default .select2-results__option--highlighted[aria-selected] {
     background-color: var(--main);
 }

 .select2-dropdown {
     border: 1px solid #EEE;
 }

 /*--------------------------------*/

 .uploadImgs_ {
     position: relative;
     width: 100px;
     height: 100px;
     background-color: #EEE;
     overflow: hidden;
     border-radius: 18px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .uploadImgs_>input {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     cursor: pointer;
     font-size: 0;
     transform: scale(1.2);
     opacity: 0;
 }


 .uploadImgs_ .icon_ {
     width: 45px;
     height: 45px;
     background-color: var(--main);
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
 }

 .img-uploaded {
     position: relative;
     width: 100px;
     height: 100px;
     background-color: #EEE;
     border-radius: 18px;
     border: 1px solid #196ab336
 }

 .img-uploaded>img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
    border-radius: 18px;
 }

 .img-uploaded .remove-Imgs {
    position: absolute;
    left: -3px;
    top: -3px;
    padding: 0;
    border: 1px solid crimson;
    color: crimson;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    outline: 3px solid var(--white);
    background-color: var(--white);
 }


 .layer_ {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    transition: all 0.5s ease 0s;
    transform: translateX(-100%);
    cursor: not-allowed;
 }

 /*Extra small devices (portrait phones, less than 576px)*/
 @media (max-width: 575.98px) {
    .filter_+.select2-container{
        width: 100% !important;
    }
    .btn-main{
        width: 100%
    }

    .nav-pills>button{
        flex-basis: 100%
    }


 }

 /*Small devices (landscape phones, less than 768px)*/
 @media (max-width: 767.98px) {

    .w-75 {
        width: 100% !important;
    }

    .outer_logins_page {
        flex-direction: column-reverse;
        height: 100vh;
    }

    .outer_logins_page>div{
        min-height: auto;
        flex: none;
    }

    .outer_logins_page>div:not(.paner_login){
        flex-grow: 1;
    }


    .outer_logins_page .paner_login{
        padding: 20px 10px;
        position: static;
        height: auto;
    }

    .paner_login .img_ {
        display: none;
    }

    .pinlogin {
        gap: 10px;
    }
 }

 /*Medium devices (tablets, less than 992px)*/

 @media (max-width: 991.98px) {
    .colse-sidebar{
        display: flex;
    }

    .sidebar{
       right: 0;
       top: 0;
       bottom: 0;
       border-radius: 0;
       transform: translateX(100%);
    }

    body.active .sidebar{
       transform: translateX(0);
    }

    .body-content{
        margin-inline-start: 0;
        padding: 8px;
    }

    .layer_.active{
        transform: translateX(0);
    }

    header{
        top: 10px;
    }

 }

 /*Large devices (desktops, less than 1200px)*/
 @media (max-width: 1199.98px) {}

 /*============================ start loader================================== */

 .loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 9999999999;
     background: #FFFFFF;
     overflow: hidden;
     display: -webkit-flex;
     display: -moz-flex;
     display: -ms-flex;
     display: -o-flex;
     display: flex;
     -ms-align-items: center;
     align-items: center;
     justify-content: center;
 }

 .loader img {
     position: relative;
     width: 200px;
 }

 /*============================ end loader================================== */
 ::-webkit-scrollbar,
 body::-webkit-scrollbar,
 .scroll::-webkit-scrollbar {
     width: 6px;
     height: 6px;
 }

 ::-webkit-scrollbar-track,
 body::-webkit-scrollbar-track,
 .scroll::-webkit-scrollbar-track {
     box-shadow: inset 0 0 6px #FFFFFF;
     background: #FFFFFF
 }

 ::-webkit-scrollbar-thumb,
 body::-webkit-scrollbar-thumb,
 .scroll::-webkit-scrollbar-thumb {
     background: rgba(0, 0, 0, 0.3);
     border-radius: 20px;
 }

 ::-webkit-scrollbar-thumb:hover,
 body::-webkit-scrollbar-thumb:hover,
 .scroll::-webkit-scrollbar-thumb:hover {
     background: rgba(0, 0, 0, 0.5);
 }