@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /*--primary-color: #a5c431; */
    --primary-color: #32b2d9;
    /*--primary-color-dark: #89a520; */
    --primary-color-dark: #007da2;
    --primary-color-lite: #eff5fb;
    --primary-color-border: rgb(50 178 217 / 20%);
    --secondary-color: #31458a;
    --dark-color-80: rgb(0 0 0 / 80%);
    --dark-color-70: rgb(0 0 0 / 70%);
    --dark-color-50: rgb(0 0 0 / 50%);
    --dark-color-20: rgb(0 0 0 / 20%);
    --dark-color-10: rgb(0 0 0 / 10%);
    --dark-color-5: rgb(0 0 0 / 5%);
    --danger-color: #dc3545;
    --white-color: #ffffff;
    --font-primary: Poppins, sans-serif;
    --text-primary: #151516;
    --font-secondary: Inter, sans-serif;
}
/*Common CSS*/
body, html {
    font-family: var(--font-primary), sans-serif;
    font-size: 14px;
}

a, a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: none;
    background-color: transparent;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.user-dropdown .user-icon::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--dark-color-70);
    text-decoration: none;
    background-color: var(--dark-color-10);
}

.img-size-25 {
    width: 25px;
}

.img-size-35 {
    width: 35px;
}

.show-hide {
    display: none;
}
/*Custom Font CSS*/
.inter-normal {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.roboto-normal {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fin-two {
    display: none;
}

@supports not (-webkit-touch-callout: none) {
    .layout-fixed .wrapper .sidebar {
        height: calc(100vh - (5rem + 1px));
        border-right: 1px solid var(--dark-color-10);
    }

    .layout-fixed.text-sm .wrapper .sidebar {
        height: calc(100vh - (2.93725rem + 1px));
    }
}

hr {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
/*Login CSS*/

.login-box .card, .register-box .card {
    border-radius: 16px;
}

.login-logo img, .register-logo img {
    max-width: 250px;
}

.login-box, .register-box {
    width: 660px;
}

.login-card-body {
    /*background-color: var(--primary-color);*/
    background-color: var(--primary-color-lite);
    border-radius: 16px;
    overflow: hidden;
    color: var(--primary-color);
}

    .login-card-body h2 {
        font-weight: 700;
        color: var(--primary-color);
    }

.login-box-msg, .register-box-msg {
    color: var(--dark-color-70);
}

.login-card-body .bg-white {
    min-height: 300px;
}
/*Alert Block*/
.alert-secondary {
    color: #383d41;
    background-color: var(--dark-color-5);
    border-color: var(--dark-color-10);
}
/*Button CSS*/
.btn-default {
    color: #495057;
    background-color: #e9ecef;
    border-color: #ced4da;
}

    .btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle, .btn-default:hover {
        color: #495057;
        background-color: #e9ecef;
        border-color: #ced4da;
    }

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .btn-primary:hover {
        color: var(--white-color);
        background-color: var(--primary-color-dark);
        border-color: var(--primary-color-dark);
    }

    .btn-primary:focus, .btn-primary.focus {
        color: var(--white-color);
        background-color: var(--primary-color-dark);
        border-color: var(--primary-color-dark);
        box-shadow: 0 0 0 0 rgba(38, 143, 255, 0.5);
    }

    .btn-primary.disabled, .btn-primary:disabled, .btn-primary:disabled:hover {
        color: #fff;
        background-color: #bbb;
        border-color: #bbb;
    }

.btn-link {
    color: inherit;
}

    .btn-link:focus, .btn-link:hover, .btn-link:active:focus {
        color: var(--primary-color);
    }

.btn-primary-secondary {
    color: var(--primary-color);
    background-color: var(--primary-color-lite);
    border-color: var(--primary-color);
}

    .btn-primary-secondary:not(:disabled):not(.disabled):active, .btn-primary-secondary:not(:disabled):not(.disabled).active, .show > .btn-primary-secondary.dropdown-toggle, .btn-primary-secondary:hover {
        color: var(--white-color);
        background-color: var(--primary-color-dark);
        border-color: var(--primary-color-dark);
    }

    .btn-primary-secondary:focus, .btn-primary-secondary.focus {
        color: var(--white-color);
        background-color: var(--primary-color-dark);
        border-color: var(--primary-color-dark);
        box-shadow: 0 0 0 0 rgba(38, 143, 255, 0.5);
    }

.btn-outline-primary {
    color: var(--primary-color-dark);
    border-color: var(--primary-color);
    background-color: var(--primary-color-lite);
    margin-right: 2px;
    border: none;
}

    .btn-outline-primary:hover {
        color: var(--white-color);
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .btn-outline-primary:focus, .btn-outline-primary.focus {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: #007bff;
        background-color: transparent;
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-primary.dropdown-toggle {
        color: var(--white-color);
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

        .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
        }

/*Footer CSS*/
.main-footer {
    /*display:none;*/
    padding: 0.5rem 1rem;
    font-size: 14px;
}
/*Table CSS*/
.table-lists {
    border-top: 3px solid #1849a8;
}

.grid-title {
    color: var(--primary-color);
    font-weight: bold !important;
}

.table-item {
    /* padding: 1rem 1.5rem;
     background-color: var(--dark-color-5);
    border-radius: 8px;
    border: 1px solid var(--dark-color-10); */
    margin-right: 7.5px;
    margin-left: 7.5px;
    margin-bottom: 1rem;
}

    .table-item label:not(.form-check-label):not(.custom-file-label) {
        margin: .5rem 0;
    }

        .table-item label:not(.form-check-label):not(.custom-file-label).selected {
            font-weight: 600;
            word-break: break-word;
        }

    .table-item .row > * {
        border: 1px solid #fff;
    }

        .table-item .row > *:nth-child(odd) {
            background-color: #eff5fb;
        }

    .table-item .action {
        text-align: right;
        display: flex;
        justify-content: end;
    }

        .table-item .action a {
            padding: .2rem .5rem;
            /* border: 1px solid #e2e2e2; */
            margin-left: .5rem;
            border-bottom: 0;
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 4px 4px 0 0;
        }

    .table-item.new .row > *:nth-child(odd) {
        background-color: #fff;
    }

    .table-item.new .row > *:first-child {
        background-color: #eff5fb;
    }

i[class^="fi-rr-"]:before, i[class*=" fi-rr-"]:before, span[class^="fi-rr-"]:before, span[class*="fi-rr-"]:before {
    vertical-align: middle;
}

.scroll-to-top {
    display: none;
}


.main-table.table th {
    background-color: #f2f2f2;
    font-weight: 500;
}

    .main-table.table th label.control_custom {
        margin: 0;
    }

.main-table.table th, .main-table.table td {
    padding: 0.5rem 0.75rem
}

.main-table.table tfoot th {
    background-color: #eff5fb;
    color: var(--primary-color);
}
/*Loader CSS*/
.loader-main {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000
}

    .loader-main .loader-bg {
        background-color: rgba(0, 0, 0, .5);
        width: 100%;
        height: 100%
    }

    .loader-main .loader-circle {
        display: inline-block;
        width: 80px;
        height: 80px;
        background: url(../img/logo-icon.png) center center no-repeat #fafafa;
        border-radius: 50px;
        position: fixed;
        top: 50%;
        left: 50%;
        margin-left: -65px;
        margin-top: -65px;
        background-size: 65%;
    }

        .loader-main .loader-circle:before {
            content: " ";
            display: block;
            width: 80px;
            height: 80px;
            margin: 1px;
            border-radius: 50%;
            border: 5px solid #8cc63f;
            border-color: #8cc63f transparent;
            animation: loader-circle 1.2s linear infinite
        }

@keyframes loader-circle {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader-main .cancel {
    background-color: rgb(255 0 0 / 50%);
    color: #fff;
    padding: 2px 4px;
    border-radius: 20px;
    width: 100%;
    display: inline-block;
}

/*.loader {
    width: 40px;
    height: 40px;
    --a:no-repeat linear-gradient(#a5c431 0 0);
    --b:no-repeat linear-gradient(#772058 0 0);
    --c:no-repeat linear-gradient(#fabaac 0 0);
    --d:no-repeat linear-gradient(#00899a 0 0);
	
    background: var(--a),var(--b),var(--c),var(--d);
    background-size: 21px 21px;
    animation: l5 1.5s infinite cubic-bezier(0.3,1,0,1);
	position: absolute;
    top: 50%;
    left: 50%;
}
.loader-outer:before {
	content:"";
}*/
@keyframes l5 {
    0% {
        background-position: 0 0,100% 0,100% 100%,0 100%
    }

    33% {
        background-position: 0 0,100% 0,100% 100%,0 100%;
        width: 60px;
        height: 60px
    }

    66% {
        background-position: 100% 0,100% 100%,0 100%,0 0;
        width: 60px;
        height: 60px
    }

    100% {
        background-position: 100% 0,100% 100%,0 100%,0 0
    }
}
/*Header CSS*/
.broker-image {
    max-width: 70px
}

.navbar-nav .nav-link {
    color: var(--dark-color-80);
}

.main-header {
    position: fixed;
    width: calc(100% - 280px);
    background-color: var(--white-color);
}

    .main-header .nav-link {
        /* height: 3.2rem;*/
        height: auto;
        padding: 1.33rem 1rem;
    }

        .main-header .nav-link .fi {
            font-size: 1.5rem;
        }

body:not(.sidebar-collapse) .nav-link .fa-bars:before {
    content: "\f00d";
}

.brand-link .brand-image, .brand-text img {
    max-width: 95%;
    float: none;
    margin-top: 0;
    max-height: 100%;
}

.user-icon i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    background-color: var(--dark-color-50);
    color: #fff;
    line-height: 18px;
}

.user-icon i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    background-color: var(--dark-color-50);
    color: #fff;
    line-height: 18px;
}

.navbar-badge {
    right: 10px;
    top: 24px;
}

@media (max-width: 575.98px) {

    .dropup, .dropright, .dropdown, .dropleft {
        position: inherit;
    }
}

@media (max-width: 991.98px) {

    .main-header {
        position: relative;
        width: 100%;
    }
}
/*Sidebar CSS*/
.comp-info {
    bottom: 0;
    background-color: var(--primary-color-lite);
    width: 100%;
    left: 0;
    padding: 13px;
}

    .comp-info img {
        max-width: 100px;
    }

@media (min-height: 700px) {
    .comp-info {
        position: absolute;
    }
}

[class*="sidebar-dark-"] {
    background-color: #1f1a4d;
}

    [class*="sidebar-dark-"] .nav-sidebar > .nav-item > .nav-treeview {
        background-color: #b5b3cc;
        border-radius: 0.25rem;
    }

    [class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link {
        color: #1b173d;
    }

        [class*="sidebar-dark-"] .menu-open .nav-treeview > .nav-item > .nav-link:hover, [class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link:focus {
            background-color: #8480a4;
            color: #fff;
        }

.layout-fixed .brand-link {
    width: 280px;
    height: 70px;
    display: flex;
    align-items: center;
}

[class*="sidebar-light-"] .nav-header {
    background-color: inherit;
    color: #999999;
}

.main-sidebar, .main-sidebar::before {
    width: 280px;
}

[class*="sidebar-light"] .brand-link, [class*="sidebar-light"] .brand-link .pushmenu {
    /*background-color: var(--primary-color-lite);*/
    padding: 0.5rem;
}

.sidebar-mini .main-sidebar .nav-link, .sidebar-mini-md .main-sidebar .nav-link, .sidebar-mini-xs .main-sidebar .nav-link {
    width: 100%;
    padding: 10px 1rem;
    font-size: 16px;
    font-weight: 500;
    color: #000000CC;
    align-items: baseline;
    display: flex;
    border-left: 2px solid transparent;
}

.nav-sidebar .nav-link > .right, .nav-sidebar .nav-link > p > .right, .nav-sidebar .menu-open .nav-link > .right, .nav-sidebar .menu-open .nav-link > p > .right {
    top: 1.25rem;
}


.sidebar-light-info .nav-sidebar > .nav-item > .nav-link.active {
    background-color: var(--primary-color-lite);
    color: var(--dark-color-80);
    box-shadow: none;
}

.sidebar .nav-treeview .nav-link p {
    font-weight: normal;
}

[class*="sidebar-light-"] .nav-treeview > .nav-item > .nav-link {
    padding: 6px 1rem 6px 1rem;
}

.nav-sidebar .nav-treeview {
    padding: 0 0 0 2.5rem;
    position: relative;
}

ul.nav.nav-treeview li:before {
    content: "";
    border-left: 4px solid var(--primary-color-border);
    position: absolute;
    height: 100%;
    left: -10px;
    top: 15px;
}

ul.nav.nav-treeview li:last-child:before {
    display: none;
}

.nav-sidebar li.nav-item {
}

    .nav-sidebar li.nav-item.in-progress.menu-open .nav-item {
        position: relative;
    }

    .nav-sidebar li.nav-item.in-progress.menu-open:after {
        content: "";
        border-left: 4px solid rgb(165 196 49);
        position: absolute;
        height: 100%;
        left: -10px;
        top: 0;
    }

    .nav-sidebar li.nav-item.menu-open .nav-item {
        position: relative;
    }

        .nav-sidebar li.nav-item.menu-open .nav-item:after {
            content: "";
            border: 2px solid var(--dark-color-20);
            position: absolute;
            height: 20px;
            left: -18px;
            top: 8px;
            width: 20px;
            background-color: #fff;
            border-radius: 100%;
            line-height: 20px;
        }

    .nav-sidebar li.nav-item.menu-open li.nav-item.menu-open .active:after {
        /*content: "\2713";*/
        content: "";
        border: 2px solid var(--primary-color);
        position: absolute;
        height: 20px;
        left: -19px;
        top: 8px;
        width: 20px;
        background-color: var(--primary-color-lite);
        border-radius: 100%;
        text-align: center;
        color: var(--primary-color);
        z-index: 1;
        line-height: 20px;
    }

    .nav-sidebar li.nav-item.menu-open .nav-item.complete:after {
        content: "\2713";
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        text-align: center;
    }

[class*="sidebar-light-"] .nav-treeview > .nav-item > .nav-link.active, [class*="sidebar-light-"] .nav-treeview > .nav-item > .nav-link.active:hover {
    background-color: transparent;
    color: var(--primary-color);
}
/*.nav-sidebar li.nav-item.menu-open li.nav-item.menu-open .active:after {
    content: "\f192";
    position: absolute;
    height: 16px;
    left: -15px;
    top: 8px;
    width: 16px;
    background-color: #fff;
    border-radius: 100%;
    font-family: "Font Awesome 6 Free";
    color: #ababab;
	border: none;
}*/
.menu-icon {
    /*top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;*/
    width: 50px;
}

    .menu-icon:before,
    .menu-icon:after,
    .menu-icon div {
        background: #333;
        content: "";
        display: block;
        height: 1px;
        border-radius: 3px;
        margin: 7px 0;
        transition: 0.5s;
    }

    .menu-icon:hover:before {
        transform: translateY(12px) rotate(135deg);
    }

    .menu-icon:hover:after {
        transform: translateY(-12px) rotate(-135deg);
    }

    .menu-icon:hover div {
        transform: scale(0);
    }

.header-breadcrumb span {
    color: #999;
}

.header-breadcrumb + p {
    margin-bottom: 0;
}

[class*="sidebar-light-"] .nav-sidebar > .nav-item.menu-open > .nav-link, [class*="sidebar-light-"] .nav-sidebar > .nav-item:hover > .nav-link {
    background-color: var(--primary-color-lite);
    color: var(--dark-color-80);
    box-shadow: none;
    /*border-left: 2px solid var(--primary-color);*/
}

.sidebar-collapse .main-sidebar, .sidebar-collapse .main-sidebar::before {
    margin-left: -280px;
}

.nav-sidebar .menu-open > .nav-link svg.right, .nav-sidebar .menu-open > .nav-link i.right, .nav-sidebar .menu-is-opening > .nav-link svg.right, .nav-sidebar .menu-is-opening > .nav-link i.right {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.finance-icon:before {
    content: "";
    background-image: url(../img/icons/finance.svg);
    width: 13px;
    height: 17px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

@media (max-width: 767.98px) {
    .main-sidebar, .main-sidebar::before {
        margin-left: -280px;
    }
}
/*Content CSS*/
.content-wrapper {
    background-color: transparent;
}

/*#applicant2-details {
    display: none;
}

.active-applicant2 #applicant2-details {
    display: block;
}*/

.content-header h4 small {
    color: #5A85D7;
}

.content-header h4 img {
    max-height: 30px;
}

.elevation-6 {
    box-shadow: 0 .46875rem 2.1875rem rgba(4, 9, 20, .03), 0 .9375rem 1.40625rem rgba(4, 9, 20, .03), 0 .25rem .53125rem rgba(4, 9, 20, .05), 0 .125rem .1875rem rgba(4, 9, 20, .03);
}

.content-header {
    /*background: rgba(255, 255, 255, .45); */ margin-bottom: 1.5rem;
}
/*Dashboard Card CSS*/
.card {
    border-radius: 8px;
}

.card-header {
    background-color: #F5F5F5;
    border: 0;
    padding: 1rem 1.25rem;
}

.card-tile-big {
    text-align: center;
    border-radius: 16px; /* box-shadow: 0 .46875rem 2.1875rem rgba(4, 9, 20, .03), 0 .9375rem 1.40625rem rgba(4, 9, 20, .03), 0 .25rem .53125rem rgba(4, 9, 20, .05), 0 .125rem .1875rem rgba(4, 9, 20, .03);*/
}

    .card-tile-big h4 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .card-tile-big img {
        max-width: 90%;
    }

    .card-tile-big .circle {
        border: 1px solid #e2e2e2;
        border-radius: 100%;
        width: 90px;
        height: 90px;
        margin: 1rem auto;
        padding: 1rem;
    }

.card-tile-chip {
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--primary-color-lite);
    box-shadow: none;
}

    .card-tile-chip .card-footer {
        color: var(--primary-color);
        padding: 0.75rem 1.25rem;
        background-color: var(--primary-color-lite);
        font-size: 1.25rem;
    }
/*Dropdown CSS Animation*/
@media (min-width: 768px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}
/*End*/
/*ASSETS BLOCK*/
.assets_block {
    text-align: center;
}

    .assets_block h5 {
        padding-top: 0.5rem;
    }

    .assets_block p {
        color: var(--primary-color);
    }
/*ICONS*/
.icon_1 {
    background: url(../img/icons/whole_life.svg);
}

.icon_2 {
    background: url(../img/icons/income_protect.svg);
}

.icon_3 {
    background: url(../img/icons/illness_protect.svg);
}

.icon_4 {
    background: url(../img/icons/investments1.svg);
}

.icon_5 {
    background: url(../img/icons/pensions.svg);
}

.icon_6 {
    background: url(../img/icons/savings.svg);
}

.icon_7 {
    background: url(../img/icons/total_life.svg);
}

.ICON32 {
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 64px;
    height: 64px;
    margin: .5rem auto;
    opacity: .6;
}
/*Well Block*/

.well-block {
    background-color: var(--primary-color-lite);
    padding: 1rem;
}

#fe-details-tab .nav-link > span {
    display: inline-block;
    background-color: #fff;
    border: 1px solid var(--dark-color-20);
    width: 24px;
    height: 24px;
    border-radius: 100%;
    text-align: center;
    position: relative;
}

#fe-details-tab .complete .nav-link > span:after {
    content: "\2713";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 100%;
    color: #fff;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.accordion_custom .accordion-button {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    background-color: var(--primary-color-lite);
}

    .accordion_custom .accordion-button::before {
        display: inline-block;
        flex-shrink: 0;
        width: var(--bs-accordion-btn-icon-width);
        height: var(--bs-accordion-btn-icon-width);
        margin-left: auto;
        content: "";
        background-image: var(--bs-accordion-btn-icon);
        background-repeat: no-repeat;
        background-size: var(--bs-accordion-btn-icon-width);
        transition: var(--bs-accordion-btn-icon-transition);
    }

    .accordion_custom .accordion-button::after {
        display: none;
    }

    .accordion_custom .accordion-button:not(.collapsed) {
        color: var(--dark-color-80);
        background-color: var(--primary-color-lite);
        box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    }

.accordion_custom .accordion-item {
    border: none;
    margin-bottom: .5rem;
}

    .accordion_custom .accordion-item:first-of-type .accordion-button, .accordion_custom .accordion-item:first-of-type .accordion-button.collapsed, .accordion_custom .accordion-item:last-of-type .accordion-button.collapsed, .accordion_custom .accordion-item:last-of-type .accordion-button {
        border-radius: 0;
        box-shadow: none;
    }

.accordion_custom .accordion-button:not(.collapsed)::before {
    color: var(--dark-color-80);
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}
/*.accordion-button[aria-expanded="false"] { background-color:red;}*/
.accordion_custom .accordion-item.in-active .accordion-button {
    background-color: #E8F2D5
}

    .accordion_custom .accordion-item.in-active .accordion-button .fa-circle-dot:before {
        content: "\f058";
        color: #60842C;
    }

.property-item {
    /* padding: 1rem 1.5rem;
     background-color: var(--dark-color-5);
    border-radius: 8px;
    border: 1px solid var(--dark-color-10); */
    margin-right: 7.5px;
    margin-left: 7.5px;
    margin-bottom: 1rem;
}

    .property-item label:not(.form-check-label):not(.custom-file-label) {
        margin: .5rem 0;
    }

        .property-item label:not(.form-check-label):not(.custom-file-label).selected {
            font-weight: 700;
        }

    .property-item .row > * {
        border: 1px solid #e3e3e3;
    }

        .property-item .row > *:nth-child(odd) {
            background-color: #f2f2f2;
        }

    .property-item .action {
        text-align: right;
        display: flex;
        justify-content: end;
    }

        .property-item .action a {
            padding: .2rem .5rem;
            /* border: 1px solid #e2e2e2; */
            margin-left: .5rem;
            border-bottom: 0;
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 4px 4px 0 0;
        }

i[class^="fi-rr-"]:before, i[class*=" fi-rr-"]:before, span[class^="fi-rr-"]:before, span[class*="fi-rr-"]:before {
    vertical-align: middle;
}

@media (min-width: 768px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-header {
        padding-top: 6rem;
        padding-bottom: 6rem;
        margin-left: 280px;
    }

    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-footer {
    }
}

@media (max-width: 991.98px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-footer, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-header {
        margin-left: 0;
    }

    .content-wrapper > .content {
        padding: 0 0.5rem 8rem 0.5rem;
    }
}

.footer-actions {
    position: fixed;
    z-index: 100;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    padding: 10px 0px 10px 280px;
    border-top: 1px solid var(--dark-color-10);
}

.footer-actions-in {
    padding: 0px 2.5rem
}
/*Progress CSS*/
@keyframes progress {
    0% {
        --percentage: 0;
    }

    100% {
        --percentage: var(--value);
    }
}

@property --percentage {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
}

[role="progressbar"] {
    --percentage: var(--value);
    --primary: var(--primary-color);
    --secondary: #dddddd;
    --size: 50px;
    animation: progress 2s 0.5s forwards;
    width: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

    [role="progressbar"]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: conic-gradient( var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0 );
        mask: radial-gradient(white 55%, transparent 0);
        mask-mode: alpha;
        -webkit-mask: radial-gradient(#0000 55%, #000 0);
        -webkit-mask-mode: alpha;
    }

    [role="progressbar"]::after {
        counter-reset: percentage var(--value);
        content: counter(percentage) "%";
        font-family: Helvetica, Arial, sans-serif;
        font-size: calc(var(--size) / 4);
        color: var(--primary);
    }

@media (min-width: 1920px) {
    [role="progressbar"] {
        --size: 70px;
    }
}

@media (min-width: 768px) {
    .right-modal .modal-dialog {
        max-width: 350px;
        margin: 0 auto;
        margin-right: 0;
        min-height: 100%;
        border-radius: 0;
    }
}

.modal-content {
    min-height: 100%;
    border-radius: 0;
}

.modal .close {
    border-radius: 100%;
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
    line-height: 20px;
    background-color: #e9ecef;
    margin: 0;
    padding: 0;
}

.datepicker table {
    margin: 10px;
}

.datepicker th {
    font-weight: 500;
    color: #32b2d9;
}

.input-group.date .input-group-append {
    cursor: pointer;
}
/*.prev { 
background-image: url(../img/prev.png);
    width: 26px;
    height: 60px;
    display: inline-block;
    background-position: center left;
    background-size: 50%;
    background-repeat: no-repeat;
    float: left;
   
}*/
/*Card CSS*/

/*Card CSS*/
.card.card-outline-tabs {
    box-shadow: none;
    border: none;
}

    .card.card-outline-tabs.steps {
        box-shadow: none;
        border: none;
    }

    .card-primary.card-outline-tabs > .card-header a.active, .card-primary.card-outline-tabs > .card-header a.active:hover, .card-primary.card-outline-tabs > .card-header a:hover, .card.card-outline-tabs .nav-tabs .nav-link:hover, .card.card-outline-tabs .nav-tabs .nav-link:focus {
        border-radius: 0;
        border-width: 0 0 3px 0;
        ;
        box-shadow: none;
    }

    .card.card-outline-tabs .card-header a {
        color: var(--dark-color-50);
        border-width: 0 0 3px 0;
        font-size: 16px;
    }

        .card.card-outline-tabs .card-header a:hover, .card.card-outline-tabs .card-header a:focus {
            border-width: 0 0 3px 0;
        }

.card-primary.card-outline-tabs > .card-header a.active, .card-primary.card-outline-tabs > .card-header a.active:hover {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color-dark);
    background: transparent;
}

.panel-title {
    padding: 1rem 0;
}

.card.card-outline-tabs .card-footer {
    position: fixed;
    z-index: 100;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    padding: 10px 10px 10px 315px;
    border-top: 1px solid var(--dark-color-10);
}

.card.card-outline-tabs.steps {
    box-shadow: none;
    border: none;
}

    .card-primary.card-outline-tabs.steps > .card-header a.active, .card-primary.card-outline-tabs.steps > .card-header a.active:hover,
    .card-primary.card-outline-tabs.steps > .card-header a:hover, .card.card-outline-tabs.steps .nav-tabs .nav-link:hover,
    .card.card-outline-tabs.steps .nav-tabs .nav-link:focus {
        border-radius: 0;
        border-width: 0 0 3px 0;
        ;
        box-shadow: none;
    }

    .card.card-outline-tabs.steps .card-header a {
        color: var(--dark-color-50);
        border-width: 0 0 3px 0;
        font-size: 16px;
    }

        .card.card-outline-tabs.steps .card-header a:hover, .card.card-outline-tabs.steps .card-header a:focus {
            border-width: 0 0 3px 0;
        }

.card-primary.card-outline-tabs.steps > .card-header a.active, .card-primary.card-outline-tabs.steps > .card-header a.active:hover {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color-dark);
    background: transparent;
}

.panel-title {
    padding: 1rem 0;
}

.card.card-outline-tabs.steps .card-footer {
    position: fixed;
    z-index: 100;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    padding: 10px 10px 10px 315px;
    border-top: 1px solid var(--dark-color-10);
}

@media (max-width: 991.98px) {
    .footer-actions, .card.card-outline-tabs .card-footer {
        padding-left: 10px;
    }

    .footer-actions-in {
        padding: 0px 0.5rem;
    }
}
/*Form CSS*/
.verify_block span.icon-error {
    background-color: #dc3545;
    padding: 0;
    color: #fff;
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    line-height: 16px;
}

.form-error {
    color: #dc3545 !important;
    font-size: 12px;
    margin: .25rem 0;
}

    .form-error i[class^="fi-rr-"]:before, .form-error i[class*=" fi-rr-"]:before, .form-error span[class^="fi-rr-"]:before, .form-error span[class*="fi-rr-"]:before {
        line-height: inherit;
    }

.form-control, .custom-select, .p-multiselect, .p-inputtext, .form-select {
    height: 40px;
    font-size: 14px;
}

    .p-multiselect-item, .p-multiselect.p-multiselect-chip .p-multiselect-token, .col-form-label {
        font-size: 14px;
    }

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 400;
}

.req {
    color: var(--danger-color);
}

[class*=icheck-] > label {
    padding-left: 25px !important;
    min-height: 18px;
    line-height: 18px;
}

[class*=icheck-] > input:first-child + input[type=hidden] + label::before, [class*=icheck-] > input:first-child + label::before {
    width: 18px;
    height: 18px;
    border: 1px solid #D3CFC8;
    margin-left: -25px;
}

[class*=icheck-] > input:first-child:checked + input[type=hidden] + label::after, [class*=icheck-] > input:first-child:checked + label::after {
    left: -1px;
    width: 5px;
    height: 9px;
    transform: translate(7.75px, 4.5px) rotate(45deg);
    -ms-transform: translate(7.75px, 4.5px) rotate(45deg);
}

[class*=icheck-] > input[type="radio"]:first-child:checked + input[type="radio"][type=hidden] + label::after, [class*=icheck-] > input[type="radio"]:first-child:checked + label::after {
    left: .35rem;
    background-color: var(--white-color);
    height: 8px;
    width: 8px;
    top: 0.35rem;
    border-radius: 100%;
    transform: inherit;
}

.icheck-primary > input:first-child:checked + label::before, .icheck-primary > input:first-child:checked + input[type="hidden"] + label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type=hidden] + label::before, .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before {
    border-color: var(--primary-color);
}

.btn-group-vertical .btn {
    text-align: left;
    border: none;
}
/*.btn-group > .btn:first-child, .btn-group > .btn-group:not(:last-child) > .btn {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}*/
.btn-group > .btn:first-child, .btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-check:checked + .btn, .btn.active, .btn.show, :not(.btn-check) + .btn:active {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-check + .btn:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
/*Dashboard Card CSS*/
.card-tile-big {
    text-align: center;
    border-radius: 16px; /* box-shadow: 0 .46875rem 2.1875rem rgba(4, 9, 20, .03), 0 .9375rem 1.40625rem rgba(4, 9, 20, .03), 0 .25rem .53125rem rgba(4, 9, 20, .05), 0 .125rem .1875rem rgba(4, 9, 20, .03);*/
}

    .card-tile-big h4 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .card-tile-big img {
        max-width: 90%;
    }

    .card-tile-big .circle {
        border: 1px solid #e2e2e2;
        border-radius: 100%;
        width: 90px;
        height: 90px;
        margin: 1rem auto;
        padding: 1rem;
    }
/*Dropdown CSS Animation*/
@media (min-width: 768px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}
/*End*/
/*IOS Slider*/
.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single, .irs--flat .irs-bar, .irs--flat .irs-handle > i:first-child, .irs--flat .irs-handle.state_hover > i:first-child, .irs--flat .irs-handle:hover > i:first-child {
    background-color: var(--secondary-color);
}

    .irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before {
        border-top-color: var(--secondary-color);
    }


.card-tile-big.no-border {
    border: none;
}

    .card-tile-big.no-border .card-header {
        color: var(--dark-color-80);
        background-color: var(--primary-color-lite);
    }

        .card-tile-big.no-border .card-header .card-title {
            font-size: 1.2rem;
            font-weight: 500;
        }

.no-shadow {
    box-shadow: none
}

.rating-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .rating-list li {
        width: 35px;
        height: 35px;
        background-color: #4A8ECC;
        border-radius: 100%;
        display: inline-block;
        line-height: 35px;
        margin: .25rem;
        color: #fff;
    }

        .rating-list li.on {
            border: 3px solid #fff;
            width: 40px;
            height: 40px;
            font-size: 18px;
            box-shadow: 0 0 4px 4px #e2e2e2;
            position: relative;
        }

            .rating-list li.on:after {
                content: "";
                position: absolute;
                width: 0;
                height: 0;
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-bottom: 5px solid var(--primary-color);
                bottom: -30%;
                left: 13px;
            }

        .rating-list li:nth-child(1) {
            background-color: #4A8ECC;
        }

        .rating-list li:nth-child(2) {
            background-color: #00AEEF;
        }

        .rating-list li:nth-child(3) {
            background-color: #304489;
        }

        .rating-list li:nth-child(4) {
            background-color: #00AC8E;
        }

        .rating-list li:nth-child(5) {
            background-color: #6D2C91;
        }

        .rating-list li:nth-child(6) {
            background-color: #F5841F;
        }

        .rating-list li:nth-child(7) {
            background-color: #EF3A4F;
        }

@media (min-width: 1500px) {
    .content-wrapper > .content {
        padding: 0 3.75rem;
    }

    .content-header {
        padding: 15px 3.75rem;
    }
}

@media (min-width: 1200px) {
    .content-wrapper > .content {
        padding: 0 3.13rem;
    }

    .content-header {
        padding: 15px 3.13rem;
    }
}

@media (min-width: 992px) {
    .content-wrapper > .content {
        padding: 0 2.5rem;
    }

    .content-header {
        padding: 15px 2.5rem;
    }
}

@media (min-width: 1920px) {
    .col-xxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-xxl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-xxl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-xxl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .row-cols-xxl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-xxl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-xxl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xxl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xxl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xxl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xxl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xxl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xxl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xxl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xxl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xxl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xxl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xxl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xxl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xxl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xxl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xxl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xxl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xxl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xxl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xxl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .condiv > .content {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1200px) {
    .condiv > .content {
        padding: 0 3.13rem;
    }
}

@media (min-width: 1500px) {
    .condiv > .content {
        padding: 0 3.75rem;
    }
}


/* Input Styling */
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
/* --- INPUT FIELD STYLING --- */
.date-container {
    position: relative;
    width: 260px; /* Matching the calendar width */
}


.input-wrapper {
    position: relative;
}

/* The Input Box */
input#date-input {
    width: 100%;
    /* padding: 12px 40px 12px 15px;
            border: none;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: var(--text);*/
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
}

    input#date-input:focus {
        box-shadow: 0 4px 20px rgba(108, 92, 231, 0.15);
    }

/* The Calendar Icon */
.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    font-size: 14px;
}

/* --- JQUERY UI OVERRIDES (THE COMPACT DESIGN) --- */

/* 1. The Main Card */
.ui-datepicker {
    width: 260px !important; /* Fixed Compact Width */
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow);
    font-family: 'Poppins', sans-serif;
    z-index: 99999 !important;
    display: none;
}

/* 2. The Header (Month/Year Selectors) */
.ui-datepicker-header {
    background: transparent;
    border: none;
    padding: 0 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Dropdowns (Month & Year) */
.ui-datepicker-title {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 0 25px; /* Make space for arrows */
}

    .ui-datepicker-title select {
        border: 1px solid #dfe6e9;
        background: #f8f9fa;
        border-radius: 6px;
        padding: 2px 4px;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: var(--text);
        outline: none;
        cursor: pointer;
        height: 24px;
    }

        .ui-datepicker-title select:hover {
            border-color: var(--primary-color);
        }

/* 3. Navigation Arrows (Compact) */
.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    position: absolute !important;
    top: 0 !important;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-next {
    right: 0;
}

    .ui-datepicker-prev:hover, .ui-datepicker-next:hover {
        background: var(--primary-color);
    }

    /* Replace Text with FontAwesome Icons */
    .ui-datepicker-prev span, .ui-datepicker-next span {
        display: none;
    }

.ui-datepicker-prev::after {
    content: '\f053'; /* FA Left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--text);
}

.ui-datepicker-next::after {
    content: '\f054'; /* FA Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--text);
}

.ui-datepicker-prev:hover::after, .ui-datepicker-next:hover::after {
    color: #fff;
}

/* 4. Calendar Grid (Compact) */
.ui-datepicker-calendar {
    width: 100%;
    table-layout: fixed; /* Prevents overflow */
    border-collapse: collapse;
    margin: 0;
}

    .ui-datepicker-calendar th {
        text-align: center;
        color: #b2bec3;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 5px 0;
    }

    .ui-datepicker-calendar td {
        padding: 1px;
    }

        /* Day Buttons */
        .ui-datepicker-calendar td a {
            display: block;
            width: 100%;
            height: 30px; /* Small square */
            line-height: 30px;
            text-align: center;
            text-decoration: none;
            color: var(--text);
            font-size: 12px;
            font-weight: 500;
            border-radius: 6px;
            transition: 0.2s;
            margin: 0 auto;
        }

            .ui-datepicker-calendar td a:hover {
                background-color: #f1f2f6;
                color: var(--primary-color);
            }

            /* Selected Date */
            .ui-datepicker-calendar td a.ui-state-active {
                background-color: var(--primary-color);
                color: #ffffff;
                box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
                border: none;
            }

            /* Today's Date Highlight */
            .ui-datepicker-calendar td a.ui-state-highlight {
                background-color: #fff8d9;
                color: #e1b12c;
                border: 1px solid #ffeaa7;
            }

            /* If Today is also Selected */
            .ui-datepicker-calendar td a.ui-state-active.ui-state-highlight {
                background-color: var(--primary-color);
                color: #fff;
                border: none;
            }

.timeline > .time-label > span {
    background-color: var(--primary-color-lite);
    color: var(--primary-color)
}

.timeline .attach-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--primary-color);
}

.timeline > div > .timeline-item > .timeline-footer > a {
    color: var(--primary-color);
}
/*.condiv > .content {
    padding: 0 0.5rem;
}*/
