@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 .4s;
    --radius: 20px;
    --shadow: 0 0 6px #DEE6EF;
    --orange-clr: #F15A24;
    --brand-coop-clr1: #133D64;
    --coop-radius: 30px;
}

/* 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-clr2);
}

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;
}

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

.object-cover {
    object-fit: cover;
}

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

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

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

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

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

/* AUDYA Reseted CSS */
iframe {
    display: block;
    width: 100%;
    border: none;
}

.z-index-1 {
    z-index: 1;
}

.cursor-pointer {
    cursor: pointer;
}

/* AUDYA Form CSS */
textarea.form-control {
    min-height: 124px;
    resize: none;
}

textarea.form-control.resizable {
    min-height: 90px;
    resize: vertical;
}

.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);
    text-overflow: ellipsis;
}

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

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

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

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

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

.search-icon {
    padding-left: 45px;
    background-image: url(../images/icon-search03.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;
}

.col-form-label {
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
    line-height: 1.2;
}

.alert-success span {
    color: #3FAC68;
}

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

.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;
}

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

.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.btn-primary:active {
    color: var(--brand-clr2);
    background-color: var(--white-clr);
}

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

.btn-primary-cta-two {
    color: var(--brand-clr2);
    background-color: var(--body-bg);
}

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

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

.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.btn-secondary:active {
    color: var(--brand-clr1);
    background-color: var(--white-clr);
}

.border-secondary {
    border-color: var(--brand-clr1) !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.btn-warning:active {
    color: var(--yellow-clr);
    background-color: var(--white-clr);
}

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

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

.border-orange {
    border-color: var(--orange-clr)!important;
}

.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, :not(.btn-check) + .btn.btn-gray:active {
    color: var(--body-clr);
    background-color: var(--white-clr);
}

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

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

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

.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,
.btn-green:active, .btn-green.active, :not(.btn-check) + .btn.btn-green:active {
    color: #76C00D;
    background-color: var(--white-clr);
}

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

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

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

.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, .btn-red:active, :not(.btn-check) + .btn.btn-red:active {
    color: #D03E13;
    background-color: var(--white-clr);
}

.btn-red {
    background-color: #D03E13;
}

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

#report-file-input[type='file'] {
    display: none;
}

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

.link-primary, .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;
}

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

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

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

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

.bg-gray {
    background-color: #EDF1F5;
}

.bg-info {
    background-color: #5CB1CC !important;
}

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

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

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

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

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

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

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

/* Popup CSS */
.modal-content {
    border-radius: var(--radius);
    border: none;
    box-shadow: 0 0 6px rgba(222, 230, 239, 0.16);
}

.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-clr2);
    background: var(--brand-clr2);
}

.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;
}

/* 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: #878E96;
    transition: 0.4s ease;
    z-index: 1;
}

.hamburger span::before, .hamburger span::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #878E96;
    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-clr2);
}

.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:not(.no-focus):focus {
    color: var(--white-clr);
    background-color: var(--brand-clr2);
}

aside .nav-link.no-focus:focus:not(:hover) {
    color: var(--body-clr);
    background-color: transparent;
}

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

aside .nav-link img {
    min-width: 20px;
}

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

aside .nav-link.no-focus:focus:not(:hover) img {
    filter: brightness(0);
}

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

/* Header CSS */
header {
    background: var(--brand-clr2);
    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, .searchBox 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, header form .btn:active, :not(.btn-check) + body header .btn-warning.btn:active {
    background: var(--brand-clr2);
    border: none;
}

.searchBox form .btn:hover, .searchBox form .btn:focus, .searchBox form .btn:active, :not(.btn-check) + body .searchBox .btn-primary.btn:active {
    background: var(--yellow-clr);
    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-wrap {
    background: transparent;
    gap: 30px;
}

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

.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 var();
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
}

.user-dropdown ul li:last-child a {
    border-bottom: none;
}

.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-clr2);
}

header .form-select {
    width: auto;
    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;
    width: 100%;
    line-height: 1.5;
    color: var(--body-clr);
}

.pro-country .form-group span.select2:last-of-type,
.pro-employment .form-group span.select2:last-of-type,
.pro-region .form-group span.select2:last-of-type,
.pro-speciality .form-group span.select2:last-of-type
{
    display: none !important;
}

.pro-country span.select2,
.pro-employment span.select2,
.pro-region span.select2,
.pro-speciality span.select2
{
    width: 100% !important;
}

.pro-country span.select2-selection,
.pro-employment span.select2-selection,
.pro-region span.select2-selection,
.pro-speciality span.select2-selection
{
    background: none;
    border-color: #C9D5E2;
    border-radius: var(--radius);
    color: var(--body-clr);
    font-size: 15px;
    padding: 7.5px 10px;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.pro-country .select2-container--default .select2-selection--single,
.pro-employment .select2-container--default .select2-selection--single,
.pro-region .select2-container--default .select2-selection--single,
.pro-speciality .select2-container--default .select2-selection--single
{
    height: inherit !important;
}

.pro-country .select2-container--default .select2-selection--single .select2-selection__arrow b,
.pro-employment .select2-container--default .select2-selection--single .select2-selection__arrow b,
.pro-region .select2-container--default .select2-selection--single .select2-selection__arrow b,
.pro-speciality .select2-container--default .select2-selection--single .select2-selection__arrow b
{
    border-color: inherit !important;
    border-bottom: 2px solid #999 !important;
    border-bottom-color: var(--black-clr) !important;
    border-right: 2px solid #999 !important;
    border-right-color: var(--black-clr) !important;
    border-style: none;
    content: '' !important;
    display: block !important;
    height: 10px !important;
    margin-left: -20px !important;
    margin-top: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    right: 25px !important;
    top: 50% !important;
    transform: rotate(45deg) !important;
    transform-origin: 66% 66% !important;
    transition: all .15s ease-in-out !important;
    width: 10px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--brand-clr2) !important;
    color: #fff !important;
}

.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-clr2);
}

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

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

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

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

/* Onboarding pro 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);
}

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

.white-box hr {
    border-top-color: var(--light-gray-clr);
    opacity: 1;
}

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

.steps:not(.no-before):before {
    position: absolute;
    top: 31px;
    left: 30px;
    right: 30px;
    content: '';
    border: 2px dashed var(--light-gray-clr);
}

.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-clr2);
}

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

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

.step b {
    color: var(--light-gray-clr);
}

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

.mandatory-text {
    color: #A0A9B4;
}

.form-check-input[type="checkbox"], .form-check-input[type="radio"] {
    width: 20px;
    height: 20px;
    content: '';
    border-radius: 6px;
    border-color: #C9D5E2;
}

.form-check-input[type="checkbox"]:checked, .form-check-input[type="radio"]:checked {
    background-color: var(--brand-clr2);
    border-color: var(--brand-clr2);
}

.form-check-input[type="checkbox"]:focus, .form-check-input[type="radio"]:focus {
    box-shadow: none;
}

.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;
}

td.fw-semibold[class*="td-"] {
    font-size: 14px !important;
}

.td-bg1 {
    background: #FAB532 !important;
}

.td-bg2 {
    background: #76D49A !important;
}

.td-bg3 {
    background: #FD8B61 !important;
}

.td-bg4 {
    background: #FF4300 !important;
}

.edit-btn:hover svg path, .download-btn:hover svg path, .chevron-up:hover svg path, .chevron-down:hover svg path {
    fill: var(--brand-clr2);
}

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

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

.star-btn.active svg path {
    fill: var(--brand-clr2);
}

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

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

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

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

/* 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;
    height: calc(100% - 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;
}

.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-clr2) !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 .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(0, 126, 167, 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;
    top: 2px;
    left: 0;
    width: 18px;
    height: 15px;
    content: '';
    background: url(../images/icon-view.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;
}

.iconography-items [class*="col-"] {
    width: 20%;
    padding-bottom: 24px;
}

.iconography-items .icon {
    width: 80px;
    height: 80px;
}

.links-block {
    border-radius: var(--radius);
}

.links-block .text-white:hover {
    color: var(--yellow-clr) !important;
}

.links-block .text-white svg path {
    transition: var(--transition);
}

.links-block .text-white:hover svg path {
    fill: var(--yellow-clr);
}

.links-block a svg {
    width: 35px;
    height: 35px;
}

.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;
}

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

.nav-tabs .nav-link {
    margin-left: -1px;
    padding: 10px 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-clr2);
    border-color: var(--brand-clr2);
}

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

/* Pagination CSS */
.pagination .page-link {
    color: #878E96;
    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-clr2);
    box-shadow: none;
}

/* End Results of your search CSS */

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

.bg-danger {
    background-color: #D03E13 !important;
}

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

.avatar,
.avatar-patient,
.avatar-pro {
    font-size: 20px;
    width: 70px;
    min-width: 70px;
    height: 70px;
    background: var(--brand-clr1);
}

.avatar-patient {
    background: var(--brand-clr1);
}

.avatar-pro {
    background: var(--brand-clr2);
}

.card-patient .avatar {
    background: #F15A24;
}

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

.avatar .badge,
.avatar-patient .badge,
.avatar-pro .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 {
    color: var(--brand-clr1);
}

.favorites.filled svg path, .favorites.active svg path {
    fill: var(--brand-clr2);
}
.avatar-wrap .avatar-title {
        font-size: 16px !important;
}
.avatar-title {
    font-size: 13px;
    color: #007EA7;
}

.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 g, .grid-filter svg path, .grid-filter svg line {
    transition: var(--transition);
}

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

.grid-filter a.active svg path {
    fill: #007EA7;
}

.grid-filter a:hover svg path {
    fill: #007EA7;
}

.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-clr2);
}

.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-clr2);
}

/* 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: 250px;
}

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

.current-correspondents .list-icon li::before {
    top: 1px;
    width: 20px;
    height: 20px;
    background: url(../images/list-icon1.svg) no-repeat center;
}

.gray-box.style-two {
    max-width: 500px;
    background-color: #F9F8FF;
}

.gray-box .border-top {
    border-top-color: #809FB8 !important;
}

/* End Gray Box 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 Your Patient Info CSS */
.your-patient-info [class*="col-"] {
    border-right: 1px solid #A0A9B4;
}

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

.your-patient-info .btn-blue-underline {
    color: var(--brand-clr2);
}

.your-patient-info .btn-blue-underline:hover {
    text-decoration: underline;
}

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

.patient-list-tab ul li .patient-pic {
    width: 36px;
    min-width: 36px;
    height: 36px;
}

.patient-list-tab .list-group.rounded-bottom {
    border-radius: 0 0 20px 20px !important;
}

.patient-list-tab .list-group-item:hover {
    background-color: #F0F6FC;
}

.patient-list-tab li > a:hover, .patient-list-tab li > a:focus {
    color: var(--body-clr);
}

.patient-list-tab .list-group-item.disabled a {
    color: #878E96;
}

nav.style-two .nav-tabs .nav-link {
    margin: 0 5px -1px 0;
    border-radius: 6px 6px 0 0 !important;
}

.steps-container.style-two .steps .step {
    padding: 0 10px;
    width: 180px;
}

.steps-container.style-two.full-width {
    overflow-x: auto;
    width: 100%;
    padding-top: 10px;
}

.steps-container.style-two.full-width .steps .step {
    width: 200px;
}

.steps-container.style-two .steps::before {
    left: 105px;
    right: 105px;
}

.steps-container.style-two .steps.steps-more-before::before {
    left: 0;
}

.steps-container.style-two .steps.steps-more-after::before {
    right: 0;
}

.steps-container.style-two .step-content {
    display: flex !important;
    background-color: var(--yellow-clr);
}

.steps-container.style-two .step-circle::before {
    top: -5px;
    left: -5px;
    width: 72px;
    height: 72px;
}

.steps-container.style-two .step b {
    color: var(--yellow-clr);
}

.steps-container.style-two .step.completed .step-content {
    background-color: #3FAC68;
}

.steps-container.style-two .step.completed b {
    color: #3FAC68;
}

.btn:disabled {
    background-color: #e9ecef;
    border: 1px solid #ced4da !important;
    color: #555;
    font-size: 15px;
    font-weight: 400;
    opacity: 1;
    pointer-events: none;
}

.btn-down-arrow {
    width: 13px;
    height: 13px;
    border-left: 2px solid var(--brand-clr2);
    border-bottom: 2px solid var(--brand-clr2);
    transform: rotate(-45deg);
}

.step-list {
    opacity: 0;
    height: 0;
    overflow: hidden;
    font-size: 13px;
    transition: var(--transition);
}

.step-list.active {
    height: auto;
    opacity: 1;
    overflow: visible;
}

.step-list ul li.disabled {
    color: #878E96;
    pointer-events: none;
}

.list:not(.nice-select .list) li.completed:before {
    background-color: #3FAC68;
}

.list:not(.nice-select .list) li.half-complete:before {
    background-color: var(--yellow-clr);
}

/* End Your Patient Info CSS */

.parcours-patient-box-small .patient-journey {
    height: 100%;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.parcours-patient-box-small .patient-journey .steps-container {
    width: 100%;
}

.parcours-patient-box:hover {
    cursor: pointer;
    background: rgba(0, 136, 179, 0.05);
}

/* 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 .imageThumb {
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.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);
}

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

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

.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 */

/* Small Container CSS */
.small-container {
    max-width: 770px;
}

/* 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);
}

.tab-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: .5rem;
    right: .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-primary .chat-content h3, .chat-block.bg-primary .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-clr2) !important;
    border-color: var(--brand-clr2) !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-clr2) !important;
    border-color: var(--brand-clr2) !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-clr2) !important;
    color: var(--white-clr) !important;
    border-color: var(--brand-clr2) !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-clr2) !important;
    border: none !important;
    cursor: pointer !important;
}

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

/* End Calendar CSS */

/* Start Alerts Page CSS */
.recent-alerts h3, .recent-alerts {
    font-size: 14px;
}

.recent-alerts .date, .recent-alerts .time {
    font-size: 12px;
}

/* End Alerts Page 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 */

/* Border Box CSS */
.border-box {
    height: 200px;
    border-radius: var(--radius);
}

.border-box .form-group:hover {
    background-color: #eaf1fa;
}

.border-box .form-group input {
    margin-top: 2px;
}

/* Start Subscription Page CSS */
.bill-item .badge {
    width: 50px;
    min-width: 50px;
    height: 50px;
    top: 3px;
    right: 3px;
}

.form-check-input[type="radio"]:checked ~ label.border-gray {
    border-color: #007EA7 !important;
}

.bill-item, .plan-item {
    cursor: pointer;
}

.choose-plan {
    pointer-events: none;
}

.choose-plan.active {
    pointer-events: all;
    opacity: 1;
}

.choose-plan:not(.active) {
    color: #A0A9B4;
}

.choose-plan:not(.active) .btn {
    background-color: #C9D5E2 !important;
    border-color: #C9D5E2 !important;
}

.form-step .badge {
    width: 48px;
    min-width: 48px;
    height: 48px;
}

.form-step .form-check-input[type="radio"] {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
}

.form-step .form-check-input:checked[type="radio"] {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3e%3ccircle cx='11' cy='11' r='11' fill='%23007EA7'/%3e%3c/svg%3e");
    background-size: 22px;
}

.mw-150 {
    min-width: 120px;
}

.card-icon {
    padding-left: 55px;
    background-image: url(../images/card-icon.svg);
    background-position: left 21px center;
    background-repeat: no-repeat;
}

.card-detail-box .form-group:first-child {
    width: calc(100% - 200px);
}

.card-detail-box .form-group:nth-child(2), .card-detail-box .form-group:nth-child(3) {
    width: 100px;
}

/* End Subscription Page CSS */
.confirm-button-class {
    background-color: orange !important;
    border-color: orange !important;
}

/* 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;
    max-height: 120px;
    overflow-y: auto;
}

/* End Article Pages CSS */

/* 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;
}

.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 .15s ease-in-out;
    transition: all .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, .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;
    pointer-events: none;
}

.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-clr2);
    color: #fff;
}

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

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

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

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

/* End Custom Select 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;
}

.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 */

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

/* Start Forms */
.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;
}

.recommended-equipment .btn-secondary::placeholder {
    color: #000000;
}

.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;
}

/* End Forms */

/* Accordion CSS */
.accordion-flush .accordion-item:last-child {
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-flush .accordion-button, .accordion-flush .accordion-button:not(.collapsed) {
    color: var(--body-clr);
    background-color: transparent;
    box-shadow: none;
}

.accordion-flush .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-flush .accordion-button::before, .accordion-flush .accordion-button::after {
    position: absolute;
    top: 24px;
    right: 0;
    width: 15px;
    height: 3px;
    content: '';
    background-color: #172B4D;
    background-image: none !important;
}

.accordion-flush .accordion-button::after {
    top: 18px;
    right: 6px;
    width: 3px;
    height: 15px;
}

.accordion-flush .accordion-button:not(.collapsed)::after {
    opacity: 0;
    transform: none;
}

.result-lists td span.text-primary {
    min-width: 20px;
    line-height: 20px;
}

.result-lists .table > .table-light th {
    font-size: 11px;
}

.result-lists .table > :not(caption) > * > * {
    font-size: 14px;
}

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

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

.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-hours {
    background: url(../images/icon-hours.svg) no-repeat left center;
    padding-left: 30px;
}

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

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

/* 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:not(.no-focus):hover svg path,
.user-profile:not(.no-focus):focus svg path {
    fill: var(--brand-clr2);
}

.user-profile.no-focus:hover svg path,
.user-profile.no-focus:focus svg path {
    stroke: var(--brand-clr2);
}

.user-profile.no-focus:focus:not(:hover) svg path {
    stroke: var(--body-clr);
}

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

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


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

@media screen and (min-width: 992px) {
    .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;
        width: 100%;
    }

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

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

    /* Start Popup CSS */
    .btn-close {
        top: 28px;
        right: 28px
    }

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

    /* End Popup CSS */
}

@media screen and (min-width: 1920px) {
    .steps-container.style-two .steps.w-100 {
        width: 750px !important;
    }
}

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

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

@media screen and (max-width: 1365px) {
    .iconography-items [class*="col-"] {
        width: 25%;
    }
}

@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;
    }

    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 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;
    }

    .steps-container.style-two .step-circle::before {
        width: 60px;
        height: 60px;
    }

    #icon-calling, #icon-e-mail {
        width: 50px;
    }

    .iconography-items .icon {
        width: 55px;
        height: 55px;
    }

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

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

    /* End Gray Box CSS */
    /* Start Subscription Page CSS */
    .bill-item .badge {
        width: 38px;
        min-width: 38px;
        height: 38px;
        top: 2px;
        right: 2px;
        font-size: 12px !important;
    }

    .form-step .form-check-input[type="radio"] {
        right: 8px;
        bottom: 8px;
        width: 25px;
        height: 25px;
    }

    .form-step .form-check-input:checked[type="radio"] {
        background-size: 17px;
    }

    /* 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;
    }

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

@media screen and (max-width: 991px) {
    .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 .btn-orange {
        position: absolute;
        bottom: 6px;
        right: 150px;
        padding: 8px 15px;
    }

    header form {
        width: 200px;
    }

    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: #007EA7 !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;
    }

    main {
        padding: 116px 16px 0 16px;
    }

    .main-wrap {
        padding-bottom: 48px;
    }

    /* Start Your Patient Info CSS */
    .steps-container.style-two .steps::before, .steps-container.style-two .steps .step {
        display: block !important;
    }

    #icon-calling, #icon-e-mail {
        width: 40px;
    }

    .iconography-items .icon {
        width: 80px;
        height: 80px;
    }

    /* End Your Patient Info CSS */
    /* Start Article Pages CSS */
    .share-icon img {
        width: 26px;
        height: 26px;
    }

    /* End Article Pages CSS */
    .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;
    }

    .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;
    }

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

@media screen and (max-width: 767px) {
    /* Header CSS */
    header .btn-orange {
        bottom: 9px;
        right: 150px;
        font-size: 14px;
    }

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

    /* 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;
    }

    /* Main Wrap CSS */
    .iconography-items [class*="col-"] {
        width: 25%;
    }

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

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

    /* 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;
    }

    .gray-box.style-two .border-end {
        border-right: none !important;
    }

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

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

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

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

    /* End Article Pages CSS */
    .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;
    }

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

    .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;
    }

    .recommended-equipment {
        padding: 0;
    }
}

@media screen and (max-width: 575px) {

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

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

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

    .white-box {
        padding: 25px;
    }

    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;
    }

    .steps-container.style-two .steps .step {
        width: 100%;
    }

    .steps-container.style-two .steps::before {
        display: none !important;
    }

    .card-detail-box .form-group:first-child, .card-detail-box .form-group:nth-child(2), .card-detail-box .form-group:nth-child(3) {
        width: 100%;
    }

    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: 479px) {
    /* Main Wrap CSS */
    .iconography-items [class*="col-"] {
        width: 33.3333%;
    }

    .iconography-items .icon {
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 375px) {
    /* Header CSS */
    header .btn-orange {
        bottom: 12px;
        right: 150px;
        padding: 5px 12px;
        font-size: 13px;
    }

    header .user-dropdown .dropdown-menu {
        width: 232px;
    }

    header .dropdown-menu {
        width: 240px;
    }

    /* Main Wrap CSS */
    .iconography-items .icon {
        width: 62px;
        height: 62px;
    }
}

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

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

.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;
}

.active > .page-link, .page-link.active {
    color: var(--brand-clr2) !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;
}

span[data-status='busy'] {
    background-color: #D03E13;
!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;
}

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

.nice-select .list {
    max-height: 250px !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-clr2);
}

.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;
}

/* Device modal footer */
.device-modal-footer {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.device-modal-footer .banner {
    display: flex;
    height: 80px;
    width: 60%;
    justify-content: center;
    align-items: center;
    background-color: var(--brand-coop-clr1);
    color: var(--white-clr);
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: var(--coop-radius);
}

.device-modal-footer .logo {
    max-width: 100px;
    max-height: 100px;
    padding: 1rem;
    object-fit: cover;
    margin-left: 5rem; /* To make sure the logos are centered */
}

.device-modal-footer .logo-coop {
    max-width: 200px;
    max-height: 70px;
    padding: 1rem;
    object-fit: cover;
}

.device-modal-footer .icon-coop {
    max-width: 50px;
    max-height: 50px;
    padding: 1rem;
    object-fit: cover;
}


/* Ear Device details */
.ear-device-details {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0.5rem;
  }


.ear-device-details .device-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ear-device-details .device-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #007EA7;
    border-radius: var(--radius);
    padding: 20px;
    max-width: 350px;
    margin-left: 2rem;
    margin-right: 2rem;
}

.ear-device-details img {
    max-width: 40px;
}

/* Device navigation */
.device-modal-navigation {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 1rem;
}

.device-modal-navigation-item {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
}

/* Add device conformity */
.devices-modal-conformity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: auto;
}

.devices-modal-conformity-declaration {
    display: flex;
    flex-direction: column;
}

.devices-modal-conformity-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.devices-modal-conformity-agreement {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 10px;
}

.anchor-pointer {
    cursor: pointer;
}

.devicecard:hover {
    cursor: pointer;
    background: rgba(0, 136, 179, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
