@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

body {
	overflow-x: hidden;
	background: #161616;
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul {
	list-style: none;
}
textarea, input, a, button { 
	outline: none;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: 'Roboto', 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;
}

#preloader{
 	display:block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #333;
	z-index: 999999;	
}

.loader{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 2px solid #333;
  border-right: 2px solid #46f03e;
  border-bottom: 2px solid #46f03e;
  border-left: 2px solid #46f03e;
  
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  
   -webkit-animation: spinner 700ms infinite linear;
   -moz-animation: spinner 700ms infinite linear;
   -ms-animation: spinner 700ms infinite linear;
   -o-animation: spinner 700ms infinite linear;
   animation: spinner 700ms infinite linear;
  
  z-index: 99999999;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# 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;
}
.app-elements-content {
	position: relative;
	padding: 20px 20px;
	min-height: calc(100vh - 108px);
}
.search-input-wrapper {
	position: relative;
    background: linear-gradient(90deg, #1f9729, #46f03e);
    border-radius: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #2A2A2C;
}
.search-input {
	border: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
    border-radius: 30px;
    height: 45px;
    color: #fff;
    padding: 0 20px 0 45px;
    font-size: 1em;
}
.search-input-wrapper span {
	position: absolute;
	left: 10px;
	/*top: 10px;*/
	font-size: 2em;
	color: #676769;
}
.search-input::-webkit-input-placeholder {
	color: #fff;
}

.search-input:-moz-placeholder {
	color: #fff;
	opacity: 1;
}

.search-input::-moz-placeholder {
	color: #fff;
	opacity: 1;
}

.search-input:-ms-input-placeholder {
	color: #fff;
}
.app-elements{
	padding-top: 239px;
}
.search-form-wrapper{
	padding: 15px 20px 20px 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    background: #161616;
   
    background-size: cover;
}
.app-elements-title-wrapper {
	position: relative;
	margin: 15px auto 20px auto;
}
.app-elements-title {
	margin: 0;
	font-size: 1.6em;
	text-align: left;
}
.app-element-row {
	position: relative;
    border-radius: 7px;
    margin-bottom: 15px;
    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;
  padding: 9px;
}
.app-element-row:last-child {
	margin-bottom: 0;
}
.aer-t {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aer-t-l-w {
	width: 80px;
	padding-right: 15px;
}
.aer-t-m-w { 
	width: calc(100% - 130px);
	padding-right: 15px;
}
.aer-t-r-w {
	width: 50px;
}
.aer-title {
	color: #fff;
	margin: 0;
	font-size: 1.1em;
    font-weight: 400;
}
.app-element-i-button {
	position: relative;
    color: #fff;
    background: linear-gradient(90deg, #1f9729, #46f03e);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    font-weight: 700;
    justify-content: center;
    font-size: 1.1em;
    box-shadow: 0 0 10px rgb(36 206 30 / 80%);
    cursor: pointer;
}
.app-element-i-button .button-icon {
	margin-right: 5px;
	/*filter: invert(100%) sepia(17%) saturate(2%) hue-rotate(353deg) brightness(115%) contrast(100%);*/
	color: #fff;
}
.button-icon-2 {
	margin-right: 5px;
	color: #fff;
	font-size: 1em;
}

.app-element-icon {
	border-radius: 20px;
}
.arel-label {
	margin-right: 5px;
	color: #999;
}
.arel-val {
	font-weight: 400;
	color: #fff;
}
.lowopac {
	opacity: 0.5;
}
.downloading-msg-wrapper {
	margin-top: 10px;
	letter-spacing: -0.5px;
	font-size: 0.95em;
}
.download-loadbar {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin: 4px auto 0 auto;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 2px;
}
.download-loadbar div {
	font-size: 5px;
	text-indent: 9999px;
	background: #2f65ff;
	overflow: hidden;
	border-radius: 2px;
}
.downloading-loader-wrapper {
	text-align: center;
	margin: 4px auto 0 auto;
	display: none;
}
.downloading-loader-wrapper i {
	font-size: 1.2em;
	color: #0075ff;
}
.d-m-an-v {
	font-weight: 700;
}
.nav-wrapper {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	border-top: 2px solid #eee;
	height: 108px;
	box-shadow: 0 -3px 8px 0 rgba(0, 0, 0, 0.2);
}
.nav-wrapper ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	display: flex;
}
.nav-wrapper ul li {
	width: 25%;
	text-align: center;
	padding: 20px 5px;
	font-size: 1.2em;
	position: relative;
	color: #999;
	background: #fff;
}
.nav-wrapper ul li:after {
	content: '';
	height: 100%;
	width: 2px;
	background: #eee;
	display: block;
	position: absolute;
	top: 0;
	right: -1px;
}
.nav-wrapper ul li:last-child::after {
	display: none;
}
.nav-wrapper ul li .nav-icon {
	display: block;
	font-size: 2em;
	filter: invert(82%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(85%) contrast(86%);
}
.nav-wrapper ul li.active {
	color: #0075ff;
}
.nav-wrapper ul li.active .nav-icon {
	filter: invert(28%) sepia(95%) saturate(2260%) hue-rotate(203deg) brightness(101%) contrast(107%);
}
.d-notice-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
	text-align: center;
}
.d-notice-wrapper .mid1 {
	filter: invert(28%) sepia(95%) saturate(2260%) hue-rotate(203deg) brightness(101%) contrast(107%);
	font-size: 12em;
}
.d-notice-wrapper h1 {
	font-size: 2.8em;
	font-weight: 900;
	margin: 15px auto 0 auto;
}
.d-notice-wrapper p {
	margin: 15px auto 0 auto;
	font-size: 1.2em;
}
.d-notice {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	padding: 50px 70px;
	border-radius: 20px;
	background: #f4f4f4;
}
.d-n-i {
	background: #fff;
	border-radius: 20px;
	padding: 15px 10px;
	margin: 15px auto 0 auto;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.d-notice-wrapper .mid2 {
	filter: invert(28%) sepia(95%) saturate(2260%) hue-rotate(203deg) brightness(101%) contrast(107%);
	margin-right: 10px;
}

.mfp-bg {
    opacity: 0;
}
.window-app{
	background-color: #2E2C2F;
	padding: 10px;
	border-radius: 10px;
}
            .progressbar-wrapp {
                height: 80px;
				position: relative;
            }

            .progressbar-wrapp > svg {
                height: 100%;
                display: block;
            }
.progressbar-text{
	position: absolute;
    padding: 0px;
    margin: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    left: 0;
    justify-content: center;
    width: 80px;
    color: #fff !important;
    font-weight: 900;
}
.appdet-icon-img{
	border-radius: 10px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	.app-element-icon {
		border-radius: 10px;
	}

	.app-elements-content {
		position: relative;
		padding: 20px 20px;
		min-height: calc(100vh - 76px);
		padding-bottom: 90px;
	}
	.app-elements-title-wrapper {
		margin: 12px auto 15px auto;
	}
	.nav-wrapper {
		height: 76px;
	}
	.nav-wrapper ul li {
		width: 25%;
		text-align: center;
		padding: 15px 5px;
		font-size: 0.8em;
		position: relative;
		color: #999;
	}
	.nav-wrapper ul li:after {
		width: 1px;
		right: 0;
	}
	.app-element-row {
		/*padding: 10px 10px;*/
		
	}
	.aer-t-l-w {
		width: 60px;
		padding-right: 15px;
	}
	.aer-t-m-w {
		width: calc(100% - 110px);
		padding-right: 15px;
	}
	.aer-t-r-w {
		width: 50px;
	}
	.aer-title {
		font-size: 1.1em;
	}
	.aer-latest {
		font-size: 0.9em;
	}
	.app-element-i-button {
		padding: 9px 5px;
	}
	.app-element-i-button .button-icon {
		font-size: 1.2em;
	}
	.aer-b {
		margin-top: 3px;
	}
}
@media screen and (max-width: 320px) {
	.app-elements-content {
		position: relative;
		padding: 20px 20px;
		min-height: calc(100vh - 68px);
	}
	.nav-wrapper {
		height: 68px;
	}
	.nav-wrapper ul li {
		padding: 12px 4px;
		font-size: 0.75em;
	}
	.nav-wrapper ul li:after {
		width: 1px;
		right: 0;
	}
}


.nav-wrapper li{
	cursor: pointer;
}

.appdet-modal {
	position: fixed;
	width: auto;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: transparent;
	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: 76vh;
	border-radius: 30px;
	height: 100%;
}

.step-app-details-inner {
	background: #161616;
    padding: 40px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: absolute;
    z-index: 2;
    /* min-height: 650px; */
    box-shadow: 0 -8px 10px 0 rgb(0 0 0 / 35%);
/*  	background-image: url(https://img.freepik.com/free-photo/abstract-luxury-blur-grey-color-gradient-used-as-background-studio-wall-display-your-products_1258-54073.jpg);*/
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 100%;
}

.appdet-title {
	color: #fff;
	font-size: 1.6em;
	margin: 0 0 15px 0;
}

.appdet-desc {
	color: #abaeb0;
	margin: 0;
	font-weight: 700;
}

.appdet-download-row {
	display: flex;
	align-items: center;
}

.addr-left {
	width: 50px;
}

.addr-edition {
	display: block;
    font-size: 0.70em;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
    font-weight: 400;
}

.appdet-title-small {
	font-size: 1.2em;
    font-weight: 300;
    margin: 3px 0;
}

.addr-platforms {
	font-size: 0.8em;
	color: #abaeb0;
	display: block;
	font-weight: 700;
}

.addr-middle {
	padding: 0 10px;
	width: calc(100% - 130px);
}

.addr-right {
	width: 80px;
}

.addr-dl-btn, .verification-button {
	display: flex;
	align-items: center;
	color: #111;
	justify-content: center;
	padding: 0 5px;
	height: 40px;
	font-size: 0.75em;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 700;
	background: #46d613;
	position: relative;
	border-radius: 3px;
	cursor: pointer;
}

.addr-dl-btn:before, .verification-button:before {
	top: 3px;
	left: 3px;
	content: "";
	width: 18px;
	height: 18px;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../btn-shape.html);
}

.appdet-ratings {
	margin-top: 30px;
	margin-bottom: 10px;
}

.appdet-ratings h4 {
	margin: 0 0 10px 0;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #abaeb0;
	border-bottom: 2px solid #11181e;
	padding-bottom: 7px;
}

.ad-rating-rows-wrapper {
	display: flex;
}

.ad-rating-row {
	margin-bottom: 10px;
	width: 20%;
}

.ad-rating-row:last-child {
	margin-bottom: 0;
}

.ad-rr-left {
	font-size: 0.8em;
	font-weight: 900;
	color: #abaeb0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rating-icon {
	filter: invert(70%) sepia(64%) saturate(2604%) hue-rotate(108deg) brightness(108%) contrast(106%);
	;
	font-size: 1.2em;
	margin-right: 5px;
}

.ad-rr-middle {
	padding: 0 20px;
}

.ad-rr-right {
	font-size: 0.9em;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.ad-rr-right .rating-icon {
	position: relative;
	top: -2.5px;
}

.ad-rr-bar {
	background: #11181e;
	border-radius: 5px;
	height: 100px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.02);
	transform: rotate(180deg);
}

.add-rr-bar-i {
	width: 100%;
    height: 0;
    background: #46d613;
    background: -moz-linear-gradient(-45deg, #46d613 0%, #00abfb 100%);
    background: -webkit-linear-gradient(-45deg, #46d613 0%, #00abfb 100%);
    background: linear-gradient(135deg, #46d613 0%, #00abfb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46d613', endColorstr='#00abfb', GradientType=1);
    position: relative;
}

.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(70%) sepia(64%) saturate(2604%) hue-rotate(108deg) brightness(108%) contrast(106%);
	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(70%) sepia(64%) saturate(2604%) hue-rotate(108deg) brightness(108%) contrast(106%);
	margin-right: 10px;
}

.appdet-reviews {
	margin-top: 30px;
}

.appdet-reviews h4 {
	margin: 0 0 10px 0;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #abaeb0;
	border-bottom: 2px solid #11181e;
	padding-bottom: 7px;
}

.ad-review-row {
	display: flex;
	border-bottom: 1px dashed #11181e;
	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: 50px;
}

.ad-review-row-right {
	width: calc(100% - 50px);
	padding-left: 15px;
	font-size: 0.8em;
}

.review-name {
	font-weight: 900;
	letter-spacing: 2px;
}

.review-date {
	margin: 0 0 5px 0;
	color: #abaeb0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.8em;
	font-weight: 700;
	color: #46d613;
}

.review-content {
	font-weight: 700;
	font-size: 0.95em;
	color: #abaeb0;
}

.appdet-add-review {
	margin-top: 30px;
}

.appdet-add-review h4 {
	margin: 0 0 10px 0;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #abaeb0;
	border-bottom: 2px solid #11181e;
	padding-bottom: 7px;
}

.review-textarea {
	background: rgba(255, 255, 255, 0.07);
	border-radius: 10px;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 10px 15px;
	font-size: 0.65em;
	color: #abaeb0;
	font-weight: 700;
	width: 100%;
}

.review-textarea::-webkit-input-placeholder {
	color: #676769;
}

.review-textarea:-moz-placeholder {
	color: #676769;
	opacity: 1;
}

.review-textarea::-moz-placeholder {
	color: #676769;
	opacity: 1;
}

.review-textarea:-ms-input-placeholder {
	color: #676769;
}

.add-review-btn {
	display: flex;
	align-items: center;
	color: #111;
	justify-content: center;
	padding: 0 5px;
	height: 30px;
	max-width: 120px;
	margin: 0 auto;
	font-size: 0.76em;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	margin: 5px auto 0 auto;
}

.add-review-note {
	font-size: 0.75em;
	font-weight: 900;
	letter-spacing: 0.7px;
	color: #fc4347;
	text-align: center;
	display: none;
}
