

.play-icon i {
	width: 70px;
	height: 70px;
	line-height: 71px;
	font-size: 24px;
	background: linear-gradient(60deg, #fE9603, #ff8e01, #ed9931, #f37055);
	color: #FFF;
	text-align: center;
	border-radius: 50%;
	padding-left: 4px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	transition: transform .3s ease;
	animation: animdgradient 3s ease alternate infinite;
	background-size: 300% 300%;
}

@keyframes animdgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.play-icon:hover i { transform: scale(1.1); }

#oc-clients .oc-item img { height: 32px; }

/* Pricing Switcher
-----------------------------------------------------------------*/
input.switch-toggle-round + label::before,
input.switch-toggle-round + label {
	border-radius: 4px;
	background-color: var(--themecolor);
}

.price-discount {
	position: relative;
	top: -12px;
	margin-left: 10px;
	background: url('images/icons/discount.svg') no-repeat 0 0;
	width: 60px;
	height: 39px;
}

input.switch-toggle-round + label::after { border-radius: 4px }

