@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');

/*** New style for new UI ***/
:root {
    --text_color: #767483;
    --startlit_navy: #000A51;
    --electric_cobalt: #0A65E5;
    --luminous_fibre: #FF7B31;
    --vapor_blue: #73C0FF;
    --pure-black: #000000;
    --gas: #EC1414;
    --white: #ffffff;
    --green: #18B234;
    --light: #F3F3F9;
    --stroke: #DEE2E6;
    --primary_font: "Poppins", serif;
    --kt-toolbar-height: 42px;
    --kt-toolbar-height-tablet-and-mobile: 42px;
    --bs-gutter-y: 2rem;
    /* triangle dimension */
    --b: 2em;
    /* base */
    --h: 1em;
    /* height */
    --p: 50%;
    /* triangle position (0%:left 100%:right) */
    --r: 1.2em;
    /* the radius */
    --c: var(--electric_cobalt);
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px !important;
    font-weight: 400;
    font-family: var(--primary_font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
    color: #181c32;
}

body {
    background-color: #F3F3F9;
}

#root,
body,
html,
#kt_body {
    height: 100%;
}

a {
    text-decoration: none;
}

main {
    background-color: #EAEAEA;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-family: var(--primary_font);
    font-weight: 400;
}

.text-blue {
    color: var(--startlit_navy);
}

.text-dark-blue {
    color: var(--startlit_navy) !important;
}

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

.min-h-55px {
    min-height: 55px !important;
}

.min-h-25px {
    min-height: 25px !important;
}

.searchform-grouplabel {
    font-size: 15px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: 20px;
    padding-left: "10px";
}

.searchform-inputlabel {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: 20px;
    padding-bottom: "3px";
}



.btn.btn-custom {
    padding: 10px;
    min-height: 42px;
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
    border-radius: 13px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn.btn-custom.btn-sm {
    min-height: 1px;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: 400;
    font-size: 12px;
}

.btn.btn-custom:hover,
.btn.btn-custom:focus {
    outline: none;

}

.btn.btn-custom.vapor_blue,
.btn.btn-custom.vapor_blue:hover {
    background-color: var(--vapor_blue);
    color: var(--white);
}

.btn.btn-custom.black,
.btn.btn-custom.black:hover {
    background-color: var(--pure-black);
    color: var(--white);
}

.btn.btn-custom.luminous_fibre,
.btn.btn-custom.luminous_fibre:hover {
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.btn.btn-custom.startlit_navy,
.btn.btn-custom.startlit_navy:hover {
    background-color: var(--startlit_navy);
    color: var(--white);
}

.btn.btn-custom.electric_cobalt,
.btn.btn-custom.electric_cobalt:hover {
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.btn.btn-custom.success,
.btn.btn-custom.success:hover {
    background-color: var(--green);
    color: var(--white);
}

.btn.btn-custom.outline-light {
    background-color: transparent;
    border: 1px solid var(--stroke);
    color: var(--text_color);
}

.btn.btn-custom.btn-white-lumious-fiber,
.btn.btn-custom.btn-white-lumious-fiber:hover {
    background-color: var(--white);
    color: var(--electric_cobalt);
}

.btn.btn-custom.btn-white-startlit-navy,
.btn.btn-custom.btn-white-startlit-navy:hover {
    background-color: var(--white);
    color: var(--startlit_navy);
}

.btn.btn-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    height: calc(1.5em + 1.3rem + 2px);
    width: calc(1.5em + 1.3rem + 2px);
}

.btn.btn-icon.btn-xs {
    min-height: 28px;
    height: 28px;
    width: 28px;
    border-radius: 8px;
}

.btn.btn-icon.min-h-55px {
    min-width: 55px;
}

.bg-custom-light {
    background-color: var(--light) !important;
}

/*** Base Layout ***/
.flex-root {
    flex: 1;
}

.flex-column-fluid {
    flex: 1 0 auto;
}

.flex-column-auto {
    flex: none;
}

.flex-row-fluid {
    flex: 1 auto;
    min-width: 0;
}

.flex-stack {
    justify-content: space-between;
    align-items: center;
}

.min-h-100 {
    min-height: 100%;
}

.h-500 {
    max-height: 42vh;
    min-height: 305px;
    scroll-behavior: smooth;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .wrapper {
        transition: padding-left .3sease, margin-right .3sease;
    }

    .header-fixed .wrapper {
        padding-top: 50px;
    }

    .header-fixed .header .header-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .header-fixed .wrapper .header-wrapper .header-menu-wrapper-left {
        display: flex;
        gap: 5px;
    }

    .aside-enabled.aside-fixed .wrapper {
        transition: padding-left .3sease;
        padding-left: 250px;
    }

    .header-fixed.toolbar-fixed .wrapper {
        padding-top: calc(70px + var(--kt-toolbar-height));
    }
}

@media (min-width: 992px) {
    .wrapper2 {
        transition: padding-left .3sease, margin-right .3sease;
    }

    .aside-enabled.aside-fixed .wrapper2 {
        transition: padding-left .3sease;
        padding-left: 250px;
    }
}

.gap-5px {
    gap: 5px;
}

.gap-10px {
    gap: 10px;
}

.gap-30px {
    gap: 30px;
}

#kt_content_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
}

/*** Breadcrumbs ***/


.breadcrumb_wrapper .breadcrumb {
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--startlit_navy);
    display: flex;
    justify-content: center;
}

.breadcrumb_wrapper .breadcrumb li::after {
    content: '>';
    position: relative;
    padding: 0 10px;
}

.breadcrumb_wrapper .breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb_wrapper .breadcrumb li a {
    color: var(--text_color);
}

.breadcrumb_wrapper .breadcrumb li,
.breadcrumb_wrapper .breadcrumb li a {
    font-size: 13px;
    font-weight: 400;
}


/*** Aside Bar ***/
.aside {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 28px 0 rgba(82, 63, 105, .05);
    padding: 0;
}

.aside.aside-dark {
    background-color: #F6F8FA;
    border-right: 1px solid var(--stroke);
    transition: all 0.3s ease;
}

.menu-item {
    display: block;
    padding: 0;
}

.menu-item1 {
    display: block;
    padding-left: 5px;
}

.aside-menu .menu-item {
    padding: 0;
}

.menu,
.menu-wrapper {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-column {
    flex-direction: column;
    width: 100%;
}

.aside-menu-wrapper .menu-column {
    height: 100%;
    /* background-color: var(--electric_cobalt); */
    background-color: var(--startlit_navy);
    border-radius: 10px;
    overflow: hidden;
}

.menu-item .menu-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    flex: 0 0 100%;
    padding: .65rem 1rem;
    transition: none;
    outline: 0 !important;
}

.menu-item1 .menu-link1 {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    flex: 0 0 100%;
    padding: .65rem 1rem;
    transition: none;
    outline: 0 !important;
}

.menu-title-gray-800 .menu-item1 .menu-link1 {
    color: #3f4254;
}

.aside-menu .menu-item1 .menu-link1 {
    padding-top: 13px;
    padding-bottom: 13px;
}

.menu .menu-item1 .menu-link1 {
    padding-left: 10px;
    padding-right: 18px;
    gap: 8px;
}

.menu .menu-item1 .menu-link1 .menu-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.aside-dark .menu .menu-item1 .menu-link1.active,
.aside-dark .menu .menu-item1 .menu-link1:hover {
    transition: color .2sease, background-color .2sease;
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.menu-title-gray-800 .menu-item .menu-link {
    color: #3f4254;
}

.aside-menu .menu-item .menu-link {
    padding-top: 13px;
    padding-bottom: 13px;
}

.menu .menu-item .menu-link {
    padding-left: 8px;
    padding-right: 8px;
    gap: 8px;
}

.menu .menu-item .menu-link .menu-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.menu .menu-item .menu-link.active .menu-icon {
    /* background-color: rgba(255, 255, 255, 1); */
}

.menu-arrow {
    font-size: 12px;
}

.submenu {
    padding-top: 2px;
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.submenu-link {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    text-decoration: none;
    color: var(--white);
}

.submenu-link.active,
.submenu-link:hover {
    transition: color .2sease, background-color .2sease;
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.submenu-icon {
    margin-right: 8px;
    padding-left: 20px;
    min-width: 40px;
}

.submenu-title {
    font-size: 13px;

}

.aside-dark .menu .menu-item .menu-link.active {
    transition: color .2sease, background-color .2sease;
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.aside-dark .menu .menu-item:focus-within .menu-link,
.aside-dark .menu .menu-item:hover .menu-link {
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.aside-dark .menu .menu-item.active .menu-link {
    font-weight: bold;
    background-color: var(--electric_cobalt);
}


.aside-dark .menu .menu-item .menu-link {
    color: var(--white);
}

.aside-dark .menu .menu-item1 .menu-link1.active {
    transition: color .2sease, background-color .2sease;
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.aside-dark .menu .menu-item1:focus-within .menu-link1,
.aside-dark .menu .menu-item1:hover .menu-link1 {
    background-color: var(--electric_cobalt);
    color: var(--white);
}

.aside-dark .menu .menu-item.active1 .menu-link1 {
    font-weight: bold;
    background-color: var(--electric_cobalt);
}


.aside-dark .menu .menu-item1 .menu-link1 {
    color: var(--white);
}

.menu-item1 .menu-link1 .menu-title {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 70%;
}

.menu-item .menu-link .menu-title {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 70%;
}

.aside-dark .menu .menu-item .menu-link .menu-title {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
}

.aside-dark .menu .menu-item .menu-link1 .menu-title1 {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
}

.aside-dark .menu .menu-item .menu-link.active .menu-title {
    font-weight: 500;
}

.aside-menu-wrapper {
    padding: 5px;
    height: 100%;
}

.aside .aside-menu {
    max-height: calc(100% - 70px - 60px);
}

@media (min-width: 992px) {
    .aside {
        width: 250px;
        transition: width .3sease;
    }

    .aside-fixed .aside {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 100;
        overflow: hidden;
    }

    .aside .aside-logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 10px;
    }

    .aside .aside-menu {
        width: 250px;
    }
}

.aside .aside-logo .logo {
    max-width: 130px;
}

.aside-footer {
    background-color: var(--white);
    color: var(--text_color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/*** Header ***/
@media(min-width: 992px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
        height: 65px;
        transition: left .3sease;
    }

    .header-fixed .header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 100;
        background-color: #fff;
        height: 70px;
        padding: 0;
        box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .05);
    }

    .header-fixed.toolbar-fixed .header {
        box-shadow: none;
    }

    .aside-enabled.aside-fixed.header-fixed .header {
        left: 250px;
        transition: left .3sease;
    }

    .header .container-fluid {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.header-wrapper .dropdown-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--stroke);
    padding: 7px 10px;
    background-color: var(--light);
    border-radius: 10px;
}

.dropdown-choose-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.dropdown-choose-wrapper .dropdown-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--text_color);
}

.dropdown-choose-wrapper a.dropdown-toggle {
    font-size: 13px;
    font-weight: 600;
    color: var(--electric_cobalt);
    display: flex;
    align-items: center;
    gap: 20px;
}

.dropdown-choose-wrapper a.dropdown-toggle::after {
    content: url('../images/blue_dropdown.svg');
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
}

.left .dropdown-choose-wrapper {
    align-items: start;
}

.service .dropdown-choose-wrapper a.dropdown-toggle {
    color: var(--electric_cobalt);
    min-width: 120px;
}

.service .dropdown-choose-wrapper a.dropdown-toggle {
    justify-content: space-between;
}

.service .dropdown-choose-wrapper a.dropdown-toggle::after {
    content: url('../images/blue_dropdown.svg');
}

.item-icons {
    padding: 0 5px;
}

.dropdown-wrapper.profile {
    border: none;
    background: transparent;
    padding: 0;
}

.dropdown-wrapper.profile .dropdown-choose-wrapper {
    flex-direction: row;
    gap: 10px;
}

.profile .dropdown-choose-wrapper a.dropdown-toggle::after {
    display: none;
}

.profile .dropdown-choose-wrapper .dropdown-title {
    text-align: right;
}

.profile .dropdown-choose-wrapper .dropdown-title .profile-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--startlit_navy);
}

.profile .dropdown-choose-wrapper .dropdown-title .profile-name span {
    color: var(--electric_cobalt);
}

.profile .dropdown-choose-wrapper a.profile_pic {
    height: 40px;
    width: 40px;
    border-radius: 35px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile .dropdown-choose-wrapper .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

/*** Toolbar ***/
.toolbar {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: .5rem;
}

@media(min-width: 992px) {
    .toolbar-fixed .toolbar {
        height: var(--kt-toolbar-height);
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 99;
        box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .05);
    }

    .header-fixed.toolbar-fixed .toolbar {
        padding: 0;
        top: 70px;
        border-top: 1px solid #eff2f5;
    }

    .aside-enabled.aside-fixed.toolbar-fixed .toolbar {
        left: 250px;
        transition: left .3sease;
    }
}

/*** Nav ***/
.navi {
    padding: 0;
    margin: 0;
    display: block;
    list-style: none;
}

.navi .navi-item {
    padding: 0;
    display: block;
    list-style: none;
}

.navi .navi-item .navi-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

.navi .navi-item .navi-link .navi-icon {
    line-height: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.navi .navi-item .navi-link .navi-icon:before {
    line-height: 0;
}



.navi .navi-item .navi-link .navi-text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}


.navi .navi-item .navi-link .navi-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2rem;
    flex: 0 0 2rem;
}

.navi .navi-item .navi-link .navi-icon i {
    font-size: 1.25rem;
}

.navi .navi-item .navi-link .navi-icon svg {
    height: 22px;
    width: 22px;
}


.navi .navi-item .navi-link {
    font-size: 1rem;
}

.navi .navi-item .navi-link .navi-text {
    font-size: 1rem;
}

.navi .navi-item .navi-link {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    color: #3F4254;
}

.navi .navi-item .navi-link .navi-text {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.navi .navi-item .navi-link .navi-icon {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.navi .navi-item .navi-link .navi-icon i {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}


.navi .navi-item .navi-link .navi-icon i {
    color: #B5B5C3;
}

.navi .navi-item .navi-link:hover {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    color: var(--electric_cobalt);
}


.navi .navi-item .navi-link:hover .navi-text {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.navi .navi-item .navi-link:hover .navi-icon {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.navi .navi-item .navi-link:hover .navi-icon i {
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.navi .navi-item .navi-link:hover .navi-text,
.navi .navi-item .navi-link:hover .navi-icon i {
    color: var(--electric_cobalt);
}



/*** Content ***/
@media(min-width: 992px) {
    .content {
        padding: 15px 0;
    }
}

/*** Card ***/
.content .card.card-custom.card-xxl-stretch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.content .card.card-custom {
    border-radius: 10px;
    overflow: hidden;
}

.content .card.card-custom,
.content .card.card-custom .card-header {
    border-color: var(--stroke);
    background-color: var(--white);
}

.content .card.card-custom .card-body {
    padding: 15px;
}

.content .card.card-custom .card-header {
    padding: 5px 15px;
    min-height: 60px;
}

.card.card-custom>.card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 30px;
    background-color: transparent;
}

.card.card-custom>.card-header .card-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0.5rem 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


@media(min-width: 1400px) {
    .card.card-xxl-stretch {
        height: 100%;
    }
}


.content .card.card-custom .card-header.with_hr_tabs {
    padding: 0;
}

.content .card.card-custom .card-header .nav-tabs {
    border: none;
}

.content .card.card-custom .nav-tabs .nav-item button {
    font-size: 13px;
    color: var(--text_color);
    font-weight: 400;
    padding: 0 15px;
    height: 100%;
    border-radius: 0;
    border-right: 1px solid var(--stroke);
}

.content .card.card-custom .nav-tabs .nav-item button {
    border: none;
}

.content .card.card-custom .nav-tabs .nav-item button.active {
    background-color: var(--white);
    border: none;
    /* border-left: 1px solid var(--stroke);
    border-right: 1px solid var(--stroke); */
    border-bottom: 3px solid var(--startlit_navy);
    color: var(--startlit_navy);
}

.content .card.card-custom .nav-tabs.vr-tabs .nav-item button.active {
    background-color: var(--startlit_navy);
    color: var(--white);
}

.content .card.card-custom .nav-tabs .nav-item:first-child button.active {
    border-left: none;
}

.content .card.card-custom .card-header.with_hr_tabs .head_btn {
    padding: 0 15px;
}

.content .card.card-custom .card-header .card-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin: 0;
}

.content .card.card-custom .card-header.have-padd {
    padding-left: 20px;
    padding-right: 20px;
}


.content .card.card-custom .card-body h6,
.content .card.card-custom .card-body h5,
.content .card.card-custom .card-body h4,
.content .card.card-custom .card-body h3,
.content .card.card-custom .card-body h2 {
    margin: 0;
    color: var(--text_color);
}

.content .card.card-custom .card-body h6 {
    font-size: 12px;
    font-weight: 400;
}

.content .card.card-custom .card-body h5 {
    font-size: 13px;
    font-weight: 400;
}

.content .card.card-custom .card-body h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: 30px;
}

.content .card.card-custom .card-body h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: 40px;
}


/*** Service Card ***/
.service-card.card.card-custom .card-body h5 {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
    text-transform: uppercase;
}

.service-card.card.card-custom .card-body h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text_color);
    line-height: 40px;
}

.content .card.card-custom.service-card .card-body .col-with-border {
    padding: 10px 20px;
    border-right: 1px solid var(--stroke);
}

.content .card.card-custom.addon-card {
    /* min-height: 500px; */
}

.content .card.card-custom.addon-card .card-body {
    display: flex;
    align-items: stretch;
}

.content .card.card-custom .nav-tabs.vr-tabs .nav-item button {
    width: 100%;
}

.content .card.card-custom.addon-card .card-body .nav-tabs {
    height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--stroke);
}

.content .card.card-custom.addon-card .card-body .nav-tabs button {
    padding: 20px 25px;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--stroke);
}

.content .card.card-custom.addon-card .card-body .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #000a512b;
    width: 70px;
    height: 70px;
    font-size: 20px;
    font-weight: 600;
    color: var(--startlit_navy);
    flex-shrink: 0
}

.content .card.card-custom.addon-card .card-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--startlit_navy);
}

.content .card.card-custom.addon-card .card-body p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text_color);
    margin: 0;
}

.addon-item {
    margin-bottom: 15px;
    border: 1px solid var(--stroke);
    border-radius: 13px;
    padding: 10px;
}

/*** Message Box ***/
.message-box-card .card-body .message {
    background-color: var(--light);
    padding: 10px;
    border-radius: 3px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.message-box-card .card-body .message.readed {
    background-color: var(--white);
}

.message-box-card .card-body .message.payment {
    flex-direction: column;
    align-items: start;
    background: #fff;
    border: 1px solid var(--stroke);
    padding: 15px;
    max-width: 250px;
    border-radius: 13px;
    width: 100%;
}

.message-box-card .card-body .message.payment .amount {
    color: var(--electric_cobalt);
    font-size: 36px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 30px;
}

.message-box-card .card-body .message.payment .amount small {
    font-size: 12px;
    color: var(--text_color);
}

.message-box-card .card-body .message .subject {
    font-size: 13px;
    font-weight: 600;
    color: var(--text_color);
}

.message-box-card .card-body .message .text {
    font-size: 13px;
    font-weight: 400;
    color: var(--text_color);
}

.message-box-card .card-body .message .time {
    font-size: 12px;
    font-weight: 400;
    color: var(--text_color);
}

.indicator-m {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    font-size: 12px;
    font-weight: 500;
    background: var(--electric_cobalt);
    color: var(--white);
    border-radius: 20px;
    margin-left: 10px;
}

.card-footer {
    background-color: transparent;
    padding: 20px;
    border-color: var(--stroke);
}

/**** OTP Modal Style ****/
#verifyPhone input {
    height: 55px;
    width: 55px;
    background: var(--light);
    border-color: var(--stroke);
    text-align: center;
    font-size: 22px;
}

#verifyPhone .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-bottom: 30px; */
}

#verifyPhone .title h2,
#verifyPhone .title p {
    margin: 0;
}

#verifyPhone .title h2 {
    color: var(--electric_cobalt);
    font-size: 22px;
}

#verifyPhone .title p {
    color: var(--text_color);
    font-size: 13px;
}

#verifyPhone .title p span {
    font-weight: 600;
    color: var(--startlit_navy);
}

#verifyPhone .timer {
    font-size: 13px;
    color: var(--startlit_navy);
}

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

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

.text-dull {
    color: var(--text_color) !important;
    cursor: text;
}

/*** Sidebar Scroll ***/


.hover-scroll-overlay-y .menu-column {
    overflow-y: auto;
}

.hover-scroll-overlay-y .menu-column::-webkit-scrollbar {
    width: 0;
}

.hover-scroll-overlay-y .menu-column:hover::-webkit-scrollbar {
    width: 10px;
}

.hover-scroll-overlay-y .menu-column::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.hover-scroll-overlay-y .menu-column::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    outline: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card.subAcnt-card {
    color: var(--light) !important;
    border-radius: .5rem;
    border: 0;
    background-color: var(--electric_cobalt);
    box-shadow: 0 0.125rem 0 rgba(10, 10, 10, .04);
    position: relative;
    margin-block-end: 1.5rem;
    width: 100%;
}

/*** Table ***/
.table>:not(caption)>*>* {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
}

.table .text-blue {
    color: var(--startlit_navy);
}

.table .form-check-input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background-color: var(--light);
    border: none;
    border-radius: 4px;
}

.table .form-check-input:checked {
    background-color: var(--electric_cobalt);
}

.table .form-check-input:focus {
    box-shadow: none;
}

.v-align-middle td {
    vertical-align: middle !important;
}

.table .fa-right {
    color: var(--electric_cobalt);
    transition: all 0.4s ease;
}

.table .clickable[aria-expanded="false"] .fa-right {
    transform: rotate(0deg);
}

.table .clickable[aria-expanded="true"] .fa-right {
    transform: rotate(90deg);
}

.table tr[aria-expanded="true"] {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.table tr[aria-expanded="true"] td {
    background-color: var(--light);
    border-bottom: none;
}

.table tr.collapse {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.table tr.collapse td {
    border-top: 0px solid #dee2e6;
}

.rounded-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #D3E3FA;
    color: var(--electric_cobalt);
    font-size: 20px;
}

.size-96px {
    height: 96px;
    width: 96px;
}

.content .card.card-custom .card-body .table-list .table-list-item h6 {
    font-size: 13px;
    color: var(--startlit_navy);
    font-weight: 600;
}

.content .card.card-custom .card-body .table-list .table-list-item {
    color: var(--text_color);
    padding: 20px 0;
    border-bottom: 1px solid var(--stroke);
}

.content .card.card-custom .card-body .table-list .table-list-item:last-child {
    border-bottom: none;
}

/*** Custom Search ***/
.custom-search {
    min-width: 350px;
    border: 1px solid var(--stroke);
    border-radius: 13px;
    overflow: hidden;
    margin-top: 10px;
}

.custom-search .input-group .form-control {
    min-height: 55px;
    border: none;
    /* padding-left: 0; */
    font-size: 13px;
    color: var(--startlit_navy);
}

.custom-search .input-group .form-control::placeholder {
    color: var(--text_color);
}

.custom-search .input-group .input-group-text {
    background-color: transparent;
    border: none;
    /* padding: 0 10px 0 25px; */
    color: var(--text_color);
}

.custom-search .input-group .input-group-text2 {
    background-color: transparent;
    border: none;
    padding: 0 5px 0 25px;
    color: var(--text_color);
}

.custom-search .input-group .input-group-text3 {
    /* background-color: transparent; */
    border: none;
    padding: 20px 25px 20px 20px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    background-color: var(--electric_cobalt)
}

.custom-search2 {
    border: 1px solid var(--stroke);
    border-radius: 13px;
    overflow: hidden;
    margin-top: 10px;
}

.custom-search2 .input-group .form-control {
    min-height: 55px;
    border: none;
    /* padding-left: 0; */
    font-size: 13px;
    color: var(--startlit_navy);
}

.custom-search2 .input-group .form-control::placeholder {
    color: var(--text_color);
}

.custom-search2 .input-group .input-group-text {
    background-color: transparent;
    border: none;
    /* padding: 0 10px 0 25px; */
    color: var(--text_color);
}

#searchInput:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.cp {
    cursor: pointer;
}

.ndf {
    text-align: center;
    padding: "20px";
}

/*** Manage Payment ***/
.content .card.card-custom .manage-payment-card,
.content .card.card-custom .contact-card {
    flex-basis: 32.75%;
    background-color: var(--light);
    border-radius: 20px;
}

.content .card.card-custom .manage-payment-card {
    overflow: visible;
}

.content .card.card-custom .manage-payment-card .card-body {
    padding: 10px;
}

.content .card.card-custom .manage-payment-card .card-icon {
    background-color: var(--white);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    width: 96px;
}

/*** Contact Card ***/

.content .card.card-custom .contact-card .card-header {
    min-height: 140px;
}

.card.card-custom.contact-card .card-header {
    background: url('../images/contact-bg.png') no-repeat center center / cover !important;
    border: none;
}

.content .card.card-custom .contact-card .card-body {
    background-color: var(--white);
    padding: 10px;
}

.content .card.card-custom .contact-card .card-icon {
    margin-top: -50px;
}

.content .card.card-custom .contact-card .card-content h5 {
    font-size: 16px;
    font-weight: 500;
}

.content .card.card-custom .contact-card .card-content p {
    font-size: 13px;
    font-weight: 300;
}

.content .card.card-custom .contact-card .card-content p i {
    margin-right: 5px;
}

.content .card.card-custom .contact-card .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.content .card.card-custom .contact-card .contact-info .contact-info-item {
    flex: 1;
    padding: 10px 5px;
}

.content .card.card-custom .contact-card .contact-info .contact-info-item:first-child {
    border-right: 1px solid var(--stroke);
}

.content .card.card-custom .contact-card .contact-info .contact-info-item h6 {
    font-size: 13px;
    font-weight: 500;
}

.content .card.card-custom .contact-card .contact-info .contact-info-item p {
    font-size: 13px;
    margin: 0;
    color: var(--text_color);
}

/*** Modal ***/
.modal .modal-title {
    color: var(--startlit_navy);
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/*** Input ***/
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: 30px;
}

.form-group label.form-check-label {
    line-height: normal;
}

.form-group .form-control,
.form-group .form-select {
    border-color: var(--stroke);
    border-radius: 13px;
    padding: 10px 15px;
    border-width: 2px;
    font-size: 13px;
    font-weight: 400;
    color: var(--startlit_navy);
    min-height: 55px;
}

.form-group .input-group.password-group .form-control,
.input-group .form-control {
    border-right: none;
}

.form-group .input-group.password-group .input-group-text,
.input-group .input-group-text {
    border-radius: 0 13px 13px 0;
    background: transparent;
    border-left: none;
    border-color: var(--stroke);
    border-width: 2px;
}

.form-group .form-control::placeholder {
    color: var(--text_color);
}

.form-group .form-check .form-check-input {
    border-color: var(--stroke);
}

.form-group .form-check .form-check-label {
    font-size: 13px;
    font-weight: 400;
}

.form-group .form-control:focus,
.form-group .input-group.password-group .form-control:focus+.input-group-text {
    outline: none;
    box-shadow: none;
    border-color: var(--startlit_navy);
}

/*** Custom Checkbox & Radio Box ****/
.checkbox-alias {
    background-color: var(--light);
    z-index: 1;
    position: relative;
    transition: all 250ms ease-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    width: 100%;
}

.invisible-checkboxes input[type=checkbox],
.invisible-checkboxes input[type=radio] {
    display: none;
    /*   margin-right: -20px;
  position: relative;
  z-index: 2; */
}

.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias,
.invisible-checkboxes input[type=radio]:checked+.checkbox-alias {
    background-color: var(--startlit_navy);
}

.invisible-checkboxes span.check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #767483;
    opacity: .3;
}

.invisible-checkboxes span.check svg {
    opacity: 0;
}

.checkbox-alias h5 {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.checkbox-alias h5 img {
    width: 32px;
}

.checkbox-alias p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text_color);
    line-height: 30px;
    margin: 0;
}

.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias h5,
.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias p,
.invisible-checkboxes input[type=radio]:checked+.checkbox-alias h5,
.invisible-checkboxes input[type=radio]:checked+.checkbox-alias p {
    color: var(--white);
}

.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias svg,
.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias path,
.invisible-checkboxes input[type=radio]:checked+.checkbox-alias svg,
.invisible-checkboxes input[type=radio]:checked+.checkbox-alias path {
    fill: var(--white);
    fill-opacity: 1;
}

.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias svg,
.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias span.check,
.invisible-checkboxes input[type=radio]:checked+.checkbox-alias svg,
.invisible-checkboxes input[type=radio]:checked+.checkbox-alias span.check {
    opacity: 1;
    background-color: transparent;
}

/*** 28 Feb 2025 ***/
.form-box {
    padding: 20px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-box h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--electric_cobalt);
    margin: 0;
}

.form-check .form-check-input {
    margin-top: 2px;
    /* background-color: var(--light); */
    border: 2px solid var(--stroke);
    width: 18px;
    height: 18px;
    /* border: none; */
}

.form-check .form-check-input[type="checkbox"] {
    border-radius: 4px;
}

.form-check .form-check-label {
    margin-left: 5px;
}

.form-check .form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.form-check .form-check-input:checked {
    background-color: var(--electric_cobalt);
    border-color: var(--electric_cobalt);
}

.form-check.form-switch .form-check-input {
    width: 2em;
    background-image: var(--bs-form-switch-bg);
    background-position: left center;
    border-radius: 2em;
    border: 1px solid var(--stroke);
}

.form-check.form-switch .form-check-input:active,
.form-check.form-switch .form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.form-check.form-switch .form-check-input:checked {
    background-position: right center;
    --bs-form-switch-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e);
}

.form-check.form-switch .form-check-input:checked {
    background-color: var(--electric_cobalt);
    border-color: var(--electric_cobalt);
}

/*** Offcanvas ***/
.offcanvas-header h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--startlit_navy);
}

.offcanvas-box .offcanvas-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offcanvas-box .offcanvas-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
    margin: 0;
}

.offcanvas-box .form-check-list,
.offcanvas-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offcanvas-box .form-check-label {
    font-weight: 500;
}

.offcanvas-box {
    gap: 15px;
}

.billing-summary-card .card-footer button {
    flex: 1;
}

#makePayment .title .sub-heading {
    color: var(--electric_cobalt);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
}

#makePayment span {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
}

#makePayment .total span {
    color: var(--startlit_navy);
    font-size: 24px;
    font-weight: 500;
}

#makePayment .cardViewList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#makePayment .cardViewList .cardViewItem {
    max-width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

#makePayment .cardViewList .cardView {
    position: relative;
    /* Allows absolute positioning inside */
    background: url('../images/managePaymentcard.svg') no-repeat center center / cover;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /* Spreads content */
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    min-height: 210px;
    overflow: hidden;
}

#makePayment .cardViewList .cardView p {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}

#makePayment .cardViewList .cvButton {
    position: absolute;
    right: 10px;
    top: 20%;
    transform: translateY(-50%);
}

#makePayment .cardViewList .name {
    position: absolute;
    left: 10px;
    top: 70%;
    transform: translateY(-50%);
}

#makePayment .cardViewList .cardNum {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#makePayment .cardViewList .cvButton button {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
}

#makePayment .otherPayment .cardViewList .cardViewItem {
    max-width: calc(33.33% - 10px);

}

#makePayment .otherPayment .cardViewList .cardViewItem a img {
    width: 100%;
}

.creditDebitCard {
    margin-bottom: 30px;
}

.modalRightContent {
    border-left: 1px solid var(--stroke);
    padding: 0 20px 20px;
}

/*** Authentication ***/
.auth_box {
    background-color: var(--white);
    display: flex;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
}

.auth_box .col_half {
    flex: 1;
}

.auth_box .col_half.right {
    background: url('../images/auth_bg.jpg') no-repeat center center / cover;
    position: relative;
}

.auth_box .col_half.right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 10, 81, 0.8);
    z-index: 1;
}

.auth_box .col_half.right .col_half_right_wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    padding: 50px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.auth_box .col_half.right .col_half_right_wrapper h3 {
    color: var(--white);
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    line-height: 48px;
}

.auth_box .col_half.right .col_half_right_wrapper h6 {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 24px;
}

.auth_box_wrapper .select_options {
    flex-direction: column;
    gap: 20px;
}

.auth_box_wrapper {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    height: 100%;
}

.auth_box_wrapper .auth_box_wrapper_head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth_box_wrapper .auth_box_wrapper_head h4 {
    color: var(--startlit_navy);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 48px;
}

.auth_box_wrapper .auth_box_wrapper_head p {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    /* line-height: 48px; */
}

.auth_box_wrapper_body form,
form {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.auth_box_wrapper_body form p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text_color);
}

.auth_box_wrapper_body form a {
    font-size: 13px;
    font-weight: 400;
    color: var(--electric_cobalt);
}

.auth_box_wrapper_body form p a {
    font-weight: 600;
}

.auth_box .input-group {
    /* border: 2px solid var(--text_color);
    border-radius: 13px; */
    overflow: hidden;
}

.auth_box .input-group .btn {
    background: transparent;
    border: none;
}

.auth_box .select_options .form_group .form-control#signin-password {
    border: none;
}

.select_options .form_group .form-control {
    min-height: 55px;
}

/*** Signup ***/
.auth_box.signup .col_half.right {
    background: url('../images/signup_img.jpg') no-repeat center center / cover;
}

.auth_box .col_half.right::before {
    display: none;
}

.auth_box.signup .i_m_flex_container {
    display: flex;
    gap: 10px;
}

.auth_box.signup .auth_box_wrapper {
    max-width: 550px;
    padding: 100px 0;
}

.auth_box.signup .select_options .form_group label.form-check-label {
    font-size: 13px;
    color: var(--text_color);
    font-weight: 400;
}

.auth_box.signup .auth_box_wrapper .select_options {
    flex-direction: row;
    gap: 30px;
}

.select_options .form_group .form-control {
    min-height: 55px;
}

.auth_box_wrapper_body p a {
    text-decoration: none;
    color: var(--startlit_navy);
}

/*** Support ***/
.support-card {
    /* padding: 50px 60px; */
}

#GetSupport .support-card .title .big-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--electric_cobalt);
    margin: 0;
    margin-bottom: 15px
}

.support-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 13px;
    padding: 15px 0;
    color: var(--white);
    gap: 15px;
}

.support-boxes.call {
    background-color: var(--startlit_navy);
}

.support-boxes.ticket {
    /*background-color: var(--electric_cobalt);*/
    background-color: var(--startlit_navy);
}

.voice-button-listening {
    /* border-width: 2px;
    animation: borderAnimation 2s linear infinite; */
    position: relative;
}

.voice-button-listening::before {
    content: attr(data-title);
    position: absolute;
    top: -100%;
    width: 100%;
    /* Position just above the button */
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    max-width: 100%;
    text-align: center;
    padding: 1em;
    border-radius: var(--r) var(--r) min(var(--r), 100% - var(--p) - var(--b)/2) min(var(--r), var(--p) - var(--b)/2)/var(--r);
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%,
            min(100%, var(--p) + var(--b)/2) 100%,
            var(--p) calc(100% + var(--h)),
            max(0%, var(--p) - var(--b)/2) 100%);
    background: var(--c);
    border-image: conic-gradient(var(--c) 0 0) fill 0/ var(--r) calc(100% - var(--p) - var(--b)/2) 0 calc(var(--p) - var(--b)/2)/ 0 0 var(--h) 0;
    animation: backgroundAnimation 2s linear infinite;
    z-index: 1000;
}

.manage-plan-btn.voice-button-listening::before,
#makePayment .voice-button-listening::before {
    top: auto;
    bottom: -100%;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0, min(100%, var(--p) + var(--b) / 2) 0, var(--p) calc(-1* var(--h)), max(0%, var(--p) - var(--b) / 2) 0);
    border-image: conic-gradient(var(--c) 0 0) fill 0/ 0 calc(100% - var(--p) - var(--b)/2) var(--r) calc(var(--p) - var(--b)/2)/ var(--h) 0 0 0;
    animation: backgroundAnimation2 2s linear infinite;
}

#makePayment .voice-button-listening::before {
    bottom: -280%;
}

@keyframes backgroundAnimation {
    0% {
        background: var(--electric_cobalt);
        border-image: conic-gradient(var(--electric_cobalt) 0 0) fill 0/ var(--r) calc(100% - var(--p) - var(--b)/2) 0 calc(var(--p) - var(--b)/2)/ 0 0 var(--h) 0;
    }

    45% {
        background: var(--startlit_navy);
        border-image: conic-gradient(var(--startlit_navy) 0 0) fill 0/ var(--r) calc(100% - var(--p) - var(--b)/2) 0 calc(var(--p) - var(--b)/2)/ 0 0 var(--h) 0;
    }

    75% {
        background: var(--vapor_blue);
        border-image: conic-gradient(var(--vapor_blue) 0 0) fill 0/ var(--r) calc(100% - var(--p) - var(--b)/2) 0 calc(var(--p) - var(--b)/2)/ 0 0 var(--h) 0;
    }

    100% {
        background: var(--electric_cobalt);
        border-image: conic-gradient(var(--electric_cobalt) 0 0) fill 0/ var(--r) calc(100% - var(--p) - var(--b)/2) 0 calc(var(--p) - var(--b)/2)/ 0 0 var(--h) 0;
    }
}

@keyframes backgroundAnimation2 {
    0% {
        background: var(--electric_cobalt);
        border-image: conic-gradient(var(--electric_cobalt) 0 0) fill 0/ 0 calc(100% - var(--p) - var(--b)/2) var(--r) calc(var(--p) - var(--b)/2)/ var(--h) 0 0 0;
    }

    45% {
        background: var(--startlit_navy);
        border-image: conic-gradient(var(--startlit_navy) 0 0) fill 0/ 0 calc(100% - var(--p) - var(--b)/2) var(--r) calc(var(--p) - var(--b)/2)/ var(--h) 0 0 0;
    }

    75% {
        background: var(--vapor_blue);
        border-image: conic-gradient(var(--vapor_blue) 0 0) fill 0/ 0 calc(100% - var(--p) - var(--b)/2) var(--r) calc(var(--p) - var(--b)/2)/ var(--h) 0 0 0;
    }

    100% {
        background: var(--electric_cobalt);
        border-image: conic-gradient(var(--electric_cobalt) 0 0) fill 0/ 0 calc(100% - var(--p) - var(--b)/2) var(--r) calc(var(--p) - var(--b)/2)/ var(--h) 0 0 0;
    }
}

.border-primary {
    border: 2px solid var(--startlit_navy) !important;
    /* Adjust color as needed */
}

.border-transparent {
    border: 2px solid transparent;
}

/* Styles for the payment option container */
.paymentOption {
    position: relative;
    display: inline-block;
    width: "100%";
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Style the payment SVG */
.paymentOption img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Hide the checkbox */
.paymentOption input {
    display: none;
}

/* Round checkbox (placed on top-right of the SVG) */
.paymentOption .checkmark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid gray;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Change checkbox color and background when checked */
.paymentOption input:checked+.checkmark {
    background-color: var(--electric_cobalt);
    ;
    /* Blue when checked */
    border-color: var(--electric_cobalt);
}

/* Tick mark inside checkbox */
.paymentOption input:checked+.checkmark::after {
    content: "✔";
    font-size: 12px;
    color: white;

}

/* Background color change when selected */
.paymentOption input:checked~img {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
    transition: background 0.3s ease;
}

/* General Container */
.savedPaymentMethods .title .sub-heading {
    color: var(--electric_cobalt);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
}

.savedPaymentMethods span {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
}

.savedPaymentMethods .total span {
    color: var(--startlit_navy);
    font-size: 24px;
    font-weight: 500;
}

/* Card View List */
.savedPaymentMethods .cardViewList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual Card Item */
.savedPaymentMethods .cardViewList .cardViewItem {
    max-width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

/* Card Background */
.savedPaymentMethods .cardViewList .cardView {
    position: relative;
    background: url('../images/managePaymentcard.svg') no-repeat center center / cover;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    min-height: 210px;
    overflow: hidden;
}

/* General Container */
.savedPaymentMethods .title .sub-heading {
    color: var(--electric_cobalt);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
}

.savedPaymentMethods span {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
}

.savedPaymentMethods .total span {
    color: var(--startlit_navy);
    font-size: 24px;
    font-weight: 500;
}

/* Card View List */
.savedPaymentMethods .cardViewList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual Card Item */
.savedPaymentMethods .cardViewList .cardViewItem {
    max-width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

/* Card Background */
.savedPaymentMethods .cardViewList .cardView {
    position: relative;
    /* Allows absolute positioning inside */
    background: url('../images/managePaymentcard.svg') no-repeat center center / cover;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /* Spreads content */
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    min-height: 210px;
    overflow: hidden;
}

/* Text Styling */
.savedPaymentMethods .cardViewList .cardView p {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}

/* Card Number Position */
.savedPaymentMethods .cardViewList .cardNum {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Cardholder Name Position */
.savedPaymentMethods .cardViewList .name {
    position: absolute;
    left: 10px;
    top: 70%;
    transform: translateY(-50%);
}

/* Dropdown (Top-Right) */
.savedPaymentMethods .cardViewList .cardView .cardDropdown {
    position: absolute;
    top: 10px;
    right: 10px;
}

.savedPaymentMethods .cardViewList .cardView .cardDropdown .btn {
    background: transparent;
    border: none;
    font-size: 16px;
    color: white;
    padding: 5px;
}

.savedPaymentMethods .cardViewList .cardView .cardDropdown .dropdown-menu {
    min-width: 150px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.savedPaymentMethods .cardViewList .cardView .cardDropdown .dropdown-menu .navi-item {
    /* padding: 8px 12px; */
    cursor: pointer;
}

.savedPaymentMethods .cardViewList .cardView .cardDropdown .dropdown-menu .navi-item:hover {
    background-color: #f8f9fa;
}

.savedPaymentMethods .cardViewList .cardView .cardDropdown .navi-icon {
    margin-right: 8px;
    color: var(--dark-grey);
}

/* Other Payment Methods */
.savedPaymentMethods .otherPayment .cardViewList .cardViewItem {
    max-width: calc(33.33% - 10px);
}

.savedPaymentMethods .otherPayment .cardViewList .cardViewItem a img {
    width: 100%;
}

/**** 15 March 2025 ****/
/*** Message Box ***/
.min-h-1px {
    min-height: 1px !important;
}

.comments .card-body .message {
    padding: 10px 0;
    border-bottom: 1px solid var(--stroke);
}

.comments .card-body .message:last-child {
    border: none;
}

/*** Builder Dashboard ***/
.content .card.card-custom.service-card {
    border: none;
    background-color: transparent;
}

.content .card.card-custom.service-card .card-body .col-with-border {
    border: none;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.content .card.card-custom.service-card .card-body .col-with-border.service-tickets {
    background-color: var(--electric_cobalt);
}

.content .card.card-custom.service-card .card-body .col-with-border.properties {
    background-color: var(--electric_cobalt);
}

.content .card.card-custom.service-card .card-body .col-with-border.accounts {
    background-color: var(--vapor_blue);
}

.content .card.card-custom.service-card .card-body .col-with-border.support {
    background-color: var(--startlit_navy);
}

.content .card.card-custom.service-card .card-body .quick-access-item {
    gap: 20px;
}

.content .card.card-custom.service-card .card-body .quick-access-item h5 {
    color: var(--startlit_navy);
}

.content .card.card-custom.service-card .card-body .quick-access-item .circle {
    width: 80px;
    height: 80px;
    border: double 20px transparent;
    border-radius: 50%;
    background-image: linear-gradient(var(--electric_cobalt), var(--electric_cobalt)), radial-gradient(circle at bottom right, #FF6914, #FFA06B);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: none;
    position: absolute;
    right: -40px;
    top: -15px;
}

.content .card.card-custom.service-card .card-body .properties .quick-access-item .circle {
    background-image: linear-gradient(var(--electric_cobalt), var(--electric_cobalt)), radial-gradient(circle at bottom right, #093EC9, #4291FF);
}

.content .card.card-custom.service-card .card-body .accounts .quick-access-item .circle {
    background-image: linear-gradient(var(--vapor_blue), var(--vapor_blue)), radial-gradient(circle at bottom right, #3CA7FF, #91CEFF);
}

.content .card.card-custom.service-card .card-body .support .quick-access-item .circle {
    background-image: linear-gradient(var(--startlit_navy), var(--startlit_navy)), radial-gradient(circle at bottom right, #040C40, #111F84);
}

.content .card.card-custom.service-card .card-body .quick-main-services .quick-access-item {
    gap: 10px;
}

.content .card.card-custom.service-card .card-body .quick-main-services .quick-access-item .service-btns {
    background-color: var(--startlit_navy);
    padding: 5px 20px;
    min-height: 1px;
    width: fit-content;
    border-radius: 6px
}

.content .card.card-custom.service-card .card-body .quick-main-services .quick-access-item p {
    color: var(--white);
    font-size: 11px;
}

.content .card.card-custom.service-card .card-body .quick-main-services .col-with-border.accounts {
    background-color: var(--white);
}

.message-box-card .card-body .message.payment {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.message-box-card .card-body .message.payment .btn.btn.btn-custom {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 11px;
}

.message-box-card .card-body .message.payment.fiber .amount {
    color: var(--electric_cobalt);
}

.message-box-card .card-body .message.payment .left-content {
    min-width: 120px;

}

.message-box-card .card-body .message .subject {
    font-size: 11px;
}

.content .card.card-custom.service-card .card-body .account-service-tiles .col-with-border {
    height: 150px;
    padding: 0 30px;
    border: 1px solid var(--stroke);
}

.content .card.card-custom.service-card .card-body .account-service-tiles .col-with-border .account-service-tiles-item {
    gap: 30px;
}

.content .card.card-custom.service-card .card-body .account-service-tiles .col-with-border .account-service-tiles-item h5 {
    color: var(--startlit_navy);
    font-size: 32px;
}

.content .card.card-custom.service-card .card-body .account-service-tiles .col-with-border .account-service-tiles-item p {
    color: var(--text_color);
    font-size: 16px;
}


.account-service-action .navi .navi-item .navi-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px;
}

.account-service-action .navi .navi-item .navi-link .btn {
    min-width: 120px;
}

.table .form-check-input[type="checkbox"] {
    border: 1px solid var(--stroke);
}

/*** 18 March 2025 ***/
.custom-control.custom-radio.select_time_wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.select_time_wrapper label {
    background-color: var(--white);
    flex: 1;
    overflow: hidden;
}

.select_time_wrapper label span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text_color);
    background-color: var(--white);
    flex: 1;
    border: 1px solid var(--stroke);
    border-radius: 13px;
    overflow: hidden;
    cursor: pointer;
}

.select_time_wrapper label input {
    position: absolute;
    top: -20px;
}

.select_time_wrapper input:checked+span {
    background-color: var(--electric_cobalt);
    border-color: var(--electric_cobalt);
    color: var(--white);
}

.bg-error {
    background-color: #ff9800;
}

/*** 22 March 2025 ***/
/* .content .card.card-custom.annoucement-card {
    color: var(--white);


}

.content .card.card-custom.annoucement-card:nth-child(1n) {
    background-color: var(--startlit_navy);
}

.content .card.card-custom.annoucement-card:nth-child(2n) {
    background: var(--electric_cobalt);
} */

/* .content .card.card-custom.annoucement-card:nth-child(3n) {
    background: var(--vapor_blue);
} */
/* .content .card.card-custom.annoucement-card:nth-child(4n) {
    background: var(--vapor_blue);
} */
.annoucement-with-image {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    scroll-behavior: smooth;
}

/* Card Styling */
/* .announcementBody {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: 1rem;
    margin:0.5rem
  } */

/* Hover effect */
/* .announcementBody:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  } */


/* Image Styling */
.announcement-card-body {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    padding: 10px 0;
}

.annoucement-with-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.annoucement-title {
    color: var(--startlit_navy);
}

.annoucement-sub-title,
.annoucement-description {
    color: var(--text_color);
}

.annoucement-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.annoucement-title p,
.annoucement-sub-title p {
    margin-bottom: 7px;
}

.annoucement-sub-title {
    font-size: 13px;
    font-weight: 600;
    /* margin-bottom: 10px; */
}

.annoucement-description {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0px;
}

.annoucement-box-card .card-body {
    max-height: calc(100vh - 60px - 152px - 15px - 42px - 70px - 20px - 15px);
    overflow-y: auto;
}

.message-box-card .card-footer {
    padding: 10px 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-box-card .card-body {
    max-height: calc(100vh - 60px - 152px - 15px - 42px - 70px - 20px - 15px - 40px);
    overflow-y: auto;
}

/* .annoucement-box-card .card-body{
    max-height: calc(90vh + 61.8px);
    overflow-y: auto;

} */

/* chat open and close */
.chat-bar-open {
    text-align: center;
    position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 10000;
}

.chat-bar-close {
    display: none;
    text-align: center;
    position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 1000;
}

.chat-bar-open .close,
.chat-bar-close .close {
    background-color: var(--startlit_navy);
    width: 70px;
    cursor: pointer;
    height: 70px;
    padding: 15px;
    border-radius: 50%;
    border-style: none;
    vertical-align: middle;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 6px, rgb(0 0 0 / 20%) 0px 2px 24px;
    color: #fff;
    font-size: 28px;
}

.chat-bar-close .close {
    background-color: #fff;
    color: var(--text_color);
}




.chat-bar-close .close::after {
    position: absolute;
    content: "";
    top: 43px;
    left: 37px;
    transform: rotate(-51deg);
    border-left: 23px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid var(--electric_cobalt);
}

.chat-bar-close .close::after {
    border-top: 30px solid var(--white);
}


/* chat window 1 */
.chat-window {
    width: 332px;
    /* height: 280px; */
    z-index: 9999999;
    position: fixed;
    bottom: 120px;
    right: 54px;
    display: none;
}

.chat-window .hi-there {
    background-color: #fff;
    border-radius: 40px 40px 40px 0;
    padding: 28px 35px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 6px, rgb(0 0 0 / 20%) 0px 2px 24px;
}

.hi-there .p1 {
    font-size: 15px;
    font-weight: 600;
    color: var(--startlit_navy);
}

.hi-there .p2 {
    font-size: 13px;
    color: var(--text_color);
}

.new-conversation {
    background-color: var(--startlit_navy);
    border: 1px solid var(--startlit_navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 55px;
    min-height: 44px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 6px, rgb(0 0 0 / 20%) 0px 2px 24px;
}

.chat-window .start-conversation {
    padding: 15px 24px;
}

.chat-window .start-conversation h1 {
    font-size: 15px;
}

.chat-window .start-conversation p {
    font-size: 12px;
}

.chat-window .start-conversation button {
    cursor: pointer;
    border: none;
    border-radius: 20px;
    padding: 7px 30px;
    margin: 10px 0px;
    background-color: #13a884;
    color: white;
}

.chat-window .start-conversation button span {
    font-size: 13px;
}

.chat-window .start-conversation button i {
    font-size: 16px;
    position: relative;
    left: 6px;
    top: 3px;
}

/* chat window 2 */
.chat-window2 {
    display: none;
    width: 425px;
    border-radius: 18px;
    background-color: #fff;
    z-index: 9999999;
    position: fixed;
    bottom: 120px;
    right: 54px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 6px, rgb(0 0 0 / 20%) 0px 2px 24px;
    overflow: hidden;
}

.chat-window2 .chat-box-header {
    background-color: var(--startlit_navy);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.chat-window2 .chat-box-header .heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.chat-window2 .chat-box-header .heading a {
    color: var(--white);
}

.chat-window2 .chat-box-header .sub-heading {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
}

.chat-window2 .chat-box-header .sub-heading {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.chat-window2 .chat-box-header .tagline {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.chat-window2 .chat-box-content {
    min-height: 300px;
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-box .chat-message-item {
    display: inline-block;
}

.chat-box .chat-message-item .chat-message {
    max-width: 80%;
    min-width: 20%;
    padding: 12px;
    margin: 0px 5px;
    border-radius: 10px;
    font-size: 12px;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.chat-box .chat-message-item .chat-message .time {
    opacity: .4;
    margin-left: auto;
    font-size: 10px;
}

.chat-box .customer .chat-message {
    float: right;
    background-color: var(--startlit_navy);
    color: white;
}


.chat-box .assistant .circle {
    background-color: #4c5aa1;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    float: left;
    padding: 10px;
    margin-top: 10px;
    margin-right: 5px;
}

.chat-box .assistant .chat-message {
    float: left;
    background-color: #F2F2F2;
    color: #000;
}


.chat-window2 .chat-box-footer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-window2 .chat-box-footer .suggestions {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 3px;
    align-items: flex-end;
    justify-content: flex-end;
}

.chat-window2 .chat-box-footer .suggestions .suggestion-btns {
    background-color: #000a512b;
    color: var(--startlit_navy);
    border: none;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 11px;
}

.chat-window2 .chat-box-footer .suggestions .suggestion-btns.erase {
    background-color: var(--gas);
    color: var(--white);
}

.chat-window2 .chat-box-footer .suggestions .suggestion-btns-dis {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
    opacity: 0.7;
    border: none;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 11px;
}

.chat-window2 .input-box {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.chat-window2 .input-box .write-reply {
    width: 100%;
}

.chat-window2 .input-box textarea {
    resize: none;
}

/* manageplan addons */

.addons {
    max-height: 122px;
    overflow-y: auto;
}

.reason {
    margin-top: 1px;
    min-height: 110px;
}

.custom_search_input_left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    margin-left: 30px;
}

/* RESPONSIVE */
@media screen and (max-width: 396px) {
    .chat-window {
        right: 13px;
        bottom: 87px;
    }

    .hi-there {
        padding: 12px 30px;
    }

    .chat-window2 {
        right: 13px;
        bottom: 87px;
        height: 420px;
    }

    .chat-bar-open {
        bottom: 20px;
        right: 21px;
    }

    .chat-bar-close {
        bottom: 21px;
        right: 25px;
    }

    .message-box .assistant .arrow {
        margin-left: 41px;
    }
}

.ql-container {
    min-height: 100px;
    /* Adjust editor height */
    max-height: 500px;
    /* Optional: limit max height */
    overflow-y: hidden;
    /* Enable scrolling */
}

.billing-btns-container button {
    flex: 1 0 auto;
}

.addonLists {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.addonLists .addonListItems {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: var(--light);
    font-size: 12px;
    justify-content: space-between;
    border-radius: 10px;
}

.table tr i {
    transition: transform 0.3s ease-in-out;
}

.table tr[aria-expanded="false"] i {
    transform: rotate(-90deg);
}

.table tr[aria-expanded="tru"] i {
    transform: rotate(0deg);
}

.reason.duration-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reason.duration-filter .choice_boxes {
    flex: 1;
}

.reason.duration-filter .choice_boxes .checkbox-alias,
.reason.duration-filter .choice_boxes .checkbox-alias h5 {
    display: inline-block;
}

.reason.duration-filter .checkbox-alias {
    background-color: var(--light);
    border: 1px solid var(--stroke);
    color: var(--startlit_navy);
}

.reason.duration-filter .invisible-checkboxes .sub-radios input[type=radio] {
    display: inline-block;
}

.reason.duration-filter .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias,
.reason.duration-filter .invisible-checkboxes input[type=radio]:checked+.checkbox-alias {
    background-color: var(--startlit_navy);
    border: 3px solid var(--startlit_navy);
}

.reason.duration-filter .invisible-checkboxes input[type=radio]:checked+.checkbox-alias h5 {
    color: var(--white);
}

.annoucements .title .sub-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin-bottom: 10px;
}

header .item-icons {
    position: relative;
}


header .item-icons i,
.toolbar .item-icons i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 55px;
    font-size: 16px;
    background: var(--light);
    color: var(--text_color);
}

.toolbar .item-icons i {
    height: 36px;
    width: 36px;
}

header .item-icons i.mic-icon-on,
.toolbar .item-icons i.mic-icon-on {
    background-color: var(--gas);
    color: var(--white);
}

header .item-icons i.mic-icon-on::after,
.toolbar .item-icons i.mic-icon-on::after {
    content: '';
    width: 60px;
    height: 60px;
    border: 5px solid var(--gas);
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: 13px;
    animation: pulsate infinite 1.5s;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.3, 1.3);
        opacity: 0;
    }
}

/**** Employeee Dashboard ****/
.duration-filter .checkbox-alias,
.calendar-div {
    background-color: var(--white);
    border: 1px solid var(--stroke);
    height: 48px;
    padding: 10px 15px;
}

.invisible-checkboxes input[type=radio]:checked+.checkbox-alias {
    border-color: var(--startlit_navy);
}

.calendar-div {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color);
    font-size: 16px;
    border-radius: 10px;
}

.export {
    background-color: var(--green);
    border-color: var(--green);
}

.duration-filter .checkbox-alias h5 {
    /* color: var(--text_color); */
    color: var(--startlit_navy);
    font-size: 13px;
    font-weight: 500;
}

.card-body-content .card-body,
.card-body-content .card-body .card-body-item {
    display: flex;
}

.card-body-content .card-body .card-body-item {
    flex: 1;
    border-right: 1px solid var(--stroke);
    padding: 0 20px;
}

.card-body-content .card-body .card-body-item {
    justify-content: space-between;
}

.card-body-content .card-body .card-body-item:last-child {
    border: none;
    padding-right: 0;
}

.card-body-content .card-body .card-body-item:first-child {
    padding-left: 0
}

.card-body-content .card-body .card-body-item .total-sales {
    color: var(--startlit_navy);
    font-size: 28px;
    font-weight: 600;
}

.card-body-content .card-body .card-body-item .service-title {
    color: var(--startlit_navy);
    font-size: 16px;
    font-weight: 300;
}

.card-body-content .card-body .card-body-item .last-revenue,
.chart-card .year,
.chart-card .stat span {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 300;
}

.chart-card .card-title {
    flex-direction: column;
    align-items: flex-start !important;
}

.card-body-content .card-body .card-body-item .total-sales,
.chart-card .total {
    color: var(--startlit_navy);
    font-size: 22px;
    font-weight: 600;
}

.chart-card .card-header .card-title .sub-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--startlit_navy) !important;
}

.revenue-card .form-check .form-check-input {
    background-color: var(--light);
}

.revenue-card .form-check .form-check-label,
.revenue-card .form-select {
    font-size: 13px;
    font-weight: 600;
    color: var(--text_color);
}

.revenue-card .form-select {
    background-color: var(--light);
}

.arrow_box {
    background-color: var(--startlit_navy);
    color: var(--white);
    border-color: var(--startlit_navy);
    padding: 5px;
    outline: none;
    border-radius: 6px;
    box-shadow: none;
}

/*** Email Changes ***/
.text-cobalt-blue {
    color: var(--electric_cobalt) !important;
}

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

.content .card.card-custom.service-card .card-body .col-with-border.service-tickets,
.content .card.card-custom.service-card .card-body .col-with-border.properties,
.content .card.card-custom.service-card .card-body .col-with-border.accounts,
.content .card.card-custom.service-card .card-body .col-with-border.support {
    background-color: var(--white);
    border: 1px solid var(--stroke);
    transition: all 0.3s linear;
}

.content .card.card-custom.service-card .card-body .col-with-border.service-tickets:hover,
.content .card.card-custom.service-card .card-body .col-with-border.properties:hover,
.content .card.card-custom.service-card .card-body .col-with-border.accounts:hover,
.content .card.card-custom.service-card .card-body .col-with-border.support:hover {
    background-color: var(--startlit_navy);
}

.content .card.card-custom.service-card .card-body .col-with-border.service-tickets:hover h5,
.content .card.card-custom.service-card .card-body .col-with-border.properties:hover h5,
.content .card.card-custom.service-card .card-body .col-with-border.accounts:hover h5,
.content .card.card-custom.service-card .card-body .col-with-border.support:hover h5 {
    color: var(--white);
}

.content .card.card-custom.service-card .card-body .col-with-border.service-tickets:hover svg path,
.content .card.card-custom.service-card .card-body .col-with-border.properties:hover svg path,
.content .card.card-custom.service-card .card-body .col-with-border.accounts:hover svg path,
.content .card.card-custom.service-card .card-body .col-with-border.support:hover svg path {
    stroke: var(--white);
}

.content .card.card-custom.service-card .card-body .col-with-border.service-tickets .circle,
.content .card.card-custom.service-card .card-body .col-with-border.properties .circle,
.content .card.card-custom.service-card .card-body .col-with-border.accounts .circle,
.content .card.card-custom.service-card .card-body .col-with-border.support .circle {
    background-image: linear-gradient(var(--electric_cobalt), var(--electric_cobalt)), radial-gradient(circle at bottom right, #093EC9, #4291FF);
    transition: all 3s linear;
}

.content .card.card-custom.service-card .card-body .col-with-border.service-tickets:hover .circle,
.content .card.card-custom.service-card .card-body .col-with-border.properties:hover .circle,
.content .card.card-custom.service-card .card-body .col-with-border.accounts:hover .circle,
.content .card.card-custom.service-card .card-body .col-with-border.support:hover .circle {
    background-image: linear-gradient(var(--startlit_navy), var(--startlit_navy)), radial-gradient(circle at bottom right, #040C40, #111F84);
}

.box_wrapper {
    flex-basis: 50%;
}

.auth_box_wrapper .select_options {
    flex-direction: column;
    gap: 20px;
}

/*** Plans ***/
.plans_form .invisible-checkboxes {
    display: flex;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.plans_form .plans_checkbox-alias {
    background-color: var(--light);
    z-index: 1;
    position: relative;
    transition: all 250ms ease-out;
    cursor: pointer;
    /* display: inline-block; */
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    color: var(--startlit_navy);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plans_form .plans_checkbox-alias .plan_head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.plans_form .invisible-checkboxes .plans_checkbox-alias input[type=checkbox] {
    display: none;
}

.plans_form .invisible-checkboxes .plans_checkbox-alias span.check {
    position: absolute;
    top: 15px;
    right: 15px;
}

.plans_form .plans_checkbox-alias h6 {
    font-size: 12px;
}

.plans_form .plans_checkbox-alias h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin: 0;
}

.plans_form .plans_checkbox-alias h5 small {
    font-size: 10px;
}

.plans_form .plans_checkbox-alias h6 {
    margin: 0;
    color: var(--startlit_navy);
}

.plans_form .plans_checkbox-alias p {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: 30px;
    margin: 0;
}

.plans_form .invisible-checkboxes input[type=checkbox]:checked+.plans_checkbox-alias h5,
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.plans_checkbox-alias h6,
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.plans_checkbox-alias p {
    color: var(--white);
}

.plans_form .invisible-checkboxes input[type=checkbox]:checked+.plans_checkbox-alias svg,
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.plans_checkbox-alias path {
    fill: var(--white);
    fill-opacity: 1;
}

.plans_form .invisible-checkboxes input[type=checkbox]:checked+.plans_checkbox-alias {
    background-color: var(--startlit_navy);
    color: var(--white);
}

.plans_form .invisible-checkboxes ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plans_form .invisible-checkboxes ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.plans_form .box_wrapper {
    max-width: 48%
}

.plan_list svg path {
    fill: var(--startlit_navy);
}

/*** Title ***/
.custom_title {
    margin-bottom: 30px;
}

.custom_title .heading {
    font-size: 23px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin: 0;
    line-height: 30px;
}

/*** Fiber Operator ***/
.duration-filter .critical .checkbox-alias {
    border-color: #EC1414;
}

.duration-filter .critical .checkbox-alias h5 {
    color: #EC1414;
}

.duration-filter .major .checkbox-alias {
    border-color: #FF9500;
}

.duration-filter .minor .checkbox-alias h5 {
    color: #FF9500;
}

.duration-filter .minor .checkbox-alias {
    border-color: #FFCC00;
}

.duration-filter .major .checkbox-alias h5 {
    color: #FFCC00;
}

.duration-filter .good .checkbox-alias {
    border-color: #18B234;
}

.duration-filter .good .checkbox-alias h5 {
    color: #18B234;
}

.duration-filter .critical .invisible-checkboxes input[type=radio]:checked+.checkbox-alias h5,
.duration-filter .major .invisible-checkboxes input[type=radio]:checked+.checkbox-alias h5,
.duration-filter .minor .invisible-checkboxes input[type=radio]:checked+.checkbox-alias h5,
.duration-filter .good .invisible-checkboxes input[type=radio]:checked+.checkbox-alias h5 {
    color: var(--white);
}

.duration-filter .critical .invisible-checkboxes input[type=radio]:checked+.checkbox-alias {
    background-color: #EC1414;
    border-color: #EC1414;

}

.duration-filter .major .invisible-checkboxes input[type=radio]:checked+.checkbox-alias {
    background-color: #FF9500;
    border-color: #FF9500;
}

.duration-filter .minor .invisible-checkboxes input[type=radio]:checked+.checkbox-alias {
    background-color: #FFCC00;
    border-color: #FFCC00;
}

.duration-filter .good .invisible-checkboxes input[type=radio]:checked+.checkbox-alias {
    background-color: #18B234;
    border-color: #18B234;
}

.content .regions .card.card-custom.critical .card-body {
    border-bottom: 6px solid #EC1414;
}

.content .regions .card.card-custom.major .card-body {
    border-bottom: 6px solid #FF9500;
}

.content .regions .card.card-custom.minor .card-body {
    border-bottom: 6px solid #FFCC00;
}

.content .regions .card.card-custom.good .card-body {
    border-bottom: 6px solid #18B234;
}

/**** 8 Apr ****/
.cart {
    position: relative;
}

.cart span {
    position: absolute;
    bottom: 10px;
    left: 5px;
    height: 16px;
    width: 16px;
    background-color: var(--electric_cobalt);
    color: var(--white);
    font-size: 12px;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbar .cart span {
    bottom: 3px;
    left: 5px;

}

.icon-wrapper {
    width: 40px;
    height: 40px;
}

.folder-card {
    background-color: #f9f9f9;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.folder-card:hover {
    background-color: #f1f1f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/*** Pagination ***/
.pagination {
    --bs-pagination-color: var(--startlit_navy);
    --bs-pagination-hover-border-color: var(--startlit_navy);
    --bs-pagination-focus-color: var(--startlit_navy);
    --bs-pagination-active-bg: var(--startlit_navy);
}

.active>.page-link,
.page-link.active {
    border-color: var(--startlit_navy);
}

.page-link:hover {
    color: var(--startlit_navy);
    border-color: var(--startlit_navy);
}

.active .page-link:hover {
    /* color: var(--white); */
}

.btn-outline-primary {
    --bs-btn-color: var(--startlit_navy);
    --bs-btn-border-color: var(--startlit_navy);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--startlit_navy);
    --bs-btn-hover-border-color: var(--startlit_navy);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--startlit_navy);
    --bs-btn-active-border-color: var(--startlit_navy);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--startlit_navy);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--startlit_navy);
    --bs-gradient: none;
}

.content .card.card-custom.service-card .card-body .col-with-border:hover .service-btns {
    background-color: var(--white);
    color: var(--startlit_navy);
}

/*** 15 Apr ***/
.accordian-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--startlit_navy);
    margin-bottom: 5px;
}

.accordion-item:not(:first-of-type) {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.card-scrollable-y {
    max-height: calc(100vh - 90px - 42px - 30px - 80px);
    overflow-y: auto;
}

.address-box {
    background-color: var(--light);
    padding: 15px;
    border-radius: 13px;
}

.info-box {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-box-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--startlit_navy);
}

.info-box .info-box-description,
.info-box .info-box-description a {
    font-size: 13px;
    font-weight: 400;
    color: var(--startlit_navy);
}

.info-box .emergency {
    padding: 2px;
    background-color: red;
    color: white;
    font-weight: 700;
    padding-left: 5px;
}

.info-box .emergency-number {
    padding: 2px;
    background-color: red;
    color: white !important;
    font-weight: 700 !important;
    padding-left: 5px;
}

.auth_box.forgot-box .col_half.right {
    background: url('../images/forgot-bg.jpg') no-repeat center center / cover;
}

.auth_box .otp-group {
    display: flex;
    /* gap: 10px; */
    justify-content: space-between;
}

.auth_box .otp-group .otp-input {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--startlit_navy);
    background-color: var(--light);
    border: none;
}

.state-title {
    font-size: 20px;
    color: var(--startlit_navy);
    font-weight: 600;
}

.state-description {
    font-size: 13px;
    color: var(--text_color);
    font-weight: 400;
}

.unread-message td {
    background-color: var(--light);
}

.message-compact-view-card {
    background-color: var(--light) !important;
}

.message-compact-view-card.readed {
    background-color: var(--white) !important;
}

.message-compact-view {
    display: flex;
}

.message-compact-view .user-name,
.message-compact-view .time {
    min-width: 120px;
}

.message-compact-view .time {
    text-align: end;
    color: var(--text_color);
    font-weight: 400;
    font-size: 12px;
}

.message-content {
    min-width: 70%;
}

.message-compact-view .user-name {
    color: var(--startlit_navy);
    font-weight: 500;
    min-width: 14%;
}

.message-compact-view .subject {
    color: var(--startlit_navy);
    font-weight: 500;
}

.message-compact-view .description {
    color: var(--text_color);
    font-weight: 400;
    font-size: 13px;
}

.profile .dropdown-toggle::after {
    display: none;
}

/*** 15/5/2025 ***/
.location .form-control .MuiInputBase-formControl {
    max-height: 30px;
    padding: 0px;
    border-color: #dee2e6;
    border-radius: 0.375rem;
}

.location .MuiInputBase-formControl .MuiAutocomplete-input,
.location .MuiInputBase-formControl fieldset {
    /* padding: 0px !important;
    height: 30px; */
    border-color: #dee2e6;
    border-radius: 0.375rem;
}

.dropdown-choose-wrapper.location {
    width: 250px;
}

@media (min-width: 1600px) {
    .dropdown-choose-wrapper.location {
        width: 350px;
    }
}

.dropdown-choose-wrapper.phone,
.dropdown-choose-wrapper.email {
    width: 150px;
}

.page-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
}

.breadcrumb_wrapper .breadcrumb li a.breadcrumb-link {
    color: var(--startlit_navy);
}

.toolbar .toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content .user-card.card.card-custom .card-header {
    align-items: center;
}

.content .user-card.card.card-custom .card-header .custom-search {
    margin: 0;
}

.content .card.card-custom .card-header {
    align-items: center;
}

.custom-search {
    margin-top: 0;
}

.content .card.card-custom .with_hr_tabs .nav-tabs .nav-item button {
    min-height: 60px;
}

#managePayment .modal-header {
    border-color: transparent;
}

/*** Custom Payment Method Card ***/
.custom-title .heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--startlit_navy) !important;
    margin-bottom: 10px !important;
}

.content .card.card-custom .payment-method-card {
    background-color: var(--white);
    border: 2px dashed var(--stroke);
    border-radius: 4px;
    margin-bottom: 15px;
}

.content .card.card-custom .payment-method-card .card-icon {
    background-color: var(--white);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 10px;
}

.content .card.card-custom .payment-method-card .card-icon img {
    /* max-height: 28px; */
    width: 45px;
}

.content .card.card-custom .payment-method-card p {
    font-size: 14px;
}

.content .card.card-custom .payment-method-card p.text-dark-blue {
    font-weight: 600;
}

.payment-method-modal .payment-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid var(--stroke);
}

.payment-method-modal .nav-pills .nav-link {
    background-color: var(--light);
    border: 1px solid var(--stroke);
    color: var(--text_color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    border-radius: 7px;
    width: 300px;
}

.payment-method-modal .nav-pills .nav-link .custom-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.payment-method-modal .nav-pills .nav-link.active .custom-radio-circle {
    border: 1px solid var(--startlit_navy);
    background-color: var(--startlit_navy);
}

.payment-method-modal .nav-pills .nav-link.active .custom-radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 29/05/2025 iisue credit  */

.search-filters .form-control,
.search-filters button.btn.btn-custom {
    height: 40px;
    border-radius: 4px;
}

.credit-search-box .form-control,
.credit-search-box button.btn.btn-custom {
    min-height: 1px;
    height: 30px;
    border-radius: 4px;
}

.credit-search-box button.btn.btn-custom {
    flex: 1 0 auto;
}

.header-wrapper .dropdown-wrapper.centric-search .form-control,
.header-wrapper .dropdown-wrapper.centric-search .submit-btns button.btn.btn-custom {
    height: 30px;
    background-color: var(--white);
}

.header-mobile {
    display: none;
}
input[type="checkbox"]:disabled{
    pointer-events: unset;
    cursor: not-allowed;
    background-color: var(--bs-secondary-bg);
}
.MuiIconButton-edgeEnd,
.MuiIconButton-edgeEnd:hover{
    border-radius: 0px !important;
}