﻿.loading-container {
    z-index: 200;
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    left: 0 !important;
    top: 0 !important;
}

.loader-container {
    left: 50%;
    top: 50%;
    width: 243px;
    height: 228px;
    max-width: 244px;
    max-height: 228px;
    position: absolute;
    margin-left: -122px;
    margin-top: -119px;
    text-align: center;
}

.message-modal-container {
    z-index: 9999;
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    left: 0 !important;
    top: 0 !important;
    background-color: rgba(95, 97, 95, 0.8);
}

@keyframes loading {
    0% {
        border: 0px solid rgba(163, 214, 162, 0.8);
    }

    20% {
        border: 5px solid rgba(163, 214, 162, 0.8);
        width: 0%;
        height: 0%;
    }

    100% {
        border: 5px solid rgba(163, 214, 162, 0.8);
        width: 100%;
        height: 100%;
    }
}

.loader {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgb(68, 157, 68);
    border-radius: 50%;
}

    .loader:after {
        content: '';
        position: absolute;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        border: 0px solid rgba(163, 214, 162, 0.8);
        transform: translate(-50%, -50%);
        animation: loading 1000ms ease-out forwards infinite;
    }

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        .sk-folding-cube .sk-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(22, 183, 18);
            -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .sk-folding-cube .sk-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .sk-folding-cube .sk-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .sk-folding-cube .sk-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .sk-folding-cube .sk-cube2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .sk-folding-cube .sk-cube3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .sk-folding-cube .sk-cube4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}




@keyframes cirle {
  0% {
    left: 100px;
  }
  50% {
    left: 50px;
  }
  100% {
    left: 100px;
  }
}

@keyframes secundCirle {
  0% {
    left: 50px;
  }
  50% {
    left: 100px;
  }
  100% {
    left: 50px;
  }
}

@keyframes changeIndex {
  0% { z-index: 1; }
  50% { z-index: 3; }
  100% { z-index: 3; }
}


.fundo-cinza {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 25px auto 0 auto;
  background-color: #eee;
  border-radius: 100%;
  opacity: 0.7;

}

.circuloUm {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 35px;
  margin-left:-40px;
  background-color: #e2df18;
  border-radius: 100%;
  box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
  animation: cirle 2s 0s infinite;
  z-index: 2;
}

.circuloDois {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 35px;
  margin-left:-40px;
  background-color: #27b215;
  border-radius: 100%;
  box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
  animation: 
    secundCirle 2s 0s infinite,
    changeIndex 2s steps(1) infinite;
}