/* Fonts */

@import url("_fonts/gabarito.css");
@import url("_fonts/geist.css");

i[class^="fi-rr-"]::before,
i[class*=" fi-rr-"]::before,
span[class^="fi-rr-"]::before,
span[class*="fi-rr-"]::before {
    display: flex;
}

:root {
    --default-background: #ffffff;
    --light-background: #f2f7f4;
    --light-background-rgb: 242, 247, 244;
    --default-color: #ffff;
    --primary-color: #076633;
    --bs-primary-rgb: 7, 102, 51;
    --dark-color: #032613;
    --font-color: #032613;
    --light-danger-color: #fbeaec;
    --bs-body-color-rgb: 3, 38, 19;
    --border-radius: 20px;
    --font-family-default: "Gabarito", sans-serif;
    --font-family-geist: "Geist", sans-serif;
}

/* Background */
.white-background {
    background-color: var(--default-background);
}

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

.dark-background {
    background-color: var(--dark-background);
}

/* Border */
.border-radius-5 {
    border-radius: 5px;
}

.border-radius-15 {
    border-radius: 15px;
}

.border-radius-20 {
    border-radius: 20px;
}

/* Color */
.default-color {
    color: var(--default-color);
}

.dark-color {
    color: var(--dark-color);
}

/* button */

.default-button {
    &:hover {
        background-color: var(--dark-background);
        color: var(--default-color);
    }
}

.dark-button {
    background-color: #076633;
    color: var(--default-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1em;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-body-color-rgb), 0.5);
    --bs-btn-disabled-opacity: 0.4;
}

:not(.btn-check) + .btn:active,
.btn:first-child:active,
.btn.show {
    color: var(--primary-color);
    --bs-btn-active-color: var(--primary-color);
    --bs-btn-active-bg: var(--light-background);
    --bs-btn-active-border-color: var(--primary-color);
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-link {
    --bs-btn-color: var(--primary-color);
    --bs-btn-hover-color: var(--primary-color);
    --bs-btn-active-color: var(--primary-color);
    text-decoration: none;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
}

.btn-white {
    --bs-btn-color: var(--dark-color);
    --bs-btn-bg: var(--default-background);
    --bs-btn-border-color: var(--default-background);
    --bs-btn-hover-bg: var(--default-background);
}

.btn-icon {
    height: 28px;
    width: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Font */
.default-font {
    font-family: "Gabarito", sans-serif;
}

.geist-font {
    font-family: "Geist", sans-serif;
    font-size: 14px;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.fs-7 {
    font-size: 0.875rem;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/* Spacing */

.gap-30 {
    gap: 30px;
}

/* Inputs */

.form-check-input:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--light-background-rgb), 1);
}

/* Other Overrides */

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

[data-href] {
    cursor: pointer;
}

.pointer-events-none {
    pointer-events: none;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    font-family: "Gabarito", sans-serif;
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content-area {
    background-color: var(--light-background);
}

.site-dashboard,
.site-services,
.site-login {
    padding-top: 0 !important;
}

body:has(.site-login) header > div > div:not(:nth-child(2)) {
    display: none !important;
}

.site-services {
    background-color: transparent;
}

a {
    color: var(--font-color);
    text-decoration: none;
    transition: 0.3s;
    font-family: var(--font-family-geist);
}

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

.link-underline {
    --bs-link-color-rgb: var(--bs-primary-rgb);
    --bs-link-underline-opacity: 0.5;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-color);
}

h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0%;
}

h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0%;
}

h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0%;
}

h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0%;
}

.form-control {
    border: 1px solid transparent;
    --bs-body-bg: var(--light-background);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
}

.services .form-control:focus {
    border-color: var(--cat-color);
}

.message-area {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 10px;
    width: 100%;
    justify-content: center;
    z-index: 2000;

    @media screen and (max-width: 768px) {
        bottom: 0;
    }
}

.message-area .alert {
    margin-bottom: 0;

    @media screen and (max-width: 540px) {
        width: 100%;
        border-radius: 0;
    }
}

.message-area .alert:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--primary-color);
}

.message-area .alert.progress-start:before {
    animation: progress-bar 5s linear forwards;
}

@keyframes progress-bar {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 1040;
}

.scrolled .header {
    background-color: #fff;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 100%;
    margin-right: 8px;
    height: 50px;

    @media screen and (max-width: 768px) {
        width: 120px;
    }
}

.header .logo image {
    margin-left: 30px;
    width: 100px;
}

/* Global Header on Scroll
------------------------------*/
/* .scrolled .header {
  background-color: var(--dark-background);
  --background-color: var(--dark-background);
  --font-color: var(--default-color);
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
    color: var(--font-color);
    /*   position: fixed; */
    top: 20px;
    right: 20px;
    font-size: 32px;
    line-height: 0;
    cursor: pointer;
    display: block !important;
    z-index: 998;
    transition: 0.3s;
}

.mobile-nav-toggle:hover {
    color: var(--dark-color);
}

.navmenu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    z-index: 997;
    transition: 0.3s;
    width: 300px;
    overflow: hidden;
}

.navmenu ul {
    display: block;
    list-style: none;
    padding: 60px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 998;
}

.navmenu a,
.navmenu a:focus {
    color: var(--default-color);
    padding: 10px 20px;
    font-family: var(--font-family-geist);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
    background-color: var(--default-color);
    color: var(--default-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    color: var(--font-color);
}

.navmenu .active i,
.navmenu .active:focus i {
    background-color: var(--default-color);
    color: var(--default-color);
    transform: rotate(180deg);
}

.navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
}

.navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid
        color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--primary-color);
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    left: 220px;
    font-size: 36px;
    color: WHITE;
}

.mobile-nav-active .navmenu {
    /*   position: fixed; */
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: var(--dark-background);
    transition: 0.3s;
}

.dropdown-search {
    width: calc(100% - 20px);
    top: 15px !important;
}

.search-input {
    position: relative;
    min-width: 250px;
}
.search-input input {
    border-radius: 10px;
    background-color: var(--light-background);
}
.search-input button {
    background-color: transparent;
    border: 0;
    color: var(--font-color);
    position: absolute;
    height: 100%;
    right: 8px;
    top: 0;
    display: flex;
    align-items: center;
}

.search-input-outer {
    position: relative;
}

.search-input .preloader {
    position: absolute;
    inset: unset;
    right: 40px !important;
    top: 0 !important;
    width: 24px;
    height: 100%;
    display: flex;
    align-items: center;
}
.search-input .preloader:before {
    position: absolute;
    width: 24px;
    height: 24px;
    top: unset;
    right: unset;
    left: unset;
    border: 3px solid var(--default-color);
    border-top-color: color-mix(in srgb, var(--dark-color), transparent 90%);
}

#suggestions {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

#suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#suggestions li {
    color: var(--font-color);
    padding: 4px 8px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

#suggestions li:not(:last-child) {
    border-bottom: 1px solid var(--light-background);
}

#suggestions li:hover {
    background-color: var(--light-background);
}

#suggestions li .categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#suggestions li .categories a {
    font-size: 12px;
    line-height: 1rem;
    display: flex;
    align-items: center;
    gap: 2px;
}
#suggestions li .categories a i {
    font-size: 10px;
}

/*--------------------------------------------------------------
# Global Banner
--------------------------------------------------------------*/
#banner {
    color: var(--font-color);
    background-color: var(--dark-background);
    padding: 250px 0 60px;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--default-color);
    border-top-color: color-mix(in srgb, var(--dark-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Preloader Class for Forms and Ajax Calls */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}
.preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--default-color);
    border-top-color: color-mix(in srgb, var(--dark-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--primary-color);
    color: var(--default-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--font-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 78px;
    overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    margin: 0;
    font-size: 60px;
    font-weight: 300;
    color: var(--default-color);
    background-color: #076633;
    padding: 10px 20px;
    max-width: max-content;
    margin-bottom: 5px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 300px;
    position: relative;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.hero-content {
    margin-top: 80px;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero svg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero .btn-get-started:hover {
    background: color-mix(
        in srgb,
        var(--accent-color) 90%,
        var(--background-color) 15%
    );
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* ----------------------------- ANCHOR DROPDOWN ---------------------------- */
.custom-dropdown > a {
    color: var(--font-color);
}

.custom-dropdown > a .arrow {
    display: inline-block;
    position: relative;
    -webkit-transition: 0.3s transform ease;
    -o-transition: 0.3s transform ease;
    transition: 0.3s transform ease;
}

.custom-dropdown.show > a .arrow {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.custom-dropdown .btn:active,
.custom-dropdown .btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none;
}

.custom-dropdown .btn.btn-custom {
    border: 1px solid var(--light-background);
}

.custom-dropdown .title-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
}

.custom-dropdown .title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.custom-dropdown .dropdown-link .profile-pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
}

.custom-dropdown .dropdown-link .profile-pic img {
    width: 50px;
    border-radius: 50%;
}

.custom-dropdown .dropdown-link .profile-info h3,
.custom-dropdown .dropdown-link .profile-info span {
    margin: 0;
    padding: 0;
    color: var(--font-color);
}

.custom-dropdown .dropdown-link .profile-info h3 {
    font-size: 16px;
}

.custom-dropdown .dropdown-link .profile-info span {
    display: block;
    font-size: 13px;
}

.custom-dropdown .dropdown-menu {
    margin-top: 30px;
    border: 1px solid transparent !important;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    margin-top: -10px !important;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border-radius: var(--bs-border-radius);
    background: var(--default-color);
    /*   right: auto !important; */
    left: auto !important;
    -webkit-transition: 0.3s margin-top ease, 0.3s opacity ease,
        0.3s visibility ease;
    -o-transition: 0.3s margin-top ease, 0.3s opacity ease, 0.3s visibility ease;
    transition: 0.3s margin-top ease, 0.3s opacity ease, 0.3s visibility ease;
    visibility: hidden;
}

.custom-dropdown .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    margin-top: 0px !important;
}

.custom-dropdown .dropdown-menu a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    padding: 8px 12px;
    position: relative;
    color: var(--font-color);
    display: flex;
    align-items: center;
}

.custom-dropdown .dropdown-menu a:last-child {
    border-bottom: none;
}

.custom-dropdown .dropdown-menu a .icon {
    margin-right: 15px;
    display: inline-block;
}

.custom-dropdown .dropdown-menu a:hover,
.custom-dropdown .dropdown-menu a:active,
.custom-dropdown .dropdown-menu a:focus {
    background: var(--default-color);
    color: var(--dark-color);
}

.custom-dropdown .dropdown-menu a:hover .number,
.custom-dropdown .dropdown-menu a:active .number,
.custom-dropdown .dropdown-menu a:focus .number {
    color: var(--default-color);
}

.custom-dropdown .dropdown-menu a .number {
    padding: 2px 6px;
    font-size: 11px;
    background: #fd7e14;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    border-radius: 4px;
    color: var(--default-color);
}

/* ------------------------------ ANCHOR ICONS ------------------------------ */

.icon-outer {
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-outer i {
    font-size: 40px;
}

.icon-outer-sm {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-outer-sm i {
    font-size: 30px;
}

.icon-outer-xs {
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-outer-xs i {
    font-size: 16px;
}

/* ---------------------------- ANCHOR CAT COLOR ---------------------------- */

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

.text-cat-color {
    color: var(--cat-color);
}

.border-cat-color {
    border-color: var(--cat-bg-color) !important;
}

.btn-cat-color {
    --bs-btn-color: var(--cat-color);
    --bs-btn-border-color: var(--cat-bg-color);
    --bs-btn-hover-bg: var(--cat-color);
    --bs-btn-hover-border-color: var(--cat-color);
    --bs-btn-active-bg: var(--cat-color);
    --bs-btn-active-border-color: var(--cat-color);
    --bs-btn-disabled-color: var(--cat-color);
    --bs-btn-disabled-border-color: var(--cat-color);
}

.btn-cat-color.btn-primary {
    --bs-btn-bg: var(--cat-color);
    color: #fff;
}

.btn-cat-color.btn-primary i {
    color: #fff;
}

.disabled {
    --cat-color: #ccc !important;
    --cat-bg-color: #f0f0f0 !important;
    pointer-events: none;
}

/* ----------------------- ANCHOR DailyWork Favorites ----------------------- */

.favorite-item-outer {
    position: relative;
}

.favorite-item {
    transition: 0.3s;
}

.favorite-item:hover {
    border-color: var(--primary-color) !important;
    transition: 0.3s;
}

.favorite-item + button.favorite {
    opacity: 0;
    transition: 0.3s opacity;

    position: absolute;
    top: -8px;
    right: 0;
    height: 18px;
    width: 18px;
    font-size: 12px;
}

.favorite-item:hover + button.favorite {
    opacity: 1;
    transition: 0.3s opacity;
}

button.favorite:hover {
    opacity: 1;
}

.favorite-item + .admin-pick {
    background: var(--light-danger-color);
    color: var(--bs-danger);
    position: absolute;
    top: -8px;
    right: 0;
    height: 18px;
    width: 18px;
    font-size: 12px;
    opacity: 1 !important;
}

.favorite-item:has(+ .admin-pick) {
    --bs-border-color: var(--light-danger-color) !important;
}
.favorite-item:has(+ .admin-pick):hover {
    border-color: var(--bs-danger) !important;
}

.favorite-item-outer p {
    text-overflow: ellipsis;
    overflow: hidden;
}

/* --------------------------- ANCHOR EMPTY STATE --------------------------- */

.empty-state {
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed var(--light-background);
    border-radius: var(--bs-border-radius);
}

/* --------------------------- ANCHOR DATA TABLES --------------------------- */

.dt-paging {
    display: flex;
    justify-content: end;
}

.dt-paging .dt-paging-button {
    display: inline-block;
    padding: 0.2rem 0.9rem;
    color: #fff;
    background-color: var(--primary-color);
    border-right: 1px solid #eee;
    border-left: 0;
    text-decoration: none;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}
.dt-paging .dt-paging-button.disabled {
    color: #ccc;
    background-color: #f0f0f0;
    pointer-events: none;
    border: 1px solid #f0f0f0 !important;
}
.dt-paging .dt-paging-button.first {
    border-left: 1px solid var(--primary-color);
    border-top-left-radius: var(--bs-border-radius);
    border-bottom-left-radius: var(--bs-border-radius);
}

.dt-paging .dt-paging-button.last {
    border-right: 1px solid var(--primary-color);
    border-top-right-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius);
}

.dt-hasChild td {
    border-bottom: none;
    padding-bottom: 5px;
}

.dataTable .child ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.dataTable .child td {
    padding-top: 0;
}

.dataTable .dtr-title {
    font-weight: 500;
    display: block;
    font-size: 12px;
    color: var(--font-color);
}

/* -------------------------- ANCHOR ONLINE MAILER -------------------------- */

[data-id="company-filter"] + .dropdown-menu img,
[data-id="company-filter"] img {
    width: 24px;
    margin-right: 8px;
}

.rate-item .rate-text span:first-child {
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
}

.rate-item .rate-text span:first-child .badge {
    font-size: 12px;
    font-weight: 400;
    line-height: 1em;
    margin-left: 5px;
}

.rate-item .rate-text .type {
    font-size: 12px;
    font-weight: 400;
    line-height: 1em;
    opacity: 0.5;
    color: var(--primary-color);
}

.company-card .logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #fff;
    padding: 5px;
}

.sidebar-container {
    position: sticky;
    top: 90px;
}

#selected-rates {
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

#selected-rates li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#selected-rates li > div {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 80%;
}

#selected-rates img {
    width: 12px;
}

#selected-rates span {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ------------------------------ ANCHOR Chips ------------------------------ */

.chips-outer {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5px;
}

.chip {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    gap: 4px;
    font-size: 12px;
    line-height: 10px;
    border-radius: 8px;
    background-color: var(--cat-bg-color);
    color: var(--cat-color);
}

/* --------------------------- ANCHOR Notification -------------------------- */

#notification-bell {
    position: relative;
}

#notification-bell[data-unread-count]::before {
    content: attr(data-unread-count);
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: #fff;
    width: 14px;
    height: 14px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.dropdown-notifications {
    max-width: 20dvw;
    min-width: 350px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 0;
}

.notification {
    position: relative;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    padding: 8px;
    border-radius: var(--bs-border-radius);
    font-size: 14px;
    margin-bottom: 4px;
}

.notification .header {
    color: var(--font-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification .body p {
    line-height: 1rem;
}

.notification .timestamp {
    font-size: 12px;
    color: var(--dark-color);
    opacity: 0.7;
}

.notification.hide {
    animation: slideOut 0.5s forwards;
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(110%);
        opacity: 0;
    }
    100% {
        height: 0;
        transform: translateX(110%);
        opacity: 0;
        padding: 0;
        border: 0;
        margin: 0;
    }
}

#notification-list button[data-delete] {
    display: none;
}

#read-notification-list button[data-read] {
    display: none;
}

button[data-read],
button[data-delete] {
    position: absolute;
    top: 0;
    right: 0;
}

[data-bs-target="#read-notifications"].collapsed + [data-delete-all]{
    opacity: 0;
}

[data-bs-target="#read-notifications"] i {
    transform: rotate(180deg);
    transition: 0.3s transform;
}

[data-bs-target="#read-notifications"].collapsed i {
    transform: rotate(0deg);
    transition: 0.3s transform;
}

[data-delete-all] {
    transition: 0.3s opacity;
}

/* -------------------------------------------------------------------------- */
/*                             SECTION RESPONSIVE                             */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
@media (max-width:1199px) {

}

/* prettier-ignore */
@media (max-width:991px) {
    .favorite-item {padding-right: 24px !important;}
    .favorite-item + button.favorite {top: 3px;right:calc(var(--bs-gutter-x) + 1px); opacity: 1;}
    .dataTable.table > :not(caption):has(.child) > * > * {border: 0;}
    .dataTable.table > tbody:has(.child) > tr:nth-child(4n+1) td,
    .dataTable.table > tbody:has(.child) > tr:nth-child(4n+2) td {background-color: var(--light-background);}

}

/* prettier-ignore */
@media (max-width:767px) {
}

/* prettier-ignore */
@media (min-width:991px) {
    .dropdown-categories {display: block;position: relative;}

}

/* prettier-ignore */
@media (max-width:540px) {
    h1 {font-size: 45px} /* font-size: 60px;*/
    h2 {font-size: 40px} /* font-size: 50px;*/
    h3 {font-size: 30px} /* font-size: 40px;*/
    h4 {font-size: 20px} /* font-size: 24px;*/
    h5 {font-size: 18px} /* font-size: 20px;*/
    h6 {font-size: 16px} /* font-size: 18px;*/

    .icon-outer {width: 50px;height: 50px;}
    .icon-outer i {font-size: 24px;}
    .icon-outer-sm {width: 50px;height: 50px;}
    .icon-outer-sm i {font-size: 24px;}
    .small, small {font-size: 10px;}

    .hero {min-height: 200px;padding-top: calc(50px + 70px);padding-bottom: 50px;}

    .service-links-header {flex-direction: column;justify-content: center;}
    .service-links-header div:last-child{text-align: center;}
}

/* ------------------------ !SECTION Ende RESPONSIVE ------------------------ */
