@font-face {
    font-family: sfproRegular;
    src: url(../fonts/SF_Pro_Text_Regular.ttf);
}

@font-face {
    font-family: sfproMedium;
    src: url(../fonts/SF_Pro_Text_Medium.ttf);
}

@font-face {
    font-family: sfproSemibold;
    src: url(../fonts/SF_Pro_Text_Semibold.ttf);
}


/* =========common css include here====== */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: sfproRegular;
    background-color: #F5F5F5;
}

.content-wrap {
    padding: 85px 10px 10px 290px;
}

.flex_1 {
    flex: 1;
}

.cmn-card {
    background-color: #fff;
    box-shadow: 0 3px 12px rgba(0 0 0 / 4%);
    border-radius: 20px;
    padding: 20px;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cmn-heading {
    font-size: 21px;
    font-family: sfproSemibold;
    margin: 0;
    color: #1D1D1D;
    margin-bottom: 20px;
    position: relative;
}

.card-view-all {
    margin-bottom: 20px;
    color: #0F89D1;
}

.card-add-new {
    width: 104px;
    height: 40px;
    background-color: #0F89D1;
    color: #fff !important;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.backbtn {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bdge {
    background-color: #FFD9D9;
    font-size: 12px;
    color: #D23C3C;
    border-radius: 20px;
    min-height: 23px;
    min-width: 23px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
    padding: 0 7px;
}

.fw-400 {
    font-family: sfproRegular;
}

.fw-500 {
    font-family: sfproMedium;
}

.fw-600 {
    font-family: sfproSemibold;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ps-20 {
    padding-left: 20px;
}

.pe-20 {
    padding-right: 20px;
}

.px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.cmn-scroll {
    height: calc(100vh - 190px);
    overflow: hidden;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}


/* Track */

 ::-webkit-scrollbar-track {
    box-shadow: inset 0px 0px 30px #DBEFFB;
    border-radius: 10px;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #BBDFF4;
    border-radius: 10px;
    background-clip: padding-box;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #BBDFF4;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
}

.cmn-input-outer {
    position: relative;
    margin-bottom: 20px;
}

.cmn-input-outer img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
}

.cmn-input {
    border-radius: 15px;
    background-color: #EBEBEB;
    height: 46px;
    font-size: 15px;
    color: #6d6a6a;
    line-height: 1;
    padding: 0 16px;
    box-shadow: none !important;
    border: none;
    font-family: sfproRegular;
}

.cmn-input:focus {
    background-color: #E1F1FA;
}

.theme-btn {
    background-color: #0F89D1;
    border-radius: 15px;
    height: 52px;
    font-size: 18px;
    font-family: sfproMedium;
    color: #fff !important;
}


/* ==============Top nav css include here=============== */

.top-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 280px);
    background-color: #0F89D1;
    height: 60px;
    padding: 0 20px;
    z-index: 9;
}

.top-nav h2 {
    font-size: 18px;
    font-family: sfproSemibold;
    margin: 0;
    color: #fff;
}

.top-nav h3 {
    font-size: 12px;
    font-family: sfproSemibold;
    margin: 0;
    color: #fff;
}

.top-nav p {
    font-size: 9px;
    font-family: sfproRegular;
    margin: 0;
    color: #fff;
}

.top-nav .img-wrap {
    height: 37px;
    width: 37px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255 255 255 / 16%);
    margin-right: 8px;
}


/* ==============Top nav css end here=============== */


/* ================Side bar css include here============ */

.side-bar {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 280px;
    background-color: #DBEFFB;
    box-shadow: 3px 0 8px rgb(0 0 0 / 8%);
    overflow-y: auto;
    z-index: 8;
}

.side-bar .brand-wrap {
    padding: 60px 0 35px 0;
    text-align: center;
}

.side-bar .side-nav {
    padding: 15px;
}

.side-bar .side-nav .menu-item a {
    font-size: 17px;
    color: #848484;
    font-family: sfproRegular;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 11px;
    padding: 18px 10px;
    line-height: 1;
    border-radius: 10px;
    transition: 0.3s all;
}

.side-bar .side-nav .menu-item .icon-wrap {
    height: 20px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
}

.side-bar .side-nav .menu-item.active a,
.side-bar .side-nav .menu-item a:hover {
    background-color: #BBDFF4;
    color: #0F89D1;
    font-family: sfproMedium;
}

.side-bar .side-nav .menu-item.logout.active a,
.side-bar .side-nav .menu-item.logout a:hover {
    background-color: #DBCCD6;
    color: #DE0D0D;
}

.side-bar .side-nav .menu-item.logout a {
    color: #DE0D0D;
}

.side-bar .side-nav .menu-item svg path {
    fill: #848484
}

.side-bar .side-nav .menu-item a:hover svg path,
.side-bar .side-nav .menu-item.active a svg path {
    fill: #0F89D1;
}

.side-bar .side-nav .menu-item.logout a:hover svg path,
.side-bar .side-nav .menu-item.logout svg path {
    fill: #DE0D0D;
}


/* ================Side bar css end here============ */


/* =============dashboard css include here============= */


/* ===============meetings listing include here============== */

.meetings-list .meeting-item {
    padding: 15px 18px 15px 15px;
    border-radius: 20px;
    background-color: #F9F9F9;
    overflow: hidden;
    margin-bottom: 20px;
}

.meetings-list .meeting-item:last-child {
    margin-bottom: 0;
}

.meetings-list .meeting-item .img-wrap {
    width: 110px;
    height: 91px;
    border-radius: 14px;
    background-color: #E2E2E2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.meetings-list .meeting-item .img-status-wrap .img-wrap {
    margin-right: 0;
}

.meetings-list .meeting-item .img-status-wrap {
    position: relative;
    margin-right: 15px;
    width: 110px;
    height: 91px;
}

.meetings-list .meeting-item .img-status-wrap .status {
    height: 12px;
    width: 12px;
    background-color: #0F89D1;
    border-radius: 50%;
    border: 1.5px solid #eeeeee;
    overflow: hidden;
    position: absolute;
    bottom: -3px;
    right: -3px;
}

.meetings-list .meeting-item .img-status-wrap .status.red {
    background-color: #F30404;
}

.meetings-list .meeting-item .img-status-wrap .status.yellow {
    background-color: #F8D525;
}

.meetings-list .meeting-item .content-sec {
    flex: 1;
}

.meetings-list .meeting-item .content-sec p {
    width: 75%;
    color: #878787;
    line-height: 19px;
}

.meetings-list .meeting-item .content-sec h3 {
    margin-bottom: 9px;
    color: #1D1D1D;
}

.meetings-list .meeting-item .content-sec h3 a {
    color: #1D1D1D !important;
    text-decoration: none;
}

.meetings-list .meeting-item .content-sec h3 .time {
    font-size: 13px;
    color: #ABA5A5;
}


/* ===============meetings listing css end here============== */


/* ===================Calls history Css include here================== */

.meetings .select-date {
    width: 140px;
    height: 37px;
    min-height: auto;
    font-size: 13px;
    line-height: 1;
    border: none;
    margin: 0;
    background-color: #F1F1F1;
    border-radius: 8px;
    padding: 0 10px;
    margin-bottom: 20px;
    color: #AFAFAF;
}

.meetings .select-date.placeholderclass::before {
    width: 64%;
    content: attr(placeholder);
    white-space: nowrap;
}

.meetings .select-date.placeholderclass:hover::before {
    width: 0%;
    content: "";
}


/* ================Calls History css end here============= */


/* =================My profile css include here================= */

.profile .profile-content {
    max-width: 380px;
    margin: auto;
}

.profile .upload-main {
    height: 195px;
    width: 195px;
    margin: auto;
    position: relative;
    margin-bottom: 40px;
}

.profile .upload-main .img-wrap {
    height: 195px;
    width: 195px;
    border-radius: 50%;
    overflow: hidden;
}

.profile .upload-main .upload-btn {
    position: absolute;
    bottom: 13px;
    right: 6px;
}

.profile .upload-main .upload-inner {
    height: 38px;
    width: 38px;
    position: relative;
    border-radius: 50%;
    background-color: #CAE6F6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile .upload-main input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}

.profile .theme-btn {
    margin-top: 20px;
    margin-bottom: 15px;
}


/* =================profile css end here============= */


/* ================patient detail css include here================ */

.meetings-list.patient .meeting-item {
    padding: 10px;
    border-radius: 0px;
    background-color: transparent;
    margin-bottom: 20px;
}

.time-slots {
    max-width: 360px;
    margin: auto;
}

.time-slots h4 {
    margin-bottom: 14px;
    color: #202020;
}

.time-slots h5 {
    background-color: #F6F8F9;
    border-radius: 12px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #1D1D1D;
}

.time-slots h5:last-of-type {
    margin-bottom: 40px;
}

.time-slots h5 .status.connected {
    color: #0F89D1;
    display: flex;
    align-items: center;
}

.time-slots h5 .status img {
    margin-right: 7px;
}

.time-slots h5 .status.marked {
    color: #F03800;
    text-decoration: underline;
}

.time-slots .contact {
    background-color: #FFECEC;
    border-radius: 13px;
    width: fit-content;
    margin: auto;
    padding: 7px 20px 7px 7px;
    align-items: center;
}

.time-slots .contact .icon-sec {
    height: 39px;
    width: 39px;
    background-color: #F03800;
    border-radius: 8px;
    margin-right: 12px;
}

.time-slots .contact p {
    color: #202020;
    margin-bottom: 6px;
    line-height: 1;
}

.time-slots .contact h6 {
    color: #EE5F33;
    line-height: 1;
}


/* ==============common table css include here=============== */

.cmn-table th {
    font-size: 16px;
    color: #727272;
    font-family: sfproMedium;
    white-space: nowrap;
    border-bottom: 1px solid #E9E9E9 !important;
    font-weight: 500;
}

.cmn-table td {
    font-size: 16px;
    color: #888888;
    font-family: sfproRegular;
    white-space: nowrap;
    border-bottom: 1px solid #E9E9E9;
}

.cmn-table td span.timetxt {
    display: block;
    color: #202020;
}

.cmn-table .table {
    margin-bottom: 0;
}

.cmn-table .table tr:last-child td {
    padding-bottom: 0;
    border-bottom: none;
}

.cmn-table td .img-wrap {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.cmn-table td .img-status {
    position: relative;
}

.cmn-table td .img-status .status {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: absolute;
    bottom: 3px;
    right: 0px;
    border: 1.5px solid #fff;
}

.cmn-table td .img-status .status.green {
    background-color: #149500;
}

.yellow {
    background-color: #F8D525;
}

.red {
    background-color: #F30404;
}

.dropdown .btn {
    background-color: #E7E7E7;
    border-radius: 10px;
    height: 30px;
    width: 30px;
    padding: 0;
    outline: none !important;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmn-table .dropdown {
    position: static;
}

.cmn-table ul.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 8%);
    padding: 0;
    overflow: hidden;
}


/* .cmn-table .table tr th:first-child, .cmn-table .table tr td:first-child{
    padding-left: 20px;
}
.cmn-table .table tr th:last-child, .cmn-table .table tr td:last-child{
    padding-left: 20px;
} */

.cmn-table ul.dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 10px 15px;
    color: #585858;
    font-family: sfproMedium;
    border-bottom: 1px solid #F0F0F0;
}

.cmn-table ul.dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.cmn-table ul.dropdown-menu .dropdown-item.delete {
    color: #DE0D0D;
}

.cmn-table .dropdown-item.active,
.cmn-table .dropdown-item:active {
    background-color: #e9ecef;
}


/* ======================common profile card css include here=================== */

.cmn-profile .top-sec {
    height: 194px;
    width: 194px;
    border-radius: 50%;
    overflow: hidden;
    margin: 15px auto 25px auto;
    box-shadow: 0 3px 12px rgb(0 0 0 / 4%);
}

.cmn-profile .cmn-heading {
    margin-bottom: 30px;
}

.cmn-profile .item-sec {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cmn-profile .item-sec:last-of-type {
    margin-bottom: 40px;
}

.cmn-profile .item-sec .img-wrap {
    height: 36px;
    width: 36px;
    box-shadow: 0 3px 6px rgba(0 0 0 / 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
}

.cmn-profile .item-sec .text {
    flex: 1;
}

.cmn-profile .item-sec p {
    color: #888888;
    margin: 0 0 5px 0;
}

.cmn-profile .item-sec h4 {
    color: #212121;
    margin: 0;
    white-space: normal;
    word-break: break-word;
}

.cmn-profile .theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


/* ============Care givers listing include here=================== */

.givers-list.all.cmn-scroll {
    height: calc(100vh - 205px);
}


/* ====================Common tabs css include here================= */

.cmn-tabs {
    border-bottom: 2px solid #E8E8E8;
}

.cmn-tabs .nav-tabs .nav-link {
    border: none;
    background: transparent;
    font-size: 20px;
    color: #B8B8B8;
    padding: 15px 35px;
    font-family: sfproRegular;
    position: relative;
}

.cmn-tabs .nav-tabs .nav-item.show .nav-link,
.cmn-tabs .nav-tabs .nav-link.active {
    color: #0F89D1;
    position: relative;
    padding: 15px 30px;
    font-family: sfproSemibold;
}

.cmn-tabs .nav-tabs .nav-item.show .nav-link::after,
.cmn-tabs .nav-tabs .nav-link.active::after {
    content: '';
    height: 4px;
    bottom: -1px;
    left: 0;
    right: 0;
    background-color: #0F89D1;
    position: absolute;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


/* ================Calls management css include here=============== */

.givers-list.calls.cmn-scroll {
    height: calc(100vh - 225px);
}


/* ================caregiver details css include here=============== */

.meetings-list.care-giver .meeting-item {
    padding: 10px;
    border-radius: 0px;
    background-color: transparent;
    margin-bottom: 20px;
}

.meetings-list.care-giver .meeting-item .content-sec p {
    width: 99%;
}

.meetings-list.care-giver .meeting-item .content-sec h6 {
    color: #878787;
    text-decoration: underline;
    margin-bottom: 9px;
}

.care-giver .table-responsive.cmn-scroll {
    overflow-x: auto;
    height: calc(100vh - 325px);
}


/* ================Patient detail css include here=============== */

.meetings-list.patient .meeting-item .content-sec p {
    width: 99%;
    color: #878787;
    line-height: 19px;
}


/* ========================Add user form css include here============= */

.useradd-content {
    max-width: 100%;
}

.useradd-content .theme-btn {
    max-width: 350px;
    height: 48px;
}

.useradd-content .cstm-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.useradd-content .cstm-toggle p {
    color: #202020;
}

.useradd-content .select-date {
    min-height: auto;
    line-height: 1;
}

.useradd-content .select-date.placeholderclass::before {
    width: 86%;
    content: attr(placeholder);
    white-space: nowrap;
}

.useradd-content .select-date.placeholderclass:hover::before {
    width: 0%;
    content: "";
}


/* =====================custom toggle css include here============== */

.switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 48px;
}

.switch input {
    display: none;
}

.slider {
    background-color: #EBEBEB;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 18px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 18px;
}

input:checked+.slider {
    background-color: #0F89D1;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/* ==========member box css include here============= */

.cmn-members .members-row {
    overflow-x: auto;
    padding-bottom: 20px;
}

.cmn-members .member-itm {
    background-color: #E1F0F9;
    border-radius: 15px;
    padding: 10px;
    margin-right: 15px;
}

.cmn-members .content-sec h3 {
    color: #0F89D1;
    white-space: nowrap;
}

.cmn-members .content-sec p {
    color: #888888;
}

.cmn-members .img-wrapper {
    height: 44px;
    width: 44px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 12px;
}

.cmn-members .dropdown .btn {
    background-color: transparent;
    width: 15px;
    margin-left: 15px;
    height: fit-content;
}

.cmn-members ul.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 8%);
    padding: 0;
    overflow: hidden;
    inset: 2px auto auto -150px !important;
}

.cmn-members ul.dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 10px 15px;
    color: #585858;
    font-family: sfproMedium;
    border-bottom: 1px solid #F0F0F0;
}

.cmn-members ul.dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.cmn-members ul.dropdown-menu .dropdown-item.delete {
    color: #DE0D0D;
}

.cmn-members .dropdown-item.active,
.cmn-table .dropdown-item:active {
    background-color: #e9ecef;
}

.cmn-members .dropdown,
.cmn-members .dropend,
.cmn-members .dropstart,
.cmn-members .dropup {
    position: static;
}


/* ==============Common modal css include here=============== */

.cmn-modal .modal-dialog {
    max-width: 440px;
}

.cmn-modal .modal-dialog .modal-content {
    border-radius: 30px;
    padding: 30px;
}

.cmn-modal .modal-header {
    position: relative;
    justify-content: center;
}

.cmn-modal .btn-close {
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
}


/* .cmn-table .dropdown, .dropend, .dropstart, .dropup {
    position: relative;
    text-align: center;
} */


/* .form-select.form-control.cmn-input{
    background-image: url('../img/drop-down-icon.svg');

} */