@charset "UTF-8";
:root {
  --border-color: #d0d5dd;
  --title-text-color: #101828;
  --tertiary-black: #191919;
  --common-text-color: #667085;
  --logo-blue: #151F6D;
  --grey-text: #344054;
  --light-grey: #98A2B3;
  --Success: #12B76A;
  --Success-text: #027A48;
  --Error: #F04438;
  --Error-text: #B42318;
  --ornage-color: #FF9E1B;
  --White-text: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 1.3;
  font-weight: 400;
  color: var(--common-text-color);
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.common-text {
  color: var(--common-text-color);
}

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

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

.btn {
  display: flex;
  align-items: center;
}

.btn-type1 {
  font-size: 14px;
  font-weight: 500;
}

.btn-type2 {
  font-size: 16px;
  font-weight: 500;
  background-color: var(--logo-blue);
  color: #ffffff;
}
.btn-type2:hover {
  border: 1px solid var(--logo-blue);
  color: var(--logo-blue);
}

.orange-text {
  color: var(--ornage-color);
}

.blue-text {
  color: var(--logo-blue);
}

.blue-bg {
  background-color: var(--logo-blue);
}

.title-text {
  color: var(--title-text-color);
}

.tertiary-black-text {
  color: var(--tertiary-black);
}

.blue-border {
  border: 1px solid var(--logo-blue);
}

.white-bg {
  background-color: var(--White-text);
}

.white-text {
  color: var(--White-text);
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-color);
}

.logo.img-wrp {
  width: 60%;
}

.square {
  aspect-ratio: 1/1;
}

.settings-btn {
  width: 33px;
  min-width: 33px;
  height: 33px;
  background-color: var(--logo-blue);
  border: 1px solid var(--logo-blue);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 0;
  transition: transform 0.5s, background-color 0.5s;
  -webkit-transition: transform 0.5s, background-color 0.5s;
  -moz-transition: transform 0.5s, background-color 0.5s;
  -ms-transition: transform 0.5s, background-color 0.5s;
  -o-transition: transform 0.5s, background-color 0.5s;
}
.settings-btn i {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.settings-btn:hover i {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.success-value {
  color: var(--Success);
}

.success-text {
  color: var(--Success-text);
}

.error-value {
  color: var(--Error);
}

.error-text {
  color: var(--Error-text);
}

.grey-text {
  color: var(--grey-text);
}

.light-grey {
  color: var(--light-grey);
}

.light-grey-bg {
  background-color: #E0E0E0;
}

.border-common {
  border: 1px solid var(--border-color);
}

.hr-color-light {
  border-top: 1px solid #EAECF0;
  opacity: 1;
}

.shadow-common {
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.dark-shadow {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

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

.input-icon .form-control {
  padding-left: 40px;
}
.input-icon i {
  position: absolute;
  left: 10px;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.input-icon i img {
  max-width: 100%;
  max-height: 100%;
}

.dropdown-menu.show {
  font-size: 14px;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active {
  background-color: var(--common-text-color);
  color: #ffffff;
}

.btn-close:focus {
  box-shadow: none;
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.navbar-nav .nav-link::after {
  height: 1px;
  min-width: 0%;
  position: absolute;
  background-color: var(--logo-blue);
  bottom: 10px;
  left: 0;
  transition: min-width 0.3s ease;
  -webkit-transition: min-width 0.3s ease;
  -moz-transition: min-width 0.3s ease;
  -ms-transition: min-width 0.3s ease;
  -o-transition: min-width 0.3s ease;
}
.navbar-nav .nav-link:hover:after {
  min-width: 100%;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--logo-blue);
  font-weight: 700;
}
.navbar-nav .nav-link.active::after, .navbar-nav .nav-link.show::after {
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: var(--logo-blue);
  bottom: 10px;
  left: 0;
}

.navbar-brand h1 {
  display: flex;
  align-items: center;
}
.navbar-brand img {
  max-width: 100%;
}

.img-wrp img {
  width: 100%;
}

.navbar-toggler {
  border: none;
  position: absolute;
  right: 0px;
  top: 5px;
  display: block !important;
}
.navbar-toggler:focus, .navbar-toggler:active {
  border: none;
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #151F6D;
  width: 33px;
  height: 33px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.navbar-toggler .navbar-toggler-icon::after {
  content: "\f479";
  font-family: "bootstrap-icons";
  font-size: 22px;
  color: #ffffff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.navbar-toggler .navbar-toggler-icon:hover {
  background-color: transparent;
}
.navbar-toggler .navbar-toggler-icon:hover::after {
  color: #151F6D;
}

.form-control {
  border-color: var(--border-color);
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.dropdown .dropdown-toggle {
  border: none;
}
.dropdown .dropdown-toggle.show {
  border: none;
}
.dropdown .dropdown-toggle:focus, .dropdown .dropdown-toggle:active {
  border: none;
  box-shadow: none;
}

.search-btn {
  position: absolute;
  border: none;
  box-shadow: none;
  left: 15px;
  top: 2px;
  height: 90%;
  background-color: transparent;
  outline: none;
  padding: 0;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu.show {
  left: auto;
  right: 0;
}

.notification-button {
  background-color: var(--logo-blue);
  min-width: 33px;
  height: 33px;
  color: #ffffff;
  right: 50px;
}

header .dropdown {
  right: 45px;
}

.prfl-pic {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 65px;
  height: 65px;
  min-width: 65px;
  background-color: #F9FAFB;
}
.prfl-pic img {
  max-width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
  z-index: 1;
}
.prfl-pic span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  z-index: 0;
}
.prfl-pic.active::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--Success);
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.prsn-dtls-wrp {
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}
.prsn-dtls-wrp a.title-text {
  text-decoration: none;
}
.prsn-dtls-wrp a.title-text:hover {
  text-decoration: underline;
}
.prsn-dtls-wrp .prfl-pic {
  width: 45px;
  height: 45px;
  min-width: 45px;
}
.prsn-dtls-wrp .prfl-pic.active::after {
  right: -3px;
}

.prsn-dtls-dropdown .dropdown-menu.show {
  right: 0 !important;
  left: auto !important;
}
.prsn-dtls-dropdown .dropdown-item {
  font-size: 14px;
  color: var(--grey-text);
}

.value-info {
  font-size: 36px;
  font-weight: 600;
}

.value-info-type2 {
  font-size: 30px;
  font-weight: 600;
}

.light-success-bg {
  background-color: #ECFDF3;
}

.light-error-bg {
  background-color: #FEF3F2;
}

.chart-legend-wrp li {
  margin-left: 16px;
}
.chart-legend-wrp li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 8px;
}
.chart-legend-wrp li span.unknown {
  background-color: #DCDADA;
}
.chart-legend-wrp li span.low-risk {
  background-color: #244E5A;
}
.chart-legend-wrp li span.medium-risk {
  background-color: #FF9E1B;
}
.chart-legend-wrp li span.heigh-risk {
  background-color: #931E42;
}
.chart-legend-wrp li:first-child {
  margin-left: 0;
}

.subtab-label.active {
  background-color: #F9FAFB;
}

.bi-filter {
  font-size: 18px;
}

.col-name {
  width: 30%;
  text-align: left;
}

.col-name-case {
  width: 25%;
  text-align: left;
}

.col-status {
  width: 7%;
  text-align: left;
}

.col-cases {
  width: 5%;
  text-align: left;
}

.col-dob {
  width: 10%;
  text-align: left;
}

.col-hospital {
  width: 10%;
  text-align: left;
}

.col-location {
  width: 15%;
  text-align: left;
}

.col-clinic {
  width: 8%;
  text-align: left;
}

.col-re-adm-rate {
  width: 15%;
  text-align: left;
}

.col-action {
  width: 10%;
  text-align: left;
}
.col-action button {
  color: #767579;
  border: none;
  box-shadow: none;
}
.col-action button img {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.col-action button:hover img {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.select2-container .select2-selection--single {
  height: 37px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 2px;
  margin-bottom: 2px;
  margin-left: 0;
  margin-right: 4px;
}
.select2-container--default .select2-selection--multiple .select2-search {
  display: inline-flex;
  align-items: center;
}

.select2-container {
  min-width: 100%;
  max-width: 100%;
}
.select2-container .select2-search--inline .select2-search__field {
  margin-top: 2px;
  margin-bottom: 2px;
}

.tabwrp {
  overflow-x: auto;
}
.tabwrp .subtab-content,
.tabwrp .tab-content {
  min-width: 1250px;
}
.tabwrp.subs-plans-table .col-sl-no {
  width: 5%;
}
.tabwrp.subs-plans-table .col-plans {
  width: 15%;
}
.tabwrp.subs-plans-table .col-pricing,
.tabwrp.subs-plans-table .col-renewal,
.tabwrp.subs-plans-table .col-admins,
.tabwrp.subs-plans-table .col-patients,
.tabwrp.subs-plans-table .col-faculty {
  width: 10%;
}
.tabwrp.subs-plans-table .col-status,
.tabwrp.subs-plans-table .col-status {
  width: 15%;
}
.tabwrp .prsn-dtls-wrp {
  border-bottom: none;
}
.tabwrp th,
.tabwrp td {
  vertical-align: middle;
}
.tabwrp th {
  color: var(--common-text-color);
  font-size: 12px;
  background-color: #F9FAFB;
}
.tabwrp .progress {
  height: 8px;
  background-color: #DCDADA;
}
.tabwrp .progress .progress-bar {
  background-color: var(--logo-blue);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.tabwrp td {
  color: var(--title-text-color);
}
.tabwrp .col-cases {
  color: var(--common-text-color);
}

.light-inactive-bg {
  background-color: #F2F4F7;
}

.title-section {
  background-color: #F9FAFB;
}

.bs-tab-wrp .nav-link {
  border: none;
  color: var(--common-text-color);
}
.bs-tab-wrp .nav-link.active {
  border: none;
  border-bottom: 2px solid var(--logo-blue);
  color: var(--logo-blue);
}

.avatarImg {
  z-index: -1;
  font-size: 20px;
  background-color: #f9fafb;
  color: #596376;
}

.file-upload-wrp .img-wrp {
  width: 64px;
  height: 64px;
}
.file-upload-wrp .img-wrp img {
  width: auto;
  height: 100%;
}
.file-upload-wrp input[type=file] {
  min-height: 100%;
  position: absolute;
  opacity: 0;
  z-index: 3;
}
.file-upload-wrp .upload-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.file-upload-wrp .upload-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.file-upload-wrp .upload-icon::before {
  content: "";
  background-color: #F9FAFB;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
}
.file-upload-wrp .upload-icon::after {
  content: "";
  background-color: #F2F4F7;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@keyframes growCircle {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
.file-upload-wrp .file-upload:hover .upload-icon::after {
  width: 100%;
  height: 100%;
  animation: growCircle 0.5s linear infinite;
  -webkit-animation: growCircle 0.5s linear infinite;
}

.hovereffectbg,
.iconroundedbg {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hovereffectbg img,
.iconroundedbg img {
  width: auto;
  height: auto;
  max-width: 100%;
  z-index: 1;
}

.iconroundedbg {
  background-color: #F9FAFB;
}

.hovereffectbg {
  position: relative;
}
.hovereffectbg img {
  position: relative;
  z-index: 1;
}
.hovereffectbg::before {
  content: "";
  background-color: #F9FAFB;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
.hovereffectbg::after {
  content: "";
  background-color: #F2F4F7;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation: growCircleUserIcon 0.5s linear infinite;
  -webkit-animation: growCircleUserIcon 0.5s linear infinite;
}

@keyframes growCircleUserIcon {
  0% {
    width: 40px;
    height: 40px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
.modal-backdrop.show {
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
}

.subtab-btn-wrp .nav-tabs {
  border-bottom: none;
}
.subtab-btn-wrp .nav-link {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.subtab-btn-wrp .nav-link.active {
  background-color: #F9FAFB;
}

.inner-links input[type=checkbox] {
  display: none;
}
.inner-links ul {
  list-style: none;
  padding: 0;
}
.inner-links ul li {
  margin-right: 5px;
}
.inner-links ul li:last-child {
  margin-right: 0;
}
.inner-links ul li a {
  border: none;
}
.inner-links ul li a.active, .inner-links ul li a:hover {
  background-color: #ffffff;
  color: var(--grey-text);
  border: none;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.col-equal-six {
  width: 16.6666666667%;
}

.high-risk-label {
  background-color: #FEF3F2;
  color: #B42318;
}

.medium-risk-label {
  background-color: #FFFAEB;
  color: #B54708;
}

.low-risk-label {
  background-color: #ECFDF3;
  color: #027A48;
}

.unknown-risk-label {
  background-color: #F2F4F7;
  color: #344054;
}

.diagnosis-table {
  min-width: 700px;
}

.filter-dropdown {
  width: 200px;
  max-height: 50vh;
  overflow-y: auto;
}

.left-commom-padding {
  padding-left: 32px;
}

.checkmark {
  position: absolute;
  top: 0;
  left: -32px;
  height: 20px;
  width: 20px;
  border: 1px solid var(--logo-blue);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--logo-blue);
}

.cstm-rdo .checkmark {
  border-radius: 50%;
}
.cstm-rdo .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--logo-blue);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.cstm-chk .checkmark {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.cstm-chk .checkmark:after {
  background-image: url(../images/Icon-tick.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: transparent;
  max-width: none;
  height: 12px;
  width: 12px;
  left: 3px;
  top: 3px;
}

input[type=radio],
input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
input[type=radio]:checked ~ .checkmark:after,
input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}

.absolute-label {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  right: 30px;
}

.input-bg-none {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.assmnt-steps {
  padding-left: 0;
  list-style: none;
}
.assmnt-steps li {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  position: relative;
  color: #191919;
}
.assmnt-steps li > span {
  width: 32px;
  min-width: 32px;
  height: 32px;
  background-color: #F9FAFB;
  margin-right: 16px;
  position: relative;
}
.assmnt-steps li > span > span {
  background-color: #EAECF0;
  width: 10px;
  max-width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.assmnt-steps li::before {
  content: "";
  position: absolute;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 100%;
  width: 2px;
  left: 15px;
  top: 114%;
  height: 44px;
  display: none;
}
.assmnt-steps li.active {
  color: var(--logo-blue);
}
.assmnt-steps li.active::before {
  display: block;
  background-color: #EAECF0;
}
.assmnt-steps li.active.saved > span > span {
  background-image: url("../images/Icon-tick.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: transparent;
  max-width: none;
  height: 16px;
  width: 16px;
  left: 14px;
  top: 13px;
}
.assmnt-steps li.active.saved > span::before {
  display: none;
}
.assmnt-steps li.active > span::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: hsla(220, 17%, 93%, 0.5);
  position: absolute;
  left: -4px;
  top: -4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.assmnt-steps li.active > span::after {
  content: "";
  background-color: rgba(134, 200, 188, 0.11);
  width: 32px;
  height: 32px;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.assmnt-steps li.active > span > span {
  background-color: var(--logo-blue);
}
.assmnt-steps li:last-child::before {
  display: none;
}

.tab-btn.active {
  display: none;
}

/* Hide Calendar Icon In Chrome */
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.list-type-1 {
  position: relative;
}
.list-type-1::after {
  content: "";
  width: 1px;
  height: 80%;
  background-color: var(--border-color);
  position: absolute;
  z-index: 0;
  left: 50px;
  top: 15px;
}

/************************************************/
.radio-slide {
  width: 80%;
  height: 8px;
  background-color: #EAECF0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  position: relative;
}
.radio-slide span {
  border: 1px solid #EAECF0;
  background-color: #ffffff;
  box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.0588235294);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.radio-slide .check-yes {
  left: 0;
  width: 50%;
}
.radio-slide .check-no {
  right: 0;
  width: 50%;
}
.radio-slide .uncheck {
  left: 50%;
  margin-left: -12px;
  z-index: -1 !important;
}
.radio-slide input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: 9;
  height: 24px;
}
.radio-slide input[type=radio] + .checked {
  opacity: 0;
}
.radio-slide input[type=radio]:checked + .checked {
  opacity: 1;
}

/************************************************/
.radio-inputbox .checkmark {
  top: 8px;
}
.radio-inputbox + .list-group-item {
  display: flex;
  align-items: center;
}
.radio-inputbox input[type=radio] ~ span input[type=text] {
  pointer-events: none;
}
.radio-inputbox input[type=radio]:checked ~ span input[type=text] {
  pointer-events: auto;
}

/*******************Datepicker*******************/
.multi-cal {
  background: #fff;
  cursor: pointer;
  padding: 7px 10px 5px;
  border: 1px solid #ccc;
  width: 100%;
}

.daterangepicker.single .ranges {
  padding: 0 0;
}
.daterangepicker .ranges {
  padding: 5px 10px;
}
.daterangepicker .ranges li {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.daterangepicker .ranges li.active {
  color: #7f56d9;
  background-color: #f9f5ff;
}
.daterangepicker td.active, .daterangepicker td.end-date {
  background-color: #7f56d9;
}
.daterangepicker td.active:hover, .daterangepicker td.end-date:hover {
  background-color: #7f56d9;
}
.daterangepicker td.in-range {
  background-color: #f9f5ff;
}
.daterangepicker td.in-range.end-date {
  background-color: #7f56d9;
}
.daterangepicker .drp-selected {
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  align-items: center;
}
.daterangepicker.show-calendar .drp-buttons {
  display: flex;
  justify-content: end;
}
.daterangepicker .drp-buttons .btn.applyBtn {
  background-color: #7f56d9;
}
.daterangepicker .drp-buttons .btn.cancelBtn {
  border: 1px solid var(--border-color);
}

.otp-input .form-control {
  width: 38px;
  text-align: center;
}

.cstm-chk.plans-chk .checkmark::after {
  position: static;
}

/************************************************/
/******************Widget Start******************/
.widget-wrp {
  display: none;
}
.widget-wrp:has(input[type=checkbox]:checked) {
  display: block;
}

/*******************Widget End*******************/
.fixedelement {
  display: none;
}

input[type=checkbox].form-check-input {
  opacity: 1;
  box-shadow: none;
  margin-top: 6px;
}
input[type=checkbox].form-check-input:checked {
  background-color: var(--logo-blue);
  border-color: var(--logo-blue);
}

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

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

.assess-quest .col-sl-no {
  width: 5%;
}
.assess-quest .col-questions {
  width: 35%;
}
.assess-quest .col-subhead,
.assess-quest .col-ques-type {
  width: 15%;
}
.assess-quest .col-risklevel,
.assess-quest .col-status,
.assess-quest .col-action {
  width: 10%;
}

.resources-table .col-sl-no {
  width: 5%;
}
.resources-table .col-name {
  width: 20%;
}
.resources-table .col-desc {
  width: 25%;
}
.resources-table .col-sub-cats,
.resources-table .col-active-sub-cats {
  width: 15%;
}
.resources-table .col-status,
.resources-table .col-action {
  width: 10%;
}

.res-ntwrk-orgnztn .col-sl-no {
  width: 5%;
}
.res-ntwrk-orgnztn .col-name {
  width: 20%;
}
.res-ntwrk-orgnztn .col-cntct-prsn {
  width: 8%;
}
.res-ntwrk-orgnztn .col-cat,
.res-ntwrk-orgnztn .col-total-req,
.res-ntwrk-orgnztn .col-cmpltd-req {
  width: 7%;
}
.res-ntwrk-orgnztn .col-phone {
  width: 15%;
}
.res-ntwrk-orgnztn .col-area {
  width: 9%;
}
.res-ntwrk-orgnztn .col-zip,
.res-ntwrk-orgnztn .col-res-rate {
  width: 9%;
}
.res-ntwrk-orgnztn .col-rating {
  width: 7%;
}
.res-ntwrk-orgnztn .col-status,
.res-ntwrk-orgnztn .col-action {
  width: 10%;
}

.res-ntwrk-indvdl .col-name {
  width: 17%;
}
.res-ntwrk-indvdl .col-cat {
  width: 7%;
}
.res-ntwrk-indvdl .col-total-req {
  width: 7%;
}
.res-ntwrk-indvdl .col-cmpltd-req {
  width: 8%;
}
.res-ntwrk-indvdl .col-phone {
  width: 13%;
}
.res-ntwrk-indvdl .col-area {
  width: 10%;
}
.res-ntwrk-indvdl .col-zip {
  width: 7%;
}
.res-ntwrk-indvdl .col-res-rate {
  width: 10%;
}
.res-ntwrk-indvdl .col-rating {
  width: 6%;
}
.res-ntwrk-indvdl .col-status {
  width: 7%;
}
.res-ntwrk-indvdl .col-action {
  width: 8%;
}

.partner-list .col-sl-no {
  width: 5%;
}
.partner-list .col-name {
  width: 25%;
}
.partner-list .col-status {
  width: 7%;
}
.partner-list .col-completion {
  width: 7%;
}
.partner-list .col-location {
  width: 16%;
}
.partner-list .col-cat {
  width: 15%;
}
.partner-list .col-zipcode {
  width: 7%;
}
.partner-list .col-res-rate {
  width: 10%;
}
.partner-list .col-response-rate {
  width: 15%;
}
.partner-list .col-action {
  width: 8%;
}

.plans-slider .owl-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: 50%;
  left: 0;
  margin-bottom: -25px;
  font-size: 50px;
  line-height: 1;
}
.plans-slider .owl-nav button:hover {
  background-color: transparent !important;
  color: #151F6D !important;
}

.locations-list .col-sl-no {
  width: 5%;
}
.locations-list .col-name {
  width: 18%;
}
.locations-list .col-UID {
  width: 8%;
}
.locations-list .col-phone {
  width: 12%;
}
.locations-list .col-plans {
  width: 6%;
}
.locations-list .col-admins, .locations-list .col-patients, .locations-list .col-faculty {
  width: 7%;
}
.locations-list .col-renewal {
  width: 8%;
}
.locations-list .col-EHR {
  width: 8%;
}
.locations-list .col-status {
  width: 8%;
}
.locations-list .col-action {
  width: 6%;
}

#barChart1 {
  max-width: 100% !important;
}

/********************Star Rating Preview***********************/
:root {
  --star-size: 60px;
  --star-color: #fff;
  --star-background: #fc0;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 16px;
  font-family: Times;
  line-height: 1;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*************************************************************/
@media (min-width: 992px) and (max-width: 1365px) {
  .tabwrp {
    position: relative;
  }
  .tabwrp .fixedelement {
    position: absolute;
    right: 0;
    top: 25px;
    display: block;
    font-size: 50px;
    opacity: 0.5;
    animation: scrollLeft infinite 0.8s;
    -webkit-animation: scrollLeft infinite 0.8s;
  }
  @keyframes scrollLeft {
    0% {
      right: 20px;
      opacity: 0.5;
    }
    100% {
      right: 0px;
      opacity: 0;
    }
  }
}
@media (min-width: 577px) {
  .drp-calendar.right {
    border-left: 1px solid #ddd;
  }
  .w-sm-75 {
    width: 75% !important;
  }
}
@media (min-width: 1024px) {
  .w-lg-100 {
    width: 100% !important;
  }
}
@media (min-width: 1366px) {
  .fixedelement {
    display: none !important;
  }
  .custom-tooltip-scroll-left {
    visibility: hidden !important;
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .value-info {
    font-size: 30px;
  }
  .value-info-type2 {
    font-size: 25px;
  }
  .navbar-nav .nav-link.active::after, .navbar-nav .nav-link.show::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar-brand {
    max-width: 140px;
  }
  .navbar-toggler {
    top: 3px;
  }
  .value-info {
    font-size: 27px;
  }
  .value-info-type2 {
    font-size: 23px;
  }
  .inner-links ul li {
    margin-right: 0;
  }
  .inner-links ul li a {
    display: none;
    margin-top: 0.05rem;
    margin-bottom: 0.05rem;
  }
  .inner-links ul li a.active {
    display: inline-flex;
  }
  .inner-links input:checked + ul li a {
    display: inline-flex;
  }
  .input-bg-none,
  .absolute-label {
    font-size: 13px;
  }
  .tabwrp .subtab-content, .tabwrp .tab-content {
    min-width: 1px;
  }
  .tabwrp .progress {
    width: 50%;
  }
  .tabwrp .fixedelement {
    display: none !important;
  }
  .tabwrp thead {
    display: none;
  }
  .tabwrp td {
    width: 100% !important;
    display: flex;
    text-align: right;
    justify-content: space-between;
    align-items: center;
    border: none;
  }
  .tabwrp td::before {
    content: attr(data-label);
    font-weight: 500;
    text-align: left;
    width: 40%;
    color: var(--common-text-color);
    margin-right: 10px;
  }
  .tabwrp .box {
    border-bottom: 1px solid #d0d5dd;
  }
  .tabwrp .prsn-dtls-wrp {
    text-align: left;
  }
  .notab-table tr {
    border-bottom: 1px solid #d0d5dd;
  }
  .custom-tooltip-scroll-left {
    visibility: hidden !important;
    display: none !important;
  }
  .member-table .member-img {
    max-width: 25%;
  }
  .member-table td {
    text-align: left;
    justify-content: start;
  }
  .member-table td::before {
    display: none;
  }
  .member-table td.action {
    justify-content: end;
  }
}
@media (max-width: 767px) {
  .value-info {
    font-size: 24px;
  }
  .value-info-type2 {
    font-size: 20px;
  }
  .drp-calendar {
    border-top: 1px solid #ddd;
  }
  .drp-calendar.left {
    border-left: none !important;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .widget-wrp .h6, .widget-wrp h6 {
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .value-info {
    font-size: 22px;
  }
  .value-info-type2 {
    font-size: 18px;
  }
  .date-picker-wrp {
    width: auto;
  }
  .daterangepicker .drp-selected {
    padding: 5px 4px;
  }
  .daterangepicker .drp-buttons .btn {
    margin-left: 3px;
  }
  .tabwrp .prsn-dtls-wrp .prfl-pic {
    display: none;
  }
  .tabwrp .prsn-dtls-wrp span span {
    align-items: end !important;
    text-align: right;
  }
}
@media (max-width: 370px) {
  .offcanvas-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */