/**
 * Custom Style for Preloader
 *
 * @package Yaatra Pro
 */
#yaatra-pro-preloader {
    background: #fff none repeat scroll 0 0;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

#yaatra-pro-preloader .preloader-wrapper {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*--------------------------
    Usage: Wave
--------------------------*/
.cv-wave {
    margin: 40px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.cv-wave .cv-rect {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: cv-waveStretchDelay 1.2s infinite ease-in-out;
    animation: cv-waveStretchDelay 1.2s infinite ease-in-out;
}

.cv-wave .cv-rect1 {
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s;
}

.cv-wave .cv-rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.cv-wave .cv-rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.cv-wave .cv-rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.cv-wave .cv-rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes cv-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

}

@keyframes cv-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

}

/*--------------------------
    Usage: Three Bounce
--------------------------*/
.cv-three-bounce {
    margin: 40px auto;
    width: 80px;
    text-align: center;
}

.cv-three-bounce .cv-child {
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: cv-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: cv-three-bounce 1.4s ease-in-out 0s infinite both;
}

.cv-three-bounce .cv-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.cv-three-bounce .cv-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes cv-three-bounce {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

}

@keyframes cv-three-bounce {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

}

/*--------------------------------
    Usage: Three Folding Cube
--------------------------------*/
.cv-folding-cube {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.cv-folding-cube .cv-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.cv-folding-cube .cv-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    -webkit-animation: cv-foldCubeAngle 2.4s infinite linear both;
    animation: cv-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.cv-folding-cube .cv-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.cv-folding-cube .cv-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.cv-folding-cube .cv-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.cv-folding-cube .cv-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.cv-folding-cube .cv-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.cv-folding-cube .cv-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes cv-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 cv-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;
    }

}

/*--------------------------
    Usage: Spinner
--------------------------*/
@keyframes cv-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }

}

.cv-spinner div {
    left: 0;
    top: 0;
    position: absolute;
    animation: cv-spinner linear 1s infinite;
    background: #333333;
    width: 7px;
    height: 16px;
    border-radius: 6px / 12px;
    transform-origin: 3px 30px;
}

.cv-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -0.9166666666666666s;
    background: #333333;
}

.cv-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -0.8333333333333334s;
    background: #333333;
}

.cv-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.75s;
    background: #333333;
}

.cv-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.6666666666666666s;
    background: #333333;
}

.cv-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.5833333333333334s;
    background: #333333;
}

.cv-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.5s;
    background: #333333;
}

.cv-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.4166666666666667s;
    background: #333333;
}

.cv-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.3333333333333333s;
    background: #333333;
}

.cv-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.25s;
    background: #333333;
}

.cv-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.16666666666666666s;
    background: #333333;
}

.cv-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.08333333333333333s;
    background: #333333;
}

.cv-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
    background: #333333;
}

/*--------------------------
    Usage: Rolling
--------------------------*/
@keyframes cv-rolling {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

.cv-rolling div {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 10px solid #333;
    border-top-color: transparent !important;
    border-radius: 50%;
}

.cv-rolling div {
    animation: cv-rolling 1s linear infinite;
}

/*--------------------------
    Usage: Reload
--------------------------*/
@keyframes cv-reload {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg);
    }

}

.cv-reload {
    transform: scale(0.7);
    position: absolute;
    left: -35px;
    top: -35px;
}

.cv-reload>div {
    animation: cv-reload 1s infinite linear;
    transform-origin: 50px 50px;
}

.cv-reload>div div {
    position: absolute;
}

.cv-reload>div div:nth-child(1), .cv-reload>div div:nth-child(2) {
    width: 82px;
    height: 82px;
    border: 12px solid;
    border-radius: 50%;
    border-color: transparent #333333 #333333 #333333;
    border-top-color: transparent !important;
    box-sizing: border-box;
    position: absolute;
    transform: rotate(45deg);
    transform-origin: 50px 50px;
}

.cv-reload>div div:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.cv-reload>div div:nth-child(2) {
    transform: rotate(0deg) translate(9px, 9px);
}

.cv-reload>div div:nth-child(3) {
    width: 0;
    height: 0;
    border: 12px solid;
    border-color: transparent transparent transparent #333333;
    border-left-color: #333333;
    transform: translate(50px, 3px);
}

/*--------------------------
    Usage: Ripple
--------------------------*/
@keyframes cv-ripple {
    0% {
        top: 48px;
        left: 48px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 9px;
        left: 9px;
        width: 78px;
        height: 78px;
        opacity: 0;
    }

}

.cv-ripple {
    transform: scale(0.7);
}

.cv-ripple div {
    position: absolute;
    border-width: 3px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    animation: cv-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.cv-ripple div:nth-child(1) {
    border-color: #333333;
    animation-delay: 0s;
}

.cv-ripple div:nth-child(2) {
    border-color: #212121;
    animation-delay: -0.5s;
}

/*--------------------------
    Usage: Cube
--------------------------*/
@keyframes cv-cube {
    0% {
        transform: scale(1.1500000000000001)
    }

    100% {
        transform: scale(1)
    }

}

.cv-cube {
    position: absolute;
    left: -26px;
    top: -26px;
    transform: scale(0.8);
}

.cv-cube div {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background: #333333;
    animation: cv-cube 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: -0.3s;
}

.cv-cube div:nth-child(2) {
    top: 0;
    left: 35px;
    background: #333333;
    animation-delay: -0.2s;
    opacity: 0.9;
}

.cv-cube div:nth-child(3) {
    top: 34px;
    left: 0;
    background: #333333;
    animation-delay: 0s;
}

.cv-cube div:nth-child(4) {
    top: 34px;
    left: 35px;
    background: #333333;
    animation-delay: -0.1s;
    opacity: 0.9;
}

/*--------------------------
    Usage: Block
--------------------------*/
@keyframes cv-block {
    0% {
        background: #212121
    }

    12.5% {
        background: #212121
    }

    12.625% {
        background: #212121
        opacity:0.8;
    }

    100% {
        background: #212121
        opacity:0.8;
    }

}

.preloader-background .cv-block {
    position: absolute;
    transform: scale(0.5);
    left: -50px;
    top: -50px;
}

.preloader-background .cv-block div {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #545454;
    animation: cv-block 1s linear infinite;
}

/*--------------------------
    Usage: Dual Ball
--------------------------*/
@keyframes cv-dual-ball-o {
    0% {
        opacity: 1;
        transform: translate(0 0)
    }

    49.99% {
        opacity: 1;
        transform: translate(40px, 0)
    }

    50% {
        opacity: 0;
        transform: translate(40px, 0)
    }

    100% {
        opacity: 0;
        transform: translate(0, 0)
    }

}

@keyframes cv-duall-ball-1 {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(40px, 0)
    }

    100% {
        transform: translate(0, 0)
    }

}

.cv-dual-ball {
    transform: scale(0.6);
    position: absolute;
    left: -30px;
    top: -30px;
}

.cv-dual-ball div {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 30px;
    left: 10px;
}

.cv-dual-ball div:nth-child(1) {
    background: #212121;
    animation: cv-dual-ball-1 1s linear infinite;
    animation-delay: -0.5s;
    opacity: 0.5;
}

.cv-dual-ball div:nth-child(2) {
    background: #212121;
    animation: cv-dual-ball-1 1s linear infinite;
    animation-delay: 0s;
    opacity: 0.5;
}

.cv-dual-ball div:nth-child(3) {
    background: #212121;
    animation: cv-dual-ball-o 1s linear infinite;
    animation-delay: -0.5s;
    opacity: 0.8;
}

/*--------------------------
    Usage: Disk
--------------------------*/
@keyframes cv-disk {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }

}

.cv-disk {
    position: absolute;
    left: -35px;
    top: -35px;
    transform: scale(0.7);
}

.cv-disk>div>div {
    position: absolute;
    border-radius: 50%;
}

.cv-disk>div>div:nth-child(1) {
    top: 15px;
    left: 15px;
    width: 70px;
    height: 70px;
    background: #212121;
}

.cv-disk>div>div:nth-child(2) {
    top: 19.900000000000002px;
    left: 39.5px;
    width: 21px;
    height: 21px;
    background: #ffffff;
    animation: cv-disk 1s linear infinite;
    transform-origin: 10.5px 30.099999999999998px;
}

/*--------------------------
    Usage: Ball
--------------------------*/
@keyframes cv-ball {
    0%, 100% {
        animation-timing-function: cubic-bezier(0.45, 0, 0.9, 0.55)
    }

    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(0, 50px);
        animation-timing-function: cubic-bezier(0, 0.45, 0.55, 0.9);
    }

    100% {
        transform: translate(0, 0);
    }

}

#preloader-background .cv-ball {
    left: -50px;
    position: absolute;
    top: -50px;
}

.cv-ball div {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333333;
    left: -15px;
    top: -25px;
    animation: cv-ball 1s linear infinite;
}

/*--------------------------
    Usage: Radio
--------------------------*/
@keyframes cv-radio {
    0% {
        opacity: 0
    }

    20% {
        opacity: 1
    }

    100% {
        opacity: 1
    }

}

.cv-radio {
    left: -30px;
    position: absolute;
    top: -40px;
    transform: scale(0.7);
}

.cv-radio div {
    position: absolute;
    animation: cv-radio 1s linear infinite;
    box-sizing: border-box !important;
}

.cv-radio div:nth-child(1) {
    width: 22px;
    height: 22px;
    left: 17px;
    top: 64px;
    border-radius: 50%;
    background: #212121;
}

.cv-radio div:nth-child(2) {
    width: 33px;
    height: 33px;
    left: 28px;
    top: 42px;
    border-radius: 0 33px 0 0;
    border: 10px solid #212121;
    background: none;
    animation-delay: 0.1s;
    border-bottom: 0;
    border-left: 0;
    opacity: 0.8;
}

.cv-radio div:nth-child(3) {
    width: 55px;
    height: 55px;
    left: 28px;
    top: 20px;
    border-radius: 0 55px 0 0;
    border: 10px solid #212121;
    background: none;
    animation-delay: 0.2s;
    border-bottom: 0;
    border-left: 0;
    opacity: 0.5;
}

/*--------------------------
    Usage: Bean Eater
--------------------------*/
@keyframes cv-bean-eater-1 {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(0deg)
    }

}

@keyframes cv-bean-eater-2 {
    0% {
        transform: rotate(180deg)
    }

    50% {
        transform: rotate(225deg)
    }

    100% {
        transform: rotate(180deg)
    }

}

.cv-bean-eater {
    position: absolute;
    left: -25px;
    top: -40px;
    transform: scale(0.8);
}

.cv-bean-eater>div:nth-child(2) {
    transform: translate(-15px, 0);
}

.cv-bean-eater>div:nth-child(2) div {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 30px;
    border-radius: 60px 60px 0 0;
    background: #212121;
    animation: cv-bean-eater-1 1s linear infinite;
    transform-origin: 30px 30px
}

.cv-bean-eater>div:nth-child(2) div:nth-child(2) {
    animation: cv-bean-eater-2 1s linear infinite
}

.cv-bean-eater>div:nth-child(2) div:nth-child(3) {
    transform: rotate(-90deg);
    animation: none;
}

@keyframes cv-bean-eater-3 {
    0% {
        transform: translate(95px, 0);
        opacity: 0
    }

    20% {
        opacity: 1
    }

    100% {
        transform: translate(35px, 0);
        opacity: 1
    }

}

.cv-bean-eater>div:nth-child(1) {
    display: block;
}

.cv-bean-eater>div:nth-child(1) div {
    position: absolute;
    top: 46px;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666666;
    animation: cv-bean-eater-3 1s linear infinite
}

.cv-bean-eater>div:nth-child(1) div:nth-child(1) {
    animation-delay: -0.67s
}

.cv-bean-eater>div:nth-child(1) div:nth-child(2) {
    animation-delay: -0.33s
}

.cv-bean-eater>div:nth-child(1) div:nth-child(3) {
    animation-delay: 0s
}

/*--------------------------
    Usage: Double Ring
--------------------------*/
@keyframes cv-double-ring {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }

}

.cv-double-ring {
    transform: scale(0.7);
    position: absolute;
    left: -35px;
    top: -35px;
}

.cv-double-ring div {
    box-sizing: border-box !important
}

.cv-double-ring>div {
    position: absolute;
    width: 72px;
    height: 72px;
    top: 14px;
    left: 14px;
    border-radius: 50%;
    border: 8px solid #000;
    border-color: #212121 transparent #212121 transparent;
    animation: cv-double-ring 1s linear infinite;
}

.cv-double-ring>div:nth-child(2), .cv-double-ring>div:nth-child(4) {
    width: 54px;
    height: 54px;
    top: 23px;
    left: 23px;
    animation: cv-double-ring 1s linear infinite reverse;
}

.cv-double-ring>div:nth-child(2) {
    border-color: transparent #666666 transparent #666666
}

.cv-double-ring>div:nth-child(3) {
    border-color: transparent
}

.cv-double-ring>div:nth-child(3) div {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

.cv-double-ring>div:nth-child(3) div:before, .cv-double-ring>div:nth-child(3) div:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: -8px;
    left: 24px;
    background: #212121;
    border-radius: 50%;
    box-shadow: 0 64px 0 0 #212121;
}

.cv-double-ring>div:nth-child(3) div:after {
    left: -8px;
    top: 24px;
    box-shadow: 64px 0 0 0 #212121;
}

.cv-double-ring>div:nth-child(4) {
    border-color: transparent;
}

.cv-double-ring>div:nth-child(4) div {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

.cv-double-ring>div:nth-child(4) div:before, .cv-double-ring>div:nth-child(4) div:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: -8px;
    left: 15px;
    background: #666666;
    border-radius: 50%;
    box-shadow: 0 46px 0 0 #666666;
}

.cv-double-ring>div:nth-child(4) div:after {
    left: -8px;
    top: 15px;
    box-shadow: 46px 0 0 0 #666666;
}
