.tab-content {
	position: relative;
}

.tab-content > .tab-pane {
	float: left;
	width: 100%;
	display: none;
}

.tab-content > .tab-pane.active {
	display: block;
	padding: 10px;
}

.shortener {
	width: 20%;
	display: inline-block;
	border: 1px solid;
	border-radius: 25px;
	padding: 10px;
	margin: 10px;
	text-align: center;
	align-items: center;
}

.box {
	margin: 5px;
	display: inline-block;
}

.logo {
	margin: 10px;
	height: 50px;
	width: auto;
}

.cklph-wdl-btn-text {
	transition: all 0.2s;
}

.button-primary {
	position: relative;

}

.cklph-wdl-loading .cklph-wdl-btn-text {
	visibility: hidden;
	opacity: 0;
}

.cklph-wdl-loading::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: #fff;
	border-radius: 50%;
	animation: cklph-wdl-btn-loading 1s ease infinite;
}

.cklph-wdl-bulk {
	position: absolute;
	bottom: 80%;
	left: 84%;
}

@media screen and (max-width: 1366px) {
	.shortener {
		width: 40%;
	}
	
	.cklph-wdl-bulk {
		bottom: 90%;
		left: 78%;
	}

	.logo {
		height: 40px;
	}
}

@media screen and (max-width: 800px) {
	.cklph-wdl-bulk {
		left: 68%;
	}
}

@media screen and (max-width: 480px) {
	.shortener {
		width: 90%;
	}

	.cklph-wdl-bulk {
		bottom: 92%;
		left: 65%;
	}
}

@keyframes cklph-wdl-btn-loading {
	from {
		transform: rotate(0turn);
	}
	to {
		transform: rotate(1turn);
	}
}