@charset "UTF-8";
.font-xxs {
  font-size: 10px;
}

.font-xs {
  font-size: 14px;
}

.font-sm {
  font-size: 16px;
}

.font-md {
  font-size: 18px;
}

.font-lg {
  font-size: 20px;
}

.font-xl {
  font-size: 24px;
}

.font-xxl {
  font-size: 28px;
}

.font-xxxl {
  font-size: 32px;
}

.text-color {
  color: #3b3b3b;
}

.main-text-color {
  color: #203B75;
}

.cursor-p {
  cursor: pointer;
}

.bg-done {
  background-color: rgba(0, 152, 219, 0.2);
}

.success {
  background-color: rgba(32, 117, 66, 0.1);
  color: #207542;
}

.rejected {
  background-color: rgba(219, 55, 64, 0.1);
  color: #DB3740;
}

.font-gray {
  color: gray;
}

.font-b {
  font-weight: bold;
}

@media (max-width: 576px) {
  .w-sm-100 {
    width: 100%;
  }
}

.site-btn-2 {
  background-color: white;
  padding: 13px;
  border: 2px solid rgba(32, 59, 117, 0.5);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(32, 59, 117, 0.5);
  white-space: nowrap;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
}
.site-btn-2:hover {
  background-color: #203B75;
  color: #fff;
}

.remove-btn {
  background-color: #DB3740;
  padding: 13px;
  border: 2px solid #DB3740;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #DB3740;
  white-space: nowrap;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
  margin: 10px 0;
  width: 35px;
  height: 35px;
}
.remove-btn:hover {
  animation: delete-btn 0.2s normal forwards ease-in-out infinite;
  animation-iteration-count: 2;
}

.edit-btn {
  background-color: #203B75;
  padding: 13px;
  border: 2px solid #203B75;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
  margin: 10px 0;
  width: 35px;
  height: 35px;
  text-align: center;
}

.delete-btn {
  background-color: #DB3740;
  padding: 13px;
  border: 2px solid #DB3740;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
}
.delete-btn:hover {
  animation: delete-btn 0.2s normal forwards ease-in-out infinite;
  animation-iteration-count: 2;
}

.main-btn {
  background-color: #8099CC;
  padding: 13px;
  border: 2px solid #8099CC;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
}
.main-btn:hover {
  background-color: #fff;
  color: #203B75;
}

.sec-btn {
  background-color: #203B75;
  padding: 13px;
  border: 2px solid #203B75;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
}
.sec-btn:hover {
  background-color: #fff;
  color: #203B75;
}

.site-input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid lightgray;
  color: gray;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
}
.site-input:focus {
  border: 1px solid #203B75;
}

@font-face {
  font-family: "main-font";
  src: url(../fonts/alfont_com_AlFont_com_URW-DIN-Arabic.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "main-font";
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: #be9030;
  border-radius: 15px;
}

::-webkit-scrollbar-track {
  background-color: lightgrey;
  border-radius: 15px;
}

::-moz-selection {
  background-color: #be9030;
  color: white;
}

::selection {
  background-color: #be9030;
  color: white;
}

::-moz-placeholder {
  -moz-transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55) !important;
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55) !important;
  color: gray;
}

::placeholder {
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55) !important;
  color: gray;
}

input:focus::-moz-placeholder {
  transform: translateX(120%);
}

input:focus::placeholder {
  transform: translateX(120%);
}

.login-section {
  max-width: 1000px;
  border-radius: 50px !important;
  box-shadow: 0px 2px 1px 1px lightgrey;
}
.login-section .login {
  max-width: 550px;
}

.login-nav {
  height: 70px !important;
  padding: 0 50px !important;
}
.login-nav .left {
  padding: 0 !important;
}
.login-nav .left .languge {
  margin: 0 !important;
}

p {
  margin: 0;
}

.logo-img {
  width: 150px;
  height: 150px;
}

.nav-logo {
  width: 40px;
  height: 40px;
}

.main {
  height: 100vh;
  position: relative;
}

.side-menu {
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55);
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 9;
}
.side-menu .logo {
  background-color: #203B75;
}
.side-menu .logo .logo-title {
  color: #fff;
  font-size: 35px;
  line-height: 30px;
}
.side-menu .tabs {
  overflow-y: auto;
  background-color: #fff;
  height: 70%;
}
.side-menu .tabs .nav-item {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
}
.side-menu .tabs .nav-item .nav-link {
  z-index: 5;
  border: none;
  position: relative;
  color: #3b3b3b;
  font-weight: bold;
  border-radius: unset;
  margin-bottom: 10px;
}
.side-menu .tabs .nav-item .nav-link svg {
  color: gray;
}
.side-menu .tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(32, 59, 117, 0.2);
  z-index: -1;
  transition: 0.3s;
}
.side-menu .tabs .nav-item .nav-link.link:hover {
  color: #203B75;
}
.side-menu .tabs .nav-item .nav-link.link:hover.nav-link::before {
  width: 100%;
}
.side-menu .tabs .nav-item .nav-link.link:hover .arrow {
  color: #203B75;
}
.side-menu .tabs .nav-item .nav-link.link:hover .tab-icon {
  filter: invert(17%) sepia(17%) saturate(6375%) hue-rotate(205deg) brightness(96%) contrast(89%);
}
.side-menu .tabs .nav-item .active {
  background-color: rgba(32, 59, 117, 0.2);
  color: #203B75;
  border-left: 3px solid #203B75;
  border-right: 3px solid #203B75;
}
.side-menu .tabs .nav-item .active svg {
  color: #203B75;
}
.side-menu .tabs .nav-item .active .tab-icon {
  filter: invert(17%) sepia(17%) saturate(6375%) hue-rotate(205deg) brightness(96%) contrast(89%);
}
.side-menu .child-list ul {
  border: none;
}
.side-menu .child-list ul .nav-link {
  padding: 8px 30px 8px 0px;
}
.side-menu .child-list ul .active {
  margin-top: 0 !important;
}
.side-menu .grandchild-list {
  padding: 5px 10px;
}
.side-menu .grandchild-list ul {
  border: none;
}
.side-menu .grandchild-list ul .nav-item:hover .gc-link {
  color: #203B75;
}
.side-menu .grandchild-list ul .nav-item:hover .gc-arrow {
  color: #203B75;
}

.toggle-side-menu {
  transform: translateX(100%);
}

.toggle-main-container {
  margin-right: 0 !important;
  border-radius: unset !important;
}

.rotate svg {
  transform: rotate(-180deg);
  color: #203B75;
  border-color: #203B75;
}

.main-container {
  margin-right: 300px;
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55);
  min-height: 100vh;
  background-color: #F5F5F5;
  padding-bottom: 30px;
}
.main-container .main-nav {
  height: 97px;
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55);
  background-color: #fff;
}
.main-container .main-nav .right .menu {
  z-index: 70;
}
.main-container .main-nav .right .menu .fa-indent {
  font-size: 20px;
  cursor: pointer;
  margin: 0 15px;
  color: black;
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55);
  color: #203B75;
  border: 1px solid #203B75;
  padding: 10px 12px;
  border-radius: 50%;
}
.main-container .main-nav .left {
  padding: 0 20px;
}
.main-container .main-nav .left .notification {
  cursor: pointer;
  margin: 0 10px;
  background-color: #203B75;
  color: #fff;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.main-container .main-nav .left .notification .fa-bell {
  font-size: 25px;
}
.main-container .main-nav .left .notification:hover .fa-bell {
  transform-origin: top;
  animation: bell 0.3s normal forwards ease-in-out;
  animation-iteration-count: 2;
}
.main-container .main-nav .left .languge {
  cursor: pointer;
  margin: 0 10px;
  background-color: #203B75;
  color: #fff;
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 5px;
  font-size: 10px;
  border-radius: 50%;
}
.main-container .main-nav .left .languge .fa-globe {
  font-size: 14px;
}
.main-container .main-section {
  padding: 30px;
  margin: 30px;
  border-radius: 10px;
}
.main-container .dt-container .row {
  display: block;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.notification-list .notification-item {
  padding: 20px 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid lightgray;
  cursor: pointer;
}
.notification-list .notification-item .info .text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification-list .notification-item .info .time {
  color: gray;
  font-size: 13px;
  margin: 10px 0;
}
.notification-list .notification-item .delete {
  border-radius: 5px;
  background-color: rgba(255, 0, 0, 0.2);
  color: red;
  padding: 2px 8px;
  font-size: 15px;
  margin-right: auto;
  transition: 0.5s;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.notification-list .notification-item .delete:hover {
  background-color: #fff;
}
.notification-list .notification-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.notification-list .notification-item:hover {
  background-color: rgba(211, 211, 211, 0.2);
}

.modal-body img {
  width: 150px;
}

.data-table tr:nth-child(even) {
  background-color: #F5F5F5;
}
.data-table tr:nth-child(even) td:first-child {
  border-radius: 0 10px 10px 0;
}
.data-table tr:nth-child(even) td:last-child {
  border-radius: 10px 0 0 10px;
}

.table-head {
  background-color: #F5F5F5;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}
table td {
  padding: 5px 0;
  height: 50px;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
  margin: 0 0.5em;
}

.dt-column-title {
  margin: 0 30px;
}

.dtr-details {
  width: 100%;
  padding: 10px !important;
}

.dt-length {
  display: none !important;
}

.dt-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.dt-search {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dt-search input {
  width: 300px !important;
  margin-bottom: 15px !important;
  border: 1px solid lightgray;
  padding: 7px 30px 7px 5px;
  font-size: 13px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="16" height="16"><path fill="%23ccc" d="M505 442.7L405.3 343c28.4-34.9 45.7-79.4 45.7-127.3C451 96.2 355.8 1 236.5 1 117.2 1 22 96.2 22 215.7c0 119.3 95.2 214.5 214.5 214.5 47.9 0 92.4-17.3 127.3-45.7l99.7 99.7c5.9 5.9 13.6 8.8 21.3 8.8 7.8 0 15.4-2.9 21.3-8.8 11.7-11.8 11.7-30.9 0-42.6zM236.5 381c-91.2 0-165.2-74-165.2-165.2S145.3 50.6 236.5 50.6s165.2 74 165.2 165.2S327.7 381 236.5 381z"/></svg>') no-repeat 10px center;
  background-position: bottom 8px right 10px;
}
.dt-search input:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #203B75;
}

.active > .page-link, .page-link {
  color: #203B75;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
  background-color: #be9030;
  border-radius: unset;
  border: none;
  box-shadow: none;
  color: white;
}
.page-item:first-child .page-link:hover, .page-item:last-child .page-link:hover {
  color: white;
}

.page-item .page-link {
  box-shadow: none;
}

.page-item.active {
  background-color: #203B75;
}
.page-item.active .page-link {
  color: white;
}

div.dt-container div.dt-paging ul.pagination {
  justify-content: flex-end;
}

.nav-pills {
  justify-content: center;
}
.nav-pills .nav-item {
  border: 1px solid lightgray;
}
.nav-pills .nav-item .nav-link {
  padding: 5px 20px;
  color: #3b3b3b;
  font-size: 15px;
  border-radius: unset;
}
.nav-pills .nav-item .active {
  background-color: #203B75;
  color: #fff;
  border-radius: unset;
  border: 1px solid #203B75;
}

.switch {
  border-color: #F9F9F9 !important;
}
.switch input {
  height: 20px;
  width: 40px !important;
  background-color: rgb(247, 247, 247);
}
.switch input:checked {
  background-color: green;
  border: green;
}
.switch input:focus {
  border-color: green;
  box-shadow: none;
}

.cancel {
  background-color: rgb(54, 54, 54);
  border: 1px solid rgb(54, 54, 54);
}

input[type=checkbox] {
  accent-color: #203B75;
}

.services .service {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
}
.services .service:nth-child(odd) {
  background-color: whitesmoke;
}
.services .service label {
  margin: 0 5px 5px;
  width: 100%;
}

.users-edit {
  background-color: #207542;
  border-color: #207542;
}

.total, .transfare {
  padding: 10px 0 0;
  border: 1px solid lightgray;
  border-radius: 5px;
}
.total .total-title, .transfare .total-title {
  border-bottom: 1px solid lightgray;
  padding: 0 10px 10px;
}
.total .total-money, .transfare .total-money {
  padding: 10px 5px;
  font-weight: bold;
  color: #203B75;
  background-color: rgba(32, 59, 117, 0.2);
}
.total .transfare-img, .transfare .transfare-img {
  height: 200px;
  width: 400px;
}

.my-data {
  max-width: 500px;
  margin: auto;
}
.my-data .my-data-img {
  margin-bottom: 10px;
  text-align: center;
}
.my-data .my-data-img img {
  width: 100px;
}

.orders .order {
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}
.orders .order .order-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid blue;
}

.attached-images img {
  height: 80px;
  width: 80px;
  margin: 5px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.upload-preview {
  position: relative;
  border: 2px solid #203B75;
  margin: 8px;
  border-radius: 10px;
}
.upload-preview .remove {
  background-color: red;
  height: 25px;
  width: 25px;
  z-index: 7;
  position: absolute;
  left: -5px;
  top: -5px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 13px;
  border: none;
}
.upload-preview .remove:hover {
  scale: 1.1;
}
.upload-preview a {
  display: block;
}
.upload-preview img {
  width: 105px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.single-upload::after, .hide::after {
  content: none !important;
}

.profile-img-upload-2 {
  display: flex;
}
.profile-img-upload-2 .up-img {
  border-radius: 10px;
  border: 2px dashed #203B75;
  padding: 10px;
  cursor: pointer;
  height: 90px;
  width: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin: 8px;
}

.b-end {
  border-left: 1px solid lightgray;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pass-input {
  position: relative;
}
.pass-input svg {
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
  cursor: pointer;
  left: 10px;
}

.phone-input {
  position: relative;
}
.phone-input select {
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
  cursor: pointer;
  left: 10px;
  border: none;
  color: gray;
  font-size: 13px;
}
.phone-input select:focus {
  outline: none;
}

.otp-fake-input.otpdesigner__focus__ {
  border: 2px solid #203B75 !important;
}

.realInput {
  opacity: 0;
}

.fake-inputs {
  direction: ltr;
}

.otp-fake-input {
  flex-wrap: wrap !important;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select2-container {
  width: 100% !important;
  font-size: 14px !important;
}

.select2-container--open {
  z-index: 9999999;
}

.select2-selection--single {
  height: 1000% !important;
  padding: 7px;
}

.select2-selection__rendered {
  padding-right: 0px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid lightgray;
  border-radius: 5px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #203B75;
  outline: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #203B75;
  color: white;
}

.select2-container--open .select2-dropdown--below {
  box-shadow: 5px 5px 10px 0 gray;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url(https://cdn4.iconfinder.com/data/icons/user-interface-174/32/UIF-76-512.png);
  background-color: transparent;
  background-size: contain;
  border: none !important;
  height: 25px !important;
  width: 25px !important;
  margin-top: -3px;
}

.radio-container {
  display: flex;
  align-items: center;
}
.radio-container input[type=radio] {
  display: none;
}
.radio-container label {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.radio-container label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  margin-top: 2px;
  transition: 0.2s ease-in-out all;
}
.radio-container input[type=radio]:checked + label::before {
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  background-color: #203B75;
  border-color: #203B75;
}

.discount {
  background-color: rgba(32, 59, 117, 0.1);
  color: #203B75;
  border-radius: 5px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-details .booking-details-section {
  background-color: whitesmoke;
  border: 1px solid lightgray;
  border-radius: 5px;
}
.booking-details .booking-details-section div {
  padding: 20px;
  color: #3b3b3b;
}
.booking-details .booking-details-section div:nth-child(odd) {
  background-color: white;
  padding: 10px 20px;
}

.br-tab {
  position: relative;
  border-top: 1px solid black;
  border-top-style: dashed;
  margin-bottom: 60px;
}
.br-tab .now, .br-tab .end {
  position: absolute;
  top: -17px;
  left: 80%;
  transform: translateX(-50%);
  color: white;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 12px;
  color: lightgray;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.br-tab .now .circle, .br-tab .end .circle {
  background-color: lightgray;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 1px 1px 5px 0 lightgray;
}
.br-tab .end {
  left: 20%;
}
.br-tab .active {
  color: #203B75;
}
.br-tab .active .circle {
  background-color: #203B75;
}
.br-tab .done .circle {
  border: none;
}
.br-tab .done::after {
  content: "✔";
  position: absolute;
  top: 13%;
  left: 60%;
  color: #fff;
  width: 0;
  height: 0;
}

.calendar {
  position: relative;
}
.calendar .flatpickr-input {
  margin: 5px;
  padding: 7px;
  border-radius: 5px;
  border: 1px solid #203B75;
}
.calendar .flatpickr-input:focus {
  outline-color: #203B75;
}
.calendar .fa-calendar {
  position: absolute;
  left: 12px;
  bottom: 50%;
  transform: translateY(50%);
  font-size: 18px;
  color: #203B75;
}

.tooltip-inner {
  background-color: whitesmoke;
  color: #3b3b3b;
  font-weight: bold;
  font-size: 14px;
}

.tooltip-arrow::before {
  border-top-color: whitesmoke !important;
}

.edit-profile-img {
  position: relative;
}
.edit-profile-img .edit-profile-icon {
  position: absolute;
  left: -5px;
  top: 100px;
  padding: 3px;
  z-index: 2;
  width: 30px;
  height: 30px;
}
.edit-profile-img .edit-profile-icon:hover {
  scale: 1.1;
}
.edit-profile-img .up-img {
  border-radius: 50%;
  height: 150px;
  width: 150px;
}
.edit-profile-img .upload-preview {
  border-radius: 50%;
}
.edit-profile-img .upload-preview .remove {
  display: none;
}
.edit-profile-img .upload-preview img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.wating-screen {
  height: 100vh;
}

.loader-container {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}
.loader-container .loader {
  display: flex;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.loader-container .loading-wave {
  width: 300px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.loader-container .loading-bar {
  width: 20px;
  height: 10px;
  margin: 0 5px;
  background-color: #203B75;
  border-radius: 5px;
  animation: loading-wave-animation 1s ease-in-out infinite;
}
.loader-container .loading-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.loader-container .loading-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.loader-container .loading-bar:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes bell {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes loading-wave-animation {
  0% {
    height: 10px;
  }
  50% {
    height: 50px;
  }
  100% {
    height: 10px;
  }
}
@keyframes delete-btn {
  0% {
    transform: translate(3px);
  }
  50% {
    transform: translate(-3px);
  }
  100% {
    transform: translate(0);
  }
}
@media (max-width: 320px) {
  .name {
    display: none;
  }
  .position {
    display: none;
  }
}
@media (max-width: 576px) {
  .add-spec {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px), (max-width: 992px) {
  .side-menu {
    width: 300px;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0;
  }
  .side-menu .tabs {
    height: 75%;
  }
  .main-container .main-nav {
    border-radius: unset;
  }
  .main-container .main-nav .fa-indent {
    background-color: #fff;
  }
}
@media (max-width: 992px) {
  .main-container {
    border-radius: unset;
    margin-right: 0;
  }
  .main-container .main-nav {
    padding: 0;
  }
  .main-container .main-nav .left {
    padding: 0;
  }
  .main-container .main-nav .left .profile {
    padding: 0;
  }
  .login-section {
    max-width: 600px;
  }
  .login-section .login {
    max-width: 350px;
  }
}
[dir=ltr] .side-menu {
  left: 0;
  right: unset;
}
@media (max-width: 992px) {
  [dir=ltr] .side-menu {
    padding: 0;
  }
}
[dir=ltr] .child-list ul .nav-link {
  padding: 8px 0 8px 30px;
}
[dir=ltr] .toggle-side-menu {
  transform: translateX(-100%);
}
[dir=ltr] .main-container {
  margin-right: 0;
  margin-left: 300px;
  border-radius: 30px 0 0 0;
}
@media (max-width: 992px) {
  [dir=ltr] .main-container {
    margin: 0;
    border-radius: 0;
  }
}
[dir=ltr] .toggle-main-container {
  margin-left: 0;
}
[dir=ltr] .main-nav {
  border-radius: 30px 0 0 0;
}
[dir=ltr] .main-nav .fa-indent {
  rotate: 180deg;
}
[dir=ltr] .arrow, [dir=ltr] .gc-arrow {
  rotate: 180deg;
}
[dir=ltr] .child-list ul .nav-item .c-link:hover, [dir=ltr] .gc-link:hover {
  translate: 5px !important;
}
[dir=ltr] .tabs .nav-item .nav-link::before {
  right: unset;
  left: 0;
}
[dir=ltr] .notification-list .notification-item .delete {
  margin-left: auto;
  margin-right: unset;
}
[dir=ltr] .data-table tr:nth-child(even) {
  background-color: #F5F5F5;
}
[dir=ltr] .data-table tr:nth-child(even) td:first-child {
  border-radius: 10px 0 0 10px;
}
[dir=ltr] .data-table tr:nth-child(even) td:last-child {
  border-radius: 0 10px 10px 0;
}
[dir=ltr] .b-end {
  border-right: 1px solid lightgray;
  border-left: unset;
}
[dir=ltr] .pass-input svg {
  right: 10px;
  left: unset;
}
[dir=ltr] .phone-input select {
  right: 10px;
  left: unset;
}
[dir=ltr] .radio-container label {
  padding-left: 20px;
}
[dir=ltr] .radio-container label::before {
  content: "";
  left: 0;
}
[dir=ltr] .calendar .fa-calendar {
  right: 12px;
  left: unset;
}/*# sourceMappingURL=style.css.map */


.packages .package {
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
}

    .packages .package .package-img img {
        width: 100px;
        height: 100px;
    }


.ads .ad {
    border: 1px solid lightgray;
    border-radius: 5px;
    margin: 10px;
}

    .ads .ad .ad-img {
        margin-bottom: 10px;
        position: relative;
    }

        .ads .ad .ad-img .status {
            position: absolute;
            left: 20px;
            top: 20px;
            padding: 5px 25px;
            background-color: #203B75;
            color: white;
            border-radius: 4px;
            font-size: 14px;
        }

@media screen and (max-width: 576px) {
    .ads .ad .ad-img .status {
        padding: 5px 10px;
        font-size: 12px;
    }
}

.ads .ad .ad-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.ads .ad .ad-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.delete {
    border-radius: 5px;
    background-color: rgba(255, 0, 0, 0.2);
    color: red;
    padding: 2px 8px;
    font-size: 15px;
    margin-right: auto;
    transition: 0.5s;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

    .delete:hover {
        background-color: #fff;
    }

.check-container .check-img {
    padding:15px;
    border-radius:10px;
    background-color:whitesmoke;
    width:fit-content;
}

.check-container .check-img img {
    width: 35px !important;
    height: 35px !important;
}

.check-container {
    position:relative;
}

    .check-container label {
        cursor:pointer;
    }
    .check-container label::before {
        content: '\2713';
        display: block;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        background-color: green;
        width: 25px;
        height: 25px;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
        display: none;
    }

.check-container input:checked + label {
    background-color: whitesmoke;
}

.check-container input:checked + label .check-img {
    background-color: white;
}

    .check-container input:checked + label::before {
        display: flex;
    }