/*----------------------
 * WooVina Preloader CSS
 *----------------------
 */

.woovina-loader {
    text-indent: -12345px;
}

/*------------------
 * Preloader Style 1
 *------------------
 */

.wvp-loader-one {
    width: 50px;
    height: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    -moz-animation: spinner 700ms infinite linear;
    -ms-animation: spinner 700ms infinite linear;
    -o-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*------------------
 * Preloader Style 2
 *------------------
 */

.wvp-loader-two {
    position: relative;
    width: 80px;
    height: 80px;
    -webkit-animation: spinner 5s infinite linear;
    animation: spinner 5s infinite linear;
	margin: -42px 0 0 -42px;
}

.wvp-loader-two span {
    width: 40px;
    height: 40px;
    position: absolute;
    background: red;
    display: block;
    -webkit-animation: spinner-two 1s infinite linear;
    animation: spinner-two 1s infinite linear;
}

.wvp-loader-two span:nth-child(1) {
    background: #59b210;
}

.wvp-loader-two span:nth-child(2) {
    left: 44px;
    background: #ee047d;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.wvp-loader-two span:nth-child(3) {
    top: 44px;
    background: #3498db;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.wvp-loader-two span:nth-child(4) {
    top: 44px;
    left: 44px;
    background: #F68E13;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@-webkit-keyframes spinner-two {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spinner-two {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

/*------------------
 * Preloader Style 3
 *------------------
 */

.wvp-loader-three {
    position: relative;
}

.wvp-loader-three span {
    display: block;
    bottom: 0px;
    width: 9px;
    height: 5px;
    background: #9b59b6;
    position: absolute;
    -webkit-animation: spinner-three 1.5s infinite ease-in-out;
    animation: spinner-three 1.5s infinite ease-in-out;
}

.wvp-loader-three span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.wvp-loader-three span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.wvp-loader-three span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.wvp-loader-three span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

@-webkit-keyframes spinner-three {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db;
    }
    50% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
    100% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
}

@keyframes spinner-three {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db;
    }
    50% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
    100% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
}

/*------------------
 * Preloader Style 4
 *------------------
 */

.wvp-loader-four {
    width: 80px;
    height: 80px;
	margin: -40px 0 0 -40px;
}
.wvp-loader-four .spinner-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: #F68E13;
    float: left;
    -webkit-animation: spinner-four 1.3s infinite ease-in-out;
    animation: spinner-four 1.3s infinite ease-in-out;
}
.wvp-loader-four .spinner-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.wvp-loader-four .spinner-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.wvp-loader-four .spinner-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.wvp-loader-four .spinner-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.wvp-loader-four .spinner-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.wvp-loader-four .spinner-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.wvp-loader-four .spinner-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.wvp-loader-four .spinner-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.wvp-loader-four .spinner-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes spinner-four {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes spinner-four {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

/*------------------
 * Preloader Style 5
 *------------------
 */

.wvp-loader-five {
    width: 80px;
    height: 80px;
    position: relative;
	margin: -40px 0 0 -40px;
}

.wvp-loader-five .spinner-cube {
    border: 2px solid transparent;
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
        transform: scale(1.1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
        box-sizing: border-box;
}

.wvp-loader-five .spinner-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F68E13;
    -webkit-animation: spinner-five 2.4s infinite linear both;
    animation: spinner-five 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.wvp-loader-five .spinner-cube-2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.wvp-loader-five .spinner-cube-3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.wvp-loader-five .spinner-cube-4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.wvp-loader-five .spinner-cube-2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.wvp-loader-five .spinner-cube-3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.wvp-loader-five .spinner-cube-4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes spinner-five {
    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 spinner-five {
    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;
    }
}

/*------------------
 * Preloader Style 6
 *------------------
 */

.wvp-loader-six {
    width: 70px;
    height: 70px;
	margin: -35px 0 0 -35px;
    position: relative;
}

.wvp-loader-six .spinner-cube-1,
.wvp-loader-six .spinner-cube-2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #F68E13;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: spinner-six 2.0s infinite ease-in-out;
    animation: spinner-six 2.0s infinite ease-in-out;
}

.wvp-loader-six .spinner-cube-2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes spinner-six {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes spinner-six {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/*------------------
 * Preloader Style 7
 *------------------
 */

.wvp-loader-seven {
	width: 112px;
	height: 112px;
	margin: -56px 0 0 -56px;
}
.wvp-loader-seven .box1,
.wvp-loader-seven .box2,
.wvp-loader-seven .box3 {
	border: 16px solid #f68e13;
	box-sizing: border-box;
	position: absolute;
	display: block;
}
.wvp-loader-seven .box1 {
	width: 112px;
	height: 48px;
	margin-top: 64px;
	margin-left: 0px;
	-webkit-animation: seven-anime1 2s 0s forwards ease-in-out infinite;
		animation: seven-anime1 2s 0s forwards ease-in-out infinite;
}
.wvp-loader-seven .box2 {
	width: 48px;
	height: 48px;
	margin-top: 0px;
	margin-left: 0px;
	-webkit-animation: seven-anime2 2s 0s forwards ease-in-out infinite;
		animation: seven-anime2 2s 0s forwards ease-in-out infinite;
}
.wvp-loader-seven .box3 {
	width: 48px;
	height: 48px;
	margin-top: 0px;
	margin-left: 64px;
	-webkit-animation: seven-anime3 2s 0s forwards ease-in-out infinite;
		animation: seven-anime3 2s 0s forwards ease-in-out infinite;
}
@-webkit-keyframes seven-anime1 {
	0% {
		width: 112px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	12.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	25% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	37.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	50% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	62.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	75% {
		width: 48px;
		height: 112px;
		margin-top: 0px;
		margin-left: 0px;
	}
	87.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	100% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
}
@keyframes seven-anime1 {
	0% {
		width: 112px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	12.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	25% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	37.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	50% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	62.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
	75% {
		width: 48px;
		height: 112px;
		margin-top: 0px;
		margin-left: 0px;
	}
	87.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	100% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
}
@-webkit-keyframes seven-anime2 {
	0% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	12.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	25% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	37.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	50% {
		width: 112px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	62.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	75% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	87.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	100% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
}
@keyframes seven-anime2 {
	0% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	12.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	25% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	37.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	50% {
		width: 112px;
		height: 48px;
		margin-top: 0px;
		margin-left: 0px;
	}
	62.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	75% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	87.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	100% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
}
@-webkit-keyframes seven-anime3 {
	0% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	12.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	25% {
		width: 48px;
		height: 112px;
		margin-top: 0px;
		margin-left: 64px;
	}
	37.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	50% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	62.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	75% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	87.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	100% {
		width: 112px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
}
@keyframes seven-anime3 {
	0% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	12.5% {
		width: 48px;
		height: 48px;
		margin-top: 0px;
		margin-left: 64px;
	}
	25% {
		width: 48px;
		height: 112px;
		margin-top: 0px;
		margin-left: 64px;
	}
	37.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	50% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	62.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	75% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	87.5% {
		width: 48px;
		height: 48px;
		margin-top: 64px;
		margin-left: 64px;
	}
	100% {
		width: 112px;
		height: 48px;
		margin-top: 64px;
		margin-left: 0px;
	}
}

/*------------------
 * Preloader Style 8
 *------------------
 */
 
.wvp-loader-eight {
	margin: -50px 0 0 -50px;
	text-indent: unset;
}
.wvp-loader-eight svg {
	overflow: visible !important;
	width: 100px;
	height: 150px;
}
.wvp-loader-eight svg g {
	animation: eight-slide 2s linear infinite;
}
.wvp-loader-eight svg g:nth-child(2) {
	animation-delay: 0.5s;
}
.wvp-loader-eight svg g:nth-child(2) path {
	animation-delay: 0.5s;
	stroke-dasharray: 0px 158px;
	stroke-dashoffset: 1px;
}
.wvp-loader-eight svg path {
	stroke: url(#gradient);
	stroke-width: 20px;
	stroke-linecap: round;
	fill: none;
	stroke-dasharray: 0 157px;
	stroke-dashoffset: 0;
	animation: eight-escalade 2s cubic-bezier(0.8, 0, 0.2, 1) infinite;
}

@keyframes eight-slide {
	0% {
		transform: translateY(-50px);
	}
	100% {
		transform: translateY(50px);
	}
}
@keyframes eight-escalade {
	0% {
		stroke-dasharray: 0 157px;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 156px 157px;
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dasharray: 156px 157px;
		stroke-dashoffset: -156px;
	}
}

/*------------------
 * Preloader Style 9
 *------------------
 */
 
.wvp-loader-nine {
    width: 16em;
    height: 8em;
    position: relative;
    overflow: hidden;
	text-indent: unset;
	margin: -40px 0 0 -80px;
}

.wvp-loader-nine::before,
.wvp-loader-nine::after {
    content: '';
    position: absolute;
    bottom: 0;
}

.wvp-loader-nine::before {
    width: inherit;
    height: 0.2em;
    background-color: #f68e13;
	left: 0;
}

.wvp-loader-nine::after {
    box-sizing: border-box;
    width: 50%;
    height: inherit;
    border: 0.2em solid #f68e13;
    border-radius: 50%;
    left: 25%;
}

.wvp-loader-nine span {
    position: absolute;
    width: 5%;
    height: 10%;
    background-color: #f68e13;
    border-radius: 50%;
    bottom: 0.2em;
    left: -5%;
    animation: 2s linear infinite;
    transform-origin: 50% -3em;
    animation-name: nine-run, nine-rotating;
}

.wvp-loader-nine span:nth-child(2) {animation-delay: 0.075s;}
.wvp-loader-nine span:nth-child(3) {animation-delay: 0.15s;}

@keyframes nine-run {
    0% {left: -5%;}
    10%, 60% {left: calc((100% - 5%) / 2);}
    70%, 100% {left: 100%;}
}

@keyframes nine-rotating {
    0%, 10% {transform: rotate(0deg);}
    60%, 100% {transform: rotate(-1turn);}
}

/*-------------------
 * Preloader Style 10
 *-------------------
 */
 
.wvp-loader-ten {
	transform: translate(-50%,-50%);
	position: relative;
	text-indent: unset;
	width: 200px;
	height: 70px;
	margin: unset;
}
.wvp-loader-ten .blob-1,
.wvp-loader-ten .blob-2 {
	width: 60px;
	height: 60px;
	position: absolute;
	background: #333;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.wvp-loader-ten .blob-1 {
	left: 20%;
	animation: ten-l 1.5s ease infinite;
}
.wvp-loader-ten .blob-2 {
	left: 80%;
	animation: ten-r 1.5s ease infinite;
	background: #f68e13;
}
@keyframes ten-l {
	0%{left:20%;}
	50%{left:50%;}
	100%{left:20%;}
}
@keyframes ten-r {
	0%{left:80%;}
	50%{left:50%;}
	100%{left:80%;}
}

/*-------------------
 * Preloader Style 11
 *-------------------
 */

.wvp-loader-eleven {
	margin: -38px 0 0 -38px;
}
.wvp-loader-eleven .eleven-spinner {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    background: transparent;
    border-top: 4px solid #F68E13;
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s eleven-spin linear infinite;
    animation: 1s eleven-spin linear infinite;
}
    
@-webkit-keyframes eleven-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
          
@keyframes eleven-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-------------------
 * Preloader Style 12
 *-------------------
 */

.wvp-loader-twelve {
	margin: -38px 0 0 -38px;
}
.wvp-loader-twelve .twelve-spinner {
    width: 76px;
    height: 76px;
	margin: 0 auto;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid #212129;
    border-top: 4px solid #F68E13;
    border-bottom: 4px solid #F68E13;
    -webkit-animation: 1s twelve-spin linear infinite;
    animation: 1s twelve-spin linear infinite;
}

@-webkit-keyframes twelve-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
          
@keyframes twelve-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-------------------
 * Preloader Style 13
 *-------------------
 */

#loader-preview .wvp-loader-thirteen {
	display: flex;
	justify-content: center;
	align-items: center;
}
.wvp-loader-thirteen {
	display: flex;
	margin: -38px 0 0 -38px;
}
.wvp-loader-thirteen .thirteen-spinner {
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid transparent;
    border-top: 4px solid #222;
    border-left: 4px solid #222;
    -webkit-animation: 2s thirteen-spin linear infinite;
    animation: 2s thirteen-spin linear infinite;
}
                                      
.wvp-loader-thirteen .thirteen-spinner:nth-child(2) {
    border: 4px solid transparent;
    border-right: 4px solid #F68E13;
    border-bottom: 4px solid #F68E13;
    -webkit-animation: 1s thirteen-spin linear infinite;
    animation: 1s thirteen-spin linear infinite;
}

@-webkit-keyframes thirteen-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
          
@keyframes thirteen-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
