﻿.loader div.moving {
    animation: move 2s linear infinite;
}

.loader div {
    position: absolute;
    width: 20px;
    height: 36px;
    margin: 0 10px;
    
    color: #fff;
    font-size: 2em;

    transform: rotate(180deg);
    opacity: 0;
}

.loader div:nth-child(8):before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: #c0c2d7;
    border-radius: 100%;
}
.loader div:nth-child(9):before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 100%;
}
.loader div:nth-child(10):before {
    content:'';
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: #72c7f6;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.loader div:after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0px;
    width: 20px;
    height: 5px;
    background: rgb(57, 49, 45, 0.1);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.loader div:nth-child(2) {
    animation-delay: 0.2s;
}
.loader div:nth-child(3) {
    animation-delay: 0.4s;
}
.loader div:nth-child(4) {
    animation-delay: 0.6s;
}
.loader div:nth-child(5) {
    animation-delay: 0.8s;
}
.loader div:nth-child(6) {
    animation-delay: 1s;
}
.loader div:nth-child(7) {
    animation-delay: 1.2s;
}
.loader div:nth-child(8) {
    animation-delay: 1.4s;
}
.loader div:nth-child(9) {
    animation-delay: 1.6s;
}
.loader div:nth-child(10) {
    animation-delay: 1.8s;
}

@keyframes move {
    0% {
        right: 0;
        opacity:0;
    }
    10% {
        right: 0;
        opacity:0;
    }
    35% {
        right: 35%; 
        transform: rotate(0deg);
        opacity: 1;
    }
    65% {
        right: 65%; 
        transform: rotate(0deg); 
        opacity: 1;
    }
    90% {
        right: 100%; 
        transform: rotate(-180deg);
        opacity: 0;
    }
    100% {
        right: 100%; 
        transform: rotate(-180deg);
        opacity: 0;
    }
}

@keyframes scroll-down-effect {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    50% {
        transform: translate3d(0, -16px, 0);
        opacity: 0.4;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes paperjet-flutter {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -5px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
  
@keyframes cap-fadeInDownBig {
    0% {
      opacity: 0;
      transform: rotate(-20deg) translate3d(0, -2000px, 0);
    }
    50% {
        opacity: 0.5;
        transform: rotate(-20deg) translate3d(60px, -200px, 0);
    }
    100% {
      opacity: 1;
      transform: rotate(-20deg) translate3d(0, 0, 0);
    }
}

@keyframes cap-shake {
    0% {
        transform: rotate(-20deg);
    }
    8% {
        transform: rotate(-10deg);
    }
    16% {
        transform: rotate(-30deg);
    }
    30% {
        transform: rotate(-20deg);
    }
    100% {
        transform: rotate(-20deg);
    }
}

@keyframes focus {
    0% {
        filter: blur(8px);
    }
    100% {
        filter: blur(0px);
    }
}

@keyframes glowing {
    0% {
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 1px 1px 20px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    }
}






