/*--------------------------------------------------------------
# Basics
--------------------------------------------------------------*/
body {
	overflow-x: hidden;
	background: #100a12;
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul {
	list-style: none;
}
textarea, input, a, button { 
	outline: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: 'Orbitron', sans-serif;
	font-size: 16px;
	color: #fff;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
a {
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
a:hover, a:visited, a:focus, a:active, button:hover, button:visited, button:active, button:focus; {
	text-decoration: none !important;
	outline: none !important;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animation-delay-100 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.animation-delay-200 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.animation-delay-300 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.animation-delay-400 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.animation-delay-600 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.animation-delay-800 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.animation-delay-1000 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.animation-delay-2000 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
.wtool-inner {
	position: relative;
}
.wtool-listing-header {
	padding: 15px 20px 0 20px;
	text-align: center;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #1b121d;
    background: -moz-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: -webkit-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
	z-index: 5;
	border-bottom: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.header-logo {
	max-width: 60px;
	margin: 0 0 10px 0;
}
.wtool-listing-header h1 {
	font-size: 1.4em;
	margin: 0;
	text-transform: uppercase;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
	letter-spacing: 3px;
	color: #fff;
}
.wtool-listing-wrapper {
	margin-top: 10px;
	padding: 200px 20px 0 20px;
}
.search-form-wrapper {
	padding: 10px 0 20px 0;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.search-input-wrapper {
	position: relative;
	background: #110c1e;
	border-radius: 50px;
	border: 1px solid rgba(0, 0, 0, 0.3);
}
.search-input {
	border: none;
	box-shadow: none;
	background: transparent;
	width: 100%;
	border-radius: 7px;
	height: 45px;
	color: #fff;
	padding: 0 20px 0 45px;
	font-size: 0.9em;
}
.search-input::-webkit-input-placeholder {
	color: #9300ff;
}
.search-input:-moz-placeholder {
	color: #9300ff;
	opacity:  1;
}
.search-input::-moz-placeholder {
	color: #9300ff;
	opacity:  1;
}
.search-input:-ms-input-placeholder {
	color: #9300ff;
}
.search-input-wrapper span {
	position: absolute;
	left: 20px;
	top: 15px;
	font-size: 1em;
	color: #9300ff;
}
.logo-img {
	display: table;
	margin: 0 auto 5px auto;
	max-width: 200px;
	max-height: 70px;
}
.wtool-listing-title span {
	display: block;
	font-size: 1.4em;
	filter: invert(84%) sepia(29%) saturate(474%) hue-rotate(93deg) brightness(91%) contrast(88%);
}
.home-section-title-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 17px;
	padding-bottom: 5px;
	border-bottom: 2px solid #e7edf5;
}
.title-icon {
	max-width: 20px;
	max-height: 20px;
	margin-right: 7px;
}
.home-section-title-wrapper h4 {
	margin: 0;
	font-size: 1.2em;
	font-weight: 700;
}
.wtool-li-item-row {
	position: relative;
	background: #1b121d;
    background: -moz-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: -webkit-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
	border-radius: 10px;
	overflow:hidden;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	margin-bottom: 20px;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
}
.wtool-li-item-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.wtool-li-item-left {
	width: 100%;
	text-align: center;
}
.wtool-li-item-middle {
	width: 100%;
	padding: 20px 15px 0 15px;
}
.wtool-li-item-right {
	width: 100%;
	margin-top: 30px;
}
.wtool-li-item-col-meta {
	display: flex;
	justify-content: space-between; 
	align-items: center;
}
.wtool-li-item-size-dls {
	font-size: 0.55em;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #878aa4;
	font-weight: 700;
}
.meta-file-dls {
	display: block;
}
.wtool-li-item-size-dls strong {
	color: #fff;
}
.wtool-li-item-row:last-child {
	margin-bottom: 0;
}
.wtool-li-item-title {
	margin: 15px 0;
}
.wtool-li-item-description {
	font-size: 0.8em;
	color: #878aa4;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
			line-clamp: 3; 
	-webkit-box-orient: vertical;
	margin: 0;
}
.wtool-li-item-version {
	color: #adb1b7;
}
.wtool-li-item-version-val {
	font-weight: 600;
	margin-left: 5px;
}
.wtool-li-item-badge {
	display: flex;
	align-items: center;
}
.wtool-li-item-badge span {
	padding: 5px 5px 6px 5px;
	color: #9300ff;
	width: 40px;
	background: #201629;
	font-weight: 400;
	font-size: 0.9em;
	border-radius: 5px;
	text-align: center;
	line-height: 1;
	letter-spacing: 1px;
	margin-right: 5px;
}
.wtool-li-item-btn {
	position: relative;
	color: #9300ff;
	background: #201629;
	width: 100%;
	height: 45px;
	text-align: center;
	text-transform: uppercase;
	padding: 3px 5px;
	display: flex;
	align-items: center;
	font-weight: 700;
	justify-content: center;
	font-size: 1.4em;
}
.wtool-li-item-btn-active {
	border: 2px solid #fff;
}
.wtool-li-item-btn .button-icon {
	filter: invert(14%) sepia(90%) saturate(4574%) hue-rotate(271deg) brightness(98%) contrast(139%);
	position: relative;
	font-size: 1em;
}
.button-icon-2 {
	margin-right: 5px;
	color: #fff;
	font-size: 1.2em;
}
.app-element-icon {
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
}
.appdet-modal {
	position: fixed;
	width: auto;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: #1b121d;
    background: -moz-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: -webkit-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
	z-index: 200 !important;
	overflow: hidden;
}
.appdet-content {
	overflow: auto;
	z-index: 1;
	max-width: 100%;
	height: 100%;
}
.appdet-close {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 20;
	background: rgba(255,255,255,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
}
.appdet-close span {
	cursor: pointer;
	font-size: 1.2em;
}
.anifa {
	animation-duration: 0.6s;
}
.anifav {
	animation-duration: 0.3s;
}
.noscroll {
	overflow: hidden;
}
.step-app-img-wrapper {
	height: 30vh;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}
.step-app-details {
	margin: 0 auto;
	position: relative;
	padding-top: 27vh;
}
.step-app-details-inner {
	background: #fff;
	background: #1b121d;
    background: -moz-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: -webkit-linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
    background: linear-gradient(90deg,#1b121d 0,#120f2f 50%,#1b121d 100%);
	padding: 40px 20px;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
	position: relative;
	z-index: 2;
	box-shadow: 0 -8px 10px 0 rgba(0, 0, 0, 0.35);
}
.appdet-title {
	color: #fff;
	font-size: 1.6em;
	margin: 0 0 15px 0;
}
.appdet-desc {
	font-size: 0.8em;
	color: #878aa4;
	margin: 0;
	font-weight: 700;
}
.appdet-download-row {
	display: flex;
	align-items: center;
	margin: 30px 0 0 0;
}
.addr-left {
	width: 50px;
}
.addr-edition {
	display: block;
	font-size: 0.6em;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #9300ff;
	font-weight: 700;
}
.appdet-title-small {
	font-size: 0.9em;
	font-weight: 700;
	margin: 3px 0;
}
.addr-platforms {
	font-size: 0.6em;
	color: #878aa4;
	display: block;
	font-weight: 700;
}
.addr-middle {
	padding: 0 10px;
	width: calc(100% - 130px);
}
.addr-right {
	width: 80px;
}
.addr-dl-btn {
	display: flex;
	align-items: center;
	color: #fff;
	justify-content: center;
	padding: 0 5px;
	height: 40px;
	font-size: 0.7em;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 900;
	background: #9300ff;
	border-radius: 20px;
	cursor: pointer;
}
.appdet-ratings, .appdet-reviews, .appdet-add-review {
	margin-top: 30px;
}
.appdet-ratings h4 {
	margin: 0 0 10px 0;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #878aa4;
}
.ad-rating-row {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.ad-rating-row:last-child {
	margin-bottom: 0;
}
.ad-rr-left {
	width: 30px;
	font-size: 0.8em;
	font-weight: 900;
	color: #878aa4;
	display: flex;
	align-items: center;
}
.rating-icon {
	filter: invert(14%) sepia(90%) saturate(4574%) hue-rotate(271deg) brightness(98%) contrast(139%);
	font-size: 1.2em;
	margin-right: 5px;
}
.ad-rr-middle {
	width: calc(100% - 75px);
	padding: 0 10px;
}
.ad-rr-right {
	width: 45px;
	font-size: 0.8em;
	font-weight: 900;
	text-align: right;
}
.ad-rr-bar {
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50px;
	height: 10px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
}
.add-rr-bar-i {
	width: 0;
	height: 100%;
	background: #9300ff; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #9300ff 0%, #6000a6 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #9300ff 0%,#6000a6 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #9300ff 0%,#6000a6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9300ff', endColorstr='#6000a6',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	position: relative;
}
.appdet-reviews h4 {
	margin: 0 0 15px 0;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #878aa4;
}
.ad-review-row {
	display: flex;
	border-bottom: 2px solid rgba(255,255,255,0.1);
	padding-bottom: 12px;
	margin-bottom: 12px;
}
.ad-review-row:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.ad-review-row-left {
	width: 32px;
}
.ad-review-row-right {
	width: calc(100% - 32px);
	padding-left: 15px;
	font-size: 0.8em;
}
.review-icon {
	font-size: 2em;
	filter: invert(14%) sepia(90%) saturate(4574%) hue-rotate(271deg) brightness(98%) contrast(139%);
}
.review-name {
	font-weight: 900;
	letter-spacing: 2px;
}
.review-date {
	margin: 2px 0 6px 0;
	color: #878aa4;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.65em;
	font-weight: 700;
	color: #9300ff;
}
.review-content {
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 0.8em;
	color: #878aa4;
}
.appdet-add-review h4 {
	margin: 0 0 15px 0;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #878aa4;
}
.review-textarea {
	background: rgba(255,255,255,0.1);
	border-radius: 10px;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 10px 15px;
	font-size: 0.65em;
	color: #878aa4;
	font-weight: 700;
	width: 100%;
}
.review-textarea::-webkit-input-placeholder {
	color: #878aa4;
}
.review-textarea:-moz-placeholder {
	color: #878aa4;
	opacity: 1;
}
.review-textarea::-moz-placeholder {
	color: #878aa4;
	opacity: 1;
}
.review-textarea:-ms-input-placeholder {
	color: #878aa4;
}
.add-review-btn {
	display: flex;
	align-items: center;
	color: #fff;
	justify-content: center;
	padding: 0 5px;
	height: 30px;
	font-size: 0.7em;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 900;
	background: #9300ff;
	border-radius: 5px;
	cursor: pointer;
	margin: 5px 0 0 0;
}
.add-review-note {
	font-size: 0.52em;
	font-weight: 900;
	letter-spacing: 0.7px;
	color: #fc4347;
	text-align: center;
	display: none;
}
.wtool-li-item-hidden-meta {
	display: none !important;
}
.desktop-notice-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
	text-align: center;
}
.desktop-notice-wrapper .desktop-notice-icon-1 {
	filter: invert(14%) sepia(90%) saturate(4574%) hue-rotate(271deg) brightness(98%) contrast(139%);
	font-size: 15em;
}
.desktop-notice-wrapper h1 {
	font-size: 2.8em;
	font-weight: 900;
	margin: 15px auto 0 auto;
}
.desktop-notice-wrapper p {
	margin: 15px auto 0 auto;
	font-size: 1.2em;
}
.desktop-notice {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}
.desktop-notice-note {
	margin: 15px auto 0 auto;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.desktop-notice-wrapper .desktop-notice-icon-2 {
	filter: invert(14%) sepia(90%) saturate(4574%) hue-rotate(271deg) brightness(98%) contrast(139%);
	margin-right: 10px;
}
.fill-circle {
  display: none;
  width: 50px;
  height: 50px;
  line-height: 160px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.fill-circle:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.fill-circle > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.fill-circle .fill-circle-left {
  left: 0;
}
.fill-circle .fill-circle-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 8px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #9300ff;
}
.fill-circle .fill-circle-left .fill-circle-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.fill-circle .fill-circle-right {
  right: 0;
}
.fill-circle .fill-circle-right .fill-circle-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.fill-circle .fill-circle-value {
  display: flex;
  border-radius: 50%;
  font-size: 1rem;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-weight: 300;
}
.fill-circle .fill-circle-value span {
  font-size: 12px;
  text-transform: uppercase;
}

/* This for loop creates the necessary css animation names 
Due to the split circle of fill-circle-left and fill-circle right, we must use the animations on each side. 
*/
.fill-circle[data-percentage="1"] .fill-circle-right .fill-circle-bar {
  animation: loading-1 0.5s linear forwards;
}
.fill-circle[data-percentage="1"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="2"] .fill-circle-right .fill-circle-bar {
  animation: loading-2 0.5s linear forwards;
}
.fill-circle[data-percentage="2"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="3"] .fill-circle-right .fill-circle-bar {
  animation: loading-3 0.5s linear forwards;
}
.fill-circle[data-percentage="3"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="4"] .fill-circle-right .fill-circle-bar {
  animation: loading-4 0.5s linear forwards;
}
.fill-circle[data-percentage="4"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="5"] .fill-circle-right .fill-circle-bar {
  animation: loading-5 0.5s linear forwards;
}
.fill-circle[data-percentage="5"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="6"] .fill-circle-right .fill-circle-bar {
  animation: loading-6 0.5s linear forwards;
}
.fill-circle[data-percentage="6"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="7"] .fill-circle-right .fill-circle-bar {
  animation: loading-7 0.5s linear forwards;
}
.fill-circle[data-percentage="7"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="8"] .fill-circle-right .fill-circle-bar {
  animation: loading-8 0.5s linear forwards;
}
.fill-circle[data-percentage="8"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="9"] .fill-circle-right .fill-circle-bar {
  animation: loading-9 0.5s linear forwards;
}
.fill-circle[data-percentage="9"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="10"] .fill-circle-right .fill-circle-bar {
  animation: loading-10 0.5s linear forwards;
}
.fill-circle[data-percentage="10"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="11"] .fill-circle-right .fill-circle-bar {
  animation: loading-11 0.5s linear forwards;
}
.fill-circle[data-percentage="11"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="12"] .fill-circle-right .fill-circle-bar {
  animation: loading-12 0.5s linear forwards;
}
.fill-circle[data-percentage="12"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="13"] .fill-circle-right .fill-circle-bar {
  animation: loading-13 0.5s linear forwards;
}
.fill-circle[data-percentage="13"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="14"] .fill-circle-right .fill-circle-bar {
  animation: loading-14 0.5s linear forwards;
}
.fill-circle[data-percentage="14"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="15"] .fill-circle-right .fill-circle-bar {
  animation: loading-15 0.5s linear forwards;
}
.fill-circle[data-percentage="15"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="16"] .fill-circle-right .fill-circle-bar {
  animation: loading-16 0.5s linear forwards;
}
.fill-circle[data-percentage="16"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="17"] .fill-circle-right .fill-circle-bar {
  animation: loading-17 0.5s linear forwards;
}
.fill-circle[data-percentage="17"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="18"] .fill-circle-right .fill-circle-bar {
  animation: loading-18 0.5s linear forwards;
}
.fill-circle[data-percentage="18"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="19"] .fill-circle-right .fill-circle-bar {
  animation: loading-19 0.5s linear forwards;
}
.fill-circle[data-percentage="19"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="20"] .fill-circle-right .fill-circle-bar {
  animation: loading-20 0.5s linear forwards;
}
.fill-circle[data-percentage="20"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="21"] .fill-circle-right .fill-circle-bar {
  animation: loading-21 0.5s linear forwards;
}
.fill-circle[data-percentage="21"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="22"] .fill-circle-right .fill-circle-bar {
  animation: loading-22 0.5s linear forwards;
}
.fill-circle[data-percentage="22"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="23"] .fill-circle-right .fill-circle-bar {
  animation: loading-23 0.5s linear forwards;
}
.fill-circle[data-percentage="23"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="24"] .fill-circle-right .fill-circle-bar {
  animation: loading-24 0.5s linear forwards;
}
.fill-circle[data-percentage="24"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="25"] .fill-circle-right .fill-circle-bar {
  animation: loading-25 0.5s linear forwards;
}
.fill-circle[data-percentage="25"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="26"] .fill-circle-right .fill-circle-bar {
  animation: loading-26 0.5s linear forwards;
}
.fill-circle[data-percentage="26"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="27"] .fill-circle-right .fill-circle-bar {
  animation: loading-27 0.5s linear forwards;
}
.fill-circle[data-percentage="27"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="28"] .fill-circle-right .fill-circle-bar {
  animation: loading-28 0.5s linear forwards;
}
.fill-circle[data-percentage="28"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="29"] .fill-circle-right .fill-circle-bar {
  animation: loading-29 0.5s linear forwards;
}
.fill-circle[data-percentage="29"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="30"] .fill-circle-right .fill-circle-bar {
  animation: loading-30 0.5s linear forwards;
}
.fill-circle[data-percentage="30"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="31"] .fill-circle-right .fill-circle-bar {
  animation: loading-31 0.5s linear forwards;
}
.fill-circle[data-percentage="31"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="32"] .fill-circle-right .fill-circle-bar {
  animation: loading-32 0.5s linear forwards;
}
.fill-circle[data-percentage="32"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="33"] .fill-circle-right .fill-circle-bar {
  animation: loading-33 0.5s linear forwards;
}
.fill-circle[data-percentage="33"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="34"] .fill-circle-right .fill-circle-bar {
  animation: loading-34 0.5s linear forwards;
}
.fill-circle[data-percentage="34"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="35"] .fill-circle-right .fill-circle-bar {
  animation: loading-35 0.5s linear forwards;
}
.fill-circle[data-percentage="35"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="36"] .fill-circle-right .fill-circle-bar {
  animation: loading-36 0.5s linear forwards;
}
.fill-circle[data-percentage="36"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="37"] .fill-circle-right .fill-circle-bar {
  animation: loading-37 0.5s linear forwards;
}
.fill-circle[data-percentage="37"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="38"] .fill-circle-right .fill-circle-bar {
  animation: loading-38 0.5s linear forwards;
}
.fill-circle[data-percentage="38"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="39"] .fill-circle-right .fill-circle-bar {
  animation: loading-39 0.5s linear forwards;
}
.fill-circle[data-percentage="39"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="40"] .fill-circle-right .fill-circle-bar {
  animation: loading-40 0.5s linear forwards;
}
.fill-circle[data-percentage="40"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="41"] .fill-circle-right .fill-circle-bar {
  animation: loading-41 0.5s linear forwards;
}
.fill-circle[data-percentage="41"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="42"] .fill-circle-right .fill-circle-bar {
  animation: loading-42 0.5s linear forwards;
}
.fill-circle[data-percentage="42"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="43"] .fill-circle-right .fill-circle-bar {
  animation: loading-43 0.5s linear forwards;
}
.fill-circle[data-percentage="43"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="44"] .fill-circle-right .fill-circle-bar {
  animation: loading-44 0.5s linear forwards;
}
.fill-circle[data-percentage="44"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="45"] .fill-circle-right .fill-circle-bar {
  animation: loading-45 0.5s linear forwards;
}
.fill-circle[data-percentage="45"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="46"] .fill-circle-right .fill-circle-bar {
  animation: loading-46 0.5s linear forwards;
}
.fill-circle[data-percentage="46"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="47"] .fill-circle-right .fill-circle-bar {
  animation: loading-47 0.5s linear forwards;
}
.fill-circle[data-percentage="47"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="48"] .fill-circle-right .fill-circle-bar {
  animation: loading-48 0.5s linear forwards;
}
.fill-circle[data-percentage="48"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="49"] .fill-circle-right .fill-circle-bar {
  animation: loading-49 0.5s linear forwards;
}
.fill-circle[data-percentage="49"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="50"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="50"] .fill-circle-left .fill-circle-bar {
  animation: 0;
}

.fill-circle[data-percentage="51"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="51"] .fill-circle-left .fill-circle-bar {
  animation: loading-1 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="52"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="52"] .fill-circle-left .fill-circle-bar {
  animation: loading-2 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="53"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="53"] .fill-circle-left .fill-circle-bar {
  animation: loading-3 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="54"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="54"] .fill-circle-left .fill-circle-bar {
  animation: loading-4 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="55"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="55"] .fill-circle-left .fill-circle-bar {
  animation: loading-5 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="56"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="56"] .fill-circle-left .fill-circle-bar {
  animation: loading-6 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="57"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="57"] .fill-circle-left .fill-circle-bar {
  animation: loading-7 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="58"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="58"] .fill-circle-left .fill-circle-bar {
  animation: loading-8 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="59"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="59"] .fill-circle-left .fill-circle-bar {
  animation: loading-9 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="60"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="60"] .fill-circle-left .fill-circle-bar {
  animation: loading-10 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="61"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="61"] .fill-circle-left .fill-circle-bar {
  animation: loading-11 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="62"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="62"] .fill-circle-left .fill-circle-bar {
  animation: loading-12 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="63"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="63"] .fill-circle-left .fill-circle-bar {
  animation: loading-13 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="64"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="64"] .fill-circle-left .fill-circle-bar {
  animation: loading-14 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="65"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="65"] .fill-circle-left .fill-circle-bar {
  animation: loading-15 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="66"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="66"] .fill-circle-left .fill-circle-bar {
  animation: loading-16 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="67"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="67"] .fill-circle-left .fill-circle-bar {
  animation: loading-17 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="68"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="68"] .fill-circle-left .fill-circle-bar {
  animation: loading-18 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="69"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="69"] .fill-circle-left .fill-circle-bar {
  animation: loading-19 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="70"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="70"] .fill-circle-left .fill-circle-bar {
  animation: loading-20 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="71"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="71"] .fill-circle-left .fill-circle-bar {
  animation: loading-21 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="72"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="72"] .fill-circle-left .fill-circle-bar {
  animation: loading-22 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="73"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="73"] .fill-circle-left .fill-circle-bar {
  animation: loading-23 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="74"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="74"] .fill-circle-left .fill-circle-bar {
  animation: loading-24 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="75"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="75"] .fill-circle-left .fill-circle-bar {
  animation: loading-25 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="76"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="76"] .fill-circle-left .fill-circle-bar {
  animation: loading-26 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="77"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="77"] .fill-circle-left .fill-circle-bar {
  animation: loading-27 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="78"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="78"] .fill-circle-left .fill-circle-bar {
  animation: loading-28 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="79"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="79"] .fill-circle-left .fill-circle-bar {
  animation: loading-29 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="80"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="80"] .fill-circle-left .fill-circle-bar {
  animation: loading-300 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="81"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="81"] .fill-circle-left .fill-circle-bar {
  animation: loading-31 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="82"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="82"] .fill-circle-left .fill-circle-bar {
  animation: loading-32 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="83"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="83"] .fill-circle-left .fill-circle-bar {
  animation: loading-33 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="84"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="84"] .fill-circle-left .fill-circle-bar {
  animation: loading-34 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="85"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="85"] .fill-circle-left .fill-circle-bar {
  animation: loading-35 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="86"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="86"] .fill-circle-left .fill-circle-bar {
  animation: loading-36 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="87"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="87"] .fill-circle-left .fill-circle-bar {
  animation: loading-37 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="88"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="88"] .fill-circle-left .fill-circle-bar {
  animation: loading-38 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="89"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="89"] .fill-circle-left .fill-circle-bar {
  animation: loading-39 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="90"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="90"] .fill-circle-left .fill-circle-bar {
  animation: loading-40 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="91"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="91"] .fill-circle-left .fill-circle-bar {
  animation: loading-41 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="92"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="92"] .fill-circle-left .fill-circle-bar {
  animation: loading-42 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="93"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="93"] .fill-circle-left .fill-circle-bar {
  animation: loading-43 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="94"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="94"] .fill-circle-left .fill-circle-bar {
  animation: loading-44 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="95"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="95"] .fill-circle-left .fill-circle-bar {
  animation: loading-45 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="96"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="96"] .fill-circle-left .fill-circle-bar {
  animation: loading-46 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="97"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="97"] .fill-circle-left .fill-circle-bar {
  animation: loading-47 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="98"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="98"] .fill-circle-left .fill-circle-bar {
  animation: loading-48 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="99"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="99"] .fill-circle-left .fill-circle-bar {
  animation: loading-49 0.5s linear forwards 0.5s;
}

.fill-circle[data-percentage="100"] .fill-circle-right .fill-circle-bar {
  animation: loading-50 0.5s linear forwards;
}
.fill-circle[data-percentage="100"] .fill-circle-left .fill-circle-bar {
  animation: loading-50 0.5s linear forwards 0.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(3.6);
    transform: rotate(3.6deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(7.2);
    transform: rotate(7.2deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10.8);
    transform: rotate(10.8deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(14.4);
    transform: rotate(14.4deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(18);
    transform: rotate(18deg);
  }
}
@keyframes loading-6 {
  0% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }
  100% {
    -webkit-transform: rotate(21.6);
    transform: rotate(21.6deg);
  }
}
@keyframes loading-7 {
  0% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(25.2);
    transform: rotate(25.2deg);
  }
}
@keyframes loading-8 {
  0% {
    -webkit-transform: rotate(25.2deg);
    transform: rotate(25.2deg);
  }
  100% {
    -webkit-transform: rotate(28.8);
    transform: rotate(28.8deg);
  }
}
@keyframes loading-9 {
  0% {
    -webkit-transform: rotate(28.8deg);
    transform: rotate(28.8deg);
  }
  100% {
    -webkit-transform: rotate(32.4);
    transform: rotate(32.4deg);
  }
}
@keyframes loading-10 {
  0% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-11 {
  0% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
  100% {
    -webkit-transform: rotate(39.6);
    transform: rotate(39.6deg);
  }
}
@keyframes loading-12 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(43.2);
    transform: rotate(43.2deg);
  }
}
@keyframes loading-13 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(46.8);
    transform: rotate(46.8deg);
  }
}
@keyframes loading-14 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(50.4);
    transform: rotate(50.4deg);
  }
}
@keyframes loading-15 {
  0% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
  100% {
    -webkit-transform: rotate(54);
    transform: rotate(54deg);
  }
}
@keyframes loading-16 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(57.6);
    transform: rotate(57.6deg);
  }
}
@keyframes loading-17 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(61.2);
    transform: rotate(61.2deg);
  }
}
@keyframes loading-18 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(64.8);
    transform: rotate(64.8deg);
  }
}
@keyframes loading-19 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(68.4);
    transform: rotate(68.4deg);
  }
}
@keyframes loading-20 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-21 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(75.6);
    transform: rotate(75.6deg);
  }
}
@keyframes loading-22 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(79.2);
    transform: rotate(79.2deg);
  }
}
@keyframes loading-23 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(82.8);
    transform: rotate(82.8deg);
  }
}
@keyframes loading-24 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(86.4);
    transform: rotate(86.4deg);
  }
}
@keyframes loading-25 {
  0% {
    -webkit-transform: rotate(54deg);
    transform: rotate(54deg);
  }
  100% {
    -webkit-transform: rotate(90);
    transform: rotate(90deg);
  }
}
@keyframes loading-26 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(93.6);
    transform: rotate(93.6deg);
  }
}
@keyframes loading-27 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(97.2);
    transform: rotate(97.2deg);
  }
}
@keyframes loading-28 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(100.8);
    transform: rotate(100.8deg);
  }
}
@keyframes loading-29 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(104.4);
    transform: rotate(104.4deg);
  }
}
@keyframes loading-30 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-31 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(111.6);
    transform: rotate(111.6deg);
  }
}
@keyframes loading-32 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(115.2);
    transform: rotate(115.2deg);
  }
}
@keyframes loading-33 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(118.8);
    transform: rotate(118.8deg);
  }
}
@keyframes loading-34 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(122.4);
    transform: rotate(122.4deg);
  }
}
@keyframes loading-35 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(126);
    transform: rotate(126deg);
  }
}
@keyframes loading-36 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(129.6);
    transform: rotate(129.6deg);
  }
}
@keyframes loading-37 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(133.2);
    transform: rotate(133.2deg);
  }
}
@keyframes loading-38 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(136.8);
    transform: rotate(136.8deg);
  }
}
@keyframes loading-39 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(140.4);
    transform: rotate(140.4deg);
  }
}
@keyframes loading-40 {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-41 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(147.6);
    transform: rotate(147.6deg);
  }
}
@keyframes loading-42 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(151.2);
    transform: rotate(151.2deg);
  }
}
@keyframes loading-43 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(154.8);
    transform: rotate(154.8deg);
  }
}
@keyframes loading-44 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(158.4);
    transform: rotate(158.4deg);
  }
}
@keyframes loading-45 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(162);
    transform: rotate(162deg);
  }
}
@keyframes loading-46 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(165.6);
    transform: rotate(165.6deg);
  }
}
@keyframes loading-47 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {6
    -webkit-transform: rotate(169.2);
    transform: rotate(169.2deg);
  }
}
@keyframes loading-48 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(172.8);
    transform: rotate(172.8deg);
  }
}
@keyframes loading-49 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(176.4);
    transform: rotate(176.4deg);
  }
}
@keyframes loading-50 {
  0% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}

@keyframes loading-300 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (min-width: 1440px) {
	.wtool-listing-header {
		padding: 40px 0;
	}
}
@media screen and (max-width: 480px) {
	.wtool-inner {
		min-height: 100vh;
		padding-bottom: 90px;
	}
	.wtool-li-item-t-l-w {
		width: 60px;
		padding-right: 15px;
	}
	.wtool-li-item-t-m-w {
		width: calc(100% - 60px);
		padding-right: 15px;
	}
	.wtool-li-item-t-r-w {
		width: 100px;
	}
	.wtool-li-item-title {
		font-size: 1.2em;
	}
	.wtool-li-item-version {
		font-size: 0.9em;
	}
}
@media screen and (max-width: 320px) {
	.wtool-inner {
		min-height: calc(100vh - 68px);
	}
}