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;
    font-family: 'Poppins', sans-serif;
}



#circular {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #007bff; /* Bootstrap primary color */
    display: inline-block;
    margin-right: 5px;
}

#fontimage {
    height: 21px;
    width: 21px;
}
/* Loader Styles with Background Blur */
.loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

    .loader-bg.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loader-bg img {
        max-width: 150px;
        max-height: 150px;
        animation: pulse 2s infinite;
    }

/* Pulse animation for loader */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* When loader is active, blur the background content */
.pc-container.loading main {
    filter: blur(3px);
    pointer-events: none;
}

/* Additional styles for better visual effect */
.loader-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
    z-index: -1;
}
#sub-icon {
    color: #53a5bf;
    font-size: 12px;
    box-shadow: 0px 0px 9px #53a5bf;
}