/**
 * loading animation tickoweb
*/
.logo {
	position: fixed;
	width: 68px;
	height: 68px;
	background: linear-gradient(135deg, #ffde76 0%, #fbb034 100%) #ffde76;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.logo-wrap {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
}

.square {
	width: 15px;
	height: 15px;
	background: #fff;
	position: relative;
}

.square-1,
.square-4 {
	opacity: .79;
}

.square-2 {
	opacity: .44;
}

.loader-reseller {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	transform: translate(-50%, -50%);
	transform: -webkit-translate(-50%, -50%);
	transform: -moz-translate(-50%, -50%);
	transform: -ms-translate(-50%, -50%);
}

.loader-reseller div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #000;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #000 transparent transparent transparent;
}

.loader-reseller div:nth-child(1) {
	animation-delay: -0.45s;
}

.loader-reseller div:nth-child(2) {
	animation-delay: -0.3s;
}

.loader-reseller div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/**
 * Skeleton Loading Animation With Shimmer
 */
.skeleton-box {
	display: inline-block;
	height: 10px;
	background-color: #dddbdd;
	width: 100%;
	opacity: 0.5;
	animation: fade 1s ease-in-out infinite alternate;
}

@keyframes fade {
	from {
		opacity: 0.3;
	}
	to {
		opacity: 0.9;
	}
}
