/********** Template CSS **********/
:root {
    --primary: #0082C6;
    --primary-rgb: 0 130 198;
    --bs-primary: #0082C6;
    --secondary: #00A8E5;
    --secondary-rgb: 0 128 132;
    --bs-secondary: #00A8E5;
    --light: #F1F2F3;
    --dark: #43474F;
    --dark-gray: #525a63;
    --light-primary: #5d75a21a;
    --primaryLight: #747884;
    --primaryDark: #363D4D;
    --neutral: #848A94;
    --neutralLight: #A0A4AC;
    --neutral60: #9297A0;
    --neutral90: #E4E5E7;
    --neutral95: #F1F2F3;
    --tw-text-opacity: 1;
    --opacity-100: 1;
    --opacity-90: 0.9;
    --opacity-80: 0.8;
    --opacity-70: 0.7;
    --opacity-60: 0.6;
    --opacity-50: 0.5;
    --opacity-40: 0.4;
    --opacity-30: 0.3;
    --opacity-20: 0.2;
    --opacity-10: 0.1;
    --opacity-0: 0;
}
html, body, wrapper {
    height: 100%;
    margin: 0;
}

.content {
    min-height: 100%;
}

.content-inside {
    padding: 20px;
    padding-bottom: 50px;
}

.footer {
    height: 50px;
    margin-top: -50px;
}
body {
    font-family: "Rubik", sans-serif;
    background-color: #F7F7F8;
}

a {
    text-decoration: none;
    color: var(--primary);
}
.category-tag:hover {
    background-color: rgb(var(--primary-rgb) / var(--opacity-10));
}
a:hover {
    color: var(--secondary);
}
button:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
}

.e-lastrowcell {
    font-size: 20px; /* Adjust size as needed */
    font-weight: bold;
    text-align: center;
    padding: 15px;
}

.form-control {
    text-align: start;
    direction: ltr;
}
.bg-light {
    background-color: var(--light) !important;
}
.btn-light {
    background-color: var(--light-primary);
}
/* For right-to-left languages (if needed) */
[dir="rtl"] .form-control {
    text-align: start;
    direction: rtl;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-light {
    background-color: var(--light) !important;
}
.bg-dark {
    background-color: var(--dark) !important;
}
.btn-dark {
    background-color: var(--dark) !important;
}
.bg-neutral95 {
    background-color: var(--neutral95);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-dark {
    color: var(--dark) !important;
}
.text-primaryLight {
    color: var(--primaryLight);
}

.text-primayDark {
    color: var(--primaryDark);
}
.text-neutral {
    color: var(--neutral);
}
.text-neutralLight {
    color: var(--neutralLight);
}
.text-neutral60 {
    color: var(--neutral60);
}

.border-neutral90 {
    border-color: var(--neutral90);
}}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

span.e-input-group {
    height: 40px !important;
}

.sticky-top {
    z-index: 1000;
}

.field-validation-error {
    font-size: 12px;
}

.fs-11 {
    font-size: 11px;
}
.fs-12 {
    font-size: 12px;
    line-height: 18px;
}
.fs-13 {
    font-size: 13px !important;
    line-height: 19px;
}
.fs-14 {
    font-size: 14px !important;
    line-height: 20px;
}
.fs-15 {
    font-size: 15px;
    line-height: 21px;
}
.fs-16 {
    font-size: 16px;
    line-height: 22px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: all .1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    gap: 0.75rem;
    cursor: pointer;
}

.btn-lg {
    height: 48px;
    padding: 0 24px;
    font-size: 18px;
}

.btn-xlg {
    height: 64px;
    padding: 0 24px;
    font-size: 24px;
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn.btn-secondary {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn:hover.btn-primary {
    filter: brightness(1.1);
}

.btn:hover.btn-secondary {
    background-color: #ffffff;
    color: var(--primary);
}
.btn-light {
    background-color: var(--light);
}
.btn-link {
    padding: 0;
    text-decoration: none;
    color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

.btn-light-secondary {
    background: #F1F2F3;
    color: #747884;
    border-radius: 4px !important;
    padding: 12px 14px !important;
    height: 40px !important;
}
.btn-light-secondary:hover {
    background-color: rgb(var(--primary-rgb) / var(--opacity-10));
    color: var(--primary) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.login-container {
    max-width: 100%;
}

.login-logo {
    width: 200px;
}

@media (min-width: 768px) {
    .login-container {
        max-width: 680px;
    }

    .login-logo {
        width: 250px;
    }
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: #FFFFFF;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--dark);
    font-weight: 500;
    border-left: 3px solid var(--light);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: #FFFFFF;
    border-color: var(--primary);
}
text-dark-gray {
    color: var(--dark-gray);
}
.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active  {
    color: var(--primary);
}
.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}
html[dir="rtl"] .footer .btn.btn-link {
    text-align: right !important;
}
.page-header {
    height: 140px !important;
    /* Adjust the size to make it smaller */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
    /* Optional: Center any content inside */
}
html[dir="rtl"] .header-carousel .container::before, .header-carousel .container::after, .page-header .container::before, .page-header .container::after {
    left: unset;
    right: 0
}

html[dir="ltr"] .header-carousel .container::before, .header-carousel .container::after, .page-header .container::before, .page-header .container::after {
    left: 0;
    right: unset
}
@media (max-width: 768px) {
    .nav-pills {
        flex-direction: column
    }
    .navbar {
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        padding: 10px !important;
    }

    .navbar-collapse {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .navbar-brand {
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
    }

    .bi-bell {
        font-size: 1.2rem !important;
    }

    .badge {
        font-size: 0.6rem !important;
        padding: 3px 5px !important;
        top: 0 !important;
        right: 0 !important;
    }

    .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        text-align: left !important;
        gap: 10px !important;
    }

    .nav-item {
        width: 100% !important;
        text-align: left !important;
    }

    .custom-dropdown .dropdown-menu {
        width: 100% !important;
        text-align: left !important;
    }

    .custom-dropdown .dropdown-item {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .brand-image {
        max-width: 150px !important;
        height: auto !important;
    }

    .header-main {
        gap: 1rem;
        flex-direction: column;
    }

    .header-left {
        width: 100%
    }

    .header-right {
        flex-direction: column;
    }

    .header-button {
        width: 100%
    }
}

@media (max-width: 480px) {

    .navbar {
        padding: 5px !important;
    }

    .nav-item {
        text-align: center !important;
    }

    .dropdown-content {
        text-align: center !important;
    }

    .header-left {
        width: 100%
    }

    .header-right {
        flex-direction: column;
    }

    .header-button {
        width: 100%
    }
}


.header-main {
    display: flex;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.e-content{
    min-height:400px;
}
table {
    margin-top: 50px;
}
.accordion-button {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFFFFF !important;
    border: none !important; /* To remove the border */
}
 
    .accordion-button:focus {
        box-shadow: none !important; /* Removes focus outline or shadow */
        outline: none !important; /* Ensures no outline appears */
    }
.category-tag {
    cursor: pointer;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    background-color: var(--primary);
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    transition: all 0.1s ease;
}

    .category-tag:hover {
        filter: brightness(1.2);
    }
    .category-tag.active {
        background-color: rgb(var(--primary-rgb) / var(--opacity-10));
        color: var(--primary);
    }
   /* .category-tag.active {
        background-color: var(--dark);
    }*/
.container-header {
    width: 100vw;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    background-color: white;
    height: 90px;
}
.container-xxl {
    /* background-color: var(--light) !important;*/
    max-width: 1513px !important; 
}
.logo-div {
    width: 208px;
    height: 48px;
    border-right: 1px solid #E4E5E7;
}
.logo-img {
    width: 130px;
}
.bg-light {
    background-color: var(--light-primary) !important;
}

.btn-header {
    background-color: transparent;
    border: none;
}
.btn-header:hover, .btn-header.active {
    background-color: var(--light-primary) !important;
    color: black !important;
    border:none;
}
.title-font {
    font-size: 22px;
    line-height: 32px;
}
.dropdown-content {
    border: 1px solid #eeeeee;
}
/* jQuery Toast */
.jq-toast-wrap {
    width: 340px !important;
}

.jq-icon-success {
    background-color: #b6f8c4 !important;
    border-color: #b6f8c4 !important;
    color: #0d0908 !important;
    font-family: "Rubik", sans-serif !important;
}

.jq-icon-error {
    background-color: #ffb7b7 !important;
    border-color: #ffb7b7 !important;
    color: #0d0908 !important;
    font-family: "Rubik", sans-serif !important;
}

.jq-icon-info {
    background-color: #b2e7f5 !important;
    border-color: #b2e7f5 !important;
    color: #0d0908 !important;
    font-family: "Rubik", sans-serif !important;
}

.jq-icon-warning {
    background-color: #fae7c7 !important;
    border-color: #fae7c7 !important;
    color: #0d0908 !important;
    font-family: "Rubik", sans-serif !important;
}

.jq-toast-single h2 {
    font-family: "Rubik", sans-serif !important;
    font-weight: 500 !important;
    margin: 0 0 4px !important;
}

.jq-toast-single, .jq-toast-loader {
    border-radius: 8px !important;
}

.jq-icon-success .jq-toast-loader {
    background-color: #a1eeb2 !important;
}

.jq-icon-error .jq-toast-loader {
    background-color: #f4a4a4 !important;
}

.jq-icon-info .jq-toast-loader {
    background-color: #94dcf0 !important;
}

.jq-icon-warning .jq-toast-loader {
    background-color: #f9dcac !important;
}

.close-jq-toast-single {
    top: 18px !important;
    right: 14px !important;
    font-size: 20px !important;
    color: #3e3c38 !important;
}

.jq-has-icon {
    padding: 16px 10px 16px 50px !important;
    background-size: 22px;
    background-position: 16px !important;
}

.jq-icon-success {
    background-image: url("../../images/toast-success.png") !important;
}

.jq-icon-error {
    background-image: url("../../images/toast-error.png") !important;
}

.jq-icon-info {
    background-image: url("../../images/toast-info.png") !important;
}

.jq-icon-warning {
    background-image: url("../../images/toast-warning.png") !important;
}
/* //jQuery Toast */

[dir="rtl"] .language-header {
    right: inherit;
    left: 300px !important;
}
