@charset "utf-8";
/* AUDYA Variables */
:root {
    --brand-clr1: #f15a24;
    --brand-clr2: #007ea7;
    --yellow-clr: #fab532;
    --body-clr: #172b4d;
    --body-bg: #fafcfe;
    --light-blue: #eaf1fa;
    --gray-clr: #707070;
    --light-gray-clr: #dee6ef;
    --white-clr: #ffffff;
    --black-clr: #000000;
    --transition: all ease 0.4s;
    --radius: 20px;
    --shadow: 0 0 6px #dee6ef;
}

.left {
    text-align: left;
}
.avatar-wrap .avatar-title {
    font-size: 16px !important;
}
/* AUDYA Normal CSS */
body {
    background: var(--body-bg);
    color: var(--body-clr);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.42857143;
    background-size: cover;
    background-position: 50% 50%;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    transition: var(--transition);
}

*,
*:focus {
    outline: none;
}

a {
    display: inline-block;
    color: var(--body-clr);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
a:focus {
    color: var(--brand-clr1);
}

a:focus {
    outline: none;
    outline-offset: 0;
}

img {
    max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    padding-bottom: 10px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--body-clr);
    line-height: 1.2;
}

p,
.p {
    font-size: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
}

div[disabled] {
    background-color: #e9ecef !important;
    border-color: #c9d5e2;
    color: #555;
    pointer-events: none;
    opacity: 1;
}

.dropdownWrapper .dropdown[disabled]:after {
    border-color: #ccc;
}

input:disabled::placeholder,
input.form-control:disabled {
    border-color: #c9d5e2;
    color: #555;
    pointer-events: none;
    opacity: 1;
}

select.disabled,
.nice-select.disabled {
    background-color: #e9ecef;
    border-color: #c9d5e2;
    color: #555;
    pointer-events: none;
    opacity: 1;
}

::selection {
    background: var(--brand-clr1);
    color: var(--white-clr);
}

::-webkit-selection {
    background: var(--brand-clr1);
    color: var(--white-clr);
}

::-moz-selection {
    background: var(--brand-clr1);
    color: var(--white-clr);
}

::-o-selection {
    background: var(--brand-clr1);
    color: var(--white-clr);
}

::-ms-selection {
    background: var(--brand-clr1);
    color: var(--white-clr);
}

/* Reset Class CSS */
.btn-warning {
    background-color: var(--yellow-clr);
}

.bg-warning {
    background-color: var(--yellow-clr) !important;
}

.bg-primary {
    background-color: var(--brand-clr1) !important;
}

.bg-secondary {
    background-color: var(--brand-clr2) !important;
}

.bg-light-blue {
    background-color: #5cb1cc !important;
}

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

.confirm-button-class-patient {
    background-color: #f15a24 !important; /* Set the background color to #F15A24 for patient */
    /* Additional styling properties for the patient class */
}

.confirm-button-class-pro {
    background-color: #007ea7 !important; /* Set the background color to #007EA7 for pro */
    /* Additional styling properties for the pro class */
}

.swal2-styled.swal2-confirm:focus {
    box-shadow: none;
}

.bg-orange {
    background-color: var(--brand-clr1) !important;
}

.text-primary {
    color: var(--brand-clr2) !important;
}
.text-primary1 {
    color: var(--brand-clr1) !important;
}
.text-secondary {
    color: var(--brand-clr1) !important;
}

.link-primary {
    color: var(--brand-clr1) !important;
}

.link-primary:hover,
.link-primary:focus {
    color: var(--brand-clr2) !important;
}

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

.cursor-pointer {
    cursor: pointer;
}

/* AUDYA Form CSS */
.form-label {
    vertical-align: middle;
    margin-bottom: 5px;
    line-height: 1.2;
    cursor: pointer;
}

.form-control,
.form-select,
.bootstrap-tagsinput {
    width: 100%;
    padding: 10.25px 20px;
    background: none;
    color: var(--body-clr);
    font-size: 15px;
    border-color: #c9d5e2;
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus {
    background: none;
    color: var(--body-clr);
}

.form-control::placeholder {
    color: var(--body-clr);
}

.gray-placeholder,
.gray-placeholder::placeholder {
    color: #878e96 !important;
}

.form-select {
    cursor: pointer;
    padding-right: 45px;
}

.field-icon {
    float: right;
    margin-right: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.medical-information-row .select2-container {
    width: 100% !important;
}

.medical-information-row
    .select2-container--default
    .select2-selection--single {
    display: none;
}

/* Dropdown Option */
.select2-results__option {
    background-color: #e9ecef;
    color: var(--body-clr);
}

/* Dropdown Option Hover */
.select2-results__option--highlighted {
    background-color: var(--brand-clr1) !important;
    color: #fff !important;
}

.search-icon {
    padding-left: 45px;
    background-image: url(../images/icon-search3.svg) !important;
    background-repeat: no-repeat !important;
    background-position: left 16px center !important;
}

.print-icon {
    padding-left: 45px;
    background-image: url(../images/printer.svg) !important;
    background-repeat: no-repeat !important;
    background-position: left 16px center !important;
}

.calendar-icon {
    padding-right: 45px;
    background-image: url(../images/icon-calendar.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
}

textarea.form-control {
    min-height: 100px;
    resize: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

select::-ms-expand {
    display: none;
}

.form-label {
    padding-right: 12px;
}

/* Form Check Input CSS */
.form-check-input {
    width: 20px;
    height: 20px;
    border-color: #c9d5e2 !important;
}

.form-check-input[type="checkbox"] {
    border-radius: 6px;
}

.form-check-input:checked {
    background-color: var(--brand-clr1);
    border-color: var(--brand-clr1) !important;
}

.form-check-label {
    cursor: pointer;
}

.form-check-input:focus {
    box-shadow: none;
}

/* AUDYA Button CSS */
/*.btn {
  min-width: 100px;
  padding: 11.25px 30px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white-clr);
  border-radius: var(--radius);
  border: none;
}
.btn-primary {
  background-color: var(--brand-clr1);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:first-child:active,
.btn-check:checked+.btn,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-clr);
  border: none;
  background-color: var(--brand-clr2);
  box-shadow: none;
}
.btn-secondary {
  background-color: var(--brand-clr2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:first-child:active,
.btn-check:checked+.btn,
.btn-secondary.active,
.btn-secondary.show,
.btn-secondary:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-clr);
  border: none;
  background-color: var(--brand-clr1);
  box-shadow: none;
}
.btn-green {
  background-color: #76C00D;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:focus-visible,
.btn-green:first-child:active,
.btn-check:checked+.btn,
.btn-green.active,
.btn-green.show,
.btn-green:first-child:active,
:not(.btn-check)+.btn:active, .btn-red:hover,
.btn-red:focus,
.btn-red:focus-visible,
.btn-red:first-child:active,
.btn-check:checked+.btn,
.btn-red.active,
.btn-red.show,
.btn-red:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-clr);
  background-color: var(--brand-clr2);
}
.btn-red {
  background-color: #D03E13;
}
.border-primary {
  border-color: var(--brand-clr2) !important;
}
.text-gray {
  color: #878E96 !important;
}
.link-primary:focus,
.link-primary:hover {
  color: var(--brand-clr2) !important;
}
.link-secondary {
  color: var(--brand-clr2) !important;
}
.link-secondary:focus,
.link-secondary:hover {
  color: var(--brand-clr1) !important;
}
.btn-medium {
  font-weight: 500;
  padding: 4px 16px;
}
.btn-gray {
  color: var(--body-clr);
  background-color: #C9D5E2;
}
.btn-gray:hover,
.btn-gray:focus,
.btn-gray:focus-visible,
.btn-gray:first-child:active,
.btn-check:checked+.btn,
.btn-gray.active,
.btn-gray.show,
.btn-gray:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--body-clr);
  background-color: #C9D5E2;
}*/

.link-gray {
    color: #878e96 !important;
}

.link-gray:focus,
.link-gray:hover {
    color: var(--brand-clr1) !important;
}

.btn {
    min-width: 100px;
    padding: 8px 30px;
    font-weight: 600;
    font-size: 15px;
    color: var(--white-clr);
    border-radius: var(--radius);
    white-space: normal;
}

.btn-primary {
    background-color: var(--brand-clr1);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:first-child:active,
.btn-check:checked + .btn,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
.btn-primary:active,
:not(.btn-check) + .btn-primary.btn:active {
    color: var(--brand-clr1);
    background-color: var(--white-clr);
}

.border-primary {
    border-color: var(--brand-clr1) !important;
}

.btn-secondary {
    background-color: var(--brand-clr2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:first-child:active,
.btn-check:checked + .btn,
.btn-secondary.active,
.btn-secondary.show,
.btn-secondary:first-child:active,
.btn-secondary:active,
:not(.btn-check) + .btn-secondary.btn:active {
    color: var(--brand-clr2);
    background-color: var(--white-clr);
}

.border-secondary {
    border-color: var(--brand-clr2) !important;
}

.btn-warning {
    background-color: var(--yellow-clr);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:focus-visible,
.btn-warning:first-child:active,
.btn-check:checked + .btn,
.btn-warning.active,
.btn-warning.show,
.btn-warning:first-child:active,
.btn-warning:active,
:not(.btn-check) + .btn-warning.btn:active {
    color: var(--yellow-clr);
    background-color: var(--white-clr);
}

.btn-gray {
    color: var(--body-clr);
    background-color: #c9d5e2;
}

.btn-gray:hover,
.btn-gray:focus,
.btn-gray:focus-visible,
.btn-gray:first-child:active,
.btn-check:checked + .btn,
.btn-gray.active,
.btn-gray.show,
.btn-gray:first-child:active,
.btn-gray:active {
    color: var(--body-clr);
    background-color: var(--white-clr);
}

.border-gray {
    border-color: #c9d5e2 !important;
}

.btn:hover svg *,
.btn:focus svg *,
.btn:active svg *,
.btn.active svg *,
.btn:focus-visible svg * {
    fill: var(--brand-clr1);
}

.btn.btn-secondary:hover svg *,
.btn.btn-secondary:focus svg *,
.btn.btn-secondary:active svg *,
.btn.btn-secondary.active svg *,
.btn.btn-secondary:focus-visible svg * {
    fill: var(--brand-clr2);
}

.btn-medium {
    font-weight: 500;
    padding: 4px 16px;
}

.btn-success {
    background-color: #76c00d;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:focus-visible,
.btn-success:first-child:active,
.btn-check:checked + .btn,
.btn-success.active,
.btn-success.show,
.btn-success:first-child:active,
.btn-success:active,
.btn-success.active,
:not(.btn-check) + .btn-success.btn:active {
    color: #76c00d;
    background-color: var(--white-clr);
}

button.btn.btn-success:hover svg *,
button.btn.btn-success:active svg *,
button.btn.btn-success:focus svg *,
button.btn.btn-success.active svg *,
button.btn.btn-success:focus-visible svg path {
    fill: #76c00d;
    stroke: transparent;
}

.btn.btn-success:hover svg *,
.btn.btn-success:active svg *,
.btn.btn-success:focus svg *,
.btn.btn-success:focus-visible svg * {
    fill: transparent;
    stroke: #76c00d;
}

.border-success {
    border-color: #76c00d !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:focus-visible,
.btn-danger:first-child:active,
.btn-check:checked + .btn,
.btn-danger.active,
.btn-danger.show,
.btn-danger:first-child:active,
.btn-danger:active,
:not(.btn-check) + .btn-danger.btn:active {
    color: #d03e13;
    background-color: var(--white-clr);
}

.btn-danger {
    background-color: #d03e13;
}

.btn.btn-danger:hover svg *,
.btn.btn-danger:active svg *,
.btn.btn-danger:focus svg * {
    fill: transparent;
    stroke: #d03e13;
}

.border-danger {
    border-color: #d03e13 !important;
}

.link-secondary:hover svg path,
.link-secondary:focus svg path {
    fill: var(--brand-clr1);
}

.link-primary svg path {
    fill: var(--brand-clr1);
}

.link-primary:hover svg path,
.link-primary:focus svg path {
    fill: var(--brand-clr2);
}

svg path {
    transition: var(--transition);
}

.text-gray {
    color: #878e96 !important;
}

.rounded-20 {
    border-radius: var(--radius);
}

/* Start Popup CSS */
.modal-content {
    border-radius: var(--radius);
}

.btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 3px solid #c9d5e2;
    border-radius: 10px;
    padding: 0 !important;
    background: var(--white-clr);
    transition: var(--transition);
    opacity: 1;
}

.btn-close::before,
.btn-close::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 50%;
    height: 3px;
    background: #c9d5e2;
    border-radius: 3px;
    z-index: 1;
}

.btn-close::before {
    transform: rotate(-45deg);
}

.btn-close::after {
    transform: rotate(45deg);
}

.btn-close:hover,
.btn-close:focus {
    opacity: 1;
    border-color: var(--brand-clr1);
    background: var(--brand-clr1);
}

.btn-close:hover::before,
.btn-close:focus::before,
.btn-close:hover::after,
.btn-close:focus::after {
    background: var(--white-clr);
}

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

/* End Popup CSS */

/* Hamburger CSS */
.hamburger {
    position: relative;
    width: 22px;
    min-width: 22px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 0.125rem;
    background: var(--body-clr);
    transition: 0.4s ease;
    z-index: 1;
}

.hamburger span::before,
.hamburger span::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--body-clr);
    content: "";
    transition: 0.4s ease;
    border-radius: 0.125rem;
    z-index: 0;
}

.hamburger span::after {
    top: auto;
    bottom: 0;
}

/* AUDYA Aside CSS */
aside {
    width: 240px;
    overflow: hidden;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--brand-clr1);
}

.nav-pills .nav-link {
    border-radius: 0 20px 20px 0;
}

aside .nav-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    padding: 12px 20px;
    width: 100%;
    color: var(--body-clr);
    transition: none;
}

aside .nav-link:hover,
aside .nav-link:focus {
    color: var(--white-clr);
    background-color: var(--brand-clr1);
}

.nav-icon {
    min-width: 20px;
    margin-right: 10px;
}

aside .nav-link img {
    /* transition: var(--transition); */
    min-width: 20px;
}

aside .nav-link.active img,
aside .nav-link:hover img,
aside .nav-link:focus img {
    filter: brightness(100);
}

/* Main */
main {
    padding: 16px 32px 0 250px;
    transition: var(--transition);
}

/* Header CSS */
header {
    background: var(--brand-clr1);
    border-radius: var(--radius);
}

header form {
    width: 360px;
}

header .form-control {
    padding: 11px 50px 12px 30px;
    font-size: 14px;
}

header .form-control::placeholder {
    color: #a0a9b4;
}

header .form-control::placeholder {
    color: #a0a9b4;
}

header form .btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    transform: translateY(-50%);
    margin-right: 3px;
    border: none;
}

header form .btn:hover,
header form .btn:focus,
:not(.btn-check) + body header .btn-warning.btn:active {
    background: var(--brand-clr1);
    border: none;
}

header .dropdown-toggle:not(.user-dropdown .dropdown-toggle):after {
    display: none;
}

header .dropdown-menu {
    font-size: 12px;
    max-height: 400px;
    width: 300px;
    border-radius: 0 0 6px 6px;
    margin-top: 5px !important;
    color: var(--body-clr) !important;
}

header .dropdown-menu h3,
header .dropdown-menu p {
    font-size: 12px;
}

header .dropdown-menu p {
    color: #878e96;
}

header .dropdown-toggle {
    height: 20px;
    display: inline-block;
}

header .link-primary {
    font-size: 10px;
}

.header-wrap {
    background: transparent;
    gap: 30px;
}

.search-wrapper {
    background: var(--brand-clr1);
    border-radius: var(--radius);
}

.dropdown .form-check {
    padding-left: 2.5em;
}

.dropdown .form-check .form-check-input {
    margin-left: -2.5em;
    cursor: pointer;
}

.dropdown-toggle::after {
    border: none;
    background: url(../images/icon-dropdown.svg) no-repeat center;
    width: 14px;
    height: 8px;
    vertical-align: middle;
    margin-left: 10px;
}

.dropdown-item {
    border-bottom: 1px solid #dee6ef;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
}

.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
}

.user-dropdown .dropdown-item img {
    margin-right: 10px;
}

.dropdown-title h3 {
    color: #878e96;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: none;
    color: var(--brand-clr1);
}

header .form-select {
    font-size: 15px;
    height: auto;
    background-image: none;
    padding: 12px 30px;
    min-width: 100px;
    line-height: normal;
    border: none;
}

header .current {
    color: var(--white-clr);
}

.form-select:focus {
    box-shadow: none;
}

.nice-select {
    float: none;
    height: auto;
    line-height: 1.5;
    color: var(--body-clr);
    width: 100%;
}

.form-group .nice-select .current {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group .nice-select .option {
    padding: 10.5px 18px;
    line-height: normal;
    white-space: normal;
}

.nice-select::after {
    width: 10px;
    height: 10px;
    margin-top: -6px;
    right: 25px;
    border-bottom-color: var(--black-clr);
    border-right-color: var(--black-clr);
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background-color: var(--brand-clr1);
}

.nice-select .list:not(:hover) .option.selected.focus,
.nice-select .option:hover {
    color: var(--white-clr);
}

.nice-select .list {
    width: 100%;
}

header .nice-select::after {
    border-color: var(--white-clr);
}

.aside-top a:not(.hamburger) img {
    min-width: 150px;
}

/* Onboarding CSS */
header.style-two {
    position: static !important;
    padding: 30px;
    background: transparent;
    border-radius: 0;
}

header.style-two .logo img {
    height: auto;
}

.selectpicker {
    padding: 10.5px 24.5px 10.5px 10.5px;
    text-transform: uppercase;
    background-image: url("../images/icon-dropdown.svg");
    background-repeat: no-repeat;
    background-position: right 25px center;
    appearance: none;
}

.white-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: var(--white-clr);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.white-box-family {
    min-height: 226px !important;
}

.xl-white-box {
    max-width: 940px;
}

.xxl-white-box {
    max-width: 1024px;
}

.white-box hr {
    border-top-color: #dee6ef;
    opacity: 1;
}

.at-icon {
    font-size: 100px;
    color: #c9d5e2;
}

.steps::before {
    position: absolute;
    top: 31px;
    left: 30px;
    right: 30px;
    content: "";
    border: 2px dashed #dee6ef;
}

.steps .step {
    padding-right: 60px;
}

.steps .step:last-child {
    padding-right: 0;
}

.step-circle {
    width: 62px;
    height: 62px;
}

.step-content {
    display: none !important;
}

.active .step-content {
    display: flex !important;
    background-color: var(--brand-clr1);
}

.step-circle::before {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 22px;
    left: 21px;
    content: "";
    border: 2px solid #dee6ef;
    background-color: var(--white-clr);
    border-radius: 100%;
}

.active .step-circle::before {
    top: -5px;
    left: -5px;
    width: 72px;
    height: 72px;
}

.step b {
    color: #dee6ef;
}

.active.step b {
    color: var(--brand-clr1);
}

.mandatory-text {
    color: #a0a9b4;
}

.td-bg1 {
    background: #fab532 !important;
    font-size: 14px !important;
}

.td-bg2 {
    background: #76d49a !important;
    font-size: 14px !important;
}

.td-bg3 {
    background: #fd8b61 !important;
    font-size: 14px !important;
}

.table {
    color: #001729;
}

.table > .table-light th {
    font-size: 11px;
    color: #a3a6b4;
    border-bottom: none;
    background-color: #f5f6fa;
    white-space: nowrap;
}

.table > :not(caption) > * > * {
    padding: 14.15px 20px;
    font-size: 13px;
    white-space: nowrap;
}

.edit-btn:hover svg path {
    fill: var(--brand-clr2);
}

.bigstar-btn {
    font-weight: bold;
}

.bigstar-btn.active {
    color: var(--brand-clr1) !important;
}

.bigstar-btn svg path {
    fill: transparent !important;
}

.bigstar-btn.active svg path {
    fill: var(--brand-clr1) !important;
}

.delete-btn:hover svg path,
.star-btn:hover svg path,
.star-btn.active svg path,
.bigstar-btn.active svg path {
    fill: var(--brand-clr1);
}

.view-btn:hover svg path {
    fill: var(--yellow-clr);
}

.edit-btn svg,
.delete-btn svg,
.view-btn svg,
.star-btn svg {
    width: 18.458px;
    height: 20px;
}

/* Start Results of your search Page CSS */
.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-link {
    margin-left: -1px;
    padding: 11px 20px;
    color: #878e96;
    border-color: #c9d5e2;
    background-color: var(--white-clr);
}

.nav-tabs .nav-link:first-child {
    margin-left: 0;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--white-clr);
    background-color: var(--brand-clr1);
    border-color: var(--brand-clr1);
}

.sort-icon:hover svg path {
    fill: var(--brand-clr2);
}

.pagination .page-link {
    color: #878e96;
    font-weight: 500;
    border: none;
    padding: 5px 15px;
}

.pagination .page-item {
    position: relative;
}

.pagination .page-item + .page-item:before {
    position: absolute;
    content: "";
    background-color: #878e96;
    height: 2px;
    width: 7px;
    top: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.page-link:hover,
.page-link:focus {
    background-color: transparent;
    color: var(--brand-clr1);
    box-shadow: none;
}

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

.white-space-width {
    min-width: 180px;
}

/*10/11/2022*/
.upload-btn-wrapper {
    overflow: hidden;
    display: inline-block;
}

.upload-btn-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-btn-wrapper .btn {
    padding: 5px 10px;
}

.upload-btn-wrapper .btn:before {
    top: 0;
    left: 0;
    content: "";
}

.btn-uploader {
    padding: 20px;
    background: none;
    color: var(--body-clr);
    font-size: 15px;
    border: 1px solid #c9d5e2;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

/*15-11-2022*/
.image-item .border {
    border-color: #c9d5e2;
}

.image-item img {
    border-radius: 10px;
}

.image-item .title {
    color: #878e96;
}

.image-group {
    height: 686px;
}

.image-group table td {
    border: none;
}

.image-group .mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.recent-activities {
    height: 430px;
}

.recent-activities .list-block::before {
    position: absolute;
    top: 0;
    left: 17.5px;
    content: "";
    width: 3px;
    height: 100%;
    background-color: #c9d5e2;
}

.recent-activities .list-block:last-child:before {
    display: none;
}

.list-info {
    width: calc(100% - 37px);
}

.recent-activities.style-two .content {
    max-width: 800px;
    margin: 0 auto;
}

.recent-activities.style-two .content .left-content,
.recent-activities.style-two .content .right-content {
    float: left;
    max-width: 418.5px;
    width: 100%;
}

.recent-activities.style-two .list-block.left-content::before {
    left: auto;
    right: 17.5px;
}

.recent-activities.style-two .content .right-content {
    float: right;
}

.recent-activities.style-two {
    height: 550px;
}

.bottom-link {
    border-top: 1px solid #dee6ef;
}

/* Footer CSS */
footer {
    width: 100%;
    padding: 21px 106px 21px 30px;
    background-color: var(--body-clr);
}

footer .small {
    font-size: 12px;
}

footer a {
    color: var(--white-clr);
}

footer a:hover,
footer a:focus {
    color: var(--brand-clr1);
}

/* Start Main Wrap CSS */
.main-wrap {
    padding: 24px 0 50px;
}

.main-wrap .white-box {
    max-width: 100%;
    margin-bottom: 24px;
    padding: 24px;
}

.main-wrap .white-box .card-body a.disabled {
    background-color: #e9ecef !important;
    border-color: #c9d5e2 !important;
    color: #555 !important;
    pointer-events: none !important;
    opacity: 1 !important;
}

.main-wrap.style-two {
    padding: 57px 110px 76px;
}

.main-wrap-public {
    background-color: #fff;
    border-radius: var(--radius);
    margin-left: auto;
    margin-right: auto;
    padding: 24px 0 50px;
    width: 80%;
}

.main-wrap-public .white-box {
    max-width: 95%;
    margin-bottom: 24px;
    padding: 24px;
}

.main-wrap-public .white-box .card-body a.disabled {
    background-color: #e9ecef !important;
    border-color: #c9d5e2 !important;
    color: #555 !important;
    pointer-events: none !important;
    opacity: 1 !important;
}

.search-wrap-result {
    display: none;
    padding: 24px 0 0;
}

.search-wrap-result .white-box {
    max-width: 100%;
    padding: 24px;
}

.search-wrap-result .title-link-search {
    color: var(--brand-clr1) !important;
}

.search-wrap-result ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-wrap-result ul li {
    padding-left: 1.5rem;
    position: relative;
}

.search-wrap-result ul li::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 11px;
    height: 11px;
    content: "";
    border-radius: var(--radius);
    background-color: var(--light-gray-clr);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A0A9B4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-clr1);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-button.collapsed {
    margin-bottom: 0 !important;
    transition: var(--transition);
}

.white-box .collapsing > *:last-child,
.white-box .collapse > *:last-child {
    padding-bottom: 0 !important;
}

.invite-patient {
    min-height: 344px;
    display: flex;
    align-items: flex-end;
}

.invite-patient .invite-wrap {
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 20px 40px 20px;
}

@media screen and (max-width: 991px) {
    .invite-patient {
        justify-content: center;
    }

    .invite-patient .invite-wrap {
        align-items: center;
    }
}

.invite-patient .invite-wrap h1,
.invite-patient .invite-wrap h2 {
    font-weight: 600 !important;
    font-size: 26px !important;
    color: var(--white-clr) !important;
    background: rgba(241, 90, 36, 0.8);
    padding: 4px 8px;
}

.invite-patient .invite-wrap h1 {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.invite-patient .invite-wrap h2 {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

@media screen and (max-width: 991px) {
    .invite-patient .invite-wrap h1 {
        max-width: 90%;
    }

    .invite-patient .invite-wrap h2 {
        border-top-left-radius: 6px;
    }
}

.list:not(.nice-select .list) li::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 11px;
    height: 11px;
    content: "";
    border-radius: var(--radius);
    background-color: var(--light-gray-clr);
}

.list-icon li:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../images/list-icon1.svg) no-repeat center;
}

.list-icon-pro li.read:before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 15px;
    content: "";
    background: url(../images/icon-view-pro.svg) no-repeat center;
}

.list-icon-patient li.read:before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 15px;
    content: "";
    background: url(../images/icon-view-patient.svg) no-repeat center;
}

.list-icon-pro li.download:before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 15px;
    content: "";
    background: url(../images/icon-download-pro.svg) no-repeat center;
}

.list-icon-patient li.download:before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 15px;
    content: "";
    background: url(../images/icon-download-patient.svg) no-repeat center;
}

.recent-activities .list-block::before {
    position: absolute;
    top: 0;
    left: 17.5px;
    content: "";
    width: 3px;
    height: 100%;
    background-color: #c9d5e2;
}

.recent-activities .list-block:last-child:before {
    display: none;
}

.list-info {
    width: calc(100% - 37px);
}

/* Start My Contacts CSS */
.bg-success {
    background-color: #3fac68 !important;
}

.bg-gary {
    background-color: #c9d5e2;
}

.avatar {
    font-size: 20px;
    width: 70px;
    min-width: 70px;
    height: 70px;
    background: var(--brand-clr1);
    color: #fff;
}

.card-pro .avatar {
    background: #007ea7;
}

.avatar .badge {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--white-clr);
    top: 0;
    right: 0;
}

span[data-status=""].badge {
    display: none;
}

.favorites {
    font-size: 10px;
    color: var(--brand-clr2);
}

.favorites:hover,
.favorites:focus {
    color: var(--brand-clr2);
}

.favorites.filled svg path,
.favorites.active svg path {
    fill: var(--brand-clr2);
}

.avatar-title-patient {
    font-size: 13px;
    color: #f15a24;
}

.avatar-title-pro {
    font-size: 13px;
    color: #007ea7;
}

.contacts-list a:not(.btn):hover {
    color: var(--brand-clr2);
}

/* End My Contacts CSS */
/* Start Tagsinput Tag CSS */
.bootstrap-tagsinput {
    padding-bottom: 5.25px;
    min-height: 48.5px;
}

.bootstrap-tagsinput .tag {
    background: #c9d5e2;
    border-radius: 4px;
    padding: 2px 5px;
    color: var(--body-clr);
    font-size: 13px;
    display: inline-flex;
    flex-direction: row-reverse;
    margin-bottom: 5px;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
    margin-right: 6px;
    margin-left: 0;
}

/* End Tagsinput Tag CSS */

/* Start Grid Filter CSS */
.grid-filter > * + * {
    margin-left: 10px;
}

.grid-filter svg path {
    fill: #c9d5e2;
}

.grid-filter a.active svg path {
    fill: var(--brand-clr1);
}

.grid-filter a:hover svg path {
    fill: var(--brand-clr1);
}

.grid-filter svg g,
.grid-filter svg path,
.grid-filter svg line {
    transition: var(--transition);
}

.grid-filter a svg#btn-vignette g.circle-one {
    fill: transparent;
    stroke: #c9d5e2;
}

.grid-filter a svg#btn-vignette g.circle-two .path1 {
    fill: transparent;
}

.grid-filter a svg#btn-vignette g.circle-two .path2 {
    fill: #c9d5e2;
}

.grid-filter a.active svg#btn-vignette g.circle-one,
.grid-filter a.active svg#btn-vignette .line,
.grid-filter a:hover svg#btn-vignette g.circle-one,
.grid-filter a:hover svg#btn-vignette .line {
    fill: transparent;
    stroke: var(--brand-clr1);
}

.grid-filter a.active svg#btn-vignette g.circle-two .path1,
.grid-filter a:hover svg#btn-vignette g.circle-two .path1 {
    fill: transparent;
}

.grid-filter a.active svg#btn-vignette g.circle-two .path2,
.grid-filter a:hover svg#btn-vignette g.circle-two .path2 {
    fill: var(--brand-clr1);
}

/*15-11-2022*/
.grid-filter.style-two a.active svg path {
    fill: var(--brand-clr1);
}

.grid-filter.style-two a:hover svg path {
    fill: var(--brand-clr1);
}

/* End Grid Filter CSS */

/* Start Gray Box CSS */
.gray-box {
    max-width: 340px;
    background: #dee6ef;
    padding: 5px;
    border-radius: var(--radius);
}

.current-correspondents .list-icon {
    max-height: 280px;
}

.current-correspondents .list-icon a:hover,
.current-correspondents .list-icon a:focus {
    color: var(--brand-clr2);
}

/* End Gray Box CSS */

/* Start Article Pages CSS */
.card-wrap {
    border-radius: 20px;
}

.card-wrap-a {
    min-height: 214px;
    background-color: #ededed;
}

.object-cover {
    object-fit: cover;
    background-color: #ededed;
}

.article-detail .article-image {
    width: 50%;
    min-height: 344px;
    background-color: #ededed;
}

.article-form .bootstrap-tagsinput {
    min-height: 120px;
}

/* End Article Pages CSS */

/* End Main Wrap CSS */

/* Start mCSB_scrollTools CSS */
.mCSB_scrollTools {
    background: var(--light-blue);
    width: 14px;
    border-radius: var(--radius);
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 14px !important;
    height: 14px;
    background: var(--brand-clr2);
    margin: 0 !important;
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: var(--brand-clr2);
}

.mCSB_scrollTools .mCSB_draggerRail {
    display: none;
}

.small-scroll .mCSB_scrollTools {
    width: 8px;
}

.small-scroll .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 8px !important;
    height: 8px;
}

.small-scroll.mCSB_inside > .mCSB_container {
    margin-right: 14px;
}

/* End mCSB_scrollTools CSS */

/* Start My Devices CSS */
.device-item-wrap {
    max-width: 280px;
    width: 100%;
}

.device-item {
    max-width: 280px;
    width: 100%;
    min-height: calc(100% - 60px);
    border-color: #c9d5e2;
    border-style: solid;
    border-radius: var(--radius);
}

.device-item img {
    max-width: 48px;
}

.ear-indicate {
    width: 14px;
    height: 14px;
    background: var(--light-gray-clr);
}

.ear-indicate-xl {
    min-width: 20px;
    height: 20px;
}

.ear-indicate.left-active {
    background: var(--brand-clr2);
}

.ear-indicate.right-active {
    background: var(--brand-clr1);
}

.add-device .row [class*="col-"]:nth-child(odd) .form-label {
    min-width: 225px;
}

.add-device .row [class*="col-"]:nth-child(even) .form-label {
    min-width: 85px;
}

.form-file input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-file label {
    width: 100%;
    padding: 20px;
    background: none;
    color: var(--body-clr);
    font-size: 15px;
    border: 1px solid #c9d5e2;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.form-file .btn {
    padding: 0 10px;
}

.form-file .pip {
    display: inline-flex;
    width: 70px;
    height: 70px;
    margin: 10px 10px 0 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c9d5e2;
}

.form-file .pip .remove,
.form-file .pip .removing {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 0;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: var(--brand-clr2);
    cursor: pointer;
    z-index: 2;
}

.form-file .pip .remove:hover,
.form-file .pip .removing:hover {
    background: var(--brand-clr1);
}

.form-file .pip .remove:before,
.form-file .pip .removing:before,
.form-file .pip .remove:after,
.form-file .pip .removing:after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 10px;
    height: 2px;
    background: var(--white-clr);
    border-radius: 3px;
    z-index: 3;
}

.form-file .pip .remove:before,
.form-file .pip .removing:before {
    transform: rotate(-45deg);
}

.form-file .pip .remove:after,
.form-file .pip .removing:after {
    transform: rotate(45deg);
}

.form-file .pip .imageThumb {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.file-count {
    width: 35px;
    min-width: 35px;
    height: 35px;
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 3;
}

.upload-device-label[disabled] {
    background-color: #e9ecef !important;
    border-color: #c9d5e2;
    color: #555;
    pointer-events: none;
    opacity: 1;
}

.upload-device-label[disabled] span {
    background-color: #999 !important;
}

.add-device .bg-danger {
    background-color: var(--brand-clr1) !important;
}

.add-device .bg-info {
    background-color: var(--brand-clr2) !important;
}

.white-space-width-device {
    min-width: 120px;
}

/* End My Devices CSS */

/* Start My Health Page CSS */
.tag-form-item .bootstrap-tagsinput {
    border: none;
    box-shadow: none;
}

.tag-form-item {
    border: 1px solid #c9d5e2;
    border-radius: var(--radius);
    transition: var(--transition);
    min-height: 100px;
    padding: 20px;
}

.tag-form-item span.select2 {
    padding-right: 20px;
}

.tag-form-item span:nth-of-type(2) {
    display: none !important;
}

.tag-link-wrap {
    min-width: fit-content;
    padding-left: 20px;
    border-left: 1px solid #c9d5e2;
}

.tag-link-wrap-doc {
    border-left: 0;
    width: 25%;
}

.tag-form-wrap input[type="file"] {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    cursor: pointer;
}

.tag-form-wrap .form-control {
    cursor: pointer;
    background: url(../images/download.svg) no-repeat center right 20px;
    padding-right: 45px;
}

/* End My Health Page CSS */

/* Start Your Patient Info CSS */
.your-patient-info [class*="col-"] {
    border-right: 1px solid #a0a9b4;
}

.your-patient-info [class*="col-"]:last-child {
    border-right: none;
}

.yellow-circle {
    width: 70px;
    height: 70px;
    background-color: #fab532;
}

/* End Your Patient Info CSS */

.form-switch .form-check-input {
    width: 62px;
    height: 31px;
    border-radius: 16px;
    margin-top: 0;
    margin-left: 20px;
    background-color: #a0a9b4;
    border-color: #a0a9b4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
    background-color: #1ad598;
    border-color: #1ad598 !important;
}

.form-switch .form-check-label {
    min-width: 200px;
}

/*Start Messaging pages CSS*/
.profiles-list > ul {
    height: 600px;
}

.profiles-list .mCSB_inside > .mCSB_container {
    margin-right: 14px;
}

.profiles-list li a:hover {
    background-color: #f0f6fc;
}

.profiles-list li span {
    width: 12px;
    height: 12px;
    background-color: #343a40;
}

.profile-dropdown a:hover svg path {
    fill: var(--brand-clr2);
}

.messeging-content.bg-white {
    border-radius: 0 0 20px 20px;
}

.chat-box .gray-box {
    background-color: #eaf1fa;
    border-radius: var(--radius);
}

.chat-block {
    margin-right: 70px;
    border-radius: 0 10px 10px 10px;
}

.chat-block.right-block {
    margin-left: 70px;
    margin-right: 0;
    border-radius: 10px 0 10px 10px;
}

.chat-label {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 8px;
    background-color: #c9d5e2;
    border-radius: 4px;
}

.urgent-label {
    background-color: var(--brand-clr1);
}

.normal-label {
    background-color: #3fac68;
}

.chat-block .avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 14px;
}

.chat-content h3,
.chat-content p {
    font-size: 14px !important;
    color: #7b8793;
}

.chat-content p {
    color: #878e96;
}

.chat-block.bg-secondary .chat-content h3,
.chat-block.bg-secondary .chat-content p {
    color: var(--white-clr);
}

.write-message {
    padding-right: 62px;
}

.attach-file {
    width: 62px;
    height: 100%;
    text-indent: 99999px;
    background-image: url("../images/file-attachment-icon.svg");
    background-position: right 20px center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 0 20px 20px 0;
}

/* Start My Notes and Tasks CSS */
.my-notes.bg-white {
    border-radius: 0 0 20px 20px;
}

.note-list > ul {
    height: 600px;
}

.note-list .mCSB_inside > .mCSB_container {
    margin-right: 14px;
}

.note-list li a:hover {
    background-color: #f0f6fc;
}

.note-list li span {
    width: 12px;
    min-width: 12px;
    height: 12px;
    background-color: #c9d5e2;
}

.my-notes .gray-box {
    max-width: 100%;
    padding: 8px;
    background-color: #eaf1fa;
}

.my-notes .gray-box .bg-white {
    border-radius: var(--radius);
}

.note-header .badge {
    width: 20px;
    min-width: 20px;
    height: 20px;
}

.nice-select-two:after {
    width: 8px;
    height: 8px;
    border-color: var(--brand-clr1);
    border-width: 1px;
}

.select-watch {
    background: url(../images/icon-times.svg) no-repeat left center;
    padding-left: 30px;
}

.select-days {
    background: url(../images/icon-days.svg) no-repeat left center;
    padding-left: 30px;
}

.select-days {
    background: url(../images/icon-days.svg) no-repeat left center;
    padding-left: 30px;
}

.select-hours {
    background: url(../images/icon-hours.svg) no-repeat left center;
    padding-left: 30px;
}

.select-once {
    background: url(../images/icon-repeat.svg) no-repeat left center;
    padding-left: 30px;
}

.create-note textarea {
    min-height: 300px;
}

/* End My Notes and Tasks CSS */

/* Start Calendar CSS */
.fc .fc-toolbar-title {
    font-size: 16px !important;
    text-transform: uppercase !important;
}

.fc-prev-button,
.fc-next-button {
    width: 49px !important;
    min-width: 49px !important;
    height: 49px !important;
    padding: 10px !important;
    border-radius: 12px !important;
    background: #f9f8ff !important;
    border-color: #f9f8ff !important;
}

.fc-prev-button + .fc-next-button {
    margin-left: 10px !important;
}

.fc-icon-chevron-left:before,
.fc-icon-chevron-right:before {
    color: #809fb8 !important;
}

.fc-button-primary {
    font-weight: 600 !important;
}

.fc-button-primary:hover .fc-icon-chevron-left:before,
.fc-button-primary:hover .fc-icon-chevron-right:before,
.fc-button-primary:focus .fc-icon-chevron-left:before,
.fc-button-primary:focus .fc-icon-chevron-right:before {
    color: #fff !important;
}

.fc .fc-button-primary:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
    box-shadow: none !important;
}

.fc-prev-button:hover,
.fc-prev-button:focus,
.fc-next-button:hover,
.fc-next-button:focus,
.fc-next-button:active,
:not(.btn-check) + .fc-next-button.btn:active,
.fc-prev-button:active,
:not(.btn-check) + .fc-prev-button.btn:active {
    background: var(--brand-clr1) !important;
    border-color: var(--brand-clr1) !important;
}

.fc-prev-button:hover .bi,
.fc-prev-button:focus .bi,
.fc-next-button:hover .bi,
.fc-next-button:focus .bi,
.fc-next-button:active .bi,
:not(.btn-check) + .fc-next-button.btn:active .bi,
.fc-prev-button:active .bi,
:not(.btn-check) + .fc-prev-button.btn:active .bi {
    color: var(--white-clr) !important;
}

.fc-today-button {
    font-size: 16px !important;
    border-radius: 12px !important;
    background-color: #f9f8ff !important;
    color: #809fb8 !important;
    border-color: #f9f8ff !important;
    height: 49px !important;
    text-transform: capitalize !important;
}

.fc-today-button:hover,
.fc-today-button:focus,
:not(.btn-check) + .fc-today-button.btn:active {
    color: var(--white-clr) !important;
    background: var(--brand-clr1) !important;
    border-color: var(--brand-clr1) !important;
}

.fc-header-toolbar .fc-toolbar-chunk:last-child .fc-button-group {
    background-color: #f9f8ff !important;
    border-color: #f9f8ff !important;
    border-radius: 12px !important;
}

.fc-header-toolbar .fc-toolbar-chunk:last-child .fc-button {
    font-size: 16px !important;
    border-radius: 12px !important;
    color: #809fb8 !important;
    background-color: #f9f8ff !important;
    border-color: #f9f8ff !important;
    min-height: 49px !important;
    text-transform: capitalize !important;
    min-width: 100px !important;
    padding: 9.25px 30px !important;
    font-weight: 600 !important;
    margin-right: 2px !important;
}

.fc-header-toolbar .fc-toolbar-chunk:last-child .fc-button-active {
    background-color: var(--brand-clr1) !important;
    color: var(--white-clr) !important;
    border-color: var(--brand-clr1) !important;
}

.fc .fc-col-header-cell-cushion {
    text-transform: uppercase !important;
}

.fc-h-event {
    border-color: #5cb1cc;
    background-color: #5cb1cc !important;
}

.fc-v-event {
    border-color: #3fac68 !important;
    background-color: #3fac68 !important;
}

.fc-theme-bootstrap5 .fc-list,
.fc-theme-bootstrap5 .fc-scrollgrid,
.fc-theme-bootstrap5 td,
.fc-theme-bootstrap5 th {
    border-color: #c9d5e2 !important;
}

.fc .fc-timegrid-slot-minor {
    border: none !important;
}

.fc-timegrid-slot-label {
    border: none !important;
}

.fc-col-header-cell.fc-day .fc-scrollgrid-sync-inner {
    font-size: 10px !important;
    color: #809fb8 !important;
    background-color: #f9f8ff !important;
    padding: 11px !important;
}

.fc .fc-daygrid-day-number {
    font-weight: 700 !important;
}

.fc-daygrid-event-dot,
.fc-list-event-dot {
    border-radius: 10px !important;
    border-width: 7px !important;
    border-color: #5cb1cc !important;
}

.fc .fc-timegrid-axis-cushion,
.fc .fc-timegrid-slot-label-cushion {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #809fb8 !important;
}

.fc .fc-list-day-cushion,
.fc .fc-list-table td {
    font-size: 13px !important;
    font-weight: 500 !important;
}

.fc-daygrid-event-harness .fc-h-event,
.fc-timegrid-event-harness .fc-v-event {
    background-color: var(--brand-clr1) !important;
    border: none !important;
    cursor: pointer !important;
}

.fc .fc-list-event-dot {
    border: calc(var(--fc-list-event-dot-width) / 2) solid var(--brand-clr1) !important;
}

/* End Calendar CSS */

/* Start Google Map CSS */
.map-modal .modal-body {
    height: calc(100vh - 84px);
}

.map-modal .modal-body .card {
    font-family: "Montserrat", sans-serif !important;
}

.map-modal .gmap3 {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.map-modal .infow {
    width: 350px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.map-modal .gm-style-iw.gm-style-iw-c {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
}

.map-modal .gm-style-iw.gm-style-iw-c .gm-style-iw-d {
    overflow: hidden !important;
}

.btn-medium {
    padding: 5px 15px;
    font-size: 14px;
}

.gm-ui-hover-effect {
    width: 30px !important;
    height: 30px !important;
    border: 3px solid #c9d5e2 !important;
    border-radius: 10px;
    padding: 0 !important;
    background: var(--white-clr) !important;
    transition: var(--transition);
    opacity: 1 !important;
    right: 8px !important;
    top: 8px !important;
    display: flex !important;
}

.gm-ui-hover-effect span {
    width: 24px !important;
    height: 24px !important;
    margin: 2px !important;
    opacity: 0.3 !important;
}

.gm-ui-hover-effect:hover span {
    opacity: 1 !important;
}

/* End Google Map CSS */

/* PDF Modal CSS */
.pdf-header .page-count {
    min-width: 100px;
    padding: 3.5px 15px;
}

.pdf-header .btn {
    min-width: 30px;
    min-height: 30px;
    padding: 3.5px 5px;
    font-size: 14px;
}

/* Start Custom Select CSS */
.dropdownWrapper {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdownWrapper .badge {
    width: 13px;
    min-width: 13px;
    height: 13px;
}

.dropdownWrapper .dropdown {
    display: flex;
    align-items: center;
    padding-right: 50px;
    background-color: #fff;
}

.dropdownWrapper .dropdown::selection {
    background: transparent;
    color: var(--body-clr);
}

.dropdownWrapper .dropdown:after {
    border-bottom: 2px solid var(--black-clr);
    border-right: 2px solid var(--black-clr);
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.dropdownWrapper .dropdown.active:after {
    color: #fff;
    transform: rotate(-135deg);
    transition: 0.1s;
}

.dropdownWrapper .dropdown-itemsWrapper {
    position: absolute;
    width: 100%;
    height: 75px;
    top: calc(100% + 4px);
    padding: 0;
    opacity: 1;
    z-index: 1;
    background-color: #fff;
    overflow-y: auto;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
}

.dropdownWrapper .dropdown-itemsWrapper::-webkit-scrollbar {
    background: #fff;
    width: 8px;
    border-bottom-right-radius: 4px;
}

.dropdownWrapper .dropdown-itemsWrapper::-webkit-scrollbar-track {
    padding-left: 1px;
    border-left: 1px solid var(--brand-clr2);
    -webkit-box-shadow: none;
}

.dropdownWrapper .dropdown-itemsWrapper::-webkit-scrollbar-thumb {
    box-sizing: border-box;
    position: absolute;
    margin-left: 1px;
    background: #ccc;
    -webkit-box-shadow: none;
}

.dropdownWrapper .dropdown-itemsWrapper.inactive {
    border: 0px;
    opacity: 0;
    height: 0px;
}

.dropdownWrapper .dropdown-itemsWrapper li {
    display: flex;
    align-items: center;
    margin: 0px;
    transition: 0.1s;
    cursor: pointer;
    list-style: none;
    padding: 8px 10px;
    background: #fff;
    width: auto;
    height: auto;
    border-top: none;
}

.dropdownWrapper .dropdown-itemsWrapper li::selection {
    background: transparent;
}

.dropdownWrapper .dropdown-itemsWrapper li:hover {
    background: var(--brand-clr1);
    color: #fff;
}

.profile-dropdown .dropdownWrapper .badge {
    width: 24px;
    height: 24px;
}

.profile-dropdown .dropdownWrapper .dropdown {
    min-width: 172px;
    background-color: transparent;
}

.profile-dropdown .dropdownWrapper .dropdown:after {
    right: 5px;
}

.profile-dropdown .dropdownWrapper .dropdown-itemsWrapper {
    height: 160px;
}

/* End Custom Select CSS */

header .dropdown:not(.user-dropdown) .dropdown-menu {
    max-height: 400px;
}

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

/* MyResults CSS */
.myResults h3 {
    color: #a3a6b4;
    background-color: #f5f6fa;
}

.pic-uploader label span {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
}

/* Form */
.prioritize-expectations {
    padding: 35px 0;
}

.prioritize-expectations .row {
    align-items: flex-end;
}

.prioritize-expectations h6 {
    color: var(--brand-clr2);
}

.prioritize-expectations ul {
    padding: 30px 0 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.prioritize-expectations ul li {
    margin-right: 25px;
}

.prioritize-expectations .form-check {
    display: flex;
    flex-direction: column-reverse;
    padding-left: 0;
    align-items: center;
}

.prioritize-expectations .form-check .form-check-input {
    margin-left: 0;
}

.prioritize-expectations .form-check label {
    padding-bottom: 8px;
}

.prioritize-expectations p {
    padding-bottom: 0;
}

.prioritize-expectations .form-control {
    margin: 30px 0;
}

.prioritize-expectations2 h6 {
    color: var(--brand-clr2);
    margin-bottom: 15px;
}

.prioritize-expectations2 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    counter-reset: counter;
    display: inline-flex;
    flex-direction: column;
}

.prioritize-expectations2 ul li {
    border: 1px solid #c9d5e2;
    border-radius: 30px;
    padding: 8px 55px 8px 50px;
    margin-bottom: 10px;
    counter-increment: counter;
    position: relative;
}

.prioritize-expectations2 ul li:before {
    content: counter(counter);
    display: inline-block;
    color: white;
    background: #007ea7;
    padding: 1px 15px;
    margin-right: 16px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.benefit-assessment {
    padding: 40px 0 50px;
}

.benefit-assessment h6 {
    color: var(--brand-clr2);
    margin-bottom: 15px;
}

.benefit-assessment .nice-select {
    max-width: 320px;
    width: auto;
    margin-bottom: 20px;
}

/* Form Range */
.rating-block {
    padding-bottom: 0;
    margin-top: 0;
}

.rating-block h6 {
    color: var(--brand-clr2);
    margin-bottom: 15px;
}

.rating-block .row {
    align-items: center;
    margin-bottom: 30px;
}

.rating-block .row p {
    padding-bottom: 0;
}

.rate-option {
    display: flex;
    align-items: flex-start;
}

.rate-option .form-check {
    position: relative;
    padding: 0;
    width: 34px;
    height: 40px;
    margin-left: 4px;
    position: relative;
    z-index: 1;
}

.rate-option .form-check.bg-0,
.rate-option .form-check.bg-1,
.rate-option .form-check.bg-2,
.rate-option .form-check.bg-3 {
    background: #ff1714;
    border-color: #ff1714;
}

.rate-option .form-check.bg-4,
.rate-option .form-check.bg-5,
.rate-option .form-check.bg-6 {
    background: #f89500;
    border-color: #f89500;
}

.rate-option .form-check.bg-7 {
    background: #f4d616;
    border-color: #f4d616;
}

.rate-option .form-check.bg-8 {
    background: #f6dd00;
    border-color: #f6dd00;
}

.rate-option .form-check.bg-9 {
    background: #7bd300;
    border-color: #7bd300;
}

.rate-option .form-check.bg-10 {
    background: #71ca00;
    border-color: #71ca00;
}

.rate-option .form-check-input[type="radio"] {
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    background: transparent;
    border-color: transparent !important;
    margin-left: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border-width: 3px;
}

.rate-option .form-check-input[type="checkbox"]:checked,
.rate-option .form-check-input[type="radio"]:checked {
    border-color: #172b4d !important;
}

.rate-option .form-check .form-radio-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    z-index: 1;
    cursor: pointer;
}

/* Form */
.questionnaire-aphab h6 {
    color: var(--brand-clr2);
    margin-bottom: 15px;
}

.questionnaire-aphab ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0 0 50px;
    list-style-type: none;
    flex-wrap: wrap;
    padding-left: 50px;
}

.questionnaire-aphab ul li {
    width: 25%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.questionnaire-aphab ul li span {
    min-width: 34px;
    height: 40px;
    background: #007ea7;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.questionnaire-aphab .form-check {
    position: relative;
    width: 34px;
    height: 40px;
    padding: 0;
    margin-left: 0;
    display: inline-flex;
}

.questionnaire-aphab .form-check-input[type="radio"] {
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    background: #007ea7;
    border-color: transparent;
    margin-left: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border-width: 3px;
}

.questionnaire-aphab .form-check-input[type="checkbox"]:checked,
.questionnaire-aphab .form-check-input[type="radio"]:checked {
    border-color: #172b4d;
}

.questionnaire-aphab .form-check .form-radio-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    z-index: 1;
    cursor: pointer;
}

.questionnaire-aphab .row span {
    display: block;
    font-weight: 500;
    margin-bottom: 20px;
}

.questionnaire-aphab .row p {
    display: flex;
    align-items: flex-start;
}

.questionnaire-aphab .row p span {
    margin-right: 8px;
    min-width: 35px;
    margin-bottom: 0;
}

.questionnaire-aphab .row [class*="col-"]:nth-child(2) {
    border-right: 1px solid #c9d5e2;
}

.questionnaire-aphab .row [class*="col-"] {
    padding-bottom: 30px;
}

.recommended-equipment {
    border-top: 1px solid #c9d5e2;
    border-bottom: 1px solid #c9d5e2;
    padding: 25px 140px 0;
    margin-bottom: 50px;
}

.recommended-equipment h2 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
}

.recommended-equipment h3 {
    font-size: 16px;
    font-weight: bold;
    color: #127ea7;
    padding-bottom: 20px;
}

.recommended-equipment .form-select {
    margin-bottom: 18px;
}

.recommended-equipment .btn-secondary {
    background: #fab532;
    border: none;
    border-radius: 20px;
    height: 60px;
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    cursor: auto;
    pointer-events: none;
}

.boxes-block {
    padding: 0 0 50px;
}

.boxes-block h3 {
    font-size: 1rem;
    padding-bottom: 20px;
}

.boxes-block p {
    line-height: 15px;
    color: #127ea7;
    padding-bottom: 20px;
}

.boxes-block .border-box {
    border: 1px solid #c9d5e2;
    border-radius: 0;
    height: 380px;
}

.boxes-block .row {
    margin: 0 -27px;
}

.boxes-block [class*="col-"] {
    padding: 0 27px;
}

.wearing-time {
    padding-bottom: 30px;
    border-bottom: 1px solid #c9d5e2;
    margin-bottom: 50px;
}

.wearing-time h3 {
    font-size: 1rem;
    padding-bottom: 20px;
}

.wearing-time input.form-control {
    width: 300px;
}

.wearing-time textarea {
    margin-top: 30px;
    height: 160px;
}

/* Dashboard User Info */
.user-info {
    padding-bottom: 40px;
}

.user-info .row {
    margin: 0 -20px;
}

.user-info .row [class*="col"]:not(:last-child) {
    padding-bottom: 40px !important;
}

.user-info .row > * {
    padding: 0 20px;
}

.user-profile {
    background: var(--white-clr);
    box-shadow: 0 0 6px #dee6ef;
    height: 160px;
    width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 0 10px;
    text-align: center;
}

.user-profile:hover svg path,
.user-profile:focus svg path {
    fill: var(--brand-clr1);
}

.user-profile h1 {
    font-size: 15px;
    line-height: 16px;
}

.user-profile:hover h1 {
    color: var(--brand-clr1);
}

/* Responsive CSS */
@media screen and (min-width: 768px) {
    .end-offset-md-6 {
        margin-right: 50%;
    }
}

@media screen and (min-width: 992px) {
    /* Popup CSS */
    .btn-close {
        top: 28px;
        right: 28px;
    }

    .search-wrap .btn-close {
        display: none;
    }

    /* Popup CSS End */
    .has-nav main {
        padding: 16px 32px 0 86px;
    }

    .has-nav aside {
        width: 70px;
    }

    .has-nav .aside-top a:not(.hamburger) {
        opacity: 0;
    }

    aside {
        transition: var(--transition);
    }

    .nav-text {
        overflow: hidden;
        white-space: nowrap;
        /* transition: var(--transition); */
        width: 100%;
    }

    .has-nav aside .nav-link {
        display: inline-flex;
        width: 70px;
    }

    .has-nav .nav-text {
        width: 0;
    }

    .position-lg-absolute {
        position: absolute;
    }
}

@media screen and (max-width: 1440px) {
    .btn-medium {
        font-size: 13px;
    }
}

@media screen and (max-width: 1399px) {
    /* Start Your Patient Info CSS */
    .your-patient-info .h5,
    .your-patient-info h5 {
        font-size: 18px !important;
    }

    .fc-toolbar-chunk .btn-primary {
        padding: 5px 15px !important;
    }

    .user-profile svg {
        width: 35px;
    }
}

@media screen and (max-width: 1299px) {
    .user-info .row {
        margin: 0 -10px;
    }

    .user-info .row > * {
        padding: 0 10px;
    }

    .user-info .row [class*="col"]:not(:last-child) {
        padding-bottom: 20px !important;
    }
}

@media screen and (max-width: 1199px) {
    header form {
        width: 210px;
    }

    header .form-control {
        padding: 11px 50px 12px 20px;
    }

    /* Onboarding CSS */
    header.style-two {
        padding: 20px 30px 0;
    }

    header.style-two .logo {
        max-width: 200px;
    }

    .at-icon {
        font-size: 80px;
    }

    .steps::before {
        top: 25px;
        left: 25px;
        right: 25px;
        border-width: 1px;
    }

    .steps .step {
        padding-right: 40px;
    }

    .step-circle {
        width: 50px;
        height: 50px;
    }

    .step-circle::before {
        width: 18px;
        height: 18px;
        top: 16px;
        left: 16px;
    }

    .active .step-circle::before {
        width: 60px;
        height: 60px;
    }

    /* Start Gray Box CSS */
    .gray-box {
        max-width: 100%;
    }

    /* End Gray Box CSS */
    /* Start Your Patient Info CSS */
    .your-patient-info [class*="col-"] {
        border-right: none;
    }

    .recent-activities.style-two .content {
        max-width: 600px;
    }

    .recent-activities.style-two .content .left-content,
    .recent-activities.style-two .content .right-content {
        max-width: 319px;
    }

    /* Start Messaging pages CSS */
    .profiles-list > ul {
        height: 300px;
    }

    /* Agenda */
    .fc .fc-toolbar.fc-header-toolbar {
        flex-direction: column;
    }

    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk {
        margin-bottom: 15px;
        order: 2;
    }

    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
        order: 1;
    }

    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:last-child {
        order: 3;
        margin-bottom: 0;
    }

    .fc-header-toolbar .fc-toolbar-chunk:last-child .btn-group {
        background-color: transparent !important;
        border-color: transparent !important;
    }

    .fc-toolbar-chunk .btn-primary {
        padding: 5px 12px !important;
    }

    .fc-header-toolbar .fc-toolbar-chunk:last-child .btn,
    .fc-today-button {
        margin: 0 5px;
        min-width: 10px;
        min-height: 40px;
        font-size: 13px;
    }

    .fc-today-button {
        height: 40px;
    }

    .fc-prev-button,
    .fc-next-button {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .user-info {
        padding-bottom: 140px;
    }

    .mhb-add-document div {
        display: block !important;
    }
}

@media screen and (max-width: 991px) {
    /* Start Main CSS */
    main {
        padding: 116px 16px 0;
    }

    /* End Main CSS */
    /* Search CSS */
    .header-search {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 50px 12px;
        background: rgb(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 11;
    }

    .header-search form {
        width: 100%;
    }

    .search-wrap {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        background: var(--white-clr);
        padding: 70px 20px 20px;
        border-radius: 20px;
    }

    .search-open .header-search {
        opacity: 1;
        visibility: visible;
    }

    /* Search CSS End */
    header .form-control {
        border: 1px solid #c9d5e2 !important;
    }

    .hamburger {
        width: 30px;
        height: 20px;
    }

    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
        background: var(--white-clr);
        height: 3px;
    }

    header {
        position: fixed;
        border-radius: 0 0 10px 10px;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
    }

    header .form-select {
        padding: 0;
        min-width: 40px;
        background-color: transparent !important;
    }

    header.style-two .form-select {
        padding: 11.5px 30px;
        min-width: 100px;
        background-color: var(--brand-clr1) !important;
    }

    header.style-two .nice-select::after {
        right: 25px;
    }

    header .nice-select::after {
        right: 5px;
    }

    .form-select {
        padding-right: 30px;
    }

    .form-group .nice-select::after {
        right: 15px;
    }

    header .nice-select .option {
        padding-left: 10px;
        padding-right: 10px;
    }

    header .flex-row ul {
        padding: 0 !important;
        margin: 0 !important;
    }

    header .flex-row ul:last-child {
        padding: 0 !important;
        margin: 0 !important;
    }

    aside {
        top: 105px !important;
        width: 100%;
        background: var(--white-clr);
        padding: 20px 0;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 3 !important;
    }

    .nav-pills .nav-link {
        border-radius: 0;
    }

    .has-nav aside {
        transform: translateX(0);
    }

    aside .nav-link {
        padding: 12px 20px;
        display: flex;
    }

    header .dropdown-menu {
        margin-top: -6px !important;
    }

    /* Start Main Wrap CSS */
    /* Start Article Pages CSS */
    .share-icon img {
        width: 26px;
        height: 26px;
    }

    /* End Article Pages CSS */
    .main-wrap {
        padding-bottom: 24px;
    }

    .main-wrap-public {
        padding-bottom: 24px;
    }

    .nav-pills {
        height: calc(100vh - 125px) !important;
    }

    header .dropdown:not(.user-dropdown) .dropdown-menu {
        max-height: calc(80vh - 120px);
    }

    .tag-form-wrap .form-control {
        background-position: center right 8px;
        padding-right: 30px;
    }

    .profiles-list > ul {
        height: 190px;
    }

    .note-list > ul {
        height: 235px;
    }

    .user-info {
        padding-bottom: 60px;
        padding-top: 120px;
    }

    .user-info .avatar {
        width: 36px;
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .user-info .avatar .badge {
        width: 12px;
        min-width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .chat-block .avatar {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 13px;
    }

    .current-correspondents .list-icon {
        max-height: 200px;
    }

    .map-modal .modal-body {
        height: calc(100vh - 52px);
    }

    .map-modal .gm-style-iw.gm-style-iw-c {
        max-width: 100% !important;
    }

    .map-modal .infow {
        width: 240px;
        height: 243px;
    }

    .infow .avatar-wrap {
        padding-bottom: 13px !important;
    }

    .infow .avatar {
        font-size: 16px;
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

    .confirm-button-class {
        background-color: orange !important;
        border-color: orange !important;
    }

    .infow .avatar .badge {
        min-width: 14px;
        width: 14px;
        height: 14px;
        border-width: 2px;
    }

    .infow .card-title {
        font-size: 16px !important;
    }

    .infow .btn-medium {
        font-size: 12px;
        padding: 3px 10px;
        min-width: 10px;
    }

    /* End Main Wrap CSS */
}

@media screen and (max-width: 767px) {
    /* Onboarding CSS */
    header.style-two .logo {
        max-width: 190px;
    }

    .steps::before,
    .steps .step {
        display: none;
        padding-right: 0;
    }

    .steps .step.active {
        display: block;
        font-size: 22px !important;
    }

    header .dropdown-menu {
        margin-top: -6px !important;
    }

    /* Start Results of your search Page CSS */
    .nav-tabs {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
    }

    .nav-tabs .nav-link {
        padding: 7px 12px;
    }

    /* Start Article Pages CSS */
    .article-detail .article-image {
        width: 100%;
    }

    /* End Article Pages CSS */
    /* Start Your Patient Info CSS */
    .recent-activities.style-two .content {
        max-width: 450px;
    }

    .recent-activities.style-two .content .left-content,
    .recent-activities.style-two .content .right-content {
        max-width: 244px;
    }

    /*  Start Messaging pages CSS*/
    .chat-box .chat-send-btn {
        display: block !important;
    }

    .chat-block {
        margin-right: 0;
    }

    .chat-block.right-block {
        margin-left: 0;
    }

    .note-list > ul a b {
        font-weight: 600 !important;
    }

    /* PDF Modal CSS */
    .pdf-header .page-count {
        min-width: 80px;
        padding: 3.5px 10px;
    }

    .form-group.form-file {
        text-align: center;
    }

    .note-header .badge {
        width: 15px;
        min-width: 15px;
        height: 15px;
    }

    .create-note textarea {
        min-height: 200px;
    }

    .share-icon {
        font-size: 13px;
    }

    .share-icon svg {
        width: 20px;
        height: 20px;
    }

    .user-profile svg {
        width: 25px;
    }

    .main-wrap.style-two {
        padding: 24px 16px 50px;
    }

    .user-info {
        padding-bottom: 50px;
        padding-top: 120px;
    }

    .white-box .d-block button {
        display: block !important;
    }

    .white-box .d-block h2 {
        padding-bottom: 15px !important;
    }
}

@media screen and (max-width: 575px) {
    /* Onboarding CSS */
    header.style-two {
        padding: 12px 12px 0;
    }

    header.style-two .logo {
        max-width: 180px;
    }

    footer {
        padding: 11px 82px;
    }

    /* Start Your Patient Info CSS */
    .recent-activities.style-two .content {
        max-width: 450px;
    }

    .recent-activities.style-two .content .left-content,
    .recent-activities.style-two .content .right-content {
        max-width: 100%;
    }

    .recent-activities.style-two .list-block.left-content::before {
        left: 17.5px;
        right: auto;
    }

    /* Start Main Wrap CSS */
    .main-wrap .white-box {
        padding: 20px 16px;
    }

    .main-wrap-public .white-box {
        padding: 20px 16px;
    }

    /* End Main Wrap CSS */
    p,
    .p {
        font-size: 14px;
    }

    .btn {
        padding: 9.25px 20px;
        font-size: 14px;
    }

    .btn-medium {
        padding: 5px 15px;
        font-size: 13px;
    }

    .white-space-width {
        min-width: 150px;
    }

    #news .news-wrap .row [class*="col-"]:first-child {
        width: 25%;
    }

    #news .news-wrap .row [class*="col-"]:last-child {
        width: 75%;
    }

    #news .news-wrap .row [class*="col-"] p {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tag-link-wrap {
        margin-bottom: 0;
        padding: 10px 20px;
        border-left: none;
        border-top: 1px solid #c9d5e2;
    }

    .fc .fc-timegrid-axis-cushion,
    .fc .fc-timegrid-slot-label-cushion {
        font-size: 10px;
    }

    .fc table,
    .fc .fc-list-day-cushion,
    .fc .fc-list-table td {
        font-size: 10px;
        padding: 8px;
    }

    .fc-col-header-cell.fc-day .fc-scrollgrid-sync-inner {
        padding: 0 !important;
    }

    .fc-daygrid-event-dot,
    .fc-list-event-dot {
        border-width: 4px !important;
    }

    .select-watch,
    .select-days,
    .select-hours,
    .select-once {
        display: inline-block;
        width: auto;
    }

    .create-note textarea {
        min-height: 150px;
    }

    .form-group .nice-select .option {
        padding: 10px;
    }

    .user-info {
        padding-bottom: 40px;
        padding-top: 100px;
    }
}

@media screen and (max-width: 500px) {
    .fc-header-toolbar .fc-toolbar-chunk:last-child .fc-button {
        min-width: inherit !important;
        padding: 9.25px 14px !important;
    }
}

@media screen and (max-width: 375px) {
    header .dropdown-menu {
        width: 240px;
    }

    .messaging-dropdown .dropdown-menu {
        margin-right: -15px !important;
    }

    .fc-toolbar-chunk .btn-primary {
        padding: 5px 10px !important;
    }

    .fc-header-toolbar .fc-toolbar-chunk:last-child .btn,
    .fc-today-button {
        margin: 0 2px;
        min-width: 10px;
        min-height: 35px;
        font-size: 12px;
    }

    .fc-today-button {
        height: 35px;
    }

    .fc-prev-button,
    .fc-next-button {
        width: 35px;
        min-width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 359px) {
    .select-watch,
    .select-days,
    .select-hours,
    .select-once {
        width: 100%;
    }
}

.nice-select.open .list {
    max-height: 250px !important;
    overflow: auto;
}

.nice-select .list {
    max-height: 250px !important;
}

.active > .page-link,
.page-link.active {
    color: var(--brand-clr1) !important;
    font-weight: bold !important;
    background-color: transparent !important;
}

span[data-status="online"] {
    background-color: #3fac68 !important;
}

span[data-status="offline"] {
    background-color: black !important;
}

span[data-status="away"] {
    background-color: #fab532 !important;
}

.info-window {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 30px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}
.gm-style-iw-d {
    overflow: hidden !important;
}
.info-window strong {
    font-weight: bold;
}

.info-window .address {
    margin-top: 5px;
}

span[data-status="busy"] {
    background-color: #d03e13 !important;
}

.main-aside-menu {
    background-color: var(--body-bg);
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    transition: none;
}

.announcement_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    background-color: var(--brand-clr1);
}

.announcement_text {
    width: 100%;
    max-width: 1000px;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
}

.announcement_text a {
    color: var(--white-clr);
    text-decoration: underline;
}

.home_description_link {
    color: var(--brand-clr2);
}

.home_description_link:hover,
.home_description_link:focus {
    color: var(--brand-clr2);
    text-decoration: underline;
}
