/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
*/

/* CSS FROM NuTiPlass*/
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #FFFFFF;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-icon {
    color: white;
    font-size: 5rem;
    animation: shadowPulse 2.5s ease-in-out infinite;
}

/* Shadow pulses smoothly, no scaling */
@keyframes shadowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(0, 184, 148, 0.7));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(0, 184, 148, 1));
    }
}




#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    text-align: center;
    animation: fadeLoop 2s infinite ease-in-out;
}

.preloader-icon {
    font-size: 4rem;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.preloader-text {
    font-size: 1.4rem;
    color: white;
    font-weight: 400;
}

@keyframes fadeLoop {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

