/*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;
}*/


#pageloader {
    background: #ffffff;
    height: 100%;
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999999999;
}


.preloader {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    position: absolute;
}

    .preloader span {
        position: absolute;
        display: block;
        bottom: 0;
        width: 9px;
        height: 5px;
        border-radius: 5px;
        background: #7C3AED;
        -webkit-animation: preloader 2s infinite ease-in-out;
        animation: preloader 2s infinite ease-in-out;
    }

        .preloader span:nth-child(2) {
            left: 11px;
            -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
        }

        .preloader span:nth-child(3) {
            left: 22px;
            -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
        }

        .preloader span:nth-child(4) {
            left: 33px;
            -webkit-animation-delay: 600ms;
            animation-delay: 600ms;
        }

        .preloader span:nth-child(5) {
            left: 44px;
            -webkit-animation-delay: 800ms;
            animation-delay: 800ms;
        }

        .preloader span:nth-child(6) {
            left: 55px;
            -webkit-animation-delay: 1000ms;
            animation-delay: 1000ms;
        }

@-webkit-keyframes preloader {
    0% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        bbackground: #3B82F6;
    }

    25% {
        height: 30px;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        background: #3B82F6;
    }

    50%, 100% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: #3B82F6;
    }
}

@keyframes preloader {
    0% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: #3B82F6;
    }

    25% {
        height: 30px;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        background: #3B82F6;
    }

    50%, 100% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: #3B82F6;
    }
}