html {
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  direction: rtl;
  font-family: "Cairo",Sans-serif;
}

img {
  max-width: 100%;
}

.spinner {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: #74b9ff;
  top: 0;
  left: 0;
  z-index: 1000;
}

.cube1, .cube2 {
  background-color: white;
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.check_form {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: #696969c0;
  top: 0;
  left: 0;
  z-index: 999;
}

.check_form .add-form {
  background-color: rgba(255, 255, 255, 0.938);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-height: 300px;
  width: 500px;
  max-width: 90%;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, 0.68);
  -webkit-box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, 0.68);
  border-radius: 10px;
}

.check_form .add-form .title {
  font-family: "cairo", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 600;
  padding: 10px;
  font-size: 20px;
  margin-top: 10px;
}

.check_form .add-form .section input {
  direction: ltr;
}

.check_form .add-form .attention {
  font-family: "cairo", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  width: 80%;
  text-align: right;
  font-size: 12px;
  color: #7c0000;
  margin-right: 20px;
  margin-top: 10px;
}

.check_form .add-form .button-div {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  bottom: 10px;
  padding: 20px;
}

@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes sk-cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0px;
  position: fixed;
  /* Stay in place */
  z-index: 8;
  /* Sit on top */
  right: 0;
  top: 0;
  background-color: #fcfcfcf3;
  /* Black w/opacity */
  overflow-x: hidden;
  /* Disable horizontal scroll */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  font-family: "Cairo",Sans-serif;
}

.overlay .closebtn {
  color: black;
  text-decoration: none;
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 40px;
}

.overlay .closebtn:hover {
  text-decoration: none;
  color: #5a48b6;
}

.overlay .sidebar-register {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  background-color: transparent;
  font-size: 15px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  z-index: 5;
  cursor: pointer;
}

.overlay .sidebar-register:hover ~ .topstyle {
  background-color: #4a3dff;
}

.overlay .topstyle {
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-color: #7e76f5;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.overlay .topstyle:hover {
  background-color: #4a3dff;
}

@media screen and (min-width: 981px) {
  .overlay {
    display: none;
  }
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 80px;
  /* 25% from the top */
  width: 100%;
  /* 100% width */
  text-align: right;
  /* Centered text/links */
  margin-top: 30px;
  padding: 10px;
  /* 30px top margin to avoid conflict with the close button on smaller screens */
}

.overlay-content a, .overlay-content span {
  padding: 8px;
  text-decoration: none;
  font-size: 23px;
  color: #000000;
  display: block;
  /* Display block instead of inline */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* Transition effects on hover (color) */
  margin-bottom: 3px;
}

.overlay-content a:hover, .overlay-content span:hover {
  color: #4652ff;
}

.overlay-content .stages {
  position: relative;
  cursor: pointer;
}

.overlay-content .stages i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

.overlay-content .stages .rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.overlay-content .lightblue, .overlay-content .active {
  color: #4652ff;
}

.overlay-content .dropdown {
  display: none;
}

.overlay-content .dropdown .subdropdown .subdropdown-content {
  display: none;
}

.overlay-content .dropdown .subdropdown .subdropdown-content a, .overlay-content .dropdown .subdropdown .subdropdown-content span {
  font-size: 15px;
  margin-right: 40px;
  color: black;
}

.overlay-content .dropdown .subdropdown .subdropdown-content a:hover, .overlay-content .dropdown .subdropdown .subdropdown-content span:hover {
  margin-right: 44px;
  color: #4652ff;
}

.overlay-content .dropdown .subdropdown .subdropdown-content .active {
  margin-right: 44px;
  color: #4652ff;
}

.overlay-content .dropdown .subdropdown .displayb {
  display: block;
}

.overlay-content .dropdown .subdropdown a, .overlay-content .dropdown .subdropdown span {
  position: relative;
}

.overlay-content .dropdown .subdropdown a i, .overlay-content .dropdown .subdropdown span i {
  position: absolute;
  left: 10px;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

.overlay-content .dropdown .subdropdown a .rotate, .overlay-content .dropdown .subdropdown span .rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.overlay-content .dropdown a, .overlay-content .dropdown span {
  cursor: pointer;
  font-size: 17px;
  margin-right: 15px;
}

.overlay-content .displayb {
  display: block;
}

/* The navigation links inside the overlay */
/* When you mouse over the navigation links, change their color */
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

header {
  width: 100%;
  height: 80px;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  text-align: right;
  z-index: 7;
  padding: 20px 30px 20px auto;
}

header .logo {
  position: relative;
  float: right;
  margin-top: 15px;
}

header .logo img {
  padding: 3px 20px 13px 20px;
  margin-right: 10px;
  height: 55px;
  width: 171px;
}

header .right-menu {
  width: calc(80%- 30px);
  height: 100%;
  float: right;
  position: relative;
  margin-top: 15px;
}

header .right-menu ul {
  width: 100%;
  height: 100%;
}

header .right-menu ul .dropdown {
  display: inline-block;
  position: relative;
}

header .right-menu ul .dropdown .dropdown-content {
  position: absolute;
  background-color: #bcb7ff;
  min-width: 200px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(75, 75, 75, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(75, 75, 75, 0.2);
  z-index: 2;
  top: 50px;
  right: 5px;
  display: none;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown {
  display: inline-block;
  width: 100%;
  position: relative;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown a, header .right-menu ul .dropdown .dropdown-content .subdropdown span {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  position: relative;
  cursor: pointer;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown a i, header .right-menu ul .dropdown .dropdown-content .subdropdown span i {
  position: absolute;
  color: white;
  padding: 10px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header .right-menu ul .dropdown .dropdown-content .subdropdown a:hover, header .right-menu ul .dropdown .dropdown-content .subdropdown span:hover {
  color: white;
  background-color: #7e76f5;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown a:hover i, header .right-menu ul .dropdown .dropdown-content .subdropdown span:hover i {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  top: 50%;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown .active {
  color: white;
  background-color: #7e76f5;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown .subdropdown-content {
  position: absolute;
  background-color: #bcb7ff;
  min-width: 150px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(75, 75, 75, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(75, 75, 75, 0.2);
  z-index: 2;
  top: 0;
  right: 100%;
  display: none;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown:hover .subdropdown-content {
  display: block;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown:hover .stage {
  color: white;
  background-color: #7e76f5;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown:hover .stage i {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  top: 50%;
}

header .right-menu ul .dropdown .dropdown-content .subdropdown .active {
  color: white;
  background-color: #7e76f5;
}

header .right-menu ul .dropdown:hover .dropdown-content {
  display: block;
}

header .right-menu ul .dropdown:hover .stages {
  color: #00b96c;
}

header .right-menu ul .dropdown:hover .stages i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

header .right-menu ul .element {
  text-decoration: none;
  color: white;
  display: inline-block;
  cursor: pointer;
}

header .right-menu ul .element:hover {
  text-decoration: none;
}

header .right-menu ul .element li {
  height: auto;
  float: right;
  list-style-type: none;
  padding: 7px 15px 13px 15px;
  font-size: 20px;
  margin-right: 5px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

header .right-menu ul .element li i {
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

header .right-menu ul .element li:hover {
  color: #00b96c;
}

header .right-menu ul .element .active {
  color: #00b96c;
  position: relative;
}

header .right-menu ul .element .active:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 35%;
  width: 30%;
  height: 1px;
  background-color: #12CBC4;
}

header .right-menu ul .element .stages:hover {
  color: #00b96c;
}

header .right-menu ul .element .stages:hover i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

header .left-menu {
  width: calc(20%);
  height: 100%;
  float: left;
  text-align: center;
  position: relative;
}

header .left-menu .menu {
  border: 1px solid white;
  height: 40px;
  width: 40px;
  cursor: pointer;
  margin-top: 18px;
  display: none;
}

header .left-menu .menu i {
  padding: 7px;
  font-size: 15pt;
}

header .left-menu .register {
  text-decoration: none;
  display: inline-block;
  border: 1px solid #12CBC4;
  color: #00b96c;
  margin-top: 20px;
  padding: 7px 10px 7px 10px;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  cursor: pointer;
}

header .left-menu .register:hover {
  text-decoration: none;
  color: white;
  background-color: #12CBC4;
}

header .left-menu .dropdown {
  padding: 7px 10px 7px 10px;
  margin-top: 10px;
  font-family: "Cairo",Sans-serif;
}

header .left-menu .dropdown .dropdown-toggle {
  background-color: transparent;
  color: green;
  font-size: 20px;
  color: #00b96c;
}

header .left-menu .dropdown .dropdown-toggle i {
  font-size: 20px;
  color: #eeeeee;
}

header .left-menu .dropdown .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.9);
  border-top: none;
}

header .registerclosediv {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #00000083;
  z-index: 7;
  /* Sit on top */
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
  padding: 20px;
  overflow-y: auto;
}

header .registerclosediv .signcontainer {
  width: 600px;
  max-width: 90%;
  background-color: white;
  cursor: default;
  position: absolute;
  right: calc(50% - 300px);
  height: auto;
  z-index: 7;
  /* Sit on top */
  overflow: hidden;
  overflow-y: auto;
}

header .registerclosediv .signcontainer .cls-btn {
  position: absolute;
  height: 140px;
  width: 140px;
  border-radius: 50%;
  background-color: #2a5fa5;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
}

header .registerclosediv .signcontainer .cls-btn .closebtn {
  position: absolute;
  top: 85px;
  right: 90px;
  color: white;
  font-size: 23px;
}

header .registerclosediv .signcontainer .cls-btn:hover {
  background-color: #003375;
}

header .registerclosediv .signcontainer .title {
  padding: 20px;
  font-size: 25px;
  font-weight: 700;
  font-family: "Cairo",Sans-serif;
}

header .registerclosediv .signcontainer .info {
  padding: 10px;
}

header .registerclosediv .signcontainer .info .section {
  position: relative;
  text-align: right;
  margin-top: 25px;
}

header .registerclosediv .signcontainer .info .section .form-control {
  width: 100%;
  right: 0;
  float: right;
}

header .registerclosediv .signcontainer .info .button-div {
  position: relative;
  text-align: center;
  width: 100%;
  padding: 10px;
}

header .registerclosediv .animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 980px) {
  header .logo {
    float: left;
  }
  header .right-menu {
    display: none;
  }
  header .left-menu {
    float: right;
  }
  header .left-menu .register {
    display: none;
  }
  header .left-menu .dropdown {
    display: none;
  }
  header .left-menu .menu {
    display: inline-block;
  }
}

@media screen and (max-width: 670px) {
  header .registerclosediv .signcontainer {
    right: 5%;
  }
}

.headeronscroll {
  background-color: white;
}
/*# sourceMappingURL=header.css.map */