/*
----------------------
======= FONT ========
----------------------
*/
@font-face {
  font-family: rubik_Black;
  src: url('../font/Rubik/Rubik-Black.ttf');
}

@font-face {
  font-family: rubik_BlackItalic;
  src: url('../font/Rubik/Rubik-BlackItalic.ttf');
}

@font-face {
  font-family: rubik_Bold;
  src: url('../font/Rubik/Rubik-Bold.ttf');
}

@font-face {
  font-family: rubik_BoldItalic;
  src: url('../font/Rubik/Rubik-BoldItalic.ttf');
}

@font-face {
  font-family: rubik_Italic;
  src: url('../font/Rubik/Rubik-Italic.ttf');
}

@font-face {
  font-family: rubik_Extrabold;
  src: url('../font/Rubik/Rubik-ExtraBold.ttf');
}

@font-face {
  font-family: rubik_ExtraBoldItalic;
  src: url('../font/Rubik/Rubik-ExtraBoldItalic.ttf');
}

@font-face {
  font-family: rubik_Italic;
  src: url('../font/Rubik/Rubik-Italic.ttf');
}

@font-face {
  font-family: rubik_Light;
  src: url('../font/Rubik/Rubik-Light.ttf');
}

@font-face {
  font-family: rubik_LightItalic;
  src: url('../font/Rubik/Rubik-LightItalic.ttf');
}

@font-face {
  font-family: rubik_Medium;
  src: url('../font/Rubik/Rubik-Medium.ttf');
}

@font-face {
  font-family: rubik_MediumItalic;
  src: url('../font/Rubik/Rubik-MediumItalic.ttf');
}

@font-face {
  font-family: rubik_Regular;
  src: url('../font/Rubik/Rubik-Regular.ttf');
}

@font-face {
  font-family: rubik_Semibold;
  src: url('../font/Rubik/Rubik-SemiBold.ttf');
}

@font-face {
  font-family: rubik_Semibolditlic;
  src: url('../font/Rubik/Rubik-SemiBoldItalic.ttf');
}

* {
  margin: 0;
  padding: 0;
  font-family: rubik_Regular;
}

a {
  text-decoration: none;
}




/*
---------------------------------------------
======= LOADER ========
---------------------------------------------
*/
.pageloader {
  display: none;
  position: fixed;
  top: 50%;
  z-index: 1050;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pageloader:before {
  content: '';
  position: fixed;
  top: 50%;
  z-index: 1050;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pageloaderoverflow {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #c3c3c3;
  z-index: 1049;
  opacity: .8;
}



/*
----------------------
======= SCROLLBAR  ========
----------------------
*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px var(--dark_blue);
  border-radius: 15px;
  background-color: var(--dark_blue);
}

::-webkit-scrollbar {
  width: 2px;
  background-color: var(--white);
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  box-shadow: inset 0 0 6px var(--dark_blue);
  background-color: var(--white);
}



/*
----------------------
======= FONT SIZE ========
----------------------
*/
.fs_10 {
  font-size: 10px !important;
}

.fs_11 {
  font-size: 11px !important;
}

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

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

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

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

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

.fs_17 {
  font-size: 17px !important;
}

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

.fs_19 {
  font-size: 19px !important;
}

.fs_20 {
  font-size: 20px !important;
}

.fs_21 {
  font-size: 21px !important;
}

.fs_22 {
  font-size: 22px !important;
}

.fs_23 {
  font-size: 23px !important;
}

.fs_24 {
  font-size: 24px !important;
}

.fs_25 {
  font-size: 25px !important;
}

.fs_26 {
  font-size: 26px !important;
}

.fs_27 {
  font-size: 27px !important;
}

.fs_28 {
  font-size: 28px !important;
}

.fs_29 {
  font-size: 29px !important;
}

.fs_30 {
  font-size: 30px !important;
}


/*
----------------------
======= FONT WEIGHT ========
----------------------
*/
.fw_100 {
  font-weight: 100;
}

.fw_200 {
  font-weight: 200;
}

.fw_300 {
  font-weight: 300;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700;
}

.fw_800 {
  font-weight: 800;
}

.fw_900 {
  font-weight: 900;
}

.fw_bolder {
  font-weight: bolder;
}

.fw_bold {
  font-weight: bold;
}

.fw_normal {
  font-weight: normal;
}


/*
----------------------
======= TEXT DECORATION ========
----------------------
*/
.text_underline {
  text-decoration: underline;
}

.text_decoration_none {
  text-decoration: none;
}

.text_decoration_none:hover {
  text-decoration: none;
}

.text_italic {
  font-style: italic;
}






/*
----------------------
======= BUTTON  ========
----------------------
*/
.btn {
  border-radius: 0 !important;
}

.recipt_btn {
  background-color: var(--receipt_color);
  text-decoration: none;
  color: var(--white);
  padding: 0 10px !important;
  border: 1px solid var(--receipt_color);
}

.recipt_btn:hover {
  color: var(--receipt_color);
  border: 1px solid var(--receipt_color);
  background-color: transparent;
}

.recipt_btn:focus {
  box-shadow: none !important;
}



/*
----------------------
======= NAV TABS  ========
----------------------
*/
.nav-tabs {
  border: 0 !important;
  padding: 10px 0;
}

.nav-tabs li {
  cursor: pointer;
}

.nav-tabs li .nav-link {
  color: var(--black);
  background: var(--light_grey);
  font-size: 15px;
  border: 0;
  border-radius: 30px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.nav-tabs li .active {
  color: var(--white) !important;
  background: var(--label_color) !important;
  border: 0;
  border-radius: 30px;
}











/*
----------------------
======= CARD ========
----------------------
*/
.card {
  border: 0;
  box-shadow: 0px 5px 9px #00000024;
}

.card .card-header {
  padding: 7px 20px;
  background: var(--card_header);
  color: var(--black);
}

.card .card-header h2 {
  font-size: 18px;
  margin: 0;
  letter-spacing: -1px;
}








/*
----------------------
======= DATEPICKER  ========
----------------------
*/
#ui-datepicker-div {
  z-index: 1036 !important;
}











/*
----------------------
======= TABLE ========
----------------------
*/
.table_responsive_height {
  height: 300px;
}

.table_reponsive_test_commission_height {
  height: 447px;
}

.table tr th {
  background: var(--table_head);
  padding: 3px 2px;
  color: var(--white);
  font-weight: normal;
  vertical-align: middle;
  font-size: 13px;
}

.table tbody tr:nth-child(even) {
  background: var(--light_grey);
  padding: 6px;
  color: var(--black);
}

.table tbody tr:nth-child(odd) {
  background: var(--white);
  padding: 6px;
  color: var(--black);
}

.table tbody tr td {
  padding: 0px 2px;
  font-size: 13px;
  vertical-align: middle;
}

.table tr th {
  position: sticky;
  z-index: 100;
  top: 0;
}

.table tr td {
  padding: 0px 2px;
  font-size: 13px;
  vertical-align: middle;
}



/*
----------------------
=======MODAL========
----------------------
*/
.modal .modal-header {
  padding: 10px 15px;
  background: var(--card_header);
  color: var(--black);
  display: flex;
  align-items: center;
}

.modal-header .close {
  background: var(--primary);
  position: absolute;
  right: -21px;
  top: -24px;
  border-radius: 50%;
  padding: 10px 15px;
  margin: 0;
  text-shadow: none;
  color: var(--white);
  opacity: 1.0;
  border: 1px solid var(--primary);
}

.modal-header .close:hover {
  border: 0;
  outline: 0;
}

.close:focus {
  border: 0;
  outline: 0;
}






/*
----------------------
=======FROM========
----------------------
*/
label {
  color: var(--label_color);
  margin-bottom: 0 !important;
  font-size: 13px !important;
}

.form-control {
  padding: 4px !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  height: 23px !important;
  margin: 0 !important;
  overflow: hidden;
  resize: none;
}

.form-group {
  margin: 0 !important;
}

.form-control:focus {
  background-color: var(--focus_color) !important;
  box-shadow: none;
  color: var(--black) !important;
  border-color: var(--focus_color);
}

.form-control:focus::placeholder {
  color: #b9b9b9;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #cfcfcf !important;
  opacity: 1;
}







/*
----------------------
=======FROM========
----------------------
*/
.pagination .page-item .page-link {
  background: #00048d;
  color: #fff;
  text-decoration: none;
}







/*
----------------------
=======ERROR & SAVE ALERT========
----------------------
*/


#actionbtn {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  margin: 0;
  z-index: 1500;
  background: #6bff3b;
  border-color: #6bff3b;
  box-shadow: 1px 1px 12px #000;
  color: #000;
  font-size: 16px;
}

#errorbtn {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  margin: 0;
  z-index: 1500;
  background: #ff3b3b;
  border-color: #ff3b3b;
  box-shadow: 1px 1px 12px #000;
  color: #fff;
  font-size: 16px;
}

#logout_btn {
  position: fixed;
  right: 30px;
  top: 30px;
  margin: 0;
  z-index: 1500;
  background: #ff3b3b;
  border-color: #ff3b3b;
  box-shadow: 1px 1px 12px #000;
  color: #fff;
  font-size: 16px;
}











/*
----------------------
======= DATATABLE ========
----------------------
*/
.dataTables_wrapper .row:nth-child(1) {
  align-items: center;
}

#table_length {
  float: left;
}

#table_filter {
  float: right;
}

#table_filter input {
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#table_filter input:focus {
  outline: unset;
}

#table_paginate {
  float: right;
}

#table_info {
  float: left;
}

.dataTables_wrapper #table thead tr th {
  padding: 3px 2px;
  color: var(--white) !important;
  font-weight: normal;
  vertical-align: middle !important;
}

.dataTables_wrapper #table tbody tr:nth-child(even) {
  background: var(--light_grey) !important;
  padding: 6px;
  color: var(--black) !important;
}

.dataTables_wrapper #table tbody tr:nth-child(odd) {
  background: var(--white) !important;
  padding: 6px;
  color: var(--black) !important;
}

.dataTables_wrapper #table {
  background: var(--table_head) !important;
  width: 100%;
}

.dataTables_wrapper #table tbody tr td {
  padding: 0px 2px;
  font-size: 13px;
  vertical-align: middle;
}

#table_paginate .pagination {
  margin: 0;
}

#table_paginate .paginate_button {
  background: var(--white);
  color: var(--black) !important;
  text-decoration: none;
  font-size: 13px;
  border: 0 !important;
  padding: 10px;
  cursor: pointer;
}

#table_paginate .current {
  background-color: var(--dark_blue);
  color: var(--white) !important;
  border: 0 !important;
}

#table_paginate .paginate_button:hover {
  background-color: var(--dark_blue);
  color: var(--white) !important;
  border: 0 !important;
}








/*
----------------------
=======breadcrumb========
----------------------
*/
.breadcrumb {
  background: transparent;
  margin: 0;
}

.breadcrumb .breadcrumb-item a {
  color: #3447d1;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
  color: #ccc;
}







/*
----------------------
======= LOGIN ========
----------------------
*/
.login_main {
  display: flex;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  background-image: url('../img/login_back.jpg');
  background-position: center;
  background-size: cover;
}

.login .input-group-prepend {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: var(--grey);
}

.login__icon {
  color: var(--dark_blue);
}

.login .pass_icon {
  position: absolute;
  right: 8px;
  top: 12px;
  z-index: 6;
  cursor: pointer;
}

.login_main .login_inner .login_form {
  width: 500px;
  background: var(--white);
  padding: 43px 10px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--light_grey);
}

.inner_clock {
  text-align: right;
  padding: 18px 0px;
}

.inner_clock .clock {
  font-size: 35px;
  color: var(--dark_blue);
  margin: 0;
}

.login_main .login_inner .login_form::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 50%;
  right: 0;
  background: var(--label_color);
  opacity: .8;
  bottom: 10px;
  z-index: -1;
  clip-path: ellipse(25% 40% at 100% 50%);
}

.login_main .login_inner .login_form .login .login__submit {
  background-color: var(--dark_blue);
  color: var(--white);
}

















/*
----------------------
=======Header========
----------------------
*/
.width_adonic .row .col-md-2 {
  max-width: 320px;
}

.div_header {
  position: fixed;
  bottom: 0;
  right: 26px;
  z-index: 10;
  background: #5d00f3;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  box-shadow: 1px 1px 9px #5d00f3;
}

.div_header #clock {
  font-size: 34px;
  color: var(--white);
}

.div_header #day {
  font-size: 16px;
  color: var(--dark_grey);
}

header .div_header #clock {
  font-size: 25px;
  color: var(--white);
}

header .div_header #day {
  font-size: 12px;
  color: var(--white);
  margin: 0;
}

header .inner_clock {
  text-align: right;
  padding: 0px;
}

header .inner_clock .clock {
  font-size: 35px;
  color: var(--dark_blue);
  margin: 0;
}

header {
  position: relative;
  box-shadow: 2px 2px 9px #161616;
  background: var(--header_color);
  max-width: calc(100% - 250px);
  margin-left: auto;
  height: 37px;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.header__short {
  max-width: calc(100% - 0);
  transition: .6s;
}

.header_inner {
  padding: 15px;
}

header h2 {
  font-size: 20px;
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--white);
}

.list__icons {
  cursor: pointer;
  display: none;
}

.close__icons {
  display: none;
  cursor: pointer;
}

#Header__dropdown {
  margin: 0;
  display: flex;
}

#Header__dropdown li {
  list-style: none;
  position: relative;
  /*padding: 0 6px;*/
}

.Header__Drop li a {
  text-decoration: none;
  color: #000000b3;
}

#Header__dropdown li .person__icons {
  background-color: var(--white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: block;
  color: #8072f3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 4px #2a2a2a42, inset 0px 0px 6px #a6a6d7;
}

.dropdown__header {
  position: absolute;
  background-color: #fff;
  right: 0;
  width: 250px;
  display: block;
  box-shadow: 0px 5px 8px #0000006b;
  border-radius: 10px;
  margin-top: 10px;
  top: 100%;
}

.dropdown__header li a {
  width: 100%;
  display: block;
  padding: 8px;
  font-size: 14px;
}

.dropdown__header li a:hover {
  background: var(--sidebar_backcolor);
  color: var(--sidebar__textcolor);
}

.dropdown__header li:last-child a {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.dropdown__header li:last-child a:hover {
  /*background-color: #8072f3;*/
  /*color: var(--white);*/
  border-radius: 0 0 10px 10px;
}

.dropdown__header li a.active {
  background-color: #8072f3;
  color: var(--white);
}

.dropdown__header .media .online__offline {
  background: #33e333;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 0;
}

.dropdown__header .media .media-body .name__login {
  font-size: 16px;
  display: block;
  color: #000000bd;
  font-weight: 600;
}

.dropdown__header .media .media-body .role__login {
  font-size: 13px;
  color: #1e1e1ea8;
}

.notificationImg {
  width: 40px;
}

.postnotification {
  font-size: 12px;
}

.mins {
  font-size: 10px;
  display: block;
}

.dropdown__header.noti .active {
  background: #cdd6f7;
}

.dropdown__header .markread {
  font-size: 12px;
  text-align: right;
  display: block;
  color: #0133f3;
  font-weight: 500;
}


/*
----------------------
=======Sidebar========
----------------------
*/
.sidebar {
  background: var(--sidebar_backcolor);
  position: fixed;
  width: 250px;
  font-size: 13.5px;
  top: 0;
  height: 100vh;
  padding: 0 !important;
  border-right: 1px solid #dfdfdf;
  transition: .6s;
  z-index: 1020;
}

.sidebar h2 {
  color: #fff;
  text-shadow: 0px 5px 2px #000;
  width: 100%;
  padding-left: 25px;
  transition: .6s;
  font-size: 25px;
  background-color: #fff;
  display: block;
  margin: 0;
}

.sidebar h2 a {
  text-decoration: none;
  color: #fff;
}

.home_image {
  display: none;
}

.sidebar h2 .min_Width {
  text-decoration: none;
  color: #fff;
  position: relative;
  width: auto;
  display: block;
  align-items: center;
  font-size: 18px;
  /*padding-left: 34px;*/
  display: block;
}

.homeImage {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 0 0 10px 0;
  background: #fff;
  padding: 10px 6px;
  box-shadow: 0px 3px 8px #000;
}

.sidebar h2 .min_Width .homeimage_Img {
  width: 30px !important;
}

.sidebar h2 .homeimage_Img:hover {
  filter: brightness(1.5);
}

.sidebar .sidebar__F__Ul {
  top: 0;
  /*overflow-y: scroll;*/
  /*overflow-x: hidden;*/
  position: relative;
  height: calc(100vh - 70px);
}

.sidebar .sidebar__F__Ul .menuname {
  color: #ccc;
  padding: 10px;
  display: block;
}

.sidebar .sidebar__F__Ul li a {
  color: var(--sidebar__textcolor);
  text-decoration: none;
  padding: 5px;
  display: block;
  margin: 5px 0 0 0;
  position: relative;
  border-radius: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 13px;
}

.sidebar .sidebar__F__Ul li a.disabled {
  color: #dddddd8c;
  pointer-events: none;
  cursor: unset;
}

.sidebar .sidebar__F__Ul li a:hover {
  background-color: #fff;
  color: var(--black);
}

.sidebar .sidebar__F__Ul li a.active {
  background-color: #fff;
  color: var(--black);
}

.sidebar.short__Width {
  width: 250px;
  transition: .6s;
  opacity: 1;
  /*display:block;*/
}

#dropdown {
  display: none;
}

#dropdown__sub {
  display: none;
}

.open #dropdown {
  display: block;
}

.open__children #dropdown__sub {
  display: block;
}

.dropdown__icons {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 12px;
  transition: .6s;
}

.bi_chevron_left {
  transition: .6s;
  transform: rotate(90deg);
}

.sidebar__F__Ul li {
  position: relative;
  list-style-type: none;
}

.sidebar__F__Ul li:hover #dropdown {
  display: block;
  position: absolute;
  left: 100%;
  z-index: 99;
  top: 0;
  background: var(--sidebar_backcolor);
}

.sidebar__F__Ul li:hover #dropdown.dropdownAdminreport {
  transform: translate(0, -50%);
}

#dropdown li:hover #dropdown__sub {
  display: block;
  position: absolute;
  left: 100%;
  z-index: 1111111111;
  bottom: 0;
  background: var(--sidebar_backcolor);
}

/* #dropdown li:hover #dropdown__sub.dropdown__subAgentDoctor{
  transform: translate(0,-35%);
} */

.sidebar__F__Ul li #dropdown li a {
  width: 200px;
}

.icon_sub_2 {
  margin-right: .5rem;
}

.mobileLogo {
  display: none;
}





/*
----------------------
=======DASHBOARD========
----------------------
*/
main {
  max-width: calc(100% - 250px);
  margin-left: auto;
  transition: .6s;
}

.main__short {
  max-width: calc(100% - 60px);
  transition: .6s;
}

.dashboard .box {
  background-image: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
  padding: 1rem;
  border-radius: 4px;
  color: var(--white);
  flex-direction: row;
  height: 150px;
  margin-bottom: 23px;
}

.dashboard .box2 {
  background-image: radial-gradient(circle 248px at center, #16d9e3 0%, #30c7ec 47%, #46aef7 100%) !important;
  padding: 1rem;
  border-radius: 4px;
  color: var(--white);
  flex-direction: row;
  height: 150px;
  margin-bottom: 23px;
}

.dashboard .box3 {
  background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%) !important;
  padding: 1rem;
  border-radius: 4px;
  color: var(--white);
  flex-direction: row;
  height: 150px;
  margin-bottom: 23px;
}

.dashboard .box4 {
  background-image: linear-gradient(to right, #241313 0%, #dd1919 100%) !important;
  padding: 1rem;
  border-radius: 4px;
  color: #ffffff;
  flex-direction: row;
  height: 150px;
  margin-bottom: 23px;
}

.dashboard .box5 {
  background-image: linear-gradient(to right, #434343 0%, black 100%) !important;
  padding: 1rem;
  border-radius: 4px;
  color: #ffc72a;
  flex-direction: row;
  height: 150px;
  margin-bottom: 23px;
}

.dashboard .box6 {
  background-image: linear-gradient(to right, #e54bb6 0%, #7b089f 100%) !important;
  padding: 1rem;
  border-radius: 4px;
  color: #ffffff;
  flex-direction: row;
  height: 150px;
  margin-bottom: 23px;
}

.more {
  position: absolute;
  bottom: 16px;
  left: 16px;
}





/*
----------------------
=======DEPARTMENT========
----------------------
*/
#dname {
  text-transform: uppercase;
}

.dname {
  text-transform: uppercase;
}







/*
----------------------
======= PROFILE TEST ========
----------------------
*/

#autocomplete,
#autocomplete1 {
  position: relative;
}

.profile_test #result {
  position: absolute;
  top: 32px;
  background: var(--white);
  z-index: 1036;
  box-shadow: 1px 1px 12px var(--grey);
  height: 300px;
  overflow-y: auto;
}

.profile_test #result1 {
  position: absolute;
  top: 56px;
  background: var(--white);
  z-index: 1036;
  box-shadow: 1px 1px 12px var(--grey);
  height: 300px;
  overflow-y: auto;
}

.profile_test #result .selected,
#result1 .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: var(--dark_blue);
  color: var(--white);
}

.profile_test #result ul li,
#result1 ul li {
  list-style-type: none;
  padding: 0 10px;
}











/*
----------------------
======= BILL ENTRY ========
----------------------
*/
.auto_div {
  /* background-color: #e3e3e321;
  box-shadow: 0px 0px 5px #ccc; */
}

.bill_entry #pname {
  text-transform: uppercase;
}

.bill_entry #result {
  position: absolute;
  background: #fff;
  color: #000;
  width: 100%;
  z-index: 1036;
  box-shadow: 0px 3px 10px #ccc;
}

.bill_entry #result ul:hover {
  opacity: 1.0;
}

.bill_entry #result ul li:hover {
  background: #000;
  color: #fff;
  opacity: 1.0;
}

.bill_entry #result li:hover {
  text-decoration: none;
  background-color: #fff;

}

.bill_entry #result li {
  cursor: pointer;
  font-size: 13px !important;
  font-size: inherit;
  padding: 5px 13px;
  display: block;
}

.bill_entry #result .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: #005AA7;
  color: #fff;
}

.bill_entry #result_collector {
  position: absolute;
  background: #fff;
  color: #000;
  width: 60%;
  z-index: 11;
}

.bill_entry #result_collector ul {
  list-style: none;
}

.bill_entry #result_collector li {
  cursor: pointer;
  font-size: 13px !important;
  font-size: inherit;
  padding: 5px 13px;
  display: block;
}

.bill_entry #result_collector .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: #005AA7;
  color: #fff;
}

.bill_entry #result_agent {
  position: absolute;
  background: #fff;
  color: #000;
  width: 60%;
  z-index: 11;
}

.bill_entry #result_agent ul {
  list-style: none;
}

.bill_entry #result_agent li {
  cursor: pointer;
  font-size: 13px !important;
  font-size: inherit;
  padding: 5px 13px;
  display: block;
}

.bill_entry #result_agent .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: #005AA7;
  color: #fff;
}





.bill_entry #result_doc {
  position: absolute;
  background: #fff;
  color: #000;
  width: 60%;
  z-index: 11;
}

.bill_entry #result_doc ul {
  list-style: none;
}

.bill_entry #result_doc li {
  cursor: pointer;
  font-size: 13px !important;
  font-size: inherit;
  padding: 5px 13px;
  display: block;
}

.bill_entry #result_doc .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: #005AA7;
  color: #fff;
}

.bill_entry .require_field {
  color: red;
  top: -1px;
  font-size: 12px;
}

.bill_entry .table_billing_test_entry_height {
  height: 250px;
}

.bill_entry #bok_date {
  cursor: pointer;
}

.bill_entry .auto_div .icons_bok {
  position: absolute;
  right: 9px;
  bottom: 0;
  pointer-events: none;
}

.bill_modify .auto_div .icons_bok {
  position: absolute;
  right: 9px;
  bottom: 0;
  pointer-events: none;
}







/*
---------------------------------------------
======= BILL MODIFY ========
---------------------------------------------
*/
.bill_modify #result {
  position: absolute;
  background: #fff;
  color: #000;
  width: 100%;
  z-index: 1036;
  box-shadow: 0px 3px 10px #ccc;
}

.bill_modify #result ul:hover {
  opacity: 1.0;
}

.bill_modify #result ul li:hover {
  background: #000;
  color: #fff;
  opacity: 1.0;
}

.bill_modify #result li:hover {
  text-decoration: none;
  background-color: #fff;

}

.bill_modify #result li {
  cursor: pointer;
  font-size: 13px !important;
  font-size: inherit;
  padding: 5px 13px;
  display: block;
}

.bill_modify #result .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: #005AA7;
  color: #fff;
}

.infoIcons {
  position: absolute;
  right: 4px;
  top: 4px;
  cursor: pointer;
}

.allTotalPaidInfo {
  position: absolute;
  display: none;
  background-color: #111;
  width: 500px;
  right: 0;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  box-shadow: 3px 5px 7px #11111173;
}

.info:hover .allTotalPaidInfo {
  display: block;
}

@media(max-width:768px) {
  .allTotalPaidInfo {
    width: auto;
  }
}












/*
---------------------------------------------
======= PATIENT REGISTRATION REPORT ========
---------------------------------------------
*/
.Patient_Reg #print_pdf2 {
  display: none;
}







/*
----------------------
======= Inventory ========
----------------------
*/
.inventory #p_item #purchase #result {
  position: absolute;
  background: #fff;
  color: #000;
  width: 100%;
  z-index: 1036;
  box-shadow: 0px 3px 10px #ccc;
}

.inventory #p_item #purchase #result li {
  cursor: pointer;
  font-size: 13px !important;
  font-size: inherit;
  padding: 5px 13px;
  display: block;
}

.inventory #p_item #purchase #result .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: #005AA7;
  color: #fff;
}

.inventory_expense #e_item #result {
  position: absolute;
  background: #fff;
  color: #000;
  width: 100%;
  z-index: 1036;
  box-shadow: 0px 3px 10px #ccc;
}

.inventory_expense #e_item #result li {
  cursor: pointer;
  font-size: 13px !important;
  font-size: inherit;
  padding: 5px 13px;
  display: block;
}

.inventory_expense #e_item #result .selected {
  opacity: 1.0;
  text-decoration: none;
  background-color: #005AA7;
  color: #fff;
}












/*
    14.12.2023
*/
.nointernet {

  position: fixed;
  top: 0;
  left: 0;
  background: #c3c9ff;
  width: 100%;
  height: 100%;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
}

.nointernet img {
  width: 500px;
}


.enqcount {
  position: absolute;
  background: red;
  font-size: 10px;
  width: 16px;
  height: 16px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -5px;
  border-radius: 100%;
  color: #fff;
  border: 0;
}



.enquiryDetails .profileDetails {
  width: 160px;
  box-shadow: 1px 6px 3px #686363;
  border-radius: 100%;
}

.enquiryDetails .enquiryLabel {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 10px 20px;
  border: 1px solid #e1dfdf;
  margin-bottom: 10px;
}

.enquiryDetails .enquiryLabel .title {
  color: #1831e1;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.enquiryDetails .enquiryLabel .titlevalue {
  font-size: 14px;
  color: #464545;
}


.callaadmin img {
  width: 70px;
  animation: animate 2s linear infinite;
}

@keyframes animate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.sidebar__F__Ul li .maindro {
  min-height: 200px;
  height: 100%;
  overflow-y: scroll;
}




.dashboard .msg {
  font-family: 'rubik_Semibold';
  font-size: 20px;
  margin: 0;
  padding: 5px 0;
  color: #ef0000;
}

.dashboard .msgPara {
  font-size: 13px;
  color: #666;
}




/* Pathology Report */
.sendThingPathologyReport {
  position: fixed;
  right: 0;
  background: #ffffff;
  padding: 10px;
  z-index: 1099;
  border-radius: 13px 0 0 13px;
  box-shadow: 1px 1px 5px #8f8f8f;
}

.sendThingPathologyReport .sendIcons {
  display: block;
}








/* Status Update */
:root {
  --whiteBadgeColor: #ffffff;
  --blackBadgeColor: #000000;
  --billing: #b8088c;
  --sample_collected: #d69d00;
  --received: #ec005b;
  --rejected: #fd0000;
  --hold: #fceb00;
  --result_process: #0e00d4;
  --resultSave: #009ac0;
  --resultPrinted: #57015f;
  --approval: #04aa11;
  --outside : #03fad1;
}

.badge {
  font-weight: normal;
}

.billing {
  background-color: var(--billing) !important;
  color: var(--whiteBadgeColor) !important;
}

.sample_collected {
  background-color: var(--sample_collected) !important;
  color: var(--whiteBadgeColor) !important;
}

.received {
  background-color: var(--received) !important;
  color: var(--whiteBadgeColor) !important;
}

.rejected {
  background-color: var(--rejected) !important;
  color: var(--whiteBadgeColor) !important;
}

.hold {
  background-color: var(--hold) !important;
  color: var(--blackBadgeColor) !important;
}

.result_process {
  background-color: var(--result_process) !important;
  color: var(--whiteBadgeColor) !important;
}

.resultSave {
  background-color: var(--resultSave) !important;
  color: var(--whiteBadgeColor) !important;
}

.approval {
  background-color: var(--approval) !important;
  color: var(--whiteBadgeColor) !important;
}

.resultPrinted {
  background-color: var(--resultPrinted) !important;
  color: var(--whiteBadgeColor) !important;
}

.outside{
  background-color: var(--outside) !important;
  color: var(--blackBadgeColor) !important;
}

/*
.macData {
  background-color: var(--macData)!important;
  color: var(--whiteBadgeColor)!important;
}

.reRun {
  background-color: var(--reRun)!important;
  color: var(--whiteBadgeColor)!important;
}

.inComplete {
  background-color: var(--inComplete)!important;
  color: var(--blackBadgeColor)!important;
}

.resultDone {
  background-color: var(--resultDone)!important;
  color: var(--whiteBadgeColor)!important;
}

.approved {
  background-color: var(--approved)!important;
  color: var(--blackBadgeColor)!important;
}

.reportPrinted {
  background-color: var(--reportPrinted)!important;
  color: var(--blackBadgeColor)!important;
}

.hold {
  background-color: var(--hold)!important;
  color: var(--blackBadgeColor)!important;
}

.forward {
  background-color: var(--forward)!important;
  color: var(--whiteBadgeColor)!important;
}

.received {
  background-color: var(--received)!important;
  color: var(--whiteBadgeColor)!important;
}

.dispatched {
  background-color: var(--dispatched)!important;
  color: var(--whiteBadgeColor)!important;
} */



/* Search Bill */

#m1 thead tr th {
  text-wrap: nowrap;
}

#m1 tr td {
  text-wrap: nowrap;
}


/* Sample Collected */
.sampleCollected #tableLoad tr th {
  text-wrap: nowrap;
}

.sampleCollected #tableLoad tr td {
  text-wrap: nowrap;
}


/* Sample Received */
.sampleReceived #tableLoad tr th {
  text-wrap: nowrap;
}

.sampleReceived #tableLoad tr td {
  text-wrap: nowrap;
}




/* Progress */
#progressContainer {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #d9d9d9a6;
  z-index: 1111;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #111;
}

#progressWrapper {
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  max-width: 400px;
  height: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

#progressWrapper h4{
  text-transform: uppercase;
  padding: 10px 0;
  text-decoration: underline;
}

#progressBarpercentage {
  font-size: 18px;
  margin: 10px 0;
  width: 0%;
}

#progressBarMain{
  height: 10px;
  width: 100%;
  border: 1px solid #4caf50;
  line-height: 20px;
  color: white;
  transition: width 0.3s ease;
  border-radius: 10px;
}

#progressBar {
  height: 10px;
  background-color: #4caf50;
  line-height: 20px;
  color: white;
  transition: width 0.3s ease;
  border-radius: 10px;
}
