html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.loader-container {
    height: 100%;
    width: 100%;
    z-index: 9999999;
    position: absolute;
    top: 0;
    background-color: #808080c9;
    align-content: center;
    display:none;
}
.loader {
    display: flex;
    justify-content: center;
}

    .loader > span {
        position: relative;
        margin: 0 3px;
        display: inline-block;
        height: 12px;
        width: 12px;
        background-color: #FBC02D;
        border-radius: 50%;
        -webkit-animation-name: fade-loader;
        animation-name: fade-loader;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .loader span:nth-child(2) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .loader span:nth-child(3) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

@-webkit-keyframes fade-loader {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-loader {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

    