html,
body {
  height: 100%;
  font-size: 14px;
}
html > div,
body > div {
  height: 100%;
}

body.login-forgot-background {
  background: url(../images/login-bg.jpg) no-repeat 50% 0 #fff;
  padding-top: inherit;
}
body.login-forgot-background footer.inner-footer {
  left: 0;
}
body.login-forgot-background footer.inner-footer .content-wrapper {
  width: 100%;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ced4da;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked + label:before {
  border: 1px solid #000;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i-cale {
  background: url("../images/icons/calendar.svg") no-repeat 98px center/15px;
  padding-right: 25px;
  /*Sameer*/
}

.font-regular {
  font-family: "roboto-regular";
}

.color-grey {
  color: #555555;
}

.color-blue {
  color: #0B417D;
}

/*Checkbox*/
[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
[type="checkbox"] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
[type="checkbox"] + label:before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-top;
  width: 17px;
  height: 17px;
  background: #fff;
  border: solid 1px #0b417d;
}
[type="checkbox"]:hover + label:before {
  background: #fff;
  border: solid 1px #0b417d;
}
[type="checkbox"]:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
[type="checkbox"]:checked + label:before {
  background: #fff;
}
[type="checkbox"]:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
[type="checkbox"]:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  background: #1d518a;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 #1d518a, 4px 0 0 #1d518a, 4px -2px 0 #1d518a, 4px -4px 0 #1d518a, 4px -6px 0 #1d518a, 4px -8px 0 #1d518a;
  transform: rotate(45deg);
}

/* Custom dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.custom-dropdown select {
  background-color: #fff;
  color: #212529;
  border: solid 1px #ced4da;
  font-size: 16px;
  padding: 3px 10px;
  padding-right: 2.5em;
  margin: 0;
  border-radius: 5px;
  text-indent: 0.01px;
  text-overflow: "";
  /*Hiding the select arrow for firefox*/
  -moz-appearance: none;
  /*Hiding the select arrow for chrome*/
  -webkit-appearance: none;
  /*Hiding the select arrow default implementation*/
  appearance: none;
}

/*Hiding the select arrow for IE10*/
.custom-dropdown select::-ms-expand {
  display: none;
}

.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-dropdown::after {
  background: url(../images/select-arrow.png);
  width: 10px;
  height: 6px;
  content: " ";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
}

.custom-dropdown::after {
  color: rgba(0, 0, 0, 0.6);
}

.custom-dropdown select[disabled] {
  color: rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  color: #0b427e;
  background-color: #E4EFFF;
  border-color: #E4EFFF;
  margin-left: 15px;
  /*Sameer Chalke*/
  min-width: 80px;
}
.btn-secondary:hover {
  background-color: #cbdcf2;
  color: #0b427e;
  border-color: #cbdcf2;
}
@media (max-width: 1200px) {
  .btn-secondary {
    margin-left: 7px;
  }
}

.login-register-wrapper {
  padding-top: 160px;
  text-align: center;
  /*login validation left aligned 18th feb 2020*/
}
.login-register-wrapper .logo {
  margin-bottom: 20px;
}
.login-register-wrapper h4 {
  margin-bottom: 10px;
  color: #1d518a;
}
.login-register-wrapper p {
  margin-bottom: 55px;
  color: #999999;
}
.login-register-wrapper .form-group .form-control {
  background: #f1f5f9;
  border: none;
  padding: 10px;
  height: 40px;
}
.login-register-wrapper .form-group .forgot-password {
  font-size: 0.875rem;
  margin: 9px 0px;
}
.login-register-wrapper .srv-validation-message {
  text-align: left;
}

body {
  background: #e9ecef;
  counter-reset: my-sec-counter;
  padding-top: 63px;
  position: relative;
}

header {
  background: #fff;
  height: 63px;
  box-shadow: 0px 3px 6px #00000029;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
header > a {
  float: left;
  padding-left: 35px;
}
header > a > img {
  height: 63px;
  width: auto;
}
header > ul {
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}
header > ul > li {
  font-size: 14px;
  color: #0b427e;
  font-family: "roboto-medium";
  border-right: solid 1px #ced4da;
  padding: 21px 15px;
  float: left;
  height: 63px;
}
header > ul > li > span {
  color: #6c757d;
  padding-left: 10px;
}
header > ul > li:last-child {
  padding-right: 0;
  border: none;
}
header > ul > li.help {
  position: relative;
  line-height: 42px;
  width: 60px;
  display: block;
}
header > ul > li.notifications {
  position: relative;
  cursor: pointer;
}
header > ul > li.notifications > a {
  padding: 15px;
  display: block;
}
header > ul > li.notifications > a .sprite-icon.notification-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header > ul > li.notifications .dr-approval-pending {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 360px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.18);
  z-index: 1;
  right: 0px;
  top: 100%;
  transition: all 5s ease-in-out;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper {
  padding: 0;
  margin-bottom: 0;
  max-height: 500px;
  overflow-y: auto;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a {
  text-decoration: none;
  position: relative;
  color: #495057;
  font-size: 14px;
  border-top: 1px solid #dee2e7;
  display: block;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a:first-child {
  border-top: none;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a .card {
  border: none;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a .card:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 15px;
  color: #0b427e;
  padding-right: 5px;
  position: absolute;
  right: 0;
  background: #1d518a;
  padding: 5px 10px;
  border-bottom-left-radius: 5px;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a .card.appointment-request:before {
  content: "\e924";
  color: #fff;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a .card.pending-request:before {
  content: "\e927";
  color: #fff;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a .card .card-body {
  padding: 1rem;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a .card .card-body p {
  margin-bottom: 0;
  letter-spacing: 0.42px;
  color: #555555;
  font-size: 10px;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a .card .card-body p span {
  color: #0B417D;
}
header > ul > li.notifications .dr-approval-pending .content-wrapper a.notification-read .card-body p {
  opacity: 0.7;
}
header > ul > li.notifications .dr-approval-pending > .fixed {
  padding: 10px;
  text-align: center;
  clear: both;
}
header > ul > li.notifications .dr-approval-pending > .fixed a {
  text-decoration: none;
}
header > ul > li.notifications .dr-approval-pending .no-notification-tag {
  padding: 10px;
  color: #0b417d;
  text-align: center;
}
header > ul > li.setting {
  padding: 10px;
  position: relative;
}
header > ul > li.setting > a {
  position: relative;
  line-height: 42px;
  width: 40px;
  display: block;
}
header > ul > li.setting > a > span.sprite-icon.settings {
  background-position: 0 -94px;
  width: 40px;
  position: absolute;
  right: -3px;
  top: 3px;
}
header > ul > li.setting > a:hover {
  color: #589eea;
  text-decoration: none;
}
header > ul > li.setting .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.18);
  z-index: 1;
  right: 10px;
  top: 100%;
}
header > ul > li.setting .dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header > ul > li.setting .dropdown-content ul li a {
  font-size: 14px;
  color: #343a40;
  font-weight: 500;
  padding: 7px;
  display: block;
  border-bottom: solid 1px #dee2e6;
}
header > ul > li.setting .dropdown-content ul li a:hover {
  text-decoration: none;
  color: #0b427e;
  cursor: pointer;
}
header > ul > li.setting .dropdown-content ul li a:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 20px;
  color: #0b427e;
  padding-right: 10px;
}
header > ul > li.setting .dropdown-content ul li a.avatar:before {
  content: "\e92a";
  font-size: 18px;
}
header > ul > li.setting .dropdown-content ul li a.password:before {
  content: "\e92c";
  font-size: 9px;
}

header > ul > li.setting .dropdown-content ul li a.qrcode {
  content: "\e92c";
  font-size: 9px;
}

header > ul > li.setting .dropdown-content ul li a.logout:before {
  content: "\e92d";
  font-size: 18px;
}
header > ul > li.setting .dropdown-content ul li a .sign-out {
  vertical-align: text-bottom;
}
header > ul > li.setting .dropdown-content ul li:last-child a {
  border: none;
}
header > ul > li.setting .dropdown-content:after {
  bottom: 100%;
  right: 5px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}
header > ul > li.setting:hover .dropdown-content {
  display: block;
}
header > ul > li.group-details {
  line-height: 17px;
  padding: 0;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}
header > ul > li.group-details a {
  text-decoration: none;
  padding: 15px 55px 15px 15px;
  display: block;
}
header > ul > li.group-details a span {
  display: block;
  padding: 0;
  font-family: "roboto-regular";
  color: #6c757d;
}
header > ul > li.group-details a span.sprite-icon.exchange {
  background-position: 0 0;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
header > ul > li.group-details a:before {
  background: url(../images/exchange.png);
  width: 26px;
  height: 26px;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
header > ul > li.group-details a:hover {
  color: #1d518a;
}
header > ul > li.group-details a:hover span {
  color: #6c757d;
}
header > ul > li.group-details:hover .dr-approval-pending {
  display: block;
}

.bg-light {
  background: #589eea !important;
}

.navbar {
  padding: 0;
  margin-bottom: 0;
  width: 220px;
  float: left;
  height: calc(100% - 63px);
  background: #0B417D !important;
  display: inherit;
  position: fixed;
  z-index: 2;
}
.navbar .user-details {
  border-bottom: solid 1px #0B5290;
  padding: 15px 10px 15px 40px;
  color: #fff;
  font-size: 13px;
  font-family: "roboto-medium";
  min-height: 48px;
  position: relative;
}
.navbar .user-details:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 28px;
  color: #fff;
  content: "\e91d";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.navbar .user-details span {
  font-family: "roboto-light";
  font-size: 12px;
  display: block;
  line-height: 17px;
}
.navbar .navbar-nav {
  flex-direction: column !important;
  width: 100%;
  display: block;
}
.navbar .navbar-nav li {
  display: block;
  position: relative;
}
.navbar .navbar-nav li.active {
  background: red;
}

.navbar-light .navbar-nav {
  height: 520px;
  overflow-y: scroll;
}
.navbar-light .navbar-nav::-webkit-scrollbar {
  width: 6px;
  background-color: #163e6a;
}
.navbar-light .navbar-nav::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(83, 146, 79, 0.5);
  background-color: #53924f;
}
.navbar-light .navbar-nav .nav-link > span.icon {
  margin-right: 5px;
  float: left;
}
.navbar-light .navbar-nav .nav-link > span.icon:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 20px;
  color: #fff;
}
.navbar-light .navbar-nav .nav-link > span.icon.dashboard:before {
  content: "\e90d";
}
.navbar-light .navbar-nav .nav-link > span.icon.prescription:before {
  content: "\e914";
}
.navbar-light .navbar-nav .nav-link > span.icon.prescription-queue:before {
  content: "\e92b";
}
.navbar-light .navbar-nav .nav-link > span.icon.pharmacy:before {
  content: "\e913";
}
.navbar-light .navbar-nav .nav-link > span.icon.medicine:before {
  content: "\e911";
}
.navbar-light .navbar-nav .nav-link > span.icon.patient:before {
  content: "\e912";
}
.navbar-light .navbar-nav .nav-link > span.icon.reports:before {
  content: "\e916";
}
.navbar-light .navbar-nav .nav-link > span.icon.todays-queue:before {
  content: "\e919";
}
.navbar-light .navbar-nav .nav-link > span.icon.search-prescription:before {
  content: "\e926";
}
.navbar-light .navbar-nav .nav-link > span.icon.user-management:before {
  content: "\e927";
}
.navbar-light .navbar-nav .nav-link > span.icon.approve-prescription:before {
  content: "\e928";
}
.navbar-light .navbar-nav .nav-link > span.icon.request-pending:before {
  content: "\e929";
}
.navbar-light .navbar-nav .nav-link > span.icon.prescription-order:before {
  content: "\e92e";
}
.navbar-light .navbar-nav .nav-link > span.icon.card-reissue:before {
  content: "\e92f";
}
.navbar-light .navbar-nav .nav-link > span.icon.offline-rx:before {
  content: "\e930";
}
.navbar-light .navbar-nav .nav-link > span.icon.billing:before {
  content: "\e963";
}
.navbar-light .navbar-nav .nav-link > span.icon.consultation:before {
  content: "\e962";
}
.navbar-light .navbar-nav .nav-link > span.icon.immunization-queue:before {
  content: "\e967";
}
.navbar-light .navbar-nav .nav-link > span.icon.unsigned-order:before {
  content: "\e964";
}
.navbar-light .navbar-nav .nav-link > span.icon.unsigned-prescription:before {
  content: "\e966";
}
.navbar-light .navbar-nav .nav-link > span.icon.staff-activity-log:before {
  content: "\e965";
}
.navbar-light .navbar-nav .nav-link > span.icon.appointment-management:before {
  content: "\e926";
  /*Sameer Chalke*/
}
.navbar-light .navbar-nav .nav-link.active {
  color: #0b427e;
  background: #fff;
  position: relative;
  z-index: 99999;
}
.navbar-light .navbar-nav .nav-link.active:hover {
  color: #0b427e;
  background: #fff;
}
.navbar-light .navbar-nav .nav-link.active:focus {
  color: #0b427e;
}
.navbar-light .navbar-nav .nav-link.active > span.icon:before {
  color: #0b427e;
}
.navbar-light .navbar-nav .nav-link:focus {
  color: #fff;
}
.navbar-light .navbar-nav .nav-link {
  color: #fff;
  padding: 13px 10px;
  font-size: 13px;
  line-height: 24px;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
  background: #0B5290;
}

.main-container {
  width: calc(100% - 220px);
  float: right;
  padding: 0 20px;
  height: auto;
  padding-bottom: 41px;
}

.page-title {
  font-size: 18px;
  color: #0b427e;
  font-weight: 500;
  margin: 10px 0;
  float: left;
  width: 100%;
}
.page-title.font-size-16 {
  font-size: 16px;
}
.page-title span {
  color: #000;
}
.page-title .date,
.page-title .prescription-details {
  float: right;
  font-size: 14px;
  color: #495057;
  line-height: 22px;
}
.page-title .date i,
.page-title .prescription-details i {
  font-style: normal;
  color: #0b427e;
}
.page-title.no-heading {
  border-bottom: solid 1px #cbd3dc;
  padding-bottom: 10px;
  margin-bottom: 0px;
  font-size: 14px;
}
.page-title.no-heading > a {
  font-size: 12px;
  background: #fff;
  display: inline-block;
  margin-right: 15px;
  padding: 5px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px #cbd3dc;
}
.page-title.no-heading > a:hover {
  text-decoration: none;
}
.page-title.no-heading .prescription-details {
  float: none;
}
.page-title .btn {
  float: right;
  margin-right: 0.5rem;
}

.breadcrumb-wrapper {
  float: right;
  padding-right: 15px;
}
.breadcrumb-wrapper .breadcrumb {
  padding: 0;
  margin: 0;
}
.breadcrumb-wrapper .breadcrumb a {
  color: #555555;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item.active {
  color: #0b427e;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "\e902";
  font-family: "icomoon";
  font-size: 10px;
}


.content-wrapper-nobg {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 10px;
}

.content-wrapper {
  background: #fff;
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 10px;
  box-shadow: 0px 0px 3px #00000029;
  padding: 10px 20px;
  position: relative;
}
.content-wrapper > .content-wrapper {
  box-shadow: none;
  padding: 10px 0;
}
.content-wrapper > .content-wrapper.margin-bottom-none {
  margin-bottom: 0;
}
.content-wrapper.padding-none {
  padding: 0;
}
.content-wrapper.padding-10 {
  padding: 10px;
}
.content-wrapper.padding-20 {
  padding: 20px;
}
.content-wrapper.padding-top {
  padding: 10px 0 0 0;
}
.content-wrapper.padding-left-right {
  padding: 0 20px;
}
.content-wrapper.assign-to .form-control {
  width: 215px;
  display: inline-block;
  margin-right: 20px;
}
.content-wrapper.align-center {
  text-align: center;
}
.content-wrapper.align-center .btn {
  margin: 0 15px;
}
.content-wrapper > input[type="checkbox"] + label {
  margin: 0;
  position: absolute;
  right: 10px;
  top: 6px;
}
.content-wrapper > input[type="checkbox"]:checked + label:after {
  top: 10px;
}
.content-wrapper > h5 {
  background: #f1f7ff;
  color: #0b427e;
  padding: 12px 25px;
  font-size: 14px;
  border-bottom: 2px solid #b4c2d1;
  font-weight: 600;
  margin: 0;
}
.content-wrapper > h5 .edit-details {
  float: right;
}
.content-wrapper > h5 .edit-details:before {
  font-family: "icomoon";
  content: "\e90b";
  font-weight: normal;
  font-size: 16px;
}
.content-wrapper > h6 {
  color: #0b427e;
  font-size: 14px;
  padding-bottom: 25px;
  border-bottom: solid 1px #9FBAD8;
  font-family: "roboto-medium";
  margin-bottom: 0;
}
.content-wrapper > h6 + select {
  margin-top: 10px;
}
.content-wrapper > h6 + textarea {
  margin-top: 10px;
}
.content-wrapper > h6 .tooltip-custom {
  min-width: 16px;
}
.content-wrapper > h6 .tooltip-custom:before {
  font-family: "icomoon";
  content: "\e921";
  font-weight: normal;
  font-size: 14px;
  background: none;
  width: auto;
  height: auto;
  top: -7px;
}
.content-wrapper > h6 .tooltip-custom .left {
  padding: 5px;
  font-size: 12px;
  line-height: 18px;
  right: 0;
  margin-right: 0;
  left: 100%;
  top: -8px;
  max-height: 250px;
  overflow-y: scroll;
}
.content-wrapper > h6 .tooltip-custom .left::-webkit-scrollbar {
  width: 6px;
  background-color: #ced4da;
}
.content-wrapper > h6 .tooltip-custom .left::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(83, 146, 79, 0.5);
  background-color: #163e6a;
}
.content-wrapper > h6.inner_heading {
  color: #565656;
  border-bottom: solid 1px #bdbdbd;
  margin-top: 10px;
}
.content-wrapper > p {
  color: #666666;
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 10px;
}
.content-wrapper .patient-list,
.content-wrapper .doctor-list,
.content-wrapper .medicine-list,
.content-wrapper .user-management,
.content-wrapper .common-table {
  margin-bottom: 0;
}
.content-wrapper .patient-list th,
.content-wrapper .doctor-list th,
.content-wrapper .medicine-list th,
.content-wrapper .user-management th,
.content-wrapper .common-table th {
  border-bottom: 2px solid #9fbad8;
  border-top: 2px solid #9fbad8;
}
.content-wrapper .patient-list td,
.content-wrapper .doctor-list td,
.content-wrapper .medicine-list td,
.content-wrapper .user-management td,
.content-wrapper .common-table td {
  border-bottom: 1px solid #dee2e7;
}
.content-wrapper .patient-list th,
.content-wrapper .patient-list td,
.content-wrapper .doctor-list th,
.content-wrapper .doctor-list td,
.content-wrapper .medicine-list th,
.content-wrapper .medicine-list td,
.content-wrapper .user-management th,
.content-wrapper .user-management td,
.content-wrapper .common-table th,
.content-wrapper .common-table td {
  padding: 10px;
  vertical-align: middle;
}
.content-wrapper .patient-list thead th,
.content-wrapper .doctor-list thead th,
.content-wrapper .medicine-list thead th,
.content-wrapper .user-management thead th,
.content-wrapper .common-table thead th {
  border-top: none;
  color: #0b427e;
  font-family: "roboto-medium";
  font-weight: normal;
}
.content-wrapper .patient-list thead th:last-child,
.content-wrapper .doctor-list thead th:last-child,
.content-wrapper .medicine-list thead th:last-child,
.content-wrapper .user-management thead th:last-child,
.content-wrapper .common-table thead th:last-child {
  text-align: left;
}
.content-wrapper .patient-list tbody tr td:last-child,
.content-wrapper .doctor-list tbody tr td:last-child,
.content-wrapper .medicine-list tbody tr td:last-child,
.content-wrapper .user-management tbody tr td:last-child,
.content-wrapper .common-table tbody tr td:last-child {
  text-align: left;
}
.content-wrapper .patient-list tbody tr.disable td,
.content-wrapper .doctor-list tbody tr.disable td,
.content-wrapper .medicine-list tbody tr.disable td,
.content-wrapper .user-management tbody tr.disable td,
.content-wrapper .common-table tbody tr.disable td {
  color: #adb5bd;
}
.content-wrapper .row-heading {
  font-size: 16px;
  margin-bottom: 10px;
  padding-bottom: 15px;
  color: #589eea;
  border-bottom: solid 1px #adb5bd;
}
.content-wrapper .row-heading > i {
  background: url(../images/tooltip-icon.jpg);
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-left: 10px;
  cursor: pointer;
}
.content-wrapper .row-heading > span {
  color: #0b427e;
  margin-left: 5px;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  display: none;
}
.content-wrapper .page-title {
  padding-left: 0;
}
.content-wrapper .medicine-listing {
  padding: 0 15px;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: solid 1px #dee2e6;
}
.content-wrapper .medicine-listing div.count {
  position: relative;
  padding-left: 40px;
}
.content-wrapper .medicine-listing div.count:before {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter) ".";
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -5px;
  font-size: 16px;
  font-family: "roboto-medium";
  color: #333333;
}
.content-wrapper .medicine-listing div.duration label {
  display: block;
}
.content-wrapper .medicine-listing div.duration input {
  width: 35%;
  float: left;
  margin-right: 10px;
}
.content-wrapper .medicine-listing div.duration select {
  width: 55%;
  float: left;
}
.content-wrapper .medicine-listing label {
  font-size: 14px;
  font-family: "roboto-light";
}
.content-wrapper .medicine-listing label + div {
  padding: 7px 0;
}
.content-wrapper .medicine-listing .remove-medicine-row {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -13px;
}
.content-wrapper .medicine-listing .remove-medicine-row:before {
  content: "\e90a";
  font-family: "icomoon";
  font-size: 25px;
  color: #0b427e;
  cursor: pointer;
}
.content-wrapper .patient-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  font-size: 14px;
  width: 100%;
}
.content-wrapper .patient-details li {
  display: table-cell;
  vertical-align: middle;
  border-right: solid 1px #ced4da;
  padding: 0 10px;
}
.content-wrapper .patient-details li span {
  color: #589eea;
  padding-left: 5px;
}
.content-wrapper .patient-details li span .form-control {
  display: inline-block;
  width: 75px;
  margin-left: 0;
}
.content-wrapper .patient-details li:first-child {
  padding-left: 0;
}
.content-wrapper .patient-details li:nth-child(5) {
  border-right: solid 1px #ced4da;
}
.content-wrapper .patient-details li:last-child {
  border-right: none;
  padding-right: 0;
}
.content-wrapper .patient-details li:last-child span .form-control {
  width: 75px;
}
.content-wrapper .details-listing {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  min-height: 114px;
}
.content-wrapper .details-listing li {
  width: 100%;
  float: left;
  padding: 8px 10px;
  border-bottom: solid 1px #e9ecef;
  font-size: 14px;
}
.content-wrapper .details-listing li > span {
  color: #0b427e;
  font-weight: 600;
  width: 150px;
  display: inline-block;
  vertical-align: top;
}
.content-wrapper .details-listing li > span.address {
  color: #212529;
  font-weight: normal;
  width: 220px;
}
.content-wrapper .details-listing li > span.address.insurance {
  width: 175px;
}
.content-wrapper .details-listing.full-width li {
  width: 100%;
}
.content-wrapper .details-listing.other-details {
  min-height: inherit;
  padding: 10px;
}
.content-wrapper .details-listing.other-details li {
  border-bottom: none;
}
.content-wrapper .details-listing.other-details li > span {
  width: auto;
  padding-right: 5px;
}
.content-wrapper .order-date {
  background: #f6f6f6;
  padding: 8px;
  color: #0b427e;
  display: inline-block;
  width: 49%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.content-wrapper .order-date i {
  color: #000;
  font-style: normal;
}
.content-wrapper .order-date + .order-date {
  float: right;
}
.content-wrapper .dropdown-menu {
  margin: 0;
  padding: 0;
  z-index: 8;
}
.content-wrapper .dropdown-menu li .dropdown-item {
  padding: 10px;
  font-size: 13px;
}
.content-wrapper.edit-patient .form-group > label {
  font-size: 14px;
  color: #0b427e;
  margin-bottom: 5px;
}
.content-wrapper.edit-patient .profile-pic {
  margin-bottom: 10px;
}
.content-wrapper.edit-patient .profile-pic img {
  width: 153px;
  border: solid 1px #dee2e6;
}
.content-wrapper.edit-patient #profile-pic-upload {
  visibility: hidden;
  position: absolute;
  left: -4444em;
}
.content-wrapper.edit-patient .profile-pic-upload, .content-wrapper.edit-patient .profile-pic-btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #0B417D;
  color: #0B417D;
  border-radius: 3px;
  padding: 3px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 129px;
  text-align: center;
  margin-right: 10px;
  min-height: 30px;
  line-height: 26px;
  font-size: 13px;
  font-family: "roboto-regular";
  font-size: 14px;
}
.content-wrapper.edit-patient .profile-pic-upload:hover, .content-wrapper.edit-patient .profile-pic-btn:hover {
  background: #0B417D;
  color: #fff;
}

.medicine-details-border {
  border-bottom: 1px solid #b5c2d2;
}
.medicine-details-border .btn_wrapper {
  float: right;
}
.medicine-details-border .border-thick {
  border-bottom: 2px solid #dee2e6;
}

.add-new-patient {
  float: right;
  clear: both;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  position: relative;
  padding: 15px 60px;
}
.add-new-patient:after {
  content: "\e900";
  font-family: "icomoon";
  font-size: 40px;
  position: absolute;
  right: 10px;
  top: 50%;
  line-height: 40px;
  margin: -22px 0 0px 0;
}
.add-new-patient:hover {
  color: #0b427e;
  text-decoration: none;
}

.table-responsive {
  display: inline-table;
}

.or-form {
  position: relative;
  height: 100%;
  background: #ced4da;
  width: 1px;
  display: block;
  left: 50%;
}
.or-form strong {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  margin: -15px 0 0 -15px;
  text-align: center;
  border: solid 1px #ced4da;
  color: #0b427e;
  font-weight: normal;
  border-radius: 50%;
  font-size: 0.875rem;
  padding: 5px;
}

.advance-search-form.hide {
  display: none;
}
.advance-search-form.show {
  display: block;
}

.advance-search-form + a.btn-secondary {
  max-height: 36px;
}

.add-new {
  float: right;
  font-size: 12px;
  padding: 5px 15px !important;
  margin: 5px 25px 0 0;
  color: #fff !important;
}
.add-new.btn-default {
  color: #1d518a !important;
}
.add-new.btn-default:hover {
  color: #fff !important;
}
.add-new.internal {
  margin: 5px 0 0 0;
}

.doc-container {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
}
.doc-container .doc-page-title {
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #0b427e;
}
.doc-container .doc-page-info {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 10px;
}
.doc-container .doc-list-heading {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: #0b427e;
  margin-bottom: 8px;
  display: inline-block;
}
.doc-container .doc-inner-list-heading {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
}
.doc-container .doc-list-title {
  font-size: 11px;
  margin-bottom: 4px;
}
.doc-container .doc-footer {
  border-top: 1px solid #0b427e;
  padding-top: 14px;
}

.privacy-list > ol {
  padding-left: 20px;
}
.privacy-list > ol > li {
  margin-top: 10px;
}
.privacy-list > ol > li > p {
  margin-bottom: 6px;
}
.privacy-list > ol > li > ul {
  padding-left: 20px;
}
.privacy-list > ol > li > ul > li {
  list-style-type: disc;
  margin-bottom: 10px;
}

ol.privacy-list-wrapper {
  counter-reset: item;
}
ol.privacy-list-wrapper > li {
  display: block;
}
ol.privacy-list-wrapper > li:before {
  content: counter(item) ". ";
  counter-increment: item;
}
ol.privacy-list-wrapper > li > ol {
  counter-reset: inner-item;
}
ol.privacy-list-wrapper > li > ol > li {
  display: block;
  margin-bottom: 10px;
}
ol.privacy-list-wrapper > li > ol > li:before {
  content: counters(item,".") "." counter(inner-item) ") ";
  counter-increment: inner-item;
}
ol.privacy-list-wrapper > li > ol > li > ol:not(.services) {
  counter-reset: inner;
}
ol.privacy-list-wrapper > li > ol > li > ol:not(.services) > li {
  display: block;
}
ol.privacy-list-wrapper > li > ol > li > ol:not(.services) > li:before {
  content: counter(inner) ") ";
  counter-increment: inner;
}
ol.privacy-list-wrapper > li > ol > li > ol:not(.services) > li > ol {
  list-style-type: lower-alpha;
}
ol.privacy-list-wrapper > li > ol > li > ol:not(.services) > li > ol > li {
  display: block;
}
ol.privacy-list-wrapper > li > ol > li > ol:not(.services) > li > ol {
  list-style-type: lower-roman;
}
ol.privacy-list-wrapper > li > ol > li > ol:not(.services) > li > ol > li {
  display: block;
}
ol.privacy-list-wrapper > li > ol > li > ol.services {
  list-style-type: lower-alpha;
}
ol.privacy-list-wrapper > li > ol > li > ol.services > li {
  display: list-item;
}
ol.privacy-list-wrapper > li > ol > li .triple {
  counter-reset: inner-itemsub !important;
}
ol.privacy-list-wrapper > li > ol > li .triple > li {
  display: block;
}
ol.privacy-list-wrapper > li > ol > li .triple > li:before {
  content: counters(item,".") "." counter(inner-item) "." counter(inner-itemsub) ") " !important;
  counter-increment: inner-itemsub !important;
}

ul.doc-definations > li {
  list-style: none !important;
}
ul.doc-definations > li > ol.services > li {
  display: list-item !important;
}

ol.services {
  list-style-type: lower-alpha;
}
ol.services > li {
  display: block;
}

.tooltip-custom {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-left: 7px;
  margin-top: 8px;
}
.tooltip-custom:before {
  width: 21px;
  height: 21px;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../images/tooltip-icon.jpg);
  cursor: pointer;
}
.tooltip-custom:hover .left {
  visibility: visible;
  opacity: 1;
}
.tooltip-custom .left {
  min-width: 220px;
  top: 0;
  right: 100%;
  margin-right: 10px;
  padding: 10px;
  color: #333333;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}
.tooltip-custom .left table {
  padding: 0;
  margin: 0;
  width: 100%;
}
.tooltip-custom .left table thead tr td {
  font-size: 14px;
  color: #0b427e;
  padding: 5px 10px;
  border-bottom: solid 1px #a0a0a0;
}
.tooltip-custom .left table tbody tr td {
  font-size: 12px;
  padding: 7px 10px;
  border-bottom: solid 1px #cdd1d6;
}
.tooltip-custom .left table tbody tr:last-child td {
  border-bottom: none;
}
.tooltip-custom .left.full-width {
  min-width: 550px;
}

.symptoms-diagnosis-wrapper {
  display: none;
}

.symptoms-diagnosis-table {
  padding: 0;
  margin: 0 0 25px 0;
  width: 100%;
}
.symptoms-diagnosis-table thead tr td {
  font-size: 14px;
  color: #0b427e;
  padding: 10px;
  border-bottom: solid 1px #a0a0a0;
}
.symptoms-diagnosis-table tbody tr td {
  font-size: 12px;
  padding: 10px;
  border-bottom: solid 1px #cdd1d6;
}

.search-wrapper {
  float: right;
  margin-bottom: 10px;
}
.search-wrapper > label {
  display: inline-block;
  color: #0b427e;
  padding-right: 10px;
  margin-bottom: 0;
  vertical-align: middle;
}
.search-wrapper .search-box {
  min-width: 490px;
  min-height: 33px;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 10px 15px;
  position: relative;
}
.search-wrapper .search-box .search-list {
  background: #0b427e;
  color: #fff;
  font-size: 11px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
  padding: 2px 7px;
  cursor: pointer;
  float: left;
  margin-right: 5px;
}
.search-wrapper .search-box .search-list + .search-box-icon {
  top: 10px !important;
}
.search-wrapper .search-box .search-count {
  background: #43d071;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 12px;
  -webkit-border-radius: 500%;
  -moz-border-radius: 500%;
  border-radius: 500%;
  display: inline-block;
  float: right;
  text-align: center;
  line-height: 20px;
  margin-right: 24px;
}
.search-wrapper .search-box .search-box-icon {
  float: right;
  position: absolute;
  right: 10px;
  top: 4px;
}
.search-wrapper .search-box .search-box-icon:before {
  content: "\e90c";
  font-family: "icomoon";
  font-size: 16px;
  color: #adb5bd;
  cursor: pointer;
}
.search-wrapper .search-box .search-container {
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 15px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 33px;
  border: solid 1px #b4c2d1;
  font-size: 14px;
  display: none;
  z-index: 9;
}
.search-wrapper .search-box .search-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-wrapper .search-box .search-container ul li {
  margin-bottom: 15px;
  position: relative;
}
.search-wrapper .search-box .search-container ul li span {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  font-size: 13px;
  color: #6c757d;
}
.search-wrapper .search-box .search-container ul li > input,
.search-wrapper .search-box .search-container ul li select {
  background: transparent;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 130px);
  padding: 2px;
  border: none;
  border-bottom: solid 1px #dee2e7;
  font-size: 13px;
}
.search-wrapper .search-box .search-container ul li > input:focus,
.search-wrapper .search-box .search-container ul li select:focus {
  border-bottom: solid 1px #589eea;
  outline: none;
}
.search-wrapper .search-box .search-container ul li > div {
  width: calc(100% - 130px);
}
.search-wrapper .search-box .search-container ul li > div input {
  width: 46.5%;
  margin: 0 5px;
  padding: 2px;
  border: none;
  border-bottom: solid 1px #dee2e7;
}
.search-wrapper .search-box .search-container ul li > div input:focus {
  border-bottom: solid 1px #589eea;
  outline: none;
}
.search-wrapper .search-box .search-container ul li:last-child {
  margin-bottom: 0;
  text-align: right;
}
.search-wrapper .search-box .search-container ul li > a {
  margin: 0 5px;
  padding: 5px 20px;
}
.search-wrapper .search-box .search-container ul li button {
  margin: 0 10px;
}

.heading-btn {
  float: right;
  padding-right: 10px;
  padding-bottom: 10px;
}
.heading-btn .btn {
  padding: 5px 10px;
  font-size: 11px;
  margin-left: 10px;
}

.data-grid-table .float-left {
  margin-top: 10px;
  margin-left: 15px;
  font-size: 14px;
}
.data-grid-table .float-right {
  margin-right: 15px;
  margin-top: 10px;
}

.page-link {
  width: 30px;
  height: 30px;
  padding: 0;
  text-align: center;
  line-height: 30px;
}

.page-item.active .page-link {
  background-color: #0b427e;
  border-color: #0b427e;
}

.show {
  display: inline-block !important;
}

.tooltip-custom {
  position: relative;
  display: inline-block;
  width: auto !important;
  min-width: 20px;
}
.tooltip-custom .tooltiptext {
  visibility: hidden;
  max-width: 150px;
  background-color: #0b427e;
  color: #fff;
  border-radius: 3px;
  padding: 5px;
  font-size: 11px;
  line-height: 13px;
  position: absolute;
  box-shadow: 3px 3px 3px #00001f;
  z-index: 1;
  left: 6px;
  top: 28px;
  width: 150px;
}
.tooltip-custom .tooltiptext:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #0b427e transparent;
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
}
.tooltip-custom .tooltiptext ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.tooltip-custom .tooltiptext ul li {
  margin-bottom: 5px !important;
}
.tooltip-custom .tooltiptext ul li i {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.tooltip-custom .tooltiptext ul li:last-child {
  border-top: none !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}
.tooltip-custom:hover .tooltiptext {
  visibility: visible;
}

.add-user-section {
  margin-bottom: 10px;
  padding: 5px 20px;
}
.add-user-section .select-location {
  float: left;
}
.add-user-section .select-location label {
  display: inline-block;
  color: #0b427e;
  font-size: 12px;
  margin: 0;
  margin-right: 10px;
  font-family: "roboto-medium";
}
.add-user-section .select-location select.form-control {
  display: inline-block;
  width: 150px;
  font-size: 12px;
  padding: 5px;
  height: 30px;
}
.add-user-section .btn {
  float: right;
  color: #fff !important;
}

.user-management th,
.user-management td {
  width: 14%;
}
.user-management th .resend-email,
.user-management th .edit,
.user-management th .file,
.user-management th .deactivate,
.user-management td .resend-email,
.user-management td .edit,
.user-management td .file,
.user-management td .deactivate {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
}
.user-management th .resend-email:hover,
.user-management th .edit:hover,
.user-management th .file:hover,
.user-management th .deactivate:hover,
.user-management td .resend-email:hover,
.user-management td .edit:hover,
.user-management td .file:hover,
.user-management td .deactivate:hover {
  text-decoration: none;
}
.user-management th .resend-email:hover:before,
.user-management th .edit:hover:before,
.user-management th .file:hover:before,
.user-management th .deactivate:hover:before,
.user-management td .resend-email:hover:before,
.user-management td .edit:hover:before,
.user-management td .file:hover:before,
.user-management td .deactivate:hover:before {
  color: #212529;
}
.user-management th .resend-email:before,
.user-management th .edit:before,
.user-management th .file:before,
.user-management th .deactivate:before,
.user-management td .resend-email:before,
.user-management td .edit:before,
.user-management td .file:before,
.user-management td .deactivate:before {
  font-family: "icomoon";
  font-size: 16px;
  color: #0b427e;
  cursor: pointer;
}
.user-management th .resend-email:before,
.user-management td .resend-email:before {
  content: "\e917";
}
.user-management th .edit:before,
.user-management td .edit:before {
  content: "\e90f";
}
.user-management th .file:before,
.user-management td .file:before {
  content: "\e910";
}
.user-management th .deactivate:before,
.user-management td .deactivate:before {
  content: "\e90e";
}
.user-management th .btn-toggle,
.user-management td .btn-toggle {
  margin: 0 6px;
}
.user-management th .btn-toggle:before,
.user-management td .btn-toggle:before {
  background: url(../images/on-toggle.png);
  width: 33px;
  height: 16px;
  content: "";
  display: inline-block;
  cursor: pointer;
  margin-top: 6px;
}
.user-management th .btn-toggle.off:before,
.user-management td .btn-toggle.off:before {
  background: url(../images/off-toggle.png);
}
.user-management th:last-child,
.user-management td:last-child {
  text-align: left !important;
}
.user-management th a.edit,
.user-management td a.edit {
  padding-bottom: 5px !important;
}

.modal-box {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 400px;
  background: white;
  box-shadow: 0px 0px 3px #00000029;
  border-radius: 5px;
  background-clip: padding-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
}
.modal-box.align-center {
  text-align: center;
}
.modal-box > .btn {
  margin-top: 25px;
}
.modal-box .user-popup-icon {
  text-align: center;
}
.modal-box .user-popup-icon h4 {
  font-family: "roboto-medium";
  font-size: 14px;
  color: #0b427e;
  margin: 15px 0 10px 0;
}
.modal-box .user-popup-icon p {
  font-size: 14px;
  color: #495057;
  margin-bottom: 15px;
}
.modal-box .location-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 228px;
  overflow-y: scroll;
  padding: 0 10px;
}
.modal-box .location-list::-webkit-scrollbar {
  width: 6px;
  background-color: #ced4da;
}
.modal-box .location-list::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(83, 146, 79, 0.5);
  background-color: #163e6a;
}
.modal-box .location-list li {
  margin-bottom: 5px;
}
.modal-box .location-list li input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.modal-box .location-list li input[type="radio"]:checked + label {
  border-color: #5c91cc;
}
.modal-box .location-list li input[type="radio"]:checked + label:before {
  display: block;
  font-family: "icomoon";
  font-size: 17px;
  color: #1d518a;
  content: "\e918";
  right: 10px;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  border: none;
  border-radius: inherit;
}
.modal-box .location-list li label {
  display: block;
  border: solid 1px #dee2e7;
  padding: 7px 13px;
  border-radius: 4px;
  text-align: left;
  margin-right: 0;
}
.modal-box .location-list li label h6 {
  font-size: 14px;
  color: #1d518a;
  font-family: "roboto-medium";
  margin-bottom: 0;
}
.modal-box .location-list li label p {
  margin: 0;
  font-size: 14px;
  color: #343a40;
}
.modal-box .location-list li label p.role {
  font-size: 12px;
  color: #6c757d;
}
.modal-box .location-list li label:before, .modal-box .location-list li label:after {
  display: none;
}
.modal-box .form-listing {
  list-style: none;
  margin: 5px auto 0;
  padding: 0;
  width: 80%;
}
.modal-box .form-listing li {
  margin-bottom: 15px;
}
.modal-box .form-listing li label {
  position: relative;
  font-family: "roboto-medium";
  font-size: 13px;
  color: #0b427e;
  display: inline-block;
  width: 90px;
  margin-bottom: 0;
}
.modal-box .form-listing li label.required:after {
  content: "*";
  color: red;
  margin-left: 2px;
}
.modal-box .form-listing li .form-control {
  width: calc(100% - 90px);
  display: inline-block;
  font-size: 12px;
  padding: 5px;
  height: 30px;
}
.modal-box .form-listing li.button-wrapper {
  text-align: center;
}
.modal-box .form-listing li.readonly {
  position: relative;
}
.modal-box .form-listing li.readonly:after {
  font-family: "icomoon";
  font-size: 13px;
  color: #adb5bd;
  content: "\e918";
  position: absolute;
  margin-left: 10px;
  line-height: 30px;
}
.modal-box .close-popup {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.modal-box .close-popup:before {
  position: absolute;
  left: 15px;
  content: " ";
  height: 15px;
  width: 2px;
  background-color: #1d518a;
}
.modal-box .close-popup:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 15px;
  width: 2px;
  background-color: #1d518a;
}
.modal-box .close-popup:before {
  transform: rotate(45deg);
}
.modal-box .close-popup:after {
  transform: rotate(-45deg);
}

.select-profile-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  text-align: center;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 3px #00000029;
  border-radius: 5px;
  margin: 0 auto;
  padding: 25px;
}
.select-profile-wrapper > h4 {
  font-family: "roboto-medium";
  font-size: 18px;
  color: #0b427e;
  margin: 15px 0;
}
.select-profile-wrapper > .btn {
  margin-top: 25px;
}
.select-profile-wrapper .location-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 228px;
  overflow-y: scroll;
  padding: 0 10px;
}
.select-profile-wrapper .location-list::-webkit-scrollbar {
  width: 6px;
  background-color: #ced4da;
}
.select-profile-wrapper .location-list::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(83, 146, 79, 0.5);
  background-color: #163e6a;
}
.select-profile-wrapper .location-list li {
  margin-bottom: 5px;
}
.select-profile-wrapper .location-list li input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.select-profile-wrapper .location-list li input[type="radio"]:checked + label {
  border-color: #5c91cc;
}
.select-profile-wrapper .location-list li input[type="radio"]:checked + label:before {
  display: block;
  font-family: "icomoon";
  font-size: 17px;
  color: #1d518a;
  content: "\e918";
  right: 10px;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  border: none;
  border-radius: inherit;
}
.select-profile-wrapper .location-list li label {
  display: block;
  border: solid 1px #dee2e7;
  padding: 7px 13px;
  border-radius: 4px;
  text-align: left;
  margin-right: 0;
}
.select-profile-wrapper .location-list li label h6 {
  font-size: 14px;
  color: #1d518a;
  font-family: "roboto-medium";
  margin-bottom: 0;
}
.select-profile-wrapper .location-list li label p {
  margin: 0;
  font-size: 14px;
  color: #343a40;
}
.select-profile-wrapper .location-list li label p.role {
  font-size: 12px;
  color: #6c757d;
}
.select-profile-wrapper .location-list li label:before, .select-profile-wrapper .location-list li label:after {
  display: none;
}
.select-profile-wrapper.profile-details {
  width: 650px;
  position: static;
  left: inherit;
  top: inherit;
  transform: inherit;
  margin: 25px auto;
  padding: 20px;
}
.select-profile-wrapper.profile-details ul.profile-details-listing {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.select-profile-wrapper.profile-details ul.profile-details-listing li {
  width: 50%;
  margin-bottom: 10px;
  position: relative;
}
.select-profile-wrapper.profile-details ul.profile-details-listing li:nth-child(even) {
  float: right;
  padding-left: 5px;
}
.select-profile-wrapper.profile-details ul.profile-details-listing li:nth-child(odd) {
  float: left;
  padding-right: 5px;
}
.select-profile-wrapper.profile-details ul.profile-details-listing li label {
  font-size: 12px;
  color: #0b427e;
  margin: 0;
}
.select-profile-wrapper.profile-details ul.profile-details-listing li label i {
  font-style: normal;
  color: red;
}
.select-profile-wrapper.profile-details ul.profile-details-listing li .error {
  color: red;
  font-size: 11px;
  position: absolute;
  bottom: -16px;
  left: 5px;
}
.select-profile-wrapper.profile-details > .btn {
  margin-top: 15px;
}

.modal-overlay {
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) !important;
}

.prescription-patient-details {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  /*Add prescription inline checkbox alignment 18th feb 2020*/
}
.prescription-patient-details > li {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  padding-right: 10px;
  padding-left: 10px;
  border-right: solid 1px #9FBAD8;
  min-height: 33px;
  line-height: 33px;
  color: #495057;
  margin-top: 10px;
}
.prescription-patient-details > li:first-child {
  padding-left: 0;
}
.prescription-patient-details > li:last-child {
  border-right: none;
}
.prescription-patient-details > li.no-left-padding {
  padding-left: 0;
}
.prescription-patient-details > li span {
  color: #0b427e;
}
.prescription-patient-details > li span .form-control {
  width: 50px;
  display: inline-block;
  height: 30px;
  text-align: center;
  font-size: 14px;
  font-family: "roboto-medium";
}
.prescription-patient-details > li span .form-control#patient_blood_group {
  width: 100px;
  font-size: 12px;
}
.prescription-patient-details > li span.section-heading {
  border-bottom: solid 1px #9FBAD8;
  margin-bottom: 10px;
  display: block;
  font-family: "roboto-medium";
}
.prescription-patient-details > li .tooltip-custom:before {
  font-family: "icomoon";
  content: "\e921";
  font-weight: normal;
  font-size: 14px;
  background: none;
  width: auto;
  height: auto;
  top: -7px;
  color: #0b427e;
}
.prescription-patient-details > li .tooltip-custom .left {
  padding: 5px;
  font-size: 12px;
  line-height: 18px;
}
.prescription-patient-details.test-details li {
  display: block;
  width: 100%;
  line-height: inherit;
  min-height: auto;
  border-right: none;
  padding: 0 0 5px 0;
  border-bottom: solid 1px #e9ecef;
  color: #0b427e;
  margin-bottom: 5px;
}
.prescription-patient-details.test-details li span {
  color: #495057;
  float: right;
  width: calc(100% - 150px);
}
.prescription-patient-details.test-details li span .upload {
  background: #e8f2ff;
  color: #0b427e;
  padding: 5px 10px;
  width: 500px;
  font-size: 12px;
  margin-bottom: 5px;
  position: relative;
  float: none;
  display: block;
}
.prescription-patient-details.test-details li span .upload .close {
  opacity: 1;
}
.prescription-patient-details.test-details li span .upload .close:before {
  position: absolute;
  right: 10px;
  content: " ";
  height: 10px;
  width: 2px;
  background-color: #1d518a;
  top: 9px;
}
.prescription-patient-details.test-details li span .upload .close:after {
  position: absolute;
  right: 10px;
  content: " ";
  height: 10px;
  width: 2px;
  background-color: #1d518a;
  top: 9px;
}
.prescription-patient-details.test-details li span .upload .close:before {
  transform: rotate(45deg);
}
.prescription-patient-details.test-details li span .upload .close:after {
  transform: rotate(-45deg);
}
.prescription-patient-details.test-details li span .upload #loading-bar-spinner.spinner {
  right: 7px;
  top: 7px;
  position: absolute;
  z-index: 19 !important;
  animation: loading-bar-spinner 700ms linear infinite;
}
.prescription-patient-details.test-details li span .upload #loading-bar-spinner.spinner .spinner-icon {
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #343a40 !important;
  border-left-color: #343a40 !important;
  border-radius: 50%;
}
@keyframes loading-bar-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.prescription-patient-details.test-details li span .upload.inprogress {
  background: #dee2e6;
  color: #343a40;
}
.prescription-patient-details.test-details li span .btn.btn-report {
  padding: 4px 10px;
  font-size: 0.775rem;
  min-width: 100px;
  margin: 5px 0;
  border: solid 1px #0b427e;
  font-family: "roboto-regular";
  line-height: 21px;
}
.prescription-patient-details.test-details li:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.prescription-patient-details.test-details li.no-border {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.prescription-patient-details.medicine-details {
  counter-reset: subsection;
}
.prescription-patient-details.medicine-details > li {
  padding: 10px 23px 0 23px;
  position: relative;
  width: 100%;
  display: block;
  min-height: inherit;
  line-height: normal;
  border-top: solid 1px #e9ecef;
  border-right: none;
  position: relative;
}
.prescription-patient-details.medicine-details > li:first-child {
  border-top: none;
  border-bottom: none;
}
.prescription-patient-details.medicine-details > li:before {
  counter-increment: subsection;
  content: counter(subsection);
  position: absolute;
  background: #0b427e;
  color: #fff;
  width: 18px;
  height: 18px;
  left: 0;
  top: 35px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.prescription-patient-details.medicine-details > li > .cancel {
  background: url(../images/cancel.png);
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 35px;
}
.prescription-patient-details.medicine-details > li > .cancel:hover {
  cursor: pointer;
}
.prescription-patient-details.medicine-details > li .form-group {
  display: inline-block;
  margin-bottom: 15px;
  padding: 0 5px;
  vertical-align: top;
}
.prescription-patient-details.medicine-details > li .form-group.half {
  width: 50%;
}
.prescription-patient-details.medicine-details > li .form-group.full {
  width: 100%;
}
.prescription-patient-details.medicine-details > li .form-group.duration input.form-control {
  width: 43px;
  min-width: 43px;
  display: inline-block;
  margin-right: 5px;
}
.prescription-patient-details.medicine-details > li .form-group.duration select.form-control {
  width: 100px;
  min-width: 100px;
  display: inline-block;
}
.prescription-patient-details.medicine-details > li .form-group label {
  font-size: 12px;
  color: #0b427e;
  margin-bottom: 5px;
  display: block;
}
.prescription-patient-details.medicine-details > li .form-group label .confirm {
  vertical-align: -webkit-baseline-middle;
}
.prescription-patient-details.medicine-details > li .form-group .form-control {
  min-width: 100px;
}
.prescription-patient-details.medicine-details > li .form-group .dropdown-menu {
  margin: 0;
  padding: 0;
  z-index: 7;
}
.prescription-patient-details.medicine-details > li .form-group .dropdown-menu li .dropdown-item {
  padding: 10px;
  font-size: 13px;
}
.prescription-patient-details + .btn {
  float: right;
  font-size: 0.775rem;
  min-width: 100px;
  margin-top: 10px;
}
.prescription-patient-details .inline-checkbox-wrapper {
  margin-top: 12px;
}
.prescription-patient-details .inline-checkbox-wrapper label {
  display: flex !important;
  align-items: center;
}
.prescription-patient-details [type="checkbox"]:checked + label:after {
  top: 9px;
}
.prescription-patient-details.react-tags-input-wrapper li {
  width: 100%;
  padding-right: 0;
}
.prescription-patient-details.react-tags-input-wrapper li span .react-tagsinput {
  padding-top: 0;
  border-radius: 0.25rem;
}
.prescription-patient-details.react-tags-input-wrapper li span .react-tagsinput .react-tagsinput-tag {
  padding: 0px 5px;
}
.prescription-patient-details.react-tags-input-wrapper li span .react-tagsinput .react-tagsinput-input {
  margin-bottom: 0;
}
.prescription-patient-details.react-tags-input-wrapper li span .react-tagsinput.react-tagsinput--focused {
  border-color: #589eea;
}

textarea.form-control.remark {
  height: 75px;
}

.margin-bottom {
  margin-bottom: 10px;
}

.prescription-accordion {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  clear: both;
  width: 100%;
}
.prescription-accordion li:first-child .accordion-panel {
  display: block;
}

.accordion-item {
  margin-bottom: 10px;
  padding: 12px;
  box-shadow: 0px 0px 3px #00000029;
  background: #fff;
}

.accordion-thumb {
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: #0b427e;
  font-size: 14px;
  display: inline-block;
}
.accordion-thumb .tooltip-custom {
  min-width: 14px;
}
.accordion-thumb .tooltip-custom:before {
  font-family: "icomoon";
  content: "\e921";
  font-weight: normal;
  font-size: 14px;
  background: none;
  width: auto;
  height: auto;
  top: -7px;
}
.accordion-thumb .tooltip-custom .left {
  padding: 5px;
  font-size: 12px;
  line-height: 18px;
  left: 100%;
  right: auto;
  margin-right: 0;
  top: -8px;
  max-height: 250px;
  overflow-y: scroll;
}
.accordion-thumb .tooltip-custom .left::-webkit-scrollbar {
  width: 6px;
  background-color: #ced4da;
}
.accordion-thumb .tooltip-custom .left::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(83, 146, 79, 0.5);
  background-color: #163e6a;
}
.accordion-thumb::before {
  font-family: "icomoon";
  content: "\e922";
  font-weight: normal;
  font-size: 13px;
  font-weight: bold;
  width: 25px;
  display: inline-block;
}

.accordion-panel {
  border-top: solid 1px #e9ecef;
  margin: 12px 0 0 0;
  display: none;
  padding: 10px 10px 0 10px;
}

.accordion-item.is-active .accordion-thumb::before {
  content: "\e923";
  font-size: 11px;
}

.btn-center {
  text-align: center;
  margin: 20px 0;
}
.btn-center .btn {
  margin: 0 10px;
}

.btn.full-with {
  min-width: 100%;
}

.button-wrapper.align-right {
  float: left;
  clear: both;
  width: 100%;
  text-align: right;
  margin: 10px 0 20px 0;
}
.button-wrapper.align-right .btn {
  margin: 0 0 0 20px;
}

ul.medicine-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: subsection;
}
ul.medicine-list > li {
  padding: 10px 0 10px 23px;
  position: relative;
  width: 100%;
  display: block;
  border-top: solid 1px #e9ecef;
  position: relative;
}
ul.medicine-list > li:first-child {
  border-top: none;
  border-bottom: none;
}
ul.medicine-list > li:last-child {
  padding: 10px 0 0 23px;
}
ul.medicine-list > li:before {
  counter-increment: subsection;
  content: counter(subsection);
  position: absolute;
  background: #0b427e;
  color: #fff;
  width: 18px;
  height: 18px;
  left: 0;
  top: 38px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
ul.medicine-list > li > div {
  display: inline-block;
  padding: 0 7px;
  vertical-align: top;
}
ul.medicine-list > li > div.fourth {
  padding: 15px 7px;
  display: block;
}
ul.medicine-list > li > div.fourth label {
  margin-bottom: 0;
  color: #0b417d;
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;
  width: 85px;
  display: inline-block;
  vertical-align: top;
}
ul.medicine-list > li > div.fourth span {
  font-size: 12px;
  line-height: 14px;
  color: #666666;
  width: calc(100% - 90px);
  display: inline-block;
  vertical-align: top;
}
ul.medicine-list > li > div.fourth textarea {
  font-size: 12px;
  line-height: 14px;
  color: #666666;
  width: calc(100% - 90px);
  display: inline-block;
  vertical-align: top;
  height: 48px;
  padding: 5px;
}
ul.medicine-list > li > div.fourth + .fourth {
  padding-top: 0;
}
ul.medicine-list > li > div.first {
  width: 43%;
  position: relative;
}
ul.medicine-list > li > div.first .check-brand {
  position: absolute;
  top: 18%;
}
ul.medicine-list > li > div.second {
  width: 43%;
}
ul.medicine-list > li > div.second .form-group.fixed {
  width: 20%;
}
ul.medicine-list > li > div.second .form-group.fixed label {
  min-height: 35px;
}
ul.medicine-list > li > div.third {
  width: 14%;
}
ul.medicine-list > li > div.third .form-group.fixed {
  width: 100%;
  padding-right: 0px;
}
ul.medicine-list > li > div.third .form-group.fixed label {
  min-height: 35px;
}
ul.medicine-list > li > div .form-group-wrapper {
  padding-left: 30px;
}
ul.medicine-list > li > div .form-group-wrapper .form-group.fixed {
  width: 19%;
}
ul.medicine-list > li > div .form-group-wrapper .form-group.fixed.single-line {
  width: 15%;
}
ul.medicine-list > li > div .form-group-wrapper .form-group.fixed.double-line {
  width: 24%;
}
ul.medicine-list > li > div .form-group-wrapper .form-group.fixed.no-padding-left {
  width: 21%;
}
ul.medicine-list > li > div .form-group-wrapper .form-group.fixed label {
  min-height: 35px;
}
ul.medicine-list > li > div .form-group {
  margin-bottom: 15px;
  font-size: 12px;
  color: #495057;
}
ul.medicine-list > li > div .form-group label {
  font-size: 12px;
  color: #0b427e;
  margin-bottom: 2px;
  display: block;
}
ul.medicine-list > li > div .form-group.fixed {
  display: inline-block;
  width: 25%;
  margin-bottom: 0;
  padding: 0 8px;
  vertical-align: top;
}
ul.medicine-list > li > div .form-group.fixed.no-padding-left {
  padding-left: 0;
}
ul.medicine-list > li .check-brand label:after {
  top: 10px;
}

.payment-confirmed {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.payment-confirmed li {
  font-size: 12px;
  color: #0b427e;
  display: inline-block;
  vertical-align: middle;
}
.payment-confirmed li:nth-child(1) {
  width: 120px;
}
.payment-confirmed li:nth-child(2) {
  width: 50px;
}
.payment-confirmed li:nth-child(3) {
  width: 300px;
}
.payment-confirmed li:nth-child(3) label {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  width: 30px;
}
.payment-confirmed li:nth-child(3) .form-control {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 50px);
}
.payment-confirmed li:nth-child(4) {
  width: calc(100% - 480px);
  margin-left: 10px;
}
.payment-confirmed li:nth-child(4) label {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  width: 110px;
}
.payment-confirmed li:nth-child(4) .form-control {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 120px);
}
.payment-confirmed li label {
  margin-bottom: 0;
}
.payment-confirmed li label:after {
  top: 11px !important;
}
.payment-confirmed li .prescription-confirm {
  display: flex;
  align-items: baseline;
}
.payment-confirmed li .prescription-confirm .input-wrapper {
  flex-basis: 80%;
}
.payment-confirmed li .prescription-confirm .input-wrapper .form-control {
  width: 100%;
}

.share-with {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 14px;
  color: #666666;
}
.share-with > li {
  display: inline-block;
  margin-right: 8px;
}
.share-with > li:nth-child(1) {
  width: 80px;
}
.share-with > li:nth-child(2) {
  width: 120px;
}
.share-with > li:nth-child(3) {
  width: calc(100% - 216px);
  margin-right: 0;
}

.doctor-tests {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: subsection;
}
.doctor-tests li {
  padding: 10px 0 10px 30px;
  font-size: 14px;
  position: relative;
  border-bottom: solid 1px #ced4da;
}
.doctor-tests li:before {
  counter-increment: subsection;
  content: counter(subsection);
  position: absolute;
  background: #0b427e;
  color: #fff;
  width: 18px;
  height: 18px;
  left: 0;
  top: 10px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.doctor-tests li > a.cancel {
  position: absolute;
  background: #0b427e;
  color: #fff;
  width: 18px;
  height: 18px;
  right: 0;
  top: 10px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  cursor: pointer;
}
.doctor-tests li > a.cancel:hover {
  color: #fff;
}
.doctor-tests li > div {
  display: block;
  width: 100%;
  line-height: inherit;
  min-height: auto;
  border-right: none;
  padding: 0 0 5px 0;
  border-bottom: solid 1px #e9ecef;
  color: #0b427e;
  margin-bottom: 5px;
  overflow: hidden;
}
.doctor-tests li > div span {
  color: #495057;
  float: right;
  width: calc(100% - 150px);
}
.doctor-tests li > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.doctor-tests li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 1300px) {
  .content-wrapper .patient-details li span .form-control {
    width: 60px;
  }
  .content-wrapper .patient-details li:last-child span .form-control {
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .content-wrapper .patient-details li span {
    display: block;
    padding-top: 5px;
  }
  .content-wrapper .patient-details li span .form-control {
    width: 60px;
    margin-left: 0px;
  }

  .doc-container {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
  }

  .doc-container .doc-page-info {
    font-size: 20px;
    line-height: 24px;
  }

  .doc-container .doc-list-title {
    font-size: 20px;
  }

  .doc-container .doc-inner-list-heading {
    font-size: 16px;
  }
}
@media (min-width: 450px) {
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
}
@media (max-width: 800px) {
  div.dataTables_wrapper div.dataTables_info {
    padding: 0.85em 0;
  }
  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: center;
  }

  .or-form {
    position: relative;
    height: 1px;
    background: #ced4da;
    width: 100%;
    display: block;
    left: 0;
    margin: 25px 0;
  }

  .content-wrapper .medicine-listing {
    padding: 0;
  }
  .content-wrapper .medicine-listing > div {
    padding-bottom: 10px;
  }
  .content-wrapper .medicine-listing div:first-child {
    padding-left: 10px;
    padding-top: 40px;
  }
  .content-wrapper .medicine-listing div:first-child:before {
    left: 50%;
    top: 15px;
  }
}
#medicine-table-patient .sorting_asc:before,
#medicine-table-patient .sorting_asc:before {
  content: "";
}

#medicine-table-patient .patient-medicines-unit {
  width: 85px;
}

@media (max-width: 600px) {
  .content-wrapper .patient-details {
    display: block;
  }
  .content-wrapper .patient-details li {
    display: block;
    width: 50%;
    float: left;
    border: none;
    padding: 10px 20px;
  }
  .content-wrapper .patient-details li span .form-control {
    width: 100%;
  }
  .content-wrapper .patient-details li:first-child {
    padding: 10px 20px;
  }
  .content-wrapper .patient-details li:last-child {
    padding: 10px 20px;
  }
  .content-wrapper .patient-details li:last-child span .form-control {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .navbar-nav {
    margin: 0 auto;
  }
  .navbar-nav li a {
    text-align: center;
  }

  header {
    text-align: center;
  }
  header > a {
    float: none;
  }
  header > ul {
    float: none;
    padding: 10px 0;
  }
  header > ul li {
    float: none;
    display: inline-block;
  }
  header > ul li.setting a {
    padding-top: 10px;
  }

  .table-responsive {
    display: block;
  }
}
.requester-tabs .nav-tabs {
  border-bottom: 2px solid #1d518a;
}
.requester-tabs .nav-tabs .nav-link {
  color: #0b427e;
  background: #fff;
  margin-right: 10px;
  border-color: #fff #fff #1d518a;
}
.requester-tabs .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #1d518a;
  border-color: #1d518a #1d518a #1d518a;
}
.requester-tabs .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #1d518a !important;
}
.requester-tabs .requester-tabs-tabpane-profile {
  width: 100% !important;
}
.requester-tabs .tab-content .show {
  display: initial !important;
  /*Sameer Chalke*/
}
.requester-tabs .tab-content .content-wrapper table [type="checkbox"]:checked + label:after {
  top: 11px;
}
.requester-tabs .tab-content .content-wrapper table > tbody td a.icon {
  color: #0b427e;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  text-align: left;
  display: block;
}
.requester-tabs .tab-content .content-wrapper table > tbody td a.icon:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 15px;
  color: #0b427e;
  padding-right: 5px;
}
.requester-tabs .tab-content .content-wrapper table > tbody td a.icon.file:before {
  content: "\e910";
}
.requester-tabs .tab-content .content-wrapper table > tbody td a.icon.readonly:before {
  content: "\e915";
}
.requester-tabs .tab-content .content-wrapper table > tbody td a.icon.request-pending:before {
  content: "\e929";
}
.requester-tabs .tab-content .content-wrapper table thead th:last-child {
  text-align: left;
}
.requester-tabs .tab-content .search-wrapper .search-box .search-container {
  z-index: 1;
}

/*Print*/
.print-wrapper {
  position: relative;
}

.print-wrapper .container {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.print-wrapper h2 {
  /*font-family: 'robotoregular';*/
  color: #0b417d;
  font-family: "roboto-medium";
  font-weight: inherit;
  font-size: 24px;
  margin: 0;
  line-height: 29px;
}

.print-wrapper h2 span {
  font-size: 16px;
  font-family: "roboto-regular";
  display: block;
  line-height: 18px;
}

.print-wrapper p {
  font-size: 14px;
  color: #666;
  font-family: "roboto-regular";
  margin: 0;
  line-height: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.42px;
}

.print-wrapper .header {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.print-wrapper .header p span {
  color: #0b417d;
  font-family: "roboto-medium";
}

.print-wrapper .info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.print-wrapper .info.prescription-tbl {
  display: block !important;
}
.print-wrapper .info.prescription-tbl > div {
  margin-bottom: 20px;
}

.print-wrapper .info .col-50 {
  width: calc(50% - 5px);
}

.print-wrapper .middleWrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.print-wrapper .table,
.print-wrapper table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  position: relative;
}

.print-wrapper .table tr:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  /*.table th:first-child{
  border-top:1px solid rgba(0, 0, 0, 0.1);
}*/
}

.print-wrapper .table th {
  color: #0b417d;
  font-family: "roboto-medium";
  font-weight: inherit;
  font-size: 14px;
  /*border-bottom: 1px solid rgba(222, 226, 231, 1) ;*/
  border-top: none;
  text-align: left;
  padding-bottom: 12px;
  padding: 12px 5px;
  padding-bottom: 10px;
  border-spacing: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.print-wrapper .table td {
  font-size: 14px;
  color: #555;
  font-family: "roboto-regular";
  border-left: 0.5px solid rgba(63, 133, 209, 0.9);
  padding: 8px 5px;
  border-spacing: 0;
  page-break-inside: avoid;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.print-wrapper .table td.border-blue {
  border-left: 0.5px solid rgba(63, 133, 209, 0.9);
}

.print-wrapper .table td.pl-50 {
  padding-left: 20px;
}

.print-wrapper .table th.width,
.print-wrapper .table td.width {
  width: 15px;
  padding: 0;
}

.print-wrapper .table th.no-border-left,
.print-wrapper .table td.no-border-left {
  border-left: 0;
}

.print-wrapper .table th.no-border-right,
.print-wrapper .table td.no-border-right {
  border-right: 0;
}

.print-wrapper .table th.no-border-bottom,
.print-wrapper .table td.no-border-bottom,
.print-wrapper .test-desc.light-th table th.no-border-bottom {
  border-bottom: 0;
}

.print-wrapper .table th.no-border-top,
.print-wrapper .table td.no-border-top {
  border-top: 0;
}

.print-wrapper .table td.no-border {
  border-top: 0;
  border-bottom: 0;
}

.print-wrapper .table td.no-padding {
  padding: 0;
}

.print-wrapper .table td span {
  color: #0b417d;
}

.print-wrapper .title {
  letter-spacing: 0.42px;
  color: #0b417d;
  font-family: "roboto-medium";
  font-weight: inherit;
  font-size: 16px;
  margin-bottom: 10px;
}

.print-wrapper .test-desc {
  margin-bottom: 20px;
  position: relative;
}

.print-wrapper .test-desc table th {
  font-family: "robotoregular";
  letter-spacing: 0.28px;
  border-bottom: 2px solid #9fbad8;
}

.print-wrapper .test-desc.light-th table th {
  border-bottom: 1px solid #dee2e7;
}

.print-wrapper .test-desc table th span {
  color: #666;
  text-transform: uppercase;
}

.print-wrapper .test-desc table td {
  padding: 12px 5px;
  vertical-align: top;
}

.print-wrapper .test-desc table tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.print-wrapper .test-desc table th.width-120,
.print-wrapper .test-desc table td.width-120 {
  width: 120px;
}

.print-wrapper .test-desc table td span {
  color: #0b417d;
}

.print-wrapper .checkbox {
  position: absolute;
  top: 12px;
  right: 40px;
  display: block;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.print-wrapper .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.print-wrapper .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #0b417d;
}

.print-wrapper .checkbox input:checked ~ .checkmark {
  border: 1px solid #0b417d;
}

.print-wrapper .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.print-wrapper .container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0b417d;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.print-wrapper .container input:checked ~ .checkmark:after {
  display: block;
}

.print-wrapper .signature {
  display: flex;
  width: 200px;
  margin-left: auto;
  justify-content: center;
  margin-top: 100px;
  border-top: 1px solid #dee2e7;
  padding-top: 10px;
}

.print-wrapper .signature p {
  color: #0b417d;
  font-family: "roboto-medium";
}

.print-wrapper footer {
  text-align: center;
  width: calc(100% - 30px);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  /*background: #fff;*/
  margin: 0 auto;
  height: 120px;
}

@media print {
  .print-wrapper footer {
    width: calc(100% - 30px);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.print-wrapper .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.print-wrapper footer .flex {
  border-top: 1px solid #dee2e7;
  padding-top: 15px;
  padding-bottom: 15px;
}

.print-wrapper footer .powererby {
  display: flex;
  align-items: center;
}

.print-wrapper footer .powererby p {
  margin-bottom: 0;
  padding-left: 25px;
}

.print-wrapper footer .toll-free p {
  color: #333;
  margin-bottom: 0;
}

.print-wrapper footer .toll-free p span {
  color: #0b417d;
  font-family: "roboto-medium";
}

.print-wrapper .table-fixed {
  table-layout: fixed;
}

.print-wrapper .box {
  box-shadow: 0px 0px 2px #00000029;
  height: 180px;
  display: flex;
  flex-direction: column;
  border: 1px solid #00000029;
}

.print-wrapper .box p {
  color: #0b417d;
  padding: 15px 20px;
}

.print-wrapper .box .signature {
  margin-top: auto;
  border-top: 0;
  justify-content: flex-end;
}

.print-wrapper .box .signature p {
  padding-bottom: 10px;
}

.print-wrapper .iconfinder {
  border-bottom: 2px solid #9fbad8;
  margin-bottom: 20px;
}

.print-wrapper .page-footer-space {
  height: 120px;
}

.print-wrapper .page-header-space {
  height: 50px;
}

.print-wrapper .page {
  page-break-after: always;
}

.print-wrapper .center-text {
  text-align: center;
}

.print-wrapper .middleWrapper .div-break {
  page-break-inside: avoid;
  page-break-after: auto;
}

.print-wrapper table {
  page-break-after: auto;
}

.print-wrapper tr {
  page-break-inside: avoid;
  page-break-after: auto;
}

.print-wrapper td {
  page-break-inside: avoid;
  page-break-after: auto;
}

.print-wrapper thead {
  display: table-header-group;
}

.print-wrapper tfoot {
  display: table-footer-group;
}

.table {
  margin-bottom: 0;
}
.table tbody tr td {
  padding: 10px 5px !important;
  vertical-align: middle !important;
}
.table tbody tr td a {
  display: inline-block;
}
.table tbody tr td a span.icon {
  color: #0b427e;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  text-align: left;
  display: block;
}
.table tbody tr td a span.icon:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 15px;
  color: #0b427e;
  padding-right: 5px;
}
.table tbody tr td a span.icon.edit:before {
  content: "\e90f";
}
.table tbody tr td a span.icon.create-order:before {
  content: "\e924";
}
.table tbody tr td a span.icon.approve-prescription:before {
  content: "\e928";
}
.table tbody tr td a span.icon.file:before {
  content: "\e910";
}
.table tbody tr td a span.icon.prescription:before {
  content: "\e914";
}
.table tbody tr td a:first-child {
  margin-right: 5px;
}
.table tbody tr td a:hover {
  text-decoration: none;
  cursor: pointer;
}
.table thead tr th {
  padding: 14px 5px !important;
  vertical-align: middle !important;
  color: #0B417D;
}
.table thead .left-content {
  width: 40%;
  border-right: 1px solid #ccc;
}
.table thead .right-content {
  width: 60%;
  padding-left: 50px;
}
.table thead .right-content .checkbox-container {
  display: flex;
  height: 80%;
}
.table thead .right-content .checkbox-container .section,
.table thead .right-content .checkbox-container .checbox-wrapper {
  font-size: 14px;
}
.table thead .right-content .checkbox-container .section {
  color: #495057;
  margin-right: 25px;
}
.table thead .right-content .checkbox-container .checbox-wrapper {
  color: #0b427e;
  margin-right: 35px;
}
.table thead .right-content .checkbox-container .checbox-wrapper:last-child {
  margin-right: 0px;
}
.table thead .right-content .checkbox-container .checbox-wrapper [type="checkbox"]:checked + label:after {
  top: 11px;
}
.table thead .right-content .checkbox-container .checbox-wrapper .check label {
  font-size: 14px;
}

a {
  text-decoration: none;
}
a span.icon:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 18px;
  color: #0b427e;
  padding-right: 5px;
}
a span.icon.file:before {
  content: "\e910";
}

.btn {
  min-height: 0;
  padding: 8px 10px;
}

.page-title span {
  vertical-align: sub;
  color: #0b427e;
}

.error,
.err-mgs,
.srv-validation-message {
  color: red;
  font-size: 11px;
  padding: 2px 0;
  display: inline-block;
  width: 200px;
  margin: auto;
  margin-left: 0;
  /*Sameer Chalke*/
}

.approval-pending .common-table > tbody td a.icon {
  color: #0b427e;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  text-align: left;
  display: block;
}
.approval-pending .common-table > tbody td a.icon:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 15px;
  color: #0b427e;
  padding-right: 5px;
}
.approval-pending .common-table > tbody td a.icon.readonly:before {
  content: "\e915";
}
.approval-pending .common-table thead th:last-child {
  text-align: left;
}

.request-pending .request-pending-wrapper {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 20px;
}
.request-pending .request-pending-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.request-pending .request-pending-wrapper ul li {
  color: #495057;
  font-size: 14px;
  margin-bottom: 6px;
  display: table;
  width: 100%;
}
.request-pending .request-pending-wrapper ul li > * {
  display: table-cell;
  vertical-align: middle;
}
.request-pending .request-pending-wrapper ul li span.blue {
  color: #0b427e;
  width: 50%;
}
.request-pending .request-pending-wrapper ul li:last-child {
  margin-bottom: 0;
}
.request-pending .request-pending-wrapper .left-content {
  width: 40%;
  border-right: 1px solid #ccc;
}
.request-pending .request-pending-wrapper .right-content {
  width: 60%;
  padding-left: 50px;
}
.request-pending .request-pending-wrapper .right-content .checkbox-container {
  display: flex;
  height: 80%;
}
.request-pending .request-pending-wrapper .right-content .checkbox-container .section,
.request-pending .request-pending-wrapper .right-content .checkbox-container .checbox-wrapper {
  font-size: 14px;
}
.request-pending .request-pending-wrapper .right-content .checkbox-container .section {
  color: #495057;
  margin-right: 25px;
}
.request-pending .request-pending-wrapper .right-content .checkbox-container .checbox-wrapper {
  color: #0b427e;
  margin-right: 35px;
}
.request-pending .request-pending-wrapper .right-content .checkbox-container .checbox-wrapper:last-child {
  margin-right: 0px;
}
.request-pending .request-pending-wrapper .right-content .checkbox-container .checbox-wrapper [type="checkbox"]:checked + label:after {
  top: 11px;
}
.request-pending .request-pending-wrapper .right-content .checkbox-container .checbox-wrapper .check label {
  font-size: 14px;
}
.request-pending .nav-tabs {
  border-bottom: 2px solid #1d518a;
}
.request-pending .nav-tabs .nav-link {
  color: #0b427e;
  background: #fff;
  margin-right: 20px;
  border-color: #fff #fff #1d518a;
  font-size: 14px;
  padding: 0.5rem 1.3rem;
}
.request-pending .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #1d518a;
  border-color: #1d518a #1d518a #1d518a;
}
.request-pending .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #1d518a !important;
}
.request-pending .nav-tabs .nav-link:last-child {
  margin-right: 0;
}
.request-pending .requester-tabs-tabpane-profile {
  width: 100% !important;
}
.request-pending .tab-content .show {
  display: initial !important;
  /*Sameer Chalke*/
}

.common-table.certificate-table > tbody tr th {
  color: #0B417D;
}
.common-table.certificate-table > tbody tr td {
  padding: 8px 8px 8px 0 !important;
}
.common-table.certificate-table > tbody tr td .btn {
  padding: inherit;
}
.common-table.revisit-pateint > tbody td a {
  text-align: left;
  display: block;
  text-decoration: none;
}
.common-table.revisit-pateint > tbody td a span.icon:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 18px;
  color: #0b427e;
  padding-right: 5px;
}
.common-table.revisit-pateint > tbody td a span.icon.group:before {
  content: "\e925";
  padding-right: 20px;
}
.common-table.revisit-pateint > tbody td a span.icon.group-result:before {
  content: "\e926";
}
.common-table.revisit-pateint thead th:last-child {
  text-align: left;
}

.sprite-icon {
  background: url(../images/normal-icons.png) no-repeat top left;
  height: 40px;
}

.sprite-icon.exchange {
  background-position: 0 0;
  width: 36px;
  height: 36px;
}

.sprite-icon.notification-icon {
  background-position: 0 -59px;
  width: 34px;
}

.sprite-icon.help {
  background-position: 0 -33px;
  width: 40px;
  position: absolute;
  right: 4px;
  height: 28px;
}

.sprite-icon.settings {
  background-position: 0 -97px;
  width: 40px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .sprite-icon {
    background: url(../images/retina-icons.png) no-repeat top left;
    background-size: 34px 132px;
  }
}
.error,
.err-mgs {
  color: red;
  font-size: 11px;
  padding: 2px 0;
}

.common-table tbody tr td a:hover {
  color: inherit;
}
.common-table thead th:last-child {
  text-align: left;
}

textarea.form-control {
  resize: none;
}

table.print-prescription {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  position: relative;
  margin-top: -64px;
}
table.print-prescription .container {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
table.print-prescription .middleWrapper {
  padding-left: 15px;
  padding-right: 15px;
}
table.print-prescription .middleWrapper .header {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}
table.print-prescription .middleWrapper .header h2 {
  color: #0b417d;
  /*font-family: 'robotoregular';*/
  font-family: "roboto-medium";
  font-weight: 400;
  font-size: 24px;
  margin: 0;
  line-height: 29px;
}
table.print-prescription .middleWrapper .header .right p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.42px;
}
table.print-prescription .middleWrapper .header .right p span {
  color: #0b417d;
  font-family: "roboto-medium";
}
table.print-prescription .middleWrapper .info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
table.print-prescription .middleWrapper .info .col-50 {
  width: calc(50% - 5px);
}
table.print-prescription .middleWrapper .table,
table.print-prescription .middleWrapper table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  position: relative;
}

.print-prescription .table tr:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.print-prescription .table th {
  color: #0b417d;
  font-family: "roboto-medium";
  font-weight: inherit;
  font-size: 14px;
  text-align: left;
  /*border-bottom: 1px solid rgba(222, 226, 231, 1) ;*/
  padding-bottom: 12px;
  padding: 12px 5px;
  padding-bottom: 10px;
  border-spacing: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.print-prescription .table td {
  font-size: 14px;
  color: #555555;
  font-family: "roboto-regular";
  border-left: 0.5px solid rgba(63, 133, 209, 0.9);
  padding: 8px 5px;
  border-spacing: 0;
  page-break-inside: avoid;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.print-prescription .table td.border-blue {
  border-left: 0.5px solid rgba(63, 133, 209, 0.9);
}

.print-prescription .table td.pl-50 {
  padding-left: 20px;
}

.print-prescription .table th.width,
.print-prescription .table td.width {
  width: 15px;
  padding: 0;
}

.print-prescription .table th.no-border-left,
.print-prescription .table td.no-border-left {
  border-left: 0;
}

.print-prescription .table th.no-border-right,
.print-prescription .table td.no-border-right {
  border-right: 0;
}

.print-prescription .table th.no-border-bottom,
.print-prescription .table td.no-border-bottom,
.print-prescription .test-desc.light-th table th.no-border-bottom {
  border-bottom: 0;
}

.print-prescription .table th.no-border-top,
.print-prescription .table td.no-border-top {
  border-top: 0;
}

.print-prescription .table td.no-border {
  border-top: 0;
  border-bottom: 0;
}

.print-prescription .table td.no-padding {
  padding: 0;
}

.print-prescription .table td span {
  color: #0b417d;
}

.print-prescription .title {
  letter-spacing: 0.42px;
  color: #0b417d;
  font-family: "roboto-medium";
  font-weight: inherit;
  font-size: 14px;
  margin-bottom: 10px;
}

.print-prescription .test-desc {
  margin-bottom: 20px;
  position: relative;
}

.print-prescription .test-desc table th {
  font-family: "roboto-regular";
  letter-spacing: 0.28px;
  border-bottom: 2px solid #9fbad8;
}

.print-prescription .test-desc.light-th table th {
  border-bottom: 1px solid #dee2e7;
}

.print-prescription .test-desc table th span {
  color: #666666;
  text-transform: uppercase;
}

.print-prescription .test-desc table td {
  padding: 12px 5px;
  vertical-align: top;
}

.print-prescription .test-desc table tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.print-prescription .test-desc table th.width-120,
.print-prescription .test-desc table td.width-120 {
  width: 120px;
}

.print-prescription .test-desc table td span {
  color: #0b417d;
}

.print-prescription .checkbox {
  position: absolute;
  top: 12px;
  right: 40px;
  display: block;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.print-prescription .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.print-prescription .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #0b417d;
}

.print-prescription .checkbox input:checked ~ .checkmark {
  border: 1px solid #0b417d;
}

.print-prescription .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.print-prescription .container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0b417d;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.print-prescription .container input:checked ~ .checkmark:after {
  display: block;
}

.print-prescription .signature {
  display: flex;
  width: 200px;
  margin-left: auto;
  justify-content: center;
  margin-top: 100px;
  border-top: 1px solid #dee2e7;
  padding-top: 10px;
}

.print-prescription .signature p {
  color: #0b417d;
  font-size: 14px;
  font-family: "roboto-medium";
}

footer {
  text-align: center;
  width: calc(100% - 50px);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 120px;
}
footer.inner-footer {
  height: auto;
  z-index: 1;
  width: auto;
  
}
footer.inner-footer .content-wrapper {
  margin-bottom: 0px;
  width: calc(100% - -200px);
}
footer.inner-footer .content-wrapper p {
  margin-top: 0;
}
footer.inner-footer .content-wrapper p a {
  text-decoration: none;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .flex {
  border-top: 1px solid #dee2e7;
  padding-top: 15px;
  padding-bottom: 15px;
}

footer .powererby {
  display: flex;
  align-items: center;
}

footer .powererby p {
  margin-bottom: 0;
  padding-left: 25px;
}

footer .toll-free p {
  color: #333333;
  margin-bottom: 0;
}

footer .toll-free p span {
  color: #0b417d;
  font-family: "roboto-medium";
}

.table-fixed {
  table-layout: fixed;
}

footer .toll-free p {
  font-size: 14px;
}

.print-prescription .page-footer-space {
  height: 120px;
}

.print-prescription .page-header-space {
  height: 50px;
}

.print-prescription .page {
  page-break-after: always;
}

.revisit-btn {
  margin-left: 0;
  height: 34px;
}

.search-by-id {
  padding-right: 0;
}
.search-by-id.hide {
  display: none;
}
.search-by-id.show {
  display: block;
}

.disabled-div {
  pointer-events: none;
  opacity: 0.2;
  background: #6c757d;
}
.disabled-div > h6 {
  color: #fff;
}

.suggesstion-list {
  z-index: 1;
  max-height: 200px !important;
  overflow-y: auto !important;
}

.react-bootstrap-table table th {
  border-top-width: 2px;
}

.react-bs-table-sizePerPage-dropdown {
  margin-bottom: 20px;
  display: initial;
  /*Sameer Chalke*/
}

.react-bootstrap-table-page-btns-ul {
  margin-bottom: 10px;
}

.react-bootstrap-table th .caret-4-asc:before {
  margin-left: 3.5px;
  content: "\2191";
}

.react-bootstrap-table th .caret-4-desc:before {
  margin-left: 3.5px;
  content: "\2191";
  opacity: 0.4;
}

.react-bootstrap-table th .caret-4-asc:after {
  content: "\2193";
  opacity: 0.4;
}

.react-bootstrap-table th .caret-4-desc:after {
  content: "\2193";
}

@supports (-moz-appearance: none) {
  select {
    -moz-appearance: none !important;
    background: transparent url("data:image/gif;base64,R0lGODlhBgAGAKEDAFVVVX9/f9TU1CgmNyH5BAEKAAMALAAAAAAGAAYAAAIODA4hCDKWxlhNvmCnGwUAOw==") right center no-repeat !important;
    background-position: calc(100% - 5px) center !important;
  }
}
body .daterangepicker {
  height: auto;
  left: auto !important;
  right: 0px !important;
  top: 100% !important;
}

.notification-list .content-wrapper .notification-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.notification-list .content-wrapper .notification-list-wrapper > a {
  display: flex;
  flex-basis: calc(33.333% - 7px);
  margin-right: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}
.notification-list .content-wrapper .notification-list-wrapper > a:nth-of-type(3n) {
  margin-right: 0;
}
.notification-list .content-wrapper .notification-list-wrapper > a .card {
  width: 100%;
}
.notification-list .content-wrapper .notification-list-wrapper > a .card:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 15px;
  color: #0b427e;
  padding-right: 5px;
  position: absolute;
  right: 0;
  background: #1d518a;
  padding: 5px 10px;
  border-bottom-left-radius: 5px;
}
.notification-list .content-wrapper .notification-list-wrapper > a .card.appointment-request:before {
  content: "\e924";
  color: #fff;
}
.notification-list .content-wrapper .notification-list-wrapper > a .card.pending-request:before {
  content: "\e927";
  color: #fff;
}
.notification-list .content-wrapper .notification-list-wrapper > a .card .card-body {
  padding: 1rem;
}
.notification-list .content-wrapper .notification-list-wrapper > a .card .card-body p {
  margin-bottom: 0;
  letter-spacing: 0.42px;
  color: #555555;
  font-size: 12px;
}
.notification-list .content-wrapper .notification-list-wrapper > a .card .card-body p > span {
  color: #0b417d;
}
.notification-list .content-wrapper .notification-list-wrapper > a.notification-read .card-body p {
  opacity: 0.7;
}

.mCSB_inside > .mCSB_container {
  margin-right: 13px;
}

.trial-container {
  text-align: center;
  color: #0b417d;
  margin-left: -10px;
  margin-right: -20px;
  padding: 8px 0px;
  border: none;
  background-color: #d4edda;
  font-size: 14px;
}
.trial-container > span {
  font-weight: 600;
}

.card-assign-form .content-wrapper .form-group {
  margin-bottom: 15px;
}
.card-assign-form .content-wrapper .text-primary,
.card-assign-form .content-wrapper .text-danger {
  font-size: 12px;
}
.card-assign-form .content-wrapper .btn-primary {
  padding: 5px 28px;
  font-size: 13px;
}
.card-assign-form .content-wrapper .col-sm-24 {
  padding-right: 0px;
  padding-left: 0px;
}

.trial-account {
  height: 100%;
}
.trial-account h5 {
  margin-top: 24px;
  margin-bottom: 18px;
  font-size: 18px;
  letter-spacing: 0.54px;
}
.trial-account p {
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.36px;
  color: #555555;
}
.trial-account p > span {
  color: #0b417d;
}

/*Add patient form checkbox spacing 18th feb 2020*/
.checkbox-option-list [type="checkbox"] + label {
  margin-right: 12px;
}
.checkbox-option-list [type="checkbox"] + label:before {
  margin-right: 8px;
}
.checkbox-option-list [type="checkbox"] + label:last-child {
  margin-right: 0;
}

.view-orignal-prescription {
  font-size: 14px;
  color: #0b417d;
  text-decoration: underline !important;
  float: right;
  cursor: pointer;
}

.original-prescription .modal-lg,
.original-prescription .modal-xl {
  max-width: 1115px;
}
.original-prescription .modal-header {
  background-color: #0b417d;
  padding: 10px 20px;
  border-radius: 0;
}
.original-prescription .modal-header h6 {
  margin: 0;
  font-size: 16px;
  font-family: "roboto-medium";
  color: #fff;
  line-height: 20px;
}
.original-prescription .modal-header .close {
  font-weight: normal;
  opacity: 1;
  color: #fff;
  line-height: 20px;
}
.original-prescription .modal-body {
  padding: 20px;
  border: 0;
}
.original-prescription .modal-body .margin-bottom {
  margin-bottom: 15px;
}
.original-prescription .modal-body .content-wrapper {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0;
}
.original-prescription .modal-body .content-wrapper .common-table thead tr {
  border-bottom: 2px solid #9fbad8;
}
.original-prescription .modal-body .content-wrapper .common-table thead tr th {
  font-size: 14px;
  line-height: 18px;
  font-family: "roboto-medium";
  color: #0b417d;
  vertical-align: top !important;
  padding: 0 30px 15px !important;
  border: 0;
}
.original-prescription .modal-body .content-wrapper .common-table thead tr th:last-child {
  text-align: left;
}
.original-prescription .modal-body .content-wrapper .common-table tbody tr {
  border-bottom: 2px solid #dee2e7;
}
.original-prescription .modal-body .content-wrapper .common-table tbody tr:last-child {
  border-bottom: 0;
}
.original-prescription .modal-body .content-wrapper .common-table tbody tr td {
  font-size: 14px;
  line-height: 18px;
  color: #555555;
  vertical-align: top !important;
  padding: 12px 30px !important;
  border: 0;
}
.original-prescription .modal-body .content-wrapper .common-table tbody tr td:last-child {
  text-align: left;
}
.original-prescription .modal-body .content-wrapper .common-table tbody tr td label {
  font-size: 14px;
  line-height: 17px;
  color: #0b417d;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0px;
  width: 125px;
}
.original-prescription .modal-body .content-wrapper .common-table tbody tr td span {
  color: #666666;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 8px;
  width: calc(100% - 125px);
}

.raise-concern {
  width: 500px;
  margin-bottom: 20px;
}
.raise-concern .prescription-accordion {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  clear: both;
  width: 100%;
}
.raise-concern .prescription-accordion li:first-child .accordion-panel {
  display: none;
}
.raise-concern .prescription-accordion .accordion-item {
  padding: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.raise-concern .prescription-accordion .accordion-item .accordion-thumb {
  width: 100%;
  color: #fff;
  padding: 12px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background: #0b427e;
}
.raise-concern .prescription-accordion .accordion-item .accordion-thumb:before {
  content: none;
}
.raise-concern .prescription-accordion .accordion-item .accordion-thumb:after {
  font-family: "icomoon";
  content: "\e922";
  font-weight: normal;
  font-size: 13px;
  font-weight: bold;
  width: 25px;
  display: inline-block;
  float: right;
  color: #fff;
}
.raise-concern .prescription-accordion .accordion-item.is-active .accordion-thumb:before {
  content: none;
}
.raise-concern .prescription-accordion .accordion-item.is-active .accordion-thumb:after {
  content: "\e923";
  font-size: 11px;
  color: #fff;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper {
  display: none;
  padding: 10px 10px 15px 10px;
  background: #f7f7f7;
  box-shadow: 0px 3px 9px #32325d1a;
  border-radius: 4px;
  height: 262px;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container:after {
  content: "";
  clear: both;
  display: block;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .sender .msg .msg-content {
  width: 280px;
  margin-left: 6px;
  box-shadow: 0px 3px 6px #0000001a;
  position: relative;
  padding: 10px;
  font-size: 12px;
  color: #666666;
  background: #fff;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .sender .msg .msg-content:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #fff;
  transform: rotate(80deg);
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .sender .msg .current-date-time {
  letter-spacing: 0.44px;
  color: #bfbfbf;
  font-size: 11px;
  margin-left: 10px;
  margin-top: 10px;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .receiver {
  width: 100%;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .receiver .msg {
  float: right;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .receiver .msg .msg-content {
  width: 260px;
  background: #e7ecef;
  margin-right: 10px;
  margin-top: 20px;
  box-shadow: 0px 3px 6px #0000001a;
  position: relative;
  padding: 10px;
  font-size: 12px;
  color: #666666;
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .receiver .msg .msg-content:after {
  content: "";
  position: absolute;
  top: -3px;
  right: -4px;
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #e7ecef;
  transform: rotate(80deg);
}
.raise-concern .prescription-accordion .accordion-item .chat-wrapper .chat-container .receiver .msg .current-date-time {
  letter-spacing: 0.44px;
  color: #bfbfbf;
  font-size: 11px;
  margin-top: 10px;
  text-align: right;
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel {
  position: relative;
  padding: 0px;
  border: none;
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel .form-control {
  height: 60px;
  line-height: 28px;
  border: none;
  padding-left: 20px;
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel .send-buttonn {
  border: none;
  background: transparent;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel .send-buttonn ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  line-height: 32px;
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel .send-buttonn ::-webkit-input-placeholder {
  /* Webkit */
  line-height: 32px;
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel .send-buttonn :-ms-input-placeholder {
  /* IE */
  line-height: 32px;
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel .send-buttonn.icon:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 20px;
  color: #0b427e;
}
.raise-concern .prescription-accordion .accordion-item .accordion-panel .send-buttonn.icon.send-button:before {
  content: "\e932";
}
.raise-concern:after {
  content: "";
  clear: both;
}

.content-wrapper .common-table tbody tr .remark-table-cell:last-child {
  padding: 0 !important;
}
.content-wrapper .common-table tbody tr .remark-table-cell:last-child > div {
  display: inline-block;
  padding: 0 7px;
  vertical-align: top;
  text-align: left;
}
.content-wrapper .common-table tbody tr .remark-table-cell:last-child > div.fourth {
  padding: 15px 7px;
  display: block;
}
.content-wrapper .common-table tbody tr .remark-table-cell:last-child > div.fourth label {
  margin-bottom: 0;
  color: #0b417d;
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  width: 85px;
  display: inline-block;
  vertical-align: top;
}
.content-wrapper .common-table tbody tr .remark-table-cell:last-child > div.fourth span {
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  width: calc(100% - 90px);
  display: inline-block;
  vertical-align: top;
}
.content-wrapper .common-table tbody tr .remark-table-cell:last-child > div.fourth textarea {
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  width: calc(100% - 90px);
  display: inline-block;
  vertical-align: top;
  height: 48px;
  padding: 5px;
}
.content-wrapper .common-table tbody tr .remark-table-cell:last-child > div.fourth + .fourth {
  padding-top: 0;
}

.offline-precription .prescription-patient-details .form-control {
  width: 98px;
}
.offline-precription .prescription-patient-details .form-control.date {
  font-size: 11px;
  text-transform: uppercase;
}
.offline-precription select {
  font-size: 10px !important;
}

.offline-search .btn {
  padding: 6px 10px;
}

.help-box {
  width: 350px;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 3px 12px #00000042;
  position: relative;
  z-index: 9999;
  border-radius: 2px;
  display: none;
  position: absolute;
}
.help-box:before {
  content: "";
  width: 0px;
  height: 0px;
  left: -20px;
  position: absolute;
  border-top: 10px solid transparent;
  border-right: 20px solid #fff;
  border-bottom: 10px solid transparent;
}
.help-box.top-right:before {
  left: auto;
  right: -20px;
  transform: rotate(-180deg);
}
.help-box.bottom-left:before {
  left: -20px;
  right: "auto";
  top: 20px;
  bottom: 10px;
}
.help-box.bottom-right:before {
  left: auto;
  right: -20px;
  top: "auto";
  bottom: 10px;
  transform: rotate(-180deg);
}
.help-box .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.help-box .heading h4 {
  font-size: 16px;
  color: #000;
}
.help-box .heading a:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 10px;
  color: #999999;
}
.help-box .heading a.cross:before {
  content: "\e935";
}
.help-box .content {
  border-bottom: 1px solid #999999;
}
.help-box .content p {
  color: #999999;
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 2px;
}
.help-box .section-cover {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}
.help-box .section-cover .left-side {
  color: #999999;
  font-size: 11px;
}
.help-box .section-cover .left-side .current-section {
  padding-right: 5px;
}
.help-box .section-cover .left-side .total-section {
  padding-left: 5px;
}
.help-box .section-cover .right-side {
  font-size: 11px;
  color: #0b417d;
  text-transform: uppercase;
  padding-right: 10px;
}
.help-box .section-cover .right-side a {
  position: relative;
}
.help-box .section-cover .right-side a:hover {
  text-decoration: none;
  font-weight: 600;
}
.help-box .section-cover .right-side a.previous {
  padding-right: 20px;
}
.help-box .section-cover .right-side a.previous:before {
  content: "";
  width: 0;
  height: 0;
  left: -8px;
  top: 3px;
  position: absolute;
  border-top: 3px solid transparent;
  border-right: 6px solid #0b417d;
  border-bottom: 3px solid transparent;
}
.help-box .section-cover .right-side a.previous.disable {
  pointer-events: none;
}
.help-box .section-cover .right-side a.next:after {
  content: "";
  width: 0;
  height: 0;
  right: -8px;
  top: 3px;
  position: absolute;
  border-top: 3px solid transparent;
  border-left: 6px solid #0b417d;
  border-bottom: 3px solid transparent;
}
.help-box .section-cover .right-side a.next.disable {
  pointer-events: none;
}
.help-box.open {
  display: block;
  margin-left: 20px;
}

.row {
  clear: both;
}

.overlay {
  opacity: 0;
  transition: all 0.5s ease;
  top: 0%;
  left: 0%;
  position: fixed;
  background-color: #000;
  transition: all 0.5s ease;
  z-index: 999;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

[class*="col"] {
  position: static;
}

.row {
  clear: both;
}

.ad-patient [type="checkbox"]:checked + label:after {
  top: 11px;
}

.dashboard-main-links {
  background: #fff;
  box-shadow: 0px 0px 3px #00000029;
  padding: 15px;
  margin: 15px 0;
}
.dashboard-main-links > a:after {
  content: "";
  display: table;
  clear: both;
}
.dashboard-main-links > a > span.icon {
  float: left;
}
.dashboard-main-links > a h4 {
  float: right;
  font-family: "roboto-regular";
  color: #6c757d;
  font-size: 16px;
  text-align: right;
  margin: 0;
}
.dashboard-main-links > a h4 span {
  display: block;
  width: 100%;
  font-family: "roboto-medium";
  font-size: 24px;
  color: #0B417D;
  margin-top: 5px;
}

.filter-wrapper {
  padding: 10px;
  background: #fff;
  border-top: solid 3px #0B417D;
}
.filter-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
.filter-wrapper .search-wrapper {
  margin-bottom: 0;
}
.filter-wrapper .search-wrapper > label {
  font-size: 14px;
}
.filter-wrapper .search-wrapper .search-box {
  border: solid 1px #ced4da;
  padding: 8px 10px;
}

.graph-wrapper {
  background: #fff;
  box-shadow: 0px 0px 3px #00000029;
  margin: 0 0 15px 0;
}
.graph-wrapper .graph-title-head {
  padding: 15px;
  border-bottom: solid 1px #ced4da;
}
.graph-wrapper .graph-title-head:after {
  content: "";
  display: table;
  clear: both;
}
.graph-wrapper .graph-title-head .graph-title {
  position: relative;
  padding-left: 40px;
  font-size: 14px;
  color: #495057;
  float: left;
  margin: 4px 0;
}
.graph-wrapper .graph-title-head .graph-title:before {
  width: 30px;
  height: 18px;
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transform: translateY(-50%);
}
.graph-wrapper .graph-title-head .graph-title.pink:before {
  background: #efb9e9;
}
.graph-wrapper .graph-title-head .graph-title.yellow:before {
  background: #f9f336;
}
.graph-wrapper .graph-title-head .graph-title.green:before {
  background: #7be874;
}
.graph-wrapper .graph-title-head > button {
  float: right;
  margin-left: 10px;
  padding: 5px;
  min-width: 80px;
  font-size: 12px;
}
.graph-wrapper .graph-content {
  padding: 15px;
  font-size: 12px;
  color: #000;
}

.fee_collection_form {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fee_collection_form li {
  display: inline-block;
  width: 50%;
  padding: 10px;
  font-size: 14px;
  color: #666666;
  vertical-align: top;
}
.fee_collection_form li span {
  display: block;
  margin-top: 5px;
}
.fee_collection_form li.full-width {
  width: 100%;
}

.cpt-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cpt-list li {
  padding: 3px 0;
  border-bottom: solid 1px #e5e5e5;
  font-size: 13px;
}
.cpt-list li:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.cpt-list li span {
  float: right;
  width: calc(100% - 40px);
}
.cpt-list li:last-child {
  border-bottom: none;
}

._loading_overlay_wrapper .btn-toolbar {
  align-items: center;
}

.category-list {
  margin-bottom: 20px;
}
.category-list:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.category-list > div {
  width: calc(50% - 20px);
  float: left;
  padding: 10px;
  border: solid 1px #e9ecef;
  margin: 0 10px;
}
.category-list > div h3 {
  color: #0b427e;
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #e9ecef;
  font-family: "roboto-medium";
  margin-bottom: 5px;
  text-transform: uppercase;
}
.category-list > div .scroll-list {
  max-height: 220px;
  min-height: 220px;
  overflow-y: scroll;
}
.category-list > div .scroll-list::-webkit-scrollbar {
  width: 6px;
  background-color: #ced4da;
}
.category-list > div .scroll-list::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(83, 146, 79, 0.5);
  background-color: #163e6a;
}
.category-list > div .scroll-list > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-list > div .scroll-list > ul li {
  padding: 3px 0;
  display: block;
  font-size: 13px;
  border-bottom: solid 1px #efefef;
  cursor: pointer;
}
.category-list > div .scroll-list > ul li:last-child {
  border-bottom: none;
}
.category-list + .prescription-accordion li.accordion-item {
  margin: 0 10px 10px 10px;
  box-shadow: inherit;
  border: solid 1px #e9ecef;
  padding: 10px;
}
.category-list + .prescription-accordion li.accordion-item:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.category-list + .prescription-accordion li.accordion-item h6 {
  color: #0b427e;
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #e9ecef;
  font-family: "roboto-medium";
  margin-bottom: 10px;
  text-transform: uppercase;
}
.category-list + .prescription-accordion li.accordion-item .add-new {
  margin: inherit;
}
.category-list + .prescription-accordion li.accordion-item .prescription-confirm {
  position: relative;
  margin-bottom: 10px;
}
.category-list + .prescription-accordion li.accordion-item .prescription-confirm button.cancel {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  outline: none;
  padding: 4px;
  display: block;
  width: 50px;
  text-align: center;
}

.assign-to-new {
  padding-right: 0;
  margin: 7px 0;
  text-align: right;
}
.assign-to-new h6 {
  display: inline-block;
  margin-right: 7px;
  font-size: 13px;
  font-family: "roboto-medium";
  color: #0b427e;
}
.assign-to-new .form-control {
  width: 135px;
  display: inline-block;
  margin-right: 7px;
}
.assign-to-new button,
.assign-to-new a {
  padding: 5px 10px;
  margin-right: 7px;
}

.cancel-prescription {
  margin: 7px 0;
  text-align: right;
  padding-left: 0;
}
.cancel-prescription button,
.cancel-prescription a {
  padding: 5px;
  width: 100%;
}

.nopadding {
  padding-left: inherit;
  padding-right: inherit;
}

.bottom-btns {
  text-align: right;
}
.bottom-btns button,
.bottom-btns a {
  margin: 0 0 15px 10px;
}
.bottom-btns button.btn-primary,
.bottom-btns a.btn-primary {
  float: right;
}

.tab-pane .accordion .card {
  margin-bottom: 5px;
}
.tab-pane .accordion .card .card-header {
  padding: 0;
  margin: 0;
  background: #fff;
  position: relative;
}
.tab-pane .accordion .card .card-header button {
  padding: 10px 20px;
  display: block;
  width: 100%;
  text-align: left;
}
.tab-pane .accordion .card .card-header button:hover, .tab-pane .accordion .card .card-header button:focus {
  text-decoration: none;
}
.tab-pane .accordion .card .card-header .include_personal {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px;
}
.tab-pane .accordion .card .card-header .include_personal label {
  margin-bottom: 0;
  color: #0b427e;
  font-size: 14px;
  font-family: "roboto-medium";
  text-transform: capitalize;
}
.tab-pane .accordion .card .card-body > h6.main-title {
  display: block;
  margin-bottom: 20px;
  color: #0b427e;
}

.examination-wrapper {
  margin-bottom: 20px;
  font-size: 14px;
}
.examination-wrapper .heading {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: solid 1px #9FBAD8;
  position: relative;
}
.examination-wrapper .heading h6 {
  font-family: "roboto-medium";
  color: #0b427e;
  margin: 0;
}
.examination-wrapper .heading > label {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 14px;
  color: #0b427e;
}
.examination-wrapper .form-group {
  margin-bottom: 15px;
}
.examination-wrapper .form-group label {
  margin-bottom: 0;
  padding: 0;
}
.examination-wrapper .form-group label.blue-label {
  color: #0b427e;
  display: block;
  margin-bottom: 5px;
}
.examination-wrapper .form-group label.heading {
  min-width: 70px;
  padding-right: 15px;
  border: none;
  color: #0b427e;
}
.examination-wrapper .form-group .options-details {
  display: inline-block;
}
.examination-wrapper .form-group .options-details label {
  margin-right: 25px;
  margin-bottom: 10px;
}
.examination-wrapper .heading-comment {
  display: block;
  color: #0b427e;
}
.examination-wrapper .select-wrapper label {
  display: inline-block;
  color: #0b427e;
  font-size: 14px;
  margin: 0;
  margin-right: 10px;
}
.examination-wrapper .select-wrapper select.form-control {
  display: inline-block;
  width: 150px;
  font-size: 12px;
  padding: 5px;
  height: 30px;
}
.examination-wrapper .form-group.form-left label {
  display: inline-block;
  padding-right: 15px;
  color: #0b427e;
}
.examination-wrapper .form-group.form-left .form-control {
  width: auto;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.padding-right {
  padding-right: 15px;
}
.examination-wrapper .form-group.form-left.substance-abuse-first {
  width: 22%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.substance-abuse-first .form-control {
  width: 110px;
}
.examination-wrapper .form-group.form-left.substance-abuse-second {
  width: 19%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.substance-abuse-second .form-control {
  width: 90px;
}
.examination-wrapper .form-group.form-left.substance-abuse-third {
  width: 21%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.substance-abuse-third .form-control {
  width: 76px;
}
.examination-wrapper .form-group.form-left.substance-abuse-four {
  width: 37%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.substance-abuse-five {
  width: 50%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.substance-abuse-five .form-control {
  width: 310px;
}
.examination-wrapper .form-group.form-left.substance-abuse-six {
  width: 50%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.substance-abuse-six .form-control {
  width: 310px;
}
.examination-wrapper .form-group.form-left.excercise-and-other-second {
  width: 488px;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.excercise-and-other-second .form-control {
  width: 245px;
}
.examination-wrapper .form-group.form-left.excercise-and-other-first, .examination-wrapper .form-group.form-left.excercise-and-other-third {
  width: 246px;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.excercise-and-other-first .form-control, .examination-wrapper .form-group.form-left.excercise-and-other-third .form-control {
  width: 96px;
}
.examination-wrapper .form-group.form-left.sexual-first {
  width: 392px;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.sexual-first .form-control {
  width: 250px;
}
.examination-wrapper .form-group.form-left.sexual-second {
  width: 225px;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.sexual-second .form-control {
  width: 90px;
}
.examination-wrapper .form-group.form-left.sexual-third {
  width: 348px;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.sexual-third .form-control {
  width: 243px;
}
.examination-wrapper .form-group.form-left.vaccines-first, .examination-wrapper .form-group.form-left.vaccines-second, .examination-wrapper .form-group.form-left.vaccines-third {
  width: 240px;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.vaccines-first .form-control, .examination-wrapper .form-group.form-left.vaccines-second .form-control, .examination-wrapper .form-group.form-left.vaccines-third .form-control {
  width: 146px;
}
.examination-wrapper .form-group.form-left.surgical-history-first {
  width: 50%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.surgical-history-first label {
  width: 90px;
}
.examination-wrapper .form-group.form-left.surgical-history-first .form-control {
  width: calc(100% - 90px);
}
.examination-wrapper .form-group.form-left.surgical-history-second {
  width: 50%;
  display: inline-block;
}
.examination-wrapper .form-group.form-left.surgical-history-second label {
  width: 60px;
}
.examination-wrapper .form-group.form-left.surgical-history-second .form-control {
  width: calc(100% - 60px);
}
.examination-wrapper .form-group.form-left.surgical-history-third {
  width: 100%;
}
.examination-wrapper .form-group.form-left.surgical-history-third label {
  width: 90px;
  vertical-align: top;
}
.examination-wrapper .form-group.form-left.surgical-history-third .form-control {
  width: calc(100% - 90px);
}
.examination-wrapper .form-group .family-details {
  display: inline-block;
}
.examination-wrapper .form-group .family-details.padding-right {
  padding-right: 15px;
}
.examination-wrapper .form-group .family-details.family-first {
  width: 230px;
}
.examination-wrapper .form-group .family-details.family-first label {
  width: 130px;
}
.examination-wrapper .form-group .family-details.family-second {
  width: 120px;
}
.examination-wrapper .form-group .family-details.family-second .form-control {
  width: 55px;
}
.examination-wrapper .form-group .family-details.family-third {
  width: 600px;
}
.examination-wrapper .form-group .family-details.family-third .form-control {
  width: 400px;
}
.examination-wrapper .form-group.illiness-list {
  padding-bottom: 10px;
  border-bottom: solid 1px #eaeaea;
}
.examination-wrapper .form-group.illiness-list label.main-label {
  width: 180px;
  color: #0b427e;
}
.examination-wrapper .form-group.illiness-list label.illness-check {
  padding-right: 15px;
  color: #666666;
}
.examination-wrapper .cancel_section {
  padding-right: 30px;
  position: relative;
}
.examination-wrapper .cancel_section > span.cancel {
  background: url(../images/cancel.png);
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 35px;
}
.examination-wrapper .cancel_section > span.cancel:hover {
  cursor: pointer;
}

textarea.form-control.height {
  min-height: 80px;
}

.examination-wrapper.reproductive-history .form-group.col-33 {
  width: 33%;
  display: inline-block;
  padding-right: 15px;
}
.examination-wrapper.reproductive-history .form-group.col-33.padding-none {
  padding-right: 0px;
}
.examination-wrapper.reproductive-history .form-group.col-33 label {
  display: inline-block;
  color: #0b427e;
  font-size: 14px;
  margin: 0;
  margin-right: 10px;
}
.examination-wrapper.reproductive-history .form-group.col-33 .form-control {
  width: 135px;
  display: inline-block;
}
.examination-wrapper.allergies .form-group label {
  display: inline-block;
  color: #0b427e;
  font-size: 14px;
  margin: 0;
  margin-right: 10px;
  width: 300px;
}
.examination-wrapper.allergies .form-group .form-control {
  width: calc(100% - 315px);
  display: inline-block;
}
.examination-wrapper.allergies .form-group select.form-control {
  width: auto;
}
.examination-wrapper.gynaecological-history .form-group {
  padding-right: 15px;
  display: inline-block;
}
.examination-wrapper.gynaecological-history .form-group label {
  display: inline-block;
  color: #0b427e;
  font-size: 14px;
  margin: 0;
  margin-right: 10px;
}
.examination-wrapper.gynaecological-history .form-group.no-padding {
  padding-right: 0;
}
.examination-wrapper.gynaecological-history .form-group.first {
  width: 325px;
}
.examination-wrapper.gynaecological-history .form-group.first .form-control {
  width: 178px;
  display: inline-block;
}
.examination-wrapper.gynaecological-history .form-group.second {
  width: 215px;
}
.examination-wrapper.gynaecological-history .form-group.second .form-control {
  width: 80px;
  display: inline-block;
}
.examination-wrapper.gynaecological-history .form-group.third {
  width: 405px;
}
.examination-wrapper.gynaecological-history .form-group.third .form-control {
  width: 210px;
  display: inline-block;
}
.examination-wrapper.gynaecological-history .form-group.fourth {
  width: 190px;
}
.examination-wrapper.gynaecological-history .form-group.fourth .form-control {
  width: 80px;
  display: inline-block;
}
.examination-wrapper.gynaecological-history .form-group.fifth {
  width: 354px;
}
.examination-wrapper.gynaecological-history .form-group.fifth .form-control {
  width: 185px;
  display: inline-block;
}
.examination-wrapper.gynaecological-history .form-group.sixth {
  width: 290px;
}
.examination-wrapper.gynaecological-history .form-group.sixth .form-control {
  width: 170px;
  display: inline-block;
}
.examination-wrapper.gynaecological-history .form-group.seventh {
  width: 290px;
}
.examination-wrapper.gynaecological-history .form-group.seventh .form-control {
  width: 200px;
  display: inline-block;
}

.content-wrapper.padding-none.patient-pic {
  min-height: 232px;
  margin: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff url("../images/user.svg") no-repeat center/60%;
}
.content-wrapper.padding-none.patient-pic.no-bg {
  background: #fff;
}
.content-wrapper.padding-none.patient-pic > img {
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content-wrapper.padding-none.patient-pic input[type="file"] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.content-wrapper.padding-none.patient-pic input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}
.content-wrapper.padding-none.patient-pic input[type="file"]::before {
  content: "Upload Photo";
  font-family: "roboto-medium";
  display: inline-block;
  background: #cccccc;
  padding: 10px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-size: 12px;
  color: #0b427e;
  width: 100%;
  text-align: center;
}
.content-wrapper.padding-none.patient-pic input[type="file"]:focus {
  border: none;
  outline: none;
}
.content-wrapper.padding-none.patient-pic input[type="file"]:hover::before {
  background: #0b427e;
  color: #fff;
}
.content-wrapper.padding-none.patient-pic input[type="file"]:active::before {
  background: #0b427e;
  color: #fff;
}

.prescription-filed-details {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 15px 0;
}
.prescription-filed-details:after {
  content: "";
  display: table;
  clear: both;
}
.prescription-filed-details:last-child {
  margin-bottom: 0px;
}
.prescription-filed-details.margin-bottom {
  margin-bottom: 15px;
}
.prescription-filed-details.full-width li {
  width: 100% !important;
  float: none;
}
.prescription-filed-details.auto-width li {
  width: auto !important;
  float: left;
  margin-bottom: 15px;
}
.prescription-filed-details li {
  font-size: 14px;
  color: #495057;
  border-right: solid 1px #9fbad8;
  padding: 0 20px;
  float: left;
  width: 50%;
}
.prescription-filed-details li:first-child {
  padding-left: inherit;
}
.prescription-filed-details li:last-child {
  border-right: none;
  padding-right: inherit;
  width: 50%;
}
.prescription-filed-details li i {
  font-style: normal;
}
.prescription-filed-details li > span {
  color: #0b427e;
  padding-left: 10px;
}

.family-member-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.family-member-list li {
  padding: 12px 0;
  border-bottom: solid 1px #dee2e7;
  font-size: 14px;
  color: #495057;
  border-right: none;
  margin: 0 !important;
  float: none !important;
}
.family-member-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.family-member-list li > span:first-child {
  width: 200px;
  display: inline-block;
  color: #495057;
}
.family-member-list li > span:last-child {
  width: calc(100% - 200px);
  display: inline-block;
  color: #0b427e;
  padding-left: inherit;
}
.family-member-list li > span:last-child span {
  width: auto;
  padding-right: 15px;
}

.select-chart-dropdown {
  font-size: 14px;
}
.select-chart-dropdown label {
  float: left;
  width: 130px;
  margin: 0;
  color: #0b427e;
  padding: 6px 0;
}
.select-chart-dropdown .form-control {
  width: calc(100% - 130px);
  float: left;
}

.anatomy-view .anatomy-title {
  color: #0b427e;
  font-size: 14px;
  font-family: "roboto-medium";
  margin: 25px 0;
  padding-bottom: 5px;
  border-bottom: solid 1px #0b427e;
}
.anatomy-view .cancel_section {
  position: relative;
  padding-right: 25px;
  margin-bottom: 25px;
}
.anatomy-view .cancel_section span.cancel {
  background: url(../images/cancel.png);
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 54px;
}
.anatomy-view .cancel_section span.cancel:hover {
  cursor: pointer;
}
.anatomy-view .cancel_section label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #0b427e;
}
.anatomy-view .cancel_section textarea.form-control {
  min-height: 70px;
}

.blue-main-heading {
  color: #0b427e;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: solid 1px #9FBAD8;
  font-family: "roboto-medium";
  margin-bottom: 10px;
}

.grey-border-bottom {
  border-bottom: solid 1px #DEE2E7;
}

.certi-details {
  color: #333333;
}
.certi-details span, .certi-details form {
  padding: 0 3px;
  font-size: 14px;
}
.certi-details span input, .certi-details form input {
  margin-bottom: 5px;
}
.certi-details span:first-child {
  padding-left: 0;
}

.follow-up {
  font-size: 14px;
  font-family: "roboto-regular";
}
.follow-up .suggesstion {
  display: inline-block;
  margin: 0 5px;
  width: 100%;
}
.follow-up .form-control {
  margin: 0 5px;
  display: inline-block;
  width: 100%;
}

.issued-certi table td:last-child a::after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 24px;
  background: url("../images/icons/certificate.svg") no-repeat center/contain;
}

.modal-content {
  /*border-radius: 0;*/
  /*Sameer Chalke*/
}
.modal-content .modal-header {
  font-family: "roboto-medium";
  font-size: 16px;
  color: #fff;
  background-color: #0B417D;
  border-radius: 0;
}
.modal-content .modal-header .close {
  opacity: 1;
}
.modal-content .modal-header .close span {
  color: #fff;
}

.schedule-appmnt-popup .form-label {
  color: #555555;
}
.schedule-appmnt-popup .v-line {
  position: relative;
  padding-right: 38px;
}
.schedule-appmnt-popup .v-line:nth-child(even) {
  padding-right: 0;
  padding-left: 38px;
}
.schedule-appmnt-popup .v-line:nth-child(even):after {
  display: none;
}
.schedule-appmnt-popup .v-line:last-child:after {
  display: none;
}
.schedule-appmnt-popup .v-line:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #3F85D1;
}
.schedule-appmnt-popup .form-label {
  position: relative;
}
.schedule-appmnt-popup .form-label.required:after {
  content: "*";
  color: #F14343;
}
.schedule-appmnt-popup .slots-data-policy {
  font-size: 12px;
  letter-spacing: 0.36px;
  color: #999999;
}

.pagination-mfixes {
  margin-left: -24px;
  margin-right: -24px;
  border-top: 2px solid #9FBAD8;
  padding-top: 15px;
  margin-top: 25px;
}

.custom_pagination {
  border-radius: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #CCC;
}
.custom_pagination li {
  position: relative;
  margin-left: 0;
  width: calc(16% - 10px);
}
.custom_pagination li .page-link {
  min-width: 129px;
  width: auto;
  height: auto;
  padding: 10px 0;
  border: none;
}
.custom_pagination li .page-link span {
  display: block;
  font-family: "roboto-bold";
  color: #000000;
  font-size: 15px;
  line-height: 22px;
}
.custom_pagination li .page-link span .schedule-appmnt-date {
  font-family: "roboto-regular";
  color: #555555;
  font-size: 13px;
}
.custom_pagination li .page-link span .schedule-appmnt-slot {
  font-family: "roboto-medium";
  color: #078B48;
  font-size: 11px;
}
.custom_pagination li .page-link span .schedule-appmnt-slot.no-available {
  color: #F14343;
}
.custom_pagination li.active:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #078B48;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.custom_pagination li.active .page-link {
  background-color: transparent;
  border: none;
}
.custom_pagination li:first-child {
  width: 50px;
}
.custom_pagination li:first-child .page-link {
  min-width: auto;
  background: url("../images/icons/arrow-left.svg") no-repeat center;
}
.custom_pagination li:first-child .page-link span {
  display: none;
}
.custom_pagination li:last-child {
  width: 50px;
}
.custom_pagination li:last-child .page-link {
  min-width: auto;
  background: url("../images/icons/arrow-right.svg") no-repeat center;
}
.custom_pagination li:last-child .page-link span {
  display: none;
}

.appmnt-slots .title {
  border-bottom: 1px solid #DEE2E7;
  padding: 10px 0;
  color: #0B417D;
}
.appmnt-slots .title span {
  font-family: "roboto-medium";
}
.appmnt-slots .appmnt-slots-data {
  margin-top: 12px;
}
.appmnt-slots .appmnt-slots-data a {
  color: #555;
  text-align: center;
  padding: 5px;
  border: 1px solid #DEE2E7;
  display: block;
  border-radius: 3px;
  font-size: 12px;
}
.appmnt-slots .appmnt-slots-data a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.appmnt-slots .appmnt-slots-data a.selected {
  background: #078B48;
  border-color: #06975B;
  color: #fff;
}
.appmnt-slots .appmnt-slots-data a.blocked {
  background: #CCCCCC;
  border-color: #CCCCCC;
  color: #fff;
  cursor: not-allowed;
}
.appmnt-slots .appmnt-slots-data a.booked {
  background: #F14343;
  border-color: #F14343;
  color: #fff;
  cursor: not-allowed;
}

.slots-data-sign {
  margin-right: auto !important;
}
.slots-data-sign .slots-data-sign-booked, .slots-data-sign .slots-data-sign-Blocked, .slots-data-sign .slots-data-sign-Selected {
  font-family: "roboto-medium";
  color: #0B417D;
  display: inline-block;
  font-size: 12px;
  margin-right: 22px;
}
.slots-data-sign .slots-data-sign-booked:before, .slots-data-sign .slots-data-sign-Blocked:before, .slots-data-sign .slots-data-sign-Selected:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #F14343;
  background-color: #F14343;
  border-radius: 50%;
  vertical-align: sub;
  margin-right: 6px;
}
.slots-data-sign .slots-data-sign-Blocked:before {
  border: 1px solid #CCCCCC;
  background-color: #CCCCCC;
}
.slots-data-sign .slots-data-sign-Selected:before {
  border: 1px solid #078B48;
  background-color: #078B48;
}

.form-control:disabled {
  border: 1px solid #DEE2E7;
  background-color: #F1F1F1;
}
.form-control[readonly] {
  border: 1px solid #DEE2E7;
  background-color: #F1F1F1;
}

.form-inline .form-check {
  display: inline-flex !important;
}

.bg-dh-white {
  background-color: #fff;
}

.page-title .page-title-txt {
  font-size: 18px;
  font-family: "roboto-medium";
  color: #0B417D;
}

.no-slot-wrapper {
  position: relative;
  height: calc(100vh - 104px);
}
.no-slot-wrapper .no-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}
.no-slot-wrapper .no-slot h3 {
  color: #000;
  font-size: 25px;
}

.create-slot-form .form-label {
  font-size: 14px;
  color: #0B417D;
}

.slot-cls {
  background-color: #FF000099;
  border: 1px solid #DEE2E7;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  min-height: 30px;
  line-height: 30px;
}

.slot-datatable input[type="radio"] + label {
  position: initial;
}
.slot-datatable .last .add, .slot-datatable .last .remove {
  width: 14px;
  height: 14px;
  display: block;
  background: url("../images/icons/plus.svg") no-repeat center/cover;
}
.slot-datatable .last .remove {
  width: 18px;
  height: 18px;
  background: url("../images/icons/cancel.svg") no-repeat center/cover;
}

.slot-add-holiday .form-label {
  color: #0B417D;
  margin-left: 8px;
  /*Sameer Chalke*/
}
.slot-add-holiday .v-line {
  position: relative;
  padding-right: 38px;
  margin-right: 38px;
}
.slot-add-holiday .v-line:last-child {
  padding-right: 0;
  margin-right: 0;
}
.slot-add-holiday .v-line:last-child:after {
  display: none;
}
.slot-add-holiday .v-line:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #3F85D1;
}
.slot-add-holiday .slot-desc {
  min-width: 415px;
}
.slot-add-holiday .row {
  border-bottom: 1px solid #CECECE;
  padding-bottom: 15px;
}

.slot-list-holiday .delete {
  width: 15px;
  height: 18px;
  display: block;
  background: url("../images/icons/delete.svg") no-repeat center/cover;
}

.slot-search .slot-date-to {
  width: auto !important;
}
.slot-search .react-bootstrap-daterangepicker-container input {
  width: 44.7% !important;
}
.slot-search .react-bootstrap-daterangepicker-container input.i-cale {
  background: url("../images/icons/calendar.svg") no-repeat 123px center/12px;
}

.slot-list .title {
  padding: 10px 0;
  border-bottom: 1px solid #DEE2E7;
}
.slot-list .title span {
  font-family: "roboto-medium";
  color: #0B417D;
  size: 14px;
  letter-spacing: 0.42px;
}

.holiday-list h3 {
  font-family: "roboto-medium";
  font-size: 18px;
  color: #0B417D;
  margin-bottom: 10px;
  margin-top: 15px;
}
.holiday-list .content-wrapper {
  padding: 25px 20px;
}

.wrapper-heading {
  font-size: 14px;
  color: #0B417D;
  font-family: "roboto-medium";
  border-bottom: 1px solid #DEE2E7;
  padding: 10px 0;
}

.list-inline.diff-tags li {
  color: #555555;
}
.list-inline.diff-tags li span {
  color: #0B417D;
}
.list-inline.with-v-line li {
  padding: 5px 30px;
  border-right: 1px solid #3F85D1;
}
.list-inline.with-v-line li:first-child {
  padding-left: 0;
}
.list-inline.with-v-line li:last-child {
  border-right: none;
}

.accordion .active:after {
  content: "+";
}

.medication-Info-wrapper .card {
  border: none;
  border-bottom: 1px solid #DEE2E7 !important;
}
.medication-Info-wrapper .card .plusbtn:after {
  content: "+";
  float: right;
}

.btn-remove {
  width: 18px;
  height: 18px;
  line-height: 15px;
  border: 1px solid #0B417D;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.btn-remove:after {
  font-family: "icomoon";
  content: "\e935";
  font-size: 9px;
  color: #0B417D;
}

.position-absolute-right {
  position: absolute;
  right: 20px;
  top: 35px;
}

.ambulance_treatment_list li {
  border-bottom: 1px solid #CECECE;
  margin-bottom: 20px;
}

.searchbar {
  background: url("../images/icons/search.svg") no-repeat 10px center;
  padding-left: 32px;
}

/*Sameer Chalke*/
.delete-slots, .delete-footer {
  text-align: center;
}

.delete-slots .alert-icon {
  padding-top: 25px;
}
.delete-slots .del-msg-1 {
  padding-top: 21px;
  letter-spacing: 0.56px;
  color: #0B417D;
  text-transform: capitalize;
  opacity: 1;
  margin: 0;
  font-size: 14px;
  font-family: "roboto-medium";
}
.delete-slots .del-msg-2 {
  letter-spacing: 0.56px;
  color: #0B417D;
  font-size: 14px;
  padding-bottom: 12px;
  padding-top: 20px;
  margin: 0;
}
.delete-slots .delete-slots .title span {
  font-family: "roboto-medium";
}
.delete-slots .p-del-popup {
  color: #555555;
  letter-spacing: 0.48px;
  padding: 0 23px;
  margin: 0;
  font-size: 12px;
}

.delete-footer {
  padding: 21px 0;
}
.delete-footer .delete-popup-btn {
  min-width: 80px;
  margin: 0 7.5px;
  height: 30px;
  line-height: initial;
}

/*
.removesearch {
  margin-left: 5px;
  background: white;
  color: #0b427e;
  border-radius: 50%;
  display: inline-flex;
  width: 17px;
  justify-content: center;
  align-items: center;
  padding: 1px 0 ;     
  box-sizing: border-box;
}

*/
.print-receipt{
  position: absolute;
    left: 80%;
    right: 0px;
}
.required-field:after {
  content: "*";
  color: red;
  margin-left: 2px;
}
.btn-danger-circle {
  width: 15px;
  height: 15px;
  /* padding: 6px 0px; */
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  background-color: red;
}
.btn-success-circle {
  width: 15px;
  height: 15px;
  /* padding: 6px 0px; */
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  background-color: green;
}
/* .btn-primary {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.form-inline .form-control.i-cale {
  width: 120px;
}
.form-check{
  position: relative;
    left: 80%;
    right: 0px;
}
.submit-button{
  position: relative;
    left: 89%;
    top: 10px
}
.test-form{
  border: 1px solid
} */
/* .form-detail{
  position: relative;
    top: 200px;
}
.covid-form{
  position: relative;
    top: 175px;
} */

/*Sameer chalke*/

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

.anatomy-view .cancel_section .top-0 {
  top: 0 !important;
}

.custom-text-align-left {
  text-align:left !important;
}

  .vital-cancel {
  background: url(../images/cancel.png);
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 185px;
}

.history-cancel {
  background: url(../images/cancel.png);
  width: 18px;
  height: 18px;
  position: absolute;
  right: 5px;
  top: 5px;
}
.top-initial {
  top: initial !important;
}
.clear-both {
  clear: both;
}

.position-initial {
  position: initial !important;
}

.btn-small {
  padding: 0.25rem 0.5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  text-transform: initial !important;
}

.urgent-care-medicine .accordion {
  margin-top: 10px;
}

.urgent-care-medicine .accordion .card-body {
  padding: 0 !important;
}

.urgent-care-medicine .accordion .card .card-header button {
  padding: 10px !important;
  text-transform: initial !important;
  font-size: 14px;
}

.urgent-care-medicine .administer-history .table {
  font-size: 12px;
}
.urgent-care-medicine .administer-history .table tbody tr td {
  padding: 5px 8px !important;
}

.urgent-care-medicine .administer-history .table th, .table td {
  padding: 8px !important;
  vertical-align: top;
  border-bottom: 1px solid #b4c2d1;
}
.urgent-care-action {
  text-align: right;
}
.urgent-care-action button {
  margin: 10px 5px;
  height: 28px;
  width: 250px;
  padding: 5px 10px;
}
.c-action-button {
  margin-top: 5px;
    margin-left: 10px;
}

.urgent-care-medicine .arrow-icon-down {
  background: url(../images/select-arrow.png);
  width: 10px;
  height: 6px;
  content: " ";
  position: absolute;
  margin-top: 7px;
  margin-left: 15px;
}

.urgent-care-medicine .arrow-icon-up {
  background: url(../images/select-arrow.png);
  width: 10px;
  height: 6px;
  content: " ";
  position: absolute;
  margin-top: 7px;
  margin-left: 15px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.urgent-care-medicine {
  padding: 5px !important;
  margin-top: 10px;
  box-shadow: 0px 0px 3px #00000029 !important;
}

.edit-icon {
  width: 19px;
  height: 18px;
  display: block;
  background: url("../images/icons/edit.svg") no-repeat center/cover;
}

.delete-icon {
  width: 14px;
  height: 18px;
  display: block;
  background: url("../images/icons/delete.svg") no-repeat center/cover;
}

.modal-box .test-form-listing {
  list-style: none;
  margin: 5px auto 0;
  padding: 0;
}

.modal-box .test-form-listing li {
  margin-bottom: 15px;
}

.modal-box .test-form-listing li label {
  position: relative;
  font-family: "roboto-medium";
  font-size: 13px;
  color: #0b427e;
  display: inline-block;
  width: 125px;
  margin-bottom: 0;
}

.modal-box .test-form-listing li .form-control {
  width: calc(100% - 125px);
  display: inline-block;
  font-size: 12px;
  padding: 5px;
  height: 30px;
}

.ml-120 {
  margin-left: 125px
}

.data-management td .btn-toggle:before {
    background: url(../images/on-toggle.png);
    width: 33px;
    height: 16px;
    content: "";
    display: inline-block;
    cursor: pointer;
    margin-top: 6px;
}

.data-management td .btn-toggle.off:before {
  background: url(../images/off-toggle.png);
}
.height-30 {
    height: 34px !important;
}

.prescription-patient-details.medicine-details.test > li:before {
  counter-increment: none;
  content: none;
}

.prescription-patient-details.medicine-details.medicine-checkbox {
  margin-left: '-25px';
  margin-top: '25px'
}

.prescription-patient-details.medicine-details.leftMargin {
  margin-left: '-11px'
}

.qrcode-content{padding:20px;}

.qrcode-container h4 {color:#0B417D;font-size: 21px;font-family:'robotomedium';margin-bottom:0;}

.c-mb-2 {
  margin-bottom: 2px;
}

.c-scroll {
  overflow: scroll;
}

.procedure-label {
  float: left;
  width: 170px !important;
}

.procedure-radio-label {
  width: 48px !important;
}

.docket-number-heading {
  float: left;
  padding-top: 6px;
}

.docket-number-heading > label {
  display: inline-block;
  color: #0b427e;
  padding-right: 10px;

}

.docket-number-button {
  float: left;
  margin-left: 15px;
  padding-top: 20px;
}

.procedure-radio-label {
  width: 48px !important;
}

.docket-number-button .add{
  width: 18px;
  height: 18px;
  display: block;
  background: url("../images/icons/plus-blue.svg") no-repeat center/cover;
  cursor: pointer;
}

.docket-number-button .edit{
  width: 19px;
  height: 18px;
  display: block;
  background: url(../images/icons/edit.svg) no-repeat center/cover;
  cursor: pointer;
}

.fee_collection_form .cancel {
  background: url(../images/cancel.png);
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  margin-right: 15px;
  margin-top: 25px;
}



.modal-box .form-listing li.AuthenticationWrapper .otpWrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.modal-box .form-listing li.AuthenticationWrapper .otpWrapper > div{
  width: 45%;
}
.modal-box .form-listing li.AuthenticationWrapper .otpWrapper > div input{
  width: 100%;
}

.modal-box .form-listing li.AuthenticationWrapper h5{
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 15px;
}

.modal-box .form-listing li.AuthenticationWrapper h4.countdown{
  color: #1d518a;
  font-size: 14px;
  font-family: "roboto-medium";
  margin-bottom: 15px;
}
/* Add for Add Patient Validation Error Message */
.custom-width{
  width: auto;
}

.content-wrapper.add-lab-report .form-group > label {
  font-size: 14px;
  color: #0b427e;
  margin-bottom: 5px;

}

.additaniol-form-wrapper,
.risk-assessment-table tr{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.additaniol-form-wrapper li label,
.risk-assessment-table td {
  margin-bottom: 0;
}

.risk-assessment-table label {
  display: block;
}

.c-text-pre-wrap {
  white-space: pre-wrap;
}

.c-pointer-event-none {
  pointer-events: none;
}

.datepickericon{  
  position: absolute;
   top: 50%;
   right: 5%; 
   transform: translateY(-50%);
   cursor: pointer;
   color :darkgray;
 }

.minor-patient{
  background: #dee2e733;
  padding: 5px 0px;
  margin: 15px 0px;
}

.minor-patient #minor_no, .minor-patient #minor_yes {
  width: 80px;
}

.minor-patient .checkbox-option-list{
  margin-top: 8px;
}

.minor-patient .input-relation{
  height: 37px;
}

.disable-block {
  pointer-events: none;
  opacity: 0.7;
}

.srv-validation-message-custom {
  color: red;
  font-size: 0.875rem;
  padding: 2px 0;
  display: inline-block;
  margin: auto;
  margin-left: 0;
}

#lims-tests .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #1d518a;
  border-color: #1d518a #1d518a #1d518a;
}

#lims-tests .nav-tabs {
  border-bottom: 2px solid #1d518a;
}

.width-100 {
  width: 100% !important;
}

.upload-test .wc-200 {
  width: 200px !important;
}