body {
    position: relative;
    overflow-x: hidden;
    background-color: #fafafa;
    font-family: 'Cairo', sans-serif;
}
body,
html { height: 100%;}
.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-right: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    right: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    color: #ffffff;
      background-color: #172673;
      background-image: url("../images/Group 358.png");
      background-position: center bottom;
      background-repeat: no-repeat;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;

    }

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
    padding-top: 20px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.navbar {
  padding: 0;
  right: 0 !important;
  left: unset !important;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
    direction: rtl;
  }

.sidebar-nav li {
    position: relative; 
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}
.sidebar-nav li:hover{
  background: skyblue !important;
  border-radius: 10px;
  margin-left: 5px;
  margin-right: 5px;
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #333;
    text-decoration: none;
    background-color: transparent;
}
.sidebar-header {
    text-align: center;
    font-size: 20px;
    position: relative;
    width: 100%;
    display: inline-block;
}
.sidebar-brand {
    height: 65px;
    position: relative;
    background:#0d1a56;
    padding-top: 1.25em;
}
.sidebar-brand a {
    color: #ddd;
}
.sidebar-brand a:hover {
    color: #fff;
    text-decoration: none;
}
.dropdown-header {
    text-align: center;
    font-size: 1em;
    color: #ddd;
    background:#0d1a56;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0 20px 0 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #0d1a56;
    box-shadow: none;
    text-align: right;
}

.dropdown-menu.show {
    top: 0;
}
/*Fontawesome icons*/
.nav.sidebar-nav li a::before {
    font-family: fontawesome;
    content: "\f067";
    vertical-align: baseline;
    display: inline-block;
    padding-left: 15px;
}
a[href*="#pictures"]::before {
  content: "\f03e" !important;
}
a[href*="#videos"]::before {
  content: "\f03d" !important;
}
a[href*="#services"]::before {
  content: "\f013" !important;
}
/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  position: fixed;
  top: 20px;  
  right: 25px;
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
  transition: all 0.5s;
}
.hamburger.is-open {
  right: 16%;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #0d1a56;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #0d1a56;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.extra-clients{
  text-align: center;
  margin: 50px auto;
  direction: rtl;
}
.accepted-clients, 
.rejected-clients{
  background-color:  rgb(13, 83, 13);
  color: #fff;
  font-size: 18px;
  margin: 15px 0;
}
.rejected-clients{
  background-color:  rgb(78, 29, 25);
}
.accepted-clients:hover, 
.rejected-clients:hover{
    color : #fff;
}
#regForm {
  background-color: transparent;
  margin: 100px auto;
  width: 100%;
  min-width: 300px;
  direction: rtl;
}

h1 {
  text-align: center;  
  direction: rtl;
  font-size: 40px;
  font-weight: 700;
}
h1 span{
  color: #005D99;
}
.header-container{
    display: flex;
    justify-content: flex-end;
}
.header-container img{
    width: 25%;
}
.dashboard-container{
    background-color: #D9D9D9;
    padding: 20px;
    margin-top: 35px;
}
.form-group {
    text-align: center;
    width: 100%;
    margin: auto;
}
.form-group button{
    margin-top: 12%;
    width: 100%;
    padding: 10px;
    color: #ffffff;
    border-radius: 35px;
}
.form-group button.btn-search{
    background-color: #172673;
}
.form-group button.btn-reset{
    background-color: #214737;
}
input {
  width: 100%;
  height: 45px !important;
  font-size: 17px;
  border: none;
  border-radius: 32px !important;
  border-bottom: 2px solid #0d1a56;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: block;
  width: 90%;
}
.contact-form .form-field {
  position: relative;
  margin: 32px 0;
  text-align: center;
}
.contact-form .form-control{
  position: relative;
  margin: auto;
  direction: rtl;
}
option {
left: 20px;
bottom: 11px;
font-size: 18px;
line-height: 26px;
font-weight: bold;
color: #0d1a56;
cursor: text;
}
select{
margin-top: 40px;
color:#000;
height: 45px !important;
border-radius: 32px !important;
padding: 0.5rem 1rem;
text-shadow:0 1px 0 rgba(0,0,0,0.4);
}
option:not(:checked) { 
background-color: transparent; 
}
.newform-control{
    margin : 0;
    border : 1px solid #fff;
    border-radius : 5px;
}
label{
    float: right;
    padding-right: 15px;
}
.contact-form .label {
  position: absolute;
  /* left: 20px; */
  right: 15px;
  bottom: 45px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #0d1a56;
  cursor: text;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, 
  -webkit-transform .2s ease-in-out;
}
.contact-form .labelcheck {
  position: absolute;
  right: 0;
  bottom: 48px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #0d1a56;
  cursor: text;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, 
  -webkit-transform .2s ease-in-out;
}
.contact-form .input-text {
  display: block;
  width: 100%;
  height: 46px;
  border: 1px solid;
  border-radius: 5px;
  border-color: #0d1a56;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}
.contact-form .date{
    display: inline;
    width: 100%;
    height: 46px;
    border: 1px solid;
    border-color: #000;
    border-radius: 5px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
.contact-form .input-text:focus {
  outline: none;
}
.contact-form .input-ad{
  height: 106px;
  border: 1px solid #0d1a56;
}
.contact-form .input-ad-label{
  bottom: 100px;
  max-width: 150px;
  white-space:wrap
}
.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.contact-form .submit-btn {
  display: inline-block;
  background-color: #000;
   background-image: linear-gradient(125deg,#0d1a56 ,#0d1a56);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  padding: 8px 16px;
  border: none;
  width:150px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
}
/* @media only screen and (max-width:  990px) {
    .contact-form .label {
        right: -15px;
    }
} */


/* ************************* */
.table-responsive{
  padding-bottom: 100px;
  direction : rtl;
}
table{
  padding: 0 !important;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 10px;
}
th, table, td{
    text-align : center;
}
#download-container{
  text-align: center;
  margin: 50px auto;
}
#download{
  text-decoration: none;
  color: #fff;
  background-color: #0d1a56;
  border-radius: 50px;
}
#pages{
    padding: 25px 20px 0px;
    border-top: dotted 1px #CCC;
    text-align: center;
  }
  
  #pagination{
      padding: 15px;
    }
  #pagination li{
      margin-left: 10px;
  }
  #pagination .active a{
    color: #fff;
    text-decoration: none;
  }
  #pagination li a{
      text-decoration: none;
      color: #425aa8;
  }
    #soft-pages{
    padding: 25px 20px 0px;
    border-top: dotted 1px #CCC;
    text-align: center;
    }
  #soft-pagination{
    padding: 20px;
  }
  #soft-pagination li{
    margin-left: 10px;
  }
  @media only screen and (min-width:  1024px){
    #soft-pagination{
      padding: 20px 500px;
    }
  }
  @media only screen and (max-width:  850px) and ( orientation: portrait){
    #soft-pagination{
      padding: 20px 115px;
    }
  }
  @media only screen and (max-width:  850px) and ( orientation: landscape){
    #soft-pagination{
      padding: 20px 200px;
    }
  }
  #soft-pagination .active a{
  color: #fff;
  text-decoration: none;
  }
  #soft-pagination li a{
    text-decoration: none;
    color: #425aa8;
  }
  #contact h4{
    text-align: right;
    margin: 50px 0; 
    font-size: 35px;
    height: auto;
    background: -moz-linear-gradient(left,#21a9af ,#172a74 100%) !important;
      background: -webkit-linear-gradient(left,#21a9af ,#172a74 100%) !important;
      background: linear-gradient(to right,#21a9af ,#172a74  100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text im !important;
      -webkit-text-fill-color: transparent !important;
  }
  #contact {
    text-align: right;
  }
  #contact ul{
    list-style: none;
    margin-bottom: 50px;
  }
  #contact ul li{
    display: inline-block;
    background-color: #172a74;
    border-radius: 50px;
    margin: 0 10px;
  }
  #contact .phone-number{
    font-size: 14px;
    color: #fff;
  }
  #contact ul li a{
    text-decoration: none;
   color: #fff;
  }
  @media only screen and (max-width:  990px) and ( orientation: portrait){
    #contact .phone-number{
      font-size: 10px;
    }
    #contact ul li{
      margin: 0 5px;
    }
  }



  .uf_logo{
    width: 200px;
    height: auto;
    padding-top: 25%;
  }
  #username{
    direction: rtl; 
    text-align: center;
    margin: 50px auto;
    color: #ffffff;
  }
  #table-date{
    text-align: center;
    margin-bottom: 50px;
   color: #fff;
   background: #0d1a56;
   background: -moz-linear-gradient(left,#0d1a56  0%,#0d1a56 100%) !important;
   background: -webkit-linear-gradient(left,#0d1a56  0%,#0d1a56 100%) !important;
   background: linear-gradient(to right,#0d1a56  0%,#0d1a56  100%) !important;
   -webkit-background-clip: text !important;
   background-clip: text !important;;
   -webkit-text-fill-color: transparent !important; 
  }
  th{
    font-weight: 700;
    font-size: 14px;
    min-width: 120px;
    text-align: right;
    background-color: #f5f5f5;
    border-width: 3px 1px 1px !important;
    border-color: #ccc !important;
  }
  th:nth-child(1){
    min-width: 100px;
    max-width: 100px;
  }
  td .btn{
    padding: 0.3rem 1.5rem;
    font-weight: 400;
    font-size: 14px;
  }
  .logo-col{
    background-color: #fff;
  }
  .logo{
    width: 200px;
    height: auto;
    padding-top: 25%;
  }
  .dashboard_logo{
    width: 180px;
    height: auto;
    position: absolute;
    top: 15px;
    left: 50px;
  }
  .table td, .table th{
    vertical-align: middle;
  }

  .table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
    background-color: #fff;
 }

 .pagination {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.pagination a {
  margin: 0;
  padding: 8px 16px;
  text-decoration: none;
  color: black;
  border: 1px solid #ddd;
}
.pagination a.active {
  background-color: #0d1a56;
  color: white;
  border: 1px solid #0d1a56;
}
/*
.pagination a:hover:not(.active) {
  background-color: #ddd;
}
*/

.page-item.active{
    background-color: #0d1a56 !important;
}