:root {
  --default_bg_color: #f0f2f5;
  --red: rgba(255, 71, 90, 1);
  --blue: rgba(45, 119, 182, 1);
  --lightblue: rgb(224, 240, 255);
  --black: rgba(42, 42, 42, 1);
  --darkblue: rgba(18, 100, 163, 1);
  --graybg: rgba(248, 248, 248, 1);
  --lightgray: rgba(249, 249, 249, 1);
  --default_txt_black_color: rgba(20, 20, 20, 1);
  --default_txt_white_color: rgba(253, 253, 253, 1);
  --box_color: rgba(255, 255, 255, 1);
  --white-00: rgba(255, 255, 255, 1);
  --messagebox_background_color: rgba(227, 243, 255, 1);
  --messagebox_title_color: rgba(212, 237, 255, 7.6);
  --disabled-button-background-whitetheme: #6b6b6b;
  --default_fixed_menu_top_height: 56px;
  --default_txt_align: right;
  --default_txt_dir: rtl;
  --default_float: none;
  --default_pos_left: auto;
  --default_pos_right: 0;
  --default_box_shadow: 0px 20px 40px rgba(5, 32, 58, 0.1);
  --input_backgroundColor: rgb(252 252 252);
  --input_borderColor: rgb(166, 166, 166);
  --input_borderFocusedColor: var(--mgreen1);
  --input_borderFocusedBGColor: var(--white-00);
  --input_borderRadius: 6px;
  --input_borderWidth: 1px;
  --input_labelScale: 0.77;
  --input_height: 45px;
  --input_fontSize: 16.5px;
  --input_margin: 0px 0px 0px 0px;
  --input_marginTr_flds: 0px 0px 20px 0px;
  --input_paddingRight: 8px;
  --input_paddingLeft: 8px;
  --input_labelColor: #80868b;
  --input_labelColorFocused: rgba(48, 115, 170, 1);
  --input_autoFill: rgba(255, 254, 221, 1);
  --input_boxShadow: none;
  --border_radius_6: 6px;
  --border_radius_8: 8px;
  --border_radius_10: 10px;
  --border_radius: 13px;
  --sumit_button_hover_color: rgba(58, 113, 158, 1);
  --search_icon: url(../images/search.svg);
  --men_anchor_hover: var(--default_bg_color);
  --men_anchor_active: var(--graybg);
  --nav_width: 600px;
  --mgreen1: #3b308e;
  --mgreen2: #00543d;
  --mgreen3: #009a92;
  --mgreen4: #01867f;
  --mgreen5: #016a64;
}

@font-face {
  font-family: "san";
  src: url("../fonts/sanfrancisco.woff2");
}

@font-face {
  font-family: "seg";
  src: url("../fonts/segoeui_reg.woff2");
}

@font-face {
  font-family: "times";
  src: url("../fonts/times.woff");
}

@font-face {
  font-family: "np";
  src: url("../fonts/np.woff2");
}

@font-face {
  font-family: "npl";
  src: url("../fonts/npl.woff2");
}

html,
body {
  background-color: hsl(246deg 22% 91%);
}

*,
html,
body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: npl;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
  -o-tap-highlight-color: transparent;
  outline: none;
  font-weight: normal;
  font-size: 16.2px;
  -webkit-font-smoothing: antialiased;
  color: var(--default_txt_black_color);
  text-align: var(--default_txt_align);
  text-overflow: ellipsis;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  direction: var(--default_txt_dir);
  /* transition: all 0s; */
}

* {
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  box-sizing: border-box;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  /* overflow-y: auto;
    overflow-x: hidden; */
}

.blockscroll {
  overflow: hidden !important;
  position: relative !important;
  padding-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  margin-left: 0;
  margin-top: 0;
}

.blockdivscroll {
  overflow: hidden !important;
}

*::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: var(--borderradius);
}

*::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: var(--borderradius);
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
  font-size: var(--input_fontSize);
  height: var(--input_height);
  background-color: var(--input_backgroundColor);
  border-radius: var(--input_borderRadius);
  float: var(--default_float);
  text-align: var(--default_txt_align);
  margin: var(--input_margin);
  padding-left: var(--input_paddingLeft);
  padding-right: var(--input_paddingRight);
  border-color: var(--input_borderColor);
  border-width: var(--input_borderWidth);
  box-shadow: var(--input_boxShadow);
  border-style: solid;
  box-shadow: var(--input_boxShadow);
  /* padding-bottom: 2px; */
}

textarea {
  height: 90px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--input_borderFocusedColor);
  background-color: var(--input_borderFocusedBGColor);
  box-shadow: 0 0 0 1px #e7f3ff;
  transition: border-color 0.2s;
}

input[type="checkbox"] {
  border-color: inherit;
  background-color: inherit;
  box-shadow: none;
  transition: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  -ms-appearance: textfield;
  -o-appearance: textfield;
  appearance: textfield;
}

input.large_input_number {
  height: 52px;
  border-width: 3px;
  font-size: 20px;
  background-color: rgb(255 255 255);
}

input.large_input_text {
  height: 52px;
  border-width: 3px;
  font-size: 18.6px;
  font-weight: bold;
  letter-spacing: 0.4px;
  word-spacing: 0.5px;
}

input[type="submit"]:disabled,
button:disabled {
  background-color: var(--disabled-button-background-whitetheme);
  pointer-events: none;
}

input[type="submit"]:disabled:hover,
button:disabled:hover {
  background-color: var(--disabled-button-background-whitetheme);
  opacity: 0.9;
}

a {
  text-decoration: none;
}

a:link,
a:visited,
a:link:active,
a:visited:active {
  color: inherit;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url(../images/down.png);
  background-position: left 7px center;
  background-size: 16px;
  background-repeat: no-repeat;
  cursor: pointer;
}

select option {
  font-size: 18px;
}

input.passtextinclude {
  padding-top: 5px !important;
}

input.buttons {
  width: 100%;
  height: 52px;
  overflow: hidden;
  background-color: var(--mgreen1);
  padding: 8px 8px;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  border-radius: var(--input_borderRadius);
  color: var(--graybg);
  font-weight: normal;
  font-family: "npl";
  letter-spacing: 0.4px;
  border: none;
}

input.buttons:hover {
  /* background-color: rgb(0 83 60); */
  color: var(--white-00);
  transition: all 0.2s ease-in-out;
}

div.main_content {
  margin: 0 auto;
  margin-top: var(--default_fixed_menu_top_height);
  width: 100%;
  height: auto;
  display: block;
}

div.container_center_page {
  padding: 20px;
  height: auto;
  display: block;
  background-color: var(--box_color);
  margin: auto;
  width: 600px;
  max-width: 86%;
  border-radius: var(--border_radius);
  box-shadow: 0 30px 60px 0 rgba(182, 185, 204, 1);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

div.container_width_400 {
  width: 400px;
  max-width: 80%;
}

div.container_width_350 {
  width: 350px;
  max-width: 75%;
}

div.container_top_center_page {
  padding: 20px;
  height: auto;
  display: block;
  background-color: var(--box_color);
  margin: auto;
  width: 600px;
  max-width: 86%;
  border-radius: var(--border_radius);
  /* box-shadow: 0 30px 60px 0 rgba(182, 185, 204, 1); */
  box-shadow: -5px 12px 22px -15px rgba(182, 185, 204, 1);
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-bottom: var(--default_fixed_menu_top_height);
  margin-top: calc(var(--default_fixed_menu_top_height) + 30px);
}

.div_top_container::after {
  content: "";
  box-shadow: 0px 9px 15px -18px #646464;
  width: 95%;
  position: absolute;
  bottom: 0;
  border-radius: 10px;
}

div.div_top_container {
  margin-top: 0px;
  margin-bottom: 24px;
  padding: 0;
  padding-bottom: 18px;
}

div.div_top_container svg {
  width: 48px;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}

div.div_top_container svg path {
  fill: var(--mgreen1);
}

.dark_links:link,
.dark_links:visited,
a.dark_links:link:active,
.dark_links:visited:active {
  color: var(--white-00);
}

div.div_top_container img {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 4px;
}

p.container_title {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  font-family: np;
  font-size: 22px;
  color: var(--mgreen1);
  padding: 0px;
  display: block;
  border-radius: 8px;
  z-index: 2;
}

div.inner_input {
  width: 100%;
  height: auto;
  display: block;
}

div.inner_input {
  margin-top: 15px;
}

div.inner_input:first-child {
  margin-top: 0px;
}

div.inner_input:last-child {
  margin-bottom: 0px;
}

div.inner_input input,
div.inner_input select,
div.inner_input textarea {
  width: 100%;
}

div.single_input {
  width: 100%;
  display: block;
}

div.single_input input,
div.single_input select,
textarea {
  width: 100%;
  display: block;
}

div.multi_input_withlbl {
  display: flex;
  flex-direction: row;
}

div.labeled_in_multi_input {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  margin-right: 0px;
  /* flex: 0 0 30%; */
}

.lang_ltr div.labeled_in_multi_input {
  margin-left: 0px;
  margin-right: 10px;
}

div.inner_input textarea {
  padding: 8px 8px;
  font-size: 15px;
}

div.labeled_in_multi_input:last-child {
  margin-right: 0px;
  margin-left: 0px;
  flex: 1;
  width: 100%;
}

div.labeled_in_multi_input label,
label {
  margin-bottom: 3.5px;
  display: block;
  font-size: 14px;
  padding-left: calc(var(--input_paddingLeft) / 2);
  padding-right: calc(var(--input_paddingRight) / 2);
  font-weight: bold;
}

select.small_select {
  margin-left: 25px;
}

div.equaly_inputs div.labeled_in_multi_input {
  width: 50%;
}

div.equaly_inputs div.labeled_in_multi_input:last-child {
  margin-right: 0px;
  margin-left: 0px;
  flex: auto;
  width: calc(50% - 1px);
}

p,
span,
button,
img,
table,
div,
caption,
tr,
td,
tbody,
tfoot,
thead,
a {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

button,
a {
  cursor: pointer;
}

div.nav_top {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: var(--default_fixed_menu_top_height);
  background-color: var(--white-00);
  display: block;
  z-index: 4;
  border-radius: 0px;
  box-shadow: 0px -18px 30px 3px #979cba;
}

input.submitbuttons {
  margin-top: 15px;
  font-family: "np";
  padding-top: 8.5px;
}

form {
  display: block;
  overflow: hidden;
  z-index: 2;
}
.bold {
  font-weight: bold !important;
}
.ltr {
  direction: ltr !important;
}

.rtl {
  direction: rtl !important;
}

.lang_ltr {
  direction: ltr !important;
  text-align: left !important;
}

.force_trl {
  direction: rtl !important;
  text-align: right !important;
}

.actr:active {
  transform: translate(0px, 0px) scale(0.98);
  transition-duration: 0.2s;
}

label {
  cursor: pointer;
}

.lbl_clrd {
  color: rgb(1 126 210);
  cursor: pointer;
}

div.messagebox {
  position: fixed;
  bottom: -250px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background-color: var(--messagebox_background_color);
  padding: 0;
  width: 380px;
  display: block;
  margin: 0 auto;
  border-radius: var(--border_radius);
  box-shadow: 6px 15px 40px -20px rgb(82 82 82 / 60%);
  transition-property: all;
  transition-duration: 0.4s;
  transition-delay: 0s;
  z-index: 99;
}

div.messagebox * {
  font-family: "npl";
}

div.messagebox_inner {
  border-radius: var(--border_radius);
}

/* div.messagebox {
    bottom: 100px;
} */

div.div_messagebox_title {
  background-color: var(--messagebox_title_color);
  padding: 20px;
  border-radius: var(--border_radius);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding-bottom: 9px;
  padding-top: 9px;
  overflow: hidden;
}

div.error_message {
  background-color: rgba(255, 229, 229, 1);
}

div.error_message div.div_messagebox_title {
  background-color: rgba(255, 215, 215, 1);
}

div.error_message {
  background-color: rgba(255, 229, 229, 1);
}

div.error_message div.div_messagebox_title {
  background-color: rgba(255, 215, 215, 1);
}

div.success_message {
  background-color: rgba(253, 255, 228, 1);
}

div.success_message div.div_messagebox_title {
  background-color: rgba(223, 249, 182, 0.4);
}

div.normal_message {
  background-color: rgba(227, 243, 255, 1);
}

div.normal_message div.div_messagebox_title {
  background-color: rgba(212, 237, 255, 7.6);
}

p.messagebox_title {
  font-size: 18px;
}

.div_messagebox_body {
  padding: 18px;
}

p.div_messagebox_message {
  font-size: 17px;
}

div.div_top_messagbebox_body {
  margin-bottom: 48px;
}

div.div_bottom_messagbebox_body {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: var(--white-00);
  left: 0px;
  right: 0px;
  height: 48px;
  text-align: center;
  border-radius: var(--border_radius);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

svg.closemessage {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

svg.closemessage path {
  fill: var(--black);
}

svg.closemessage path {
  fill: var(--black);
}

div.div_messagebox_title button.closebutton:hover svg.closemessage path {
  fill: var(--red);
  transition: all 0.1s;
}

div.messagebox_buttons {
  display: none;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
  height: auto;
  /* background-color: rgb(255 255 255 / 64%); */
  background-color: transparent;
  margin-bottom: -15px;
  padding: 0;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-direction: row;
  /* box-shadow: 0px -8px 14px -14px #838383, 0px 8px 14px -14px #838383; */
  border-radius: var(--border_radius);
}

div.messagebox_buttons button {
  width: auto;
  height: auto;
  text-align: center;
  padding: 8px 10px;
  margin: 0;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  font-family: npl;
  color: var(--white-00);
  width: 100%;
}

div.searchable_loading_lists {
  width: 100%;
  /* background-color: lightsteelblue; */
  background-color: var(--default_bg_color);
  margin: 0 auto;
  margin-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

div.searchable_loading_lists_middle {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  margin-bottom: 0;
  padding-top: 0px;
  max-height: 300px;
  margin-left: 8px;
  display: none;
  /* margin-top: 12px; */
  top: 12px;
  transition: all 0.2s;
}

div.nicescroll .loading_lists_item:hover {
  /* color: var(--input_borderColor); */
  /* font-weight: bold; */
  /* box-shadow: 0px 0px 2px 2px var(--input_borderColor); */
  background-color: rgb(230 242 255);
}

div.nicescroll::-webkit-scrollbar-thumb:hover {
  background: rgb(131, 131, 131);
  border-radius: 8px;
}

div.nicescroll::-webkit-scrollbar-thumb {
  background-color: rgb(151 151 151);
  border-radius: 8px;
}

div.nicescroll::-webkit-scrollbar {
  width: 10px;
  background-color: var(--white-00);
  border-radius: 8px;
}

/* body::-webkit-scrollbar-thumb:hover {
    background: rgb(131, 131, 131);
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(151 151 151);
    border-radius: 8px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
    border-radius: 8px;
} */

div.searchable_loading_lists_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0px 8px;
}

div.sloader_top_main {
  width: 100%;
  height: 45px;
  margin: 0 auto;
}

/* div.spacer_for_ne {
    display: none;
    height: 15px;
    background-color: transparent;
    position: relative;
    top: 0;
    z-index: 0;
    width: 100%;
    pointer-events: none;
} */

div.searchable_loading_lists_middle .loading_lists_item:last-child {
  margin-bottom: 0px;
}

div.searchable_loading_lists_middle .loading_lists_item {
  display: block;
  width: calc(100% - 16px);
  height: auto;
  margin: 0 auto;
  background-color: var(--white-00);
  margin-top: 0px;
  margin-bottom: 6px;
  padding: 8px 0px;
  padding-left: var(--input_paddingLeft);
  padding-right: var(--input_paddingRight);
  border-radius: 8px;
  font-size: calc(var(--input_fontSize) - 3px);
  transition: background-color 0.4s;
}

input.search_txt_loading_lists {
  width: 100%;
}

.buttons_style_blue {
  background-color: var(--darkblue);
  border: 2px solid var(--blue);
  color: var(--white-00);
}

.buttons_style_green {
  background-color: rgb(67 212 170);
  border: 2px solid rgb(57 210 166);
  color: var(--white-00);
}
a.href_nothing {
  pointer-events: none !important;
}

.buttons_style_red {
  background-color: rgb(196 60 60);
  border: 2px solid rgb(209 57 57);
  color: var(--white-00);
}

button.buttons_btn_one_btn,
button.buttons_btn_two_btn,
button.buttons_btn_three_btn {
  display: none;
}

div.messagebox_buttons button:hover {
  opacity: 0.9;
}

div.div_messagebox_title button.closebutton {
  position: absolute;
  left: -3px;
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: transparent;
  transform: translateY(-50%);
  text-align: center;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding: 0;
  margin: 0;
}

a.telmsg {
  font-family: "np";
  font-weight: normal;
  color: var(--mgreen5);
}

div.messagebox_two_buttons button.two_buttons_btn_one_btn {
  background-color: #55b7f7;
  border: 2px solid #44b5ff;
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid rgb(206 206 206) !important;
}

table,
th,
td {
  border: 1px solid rgb(206 206 206);
  padding: 2.5px 5px;
  font-size: 15px;
}

th {
  text-align: center;
  height: 60px;
  background-color: #e9e9e9;
  font-family: "np" !important;
  font-size: 14pt !important;
}

tfoot tr {
  background-color: #e9e9e9;
}

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

tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

thead th:first-child {
  text-align: center;
  width: 140px;
}

th.th_w_30 {
  width: 30px;
  max-width: 30px;
  min-width: 30px;
}

th.th_w_40 {
  width: 40px;
  max-width: 40px;
  min-width: 40px;
}

th.th_w_50 {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}

th.th_w_60 {
  width: 60px;
  max-width: 60px;
  min-width: 60px;
}

th.th_w_65 {
  width: 65px;
  max-width: 65px;
  min-width: 65px;
}

th.th_w_80 {
  width: 80px;
  max-width: 80px;
  min-width: 80px;
}

th.th_w_70 {
  width: 70px;
  max-width: 70px;
  min-width: 70px;
}

th.th_w_75 {
  width: 75px;
  max-width: 75px;
  min-width: 75px;
}

th.th_w_90 {
  width: 90px;
  max-width: 90px;
  min-width: 90px;
}

th.th_w_100 {
  width: 100px;
  max-width: 100px;
  min-width: 100px;
}

th.th_w_110 {
  width: 110px;
  max-width: 110px;
  min-width: 110px;
}

th.th_w_120 {
  width: 120px;
  max-width: 120px;
  min-width: 120px;
}

th.th_w_125 {
  width: 125px;
  max-width: 125px;
  min-width: 125px;
}

th.th_w_130 {
  width: 130px;
  max-width: 130px;
  min-width: 130px;
}

th.th_w_140 {
  width: 140px;
  max-width: 140px;
  min-width: 140px;
}

th.th_w_150 {
  width: 150px;
  max-width: 150px;
  min-width: 150px;
}

th.th_w_160 {
  width: 160px;
  max-width: 160px;
  min-width: 160px;
}

th.th_w_200 {
  width: 200px;
  max-width: 200px;
  min-width: 200px;
}

th.th_w_240 {
  width: 240px;
  max-width: 240px;
  min-width: 240px;
}

div.tbldiv {
  width: 100%;
  overflow-x: auto;
}

td.print_td {
  background-color: var(--white-00);
  padding: 0px 0px;
}

button.print_tbl {
  background-color: var(--lightblue);
  width: 100%;
  height: 45px;
  padding: 10px;
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-image: url(../images/print-1.svg);
  font-family: np;
}

table.all_en {
  direction: ltr;
  text-align: left;
  margin-top: 10px;
}

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

td.bold {
  font-weight: bold !important;
}

button.view_tbl {
  position: absolute;
  top: -40px;
  left: 0px;
  right: auto;
  bottom: auto;
  width: 36px;
  height: 36px;
  background-color: transparent;
  z-index: 2;
  border-radius: 30px;
  background-image: url(../images/table.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
  opacity: 0.7;
}

button.active_view_tbl {
  background-image: url(../images/menu.png);
  background-color: #ffffff;
}

div.list_of_drugs_main p.l_d_plus_sign {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0px 0px;
  font-size: 32px;
  line-height: 25px;
  background-color: transparent;
  color: rgb(0 0 0 / 40%);
  font-family: npl;
  pointer-events: none;
}

div.inner_lsts_dr {
  background: rgb(255 255 255);
  padding: 10px 10px;
  top: -10px;
  width: calc(100% + 20px);
  margin: 0 auto;
  display: block;
  left: -10px;
  padding-bottom: 0px;
  float: left;
  z-index: 2;
  margin-bottom: -5px;
}

input.pt_search_txt {
  height: 40px;
}

div.pa_v_lists_main_div div.pv_tests p {
  font-size: 17px;
  line-height: 29px;
}

button.okmessagbebox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 20px;
  background-color: var(--white-00);
  color: var(--mgreen1);
  border-radius: var(--border_radius);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

td.pnametd {
  font-family: npl;
  font-size: 17px;
}

div.top_content {
  text-align: center;
  padding-top: 15px;
}

div.top_content img {
  width: 135px;
}

div.main_filters {
  margin-top: 5px;
}

p.content_title {
  text-align: center;
  color: var(--mgreen1);
  font-size: 20px;
  font-family: np;
  padding-top: 0px;
}

p.content_title::before {
  content: "";
}

div.inner_nav {
  height: 100%;
  width: 485px;
  max-width: 86%;
  margin: 0px auto;
  background: transparent;
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

button.btn_mens {
  padding: 0;
  margin: 0;
  outline: none;
  text-align: center;
  z-index: 3;
  display: inline-block;
  position: absolute;
  width: 43px;
  height: 43px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  border-radius: 100%;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
}

div.men_right_btns {
  right: -10px;
  left: auto;
  background: transparent;
  z-index: 2;
  width: 270px;
  top: 50%;
  transform: translateY(-50%);
}

button.prntbtn {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

div.menus_parts {
  background-color: transparent;
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  height: 100%;
  width: auto;
  position: absolute;
  z-index: 2;
}

button.btn_mens svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button.btn_mens:hover {
  background-color: var(--graybg);
}

button.btn_mens:hover svg path.btn_mens_path {
  fill: var(--mgreen1);
  transition: fill 0.1s;
}

button.btnSlide {
  right: 0px;
}

button.btn_user_login {
  right: 68px;
}

button.searchbtntop {
  right: 136px;
}

button.bellnoti {
  /* right: 204px; */
  right: 136px;
}

div.men_left_btns {
  background: transparent;
  left: 0%;
  right: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 250px;
  pointer-events: none;
}

a.nav_home_btn {
  position: absolute;
  left: 0;
  font-size: 12px;
  text-transform: capitalize;
  font-family: npl;
  color: var(--black);
  height: 95%;
  /* background: rgb(227 227 227 / 62%); */
  top: 50%;
  padding: 0;
  margin: 0;
  width: 55px;
  text-align: center;
  transform: translateY(-50%);
  line-height: 85px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  pointer-events: all;
}

a.nav_home_btn::before {
  /* content: ""; */
  position: absolute;
  top: AUTO;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--black);
  border-radius: 4px;
}

a.nav_home_btn:hover {
  background-color: rgb(245 245 245);
  color: var(--mgreen1);
}

a.nav_home_btn:hover::before {
  border-color: var(--mgreen1);
}
a.nav_home_btn img {
  width: 55px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.not_selection {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

select {
  font-weight: bold;
}

p.name_of_hospital_mens {
  position: relative;
  top: calc(50% + -7px);
  text-align: left;
  transform: translateY(-50%);
  font-size: 18px;
  left: 68px;
  pointer-events: none;
  font-family: seg;
  font-weight: normal;
}

p.sub_name_of_hospital_mens {
  font-size: 12px;
  position: absolute;
  bottom: 5px;
  left: 68px;
  text-transform: uppercase;
  font-family: npl;
  color: var(--black);
  pointer-events: none;
}

div.post_men a:hover {
  background-color: #ffffffe6 !important;
  transition: all 0.2s;
}

.notshow {
  display: none;
  pointer-events: none;
}

span.loading_xhr_icons_right::after,
span.loading_xhr_icons_left::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 26px;
  height: 26px;
  background-color: transparent;
  transform: translateY(-50%);
  background-image: url(../images/loading.gif);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  z-index: 2;
}

span.loading_xhr_icons_right_active::after {
  content: "";
  left: auto;
  right: 8px;
}

span.loading_xhr_icons_left_active::after {
  content: "";
  left: 8px;
  right: auto;
}

span.input_icons_right::after,
span.input_icons_left::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 26px;
  height: 26px;
  background-color: transparent;
  transform: translateY(-50%);
  /* background-image: url(../images/loading.gif); */
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  z-index: 2;
}

span.input_icons_right input,
span.input_icons_right select,
span.input_icons_right textarea {
  padding-right: calc(var(--input_paddingRight) + 27px);
}

span.input_icons_left input,
span.input_icons_left select,
span.input_icons_left textarea {
  padding-left: calc(var(--input_paddingLeft) + 27px);
}

span.search_icon::after {
  background-image: var(--search_icon);
}

span.search_icon::after {
  background-image: var(--search_icon);
}

span.input_icons_right:after {
  content: "";
  left: auto;
  right: 8px;
}

span.input_icons_left:after {
  content: "";
  left: 8px;
  right: auto;
}

span.input_user_icon::after {
  background-image: url("../images/user_login.svg");
  background-size: 17px;
}

span.input_user_pass::after {
  background-image: url("../images/lock.svg");
  background-size: 20.5px;
}

.wrapper_check {
  display: none;
  height: 30px;
  width: 30px;
  background-color: var(--graybg);
  opacity: 1;
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  border-radius: 100%;
  padding: 10px 10px;
  pointer-events: none;
}

.wrapper_check_right {
  right: 8px;
  left: auto;
}

.wrapper_check_left {
  right: auto;
  left: 8px;
}

.animated-check {
  height: 24px;
  width: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.animated-check path {
  fill: none;
  stroke: #7ac142;
  stroke-width: 4;
  stroke-dasharray: 23;
  stroke-dashoffset: 23;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.animated-checked path {
  animation: draw 0.3s linear forwards;
}

p.form_inner_one_title {
  color: var(--mgreen1);
  background-color: rgba(237, 239, 250, 0.76);
  font-size: 20px;
  font-family: npl;
  margin-bottom: 0px;
  padding-bottom: 5.5px;
  padding-top: 8px;
  border-bottom: 1px solid var(--mgreen1);
  line-height: 27px;
  padding-left: var(--input_paddingLeft);
  padding-right: var(--input_paddingRight);
  border-radius: 0;
}

form.form_hastitle {
  margin-top: 10px;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

div.form_loading_xhr_icons_enabled {
  pointer-events: inherit;
}

div.form_loading_xhr_icons_disabled {
  pointer-events: none;
}

div.form_loading_xhr_icons::before {
  content: "";
  background-color: var(--white-00);
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  border-radius: 8px;
  padding: 0px;
  margin: 0;
  border: 4px solid var(--white-00);
  background-image: url(/asset/images/loading.gif);
  background-size: 15%;
}

div.form_loading_xhr_icons_enabled::before {
  display: block;
}

div.form_loading_xhr_icons_disabled::before {
  display: none;
}

div.inner_q_loaders button.loading_lists_item_qaza_as_title {
  pointer-events: none;
  background-color: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 6px;
  margin-top: 0px;
  font-size: 16.5px;
  font-family: npl;
}

div.inner_q_loaders div.na7ya_loader_inners {
  display: inline-flex;
  gap: 10px 0px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 15px;
  padding-top: 1px;
  flex-wrap: wrap;
}

div.inner_q_loaders div.na7ya_loader_inners button.loading_lists_na7ya {
  flex: none;
  width: auto;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* div.inner_q_loaders button.qaza_has_no_na7ya {
    display: none;
} */

/* div.inner_q_loaders div.na7ya_has_no_na7ya {
    display: none;
} */

div.main_k {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: stretch;
  gap: 15px 15px;
}

/* div.inner_k {
    flex: 1 1 auto;
    background-color: var(--white-00);
    padding: 12px 12px;
    border-radius: 15px;
    box-shadow: -2px 2px 15px -11px var(--mgreen2);
} */
div.inner_k {
  display: flex;
  flex: 1 1 auto;
  background-color: var(--white-00);
  padding: 12px 12px;
  border-radius: 15px;
  box-shadow: -2px 2px 15px -11px var(--mgreen2);
  flex-direction: column;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: stretch;
}

p.k_name_p {
  font-size: 22px;
  font-family: np;
  color: var(--blue);
  top: 5px;
}

div.popupbox_loadingXhr,
div.poploader {
  padding: 5px;
}
div.moreqttdiag {
  display: flex;
  width: 100%;
  background: transparent;
  margin-top: 5px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  height: 40px;
  gap: 4px;
}
button.qttbtnsdiag {
  flex: 1 1 20%;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  background: #d3d3d387;
  padding: 0;
  line-height: 43px;
  height: 100%;
  border-radius: 6px;
  margin: 0px 0px;
}

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

div.ne_not_found_ {
  display: none;
  position: relative;
  width: 100%;
  height: 40px;
  background-color: lightblue;
  margin: 0 auto;
  margin-bottom: -8px;
  border-radius: 8px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin-top: 5px;
}

td div.mobs_main {
  margin-top: 0px;
}

p.ne_not_found_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-family: npl;
}

div.nav_list_menu {
  display: none;
  position: absolute;
  width: 220px;
  height: auto;
  background-color: var(--white-00);
  top: calc(var(--default_fixed_menu_top_height) - 1px);
  z-index: 99;
  box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  right: 0px;
}

/* div.inner_nav_list_menu {
    padding: 10px 10px;
    background: transparent;
    border-radius: 8px;
} */

div.inner_nav_list_menu a.nav_logout_link::before {
  background-image: url(/asset/images/logout2.svg);
}

div.inner_nav_list_menu a.fullscreenbtn::before {
  background-image: url(/asset/images/fullscreen.svg);
  background-size: 28px;
}

div.inner_nav_list_menu a.open_sub_mens::before {
  background-image: url(/asset/images/down.svg);
  background-size: 16.5px;
}

div.inner_nav_list_menu a.open_sub_mens_act::before {
  background-image: url(/asset/images/down.svg);
  background-size: 16.5px;
  transform: rotate(180deg) translateY(50%);
}

div.inner_nav_list_menu a.history_men_link::before {
  background-image: url(../images/historyblack.png);
  background-size: 21px;
}

div.inner_nav_list_menu a.about_author::before {
  background-image: url(../images/aboutblack.png);
  background-size: 25px;
}

div.inner_nav_list_menu a.fullscreenbtn {
  padding-top: 15px;
}

div.inner_nav_list_menu a:hover {
  background-color: rgb(242, 242, 242);
}

a.links_icons_right::before,
a.links_icons_left::before {
  position: absolute;
  top: 50%;
  display: block;
  width: 26px;
  height: 26px;
  background-color: transparent;
  transform: translateY(-50%);
  /* background-image: url(../images/loading.gif); */
  background-size: 22px;
  background-repeat: no-repeat;
  transform-origin: center center;
  background-position: 50% 50%;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s;
}

a.links_icons_right::before {
  content: "";
  right: 8px;
  left: auto;
}

a.links_icons_left::before {
  content: "";
  left: 8px;
  right: auto;
}

div.hlinks {
  margin-top: 65px;
}

div.top_page_links {
  margin-bottom: 20px;
  border-bottom: 2px solid lightgray;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px 0px;
  margin-top: -8px;
}

div.top_page_links a {
  font-family: npl;
  padding: 5px 12px;
  font-size: 15.5px;
}

div.top_page_links a:hover {
  color: var(--mgreen1);
}

div.p_code_loader {
  box-shadow: 0px 0px 32px -3px gray;
  padding: 25px 25px;
  border-radius: 8px;
  text-align: center;
  background-color: white;
}

div.p_code_loader p {
  text-align: center;
  font-size: 16px;
  line-height: normal;
}

div.p_code_loader p.pp_code {
  font-size: 40px;
  font-family: npl;
  margin: 5px 0px 5px 0px;
  color: var(--black);
}

div.p_code_loader_main {
  padding: 25px 25px;
  border-radius: 8px;
  text-align: center;
  background-color: transparent;
}

button.close_pp_pcode {
  position: relative;
  bottom: -10px;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  background: white;
  text-align: center;
  border-radius: 8px;
  font-family: npl;
  font-size: 17px;
}

button.close_pp_pcode:hover {
  background-color: rgb(255 234 234);
}

div.main_content div.wide_content {
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0px;
  margin-top: calc(var(--default_fixed_menu_top_height) + 0px);
}

div.main_content div.wide_content div.div_top_container {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0;
  padding-bottom: 0px;
}

div.main_content div.wide_content div.div_top_container::after {
  content: "";
  box-shadow: 0px 9px 10px -11px #9e9e9e;
  width: 600px;
  max-width: 90%;
  position: absolute;
  bottom: 0px;
  border-radius: 0;
  /* border-bottom: 1px solid; */
  top: 24px;
}

div.wide_content_inner {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  margin-top: 25px;
}

div.main_content div.wide_content div.div_top_container p.container_title {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  font-family: npl;
  font-size: 20px;
  color: var(--mgreen1);
  padding: 0px;
  display: block;
  border-radius: 8px;
  z-index: 2;
}

a.home_btn {
  position: absolute;
  font-size: 12px;
  text-transform: capitalize;
  font-family: npl;
  color: var(--black);
  background-color: transparent;
  top: -15px;
  left: -15px;
  padding: 0;
  margin: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 100%;
  pointer-events: all;
  cursor: pointer;
  z-index: 1;
}

a.home_btn:hover {
  background-color: rgb(227 227 227 / 62%);
}

a.home_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: transparent;
  border: 2px solid var(--mgreen1);
  border-radius: 4px;
}

div.menu_list {
  display: none;
  position: fixed;
  width: 300px;
  height: auto;
  top: calc(var(--default_fixed_menu_top_height) + 5px);
  background-color: var(--white-00);
  padding: 10px;
  border-radius: 10px;
  box-shadow: -5px 12px 22px -15px #868686;
  z-index: 10;
}

div.menu_list a {
  transition: all 0.2s;
}

div.menu_list a:hover {
  background-color: var(--men_anchor_hover);
}

div.menu_list a:active {
  background-color: var(--men_anchor_active);
}

div.men_user_info {
  display: block;
  width: 100%;
  height: 65px;
  background-color: var(--default_bg_color);
  position: relative;
  margin: 0 auto;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

div.men_user_info:hover {
  background-color: rgba(204, 210, 220, 0.556);
}

button.men_btn_profile_settings svg {
  width: 21px;
  height: 21px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

div.men_user_info:hover svg {
  fill: var(--mgreen1);
}

div.men_user_info p {
  pointer-events: none;
  position: absolute;
}

.pf_img_men {
  width: 42px;
  height: 42px;
  position: absolute;
  pointer-events: none;
  background-color: white;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background-image: url(../images/user_login.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  border-radius: 40px;
}

p.men_user_email {
  bottom: 16px;
  left: 60px;
  font-size: 13px;
}

p.men_user_name {
  left: 60px;
  top: 11px;
  font-size: 17px;
  font-family: "np";
  color: var(--mgreen1);
}

button.men_btn_profile_settings {
  display: block;
  width: 32px;
  height: 32px;
  background-color: transparent;
  background-image: url(../images/settings.svg);
  background-size: 20px;
  border-radius: 100%;
  opacity: 0.8;
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 10px 10px;
}

div.menu_otherlinks {
  margin-top: 10px;
}

div.menu_otherlinks a {
  display: block;
  /* background-color: var(--default_bg_color); */
  background-color: rgb(240 242 245 / 70%);
  height: 50px;
  width: 100%;
  border-radius: 8px;
  margin: 0 auto;
  margin-top: 5px;
  font-family: seg;
  font-weight: bold;
  padding: 12px 10px;
  color: var(--black);
  font-size: 16px;
}

div.menu_otherlinks a:hover {
  background-color: rgba(204, 210, 220, 0.556);
  color: var(--mgreen1);
}

div.menu_otherlinks a.men_logout_btn:hover {
  color: var(--red);
}

/* button.men_btn_profile_settings:active {

    background-color: var(--default_bg_color);

} */

div.popupbox_main,
div.popupbox_main_notxhr {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 46%);
  z-index: 6;
  margin: 0 auto;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

div.popupbox,
div.popupbox_notxhr {
  display: block;
  width: max-content;
  max-width: 90%;
  height: auto;
  background-color: var(--white-00);
  position: relative;
  z-index: 11;
  margin: 0 auto;
  border-radius: var(--border_radius_10);
  margin-top: calc(var(--default_fixed_menu_top_height) + 20px);
  margin-bottom: 45px;
}

div.popbox_titlebar {
  display: block;
  height: 48px;
  background-color: transparent;
  border-radius: var(--border_radius_10);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px solid rgb(153 155 157);
  max-width: 100%;
}

div.popbox_title_content {
  position: absolute;
  right: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

p.popbox_title,
p.popbox_title_notxhr {
  font-family: seg;
  font-size: 18px;
  color: var(--black);
  pointer-events: none;
  font-weight: bold;
  margin-top: -6px;
}

span.popup_loading {
  width: 26px;
  height: 26px;
  background-color: transparent;
  background-image: url(../images/loading.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
}

span.closepopup,
span.closepopup_notxhr,
span.closepopup_ {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: auto;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  cursor: pointer;
  background-image: url(../images/close_rounded_80.svg);
  background-size: 16px;
  background-repeat: no-repeat;
}

span.closepopup:hover,
span.closepopup_notxhr:hover,
span.closepopup_:hover {
  opacity: 0.7;
}

div.inner_popnotxhr {
  width: 400px;
  max-width: 100%;
  display: block;
  padding: 20px;
  margin-top: 0px;
}

input#input_user_profile_pass {
  padding-top: 0px;
  font-size: 18px;
}

.force_rtl {
  text-align: right !important;
  direction: rtl !important;
}

table * {
  font-family: npl;
  font-size: 14.5pt;
}

div.eradat_felya {
  width: 520px;
  max-width: 100%;
  display: block;
  padding: 20px;
  margin-top: 0px;
}

.bold {
  font-weight: bold !important;
}

div.sub_mens {
  display: none;
}

div.sub_mens a {
  height: 38px;
  line-height: 12px;
  background-color: #e7e7e7;
  font-size: 15.5px;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 0px;
  font-weight: normal;
  width: auto;
}

div.sub_mens a:last-child {
  margin-bottom: 10px;
}

div.panels_main {
  display: none;
  text-align: center;
  background-color: #dae4e2;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 42px;
  width: 95%;
  max-width: 95%;
  padding: 15px;
}

div.panel {
  display: none;
  width: 145px;
  height: 145px;
  background: white;
  border-radius: 20px;
  background-repeat: no-repeat;
  box-shadow: -3px 4px 10px -4px rgb(182 185 204 / 79%);
}

div.panel_A {
  background-image: url(../images/electric.png);
  background-position: 20px 20px;
  background-size: 65px;
}

div.panel_B {
  background-image: url(../images/services.png);
  background-position: 10px -20px;
  background-size: 200px;
}

div.panel_C {
  background-image: url(../images/water.png);
  background-position: 20px 20px;
  background-size: 60px;
}

div.panel_D {
  background-image: url(../images/gas.png);
  background-position: 10px 15px;
  background-size: 70px;
}

div.panel_E {
  background-image: url(../images/sum.png);
  background-position: 15px 20px;
  background-size: 30px;
}

p.sum_panels {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 25px;
  right: 10px;
  font-family: seg;
  font-weight: bold;
}

div.top_panel,
div.btm_panel {
  text-align: center;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  align-content: center;
  gap: 0px;
}

div.btm_panel {
  margin-top: 20px;
}

div.panel_B {
  flex-grow: 1;
  margin-right: 18px;
}

div.panel_E {
  margin-left: 0px;
}

div.panel a {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}

div.panel a * {
  pointer-events: none;
}

div.panel a button {
  width: 30px;
  height: 30px;
  background: var(--default_bg_color);
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 100px;
  background-image: url(../images/up.svg);
  transform: rotate(90deg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center 5px;
  opacity: 0.8;
}

button.bellnoti {
  background-color: rgb(236 236 236 / 72%);
}
div.langsel {
  display: none;
  flex: 1 1 100%;
  position: absolute;
  top: 42px;
  left: -25px;
  right: auto;
  z-index: 2;
  background: #3b308e;
  width: auto;
  border-radius: 4px;
  padding: 5px;
}
div.langsel button {
  display: block;
  background: #e4e3ed;
  margin: 0 auto;
  margin-bottom: 5px;
  margin-top: 5px;
  height: 34px;
  padding: 0px 8px 0px 46px;
  border-radius: 4px;
  width: 100%;
  background-position: 3px center;
  background-repeat: no-repeat;
  background-size: 22px;
}
div.langsel button:nth-child(1),
div.langsel button:nth-child(2) {
  background-image: url(../images/kurdistan.png);
}
div.langsel button:nth-child(3) {
  background-image: url(../images/iraq.png);
}
div.langsel button:nth-child(4) {
  background-image: url(../images/turkey.png);
}
div.langsel button:nth-child(5) {
  background-image: url(../images/china.png);
}
div.langsel button:first-child {
  margin-top: 0px;
}
div.langsel button:last-child {
  margin-bottom: 0px;
}

span.panles_txt_A {
  position: absolute;
  bottom: 30px;
  right: 14px;
  font-size: 20px;
  font-family: np;
  color: var(--mgreen3);
}

span.panles_txt_Xm {
  bottom: 10px;
}

p.panel_counters {
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 19px;
  color: var(--black);
}

div.mobs_main {
  display: flex;
  background: transparent;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  align-items: flex-start;
  width: auto;
  justify-content: flex-start;
  gap: 5px 5px;
  margin-top: 8px;
}

div.mobs_main a {
  font-size: 16px;
  flex: 0 1 auto;
  background-image: url(../images/phone.png);
  padding: 3.5px 10px;
  padding-right: 30px;
  background-color: rgb(224 240 255 / 69%);
  margin-bottom: 0px;
  background-position: 94% center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 6px;
  font-family: "np";
  padding-top: 8px;
}

div.build_info {
  background: var(--default_bg_color);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px 6px;
  border-radius: 6px;
  margin-top: 8px;
  padding: 6px 6px;
  direction: ltr;
  text-align: left;
}

div.build_info p {
  font-size: 25px;
  font-family: "np";
  background-color: #8547a2;
  padding: 10px 12px;
  padding-bottom: 5px;
  border-radius: 3px;
  color: var(--white-00);
}

div.build_info p.k_apart_p {
  background-color: var(--mgreen3);
  color: var(--white-00);
  cursor: pointer;
}

div.build_info p.k_floorn_p {
  background-color: #00739a;
  cursor: pointer;
}
input.itemqtt_in_sabata {
  flex: 1 1 60%;
  font-size: 19px;
  padding: 0px 0px;
  width: 60%;
}
input.itemqtt_in_sabataqtt {
  flex: 1 1 60%;
  font-size: 19px !important;
  padding: 0px 0px !important;
  width: 60% !important;
  height: 100% !important;
}
p.res_ttl {
  display: block;
  text-align: center;
  font-family: np;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 0px;
}

div.nat_main {
  display: flex;
  background: transparent;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  align-items: flex-start;
  width: auto;
  justify-content: flex-end;
  gap: 5px 5px;
  margin-top: 8px;
}

div.nat_main p {
  font-size: 16.5px;
  height: 38px;
  flex: 1 1 auto;
  padding: 7px 2px;
  padding-right: 36px;
  background-color: var(--default_bg_color);
  margin-bottom: 0px;
  background-position: calc(100% - 8px) center;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 6px;
  font-family: "npl";
  font-weight: 400;
}

div.nat_main p.k_nationality_p {
  background-image: url(../images/earth.png);
  cursor: pointer;
}

div.nat_main p.k_signin_date_p {
  background-image: url(../images/key.png);
  cursor: pointer;
}

div.nat_main p.k_signout_date_p {
  background-image: url(../images/cholkrdn.png);
  cursor: pointer;
  background-size: 20px;
}

div.nat_main p.k_is_family_p {
  padding-right: 7px;
  text-align: center;
  cursor: pointer;
}

div.submen_main_men {
  width: auto;
  height: auto;
  flex: 1 1 auto;
  padding: 0px;
  background-color: var(--default_bg_color);
  border-radius: 6px;
}

div.submen {
  display: none;
  position: absolute;
  bottom: auto;
  z-index: 2;
  background: var(--lightblue);
  padding: 6px 0px;
  border-radius: 14px;
  left: 50%;
  transform: translate(-50%, 3px);
  width: max-content;
  box-shadow: 20px 20px 25px -17px #54718a, 0px 8px 25px -15px #54718a;
}

div.submen a {
  display: block;
  padding: 6px 8px;
  font-size: 16px;
}

span.pno_men {
  display: inline-block;
  direction: ltr;
}

p.k_note_p {
  font-size: 16px;
  margin-top: 12px;
}

p.f_radio_ttl {
  font-size: 15px;
  margin-bottom: 8px;
  font-family: np;
}

div.submen a:hover {
  color: var(--mgreen1);
}

button.property_btn {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: var(--default_bg_color);
  padding: 10px 10px;
  border-radius: 40px;
  cursor: pointer;
  z-index: 1;
  width: 45px;
  height: 45px;
  line-height: 29.5px;
  color: var(--darkblue);
}

div.inner_f_radio {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

div.inner_f_radio input {
  scale: 1.2;
}

div.inner_f_radio label {
  flex: none;
  margin-left: 24px;
  font-size: 16.5px;
  top: 2px;
}

div.add_inner_f_radio label {
  margin-left: 76px;
}

div.add_inner_f_radio input.add_family_chk_ {
  right: -55px;
}

div.add_inner_f_radio label.zlbl2 {
  left: 54px;
}

div.main_f_radio {
  margin-top: 20px;
}

p,
span,
label,
a {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

p.n_f {
  font-size: 20px;
  font-family: npl;
  top: 0px;
}

a.n_f_a {
  font-family: np;
  background: rgb(255 255 255);
  padding: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  margin-top: 6px;
  margin-right: 6px;
  margin-left: 6px;
}

button.dtsh {
  background-color: #e3e3e3;
  padding: 6px;
  border-radius: 6px;
  font-size: 16px;
}

button.dtsh_actve {
  background-color: var(--blue);
  color: var(--white-00);
}

div.dates_top_btns {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  gap: 4px 4px;
  flex-direction: column;
  justify-content: center;
}

div.dates_top_btns_p1,
div.dates_top_btns_p2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 3px 3px;
}

button.finnr_btns {
  background-color: rgb(237 237 237);
  padding: 7px 3px;
  flex: 1 1 auto;
  text-align: center;
  font-size: 15px;
  border-radius: 6px;
  box-shadow: -1px 1px 5px -4px rgb(12, 117, 187);
}

div.dates_main,
div.salwmang_main {
  margin-top: 15px;
}

button.finnr_btns_active {
  background-color: var(--blue);
  color: white;
}

div.inner_filter {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 6px 6px;
  box-shadow: 0px 8px 16px -15px var(--mgreen1);
  padding-bottom: 10px;
}

div.inner_filter button {
  padding: 8px 20px;
  background-color: var(--mgreen1);
  background: linear-gradient(230deg, rgb(18 126 163), var(--mgreen1));
  border-radius: 50px;
  font-size: 17px;
  font-family: np;
  padding-bottom: 7px;
  box-shadow: -2px 2px 8px -5px #5f5f5f7d;
  color: var(--white-00);
}

div.post_men {
  display: none;
  position: absolute;
  top: 58px;
  left: 12px;
  right: auto;
  bottom: auto;
  background-color: rgb(180 216 249 / 38%);
  z-index: 2;
  border-radius: 12px;
  height: auto;
  width: auto;
  padding: 10px;
  padding-top: 15px;
  /* box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px; */
  box-shadow: 0px 0px 6px 1.5px rgb(255 255 255 / 60%),
    rgba(0, 0, 0, 0.4) 0px 30px 90px;
  backdrop-filter: blur(22px);
}

div.post_men a {
  display: block;
  padding: 6px 6px;
  background-color: rgb(255 255 255 / 72%);
  border-radius: 6px;
  margin-bottom: 4px;
  backdrop-filter: blur(10px);
  padding-right: 35px;
  background-position: calc(100% - 8px) center;
  background-repeat: no-repeat;
  background-size: 20px;
}

div.post_men a.pen_ {
  background-image: url(../images/pen.png);
}

div.post_men a.hist_ {
  background-image: url(../images/history.png);
}

div.post_men a.del_ {
  background-image: url(../images/delete.png);
  background-size: 22.3px;
}

div.post_men a.chak_ {
  background-image: url(../images/cholkrdn.png);
}

img.loadingxhr {
  margin: 0 auto;
  display: block;
  width: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.loading_submits {
  background-image: url(../images/loading-1.gif);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 20px;
}

button.status_btn {
  background: linear-gradient(211deg, var(--blue), var(--mgreen3)) !important;
}

@media screen and (max-width: 680px) {
  div.inner_k {
    flex: 1 1 100%;
  }

  div.main_f_radio {
    margin-top: 16px;
  }

  p.f_radio_ttl {
    font-size: 14px;
    margin-bottom: 4px;
    font-family: np;
  }

  div.popupbox,
  div.popupbox_notxhr {
    max-width: 94%;
  }

  div.inner_nav_list_menu a.fullscreenbtn {
    display: none;
  }

  div.main_content div.wide_content div.div_top_container p.container_title {
    font-size: 16px;
  }

  form.form_hastitle {
    margin-top: 20px;
  }

  div.list_of_drugs_main p.l_d_plus_count.l_d_plus_count {
    right: 25px;
    font-size: 14px;
  }

  p.form_inner_one_title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  input[type="text"],
  input[type="email"],
  input[type="date"],
  input[type="time"],
  input[type="number"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  select,
  textarea {
    width: 100%;
  }

  div.container_top_center_page {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: calc(var(--default_fixed_menu_top_height) + 5.5%);
    max-width: 90%;
  }

  div.div_top_container svg {
    width: 45px;
    margin-bottom: 8px;
  }

  div.div_top_container {
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0;
    padding-bottom: 15px;
  }

  div.inner_input,
  div.single_input,
  label {
    margin-left: 0px;
    margin-right: 0px;
  }

  div.inner_input {
    margin-top: 10px;
  }

  div.single_input {
    margin-bottom: 10px;
  }
  div.othdescrips {
    margin-top: -5px !important;
  }

  .submitbuttons {
    margin-top: 20px;
  }

  p.container_title {
    font-size: 18px;
  }

  p.name_of_hospital_mens {
    font-size: 14.5px;
    top: calc(50% + -5px);
    left: 52px;
    display: none;
  }

  p.sub_name_of_hospital_mens {
    font-size: 9px;
    bottom: 5.5px;
    left: 52px;
    display: none;
  }

  a.nav_home_btn {
    font-size: 0px;
    height: 100%;
    color: transparent;
  }

  a.nav_home_btn:hover {
    background-color: transparent;
    color: transparent;
  }

  a.nav_home_btn::before {
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid var(--input_borderFocusedColor);
    border-radius: 5px;
    transform: translate(-50%, -50%);
  }

  button.btn_user_login {
    right: 62px;
  }

  button.searchbtntop {
    right: 124px;
  }

  button.bellnoti {
    /* right: 186px; */
    right: 124px;
  }

  button.btn_mens {
    background-color: rgb(236 236 236 / 72%);
  }

  button.btn_mens:hover {
    background-color: rgb(236 236 236 / 72%);
  }

  button.btn_mens:hover svg path.btn_mens_path {
    fill: black;
  }

  select.small_select {
    margin-left: 0px;
  }

  body.large_content div.nav_top div.inner_nav {
    max-width: calc(95% - 20px);
  }

  body.large_content div.nav_top div.inner_nav div.men_left_btns {
    left: calc(0% - 20px);
  }

  input.filterbypid {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    float: none !important;
    font-size: 16px !important;
  }

  div.pt_list_main p {
    font-size: 13px;
  }

  div.pt_list_main div.pt_list_loader div.list_of_drugs_main {
    gap: 4px 4px;
    padding: 10px 8px;
    padding-right: 50px;
  }

  div.pt_list_main div.list_of_drugs_main * {
    font-size: 12px;
  }

  div.pt_list_main div.list_of_drugs_main span.generic_name {
    font-size: 15px;
  }

  div.pt_list_top input {
    height: 38px;
    font-size: 16px;
  }

  div.pt_list_main {
    padding: 7px 7px;
  }

  input.quantity_number {
    width: 40px !important;
    height: 25px !important;
  }

  div.list_of_drugs_main p.l_d_plus_sign {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    padding: 0px 0px;
    font-size: 25px;
    line-height: 20px;
    background-color: transparent;
    color: rgb(109 109 109 / 50%);
    font-family: npl;
    pointer-events: none;
  }

  div.popupbox,
  div.popupbox_medium {
    margin-top: 5% !important;
  }

  div.panels_main {
    max-width: 100%;
  }
}

@media screen and (max-width: 520px) {
  button.view_tbl {
    top: -8px;
    left: 3%;
    width: 30px;
    height: 30px;
    background-size: 24px;
  }

  p.res_ttl {
    margin-bottom: 5px;
    margin-top: 14px;
  }

  div.panels_main {
    margin-top: 20px;
    width: 100%;
    background-color: transparent !important;
  }

  div.top_content img {
    width: 110px;
  }

  div.top_content {
    padding-top: 15px;
  }

  div.panel {
    width: 31%;
    height: 100px;
  }

  div.panel_B {
    flex-grow: 1;
    margin-right: 4%;
  }

  div.btm_panel {
    margin-top: 15px;
  }

  div.panel_A {
    background-position: 10px 10px;
    background-size: 35px;
  }

  div.panel_C {
    background-position: 10px 12px;
    background-size: 38px;
  }

  div.panel_D {
    background-position: 4px 7px;
    background-size: 44px;
  }

  div.panel_B {
    background-position: 0px -22px;
    background-size: 130px;
  }

  div.panel_E {
    background-position: 10px 14px;
    background-size: 16px;
  }

  p.panel_counters {
    bottom: 10px;
    left: 10px;
    font-size: 16px;
  }

  p.sum_panels {
    font-size: 17px;
  }

  span.panles_txt_Xm {
    bottom: 10px !important;
  }

  span.panles_txt_A {
    position: absolute;
    bottom: 30px;
    right: 14px;
    font-size: 15px;
  }

  div.panel a button {
    width: 20px;
    height: 20px;
    top: 10px;
    right: 10px;
    background-size: 15px;
    background-position: center 1.5px;
  }
}

input.nafaqat_ama_mqdra {
  font-size: 25px;
  font-weight: bold;
  /* direction: ltr; */
  /* text-align: left; */
}

p.bellow_inputs {
  font-size: 15px;
  margin: 0;
  margin-top: 3px;
  text-align: left;
  direction: ltr;
}

div.main_popup_filters div.popupbox {
  width: 340px;
}

@media screen and (max-width: 490px) {
  div.messagebox_buttons {
    margin-bottom: -8px;
    margin-top: 8px;
  }

  button.btn_user_login {
    right: 60px;
  }

  button.searchbtntop {
    right: 96px;
  }

  button.bellnoti {
    right: 115px;
  }

  div.container_top_center_page {
    margin-top: calc(var(--default_fixed_menu_top_height) + 3%);
    max-width: 95%;
  }

  div.div_top_container svg {
    width: 40px;
  }

  input[type="text"],
  input[type="email"],
  input[type="date"],
  input[type="time"],
  input[type="number"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  select,
  textarea {
    height: 45px;
    font-size: 17px;
  }

  input.large_input {
    height: 48px;
    border-width: 2px;
    font-size: 17px;
  }

  div.single_input {
    margin-bottom: 12px;
  }
  div.othdescrips {
    margin-top: -8px !important;
  }
  div.inner_input {
    margin-top: 12px;
  }

  input.buttons {
    height: 48px;
  }

  div.inner_nav {
    max-width: 95%;
  }

  div.men_right_btns {
    right: 0px;
  }

  div.messagebox {
    width: 90%;
  }

  div.div_messagebox_title {
    padding-bottom: 5px;
    padding-top: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  div.div_messagebox_title button.closebutton {
    width: 40px;
    height: 40px;
  }

  svg.closemessage {
    width: 12px;
    height: 12px;
  }

  .div_messagebox_body {
    padding: 15px;
    padding-top: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  div.div_top_messagbebox_body {
    margin-bottom: 40px;
    margin-top: 6px;
  }

  div.div_bottom_messagbebox_body {
    height: 40px;
  }

  button.okmessagbebox {
    font-size: 16.5px;
  }

  :root {
    --border_radius: 8px;
  }

  p.div_messagebox_message {
    font-size: 16px;
  }

  p.messagebox_title {
    font-size: 15px;
  }

  input.large_input_text {
    font-size: 17px;
    font-weight: bold;
    height: 46px;
    border-width: 2px;
  }

  input.large_input_number {
    font-size: 17px;
    font-weight: bold;
    height: 46px;
    border-width: 2px;
  }
}

@media screen and (max-width: 415px) {
  div.nat_main p {
    padding: 6px 6px;
    text-align: center;
    background-image: none !important;
  }
}

@media screen and (max-width: 348px) {
  div.panel {
    width: 30%;
    height: 100px;
  }

  div.panels_main {
    padding: 12px;
  }

  p.panel_counters {
    font-size: 14.5px;
    font-family: "np";
  }

  span.panles_txt_A {
    font-size: 14px;
  }

  div.panel a button {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  div.container_top_center_page {
    margin-top: calc(var(--default_fixed_menu_top_height) + 1.8%);
    max-width: 97%;
  }

  div.messagebox {
    width: 93%;
  }

  div.messagebox_buttons button {
    padding: 6px 6px;
  }
}

@media screen and (max-height: 620px) {
  div.messagebox {
    width: 70%;
  }

  div.messagebox div.div_messagebox_title {
    border-radius: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  div.container_top_center_page {
    margin-top: calc(var(--default_fixed_menu_top_height) + 20px);
  }
}

a.print_code.not_print {
  display: block;
  text-align: center;
  height: 50px;
  background-color: white;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 47px;
}

@media (max-height: 950px) {
  div.popupbox,
  div.popupbox_notxhr {
    margin-top: calc(var(--default_fixed_menu_top_height) + -20px);
  }

  div.popupbox_medium {
    margin-top: calc(var(--default_fixed_menu_top_height) + 40px);
  }
}

@media print {
  .not_print,
  .nav_top,
  .top_btns {
    display: none !important;
  }

  :root {
    --default_txt_dir: ltr !important;
  }

  table {
    direction: rtl !important;
  }

  div.panels_main {
    padding: 0px 0px !important;
    background-color: #ffffff !important;
  }

  div.container_top_center_page,
  div.main_content {
    margin-top: 0px !important;
  }

  body,
  html {
    background-color: white !important;
  }

  button.prntbtn {
    display: none;
  }

  div.main_content {
    width: 100% !important;
  }

  div.main_content div.tppcntr {
    width: 100% !important;
    margin-top: 0px !important;
    box-shadow: none !important;
  }
}

input[type="text"]:disabled {
  background-color: rgb(238 238 238) !important;
}

span.input_icons_left {
  display: block;
}
