:root {
    --color-primary-100: #DFF1F5;
    --color-primary: #003b5e;
    --color-primary-10: rgba(0, 59, 94, .1);
    --color-purple: #6f42c1;
    --color-primary-2: #5bb6eb;
    --color-secondary: #f79526;
    --color-secondary-2: #AB5409;
    --color-pink: #e83e8c;
    --color-red: #ea0606;
    --color-red-10: rgba(234, 6, 6, .1);
    --color-insightme: #00706E;
    --color-green: #82d616;
    --color-green-10: rgba(130, 214, 22, .1);
    --color-secondary-10: rgba(247, 149, 38, .1);
    --bs-font-sans-serif: "Poppins", sans-serif;
    --bs-bg-opacity: 1;
}


/* icon */

.icon-md i {
    top: unset;
    font-size: 1.25rem;
}

.icon-shape i {
    opacity: 1;
}


/* background */

.bg-secondary {
    color: var(--bs-white)!important;
}

.bg-success {
    color: var(--bs-white)!important;
}

.bg-pink {
    color: var(--bs-white)!important;
    background-color: var(--color-pink)!important;
}

.bg-purple {
    color: var(--bs-white)!important;
    background-color: var(--color-purple)!important;
}

.bg-gradient-green {
    color: var(--bs-white);
    background-image: linear-gradient(310deg, #aeda75 0%, #82d616 100%);
}

.bg-gradient-purple {
    color: var(--bs-white);
    background-image: linear-gradient(310deg, #b193e7 0%, #6f42c1 100%);
}

.bg-gradient-primary {
    background-image: linear-gradient(310deg, var(--color-primary) 0%, var(--color-primary-2) 100%)!important;
}

.bg-gradient-yellow {
    color: var(--bs-white);
    background-image: linear-gradient(310deg, var(--color-secondary) 0%, var(--color-secondary-2) 100%)!important;
}

.bg-primary-100 {
    background-color: var(--color-primary-100);
}

.bg-primary-10 {
    background-color: var(--color-primary-10);
}

.bg-warning-10 {
    background-color: var(--color-secondary-10);
}

.bg-danger-10 {
    background-color: var(--color-red-10);
}

.bg-success-10 {
    background-color: var(--color-green-10);
}

.bg-dark-blue {
    color: var(--bs-white)!important;
    background-color: #001f3f!important;
}


/* badge */

.badge {
    width: max-content;
    border-radius: 20px;
}

.badge-secondary {
    color: #626262;
    background-color: #F3F3F3;
}


/* border radius */

.border-10 {
    border-radius: .625rem!important;
}

.border-12 {
    border-radius: 12px!important;
}

.border-top-1 {
    border-top: 1px solid #dee2e6 !important;
}

.border-bottom-1 {
    border-bottom: 1px solid #dee2e6 !important;
}


/* object */

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


/* color */

.text-gradient.text-primary {
    background-image: linear-gradient(310deg, var(--color-primary), var(--color-primary-2));
}

.text-gradient.text-primary {
    background-image: linear-gradient(310deg, var(--color-primary), var(--color-primary-2));
}

.text-gradient.text-primary {
    background-image: linear-gradient(310deg, var(--color-primary), var(--color-primary-2));
}


/* margin and padding */

.py-12x {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-14x {
    padding-top: 14px;
    padding-bottom: 14px;
}


/* text */

a:hover {
    color: var(--color-primary);
}

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

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

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

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

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

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

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

.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semibold {
    font-weight: 600 !important;
}

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

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

.text-insightme {
    color: var(--color-insightme)!important;
}

.text-inherit {
    text-transform: inherit!important;
}


/* line-clamp */

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* width */

.mw-fit {
    min-width: fit-content!important;
}

.max-fit {
    max-width: fit-content!important;
}


/* size */

.size-16 {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
}

.size-18 {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
}


/* background */

.bg-white-opacity {
    background-color: rgba(255, 255, 255, var(--bs-bg-opacity)) !important;
}

.bg-dark-opacity {
    background-color: rgba(52, 71, 103, var(--bs-bg-opacity)) !important;
}


/* alert */

.alert.bg-yellow {
    background: #FFFAF0;
    color: var(--color-secondary-2);
    border: 1px solid var(--color-secondary-2);
}


/* avatar */

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

.avatar-80 {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: cover;
}


/* button */

.btn:focus,
.btn:hover,
.btn:active {
    transform: scale(1)!important;
}

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

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active {
    border-color: var(--color-primary)!important;
    background-color: var(--color-primary)!important;
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active {
    color: var(--color-primary)!important;
    border-color: var(--color-primary)!important;
}

.btn.bg-gradient-yellow:focus,
.btn.bg-gradient-yellow:hover,
.btn.bg-gradient-yellow:active {
    color: var(--bs-white)!important;
    border-color: var(--color-secondary-2)!important;
}

.btn-outline-primary.bg-gradient-yellow {
    background: transparent!important;
    color: var(--color-secondary)!important;
    border-color: var(--color-secondary)!important;
}

.btn-outline-primary.bg-gradient-yellow:focus,
.btn-outline-primary.bg-gradient-yellow:hover,
.btn-outline-primary.bg-gradient-yellow:active {
    color: var(--color-secondary-2)!important;
    border-color: var(--color-secondary-2)!important;
}


/* navbar */

.navbar-vertical .navbar-nav .nav-link[data-bs-toggle="collapse"]:after {
    content: "\ea5f"!important;
    font-family: 'tabler-icons'!important;
}

.navbar-vertical .navbar-nav .nav-item .collapse .nav .nav-item .nav-link.active:before {
    width: 5px;
    height: 5px;
}

.navbar-vertical.bg-white .navbar-nav .nav-link .icon {
    background-image: linear-gradient(310deg, #ffffff 0%, #ffffff 100%);
}

.navbar-vertical .navbar-brand>img,
.navbar-vertical .navbar-brand-img {
    max-height: 2.5rem;
}

.navbar.blur nav {
    display: none;
}

@media(max-width:767.98px) {
    .navbar.navbar-main nav[aria-label="breadcrumb"] {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .navbar.navbar-main .navbar-collapse {
        width: 75%;
    }
}


/* form */

.form-control:focus {
    border-color: rgba(0, 59, 94, .5);
    box-shadow: 0 0 0 2px rgba(0, 59, 94, .1);
}

.form-control:read-only {
    background-color: #fbfbfb;
}

.form-select:focus {
    border-color: rgba(0, 59, 94, .5);
    box-shadow: 0 0 0 2px rgba(0, 59, 94, .1);
}

.input-group.focused {
    box-shadow: 0 0 0 2px rgba(0, 59, 94, .1);
}

.input-group .form-control {
    border-top-right-radius: 0!important;
    border-bottom-right-radius: 0!important;
}

.input-group .form-control:focus {
    border-color: rgba(0, 59, 94, .5)!important;
    box-shadow: 0 0 0 2px rgba(0, 59, 94, .1);
}

.input-group button {
    border: 1px solid #d2d6da!important;
    box-shadow: 0 0 0 2px rgba(0, 59, 94, 0);
}

.input-group button:active,
.input-group button:hover,
.input-group button:focus {
    box-shadow: 0 0 0 2px rgba(0, 59, 94, 0)!important;
}

.textarea-autosize {
    resize: none;
    overflow: hidden;
    min-height: 80px!important;
    line-height: 20px;
}

.form-textarea {
    display: block;
    width: 100%;
    overflow: hidden;
    resize: both;
    min-height: 80px;
    line-height: 20px;
}

.form-textarea.disabled {
    cursor: not-allowed;
    background-color: #fbfbfb;
}

.form-textarea[contenteditable]:empty::before {
    content: attr(placeholder);
    color: gray;
}

.form-check:not(.form-switch) .form-check-input[type="checkbox"]:after {
    font-family: 'tabler-icons'!important;
    content: "\ea5e"!important;
}

.form-check-input-md {
    width: 18px;
    height: 18px;
}

.form-check:not(.form-switch) .form-check-input-md[type="checkbox"]:after {
    font-size: 12px;
}

.input-group.form-search .form-control {
    border-top-right-radius: 8px!important;
    border-bottom-right-radius: 8px!important;
}

.input-group.form-search:active .input-group-text,
.input-group.form-search:hover .input-group-text,
.input-group.form-search:focus .input-group-text {
    border-top: 1px solid rgba(0, 59, 94, .5)!important;
    border-bottom: 1px solid rgba(0, 59, 94, .5)!important;
    border-left: 1px solid rgba(0, 59, 94, .5)!important;
}

.input-group.form-search:active .form-control,
.input-group.form-search:hover .form-control,
.input-group.form-search:focus .form-control {
    border-right: 1px solid rgba(0, 59, 94, .5)!important;
    border-top: 1px solid rgba(0, 59, 94, .5)!important;
    border-bottom: 1px solid rgba(0, 59, 94, .5)!important;
}

.input-group.form-search .form-control:active,
.input-group.form-search .form-control:hover,
.input-group.form-search .form-control:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)!important;
}


/* pointer */

.pointer {
    cursor: pointer!important;
}


/* nav.nav-pills */

.nav.nav-pills .nav-link {
    font-size: 14px;
}

.nav.nav-pills .nav-link.active {
    background-color: var(--bs-white);
    box-shadow: 0 0 2px 2px rgba(0, 59, 94, .05);
}


/* list-group */

.list-group {
    border-radius: 0;
}

.list-group-item+.list-group-item {
    border-top-width: 1px;
}

.list-group .list-group-item {
    border-radius: 8px;
    border-color: 1px solid #d2d6da;
}

.list-group .list-group-item.active {
    border: none;
    background-image: linear-gradient(310deg, var(--color-primary) 0%, var(--color-primary-2) 100%)!important;
}

.list-group .list-group-item:not(:last-child) {
    margin-bottom: .75rem;
}


/* spinner */

.spinner-border {
    width: 13px;
    height: 13px;
}


/* card */

.card .card-body {
    font-family: var(--bs-body-font-family);
}


/* .oblique .oblique-image */

.oblique .oblique-image {
    background-position: left;
}


/* tooltip */

.tooltip-inner {
    font-size: 12px;
    border-radius: 0.4rem;
}


/* modal */

.modal .modal-dialog.modal-dialog-scrollable .modal-body {
    -webkit-overflow-scrolling: touch;
}


/* full calendar */

.fc .fc-toolbar.fc-header-toolbar {
    gap: .75rem;
    flex-wrap: wrap;
}

.fc .fc-button-group button,
.fc .fc-toolbar-chunk button {
    border-radius: 0.5rem;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer!important;
    text-transform: capitalize;
}

.fc .fc-button:disabled {
    opacity: 1;
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.fc .fc-button-primary:hover {
    transform: scale(1)!important;
}

.fc .fc-button-primary:not(:disabled):active:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus {
    box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0);
}

.fc .fc-toolbar-title {
    font-size: 16px;
    font-weight: 500;
}

.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
    font-size: 12px;
    font-weight: 400;
    padding: .25rem;
}

.fc-daygrid-dot-event {
    padding: 2px 4px;
}

.fc-daygrid-dot-event .fc-event-title {
    font-weight: 500;
}

.fc-media-screen .fc-timegrid-event {
    padding: 4px 6px;
    border-radius: 6px;
    border-color: transparent !important;
}

.fc-direction-ltr .fc-daygrid-event .fc-event-time {
    text-transform: uppercase;
}

.fc-daygrid-event-dot {
    display: none;
}

.fc table {
    font-size: 14px;
}

.fc .fc-col-header-cell-cushion {
    font-weight: 400;
}

a.fc-event.bg-purple:hover {
    background-color: var(--color-purple);
}

@media (max-width: 991.98px) {
    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
        order: 2;
    }
    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
        order: 1;
        width: 100%;
    }
    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(3) {
        order: 3;
    }
}


/* .fixed-plugin */

.fixed-plugin .fixed-plugin-button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* not-found-image */

.not-found-image {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.not-found-image-180 .not-found-image {
    max-width: 180px;
}


/* empty-image */

.empty-image {
    width: 100%;
    height: auto;
    max-width: 300px;
}


/* tooltip */

.tooltip .tooltip-inner .custom-info {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.tooltip .tooltip-inner .custom-info .action {
    margin-top: 4px;
    width: 100%;
    gap: .5rem;
    display: flex;
    justify-content: space-between;
}

.tooltip .tooltip-inner .custom-info .badge {
    font-size: 10px!important;
    font-weight: 400!important;
    border-radius: 6px!important;
    text-transform: capitalize!important;
}

.tooltip .tooltip-inner .custom-info .btn {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 0;
    padding: 2px 10px;
    border-radius: 6px;
    text-transform: capitalize;
}


/* counseling-timer */

.counseling-timer {
    padding: 16px;
    border-radius: 10px;
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .875rem;
}

.counseling-timer .countdown {
    font-weight: 500;
}


/* counseling-timer */

.schedule-timer .countdown {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    white-space: nowrap;
}

@media (max-width:767.98px) {
    .schedule-timer .countdown {
        width: 86px;
        min-width: 86px;
        max-width: 86px;
    }
}


/* psychological-record-card */

.psychological-record-container .psychological-record-card {
    margin-bottom: 1rem;
}

.psychological-record-container .psychological-record-card:last-child {
    margin-bottom: 0;
}

.psychological-record-card {
    background-color: #F8F9FA;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

@media(max-width: 991.98px) {
    .psychological-record-card .card-body {
        padding: .75rem;
    }
    .psychological-record-card .card-body .avatar-80 {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        max-width: 48px;
        max-height: 48px;
    }
    .psychological-record-card .card-body .fs-14 {
        font-size: 12px;
    }
    .psychological-record-card .card-body .badge {
        padding: .3rem .6rem;
    }
    .psychological-record-card .card-body a {
        font-size: 14px;
    }
}

.psychological-record-card.psychological-record-card-sm .card-body {
    padding: .75rem;
}

.psychological-record-card.psychological-record-card-sm .card-body .avatar-80 {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
}

.psychological-record-card.psychological-record-card-sm .card-body .fs-14 {
    font-size: 12px;
}

.psychological-record-card.psychological-record-card-sm .card-body .badge {
    padding: .3rem .6rem;
}

.psychological-record-card.psychological-record-card-sm .card-body a {
    font-size: 14px;
}


/* moving-tab */

.moving-tab {
    display: none;
}


/* psychological-record-progress */

.psychological-record-progress {
    border-radius: 12px;
    color: var(--bs-white);
    background: linear-gradient(315deg, #002B46 0%, #3497C2 100%);
}

.psychological-record-progress .progress-wrapper .progress {
    height: 8px;
}

.psychological-record-progress .progress-wrapper .progress .progress-bar {
    margin: 0;
    height: 8px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-2) 100%);
}


/* pagination */

.pagination .page-item .page-link:focus {
    box-shadow: 0 0 0 0.2rem var(--color-primary-10);
}

.pagination .page-item.active .page-link {
    color: var(--bs-white);
    background-color: transparent!important;
    border-color: var(--color-primary)!important;
    background-image: linear-gradient(310deg, var(--color-primary) 0%, var(--color-primary-2) 100%)!important;
}


/* schedule-lists */

.schedule-lists .list-group {
    margin-bottom: .875rem;
}

.schedule-lists .list-group:last-child {
    margin-bottom: 0;
}


/* time-lists */

.time-lists .time-item {
    margin-bottom: 10px;
}

.time-lists .time-item:last-child {
    margin-bottom: 0;
}


/* assessment */

.assessment-image {
    width: 100%;
    height: auto;
    max-width: 240px;
    object-fit: cover;
}


/* schedule request */

.chart-scroll {
    overflow-x: scroll;
    overflow-y: hidden;
}


/* notification */

@media(min-width:991px) {
    .dropdown-notification {
        width: 440px;
    }
}

.notification-badge {
    font-size: 9px;
    position: absolute;
    top: 0;
    right: 6px;
    width: 20px!important;
    height: 20px!important;
    display: flex;
    align-items: center;
    justify-content: center;
}