#spothit_loader {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10;

    &.hidden {
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s 0.5s, opacity 0.5s linear;
      }


    .content {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        background-color: $blue-primary;
        height: 50%;
        width: 40em;
        align-items: center;
        justify-content: center;
        border-radius: 25px;
        -webkit-box-shadow: 0px 0px 49px 41px #ffffff8c; 
        box-shadow: 0px 0px 49px 41px #ffffff8c;
        


        .logo {
            padding-top: 3rem;
            img {
                path{
                    fill: white;
                }
                height: 6em;
            }
        }

        .slogan {
            font-weight: 300;
            text-align: center;
            font-size: 15px;
            color: white;
            strong {
                font-weight: 600;
                
            }
        }
        .state {
            color: white;
            font-size: 25px;
            font-weight: 300;
        }

        .loader {
            font-size: 10px;
            margin: 50px auto;
            text-indent: -9999em;
            width: 8em;
            height: 8em;
            border-radius: 50%;
            background: $blue-primary;
            background: -moz-linear-gradient(left, white 10%, rgba(255, 255, 255, 0) 42%);
            background: -webkit-linear-gradient(left, white 10%, rgba(255, 255, 255, 0) 42%);
            background: -o-linear-gradient(left, white 10%, rgba(255, 255, 255, 0) 42%);
            background: -ms-linear-gradient(left, white 10%, rgba(255, 255, 255, 0) 42%);
            background: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0) 42%);
            position: relative;
            -webkit-animation: loader 1.4s infinite linear;
            animation: loader 1.4s infinite linear;
            -webkit-transform: translateZ(0);
            -ms-transform: translateZ(0);
            transform: translateZ(0);

            &::before {
                width: 50%;
                height: 50%;
                background: white;
                border-radius: 100% 0 0 0;
                position: absolute;
                top: 0;
                left: 0;
                content: '';
            }

            &::after {
                background: $blue-primary;
                width: 75%;
                height: 75%;
                border-radius: 50%;
                content: '';
                margin: auto;
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
            }
        }
    }



}




.spothit_content_loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 200px;
    min-height: 100px;
    z-index: 10;
    .content {
        width: 50px;
        height: 50px;
        position: relative;
        margin: 20px;
        border-radius: 50%;

        .loader {
            height: 100%;
            width: 100%;
            border-radius: 50%;
            border-right: 2px solid rgba(255, 255, 255, 0);
            border-top: 2px solid $blue-primary;
            border-left: 2px solid $blue-primary;
            border-bottom: 2px solid $blue-primary;
            animation: content--loader 1.6s infinite;
        }
    }
}






@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes content--loader {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }
@keyframes content--loader {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }