* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    min-height: 100vh;
}

.monoton-regular {
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.dancing-script {
    font-family: "Dancing Script", cursive;
    font-style: normal;
  }
  

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Monoton', cursive;
    font-size: 22px;
    color: #bc0101;
    line-height: 35px;
}

.logo img {
    margin: 0 5px;
}

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #bc0101;
}

.nav-links .active {
    color: #bc0101;
    font-weight: 600;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-actions a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    font-size: 14px;
}

/* Main Content */
.main-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* Page Title */
.page-title {
    margin: 30px 0;
    text-align: center;
}

.page-title h1 {
    font-family: 'Abiah', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.page-title h1 span {
    color: #bc0101;
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 600;
}

/* Search Tabs */
.search-tabs {
    display: flex;
    margin: 20px 0;
    border-bottom: 2px solid transparent;
    gap: 40px;
}

.search-tab {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.search-tab.active {
    color: #bc0101;
}

.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background-color: #bc0101;
}

/* Filters Section */
.filters {
    width: 370px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.search-input {
    position: relative;
    margin-bottom: 20px;
}

.search-input input {
    width: 100%;
    height: 44px;
    background-color: #fff;
    border: 1px solid #dfcdcd;
    border-radius: 12px;
    padding: 10px 10px 10px 45px;
    font-size: 14px;
    font-weight: 600;
    color: #839aa6;
    box-shadow: 0px 0px 8px rgba(255, 143, 143, 0.28);
}

.search-input i {
    position: absolute;
    left: 20px;
    top: 14%;
    color: #555;
    font-weight: 700;
}

.group-input {
    position: relative;
    width: 190px;
}

.group-input input {
    width: 100%;
    height: 44px;
    background-color: #fff;
    border: 1px solid #dfcdcd;
    border-radius: 12px;
    padding: 10px 10px 10px 45px;
    font-size: 14px;
    font-weight: 600;
    color: #839aa6;
    box-shadow: 0px 0px 8px rgba(255, 143, 143, 0.28);
}

.group-input span {
    position: absolute;
    left: 6px;
    top: 22%;
    color: #777;
    font-weight: 600;
}

.checkbox-group {
    margin-bottom: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.checkbox-label input {
    margin-right: 10px;
}

.checkbox-label span {
    font-size: 14px;
    color: #fff;
}

.more-link {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 5px;
}

.more-link img {
    margin-left: 5px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.btn-reset {
    width: 180px;
    height: 56px;
    border-radius: 28px;
    border: 1px solid #086787;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-reset:hover {
    background-color: rgba(8, 103, 135, 0.2);
}

.btn-apply {
    width: 180px;
    height: 56px;
    border-radius: 28px;
    background: linear-gradient(143deg, #bc0101 0%, #960101 100%);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-apply:hover {
    opacity: 0.9;
}

.results {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.job-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 399px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.job-card--bg-blue {
    background: linear-gradient(182deg, rgba(16, 162, 196, 0) 0%, rgba(16, 162, 196, 0.2) 100%), linear-gradient(230deg, rgba(15, 176, 182, 0) 0%, rgba(15, 176, 182, 1) 100%), linear-gradient(228deg, rgba(27, 148, 154, 0) 0%, rgba(10, 109, 143, 0.17) 55%, rgba(9, 108, 141, 0.3) 100%), linear-gradient(52deg, rgba(27, 28, 40, 0) 0%, rgba(12, 72, 94, 0.6) 100%), linear-gradient(49deg, rgba(15, 87, 106, 1) 0%, rgba(9, 35, 48, 1) 100%);
    background-color: transparent;
}

.job-card--bg-red {
    background: linear-gradient(182deg, rgba(16, 162, 196, 0) 0%, rgb(196 16 16 / 20%) 100%), linear-gradient(230deg, rgba(15, 176, 182, 0) 0%, rgb(182, 15, 15) 100%), linear-gradient(228deg, rgba(27, 148, 154, 0) 0%, rgba(10, 109, 143, 0.17) 55%, rgb(141 9 9 / 30%) 100%), linear-gradient(52deg, rgba(27, 28, 40, 0) 0%, rgb(94 12 12 / 60%) 100%), linear-gradient(49deg, rgb(106 15 15) 0%, rgba(9, 35, 48, 1) 100%);
    background-color: transparent;
}

.job-banner {
    height: 102px;
    background-image: url('../assets/svg/card-back-1.svg');
    background-size: cover;
    border-radius: 16px 16px 0 0;
}

.job-profile {
    position: absolute;
    top: 24px;
    left: 16px;
    width: 96px;
    height: 96px;
    border-radius: 48px;
    overflow: hidden;
    border: 3px solid #fff;
}

.job-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.job-content {
    padding: 20px;
    color: #091d29;
    margin-top: 30px;
    height: 70%;
    background-color: #FFF;
}

.job-title {
    font-family: 'ZT Neue Ralewe', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 15px;
    color: #091d29;
}

.job-title.featured {
    color: #960000;
}

.job-rating {
    position: absolute;
    top: 150px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-rating span {
    font-size: 18px;
    font-weight: 600;
    color: #091d29;
}

.job-details {
    margin-top: 20px;
}

.job-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.job-detail-label {
    width: 160px;
    font-size: 12px;
    color: rgba(9, 29, 41, 0.7);
}

.job-detail-value {
    font-size: 14px;
    color: #091d29;
}

.job-salary {
    font-size: 16px;
    font-weight: 600;
    color: #091d29;
    margin: 15px 0;
}

.job-last-seen {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #41a3a5;
    border-radius: 50%;
    margin-right: 8px;
}

.last-seen-label {
    font-size: 12px;
    color: rgba(9, 29, 41, 0.7);
    margin-right: 8px;
}

.last-seen-value {
    font-size: 12px;
    font-weight: 600;
    color: #091d29;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.pagination-item {
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-item.active {
    width: 40px;
    height: 40px;
    background-color: #bc0101;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #bc0101;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item img {
    margin-right: 8px;
    margin-top: 2px;
}

.contact-item p {
    font-size: 15px;
    line-height: 24px;
    margin-left: 10px;
}

.copyright {
    color: #b1c3ce;
    font-size: 14px;
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 12px 24px 80px #002b47;
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-float {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    background: linear-gradient(49deg, rgba(255, 255, 255, 0.4) 0%, rgba(30, 214, 255, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
    box-shadow: 0px 4px 20px #888888;
}

.contact-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.contact-float a:hover {
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .results {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }
}

.main-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.section-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    background-color: transparent;
}

.desktop-search {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(282deg, rgba(6, 74, 95, 1) 0%, rgba(9, 28, 40, 1) 100%);
}

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

.background-graphic {
    position: relative;
    width: 100%;
    height: auto;
}

.vector-main {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(12%) scale(1);
    width: 1393px;
    height: 1362px;
}

.vector {
    position: absolute;
    background-color: transparent;
}

.loader {
    text-align: center;
    padding: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
}

.loader:after {
    content: '';
    display: block;
    margin: 20px auto 0;
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top-color: #bc0101;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.background-graphic .glow-red {
    background-color: transparent;
    height: 2006px;
    position: absolute;
    width: 2214px;
}

.background-graphic .glow-effect-container {
    left: 730px;
    top: 435px;
    transform: rotate(-32.03deg);
}

.background-graphic .vector {
    background-color: transparent;
    position: absolute;
}

.background-graphic .vector-layer-1 {
    height: 1958px;
    left: -143px;
    mix-blend-mode: hue;
    top: -240px;
    transform: rotate(32.03deg);
    width: 1241px;
}

.background-graphic .vector-layer-2 {
    height: 1766px;
    left: 208px;
    top: -196px;
    transform: rotate(32.03deg);
    width: 949px;
}

.background-graphic .vector-layer-3 {
    height: 2061px;
    left: 360px;
    mix-blend-mode: normal;
    top: -152px;
    transform: rotate(32.03deg);
    width: 700px;
}

.background-graphic .ellipse-glow-red {
    background: linear-gradient(170deg, rgba(154, 4, 2, 0.4) 0%, rgba(154, 4, 2, 0) 100%);
    background-color: transparent;
    border-radius: 340.99px / 148.38px;
    filter: blur(100px);
    height: 297px;
    left: 100px;
    mix-blend-mode: color-dodge;
    position: absolute;
    top: 924px;
    width: 682px;
}

.background-graphic .vector-layer-4 {
    height: 1041px;
    left: 926px;
    top: 143px;
    transform: rotate(32.03deg);
    width: 304px;
}

.background-graphic .ellipse-solid-red {
    background-color: #e70400;
    border-radius: 63px / 168.55px;
    filter: blur(150px);
    height: 337px;
    left: 1014px;
    position: absolute;
    top: 861px;
    width: 126px;
    transform: rotate(54.40deg);
}

.background-graphic .ellipse-gradient-red {
    background: linear-gradient(177deg, rgba(232, 4, 0, 1) 0%, rgba(130, 2, 0, 1) 100%);
    background-color: transparent;
    border-radius: 63px / 168.55px;
    filter: blur(50px);
    height: 337px;
    left: 1014px;
    position: absolute;
    top: 861px;
    width: 126px;
    transform: rotate(54.40deg);
}

.background-graphic .noise-texture {
    background-color: transparent;
    height: 886px;
    left: 546px;
    position: absolute;
    top: 435px;
    transform: rotate(32.03deg);
    width: 529px;
}

/* Toastr CSS */
.toast_container{
    font-family: 'Poppins', sans-serif;
    padding:3rem;
    margin:0 auto;
    width:700px;
    height:500px;
    background-color:#eff2fb;
}
h1{
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:600;
    font-size:2rem;
    margin-top:3rem;
    margin-bottom:2.5rem;
}
.btngp_container{
    margin-top:2rem;
    display:flex;
    justify-content:center;
    align-items:center;
}

.toast-success,.toast-info,.toast-warning,.toast-error{
    width:400px !important;
    font-family: 'Poppins', sans-serif;
    font-size:0.75rem;
    border-radius:1rem !important;
    background-color:#edf1fd;
    color:#01081e !important;
    border-color:transparent !important;
}

.closebtn{
    width:25px;
    height:25px;
    border-radius:50%;
    background-color:#ccd7fc !important;
}

.closebtn>i{
    color:#000617;
    font-weight:500;
}

#toast-container>.toast-success {
    background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKLSURBVHgBzZZNbtpAFMffjMFRQY28hFKpzg1gGZFKWGkqdZX2BHVOUHIC4AQ0J6g5QZVVpDTUqC10V3GDelGqSF3UG1cqgZm+GYIVbPAHoCp/CWY89sxP78289wbgP4tAShW+XugwyeiiP6Xc/VV9PkwzPxao2e+1fHbXBEqOgfEyztDCq5AecN4ZVQ+tuPUigY8H9hvOWHMpZLkc/LWiwEuBwqqcqrUJMBPWk+WN6alrGG4sULpQfWjjqzJsJDL0xsQIQmnws7y6294cJsTLeZW1g6MLwFK/a2JjwvZkFgfd+kogqgFbFuXQ0GxbCwFvrdNhHXHew3+Lz05pUNqD7MQMAYGT17AebTg6eGZMx+PWqhijVDme9zP+KOE1SItCixhVXom+oqp4sld4iHP/EEoLS/3LcsSqrnQVtsFXaFHret9wHvXtBkRvh1b81n3iA6eMrM4kBNw/Y1qZKrSyuEf8TGSUwucPNUwQTYiR4rE9HxgjPb/DGsISytiJRCHYyynNgn2hK5S+gxSaATMZJ/IrDvXip6uXP54e9QjjZ4xSw60YLu5bnCt9/cXKIlr/YGFY/MYmKkm7eBIr18YLRzzIxM7ZW0godL9k3Q2LuLqmKTs70n3ClbKKJBWRcQqLQJiex07kvFYafLRlCCQvWcKYjs+ed3RMPzcq+w6QYqEkLDxgP6uHe/Nn30JHlBEOLdiyRKwGnhdV+nJl4ZVhzTQXkoWH5eTuQCgOszdKXRRP2Fh86OXoaXA0BBSuzWKlFpciWJvFO5gYZKwGX0VeokTJwk1vkKRlS+Zb1hodHK2Mz0T3UlkrRflaVlEkhOMWkHMvT61lVqUGLsIvy+Q22WcyE8fZn2Wee6t/lXrvcWjggekAAAAASUVORK5CYII=')!important;
}

#toast-container>.toast-info {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJaSURBVHgBvVZNbtNQEJ55idd4hSphKnOCkhM0PQHpCUhuADsWLTgkQuwQJyCcoOEEpSfAnKBW6cK0m6wb+U1nXu04bdLkTRT1kxLnOR5/b/7eNwge2Dn61ybEN4agbRFiBAjlPgFM+HfK1xSJfuXDl7/XvQtXEh1fdvnyiT8xeAEzgKKfD3ZHjz6xlOjDeYzN4IQQXsNGYOLpzUH+9VX28B+zQPbx8i0FwZ/NyQQUI7/j+dFFZ2Er8wt5wKA5gW0CoZt/jn7WyxISRvGsKojt8cGEptNWFd46pEFw6kfG+SE6KBrQ4kW27mmu4FDqoVo7wrIaY/AB2Z6U/3USpZbsey8Troed44vujBDuSt8LSDgrJs63IvwNx4HS1IB46msmObEAfUR8RkTvVDnnVDTZoEPgD5cTgG9svPrUWG7babLZntJowl8Ze5hKv/Gttr817htdg+MIucT/D6NWPnjR4/PzLyhg+Bw2ur6jLrfPj9lKH53QgBI07xVqwnkH43KiACKlcnXVrYRUuOHvTGNUFMYRsj6qD3fRTWMsnfkayA6vv0RpudoHJSQdEtKxtwHvsGZ3LaECb3hsyrEg8zGoCiZMzkMkrV5iJlxVlfa9TCym9W5xLB/wRuE4HGE+iEZ8AKRrbRpl3ibirf1OQJ5esnflnFMLcMICXGxfgN1k12ABTh4IsNxA8NM3FaHoZ1IPU/dOGnGbRfVQexgsJXLvsL2r4e69PC8fEzm8UASikTFsAK7glJrTw3nPVhLOiJ9qEF4gllGfxZPbYE/kbH7UF23kX2fS1D6j/i3BTfaqkKQ1ngAAAABJRU5ErkJggg==')!important;
}
#toast-container>.toast-warning {
    background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHbSURBVHgBxZZPTsJAFMa/NxDEjYJE1/UGcgOP4BEwARNXeAP0BMSVCzWNJxBPIDfQG8COhSSwJBH7fFNbaKV/ZsA/vwVppzPz5Zt58zHAH0OwZOCisjNHgxWmBYVe9RRTm/FWgiMXzpZHz/LoBE1DUly3EVWwoOSpTkRM43hzXMACY4eBu0HCp6m4PDR1aeywzOSmfKrYuDQSHN9LkTCOFw3Mr/I7DF9JUXt0E1vqzQQVqBN5ne41UdfFop+DtkqppDpmc+Wg3SFeKL5IsGeLfSNw4+02sgrrCn5zl0mhkN83U3DiqjZgtjc+ss95LlMF9TFgj63OmCbPZapgGZbuQsRlsO/mguu6W05KnYlkbvK3BIII24TUyFsR1O50iWNDdBgkuVwR/AF3IYmRFwtvXdIF5f/9ZOGH9UwmlDB/0RPn9Y0Ge8yhiLnIp8IiZCDm9/U81Y02LBzqUpbqMhG0Zv7B9YMz6MBfOrSJMDkyV8z8YNq/WKTuUgeJAZ2hxk+1Fi5rTTSIuWc2Zhl5Sh8DG3dQtLuYh+jIdFgYeTS+w4kieoQdQ3wVTF7RxNhmdopSNlaDAhyswexd8kDfLRG5LvwWUmTX1XO5VoYNemmJYbwnNnhAf7+FPv6DT2e/n0VFnPgUAAAAAElFTkSuQmCC')!important;
}
#toast-container>.toast-error {
    background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIlSURBVHgB3VbBbtNAEH2zTugFFIPgwAlzA4mK8AdrvgC+APiSKl/S9AvoH8SfEEQP3PCNAwjcA6IQeYcdYxtvbK/jNr30SVG86519npk3swvcdNCuC7880dF0Ck1QzxVMKHMGKmOYD5sNkoefknSXfQYJvz7TekJ0xIAe2CjJwSf3PybLgXXd+BzpcHZHHQP8CiPAoOWfjVn0edxJKOE7mNLKPka4HNLfG467SOkayGpSCvjF3XWSNSfV9qpbU3W0BzJBxLmkxIXj4bdD/VaBjrFH5Mzxg7MkqcaOhwHwBuOR+V4GVuHNcU0oubMK032GNh+P5Wdjsq4nGet6vh/619OXj1qEUtQeI/EiswJISXFckArZhGMRxcUFvPhJJm4REmPusQnZ0OrHXIdCIKQVmdTrwYTee2xBStV7T/7PIvQZWY/mJWlcSb1oDrdtCZH3Y6HIzOpnjIFxh2E4eofGcvarrZkz8awZXkdIXd/J6rxFyH6jzJK9rsgkjNs5hac8mMy6RRgESDyEECU6OStzKuVk30lwezXQ3NvpNN8Pte2h/bVYeuEX1zYYyb2zVbssBDljMWA+jszCEJ80xw7hv57Hp9gTCLzcPpBboqYA7+xfiqsjtc25FbEWYaG6oFBdiiuQyR7SCgcJS9LCgOHGfxfYMJ6WB2/a/X4AxRnJ9tgir3oLNdpL1KJ59l2KsIIt8ijP7TWRixqcldbn0jDGXBNvPv4C3QjuTqveJGAAAAAASUVORK5CYII=')!important;
}

.references{
    margin-top:2rem;
    font-size:0.75rem;
    display:flex;
    justify-content:flex-start;
    flex-direction:column;
    align-items:center;
}

.references a{
    text-decoration:none;
    text-align:left;
}