.loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 24px;
	width: 24px;
	margin-top: -15px;
	margin-left: -15px;
	-webkit-animation: loading-center-absolute 1s infinite;
	animation: loading-center-absolute 1s infinite;
}

.loading-object {
	width: 8px;
	height: 8px;
	background-color: #FFF;
	float: left;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
	margin-right: 8px;
	margin-bottom: 8px;
}

.loading-object:nth-child(2n+0) {
	margin-right: 0px;
}

#object_one {
	-webkit-animation: object_one 1s infinite;
	animation: object_one 1s infinite;
}

#object_two {
	-webkit-animation: object_two 1s infinite;
	animation: object_two 1s infinite;
}

#object_three {
	-webkit-animation: object_three 1s infinite;
	animation: object_three 1s infinite;
}

#object_four {
	-webkit-animation: object_four 1s infinite;
	animation: object_four 1s infinite;
}

@-webkit-keyframes loading-center-absolute {
	100% {
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@keyframes loading-center-absolute {
	100% {
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes object_one {
	50% {
		-ms-transform: translate(8px, 8px);
		-webkit-transform: translate(8px, 8px);
		transform: translate(8px, 8px);
	}
}

@keyframes object_one {
	50% {
		-ms-transform: translate(8px, 8px);
		-webkit-transform: translate(8px, 8px);
		transform: translate(8px, 8px);
	}
}

@-webkit-keyframes object_two {
	50% {
		-ms-transform: translate(-8px, 8px);
		-webkit-transform: translate(-8px, 8px);
		transform: translate(-8px, 8px);
	}
}

@keyframes object_two {
	50% {
		-ms-transform: translate(-8px, 8px);
		-webkit-transform: translate(-8px, 8px);
		transform: translate(-8px, 8px);
	}
}

@-webkit-keyframes object_three {
	50% {
		-ms-transform: translate(8px, -8px);
		-webkit-transform: translate(8px, -8px);
		transform: translate(8px, -8px);
	}
}

@keyframes object_three {
	50% {
		-ms-transform: translate(8px, -8px);
		-webkit-transform: translate(8px, -8px);
		transform: translate(8px, -8px);
	}
}

@-webkit-keyframes object_four {
	50% {
		-ms-transform: translate(-8px, -8px);
		-webkit-transform: translate(-8px, -8px);
		transform: translate(-8px, -8px);
	}
}

@keyframes object_four {
	50% {
		-ms-transform: translate(-8px, -8px);
		-webkit-transform: translate(-8px, -8px);
		transform: translate(-8px, -8px);
	}
}

.loading-spinner-box {
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
}

.loading-spinner,
.loading-spinner div {
    border-radius: 50%;
    border: 4px solid #0000;
    border-right-color: var(--theme-color,#F77400);
    box-sizing: border-box;
    padding: 2px;
    will-change: transform;
    animation-fill-mode: forwards;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    animation: spinner 1s infinite linear;
}

.loading-spinner div {
    width: 100%;
    height: 100%;
    animation: spinner 2s infinite;
}

@keyframes spinner {
    100% {
        transform: rotate(360deg)
    }
}

.success-checkmark {
    overflow: hidden;
    transform: scale(0.3);
    position: absolute;
    left: -32px;
    top: -35px;
}

.check-icon {
    width: 100px;
    height: 100px;
    position: relative;
    border: 4px solid #5fd97a;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.check-icon .check-icon-line {
    background-color: #5fd97a;
    border-radius: 2px;
    position: absolute;
    z-index: 6;
}

.check-icon .check-icon-line.line-tip {
    width: 6%;
    height: 32%;
    left: 25%;
    bottom: 38%;
    animation: check-line-tip 0.75s;
}

.check-icon .check-icon-line.line-long {
    width: 59%;
    height: 6%;
    left: 25%;
    top: 57%;
    animation: check-line-long 0.75s;
}

.check-icon .check-icon-circle {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(95, 217, 121, 0.2);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 5;
}

.check-icon-mask {
    position: absolute;
    background-color: var(--content-bg-color,#0b2e4d);
}

.check-icon .mask1 {
    height: 110%;
    width: 40%;
    top: -5%;
    left: -15%;
    border-radius: 50% 0 0 50%;
}

.check-icon .mask2 {
    width: 100%;
    height: 170%;
    top: -35%;
    left: 25%;
    border-radius: 0 50% 50% 0;
    transform-origin: left;
    animation: check-mask-rotate 0.4s ease-in;
}

@keyframes check-mask-rotate {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes check-line-tip {
    0% {
        height: 0;
        bottom: 100%;
    }

    45% {
        height: 0;
        bottom: 100%;
    }

    75% {
        height: 57%;
        bottom: 38%;
    }

    85% {
        height: 30%;
        bottom: 38%;
    }

    100% {
        height: 32%;
        bottom: 38%;
    }
}

@keyframes check-line-long {
    0% {
        width: 0;
    }

    60% {
        width: 0;
    }

    75% {
        width: 70%;
    }

    100% {
        width: 59%;
    }
}

.error-box {
    transform: scale(0.3);
    position: absolute;
    left: -32px;
    top: -34px;
}

.error-icon {
    width: 100px;
    height: 100px;
    border: 4px solid #ff3b30;
    border-radius: 50%;
    position: relative;
    animation: error-rotate 0.55s;
}

.error-icon .error-icon-line {
    width: 56%;
    height: 56%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    animation: error-scale 0.5s;
}

.error-icon .error-icon-line div {
    background-color: #ff3b30;
    border-radius: 2px;
    position: absolute;
}

.error-icon .error-line-left {
    width: 10%;
    height: 100%;
    left: 45%;
}

.error-icon .error-line-right {
    width: 100%;
    height: 10%;
    top: 45%;
}

@keyframes error-rotate {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0);
        opacity: 1;
    }
}

@keyframes error-scale {
    0% {
        transform: rotate(45deg) scale(.4);
        opacity: 0;
        margin-top: 50%;
    }

    40% {
        transform: rotate(45deg) scale(.4);
        opacity: 0;
        margin-top: 50%;
    }

    80% {
        transform: rotate(45deg) scale(1.15);
        opacity: 1;
        margin-top: 22%;
    }

    100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
        margin-top: 22%;
    }
}