/*--------------------------------------------------------------
# Game Store UI - Redesign by Gemini (v1.2)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Basics & Typography
--------------------------------------------------------------*/
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	background: #1a1a2e;
	color: #f0f0f0;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700;
	color: #ffffff;
}
a {
	color: #00a8ff;
	-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;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.clearfix {
	position: relative;
	clear: both;
}
::selection {
	background: #e94560;
	color: #fff;
}
::-moz-selection {
	background: #e94560;
	color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
	position: relative;
	text-align: center;
	padding: 40px 0;
	background: linear-gradient(180deg, rgba(26,26,46,1) 0%, rgba(22,33,62,1) 100%);
	border-bottom: 1px solid #2d3250;
}
#header-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	left: 0;
	top: 0;
}
.page-header .container {
	position: relative;
	z-index: 2;
}
.logo-wrapper img {
  max-width: 180px;
  height: auto;
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper img {
  max-width: 65%;
  height: auto;
}
.header-title {
	font-size: 3.5em;
	font-weight: 900;
	margin: 15px 0;
	color: #fff;
	text-transform: uppercase;
}
.header-subtitle {
	margin: 0;
	font-size: 1.2em;
	color: #bdc8f0;
	font-weight: 300;
}

/*--------------------------------------------------------------
# Sections & Titles
--------------------------------------------------------------*/
.featured-section {
	position: relative;
	padding: 50px 0 20px 0;
}
.listing-section {
	position: relative;
	min-height: 80vh;
	padding: 50px 0;
}
.featured-section .container,
.listing-section .container {
	max-width: 1200px;
}
.section-title-wrapper h3 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.5em;
	position: relative;
	padding-left: 15px;
	margin: 0;
}
.section-title-wrapper h3:before {
	content: '';
	height: 100%;
	left: 0;
	width: 5px;
	border-radius: 10px;
	display: block;
	position: absolute;
	top: 0;
	background: #00a8ff;
}

/*--------------------------------------------------------------
# Search & Forms
--------------------------------------------------------------*/
.search-form-wrapper {
	max-width: 350px;
	display: inline-block;
	margin: 0 0 0 auto;
}
.search-input-wrapper {
	position: relative;
}
.search-input {
	width: 100%;
	height: 45px;
	padding: 0 20px 0 50px;
	font-size: 1em;
	border-radius: 50px;
	border: 1px solid #2d3250;
	background-color: #16213e;
	color: #f0f0f0;
	transition: all 0.3s ease;
}
.search-input:focus {
	border-color: #00a8ff;
	box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}
.search-input-wrapper span.material-icons-two-tone {
	position: absolute;
	font-size: 1.4em;
	top: 11px;
	left: 18px;
	color: #4a5a8a;
}
.search-input::placeholder {
	color: #4a5a8a;
	opacity: 1;
}

/*--------------------------------------------------------------
# Slick Slider
--------------------------------------------------------------*/
.featured-apps-slider .slick-slide {
  margin: 0 15px;
}
.featured-apps-slider .slick-list {
  margin: 0 -15px;
  padding: 20px 0;
}
.featured-app-slider-item {
	text-align: center;
	padding: 15px;
	cursor: pointer;
	border-radius: 10px;
	background-color: #16213e;
	border: 1px solid #2d3250;
	transition: all 0.3s ease;
}
.featured-app-slider-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 168, 255, 0.1);
	border-color: #00a8ff;
}
.featured-app-slider-item-img {
	border-radius: 10px;
	margin: 0 auto 15px auto;
	max-width: 80px;
}
.featured-app-slider-item-name {
	margin: 10px auto 0 auto;
	font-weight: 700;
	font-size: 1em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.featured-app-slider-item .listing-item-rating {
    justify-content: center;
}

/*--------------------------------------------------------------
# Listing (Grid)
--------------------------------------------------------------*/
.listing-section .section-title-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.listing-content .row {
	margin: 0 -10px;
}
.listing-content .listing-item-wrapper {
	padding: 0 10px;
	margin-bottom: 20px;
}
.listing-item {
	position: relative;
	align-items: center;
	justify-content: flex-start;
	display: flex;
	padding: 20px;
	cursor: pointer;
	border-radius: 10px;
	background-color: #2d3250;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}
.listing-item:hover {
	transform: translateY(-5px);
	border-color: #00a8ff;
	box-shadow: 0 5px 25px rgba(0, 168, 255, 0.15);
}
.listing-item .listing-item-left {
	position: relative;
	width: 80px;
	float: left;
	padding-right: 20px;
	flex-shrink: 0;
}
.listing-item .listing-item-right {
	position: relative;
	width: calc(100% - 80px);
	float: left;
}
.listing-item-img {
	border-radius: 10px;
}
.listing-item-auos {
	display: flex;
	align-items: center;
	font-size: 0.8em;
	color: #8c96c5;
}
.listing-item-os {
	margin-left: auto;
}
.listing-item-os i {
	font-size: 1.2em;
	margin-right: 3px;
}
.listing-item-by-val {
	color: #00a8ff;
}
.listing-item-name-rating-wrapper {
	margin: 5px 0 8px 0;
	display: flex;
	align-items: center;
}
.listing-item-name {
	font-weight: 700;
	line-height: 1.2;
	font-size: 1.2em;
	display: inline-flex;
}
.listing-item-rating {
	display: inline-flex;
	position: relative;
	padding-left: 10px;
	margin-left: 10px;
	align-items: center;
}
.listing-item-rating .material-icons-two-tone {
	color: #ffc107;
	font-size: 1.2rem;
}
.listing-item-rating-separator {
	display: none;
}
.listing-item-rating-val {
	font-weight: 700;
	margin-left: 4px;
	color: #f0f0f0;
}
.listing-item-about {
	line-height: 1.4;
	font-weight: 300;
	font-size: 0.9em;
	color: #bdc8f0;
}
.listing-item-hidden-d, .featued-app-slider-item-hidden-meta {
	display: none !important;
}

/*--------------------------------------------------------------
# Modal / Popups
--------------------------------------------------------------*/
.mfp-bg {
  background: #1a1a2e;
  opacity: 0.9;
}
.step-container, .proccessing-wrapper {
	max-width: 480px;
	margin: 0 auto;
	border-radius: 15px;
	padding: 40px;
	position: relative;
	background: #2d3250;
	border: 1px solid #4a5a8a;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.step-exit {
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
	color: #8c96c5;
	transition: all 0.2s ease;
}
.step-exit:hover {
	color: #fff;
	transform: scale(1.1);
}
.step-exit .material-icons-two-tone {
	font-size: 2em;
}
.step-icon-wrapper {
	margin: 0 auto 20px auto;
	text-align: center;
}
.app-step-icon {
    border-radius: 20px;
	max-width: 120px;
}
.step-info-wrapper {
	text-align: center;
}
.app-step-pr {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	color: #8c96c5;
}
.app-step-platforms i {
	font-size: 1.3em;
}
.aspr-sep {
	height: 15px;
	width: 1px;
	background: #4a5a8a;
	margin: 0 12px;
}
.app-step-rating .material-icons-two-tone {
	color: #ffc107;
	font-size: 1.2rem;
}
#app-step-rating-val {
	font-weight: 700;
	margin-left: 4px;
	color: #f0f0f0;
}
.app-step-downloads {
	color: #8c96c5;
}
#app-step-downloads-val {
	font-weight: 700;
	margin-left: 4px;
	color: #f0f0f0;
}
#app-step-by {
    line-height: 1;
    font-size: 0.8em;
	color: #8c96c5;
	margin-top: 5px;
}
#app-step-title {
	font-size: 1.8em;
	margin: 5px auto 10px auto;
}
#app-step-description {
	margin: 0;
	color: #bdc8f0;
	font-size: 0.9em;
}
.step-proccesing-content {
	border-top: 1px solid #4a5a8a;
	margin-top: 25px;
	padding-top: 25px;
}
#s-p-c-title {
	text-align: center;
	font-weight: 700;
	margin: 0 auto 5px auto;
	font-size: 1.2em;
	color: #fff;
}
#s-p-c-msg {
	font-size: 1em;
	text-align: center;
	color: #bdc8f0;
}
.s-p-c-btn-wrapper {
	margin: 25px auto 0 auto;
}
.s-p-c-btn {
	width: 100%;
	padding: 15px 10px;
	text-align: center;
	border-radius: 8px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 1px;
	cursor: pointer;
	max-width: 280px;
	margin: 0 auto;
	color: #fff;
	background-color: #00a8ff;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 168, 255, 0.2);
}
.s-p-c-btn:hover {
	background-color: #28bfff;
	box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
	transform: translateY(-2px);
}
#proccessing-outer-wrapper {
	background: rgba(26, 26, 46, 0.95);
}
.proccessing-wrapper {
	background: transparent;
	border: none;
	box-shadow: none;
}
.proccessing-loader {
    text-align: center;
    margin: 0 auto 5px auto;
}
.proccessing-loader span.material-icons-two-tone {
	font-size: 6em;
	color: #00a8ff;
}
.proccessing-title {
	font-size: 1em;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 400;
	margin: 0 0 20px 0;
	text-align: center;
	color: #8c96c5;
}
.proccessing-msg {
	font-size: 1.4em;
	font-weight: 700;
	text-align: center;
	color: #fff;
	min-height: 48px;
}
.proccessing-loadbar {
	width: 100%;
	height: 10px;
	overflow: hidden;
	position: relative;
	margin: 25px auto 0 auto;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}
.proccessing-loadbar div {
	width: 0;
	height: 100%;
	background: #00a8ff;
	font-size: 7px;
	text-indent: 9999px;
	overflow: hidden;
	border-radius: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	position: relative;
	text-align: center;
	padding: 20px 15px;
	font-size: 0.8em;
	background-color: #16213e;
	color: #4a5a8a;
}
footer p {
	margin: 0 auto;
	max-width: 600px;
}

/*--------------------------------------------------------------
# Animations & Preloader
--------------------------------------------------------------*/
.step-loader, .preloader-wrapper {
	display: none;
}
.ball-scale-multiple>div {
	background-color: #00a8ff;
}
.animated.pulse.infinite {
    animation-iteration-count: infinite;
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}


/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	.header-title { font-size: 2.5em; }
	.listing-section .section-title-wrapper { flex-direction: column; align-items: flex-start; }
	.search-form-wrapper { margin: 15px 0 0 0; width: 100%; max-width: 100%; }
	.step-container, .proccessing-wrapper { padding: 30px 20px; }
}

@media screen and (max-width: 420px) {
	.listing-item { padding: 15px; }
	.listing-item .listing-item-left { width: 70px; padding-right: 15px; }
	.listing-item .listing-item-right { width: calc(100% - 70px); }
	.listing-item-name { font-size: 1.1em; }
}