
#panelNotification {
    min-height: 275px;
    position: relative;
}

#panelNotification .dismiss-notification-banner {
    content: "";
    filter: invert(1) grayscale(100%) brightness(200%);
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.8em auto no-repeat;
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 0px;
    right: -30px;
    opacity: 1;
    cursor: pointer;
}

.countdown-timer {
    pointer-events: none;
}

.invalid-message-kantar {
    display: flex;
    color: #de5b5b;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
}

#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure the spinner is on top of all other elements */
    visibility: hidden; /* Hide spinner by default */
    flex-direction: column; /* Arrange the spinner and text vertically */
}

#spinner-overlay.active {
    visibility: visible; /* Show spinner when the class is added */
}

/* Spinner style */
.spinner {
    border: 8px solid #f3f3f3; /* Light grey background color */
    border-top: 8px solid #6f42c1; /* Blue color for the spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite; /* Rotate the spinner */
}

/* Keyframes for the spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Style for loading text */
.loading-text {
    color: white;
    margin-top: 10px; /* Space between spinner and text */
    font-size: 16px;
    font-weight: bold;
}
