/* Fullscreen loader */
#site-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;

    /* Flex centering */
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    flex-direction: column;  /* stack logo above spinner */
}

/* Loader content */
.loader-content {
    display: flex;
    flex-direction: column; /* logo on top, spinner below */
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px; /* space between logo and spinner */
}

.loader-logo {
    width: 120px;
    max-width: 80%; /* responsive */
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #0A2C6D; /* brand color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Fade-out loader */
.loader-hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Disable scroll while loader is visible */
body.loading {
    overflow: hidden;
}

.loader-logo {
    width: 350px;
    max-width: 80%; /* responsive */
    height: auto;
    animation: zoomInPulse 2s ease-in-out infinite;
}

/* Zoom in + subtle pulse */
@keyframes zoomInPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

/*Vacancy Styling*/

.application-form {
    max-width: 1000px;
    width: 100%;
}

.form-section {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

.form-col input,
.form-col select,
.form-col textarea {
    margin-top: 6px;
    padding: 12px;
    width: 100%;
}

/* 🔥 Mobile Fix */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; /* Stack to 1 column */
    }
}


.add-repeater {
	display: none;
}.repeater-field-header-count {
	display: none;
}
.repeater-field-header-acctions ul li::before {
	display: none;
}