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;
}

.color-grey {
  color: #555555;
}

/*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;
  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.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: 18px 10px 18px 35px;
  color: #fff;
  font-size: 12px;
  font-family: "roboto-medium";
  position: relative;
}
.navbar .user-details:before {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 24px;
  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.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;
}

.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: 10px;
  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 20px;
}
.content-wrapper .patient-details li span {
  color: #589eea;
  padding-left: 10px;
}
.content-wrapper .patient-details li span .form-control {
  display: inline-block;
  width: 75px;
  margin-left: 20px;
}
.content-wrapper .patient-details li:first-child {
  padding-left: 0;
}
.content-wrapper .patient-details li:nth-child(5) {
  border-right: none;
}
.content-wrapper .patient-details li:last-child {
  border-right: none;
  padding-right: 0;
}
.content-wrapper .patient-details li:last-child span .form-control {
  width: 120px;
}
.content-wrapper .details-listing {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  min-height: 114px;
}
.content-wrapper .details-listing li {
  width: 50%;
  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: #0d8234;
  font-family: "roboto-regular";
}
.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: #0d8234;
  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;
}


@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: block !important;
}
.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;
}

.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: block !important;
}

.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;
}

.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: inline-block;
}

.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: 300px;
}
.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 > 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;
}
.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;
}

.custom-d-table-inline {
  display: inline-table !important;
}

.custom-button {
  width: 100px;
  height: 40px;
  font-size: 16px;
}