/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes hideInRight {
  0% {
    opacity: 1;
  }
  80% {
    transform: translateX(250px);
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes infinityMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes moveOnHover {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes backOnHover {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 65.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 59.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 53%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 78%;
  }
}

body {
  box-sizing: border-box;
  padding: 3rem;
}
@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

::-moz-selection {
  background-color: #55c57a;
  color: #fff;
}

::selection {
  background-color: #55c57a;
  color: #fff;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("./../fonts/RobotoSerif-VariableFont_GRAD_opsz_wdth_wght.woff") format("woff");
}
@font-face {
  font-family: "Tajawal";
  src: url("./../fonts/Tajawal-Regular.woff") format("woff");
}
body {
  font-family: "Tajawal", sans-serif !important;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #f7f7f7 !important;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin-bottom: 6rem;
}
.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
      animation-delay: 3s;
      animation-iteration-count: 3;
      */
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--main {
    letter-spacing: 1rem;
    font-family: 5rem;
  }
}
.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  animation: moveInRight 1s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--sub {
    letter-spacing: 0.5rem;
  }
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
@media only screen and (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.5rem;
  }
}
.heading-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.paragraph {
  font-size: 1.6rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.transparent-light {
  background-color: rgba(255, 255, 255, 0.611) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  backdrop-filter: blur(1px) !important;
}

.transparent {
  background-color: rgba(255, 255, 255, 0.251) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  backdrop-filter: blur(1px) !important;
}

.input-form {
  border: 1px solid rgba(103, 103, 103, 0.6) !important;
  font-size: 16px !important;
}

.input-form:focus {
  background-color: var(--bs-form-control-bg);
  border-color: rgba(212, 223, 230, 0.7490196078) !important;
  box-shadow: 0 0 0 1px rgb(0, 102, 255) !important;
}

.input-form::-moz-placeholder {
  border: 0 !important;
  color: #ababab !important;
  font-size: 16px !important;
}

.input-form::placeholder {
  border: 0 !important;
  color: #ababab !important;
  font-size: 16px !important;
}

.form-label {
  display: flex;
  /* justify-content: end; */
}

.radius-addons_left {
  border-radius: 5px 0 0 5px !important;
}

.radius-addons_right {
  border-radius: 0 5px 5px 0 !important;
}

.button-custom {
  font-size: 14px !important;
}

.cursor-pointer {
  cursor: pointer;
}

table {
  border-collapse: separate;
  width: 100%;
  text-align: center;
}

.table-scroll {
  height: 50vh;
  overflow-y: scroll;
  margin-top: 10px;
  padding: 15px;
  border-top: solid 1px #ddd;
}

::-webkit-scrollbar {
  width: 13px;
  color: #6aafe6;
  background: #f1f1f1;
  border-radius: 7px;
}

::-webkit-scrollbar-thumb {
  background: #6aafe6;
  border-radius: 7px;
}

.table-row_hover:hover {
  background-color: #9e9e9e;
  color: #ffffff;
  cursor: pointer;
}

th,
td {
  text-align: left;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #c7c7c7;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

body {
  font-size: 1.6rem !important;
  background-image: url("./../images/dark-silk.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 0;
  min-height: 100vh;
}

.header-style {
  background-color: rgba(61, 61, 61, 0.42) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  backdrop-filter: blur(1px) !important;
  box-shadow: 0px 2px 8px 1px rgba(46, 46, 47, 0.67);
}

.block-category {
  margin: 10px;
  border-radius: 0.3rem;
  box-shadow: 2px 2px 3px 1px rgba(46, 46, 47, 0.13);
  background-color: rgba(255, 255, 255, 0.251) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  backdrop-filter: blur(1px) !important;
}

.icon-notification {
  font-size: 20px;
  margin-right: 2rem;
  margin-left: 2rem;
}

.badge-font_size {
  font-size: 8px !important;
}

.icons-grid {
  font-size: 50px;
  background-color: transparent !important;
  border: none !important;
  outline: none;
}

.box-hover {
  cursor: pointer;
  width: 255.1px;
  transition: all 0.2s ease;
}
.box-hover:hover {
  transform: scale(1.1);
}
.box-hoverlabel:hover {
  margin: 4rem;
}

.offcanvas-profile {
  width: 90rem !important;
  background-image: url("./../images/dark-silk.jpg");
  height: 100vh;
  padding: 0;
  box-shadow: 2px 0 6px 1px #212529;
  color: #ffffff;
}

.close-canvas.show {
  transform: translateX(90rem);
}

.close-canvas {
  position: fixed;
  top: 10px;
  background-color: #dee2e6;
  width: 5rem;
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  border-radius: 0 22px 22px 0px;
  box-shadow: 0 0 6px 1px #212529;
  transform: translateX(-90rem);
  z-index: 1055;
  transition: all 0.2s ease;
  /* left: 0px; */
}

.button-close {
  transition: all 0.2s ease;
  font-size: 16px;
  padding: 3px 5px 2px 20px;
  border: 2px solid transparent !important;
  border-radius: 15px !important;
}
.button-close:hover {
  border: 2px solid black !important;
}

.white-card {
  background-color: #ffffff;
  color: #000000;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  padding: 1rem;
}

#home-sidebar {
  min-height: 92.5vh;
  padding: 1.4rem;
  direction: rtl;
}
#home-sidebar > .personal-card {
  background-color: rgba(255, 255, 255, 0.251) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  backdrop-filter: blur(1px) !important;
  padding: 10px;
  border-radius: 5px;
  max-width: 100%;
}

.notify-card_desc {
  white-space: nowrap;
  padding: 17px 2px 17px 0;
  text-align: right;
  transform: translateX(-200%);
  animation: infinityMove 10s linear infinite;
}

.notify-card_text {
  font-size: 10px;
  overflow: hidden;
  width: 100%;
}

.message-card_desc {
  font-family: "Tajawal";
  white-space: nowrap;
  padding: 17px 2px 17px 0;
  width: inherit;
  text-align: right;
  transition: all 0.2s ease;
}

.animated {
  animation: moveOnHover 10s linear, backOnHover 5s linear 10s;
}

.stopAnimation {
  animation: none !important;
}

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

.login {
  height: 60vh;
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  text-align: center;
  border-radius: 30px;
  box-shadow: 2px 2px 3px 1px rgba(46, 46, 47, 0.67);
  overflow: auto;
  background-color: rgba(61, 61, 61, 0.42);
  transition: all 0.5s ease;
}

.login_image {
  transition: all 0.8s ease;
}

@media screen and (max-width: 992px) {
  .login_image {
    width: 0;
    height: 0;
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .login_image {
    height: 100%;
    width: 100%;
  }
}
.login_image img {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}

.form-signin {
  height: 100%;
  width: 50%;
  padding: 4rem;
}

.input-field {
  height: 4rem;
  width: 80%;
  border: 1px solid rgb(202, 198, 200);
  outline: none;
  padding: 0.5rem 4rem;
  margin-top: 1rem;
  font-size: medium;
  border-radius: 2rem;
}

.input-field:focus {
  border: 0.1rem solid #6aafe6;
  height: 4.3rem;
  width: 80.5%;
}

.icon {
  position: absolute;
  padding: 2.4rem 2rem;
  color: rgb(165, 157, 157);
}

.p1 {
  padding: 2rem 0;
  color: rgb(165, 157, 157);
}

.sign-in-button {
  height: 4rem;
  width: 80%;
  border: none;
  outline: none;
  margin: 2rem 0;
  border-radius: 2rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  background-color: #6aafe6;
  transition: all 0.4s ease;
}

.sign-in-button:hover {
  background-color: #03a6ff;
}

.links {
  display: inline-flex;
}

.circle {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background-color: white;
  margin: 3rem 1rem;
  cursor: pointer;
  padding: 1.2rem;
  box-shadow: 0px 0px 9px 3px rgba(106, 175, 230, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.circle:hover {
  background-color: #cadbe9;
  transform: scale(1.1);
}

.sidebar-list_item {
  padding: 5px 10px !important;
  color: #ffffff !important;
  font-size: 14px !important;
}

.list-group-item.active {
  padding: 0.25rem 1rem !important;
}

.list-group-item {
  color: #ffffff !important;
}

.sidebar-list_item:hover {
  background-color: rgba(240, 248, 255, 0.179) !important;
}

.list-group-item.active > .sidebar-item_span {
  padding: 0.4rem 1rem;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.611) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  backdrop-filter: blur(1px) !important;
}

#accounting-content {
  color: #000000;
  width: 100%;
  height: 89.5vh;
  padding: 10px;
  margin: 11px 11px 11px 0;
  border-radius: 15px;
  transition: all 0.3s ease;
}
#accounting-content > .content-card {
  background-color: #ffffff;
  padding: 12px;
  /* border: 1px solid rgb(197, 197, 197); */
  /* border-radius: 10px; */
  margin-bottom: 5px;
}

#sidebar {
  padding: 1.9rem 5rem 1rem 1rem;
  font-size: 14px;
  opacity: 1;
  float: left;
  transform: translateX(0px);
  transition: all 0.3s ease;
}
#sidebar.hide {
  opacity: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  transform: translateX(-100px) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  visibility: hidden !important;
}
#sidebar.sidebar-container {
  height: -moz-max-content;
  height: max-content;
  overflow-y: auto;
  overflow-x: hidden;
  color: #ffffff;
}

#small-sidebar {
  width: 7.5rem;
  margin-top: 1rem;
  opacity: 1;
  float: left;
  display: block;
  visibility: visible;
  transform: translateX(0px);
  transition: all 0.3s ease 100ms;
}
#small-sidebar.hide {
  opacity: 0;
  width: 0 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  visibility: hidden !important;
}

.dropdown-toggle {
  outline: 0;
}

.btn-toggle {
  font-size: 14px !important;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
}
.btn-toggle:hover,
.btn-toggle:focus {
  background-color: rgba(240, 248, 255, 0.179) !important;
}
.btn-toggle::after {
  font-family: "FontAwesome";
  content: "\f104";
  line-height: 0;
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
  color: #ffffff;
}
.btn-toggle[aria-expanded="true"] {
  color: #ffffff;
}
.btn-toggle[aria-expanded="true"]::after {
  transform: rotate(-90deg) translateX(4px);
}

.btn-toggle-nav a {
  padding: 0.1875rem 1.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
}

.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: rgba(240, 248, 255, 0.179) !important;
}

.nav-pills .nav-link {
  display: block;
  padding: 5px;
  width: 61% !important;
  margin: auto;
  border-radius: 25px !important;
  border: 0 !important;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.2s ease;
}
.nav-pills .nav-link.active {
  background-color: rgba(240, 248, 255, 0.179) !important;
}
.nav-pills .nav-link:hover {
  width: 100% !important;
  border-radius: 0 !important;
  background-color: rgba(240, 248, 255, 0.179);
  color: #cadbe9;
}
.nav-pills .nav-link:focus {
  color: #cadbe9;
}

.tooltip {
  font-size: 13px !important;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  /* background-image: url("./../images/dark-silk.jpg"); */
  background-position: center;
  overflow-x: hidden;
  transition: 0.2s;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  background-clip: padding-box;
  outline: 0;
  box-shadow: 0 0 26px 6px #484444;
  background-color: #f6f6f6f5;
  /* padding: 30px; */
}

.sidenav.show {
  width: 90rem !important;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.profile-img {
  transition: all 0.2s ease;
}
.profile-img_layout {
  background-color: rgba(255, 255, 255, 0.251) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  backdrop-filter: blur(1px) !important;
  border-radius: 50%;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
.offcanvas-backdrop {
  display: none;
}

.offcanvas-backdrop.show {
  display: block !important;
}

.form-control:disabled {
  background-color: #ffffff !important;
  opacity: 1 !important;
  border: none !important;
  font-size: 1.8rem;
}

.userProfileLabel {
  font-size: 1.4rem;
  color: #a3b1cb;
}

#editForm {
  display: none;
}

.toggle-edit-user {
  border: none !important;
  font-size: bold !important;
  transition: all 0.2s ease;
}

.toggle-edit-user:hover {
  background-color: white !important;
  color: gray !important;
}

.profile-pic {
  width: 200px;
  max-height: 200px;
  display: inline-block;
}

.option-row {
  background-color: #ffffff;
  bottom: 0;
  width: 90rem !important;
  height: 8vh;
  transform: translateY(100px);
  transition: all 0.1s ease;
}
.option-row.show {
  transform: translateY(0px);
}

.file-upload {
  display: none;
}

.circle-profile-pic {
  display: flex;
  justify-content: center;
  border-radius: 100% !important;
  overflow: hidden;
  width: 128px;
  height: 128px;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

.p-image {
  position: relative;
  top: 91px;
  right: 22px;
  cursor: pointer;
  color: #666666;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-image:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.upload-button {
  font-size: 1.2em;
}

.upload-button:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #999;
} 
._ar{direction: rtl !important;}
.form-control{border-radius: 0 !important;}
.input-form{border: 1px solid rgba(171, 140, 140, 0.42) !important;}
.input-form:focus {border-color: rgba(255, 255, 255, 0.75) !important; box-shadow: 0 0 0 1px rgb(123, 171, 244) !important;}

.content-windows{position: relative;}
.content-windows .getDataIFrame{
  position: absolute;
  top: 0px; left: 0px; right: 0px; bottom: 0px;
  border: unset;
  width: 100%;
  height: 100vh;
}

a.link-top{text-decoration: none; padding: 10px 15px 7px 15px; font-weight: bold; display: inline-block; background: #d9b870; font-size: 14px; color: #ffffff;}
.btn{font-size: 15px;}
.dropdown-menu{--bs-dropdown-font-size: 12px !important;}
.accordion-button{font-size: 15px !important;}