#loader {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    margin: auto;
    background: rgba(12, 12, 12, .80);
    z-index: 99999;
    display: none;
}

#loader .loader-inner {
    height: 180px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
    z-index: 9999;
}

#loader .loader-icon {
    text-align: center;
}

#loader .loader-text {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

/*novo loader*/
@keyframes thingy {
    0%{
        transform: translateX(0);
        width: 0;
        opacity: 0;
    }
    10%{
        width: 10%;
        opacity: 1;
    }
    30%, 100%{
        transform: translateX(-250px);
        width: 0;
        opacity: 0;
    }
}
.speed-thingy {
    position: absolute;
    width: 5px;
    border-radius: 5px;
    height: 2%;
    background: #fff;
    top: -10%;
    left: 55%;
   /*animation: thingy 3s infinite ease forwards;*/
    animation: thingy 3s infinite ease forwards;
}

.speed-thingy.second {
    top: 45%;
    left: 40%;
    animation-delay: 0.1s;
}

/*.st0{fill:#C20C2E;}
.st1{fill:#750820;}*/
.st0{fill:#fff;}
.st1{fill: #b5b5b5;}

.animated {
    animation-duration: 3s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 3s;
}
@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(300px, 0, 0);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

/*load compra*/
.lds-ellipsis {
    display: block;
    position: relative;
    width: 10%;
    height: 34px;
    margin-bottom: 10px;
    margin-left: 45%;
}
.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}