:root {
    --box-shadow-h-offset: 0px;
    --box-shadow-v-offset: 8px;
    --box-shadow-blur: 10px;
    --box-shadow-opacity: 0.25;

    --tbr-blue: #0583d2;
    --tbr-purple: #4f42b4;
    --tbr-teal: #30bfb1;
    --tbr-pink: #f774a6;
    --tbr-sky-blue: #53b6ec;
    --tbr-commet: #565674;

    --tbr-prussian-blue: #17283c;
    --tbr-alice-blue: #ebedf3;
    --tbr-rich-black: #14141c;
    --tbr-raisin-black: #171721;
    --tbr-raisin-black1: #22222b;
    --tbr-roman-silver: #7b7e86;
    --tbr-lavender-grey: #f6f5fb;
    --tbr-lavender-grey1: #b5b5c3;

    --tbr-white: #ffffff;
    --tbr-magnolia: #edebf7;
    --tbr-independence: #565674;
}

html,
body {
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--tbr-prussian-blue);
}

p,
label {
    color: var(--tbr-roman-silver);
}

html .modal label {
    color: #565674;
}

.btn .la.icon-lg {
    font-size: 20px !important;
}

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

/* ::marker {
    color: #FFA800;
} */

/*=============================================
            ANCHOR Additional color
=============================================*/
.text-pink {
    color: var(--tbr-pink) !important;
}

.text-blue {
    color: var(--tbr-sky-blue) !important;
}

.text-success {
    color: var(--tbr-teal) !important;
}

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

/*=====  End of Additional color  ======*/

/*=============================================
        ANCHOR Additional background color
=============================================*/
.bg-pink {
    background-color: var(--tbr-pink) !important;
}

.bg-blue {
    background-color: var(--tbr-sky-blue) !important;
}

.bg-success {
    background-color: var(--tbr-teal) !important;
}

.bg-commet {
    background-color: var(--tbr-commet) !important;
}

/*=====  End of Additional background color  ======*/

.custom-control {
    position: relative;
}

.custom-control-input {
    display: none;
}

.custom-control-indicator {
    margin-left: 34px;
}

.custom-control-indicator::before {
    content: "";
    height: 22px;
    width: 22px;
    border-radius: 30px;
    background-color: var(--tbr-magnolia);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' height='10'%3E%3Ccircle cx='50' cy='50' r='50' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: -1px;
}

.custom-control-input:checked ~ .custom-control-indicator::before {
    background-color: var(--tbr-teal);
}

/* RADIO */
.custom-control-description {
    margin-left: 2.5rem;
}

.custom-control-description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--tbr-magnolia);
    border-radius: 5px;
}

.custom-control-input:checked ~ .custom-control-description::before {
    background-color: var(--tbr-teal);
    background-image: url("../svg/icons/icon_check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}

/* TYPHOGRAPHY */
.text-grey {
    color: #7b7e86 !important;
}

.tbr_text_teal {
    color: var(--tbr-teal) !important;
}

.tbr_text-primary {
    color: var(--tbr-blue) !important;
}

/*=============================================
            ANCHOR Custom button
=============================================*/
html .btn.btn-success {
    background-color: var(--tbr-teal);
    box-shadow: 0px 8px 24px rgba(48, 191, 177, 0.2) !important;
    transition: all 300ms ease-in-out;
}

html .btn.btn-success:focus:not(.btn-active),
html .btn.btn-success:hover:not(.btn-active) {
    background-color: var(--tbr-teal);
    transition: all 300ms ease-in-out;
    box-shadow: 0px 0px 0px rgba(48, 191, 177, 0.2) !important;
}

html .btn.btn-secondary {
    background-color: #f5f8fa;
}

html .btn.btn-secondary:hover:not(.btn-active) {
    background-color: #e4e6e7;
}

html .btn.btn-warning {
    background-color: #ffaa00;
    transition: all 300ms ease-in-out;
    color: var(--tbr-white);
}

html .btn.btn-warning:hover {
    background-color: #ffaa00;
    transition: all 300ms ease-in-out;
    box-shadow: 0px 0px 0px rgba(255, 170, 0, 0.2) !important;
    color: var(--tbr-white);
}

.tbr_btn-primary-grad {
    display: flex;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
    background-size: 200% auto;
    background-image: linear-gradient(
        135deg,
        var(--tbr-purple) 0%,
        var(--tbr-blue) 30%
    );
    color: var(--tbr-white);
    box-shadow: 0px 8px 24px rgb(5 131 210 / 20%) !important;
}

.tbr_btn-primary-grad:hover {
    color: var(--tbr-white);
    box-shadow: 0px 0px 0px 0px var(--tbr-blue) !important;
    transition: all 0.3s ease-in-out;
}

.tbr_btn-purple {
    background-color: rgba(79, 66, 180, 0.1);
    color: var(--tbr-white);
    box-shadow: 0px 8px 24px rgb(5 131 210 / 20%) !important;
}

.tbr_btn-purple:hover {
    background-color: rgba(79, 66, 180, 1);
}

.tbr_btn-purple:hover .tbr_icon_hover {
    fill: white;
}

/* ALERT */
html .alert-success {
    background-color: rgba(48, 191, 177, 0.2);
    border: 1px solid transparent;
    color: var(--tbr-teal);
}

html .alert-danger {
    background-color: rgba(241, 76, 109, 0.2);
    border: 1px solid transparent;
    color: #f14c6c;
}

/* SIDEBAR */
html .bullet-dot-medium {
    width: 8px;
    height: 8px;
    border-radius: 100% !important;
}

html
    .menu-arrow-gray-500
    .menu-item.menu-accordion
    .menu-link
    .menu-arrow:after {
    transform: rotate(-90deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237b7e86'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}

html
    .menu-arrow-gray-500
    .menu-item.menu-accordion
    .menu-link.active
    .menu-arrow:after {
    transform: rotate(-90deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}

html .menu-arrow-gray-500 .menu-sub-accordion .menu-link .menu-arrow:after {
    transform: rotate(-90deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237b7e86'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}

html
    .menu-arrow-gray-500
    .menu-sub-accordion
    .menu-item
    .menu-link.active
    .menu-arrow:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230583d2'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}

html
    .menu-arrow-gray-500
    .menu-sub-accordion
    .menu-item.show
    .menu-link.active
    .menu-arrow:after {
    transform: rotate(90deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230583d2'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}

html .menu-item .menu-link .menu-icon {
    margin-right: 15px;
}

html
    .aside-menu
    .menu
    .menu-sub:not([data-popper-placement])
    > .menu-item
    > .menu-content,
html
    .aside-menu
    .menu
    .menu-sub:not([data-popper-placement])
    > .menu-item
    > .menu-link {
    padding-left: calc(0.75rem + 50px);
}

html
    .aside-menu
    .menu
    .menu-sub:not([data-popper-placement])
    > .menu-item
    > .menu-sub:not([data-popper-placement])
    > .menu-item
    > .menu-content,
html
    .aside-menu
    .menu
    .menu-sub:not([data-popper-placement])
    > .menu-item
    > .menu-sub:not([data-popper-placement])
    > .menu-item
    > .menu-link {
    padding-left: calc(1.25rem + 63px);
}

html .aside-menu .menu-item .menu-link.tbr_menu_link--gradient.active {
    background-image: linear-gradient(
        135deg,
        var(--tbr-purple) 0%,
        var(--tbr-blue) 30%
    );
    border-radius: 26px;
    box-shadow: 0px 8px 24px rgb(5 131 210 / 20%) !important;
}

html
    .aside-menu
    .menu-item.active
    .menu-link.tbr_menu_link--gradient
    .menu-title,
html
    .aside-menu
    .menu-item
    .menu-link.tbr_menu_link--gradient.active
    .menu-title {
    color: var(--tbr-white);
}

html
    .aside-menu
    .menu-item.active
    .menu-link.tbr_menu_link--gradient
    .svg-icon.svg-icon-primary
    svg
    [fill]:not(.permanent):not(g),
html
    .menu-link.tbr_menu_link--gradient.active
    .svg-icon.svg-icon-primary
    svg
    [fill]:not(.permanent):not(g) {
    fill: var(--tbr-white);
}

html .tbr_menu_link--gradient.active stop {
    stop-color: var(--tbr-white);
}

html .menu-sub-accordion .menu-item.active .menu-link {
    background-image: none;
    box-shadow: none;
}

html .menu-sub-accordion .menu-item.active .menu-link .menu-title {
    color: var(--tbr-blue);
}

html .menu-active-bg .menu-item .menu-link.active {
    background-color: var(--tbr-white);
}

html .menu-active-bg .menu-item .menu-link.active .menu-title {
    color: var(--tbr-blue);
}

html .menu-active-bg .menu-item .menu-link.active .bullet {
    background-color: var(--tbr-blue);
}

html .menu-sub-accordion .menu-item.active .menu-link .bullet {
    background-color: var(--tbr-blue);
}

html #kt_aside_toggle {
    position: absolute;
    right: 18px;
}

html [data-kt-aside-minimize="on"] #kt_aside_toggle {
    right: 25px;
}

.aside-footer {
    text-align: center;
}

/* @media (min-width: 992px) {
    .aside .aside-logo {
        height: 120px;
        justify-content: center;
    }
} */

@media (min-width: 768px) {
    html.no-overflowscrolling.sidebar-left-collapsed
        .nano:hover
        > .nano-pane
        > .nano-slider {
        visibility: hidden;
    }

    html.sidebar-left-collapsed .sidebar-left .nano:hover {
        width: initial;
    }

    html.sidebar-left-collapsed
        .sidebar-left
        .nano:hover
        .nav-main
        .nav-expanded
        > ul.nav-children {
        display: none;
    }

    html.sidebar-left-collapsed
        .sidebar-left
        .nav-main
        li.nav-parent
        > ul.nav-children {
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    html.sidebar-left-collapsed .sidebar-left .nano:hover ul.nav-main li i {
        margin-right: 30px;
    }

    html.sidebar-left-collapsed
        .sidebar-left
        .nano:hover
        .nav-main
        li.nav-parent
        a:after {
        display: none;
    }

    html.sidebar-left-collapsed .sidebar-left .nano:hover .nav-main li a span {
        visibility: hidden;
    }

    html.sidebar-left-collapsed .sidebar-left .nano:hover .sidebar-widget,
    html.sidebar-left-collapsed .sidebar-left .nano:hover .separator {
        display: none;
    }
}

html .btn {
    font-size: 13px;
}

html .strength {
    height: 20px;
    width: 100%;
    background: #ccc;
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
    transition: height 0.3s;
}

html .strength span {
    width: 0px;
    height: 20px;
    display: block;
    transition: width 0.3s;
    text-align: center;
    color: white;
}

/* Summernote custom css */
/* .note-editor .modal-header {
    display: block;
} */

.note-editor .modal-header h4 {
    margin-top: 0px;
}

.tbr_modal_delete {
    width: 500px;
}

body .ui-pnotify {
    z-index: 10000;
}

.ui-pnotify .notification {
    padding: 15px 15px 15px 25px;
}

/* label dot custom css */
.tbr_label_dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    margin-left: 15px;
    background-color: #eeeeee;
}

.tbr_label_dot.tbr_label_dot-danger {
    background-color: var(--danger);
}

.tbr_label_dot.tbr_label_dot-success {
    background-color: var(--success);
}

/* CARD */
.dataTables_processing.card {
    border-radius: 50px;
}

.card {
    border-radius: 10px;
}

.tbr_supplicant_message .card-body,
.tbr_admin_message .card-body {
    border-radius: 10px;
    color: var(--tbr-roman-silver);
    line-height: 20px;
}

.tbr_supplicant_message .card-body {
    background-color: #eee8f7;
}

.tbr_admin_message .card-body {
    border: 2px solid #f5f8fa;
}

/* TABLE */
/* tr {
    position: relative;
}

html table .actions {
    display: flex;
}

html .table th,
#tbr_ticket_datatable_processing,
#tbr_default_datatable_processing,
#form-message-table_processing,
#contact-datatable_processing,
#prospect-datatable_processing,
.dataTables_processing,
.dataTables_empty {
    color: var(--tbr-white);
}

#tbr_ticket_datatable_processing,
#tbr_default_datatable_processing,
#form-message-table_processing,
#contact-datatable_processing,
#prospect-datatable_processing,
.dataTables_processing,
.dataTables_empty {
    padding: 12px 24px;
    height: 45px;
    background-color: var(--tbr-teal);
    border-radius: 50px;
    box-shadow: 0 4px 12px 0 rgba(82, 63, 105, 0.06);
}



html .table td:first-child {
    padding-left: 25px;
}

html .dataTables_wrapper td {
    color: #7b7e86;
}

table.dataTable tbody td {
    vertical-align: middle;
}

.unread::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
    height: 40px;
    width: 3px;
    border-radius: 30px;
    background: #f1416c;
}

html table.dataTable>thead .sorting:after,
html table.dataTable>thead .sorting_asc:after,
html table.dataTable>thead .sorting_asc_disabled:after,
html table.dataTable>thead .sorting_desc:after,
html table.dataTable>thead .sorting_desc_disabled:after {
    content: "";
} */

/*=============================================
    =            CKE EDITOR            =
=============================================*/
/* html .product .ck.ck-editor__main > .ck-editor__editable,
html .history-activity .ck.ck-editor__main > .ck-editor__editable
 {
    min-height: 150px !important;
    height:150px !important;
    background-color: #F5F8FA;
}

html .ck-button.ck-on:not(.ck-button_with-text) {
    background: #DDE8FB !important;
}

html .ck-button.ck-on:not(ck-button_with-text) > svg path{
    fill: #0583D2;
}

html .ck.ck-editor__main > .ck-editor__editable {
    height: 490px !important;
}

html .ck.ck-toolbar > .ck-toolbar__items {
    justify-content: space-evenly;
}

html .ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
    border: 2px solid transparent !important;
}

html .ck.ck-editor__main > .ck-editor__editable.ck-focused {
    border: 2px solid var(--tbr-teal) !important;
}

html .ck.ck-toolbar {
    background-color: #edebf7;
    border: 2px solid transparent !important;
    border-bottom: none;
}

html .ck.ck-sticky-panel .ck-sticky-panel__content_sticky,
html .ck.ck-editor .ck-editor__top .ck-sticky-panel .ck-toolbar {
    z-index: 1 !important;
    height: 54px;
}

html #tbr_reply_collapse .ck.ck-editor__main > .ck-editor__editable {
    height: 250px !important;
}

#tbr_reply_collapse .ck.ck-editor__main > .ck-editor__editable {
    background-color: #f5f8fa;
} */

/*=====  End of CKE EDITOR  ======*/

/* SWEETALERT2 */
html .swal2-popup.swal2-toast .swal2-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
}

html .swal2-popup {
    justify-content: start;
}

html .swal2-popup.swal2-toast {
    padding: 25px;
    border-radius: 10px;
    width: 340px;
}

/* MODAL */
html .modal-content {
    border-radius: 20px;
}

/* FORM MESSAGE */
.tbr_detail_point {
    display: flex;
    position: relative;
}

.tbr_follow_up {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.tbr_border_bottom_dash,
.tbr_detail_point:not(:last-child) {
    border-bottom: 2px dashed var(--tbr-magnolia);
}

.tbr_border_bottom_dash--warning {
    border-bottom: 2px dashed #ffd37f;
}

.tbr_border_bottom_dash_contact {
    border-bottom: 2px dashed var(--tbr-magnolia);
    height: 0 !important;
}

html .form-check-input,
html .form-check-input:hover,
html .form-check-input:focus {
    border: 1px solid transparent;
    filter: brightness(95%);
}

html .form-check-input:checked {
    background-color: var(--tbr-teal);
    border-color: var(--tbr-teal);
    border: 1px solid var(--tbr-teal);
}

/* CODEMIRROR */
.CodeMirror {
    border-radius: 10px;
}

.CodeMirror-scroll,
.CodeMirror-gutter {
    color: var(--tbr-roman-silver);
    background-color: #f5f8fa;
}

html .CodeMirror-gutters {
    border-right: 2px solid #ffffff;
}

/*=============================================
    =            BREADCRUMB            =
=============================================*/
html .breadcrumb .breadcrumb-item {
    padding: 0;
}

html .breadcrumb-dot .breadcrumb-item:after {
    content: "";
    height: 4px;
    width: 4px;
    padding: 0;
    margin: 0 10px;
    background: #a1a5b7;
    border-radius: 50%;
}

html .breadcrumb-dot.breadcrumb-dot--primary .breadcrumb-item:after {
    background: var(--bs-blue);
}

/*=====  End of BREADCRUMB  ======*/

/*=============================================
    =            SELECT2            =
=============================================*/
/* html .select2-container--bootstrap5 .form-select:not(.form-select-solid):not(.form-select-white) {
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: #F5F8FA;
}

html .select2-container--bootstrap5.select2-container--open .form-select:not(.form-select-solid):not(.form-select-white),
html .select2-container--bootstrap5.select2-container--focus .form-select:not(.form-select-solid):not(.form-select-white) {
    border: 2px solid var(--tbr-teal);
}

html .form-select-lg~.select2-container--bootstrap5 .select2-selection {
    min-height: calc(1.5em + (1rem + 5px));
}

html .select2-container--bootstrap5 .select2-selection {
    background-color: #f5f5f8;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23B5B5C3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>");
}

html .form-select-lg~.select2-container--bootstrap5 .select2-selection--single:focus-visible,
html .form-select-lg~.select2-container--bootstrap5 .select2-selection--single {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border: none;
    border-radius: 8px;
    box-shadow: none;
}

html .select2-container--bootstrap5 .select2-selection--single .select2-selection__rendered {
    line-height: 1.6;
    color: var(--tbr-roman-silver);
}

html .select2-container--bootstrap5 .select2-selection--single .select2-selection__rendered[title="Estimasi Budget"] {
    color: var(--tbr-magnolia);
    font-size: 16px;
}

html .select2-container--bootstrap5 .select2-dropdown .select2-results__options .select2-results__option,
html .select2-container--bootstrap5 .select2-dropdown .select2-search {
    padding: 0.75rem 1rem;
    color: var(--tbr-roman-silver);
}

html .select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field {
    background: var(--tbr-white);
    padding: 0.75rem 1rem;
    color: var(--tbr-roman-silver);
    border: none;
    border-radius: 8px;
}

html .select2-container--bootstrap5 .select2-dropdown {
    border: #f5f5f8;
}

html .select2-container--bootstrap5 .select2-dropdown .select2-results__option {
    border-radius: 8px;
}

html .select2-container--bootstrap5 .select2-dropdown .select2-search {
    padding: 10px;
}

html .select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--selected,
html .select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background-color: var(--tbr-teal);
    color: var(--tbr-white);
    border-radius: 8px;
}

html .select2-container--bootstrap5 .select2-dropdown .select2-results__options:not(.select2-results__options--nested) {
    background-color: #f5f5f8;
    padding: 10px;
}

html .select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field:focus {
    box-shadow: none;
}

html .select2-container--open .select2-selection--single {
    box-shadow: none;
}

html .select2-container--bootstrap5.select2-container--open.select2-container--above .select2-selection,
html .select2-container--bootstrap5.select2-container--open.select2-container--below .select2-selection {
    border-radius: 8px;
}

html .select2-container--bootstrap5 .select2-dropdown.select2-dropdown--below {
    margin-top: 2px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f8;
}

html .select2-container--bootstrap5 .select2-dropdown.select2-dropdown--above {
    margin-top: -4px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f8;
} */

/*=====  End of SELECT2  ======*/

/*=============================================
    =            ERROR PAGE            =
=============================================*/
.tbr_error_page {
    position: relative;
}

.tbr_error_page .tbr_background {
    background-color: var(--tbr-section-bg);
    position: absolute;
    top: 0;
    width: 100%;
    font-size: 80vh;
    min-height: 100vh;
    line-height: 1.3;
    z-index: -1;
    text-align: center;
    color: var(--tbr-lavender-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .tbr_error_page .tbr_background {
        font-size: 50vw;
    }
}

.tbr_error_page .tbr_section-heading {
    font-size: 70px;
}

.tbr_error_page .tbr_section-sub-heading {
    font-size: 60px;
}

/*=====  End of ERROR PAGE  ======*/

/*=============================================
    =            HORIZONTAL ROW            =
=============================================*/
.tbr_hr_dot {
    border-bottom: 2px dashed #f1f2f7;
}

/*=====  End of HORIZONTAL ROW  ======*/

/*=============================================
=            STICKY TOOLBAR            =
=============================================*/
.tbr_sticky_toolbar {
    display: inline-block;
    background-color: #ffffff;
    width: 42px;
    height: auto;
    right: 0;
    bottom: 250px;
    border-radius: 6px 0 0 6px;
    text-align: center;
    position: fixed;
    z-index: 9;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0;
    flex-direction: column;
}

.tbr_sticky_toolbar .tbr_sticky_toolbar_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 6px 0 0 6px;
    margin-bottom: 2px;
    background: #ffffff;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 12px 0 rgba(82, 63, 105, 0.06);
    box-shadow: 0 4px 12px 0 rgba(82, 63, 105, 0.06);
}

.tbr_sticky_toolbar .tbr_sticky_toolbar_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tbr_sticky_toolbar-info {
    background-color: rgba(var(--rgb-info), 0.1);
}

.tbr_sticky_toolbar-info:hover {
    background-color: var(--info);
}

.tbr_sticky_toolbar-orange {
    background-color: rgba(var(--rgb-warning), 0.1);
}

.tbr_sticky_toolbar-orange:hover {
    background-color: var(--warning);
}

.tbr_sticky_toolbar .tbr_sticky_toolbar_item a:hover svg path {
    fill: #ffffff;
}

.tbr_sticky_toolbar .tbr_sticky_toolbar_item a:hover svg > g {
    opacity: 1;
}

.tbr_sticky_toolbar .tbr_sticky_toolbar_item.tbr_reset a svg {
    margin-top: 2px;
}

.tbr_sticky_toolbar .tbr_sticky_toolbar_item a,
.tbr_sticky_toolbar .tbr_sticky_toolbar_item svg > g,
.tbr_sticky_toolbar .tbr_sticky_toolbar_item:hover svg > g,
.tbr_sticky_toolbar .tbr_sticky_toolbar_item svg path,
.tbr_sticky_toolbar .tbr_sticky_toolbar_item:hover svg path {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -ms-transition: all 0.5s;
}

/*=====  End of STICKY TOOLBAR  ======*/

/*=============================================
    =            DOT CARD            =
=============================================*/
.tbr_dot_card {
    padding: 30px;
    border: 2px dashed var(--bs-blue);
    border-radius: 10px;
    background-color: rgba(--rgb-primary, 0.2);
}

.tbr_dot_card--danger {
    border: 2px dashed var(--bs-danger);
    background-color: #fff9fa;
}

.tbr_dot_card__title {
    color: var(--bs-blue);
}

.tbr_dot_card__title--danger {
    color: var(--bs-danger);
}

.tbr_dot_card__action {
    display: flex;
    justify-content: end;
    margin-top: 25px;
}

/*=====  End of DOT CARD  ======*/

/*=============================================
    =            DROPDOWN            =
=============================================*/
.tbr_ticket_dropdown .dropdown-toggle::after,
.tbr_ticket_dropdown .dropdown-toggle::before {
    display: none;
}

.tbr_ticket_dropdown .dropdown-menu {
    padding: 10px;
    border-radius: 10px;
    width: 210px;
}

.tbr_ticket_dropdown .dropdown-item {
    padding: 10px 25px;
    border-radius: 25px;
    margin-bottom: 5px;
    color: #7b7e86;
}

.tbr_ticket_dropdown .dropdown-item:hover,
.tbr_ticket_dropdown .dropdown-item.active {
    background-color: #f7f3fb;
    color: var(--bs-blue);
}

.tbr_ticket_dropdown .tbr_edit_dropdown_menu {
    transform: translate(-100px, 43px) !important;
}

/*=====  End of DROPDOWN  ======*/

.tbr_photo_profile__img {
    height: 56px;
    width: 56px;
    border-radius: 50%;
}

.tbr_photo_profile span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 56px;
    background-color: #0583d2;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 20px;
}

.tbr_admin_message .tbr_photo_profile span {
    background-color: #f5f8fa;
}

html .badge {
    font-weight: 600;
    padding: 6px;
}

/* ANCHOR Module member css */

/*=============================================
        Total member card
=============================================*/
html .tbr_card--total-member {
    width: 280px;
    margin-bottom: 10px;
    border-radius: 10px;
}

html .card > .tbr_card_body--total-member {
    padding: 16px 21px;
}

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

.tbr_total_member__img {
    height: 24px;
    margin-right: 11px;
}

.tbr_total_member__count {
    font-weight: 800;
    color: var(--bs-blue);
    margin-bottom: 0;
    margin-right: 11px;
    line-height: 1;
}

.tbr_total_member__desc {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    html .tbr_card--total-member {
        width: 100%;
    }
}

/*=====  End of TOTAL MEMBER CARD  ======*/

/*=============================================
    =            MODAL MEMBER            =
=============================================*/
.tbr_modal--member .modal-header {
    flex-direction: column;
    border-bottom: none;
    margin-bottom: 40px;
}

.tbr_modal--member .modal-header h1 {
    font-size: 23px;
    line-height: 1;
    margin-bottom: 20px;
}

.tbr_modal--member .modal-content {
    padding: 40px;
}

.tbr_modal--member .modal-content > * {
    padding: 0;
}

.tbr_modal--member .modal-footer {
    border: none;
}

.tbr_modal--member .form-group {
    margin-bottom: 35px;
}

.tbr_modal--member .tbr_border_bottom_dash {
    margin: 30px 0;
}

/*=====  End of MODAL MEMBER  ======*/

/*=============================================
=            EDIT MEMBER            =
=============================================*/
.tbr_member_profile {
    display: flex;
    align-items: center;
    position: relative;
}

.tbr_member_profile__crown {
    position: absolute;
    top: -26px;
    left: 15px;
    z-index: 1;
}

.tbr_member_profile__img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin-right: 30px;
    background-color: white;
    z-index: 2;
}

.tbr_member_profile span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 70px;
    width: 70px;
    border-radius: 56px;
    margin-right: 30px;
    background-color: #0583d2;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 30px;
    z-index: 2;
}

.tbr_member_profile__detail {
    margin-left: auto;
}

/*=====  End of EDIT MEMBER  ======*/

/*=============================================
=            POPOVER            =
=============================================*/
html .popover {
    font-weight: 500;
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15);
}

html .popover-body {
    color: var(--tbr-roman-silver);
}

/*=====  End of POPOVER  ======*/

.tbr_eye_password {
    position: absolute;
    top: 12px;
    right: 12px;
}

/*=============================================
=            HIDE DATATABLE FILTER            =
=============================================*/
#tbr_default_datatable_filter,
#form-message-table_filter,
#tbr_ticket_datatable_filter,
#contact-datatable_filter,
#tbr_default_datatable_modal_filter,
#prospect-datatable_filter,
#product-datatable_filter,
#category-datatable_filter,
#payment-datatable_filter,
#goal-datatable_filter,
#tbr_convertion_ratio_datatable_filter,
#tbr_convertion_ratio_owner_datatable_filter,
#tbr_activity_logs_owner_datatable_filter
{
    display: none !important;
}

/*=====  End of HIDE DATATABLE FILTER  ======*/

/*=============================================
    =            EMAIL            =
=============================================*/
.tbr_mail--divider {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px dashed #e4e6ef;
    margin-bottom: 15px;
}

.tbr_signature {
    color: #0583d2;
    font-weight: 600;
}

.tbr_security--code {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #1d2127;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-align: center;
}

/*=====  End of EMAIL  ======*/

/*=============================================
    =            LABEL RANGE            =
=============================================*/
.label-range {
    font-size: 12px;
    color: #b5b5c3;
}

/*=====  End of LABEL RANGE  ======*/

[data-kt-aside-minimize="on"] .aside-footer {
    display: none;
}

[data-kt-aside-minimize="on"] .aside-logo {
    height: 66px;
    transition: all 0.3s ease;
}

/* @media (min-width: 992px) {
    [data-kt-aside-minimize="on"] .aside-hoverable:hover .aside-logo {
        height: 120px;
        transition: all .3s ease;
    }
} */

[data-kt-aside-minimize="on"] .aside-hoverable .menu-item .menu-link {
    transition: all 0.3s ease;
}

/* [data-kt-aside-minimize="on"] .aside-hoverable:not(:hover) .menu-item .menu-link {
    margin: 0;
    border-radius: 0 !important;
} */

.tbr_text--right {
    text-align-last: right !important;
}

.table .sorting_disabled::after {
    display: none !important;
}

/* .table thead tr th:first-child,
.table tbody tr td:first-child {
    padding-left: 8px !important;
    padding-right: 8px !important;
    text-align: center !important;
} */

/*=============================================
    =            TOOLTIP            =
=============================================*/
/* .tooltip-inner {
    font-size: 13px;
    color: #7b7e86;
    font-weight: 500;
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    max-width: 300px;
    letter-spacing: 0.25px;
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15) !important;
}

.tooltip.show {
    opacity: 1 !important;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #ffffff;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #ffffff;
}

.bs-tooltip-auto[x-placement^="right"] .arrow::before,
.bs-tooltip-right .arrow::before {
    border-right-color: #ffffff;
}

.bs-tooltip-auto[x-placement^="left"] .arrow::before,
.bs-tooltip-left .arrow::before {
    border-left-color: #ffffff;
} */

/*=====  End of TOOLTIP  ======*/

/* Custom Bouncing Loader */
@keyframes bouncing-loader {
    to {
        opacity: 0.1;
        transform: translate3d(0, -16px, 0);
    }
}

.bouncing-loader {
    display: flex;
    justify-content: center;
}

.bouncing-loader > div {
    width: 7px;
    height: 7px;
    margin: 3rem 0.2rem;
    background: #8385aa;
    border-radius: 50%;
    animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
    animation-delay: 0.2s;
}

.bouncing-loader > div:nth-child(3) {
    animation-delay: 0.4s;
}

/* .tbr_customer_journey_list {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0px 0px 50px rgba(79, 66, 180, 0.15) !important;
    z-index: 50;
}

.tbr_customer_journey_list li.active {
    background-image: linear-gradient(135deg, var(--tbr-purple) 0%, var(--tbr-blue) 30%);
    border-radius: 26px;
    box-shadow: 0px 8px 24px rgba(5, 131, 210, 0.2) !important;
    color: #FFFFFF !important;
}

.tbr_customer_journey_list li.active a {
    color: #FFFFFF !important;
}

.tbr_customer_journey_list li a {
    display: flex;
    align-items: center;
    color: var(--tbr-commet) !important;
    width: 100%;
    height: 36px;
    border-radius: 50px;
}

.tbr_customer_journey_list li {
    color: #FFFFFF !important;
    border-radius: 26px;
}

.tbr_customer_journey_list li:hover {
    background-color: var(--tbr-alice-blue) !important;
    transition: all 300ms ease-in-out;
    color: var(--tbr-blue);
} */

.tbr_follow_up_wrapper {
    height: 400px;
    display: flex;
    flex-direction: column-reverse;
    overflow-x: hidden;
    overflow-y: auto;
}

.tbr_pipeline_wrapper {
    height: 350px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

.customCSS .e-calendar .e-content .e-selected span.e-day,
    /* csslint allow: adjoining-classes*/
.customCSS .e-calendar .e-content .e-selected span.e-day:hover,
    /* csslint allow: adjoining-classes*/
.customCSS .e-calendar .e-content .e-today.e-selected:hover span.e-day,
    /* csslint allow: adjoining-classes*/
.customCSS .e-calendar .e-content .e-today.e-selected span.e-day,
    /* csslint allow: adjoining-classes*/
.customCSS .e-calendar .e-content .e-selected:hover span.e-day

    /* csslint allow: adjoining-classes*/ {
    background-color: #35b86b;
}

.customCSS .e-calendar .e-content .e-today span.e-day,
    /* csslint allow: adjoining-classes*/
.customCSS .e-calendar .e-content .e-focused-date.e-today span.e-day {
    /* csslint allow: adjoining-classes*/
    border: 1px solid #35b86b;
    color: #ff3337;
}

.customCSS .e-calendar .e-content .e-weekend span {
    /* csslint allow: adjoining-classes*/
    color: #ff3337;
}

.customCSS.e-date-range-wrapper .e-input-group-icon.e-icons.e-active,
    /* csslint allow: adjoining-classes*/
.customCSS .e-btn.e-flat,
    /* csslint allow: adjoining-classes*/
.customCSS .e-btn.e-flat:hover {
    /* csslint allow: adjoining-classes*/
    color: #35b86b;
}

.form-body .left-form {
    max-width: 230px;
    min-width: 230px;
    width: 230px;
    padding: 0;
    box-shadow: 0px 0px 20px rgba(76, 87, 125, 0.02) !important;
}

.form-body .right-form {
    padding: 0;
}

.tbr_card--body-new-contact {
    border-radius: 10px;
    overflow: hidden;
}

.tbr_label_tooltip:hover {
    background-color: #ffd37f !important;
    transition: all 300ms ease-in-out;
    color: #ffa800 !important;
}

.tbr_permission--coming-soon .checkbox-parent {
    pointer-events: none;
    opacity: 0.5;
}

.tbr_name--user-box {
    color: #17283c;
    font-weight: 600 !important;
    line-height: 18px;
    margin-bottom: 2px;
}

.tbr_radio-box--customer-service {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 12px 28px 12px 22px;
    margin-bottom: 10px;
    border: 1px #dbdfe9 dashed;
    cursor: pointer;
    font-weight: 600;
}

.tbr_radio-box--customer-service span:first-child {
    margin-right: 10px;
}

.tbr_radio-box--customer-service span:last-child {
    color: #17283c;
}

.tbr_radio-box--customer-service.active {
    background-color: rgba(232, 248, 246, 1);
    border: 1px rgba(61, 183, 168, 1) dashed;
}

.tbr_radio-box--customer-service.active svg path {
    fill: #30bfb1;
}

/* border bottom dashed */
.tbr_bottom-dashed {
    border-bottom: 1px dashed #e4e6ef !important;
}

.min-wh-26 {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
}

/* Dropzone custom */
.dropzone .dz-preview {
    min-height: 53px !important;
}
.dropzone .dz-preview .dz-image {
    width: 53px !important;
    height: 53px !important;
}
.dropzone .dz-preview .dz-image >img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.dropzone .dz-preview .dz-details .dz-size {
    white-space: nowrap;
}

.dropzone.dz-clickable * {
    cursor: pointer !important;
}

.width-40-percentage{ width:40% !important }
.width-10-percentage{ width:10% !important }
.width-15-percentage{ width:15% !important }
.width-23-percentage{ width:23% !important }
.width-21-percentage{ width:21% !important }
.width-26-percentage { width: 26% !important; }
.width-60-percentage { width: 60% !important; }
.width-20-percentage { width: 20% !important; }
.width-18-percentage { width: 18% !important; }
.min-width-32-px { min-width: 32px !important; }
.max-widht-18-percentage { max-width: 18% !important;}

.tbr.tbr_gateway {
    transition: all 0.3s ease;
}

.tbr_gateway:hover svg rect {
    fill: var(--tbr-warning);
}

.tbr_btn--download {
    min-height: 34px !important;
    height: 34px !important;
    padding: .75rem 1rem !important;
}
