@charset "UTF-8";
.text-main-color {
  color: #0890ab;
}

.bg-main-color {
  background-color: #0890ab;
}

.text-main-color {
  color: #0890ab;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.row-gap-24 {
  row-gap: 24px;
}

.btn-xs {
  font-size: 12px !important;
  padding: 4px 8px !important;
}

.fs-10px {
  font-size: 10px;
}

.fs-11px {
  font-size: 11px;
}

.fs-12px {
  font-size: 12px !important;
}

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

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

.fs-15px {
  font-size: 15px !important;
}

.fs-16px {
  font-size: 16px !important;
}

.fs-18px {
  font-size: 18px !important;
}

.fs-17px {
  font-size: 17px;
}

.popup-bg {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.4s;
}
.popup-bg.popupBg-active {
  visibility: visible;
  opacity: 1;
}
.popup-bg .popup-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 50%;
  border-radius: 0.3rem;
  padding: 1.5rem;
  background-color: #fff;
}
.popup-bg .popup-content .popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: bold;
  background-color: transparent;
}

.inp {
  background-color: #f3f3f3;
}
.inp::-moz-placeholder {
  font-size: 10px;
}
.inp::placeholder {
  font-size: 10px;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-150px {
  width: 150px !important;
}

.w-250px {
  width: 250px !important;
}

.w-120px {
  width: 120px !important;
}

.w-200px {
  width: 200px !important;
}

.w-180px {
  width: 180px !important;
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.sm-tooltip .tooltip-inner {
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 4px 10px 6px 10px !important;
}

.b-border {
  border: 1px solid #dddddd;
}

.full-bottom-border {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 7px;
  margin-bottom: 0px !important;
}

.right-b {
  border-right: 1px solid #d5d3d3;
  padding-right: 4px;
}

.alt-bg-color {
  background-color: #0890ab;
}

.alt2-bg-color {
  font-size: 14px !important;
  background-color: rgba(9, 145, 172, 0.8588235294);
}

.alt-text-color {
  color: #0890ab;
}

.color-gr {
  color: #2ba670;
}

.cursor-auto {
  cursor: auto;
}

.link-one {
  transition: 300ms;
  font-size: 15px;
  color: #777;
}
.link-one:hover {
  color: #303030;
}

.info-pas {
  display: none;
}

.table-dark th {
  background-color: #243848 !important;
}

.table,
.table thead {
  box-shadow: 0 0 5px 0 #ddd;
  border-radius: 5px;
}

.info-data {
  font-size: 12px;
  padding: 8px 15px;
  color: #404040;
  border-radius: 5px;
  border: 1px solid #0890ab;
}

span.a_word {
  font-size: 12px;
  color: #6e6e6e;
}

.rotate-90deg {
  transform: rotate(90deg);
}

.qr-table svg {
  width: 50px;
  height: 50px;
}

@media print {
  .table-sm-print th, .table-sm-print td {
    font-size: 13px !important;
    font-weight: normal !important;
  }
}

body {
  font-family: "Noto Kufi Arabic", sans-serif;
  background-color: #f7f6fe;
  color: black;
  font-size: 14px;
  scroll-behavior: smooth;
  direction: rtl;
}

.pagination {
  flex-wrap: wrap;
}

/* start scroll bar */
::-webkit-scrollbar {
  width: 8px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background-color: #f6f6f6;
  box-shadow: 0 0 5px 0px #ddd inset;
}

::-webkit-scrollbar-thumb {
  background-color: #0890ab;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #09829a;
}

/* end scroll bar */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

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

*:not(input, textarea, select) {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-transform: capitalize !important;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: black;
}

button {
  border: none;
  outline: none;
}

.form-control,
.form-select {
  font-size: 14px !important;
  border: 1px solid #ddd !important;
}
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(43, 166, 112, 0.25) !important;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  font-size: 11px;
}
.form-control::placeholder,
.form-select::placeholder {
  font-size: 11px;
}
.form-control.sm-placeholder::-moz-placeholder, .form-select.sm-placeholder::-moz-placeholder {
  font-size: 9.5px;
}
.form-control.sm-placeholder::placeholder,
.form-select.sm-placeholder::placeholder {
  font-size: 9.5px;
}
.form-control:focus::-moz-placeholder, .form-select:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.form-control:focus::placeholder,
.form-select:focus::placeholder {
  opacity: 0;
  transition: 0.4s;
}

.main-section {
  padding: 1.5rem 0;
  min-height: calc(100vh - 41.38px - 53.13px - 82px);
}

.dr-main-section {
  min-height: calc(100vh - 41.88px - 54px - 185px);
}

.modal-header .modal-title {
  font-size: 15px !important;
}
.modal-header .btn-close {
  margin: unset !important;
}

.getHeight {
  min-height: calc(100vh - 38.88px - 54.5px - 63px);
}

.getHeightContainer {
  min-height: calc(100vh - 41.88px - 54px - 69px - 6rem);
}

.modal.modal-img .modal-body {
  position: relative;
}
.modal.modal-img .modal-body .btn-close {
  position: absolute;
  left: 10px;
  background-color: #9c9c9c;
  top: 10px;
}

.btn-info,
.btn-warning {
  color: #fff !important;
}
.btn-info:hover,
.btn-warning:hover {
  color: #fff !important;
}
.btn-info:focus,
.btn-warning:focus {
  color: #fff !important;
}

.scrl {
  overflow: auto;
}

/*
  /* Start invoice */
.box-invoice {
  border: 2px solid black;
  border-radius: 10px;
  padding: 0 10px;
  margin-bottom: 8px;
}
.box-invoice p {
  margin-bottom: 2px;
  font-size: 15px;
}
.box-invoice h6 {
  font-size: 14px;
}

.table-invoice {
  border: 1px solid #bbb !important;
}
.table-invoice .duble-border {
  border-bottom-width: 2px;
  border-bottom-color: black;
}
.table-invoice tbody {
  border-top: none !important;
}
.table-invoice td {
  border-bottom: 1px solid #bbb !important;
  border-top: 1px solid #bbb !important;
  border-right: 1px solid #bbb !important;
  border-left: 1px solid #bbb !important;
  vertical-align: middle;
  padding: 9px !important;
  font-size: 14px;
  font-weight: bold;
}
.table-invoice th {
  border-top: 1px solid #bbb !important;
  background-color: #f4f4f4;
  border-right: 1px solid #bbb !important;
  font-size: 14px !important;
  padding: 9px !important;
  font-weight: bolder;
  border-bottom: 1px solid #bbb !important;
  border-left: 1px solid #bbb !important;
}
@media (max-width: 767.98px) {
  .table-invoice td,
  .table-invoice th {
    font-size: 10px !important;
    padding: 5px !important;
  }
  .table-invoice .w-sm {
    width: 70px !important;
  }
}
.table-invoice .td-head {
  background-color: #f4f4f4;
  border-left: 1px solid #bbb !important;
  text-align: right;
  font-size: 13px !important;
  font-weight: bold;
  width: 30%;
}
@media (max-width: 767.98px) {
  .table-invoice .td-head {
    width: 50%;
  }
  .table-invoice .td-head b {
    font-size: 10px;
  }
}

.barcode {
  max-width: 150px !important;
}

.print {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.print:hover {
  color: white;
}

@page {
  margin: 5px;
}
@media print {
  body {
    background-color: white !important;
  }
  .col-md-4 {
    width: 33.33333333% !important;
  }
  .row-cols-lg-5 > * {
    width: 20% !important;
  }
  .row-cols-lg-4 > * {
    width: 25% !important;
  }
  .table-print {
    background-color: #fff !important;
    min-height: 100vh !important;
  }
  .table,
  .table thead {
    box-shadow: none !important;
    border-radius: 5px;
  }
  .main-table {
    box-shadow: none !important;
    border: 1px solid red !important;
  }
  .main-table.table-sm {
    background-color: #fff;
  }
  .main-table.table-sm tr td {
    color: #000 !important;
    font-size: 7px !important;
    padding: 2px;
  }
  .main-table.table-sm tr th {
    color: #000 !important;
    padding: 3px;
    font-size: 8px !important;
  }
  .main-table .table-column-holder {
    margin: 0 !important;
    border: none;
  }
  .main-table .table-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: none !important;
    box-shadow: none !important;
  }
  .main-table .table-column thead {
    box-shadow: none !important;
  }
  .main-table .table-column th {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    background-color: #fff;
  }
  .main-table .table-column th:last-child {
    border: none;
  }
  .main-table .table-column th .dd {
    font-size: 8px !important;
  }
  .main-table .table-column th .dd .nn b {
    font-size: 5px !important;
  }
  .not-print {
    display: none !important;
  }
  .info-pas {
    display: block !important;
  }
  .text-holder span {
    font-size: 10px !important;
  }
  .table-responsive {
    width: 100% !important;
  }
  .ar {
    font-size: 19px !important;
  }
  .patientFile .row > * {
    width: 20%;
  }
  .patientFile .check {
    width: 50% !important;
  }
  .patientFile .data-content {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
  }
  .patientFile .data-content div {
    width: 50%;
  }
  .patientFile .data-content div p {
    font-size: 10px;
    white-space: nowrap;
  }
  .patientFile .wrapper {
    display: flex;
  }
  .patientFile .wrapper .parent {
    display: flex;
    flex-direction: column;
  }
  .patientFile .wrapper .parent .data-content div {
    width: 100%;
  }
  .patientFile .wrapper .parent .data-content div textarea {
    min-height: 140px !important;
    width: 100%;
  }
  .data-content {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100% !important;
  }
  .data-content div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100% !important;
  }
  .data-content div div {
    width: 50%;
  }
  .data-content div div p {
    font-size: 8px !important;
    white-space: wrap !important;
  }
  .data-content div div.holder {
    width: 100% !important;
  }
  .data-content div div.holder .special {
    width: 100% !important;
  }
  .data-content div div.holder .special textarea {
    width: 100% !important;
    min-height: 100px !important;
  }
  .casher-invoice .box-header-inv {
    border: 1px solid #000;
    padding: 5px;
  }
  .casher-invoice .box-header-inv .info {
    font-size: 10px;
  }
  .casher-invoice .invoice-content {
    padding: 10px !important;
  }
  .casher-invoice .invoice-name {
    font-size: 10px !important;
  }
  .casher-invoice .logo-holder {
    width: 100% !important;
  }
  .casher-invoice .logo-holder .the_image {
    width: 100% !important;
    max-width: 100% !important;
    height: 130px !important;
  }
  .casher-invoice .the_address p {
    font-size: 11px !important;
  }
  .casher-invoice .tax {
    font-size: 11px;
  }
  .casher-invoice .the_date {
    font-size: 11px;
  }
  .casher-invoice div b {
    font-size: 11px !important;
  }
  .casher-invoice .main-table tr th {
    font-size: 7px;
    color: #000 !important;
    padding: 4px;
  }
  .casher-invoice .main-table tr td {
    font-size: 7px;
    color: #000 !important;
    padding: 4px;
  }
  .casher-invoice .bototm-table .dd {
    font-size: 11px !important;
  }
  .casher-invoice .bototm-table .dd .nn {
    font-size: 11px !important;
  }
  .casher-invoice .wel {
    margin: auto !important;
    padding: 0 !important;
    font-size: 12px !important;
    text-align: center !important;
  }
  .casher-invoice .bar_code_holder {
    width: 40% !important;
    margin-top: 10px;
  }
  .casher-invoice .bar_code_holder svg {
    width: 100% !important;
    height: 100% !important;
  }
  .casher-invoice .parent-boxes-info {
    margin-top: 10px !important;
    width: 80% !important;
  }
  .invoice-section {
    padding: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }
  .invoice-section .container {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .invoice-section .container .invoice-content {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}
.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.968627451);
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
}
.loader-container .the_loader {
  border-radius: 50%;
  width: 400px;
  height: 400px;
}
.loader-container.hidden-loader {
  opacity: 0;
  visibility: hidden;
}
.loader-container .box-invoice .col-md-4.p-3 {
  width: 33.3333333333%;
}
.loader-container .box-invoice .col-md-4.p-3 * {
  font-size: 14px;
}
.loader-container .box-invoice .col-md-4.p-3 img {
  width: 100px;
}
.loader-container .parent-barcode {
  width: 25%;
}
.loader-container .table-info {
  width: 74%;
}
.loader-container .table-invoice {
  margin: 0;
}
.loader-container .table-invoice th {
  font-size: 10px !important;
}
.loader-container .table-invoice td {
  font-size: 11px !important;
}
.loader-container .table-invoice td b {
  font-size: 11px;
}

/* Start  num-teeth */
section.num-teeth {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.num-teeth .content {
  width: 700px;
  position: relative;
  margin: auto;
}

section.num-teeth .content > img {
  max-width: 100%;
}

section.num-teeth .content input[type=checkbox] {
  width: 5px;
  position: absolute;
  height: 5px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

section.num-teeth .content input[type=checkbox]::before {
  content: "";
  width: 27px;
  position: absolute;
  background-color: transparent;
  left: 50%;
  cursor: pointer;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 27px;
}

section.num-teeth .content input[type=checkbox]::after {
  content: "";
  width: 10px;
  cursor: pointer;
  box-shadow: 0 0 7px 0 #0e54ae;
  position: absolute;
  background-color: #0e54ae;
  left: 50%;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 10px;
}

section.num-teeth .content input[type=checkbox]:checked:after {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  box-shadow: 0 0 0px 0 #0e54ae;
  filter: drop-shadow(2px 4px 6px #03a0bc);
  cursor: pointer;
  font-size: 35px;
  color: #03a0bc;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 575.98px) {
  section.num-teeth .container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.num-teeth .content input[type=checkbox]::before {
    width: 10px;
    height: 10px;
  }
  section.num-teeth .content input[type=checkbox]::after {
    width: 5px;
    height: 5px;
  }
  section.num-teeth .content input[type=checkbox]:checked:after {
    font-size: 10px;
  }
}
section.num-teeth .content input[type=checkbox]:nth-of-type(1) {
  left: 4.7%;
  top: 39%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(2) {
  left: 11.5%;
  top: 40.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(3) {
  left: 18.7%;
  top: 41.7%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(4) {
  left: 24.8%;
  top: 43.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(5) {
  left: 29.7%;
  top: 44%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(6) {
  left: 35.3%;
  top: 44.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(7) {
  left: 40.7%;
  top: 45%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(8) {
  left: 46.3%;
  top: 45%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(9) {
  left: 52.3%;
  top: 44.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(10) {
  left: 57.8%;
  top: 44.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(11) {
  left: 63.6%;
  top: 44.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(12) {
  left: 69%;
  top: 44.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(13) {
  left: 73.8%;
  top: 44.3%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(14) {
  left: 80.21%;
  top: 43%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(15) {
  left: 87.4%;
  top: 41.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(16) {
  left: 94.6%;
  top: 39.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(17) {
  left: 94.6%;
  top: 51%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(18) {
  left: 86.1%;
  top: 52%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(19) {
  left: 78.25%;
  top: 54.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(20) {
  left: 71.77%;
  top: 56.1%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(21) {
  left: 66.37%;
  top: 56.7%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(22) {
  left: 61%;
  top: 57%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(23) {
  left: 56.1%;
  top: 57.3%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(24) {
  left: 51.65%;
  top: 57.7%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(25) {
  left: 47%;
  top: 57.5%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(26) {
  left: 42.75%;
  top: 57.3%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(27) {
  left: 37.8%;
  top: 57.3%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(28) {
  left: 32.35%;
  top: 56.7%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(29) {
  left: 26.9%;
  top: 56%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(30) {
  left: 20.25%;
  top: 54.6%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(31) {
  left: 12.5%;
  top: 51.6%;
}

section.num-teeth .content input[type=checkbox]:nth-of-type(32) {
  left: 4.3%;
  top: 50.5%;
}

/* End  num-teeth */
.resize {
  max-width: 240px;
}

.resize-svg-Bo {
  width: 20px;
  height: 20px;
}

.tooltip-inner {
  max-width: 380px;
  width: 350px;
  letter-spacing: 2;
  padding: 10px;
  padding-bottom: 15px;
  line-height: 1.8;
}

.resize_ale {
  width: 250px !important;
  padding: 7px !important;
  font-size: 11px !important;
}

.resize_ale-2 {
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 10px !important;
  font-size: 13px !important;
}

.space-noWrap {
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .sw-100 {
    width: 100% !important;
  }
}
@media (max-width: 1199.98px) {
  .lw-100 {
    width: 100% !important;
  }
}
.medical-information .more-info {
  padding: 10px;
  background-color: #f0eff8;
  font-size: 16px !important;
  transition: 300ms;
}
.medical-information .more-info::after {
  transition: 0.4s;
  content: "+";
  position: absolute;
  font-weight: 600;
  float: left;
  left: 15px;
}
.medical-information .more-info.active::after {
  transition: 300ms;
  content: "−" !important;
}
.medical-information .more-info:hover {
  background-color: #e9e8ea;
}
.medical-information .data-content {
  transition: 0.4s;
  padding: 15px 15px 0;
  max-height: 0px;
  overflow: hidden;
}
.medical-information .data-content div {
  padding: 10px 0;
}
.medical-information .data-content div .radioarea {
  background-color: rgba(235, 235, 235, 0.9607843137);
  padding: 6px !important;
  margin-bottom: 15px;
}

.lang-control {
  font-size: 35px;
}

.lang {
  font-size: 23px;
}

.casher-invoice {
  font-size: 15px;
  min-height: 100vh;
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f7f6fe;
  position: relative;
}
@media print {
  .casher-invoice {
    padding: 0 !important;
    font-size: 13px;
  }
  .casher-invoice .container {
    width: 100% !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  .casher-invoice td,
  .casher-invoice th {
    padding: 2px !important;
  }
}
.casher-invoice .main-table th,
.casher-invoice .main-table td {
  border: 1px solid #000 !important;
  font-size: 10px !important;
  color: #000 !important;
}
.casher-invoice .text-mark {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: 700;
  border-radius: 30px;
  opacity: 0.1;
  border: 1px solid #ddd;
}
@media (max-width: 767.98px) {
  .casher-invoice .text-mark {
    left: 50%;
    top: 30%;
    font-size: 50px;
    transform: translate(-50%, -50%);
  }
}
.casher-invoice .invoice-content .logo-holder .the_image {
  width: 125px;
  height: auto;
  max-width: 100%;
}
.casher-invoice .invoice-content .bototm-table b {
  font-size: 16px;
  color: #444;
  font-weight: 600;
}
@media print {
  .casher-invoice .invoice-content .bar_code_holder {
    width: 42% !important;
  }
  .casher-invoice .invoice-content .bar_code_holder svg {
    width: 100% !important;
  }
}
.casher-invoice .invoice-content .parent-boxes-info {
  width: 35%;
}
.casher-invoice .invoice-content .parent-boxes-info .box-info-border {
  border: 1px dotted black;
  padding: 2px;
  display: flex;
  font-size: 15px !important;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .casher-invoice .invoice-content .parent-boxes-info {
    width: 100%;
  }
}

.room {
  position: relative;
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  width: 87px;
}
.room.bg-danger {
  background-color: #fd2c32 !important;
}
.room.bg-success {
  background-color: #2ecc6f !important;
}
.room .toltip-table {
  position: absolute;
  background-color: #2c2c2c;
  top: 52px;
  left: 0px;
  padding: 5px 7px;
  color: white;
  width: fit-content;
  width: -moz-fit-content;
  white-space: nowrap;
  transform: translateX(-50%);
  text-align: start;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  transition: 300ms;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.room .toltip-table .data > li {
  font-size: 12px;
  line-height: 28px;
}
.room .toltip-table::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 0;
  border-width: 8px;
  border-color: transparent transparent #2c2c2c transparent;
  border-style: solid;
}
.room:hover .toltip-table {
  visibility: visible;
  opacity: 1;
}

section.app {
  font-size: 15px;
}
section.app select {
  font-size: 15px;
}
section.app .list-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
section.app .cards .card-app {
  border: 1px solid #ddd;
  background-color: white;
  height: -moz-fit-content;
  height: fit-content;
}
section.app .cards .card-app .title-card-app {
  background-color: #eee;
  color: #777;
  font-size: 13.5px;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
}
section.app .cards .card-app .body-card-app {
  overflow-y: auto;
  padding: 0 7px;
  padding-bottom: 5px;
}
section.app .cards .card-app .body-card-app.content {
  height: calc(100% - 51.16px - 55.19px);
}
section.app .cards .card-app .body-card-app td,
section.app .cards .card-app .body-card-app th {
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
}
section.app .cards .card-app .body-card-app td .control-num,
section.app .cards .card-app .body-card-app th .control-num {
  cursor: pointer;
}
section.app .cards .card-app .body-card-app .footer-table {
  background-color: #f0f0f0;
}
section.app .cards .card-app .body-card-app .footer-table .num {
  background-color: white;
  border-radius: 3px;
  border: 1px solid #eee;
  padding: 5px 10px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
section.app .cards .card-app .body-card-app .list-orders {
  max-height: 169px;
  display: grid;
  gap: 8px;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  section.app .cards .card-app .body-card-app .list-orders {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  section.app .cards .card-app .body-card-app .list-orders {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  section.app .cards .card-app .body-card-app .list-orders {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
section.app .btns-control .btn {
  height: 40px;
  display: flex;
  align-items: center;
  width: 100% !important;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 767.98px) {
  .full-w {
    width: 94% !important;
  }
}

.main-content {
  padding: 50px 0;
}
.main-content .box {
  background-color: #fff;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 10px;
  padding: 20px;
}
.main-content .box .header {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
}
.main-content .box .header h3 {
  font-size: 18px;
}
.main-content .box .header .logo {
  width: 120px;
}
.main-content .box .header .logo img {
  width: 100%;
}
.main-content .box .content {
  direction: rtl;
  padding: 20px;
}
.main-content .box .content p {
  font-weight: 800;
}
.main-content .box .content span {
  font-weight: 400;
}
.main-content .box .table-responsive {
  overflow-x: auto;
}
.main-content .box .table-responsive table {
  width: 100%;
}
.main-content .box .table-responsive table thead {
  background-color: #f3f3f3;
}
.main-content .box .table-responsive table thead tr th {
  text-align: center;
  border: 1px solid #000;
  padding: 10px 20px;
}
.main-content .box .table-responsive table tbody tr td {
  text-align: center;
  border: 1px solid #000;
  padding: 10px 20px;
}
.main-content .box .foot-text .qr {
  width: 100px;
}
.main-content .box .foot-text .qr img {
  width: 100%;
}

.swal-alert-info .swal2-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.fit-tooltip .tooltip-inner {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px;
  line-height: normal;
}

.app-tree {
  display: flex;
  align-items: stretch;
  gap: 22px;
}
.app-tree .sidebar-app {
  width: 250px;
  background-color: #676767;
  padding: 7px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: white;
}
.app-tree .sidebar-app .close {
  background-color: transparent;
  font-size: 25px;
  color: white;
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 7px 15px;
}
.app-tree .sidebar-app .item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 20px;
  color: white !important;
  font-size: 14px;
  transition: 300ms;
  font-weight: 500;
  line-height: normal;
}
.app-tree .sidebar-app .item:hover {
  background-color: rgba(0, 0, 0, 0.079);
}
.app-tree .sidebar-app .item.active {
  font-size: 14px;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.079);
}
.app-tree .sidebar-app .item .icon {
  font-size: 16px;
}
.app-tree .sidebar-app .item .arrow {
  margin-right: auto;
  font-size: 12px;
  font-weight: 300;
  transition: transform ease-in-out 0.3s;
}
.app-tree .sidebar-app .item.set-border {
  border-bottom: 1px solid #898989;
}
.app-tree .sidebar-app .item[aria-expanded=true] .arrow {
  transform: rotate(90deg);
}
.app-tree .sidebar-app .bar {
  background-color: #efefef;
  height: 0.5px;
  width: 100%;
}
.app-tree .sidebar-app .option-section {
  display: flex;
  flex-direction: column;
}
.app-tree .sidebar-app .option-section .a_content {
  position: relative;
}
.app-tree .sidebar-app .option-section .a_content::before {
  content: "";
  position: absolute;
  transform: rotate(180deg);
  width: 6%;
  height: 45px;
  top: 23px;
  right: 4px;
  z-index: 1111;
  border: 1px dashed #999;
  visibility: visible;
  opacity: 1;
}
.app-tree .sidebar-app .option-section .item {
  padding: 7px 10px;
  border-radius: 4px;
  color: #c2c7d0;
  display: flex;
  gap: 10px;
  position: relative;
  font-size: 13px;
  align-items: center;
}
.app-tree .sidebar-app .option-section .item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.app-tree .sidebar-app .option-section .item .arrow-after {
  display: none;
  color: #c2c7d0;
  font-size: 14px;
}
.app-tree .sidebar-app .option-section .item .arrow-before {
  color: #c2c7d0;
  font-size: 14px;
}
.app-tree .sidebar-app .option-section .item .content-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.app-tree .sidebar-app .option-section .item .content-item i {
  color: #c2c7d0;
  font-size: 16px;
}
.app-tree .sidebar-app .option-section .item .content-item svg {
  color: #c2c7d0;
  font-size: 16px;
}
.app-tree .sidebar-app .option-section .collapse-border {
  position: relative;
}
.app-tree .sidebar-app .option-section .collapse-border .item::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background-color: #c2c7d0;
}
.app-tree .sidebar-app .option-section .collapse-border::before {
  content: "";
  position: absolute;
  right: 13.5px;
  top: 0;
  height: calc(100% - 17px);
  width: 1px;
  background-color: #c2c7d0;
}
.app-tree .sidebar-app .option-section .item[aria-expanded=true] .arrow-before {
  display: none;
}
.app-tree .sidebar-app .option-section .item[aria-expanded=true] .arrow-after {
  display: block;
}
.app-tree .sidebar-app .option-section .mar-side {
  margin-right: 30px;
}
.app-tree .btn-sidebar {
  width: -moz-fit-content;
  width: fit-content;
  background: #efefef;
  color: black;
  display: none;
  font-size: 29px;
  padding: 5px 12px;
  border-radius: 3px;
}
.app-tree .content-app {
  flex: 1;
}
@media (max-width: 1199.98px) {
  .app-tree {
    gap: 1rem;
    flex-direction: column;
  }
  .app-tree .sidebar-app {
    position: fixed;
    right: -270px;
    z-index: 9999;
    transition: 300ms;
    top: 0;
    overflow-y: auto;
    height: 100%;
  }
  .app-tree .sidebar-app .close {
    display: block;
  }
  .app-tree .sidebar-app.active {
    right: 0;
  }
  .app-tree .btn-sidebar {
    display: block;
  }
}

.inv-page .main-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 20px;
  gap: 20px;
}
.inv-page .main-head h1.ar {
  font-size: 33px;
  font-weight: normal;
}
.inv-page .main-head h1.ar span {
  font-weight: bold;
}
.inv-page .main-head img {
  width: 64px;
}
.inv-page .qr-table-holder > svg {
  width: 100px;
  height: 100px;
}
.inv-page .text {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
}
.inv-page .print {
  text-decoration: none;
  color: white;
  background-color: #2fc2df;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin: 20px auto 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 200px) and (max-width: 576px) {
  .inv-page table {
    font-size: 6px !important;
  }
  .inv-page table tr td,
  .inv-page table tr th {
    padding: 4px 3px !important;
  }
  .inv-page .qr-table-holder > svg {
    width: 50px;
    height: 50px;
  }
  .inv-page section {
    padding: 0 5px;
  }
  .inv-page .main-head {
    margin-bottom: 10px;
  }
  .inv-page .main-head h1.ar {
    font-size: 21px;
  }
  .inv-page .height {
    height: 30px !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .inv-page table {
    font-size: 8px !important;
  }
  .inv-page .main-head {
    margin-bottom: 10px;
  }
  .inv-page .qr-table-holder > svg {
    width: 75px;
    height: 75px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .inv-page table {
    font-size: 10px !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .inv-page table {
    font-size: 11px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .inv-page table {
    font-size: 12px !important;
  }
}
@media print {
  .inv-page .main-section {
    background-color: #fff;
  }
  .inv-page section {
    padding: 0 !important;
  }
  .inv-page body {
    font-size: 5px;
  }
  .inv-page .print {
    display: none;
  }
  .inv-page table,
  .inv-page th,
  .inv-page td {
    padding: 3px !important;
    border: 1px solid black;
  }
  .inv-page table tr td .cen {
    left: 32% !important;
  }
  .inv-page table tr td .cen.one {
    left: 40% !important;
  }
  .inv-page .qr-table-holder {
    width: 100%;
    text-align: center;
    margin-right: 15px !important;
  }
  .inv-page .qr-table-holder > svg {
    width: 85px;
    height: 85px;
  }
}

.inv-prt {
  margin: auto;
  width: 100% !important;
  font-size: 14px !important;
}
.inv-prt tr td,
.inv-prt tr th {
  padding: 5px;
  position: relative;
}
.inv-prt tr td .rig {
  float: right;
}
.inv-prt tr td .lef {
  float: left;
  margin-right: 5px;
}
.inv-prt tr td .cen {
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.inv-prt,
.inv-prt th,
.inv-prt td {
  border: 1px solid black;
  border-collapse: collapse;
}
.inv-prt tr td.hidd-1,
.inv-prt tr td.hidd-2 {
  border-left-color: transparent;
}
.inv-prt .qr-table-holder {
  width: 100%;
  text-align: center;
}
.inv-prt .qr-table-holder > svg {
  width: 100px;
  height: 100px;
}

@media print {
  .inv-prt {
    width: 100%;
    font-size: 9px !important;
  }
  .inv-prt tr td div {
    display: flex;
    float: unset;
    justify-content: space-between;
  }
  .inv-prt tr td .pir-r {
    margin-left: 25px;
  }
  .inv-prt tr td .pir-l {
    margin-right: 25px;
  }
  .inv-prt .qr-table-holder {
    width: 100%;
    text-align: center;
    margin-right: 15px !important;
  }
  .inv-prt .qr-table-holder > svg {
    width: 85px;
    height: 85px;
  }
}
.top-nav {
  background-color: #0890ab;
  color: white;
  font-size: 13px;
  z-index: 1000;
}
.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.top-nav .container .tog-show {
  margin: 10px 0;
  display: none;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .top-nav .container .tog-show {
    display: block;
  }
}
.top-nav .container .tog-show i,
.top-nav .container .tog-show svg {
  font-size: 20px;
}
.top-nav .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-nav .container a {
  color: white;
  font-size: 11px;
}
.top-nav .container .list-item {
  display: flex;
  z-index: 900;
  align-items: center;
}
.top-nav .container .list-item.notification li .item {
  padding: 0.7rem 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-nav .container .list-item.notification li .item .i-item {
  font-size: 19px;
}
.top-nav .container .list-item.notification li .item .badge-count {
  font-size: 10px;
  height: 14px;
  width: 12px;
  border-radius: 3px;
  position: absolute;
  top: 5px;
  text-align: center;
  right: 0;
}
@media (max-width: 991.98px) {
  .top-nav .container .list-item {
    flex-direction: column;
    position: absolute;
    top: 100%;
    min-width: 200px;
    display: none;
    right: 0;
    background-color: #313131;
  }
  .top-nav .container .list-item li {
    width: 100%;
  }
  .top-nav .container .list-item li a {
    border-bottom: 1px solid #9c9c9c;
    width: 100%;
    transition: 300ms;
  }
  .top-nav .container .list-item li a::before {
    display: none;
  }
  .top-nav .container .list-item li a:hover {
    color: #0890ab;
  }
}
.top-nav .container .list-item li a {
  padding: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.top-nav .container .list-item li a::before {
  content: "";
  width: 100%;
  left: 100%;
  bottom: 3px;
  transition: 300ms;
  position: absolute;
  height: 3px;
  background-color: white;
}
.top-nav .container .list-item li a:hover::before {
  left: 0;
}

.bottom-nav {
  box-shadow: 0 5px 10px 0 rgba(228, 228, 228, 0.5215686275);
  border-bottom: 3px solid #0890ab;
  background-color: white;
  z-index: 1000;
}
.bottom-nav .container .tog-show {
  display: none;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .bottom-nav .container .tog-show {
    display: inline-block;
    margin: 10px 0;
  }
}
.bottom-nav .container .tog-show i,
.bottom-nav .container .tog-show svg {
  font-size: 23px;
  color: black;
}
.bottom-nav .container .list-item {
  display: flex;
  z-index: 111;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 991.98px) {
  .bottom-nav .container .list-item {
    flex-direction: column;
    display: none;
  }
}
.bottom-nav .container .list-item li .item {
  padding: 1rem 0.7rem;
  display: block;
  transition: 300ms;
  color: black;
  font-size: 13px;
  white-space: nowrap;
  position: relative;
}
.bottom-nav .container .list-item li .item .badge-count {
  position: absolute;
  left: 1px;
  top: 23%;
}
.bottom-nav .container .list-item li .item .i-item {
  transition: 300ms;
  color: #8f9ab8;
  font-size: 15px;
  margin-right: 2px;
}
.bottom-nav .container .list-item li .item:hover {
  color: #09adce;
}
.bottom-nav .container .list-item li .item:hover i,
.bottom-nav .container .list-item li .item:hover svg {
  color: #09adce;
}
.bottom-nav .container .list-item li .dropdown-hover {
  display: flex;
}

.section-guide .img {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.section-guide .img img {
  width: 100%;
  height: auto;
}
.section-guide .img iframe {
  width: 100%;
  height: 300px;
}
.section-guide .image-holder {
  max-width: 183px;
  margin: 0 auto;
}
.section-guide .image-holder img {
  width: 100%;
  height: auto;
}

.bg-gray {
  background-color: rgb(214, 214, 214);
}

.title-style-font {
  font-family: "Rubik", sans-serif;
}

.addPatient-section .addPatient-content .section-title {
  background-color: #f0eff8;
}
.addPatient-section .addPatient-content .Patient-form-data .medical-information .more-info {
  padding: 10px;
  background-color: #f0eff8;
  font-size: 16px !important;
  transition: 300ms;
}
.addPatient-section .addPatient-content .Patient-form-data .medical-information .more-info::after {
  transition: 0.4s;
  content: "+";
  position: absolute;
  font-weight: 600;
  float: left;
  left: 15px;
}
.addPatient-section .addPatient-content .Patient-form-data .medical-information .more-info.active::after {
  transition: 300ms;
  content: "−" !important;
}
.addPatient-section .addPatient-content .Patient-form-data .medical-information .more-info:hover {
  background-color: #e9e8ea;
}
.addPatient-section .addPatient-content .Patient-form-data .medical-information .data-content {
  transition: 0.4s;
  padding: 15px 15px 0;
  max-height: 0px;
  overflow: hidden;
}
.addPatient-section .addPatient-content .Patient-form-data .medical-information .data-content div {
  padding: 10px 0;
}
.addPatient-section .addPatient-content .Patient-form-data .medical-information .data-content div .radioarea {
  background-color: rgba(235, 235, 235, 0.9607843137);
  padding: 6px !important;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .newAppoints .newAppoints-content .dates-info {
    width: 75% !important;
  }
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.special-table thead {
  border: 1px solid #ddd !important;
}
.special-table thead tr {
  border: 1px solid #ddd !important;
}
.special-table thead tr th {
  border: 1px solid #ddd !important;
  background-color: #f9fafb;
  font-size: 13px;
  white-space: nowrap;
  padding: 4px;
  height: 43px;
  vertical-align: middle;
  color: #6b7280;
  font-weight: 600;
}
.special-table tbody {
  border: 1px solid #ddd !important;
}
.special-table tbody tr {
  border: 1px solid #ddd !important;
}
.special-table tbody tr td {
  border: 1px solid #ddd !important;
  vertical-align: middle;
  background-color: white;
  height: 41px;
  font-size: 12px;
  color: #444;
  padding: 4px;
  position: relative;
}
.special-table tbody tr td:hover .toltip-table {
  visibility: visible;
  opacity: 1;
}
.special-table tbody tr td:not(:last-of-type) {
  background-color: #eee;
}
.special-table tbody tr td .toltip-table {
  background-color: #2c2c2c;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  white-space: nowrap;
  font-size: 15px;
  transform: translateX(-50%);
  text-align: start;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: 300ms;
  z-index: 1000;
}
.special-table tbody tr td .toltip-table::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-width: 10px;
  border-style: solid;
  border-color: #2c2c2c transparent transparent transparent;
  transform: translateX(-50%);
  z-index: 1500;
}

.section-content .status .box .color {
  width: 18px;
  height: 18px;
  border-radius: 3px;
}
.section-content .status .box .one {
  background-color: #eee;
}
.section-content .status .box .two {
  background-color: #5cb85c;
}
.section-content .status .box .three {
  background-color: #ffbb33;
}
.section-content .status .box .four {
  background-color: #d9534f;
}
.section-content .status .box .five {
  background-color: #428bca;
}
.section-content .status .box .six {
  background-color: #009688;
}
.section-content .status .box .seven {
  background-color: rgb(231, 9, 9);
}
.section-content .status .box .text {
  font-family: Arial, Helvetica, sans-serif;
}

.table-color tr:nth-of-type(1) .toltip-table,
.table-color tr:nth-of-type(2) .toltip-table {
  bottom: unset;
  top: calc(100% + 10px);
}

.table-color tr td:nth-of-type(1) .toltip-table {
  transform: translateX(0%);
  left: unset;
  right: 0;
}

.table-color tr:nth-of-type(1) .toltip-table::before,
.table-color tr:nth-of-type(2) .toltip-table::before {
  top: unset;
  bottom: 100%;
  border-color: transparent transparent #2c2c2c transparent;
}

.table-color tr td:nth-of-type(1) .toltip-table::before {
  transform: translateX(0);
  left: unset;
  right: 10px;
}

.table-color .bg-didNot-attend {
  background-color: #ff4444 !important;
}
.table-color .bg-bookedUp {
  background-color: #00c851 !important;
}
.table-color .bg-available {
  background-color: #bbb !important;
}
.table-color .bg-attended {
  background-color: #428bca !important;
}
.table-color .bg-online {
  background-color: #ffbb33 !important;
  white-space: nowrap;
}
.table-color .bg-converters {
  background-color: #009688 !important;
}

section.page-login {
  padding: 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  align-items: center;
  background-color: rgb(249, 250, 251);
}
section.page-login .form-login {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin-left: auto;
  overflow: hidden;
  margin-right: auto;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  background-color: #fff;
  border: 0 solid #d5d6d7;
}
@media (min-width: 768px) {
  section.page-login .form-login {
    max-width: 56rem;
  }
}
section.page-login .form-login .box-login {
  flex-direction: column;
  display: flex;
}
@media (min-width: 768px) {
  section.page-login .form-login .box-login {
    flex-direction: row;
  }
}
section.page-login .form-login .box-login .img-login {
  height: 13.5rem;
  width: 100%;
}
section.page-login .form-login .box-login .img-login .login-swiper {
  width: 100%;
  height: 100%;
}
section.page-login .form-login .box-login .img-login .login-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0890ab;
}
section.page-login .form-login .box-login .img-login img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  section.page-login .form-login .box-login .img-login {
    height: auto;
    width: 50%;
  }
}
section.page-login .form-login .box-login .content-login {
  width: 100%;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  section.page-login .form-login .box-login .content-login {
    width: 50%;
  }
}
section.page-login .form-login .box-login .content-login .title {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
}
section.page-login .form-login .box-login .content-login .lable {
  margin-bottom: 4px;
}
section.page-login .form-login .box-login .content-login .form-control:focus {
  box-shadow: 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
}
section.page-login .form-login .box-login .content-login .acc-new {
  display: block;
  color: #0890ab;
}
section.page-login .form-login .box-login .content-login .sub {
  transition-duration: 0.15s;
  transition-property: background-color, border-color, color, fill, stroke;
  width: 100%;
  color: white;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #0890ab;
  cursor: pointer;
}
section.page-login .form-login .box-login .content-login .logo-footer {
  width: 150px;
}

section.page-404 {
  height: 100vh;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777777;
  flex-direction: column;
}
section.page-404 .icon-404 {
  font-size: 85px;
  margin-bottom: 0.3rem;
}
section.page-404 .num {
  font-size: 40px;
  margin-bottom: 0rem;
}
section.page-404 .text {
  color: #c5c8c6;
  font-size: 18px;
}

.btn-main-sm {
  padding: 0.3rem 0.7rem;
  transition: 300ms;
  color: #fff;
  background: #2ba670;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  outline: none;
  border: 1px solid #2ba670;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.btn-main-sm::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  transition: 300ms;
  height: 100%;
  background-color: white;
  z-index: -1;
}
.btn-main-sm:hover {
  color: #2ba670;
  border: 1px solid #2ba670;
}
.btn-main-sm:hover::before {
  left: 0;
}

.sec-btn-gre {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 9px;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #fff;
  border: 1px solid #2ba670;
  border-radius: 1px;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
  color: #fff;
  transition: 0.4s;
}
.sec-btn-gre i,
.sec-btn-gre svg {
  font-size: 15px;
}
.sec-btn-gre:hover {
  color: #2ba670;
}
.sec-btn-gre::before {
  content: "";
  position: absolute;
  left: 0%;
  width: 100%;
  height: 180%;
  z-index: -1;
  background-color: #2ba670;
  transition: 0.4s;
  top: 0;
  border-radius: 0 0 50% 50%;
}
.sec-btn-gre:hover::before {
  height: 0%;
}

.btn-purple {
  color: white;
  background-color: #8e44ad;
}
.btn-purple:focus {
  box-shadow: none !important;
}
.btn-purple:hover {
  background-color: #7d3d99;
  color: white;
}

.dropdown-hover {
  position: relative;
  color: white;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 4px;
  z-index: 1001;
  cursor: pointer;
}
.dropdown-hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  left: 0;
  top: 100%;
}
.dropdown-hover:hover .listis-item {
  display: block;
}
.dropdown-hover .icon-drop {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #9c9c9c;
}
.dropdown-hover .icon-drop .icon {
  font-size: 16px;
}
.dropdown-hover .text {
  margin: 0;
  font-size: 13px;
  text-align: center;
}
.dropdown-hover .listis-item {
  position: absolute;
  left: 0px;
  z-index: 10000;
  top: 100%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  min-width: 100%;
  background-color: #313131;
  overflow-y: auto;
  display: none;
}
.dropdown-hover .listis-item::-webkit-scrollbar {
  display: none;
}
.dropdown-hover .listis-item {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.dropdown-hover .listis-item.nospace {
  top: calc(100% + 7px);
}
.dropdown-hover .listis-item .item-drop a,
.dropdown-hover .listis-item .item-drop button {
  display: flex;
  background-color: #313131;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 10px;
  width: 100%;
  white-space: nowrap;
  z-index: 11111;
}
.dropdown-hover .listis-item .item-drop a:hover,
.dropdown-hover .listis-item .item-drop button:hover {
  background: #4e4e4e;
}
.dropdown-hover .listis-item .item-drop a .icon-drop,
.dropdown-hover .listis-item .item-drop button .icon-drop {
  width: 19px;
}
.dropdown-hover .listis-item .item-drop a .text,
.dropdown-hover .listis-item .item-drop button .text {
  size: 19px;
  color: white;
}

.badge-count {
  background-color: orangered;
  height: 14px;
  min-width: 13px;
  font-size: 10px;
  line-height: 14px;
  border-radius: 4px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text {
  color: white;
  background-color: #ff384a;
  border-radius: 0.5rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.closeBtn-Color {
  background-color: #f14343 !important;
  width: 70px;
  color: #2ba670;
  transition: 0.4s;
}
.closeBtn-Color:hover {
  color: #2ba670;
  background-color: #df3333 !important;
}

.trans-btn {
  background-color: #528de3;
  border: 1px solid #528de3;
  color: #fff;
}
.trans-btn:hover {
  background-color: #377fe8;
  border: 1px solid #377fe8;
  color: #fff;
}

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

.accordion-button::after {
  margin-right: auto;
  margin-left: 0px !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(43, 166, 112, 0.25) !important;
}

.accordion-button:not(.collapsed) {
  color: #809c8f;
  background-color: rgba(43, 166, 112, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}

.accordion-button:not(.collapsed)::after {
  background-image: url(https://www.svgrepo.com/show/83098/down-arrow.svg) !important;
}

.main-heading {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 1.5rem;
}

.small-heading {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 5px;
  font-weight: 600;
}

.small-label {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 2px;
}

.sm-heading {
  color: #767575;
  font-size: 15px;
}

.main-head {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: #01b3e4;
  color: white;
  line-height: 15px;
}
.main-head::before {
  content: "";
  position: absolute;
  top: 100%;
  inset-inline-start: 1rem;
  border-style: solid;
  border-width: 7px;
  border-color: #01b3e4 transparent transparent transparent;
}
.main-head.btn-head::before {
  opacity: 0;
  transition: 300ms;
}
.main-head.btn-head.active::before {
  opacity: 1;
}

.title-bg {
  background-color: #D9D9D9;
  padding: 4px 8px;
  width: 100%;
  border-radius: 0.2rem;
  text-align: center;
  margin-bottom: 5px;
}

.boxes-info .box-info {
  background-color: white;
  padding: 20px 15px;
  text-align: end;
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
  box-shadow: 0 0 6px 0 #d3d3d3;
  transition: 300ms;
}
.boxes-info .box-info:hover {
  box-shadow: 0 0 6px 0 #aeaaaa;
}
.boxes-info .box-info.blue .bg-icon {
  color: #5b8af0;
}
.boxes-info .box-info.green .bg-icon {
  color: #2ba670;
}
.boxes-info .box-info.pur .bg-icon {
  color: #7b74eb;
}
.boxes-info .box-info.red .bg-icon {
  color: #de5f56;
}
.boxes-info .box-info .num {
  font-size: 20px;
}
.boxes-info .box-info .text {
  font-size: 16px;
  color: #6b7280;
}
.boxes-info .box-info .bg-icon {
  position: absolute;
  right: -3%;
  bottom: 0;
  font-size: 55px;
}
.boxes-info.boxes-bg-color .box-info {
  color: white;
}
.boxes-info.boxes-bg-color .box-info .text {
  color: white;
}
.boxes-info.boxes-bg-color .box-info .bg-icon {
  color: white;
}
.boxes-info.boxes-bg-color .box-info.blue {
  background-color: #5b8af0;
}
.boxes-info.boxes-bg-color .box-info.green {
  background-color: #2ba670;
}
.boxes-info.boxes-bg-color .box-info.pur {
  background-color: #7b74eb;
}
.boxes-info.boxes-bg-color .box-info.red {
  background-color: #de5f56;
}

.boxes-info-5 {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .boxes-info-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .boxes-info-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.boxes-info-5 .box-info {
  background-color: white;
  padding: 25px 15px;
  text-align: end;
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
  box-shadow: 0 0 6px 0 #d3d3d3;
  transition: 300ms;
}
.boxes-info-5 .box-info:hover {
  box-shadow: 0 0 6px 0 #aeaaaa;
}
.boxes-info-5 .box-info.blue .bg-icon {
  color: #5b8af0;
}
.boxes-info-5 .box-info.green .bg-icon {
  color: #2ba670;
}
.boxes-info-5 .box-info.pur .bg-icon {
  color: #7b74eb;
}
.boxes-info-5 .box-info.red .bg-icon {
  color: #de5f56;
}
.boxes-info-5 .box-info.orange .bg-icon {
  color: orangered;
}
.boxes-info-5 .box-info .num {
  font-size: 25px;
}
.boxes-info-5 .box-info .text {
  font-size: 16px;
  color: #6b7280;
}
.boxes-info-5 .box-info .bg-icon {
  position: absolute;
  right: -3%;
  bottom: 0;
  font-size: 60px;
}

.box-header-invoice {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  display: none;
}
@media print {
  .box-header-invoice {
    display: block;
  }
  .box-header-invoice .col-md-8 {
    width: 66.66666667% !important;
  }
  .box-header-invoice .col-md-4 {
    width: 33.33333333% !important;
  }
}
.box-header-invoice .img-logo {
  width: 70px;
}

.own-table {
  width: 100%;
  border-radius: 7px;
  border: none !important;
  border: 1px solid #ddd !important;
}
.own-table tr {
  border: 1px solid #ddd !important;
}
.own-table tr th {
  background-color: #f9fafb;
  color: #6b7280;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  padding: 10px;
}
.own-table tr td {
  background-color: white;
  font-size: 15px;
  padding: 10px;
}

.main-table {
  width: 100%;
  border-radius: 7px;
  border: none !important;
  text-align: center;
  border: 1px solid #ddd;
}
.main-table *:not(.form-control, .btn) {
  border: none;
}
.main-table tr {
  border: 1px solid #ddd;
}
.main-table tr th {
  background-color: #f9fafb;
  color: #6b7280;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  padding: 10px;
}
.main-table tr td {
  background-color: white;
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
}
.main-table tr .drop-table .dropdown-toggle::after {
  content: none;
}
.main-table tr .drop-table .dropdown-menu {
  transition: 300ms;
  opacity: 0;
  visibility: hidden;
}
.main-table tr .drop-table .dropdown-menu li .dropdown-item {
  text-align: start;
  font-size: 13px;
}
.main-table tr .drop-table .dropdown-menu li .dropdown-item i,
.main-table tr .drop-table .dropdown-menu li .dropdown-item svg,
.main-table tr .drop-table .dropdown-menu li .dropdown-item img {
  width: 18px;
}
.main-table tr .drop-table .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.main-list-group .list-group-item {
  padding: 15px 10px;
  position: relative;
}
.main-list-group .list-group-item .badge-count {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.main-list-group .list-group-item.active {
  background-color: #2ba670 !important;
  border-color: #2ba670;
}

.up-btn {
  position: relative;
  overflow: hidden;
  bottom: 15px;
  right: -20%;
  width: 45px;
  height: 45px;
  background-color: #2ba670;
  transition: 0.4s;
  z-index: 99999;
  font-size: large;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.up-btn.show {
  right: 15px;
}
.up-btn > svg {
  position: absolute;
  transition: 0.4s;
  font-size: 23px;
  transform: translate(-50%, -50%);
  left: 50%;
}
.up-btn .tooth-icon {
  top: 50%;
}
.up-btn .up-ar {
  top: 200%;
}
.up-btn:hover .up-ar {
  top: 50%;
}
.up-btn:hover .tooth-icon {
  top: -100%;
}

/*start nav taps*/
.main-nav-tap {
  margin-bottom: 0 !important;
  border-radius: 0;
  flex-wrap: nowrap !important;
}
.main-nav-tap .nav-item {
  flex: 1;
}
.main-nav-tap .nav-item .nav-link {
  white-space: nowrap !important;
  border-radius: 0 !important;
  background-color: #f1f1f1 !important;
  color: black !important;
  width: 100% !important;
  font-size: 12px !important;
  padding: 8px 14px;
  text-align: center;
}
.main-nav-tap .nav-item .nav-link.active {
  color: white !important;
  background-color: #2ba670 !important;
}
@media (max-width: 1399.98px) {
  .main-nav-tap {
    background-color: #f1f1f1 !important;
  }
  .main-nav-tap .nav-item {
    flex: 0;
  }
}

.main-tab-content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 10px;
}
.main-tab-content ul {
  list-style: inside;
  margin: 0;
  padding: 0;
}
.main-tab-content ul a {
  color: #2ba670;
}

/*end nav taps*/
.states-box {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 1rem;
  box-shadow: 0 0 9px 0 #dbdbdb;
  transition: 0.4s;
}
.states-box:hover {
  box-shadow: 0 0 9px 0 #b4b4b4;
}
.states-box .data-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 7px;
}
.states-box .data-icon .num-1 {
  color: #03a9f4;
}
.states-box .data-icon .icon-1 {
  color: #03a9f4;
}
.states-box .data-icon .num-2 {
  color: #ff835c;
}
.states-box .data-icon .icon-2 {
  color: #ff835c;
}
.states-box .data-icon .num-3 {
  color: #2ba670;
}
.states-box .data-icon .icon-3 {
  color: #2ba670;
}
.states-box .data-icon .num-4 {
  color: #ff594d;
}
.states-box .data-icon .icon-4 {
  color: #ff594d;
}
.states-box .text {
  margin-bottom: 15px;
}
.states-box .prog-box .prog {
  width: 100%;
  height: 10px;
  border-radius: 20px;
  background-color: #e7e7e7;
  position: relative;
}
.states-box .prog-box .prog span {
  height: 100%;
  border-radius: 20px;
}
.states-box .prog-box .prog span.prog-1 {
  position: absolute;
  width: 80%;
  background-color: #03a9f4;
}
.states-box .prog-box .prog span.prog-2 {
  position: absolute;
  width: 90%;
  background-color: #ff835c;
}
.states-box .prog-box .prog span.prog-3 {
  position: absolute;
  width: 70%;
  background-color: #2ba670;
}
.states-box .prog-box .prog span.prog-4 {
  position: absolute;
  width: 70%;
  background-color: #ff594d;
}

.box-report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  min-height: 90px;
  padding: 10px;
  border: 1px solid #2ba670;
  border-radius: 8px;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.09), 0px 3px 6px rgba(0, 0, 0, 0.09);
  transition: 0.7s;
}
.box-report:hover {
  box-shadow: inset 0 0 0 100px #2ba670;
}
.box-report:hover p {
  color: white;
}
.box-report p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  font-size: 18px;
  color: #020000;
  transition: 0.7s;
}
@media (max-width: 1199.98px) {
  .box-report p {
    font-size: 18px;
  }
}
.box-report .report-img {
  width: 50px;
  height: 50px;
}
@media (max-width: 1199.98px) {
  .box-report .report-img {
    width: 60px;
    height: 55px;
  }
}

.ayada {
  direction: rtl;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ayada .text-mark {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: 700;
  border-radius: 30px;
  opacity: 0.2;
  border: 1px solid #ddd;
}
.ayada .pic-con {
  position: absolute;
  z-index: -1;
  left: 38px;
  top: 78px;
}
.ayada .pic-con2 {
  position: absolute;
  z-index: -1;
  left: 281px;
  top: 289px;
}
.ayada .pic-con3 {
  position: absolute;
  z-index: -1;
  left: 578px;
  top: 546px;
}
.ayada .pic-con4 {
  position: absolute;
  z-index: -1;
  left: 1000px;
  top: 800px;
}
@media (max-width: 991.98px) {
  .ayada .pic-con {
    left: -3px;
    top: 69px;
  }
  .ayada .pic-con2 {
    left: 251px;
    top: 366px;
  }
  .ayada .pic-con3 {
    left: 580px;
    top: 646px;
  }
}
@media (max-width: 767.98px) {
  .ayada .pic-con {
    left: -104px;
    top: 66px;
  }
  .ayada .pic-con2 {
    left: 51px;
    top: 575px;
  }
  .ayada .pic-con3 {
    left: 580px;
    top: 646px;
  }
}
.ayada .page {
  z-index: 99;
}
.ayada .page header {
  background-color: #c5b7ab;
  padding: 20px;
  display: flex;
  justify-content: center;
  z-index: 99;
}
.ayada .page .content .text {
  text-align: center;
}
.ayada .page .content .text h3 {
  padding: 5px 0 5px;
  font-size: 30px;
  font-weight: 800;
}
.ayada .page .content .text p {
  padding: 5px;
  font-size: 26px;
  font-weight: 600;
  margin: 10px 0 5px;
}
.ayada .page .content .table-container {
  overflow: auto;
}
.ayada .page .content .table-container table {
  margin: 100px auto 10px;
  overflow-x: auto;
  width: 100%;
}
.ayada .page .content .table-container table thead {
  background-color: rgba(197, 183, 171, 0.5);
}
.ayada .page .content .table-container table thead tr th {
  border: 3px solid #ddd;
  padding: 10px 20px;
  color: #fff;
}
.ayada .page .content .table-container table tbody {
  background-color: rgba(255, 255, 255, 0.3);
}
.ayada .page .content .table-container table tbody tr td {
  padding: 10px 20px;
  font-size: 18px;
  border: 1px solid #ddd;
  font-weight: 400;
}
.ayada .page footer {
  margin: 50px 0 0;
  background-color: #c5b7ab;
  width: 100%;
  height: 100px;
}
@media print {
  .ayada .container {
    max-width: unset !important;
    padding: 0 10px !important;
  }
  .ayada footer {
    display: none !important;
  }
}

.content .box {
  background-color: white;
  padding: 25px 15px;
  text-align: end;
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
  box-shadow: 0 0 6px 0 #d3d3d3;
  transition: 300ms;
}
.content .box:hover {
  box-shadow: 0 0 6px 0 #aeaaaa;
}
.content .box.blue .bg-icon {
  color: #5b8af0;
}
.content .box.green .bg-icon {
  color: #2ba670;
}
.content .box.pur .bg-icon {
  color: #7b74eb;
}
.content .box.red .bg-icon {
  color: #de5f56;
}
.content .box .num {
  font-size: 25px;
}
.content .box .text {
  font-size: 16px;
  color: #6b7280;
}
.content .box .bg-icon {
  position: absolute;
  right: -3%;
  bottom: 0;
  font-size: 60px;
}

.box-status {
  display: flex;
  align-items: center;
  gap: 15px;
}
.box-status .icon-style {
  color: #2ba670;
  background-color: rgba(43, 166, 112, 0.2);
  border-radius: 50%;
  padding: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.box-status .text .count {
  font-size: 24px;
  font-weight: 700;
  color: #5e6060;
}
.box-status .text .title {
  font-size: 16px;
  font-weight: 400;
  color: #5e6060;
}
.box-status.blue .icon-style {
  color: #01b3e4;
  background-color: rgba(1, 179, 228, 0.2);
}
.box-status.red .icon-style {
  color: #de5f56;
  background-color: rgba(222, 95, 86, 0.2);
}
.box-status.green .icon-style {
  color: #2ba670;
  background-color: rgba(43, 166, 112, 0.2);
}
.box-status.orange .icon-style {
  color: #ffa808;
  background-color: rgba(255, 168, 8, 0.2);
}
.box-status.purple .icon-style {
  color: #6f65ec;
  background-color: rgba(111, 101, 236, 0.2);
}

.btn-box {
  border: 1px solid #ffaf10;
  background-color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  padding: 18.5px 1rem;
  transition: 300ms;
  z-index: 1;
  height: 100%;
  position: relative;
  border-inline-start-width: 25px;
}
.btn-box .icon {
  width: 55px;
  height: auto;
}
.btn-box::before {
  content: "";
  z-index: -1;
  transition: 300ms;
  position: absolute;
  width: 25px;
  inset-inline-start: -25px;
  top: 0;
  bottom: 0;
  background-color: #ffaf10;
}
.btn-box:hover {
  color: white;
}
.btn-box:hover::before {
  width: 100%;
  inset-inline-start: 0;
}
.btn-box.green {
  border-color: #2ba670;
}
.btn-box.green::before {
  background-color: #2ba670;
}
.btn-box.info {
  border-color: #46cec3;
}
.btn-box.info::before {
  background-color: #46cec3;
}
.btn-box.purple {
  border-color: #686bdf;
}
.btn-box.purple::before {
  background-color: #686bdf;
}

.card-doctor {
  border: 1px solid #0890ab;
  background-color: white;
}

/* Start tax-invoice */
.tax-invoice {
  font-size: 15px;
  background-color: #fff;
}
.tax-invoice .top-bar .three-bar {
  background-color: #fff;
  padding: 20px;
  font-size: 12px;
}
.tax-invoice .top-bar .three-bar .small-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0px 10px;
}
.tax-invoice .top-bar .three-bar .client {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tax-invoice .top-bar .three-bar .client .small-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5257941484px;
  color: #131313;
}
.tax-invoice .top-bar .three-bar .client .small-label b {
  margin: 0 10px;
}
.tax-invoice .top-bar .three-bar .client .btn-table {
  border: 1px solid #01b3e4;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.5257941484px;
}
.tax-invoice .top-bar .three-bar .client .btn-table img {
  width: 24px;
  height: 24px;
}
.tax-invoice .top-bar .three-bar select {
  width: 250px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.5257941484px;
  color: #1a1718;
  background-color: #f5f5fc;
}
.tax-invoice .top-bar .three-bar .date label {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #131313;
  letter-spacing: 0.5257941484px;
}
.tax-invoice .top-bar .three-bar .date label .icon {
  width: 26px;
  position: absolute;
  inset-inline-end: 7px;
  bottom: 7px;
}
.tax-invoice .top-bar .three-bar .date label .date-inp {
  width: 250px;
  padding: 8px 16px;
  background-color: #f5f5fc;
  text-align: right;
  position: relative;
}
.tax-invoice .top-bar .three-bar .date label ::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 50px;
  height: 100%;
  z-index: 3;
  left: 0;
  top: 0;
}
.tax-invoice .content .box {
  min-height: 1vh;
}
.tax-invoice .content .bar-bottom {
  background-color: #e5e6ea;
  padding: 3px;
  border-top: 1px solid #fff;
  font-size: 14px;
  display: flex;
  color: #5a72cd;
  font-weight: bold;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
  padding-left: 200px;
}
.tax-invoice .content .bar-bottom .total {
  background-color: #fff;
  padding: 0px 30px;
  border-radius: 4px;
}
.tax-invoice table {
  margin-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px dashed #fff;
}
.tax-invoice table th,
.tax-invoice table td {
  font-size: 14px;
  border: 1px solid #dee2e6;
  text-align: center;
}
.tax-invoice table th {
  white-space: nowrap;
  font-weight: bold;
  padding: 14px 7px;
  background-color: #f5f5f5;
  width: 60px;
}
.tax-invoice table th:first-of-type {
  min-width: 150px;
}
.tax-invoice table .form-control:focus {
  box-shadow: none !important;
}
.tax-invoice table td input {
  padding: 14px 7px;
  text-align: center;
}
.tax-invoice table td input.inp-create {
  width: 100% !important;
  margin: auto;
  background-color: #f2fbfd;
}
.tax-invoice table td input.form-control {
  border: none !important;
}
.tax-invoice table td input.form-control :focus {
  box-shadow: 0 0 10px red !important;
}
.tax-invoice table td .total {
  background-color: #f5f5f5;
  padding: 14px 16px;
  font-weight: 700;
}
.tax-invoice table td .total span {
  padding: 3px 6px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #e3e3e3;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  margin: 0 5px;
}
.tax-invoice table td .btn-add {
  padding: 10px 14px;
  background-color: #01b3e4;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  width: 183px;
}
.tax-invoice .info {
  margin-bottom: 5px;
}
.tax-invoice .info-text {
  background-color: #e8edee;
  display: flex;
  align-items: center;
}
.tax-invoice .info-text .title {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.tax-invoice .info-text .inp-text {
  min-height: 60px !important;
}
.tax-invoice .btn-submit {
  padding: 10px 14px;
  background-color: #7fc968;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  width: 183px;
}
.tax-invoice .instructions {
  background-color: #e8edee;
}
.tax-invoice .instructions .btns {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  padding: 7px 0;
  flex-wrap: wrap;
  margin-top: 3px;
}
.tax-invoice .instructions .btns .btn-parint {
  outline: none;
  display: flex;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px !important;
  font-weight: bold;
  padding: 5px;
}
.tax-invoice .instructions .btns .btn-parint img {
  width: 16px;
}

@media (max-width: 575.98px) {
  section.tax-invoice .content .bar-bottom {
    padding-left: 0;
    flex-direction: column;
  }
}
@media (max-width: 1199.98px) {
  section.tax-invoice .content .bar-bottom {
    padding-left: 0;
    justify-content: center;
  }
}
.table-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.notes {
  background-color: #e9ecef !important;
  font-size: 14px !important;
  border: 1px solid #ddd !important;
  color: #212529 !important;
  border-radius: 0.25rem;
  height: -moz-fit-content;
  height: fit-content;
  word-break: break-word;
  padding: 0.375rem 0.75rem;
  min-height: 80px;
}

.box-header h6 {
  font-size: 16px;
  font-weight: 700;
}
.box-header p {
  font-size: 12px;
  font-weight: 700;
}
.box-header .logo-header {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box-header .col-text {
  display: flex;
  align-items: center;
  gap: 30px;
}
.box-header .col-text b {
  text-wrap: nowrap;
  width: 150px;
}
.box-header .col-text span {
  padding: 3px;
  border: 1px solid #000;
  width: 100%;
  font-weight: 600;
  text-align: center;
}
.box-header .qr-holder {
  width: 100%;
  height: auto;
}

.medical-result {
  color: #000;
  background-color: white;
  border: 1px solid #000;
  width: 100%;
  font-size: 13px;
  white-space: nowrap;
}
.medical-result .border-bt {
  border-bottom: 1px solid #000;
}
.medical-result .border-lf {
  border-left: 1px solid #000;
}
.medical-result .dark {
  background-color: #c58f2b;
  white-space: nowrap;
  color: white;
}
.medical-result .blue {
  background-color: #aec2e0;
  white-space: nowrap;
}
.medical-result .purple {
  background-color: #f5d8d8;
  white-space: nowrap;
}
.medical-result .fs-16px {
  font-size: 16px !important;
}
.medical-result .header-one {
  white-space: nowrap;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 8px 2rem;
}
@media (max-width: 991.98px) {
  .medical-result .header-one {
    padding: 8px;
  }
}
.medical-result .header-one .text {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}
.medical-result .header-one .img-holder .img {
  width: 155px;
  height: auto;
}
@media (min-width: 768px) {
  .medical-result .header-one .img-holder {
    width: 155px;
    position: relative;
  }
  .medical-result .header-one .img-holder .img {
    position: absolute;
    top: -15px;
    left: 0;
  }
}
.medical-result .header-two {
  white-space: nowrap;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.medical-result .header-two .text {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.medical-result .title {
  width: 110px;
}
.medical-result .pd {
  padding: 8px;
}
.medical-result .w-small {
  width: 100px;
}
.medical-result .w-lg {
  flex: 2;
}
.medical-result .w-sm {
  flex: 1;
}
@media print {
  .medical-result {
    font-size: 10px !important;
  }
  .medical-result .header-one .text {
    font-size: 14px !important;
  }
  .medical-result .header-two .text {
    font-size: 12px !important;
  }
  .medical-result .pd {
    padding: 1px !important;
  }
  .medical-result .title {
    width: 90px;
  }
  .medical-result .fs-16px {
    font-size: 14px !important;
  }
}
@media (max-width: 767.98px) {
  .medical-result .w-50 {
    width: 100% !important;
  }
}

@media print {
  .medical-result-section {
    background-color: white !important;
  }
  .medical-result-section .container {
    padding: 3px !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.box-header-inv {
  border: 1px solid #000;
  padding: 5px;
}
.box-header-inv .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.main-select {
  border-radius: 4px;
  padding: 4.9px 0.2rem;
  font-size: 12px !important;
  transition: 300ms;
  border: 1px solid #ddd;
}
.main-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(43, 166, 112, 0.25) !important;
  outline: none;
}

.choice-register .item {
  list-style: none;
}
.choice-register .item input[type=radio] {
  display: none;
}
.choice-register .item input[type=radio]:not(:disabled) ~ label {
  cursor: pointer;
}
.choice-register .item input[type=radio]:disabled ~ label {
  color: hsl(150, 5%, 75%);
  border-color: hsl(150, 5%, 75%);
  box-shadow: none;
  cursor: not-allowed;
}
.choice-register .item label {
  display: block;
  background: white;
  border: 2px solid #2ba670;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
  position: relative;
}
.choice-register .item input[type=radio]:checked + label {
  background: #2ba670;
  color: hsl(215, 0%, 100%);
  box-shadow: 0px 0px 20px rgba(43, 166, 112, 0.75);
}
.choice-register .item input[type=radio]:checked + label::after {
  color: hsl(215, 5%, 25%);
  font-family: FontAwesome;
  border: 2px solid #2ba670;
  content: "\f00c";
  font-size: 12px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 25px;
  width: 25px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);
}

.trans-select-color {
  background-color: #efefef;
}

.form-switch .form-check-input {
  width: 2.5em;
  border: 1px solid rgba(119, 119, 119, 0.4588235294) !important;
}

.form-check {
  padding-left: 0px;
  padding-right: 1.5em;
}
.form-check .form-check-input {
  float: right;
  margin-left: 0px;
  margin-right: -1.4em;
}
.form-check .form-check-label {
  font-size: 12px;
  color: #777;
}

.input-group .input-group-text {
  line-height: 1.3 !important;
  font-size: 12px;
  gap: 6px;
}
.input-group .input-group-text I,
.input-group .input-group-text svg {
  font-size: 16px;
  color: #7d7c7c;
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0px !important;
  margin-right: -1px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.form-floating > label {
  font-size: 12px;
  color: #555;
  left: auto !important;
}

body:lang(ar) .form-select {
  padding: 0.375rem 0.75rem 0.375rem 2.25rem !important;
  background-position: left 0.75rem center !important;
}

.footer-bottom {
  background-color: #313131;
  color: white;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
.footer-bottom .alt_image {
  width: 60px;
  height: 50px;
}/*# sourceMappingURL=main.css.map */