.header {
    padding-bottom: 60px;
    margin-bottom: 80px;
    position: relative;
}

.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,#fff0,#0000002b,#fff0);
}

/* Static Loader */
.loader-container {
    position: relative; /* Relative to the parent container */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-loader {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #41faa4;
    animation: spin 2s linear infinite;
}

.inline-loader::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #16a3fe;
    animation: spin 3s linear infinite;
}

.inline-loader::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2b56f5;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '' !important;
    background-image: url('/assets/media/icons/double-chevron-right_v-2.svg');
    height: 16px;
    width: 20px;
    background-size: contain;
    background-position: center;
    margin: 6px 6px 0px 0;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb-item.active, .breadcrumb-item a {
    color:white;
}

.breadcrumb-item a:hover {
    color: #ff9c3d;
}

.breadcrumb-item + .breadcrumb-item::before {
    color:black;
}

.header-image {
    max-height: 300px;
}

.subpage-card {
    background-color: #9764fb;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 80px;
    color: white;
}

.subpage-card h1,h2,h3,h4,h5,h6 {
    color: white;
}

.subpage-card a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.subpage-card a:hover {
    color: #a7c2f8;
}

.hint {
    height: 100%;
    padding: 20px 40px;
    border-radius: 15px;
    background: #1111110f;
}

.alert {
    color: white;
    background: #69696913;
    border: 0;
    border-left: 4px solid #253f3a;
    border-radius: 0;
    font-size: 10pt;
}