/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: 'GROBOLD';
    src: url('../fonts/GROBOLD.woff2') format('woff2'),
        url('../fonts/GROBOLD.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/*--------------------------------------------------------------
# Basics
--------------------------------------------------------------*/
* {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}
body {
	overflow-x: hidden;
	background: rgb(32,66,84); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(32,66,84,1) 0%, rgba(22,46,63,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(32,66,84,1) 0%,rgba(22,46,63,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(32,66,84,1) 0%,rgba(22,46,63,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#204254', endColorstr='#162e3f',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul li {
	list-style-type: none;
}
header, section {
	position: relative;
}
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:focus, a:visited, a:active {
	text-decoration: none !important;
	outline: none !important;
}
.double-margin {
	margin-right: -30px;
	margin-left: -30px;
}
.double-padding {
	padding-right: 30px;
	padding-left: 30px;
}
.no-padding-right {
	padding-right: 0;
}
.no-padding-left {
	padding-left: 0;
}
.no-padding {
	padding-left: 0;
	padding-right: 0;
}
.no-margin {
	margin-right: 0;
	margin-left: 0;
}
.clearfix {
	position: relative;
	clear: both;
}
.small-margin {
	margin-right: -5px;
	margin-left: -5px;
}
.small-padding {
	padding-right: 5px;
	padding-left: 5px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: 'Quicksand', sans-serif;
	color: #fff;
	font-size: 18px;
}
h1, h2, h3, h4, h5, .styled-label{
	font-family: 'GROBOLD';
	font-weight: 400;
}
span.strong {
	font-weight: 700;
}

/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/
.loader,
.loader:before,
.loader:after {
  background: rgba(0, 0, 0, 0.3);
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: rgba(0, 0, 0, 0.3);
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
	position: relative;
	text-align: center;
	padding: 120px 0 360px 0;
	background: url(../img/top-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-bottom: 4px solid #142a3a;
}
header:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	display: block;
	left: 0;
	bottom: 0;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#162e3f+0,162e3f+100&0+0,1+100 */
	background: -moz-linear-gradient(top, rgba(22,46,63,0) 0%, rgba(22,46,63,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(22,46,63,0) 0%,rgba(22,46,63,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(22,46,63,0) 0%,rgba(22,46,63,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00162e3f', endColorstr='#162e3f',GradientType=0 ); /* IE6-9 */
}

.img-logo {
	max-width: 700px;
	max-height: 250px;
	position: relative;
	z-index: 1;
}

/*--------------------------------------------------------------
# Generator
--------------------------------------------------------------*/
.attention {
    margin-top: 20px;
    font-size: 18px;
    background-color: #ff3b3b;
    padding: 7px;
    font-style: italic;
    border-top: 2px solid #1a3f57;
    border-bottom: 2px solid #184d68;
    border-left: 2px solid #265573;
    border-right: 2px solid #265573;
    box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
    border-radius: 10px;"
}
.generator-wrapper {
	position: relative;
	padding: 5px 70px 60px 70px;
	max-width: 700px;
	margin: -230px auto 0 auto;
	z-index: 1000;
}
.generator-wrapper:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: 1;
	background: rgb(88,161,188); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.styled-label {
	display: block;
	text-align: center;
	font-size: 2em;
	color: #333;
	text-shadow: 2px 2px 0 rgba(255,255,255,0.7);
	text-transform: uppercase;
	line-height: 1.2;
	margin: 0 auto 30px auto;
	position: relative;
	z-index: 2;
	padding: 20px 25px;
	max-width: 500px;
	margin-top: -55px;
	letter-spacing: 2px;
}
.styled-label:before {
	padding: 5px 20px;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	background: rgb(241,231,103); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #795c18, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 rgba(0, 0, 0, 0.3), inset 0 -7px 15px 0 rgba(0, 0, 0, 0.3), 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.tutorial-video-wrapper p {
	color: #fff;
	font-weight: 700;
	text-align: center;
	margin: 0 0 20px 0;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
#tutvideo2 {
max-width: 400px;
}
#tutvideo {
max-width: 400px;
}
/*--------------------------------------------------------------
# Username and Platform
--------------------------------------------------------------*/
.player-information-wrapper {
	position: relative;
	z-index: 5;
}
.username-input-wrapper {
	position: relative;
	padding: 20px 30px;
	margin-top: 50px;
}
.username-input-wrapper:before {
	content: '';
	display: block;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	position: absolute;
	z-index: -1;
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
}
.floating-arrow-wrapper {
	position: absolute;
	left: -30px;
	top: 35px;
	animation-name: move-right-to-left;
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-iteration-count: infinite;
	animation-direction: alternative;
	z-index: 10000;
}
.opacity-zero {
	opacity: 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;
}
.opacity-full {
	opacity: 1;
	-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;
}
@keyframes move-right-to-left {
  0% {
    transform: translateX(-7%);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-7%);
  }
}
.floating-label-wrapper {
	position: absolute;
	left: 0;
	top: -15px;
	width: 100%;
	z-index: 10000;
}
.floating-label {
	padding: 6px 20px;
	line-height: 1;
	color: #333;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.9em;
	display: table;
	margin: 0 auto;
	background: rgb(241,231,103); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 1px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 2px #795c18, inset 0 0 0 2px #4b6a7b, inset 0 0 7px 0 rgba(0, 0, 0, 0.5), inset 0 5px 10px 0 rgba(0, 0, 0, 0.3), inset 0 -7px 15px 0 rgba(0, 0, 0, 0.3), 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.input-icon {
	position: absolute;
	max-width: 70px;
    left: 30px;
    top: 20px;
}
.styled-input {
	width: 100%;
	background: transparent !important;
	border: none;
	box-shadow: none;
	padding: 0 20px 0 90px;
	position: relative;
	z-index: 300;
	height: auto;
	color: #fff;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
	font-size: 2.3em;
	outline: none !important;
	font-weight: 700;
}
.styled-input, .styled-input:before, .styled-input:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

.add-c-input, .add-c-input:before, .add-c-input:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;    
}
.add-c-textarea, .add-c-textarea:before, .add-c-textarea:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;    
}
.styled-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
}
.styled-input::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
}
.styled-input:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
}
.styled-input:-moz-placeholder { /* Firefox 18- */
	color: #fff;
}


.p-v-w, .b-v-w, .r-v-w {
	display: none;
}
.platform-information-row {
	margin-top: 40px;
	position: relative;
	z-index: 40000;
}
.platform-icon-wrapper {
	position: absolute;
	left: 40px;
	top: 25px;
	z-index: 10000;
}
.platform-icon-wrapper i {
	color: rgba(0, 0, 0, 0.4);
	font-size: 3.2em;
	position: relative;
}
.platform-icon-wrapper i.fa-gamepad {
	left: -10px;
}
.platform-icon-wrapper i.fa-apple {
	top: -4px;
}
.selectric, .selectric:hover, .selectric:active, .selectric:focus {
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	padding: 30px 20px 30px 110px
}
.selectric .label {
    color: #fff;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
	font-size: 2.4em;
    height: 100%;
	font-weight: 700;
}
.selectric .button {
	height: 100%;
	background: rgba(0,0,0,0.2);
}
.selectric-items ul, .selectric-items li {
	font-size: 1em;
	font-weight: 700;
}
.selectric-items {
	width: 100%;
	z-index: 500000;
}
.selectric-wrapper {
    -webkit-transform: initial;
    -moz-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
    transform: initial;
}
/*--------------------------------------------------------------
# Resource Select
--------------------------------------------------------------*/
.p-v-w {
	position: relative;
	z-index: 10;
}
.r-v-w {
	position: relative;
	z-index: 1;
}
.resource-select-wrapper {
	position: relative;
	margin-top: 40px;
}
.resource-select {
	position: relative;
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	height: 100px;
	line-height: 104px;
	text-align: center;
	padding: 0 80px 0 80px;
}
.resource-select-img {
	display: inline-block;
	max-width: 50px;
	margin-right: 5px;
	position: relative;
	top: -9px;
}
#resource-val {
	display: inline-block;
	font-weight: 700;
	font-size: 2.4em;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
	color:#fff;
}
.resource-button-wrapper {
	position: absolute;
	width: 100px;
	top: -6px;
}
.resource-button {
	background: rgb(241,231,103);
    background: -moz-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%);
    background: radial-gradient(ellipse at center, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=1 );
    border-radius: 10px;
    border: 2px solid #8f9aab;
	font-family: 'GROBOLD';
	color: #333;
	font-size: 2.4em;
	text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #795c18, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 rgba(0, 0, 0, 0.3), inset 0 -7px 15px 0 rgba(0, 0, 0, 0.3), 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
	cursor: pointer;
}
.resource-button.resource-button-n-a {
	-webkit-filter: grayscale(100%);
	-webkit-transition: .2s ease-in-out;
	-moz-filter: grayscale(100%); 
	-moz-transition: .2s ease-in-out;
	-o-filter: grayscale(100%); 
	filter: grayscale(100%); 
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	color: #777;
}
.resource-button:active {
	transform: scale(0.95);
}
.resource-button-wrapper-right {
	right: -2px;
}
.resource-button-wrapper-left {
	left: -2px;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.step-wrapper {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}
.mfp-bg.step-generation {
	opacity: 0.95;
	filter: alpha(opacity=95);
	background: rgb(32,66,84); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(32,66,84,1) 0%, rgba(22,46,63,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(32,66,84,1) 0%,rgba(22,46,63,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(32,66,84,1) 0%,rgba(22,46,63,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#204254', endColorstr='#162e3f',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.modal-step-t-video {
	position: relative;
	padding: 5px 10px 50px 10px;
	max-width: 700px;
	margin: 0 auto;
}
.modal-step-t-video:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	background: rgb(88,161,188); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.not-visible {
	visibility: hidden !important;
}

/*--------------------------------------------------------------
# Console
--------------------------------------------------------------*/
.step-content {
	position: relative;
	padding: 5px 45px 60px 45px;
	max-width: 500px;
	margin: 0 auto;
}
.step-content:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	background: rgb(88,161,188); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.step-content .styled-label {
	font-size: 2.2em;
}
.processing-resource-item-column {
	display: none;
}
.processing-item {
	max-width: 280px;
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	text-align: center;
	padding: 12px 20px;
	margin: 0 auto;
}
.resource-count-icon {
	display: table;
	margin: 0 auto 5px auto;
	max-width: 40px;
}
#console-resource-item-count {
	font-size: 3em;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
	line-height: 1;
	font-weight: 700;
	display: block;
}
.resource-count-label {
	display: block;
	font-size: 1em;
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
	margin: 0 auto;
}
.processing-loader i {
	font-size: 10em;
	display: block;
	text-align: center;
	line-height: 1;
	color: #2b5d7a;
}
.console-loadbar {
	width: 90%;
	max-width: 280px;
	position: relative;
	margin: 0 auto 0 auto;
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	-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;
}
.console-loadbar div {
	font-size: 15px;
	text-indent: 9999px;
	overflow: hidden;
	background: rgb(255,214,94);
    background: -moz-linear-gradient(top, rgba(255,214,94,1) 0%, rgba(254,191,4,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,214,94,1) 0%,rgba(254,191,4,1) 100%);
    background: linear-gradient(to bottom, rgba(255,214,94,1) 0%,rgba(254,191,4,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd65e', endColorstr='#febf04',GradientType=0 );
	border-radius: 10px;
}
.console-message {
	display: block;
	text-align: center;
	font-size: 2em;
	margin: 20px auto;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
.console-success-accent {
	color: #34e27a;
}
.console-error {
	color: #e60012;
}

/*--------------------------------------------------------------
# Verification
--------------------------------------------------------------*/

#hidden {
    display: none;
}

.human-verification-content  {
	position: relative;
	padding: 5px 45px 60px 45px;
	max-width: 500px;
	margin: 0 auto;
}
.human-verification-content:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	background: rgb(88,161,188); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.human-verification-wrapper .styled-label {
	font-size: 1.4em;
}
.human-verification-wrapper .styled-label:before {
	z-index: -1;
}
.human-verification-wrapper .styled-label span {
	z-index: 2;
}
.verification-resources-wrapper {
	max-width: 250px;
	margin: 0 auto 40px auto;
}
.verification-resource-item-column {
    max-width: 280px;
    background: #00b06f;
    border-color: #007348;
    border-style: solid;
    border-width: 5px;
    text-align: center;
    padding: 15px 15px 15px 15px;
    color: #ffffff;
}
.verification-r-icon {
	max-width: 35px;
}
#verification-resource-item-amount {
	font-weight: 700;
	color: #fff;
	font-size: 1.2em;
	position: relative;
	top: 2px;
}
.verification-resource-item-amount-label {
	font-size: 0.8em;
	text-transform: uppercase;
	position: relative;
	top: -1px;
}
.human-verification-wrapper p {
	font-size: 0.9em;
	color: #fff;
	text-align: justify;
	text-align-last: center;
	font-weight: 700;
	margin-bottom: 30px;
}
.verification-loader-wrapper {
	height: 30px;
	margin: 40px auto 20px auto;
}
.verification-loader-wrapper .loader {
	margin: 20px auto 0 auto;
	font-size: 7px;
}
.verification-button-wrapper {
	position: relative;
	margin-top: 20px;
}
.time-left-wrapper {
	color: #222;
	font-size: 1.2em;
	margin-bottom: 5px;
}
#v-u-e {
	font-weight: 700;
}
#human_verification_timer_time {
	color: #e60012;
	display: block;
	font-weight: 700;
	line-height: 1;
}
.verification-button-wrapper {
	margin-top: 15px !important;
}
.v-error-wrapper {
	max-width: 280px;
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	text-align: center;
	padding: 7px 10px 7px 60px;
	position: relative;
	display: none;
	margin: 15px auto 0 auto;
}
.v-error-wrapper i {
	position: absolute;
	top: 17px;
	left: 12px;
	font-size: 2em;
	color: rgb(255, 108, 75);
}
.v-error-wrapper span {
	color: #fff;
	display: block;
	line-height: 1.2;
	text-align: left;
	font-size: 0.8em;
	font-weight: 700;
}
.v-t-w {
	margin-top: 20px;
}
.verification-tutorial-video {
	margin-top: 15px;
	display: none;
	position: relative;
}
.s-tutorial-button-wrapper .styled-button.small {
	width: 150px;
    height: 36px;
    line-height: 34px;
    color: #333 !important;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    font-size: 0.75em;
}	
.v-r-i-u {
    font-size: 0.8em;
    font-weight: 700;
}
/*--------------------------------------------------------------
# Recent Activity
--------------------------------------------------------------*/
.recent-activity-wrapper {
	position: relative;
	max-width: 500px;
	margin: 80px auto 0 auto;
	min-height: 230px;
	padding: 60px 30px 30px 30px;
}
.recent-activity-wrapper:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: 1;
	background: rgb(88,161,188); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.recent-activity-label-wrapper {
	position: absolute;
	width: 100%;
	left: 0;
	top: -30px;
}
.recent-activity-label {
	font-size: 1.2em;
	max-width: 300px;
	margin-top: 0;
}
.recent-activity-content {
	position: relative;
}
.recent-activity-frame {
	overflow-y: hidden;
	position: relative;
}
.recent-activity {
	height: 130px;
	overflow-y: hidden;
	width: 100%;
	overflow-x: hidden;
	display: block;
	position: relative;
	z-index: 5;
	width: 100%;
	margin: 0 auto;
}
#recent-activity-row {
	margin-bottom: 50px;
}
div.sticky-queue { 
	display: block;
	left: 0;
	top: 0;
	margin: 0;	
	position: relative;	
	width: 100%;
}
.sticky {
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	padding: 10px 10px 0 10px;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	width: 90%;
	margin: 0 auto 10px auto;
	font-size: 12px;
	display: none;
	position: relative;
}
div.recent-activity-tab	{  
	padding: 7px 0 3px 0;
}
.recent-activity-user-wrapper {
	position: relative;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	height: auto;
	margin: 0 auto 10px auto;
}
.r-a-user-icon {
	max-width: 25px;
	margin-right: 6px;
	margin-left: 10px;
	position: relative;
	top: -2px;
}
.activity-username {
	color: #f3e264;
	font-size: 1.3em;
	position: relative;
	line-height: 1.2;
	top: 0;
	font-weight: 700;
}
.activity-generated-amount {
	position: relative;
	display: block;
	font-size: 1.8em;
	text-align: center;
	color: #fff;
	line-height: 1;
	height: 75px;
	vertical-align: top;
	font-weight: 700;
	padding-left: 29px;
}
.recent-activity-r-item {
	display: inline-block;
	position: relative;
}
.recent-activity-r-item-label {
	font-weight: 400;
	font-size: 0.7em;
	text-transform: uppercase;
	position: relative;
	top: -3px;
}
.recent-activity-r-item:before {
	position: absolute;
	content: '';
	height: 25px;
	width: 25px;
	left: -29px;
	top: -1px;
}
.recent-activity-r-item:before {
	background: url('../img/r-icon.png');
	background-size: 100% 100%;
	-webkit-background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.activity-loadbar {
	display: none;
	width: 80%;
	position: absolute;
	bottom: 0;
	left: 10%;
	background: #1e465d;
	margin-top: 5px;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px -4px rgba(0,0,0,.5);
	-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;
	border-radius: 6px;
}
.activity-progress-dot {
	position: absolute;
	height: 12px;
	width: 12px;
	content: '';
	border-radius: 50%;
	background: #1e465d;
	display: block;
	-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;
}
.activity-progress-dot-1 {
	left: 0;
	top: -4px;
}
.activity-progress-dot-2 {
	left: 48%;
	top: -4px;
}
.activity-progress-dot-3 {
	right: -2px;
	top: -4px;
}
.activity-progress-dot.passed {
	background: rgb(255,214,94); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,214,94,1) 0%, rgba(254,191,4,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,214,94,1) 0%,rgba(254,191,4,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,214,94,1) 0%,rgba(254,191,4,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd65e', endColorstr='#febf04',GradientType=0 ); /* IE6-9 */
}
.activity-loadbar div {
	font-size: 3px;
	text-shadow: 0px 0px 2px #000;
	text-indent: 9999px;
	overflow: hidden;
	background: rgb(255,214,94); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,214,94,1) 0%, rgba(254,191,4,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,214,94,1) 0%,rgba(254,191,4,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,214,94,1) 0%,rgba(254,191,4,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd65e', endColorstr='#febf04',GradientType=0 ); /* IE6-9 */
	border-radius: 6px;
}
.activity-progress-label {
	position: absolute;	
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	-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;
}
.activity-progress-label-1 {
	top: -20px;
	left: 10%;
}
.activity-progress-label-2 {
	top: -20px;
	left: 55%;
}
.activity-progress-label i {
	margin-right: 3px;
}
.icon-green {
	color: #f3e264;
}
.sign-move {
	position: relative;
	top: 5px;
}

/*--------------------------------------------------------------
# User Feedback
--------------------------------------------------------------*/
.user-feedback-wrapper {
	position: relative;
	max-width: 700px;
	margin: 80px auto 0 auto;
	min-height: 230px;
	padding: 60px 30px 30px 30px;
}
.user-feedback-wrapper:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	background: rgb(88,161,188); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.user-feedback-label-wrapper {
	position: absolute;
	width: 100%;
	left: 0;
	top: -30px;
}
.user-feedback-label {
    font-size: 1.2em;
    max-width: 340px;
    margin-top: 0;
}
.user-feedback-content {
	position: relative;
}
.user-feedback {
	position: relative;
	margin-bottom: 30px;
}
.user-feedback-row {
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	padding: 10px 15px 10px 15px;
}
.u-f-ww {
	position: relative;
	padding: 0 0 0 50px;
}
.u-f-meta-w i {
	position: absolute;
	font-size: 2em;
	left: 3px;
	top: 12px;
	color: rgba(0, 0, 0, 0.3);
}
.u-f-name {
	font-weight: 700;
	color: #f3e264;
}
.u-f-sep {
	margin: 0 3px;
}
.u-f-date {
	font-size: 0.8em;
	color: rgba(255,255,255,0.4);
	position: relative;
	top: -1px;
	font-weight: 700;
}
.u-f-msg {
	font-weight: 700;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
.u-f-img {
	background: rgba(0, 0, 0, 0.3);
	padding: 15px;
	margin-top: 10px;
	border-radius: 10px;
}
.add-c-label {
	position: relative;
	padding: 6px 20px;
    line-height: 1;
    color: #333;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9em;
    display: table;
    margin: 0 auto;
    background: rgb(241,231,103);
    background: -moz-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%);
    background: radial-gradient(ellipse at center, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=1 );
    border-radius: 10px;
    border: 1px solid #8f9aab;
    box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 2px #795c18, inset 0 0 0 2px #4b6a7b, inset 0 0 7px 0 rgba(0, 0, 0, 0.5), inset 0 5px 10px 0 rgba(0, 0, 0, 0.3), inset 0 -7px 15px 0 rgba(0, 0, 0, 0.3), 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.add-c-l-w {
	margin-bottom: 10px;
}
.add-c-line {
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	height: 2px;
	position: relative;
	top: -15px;
	z-index: -1;
}
.add-c-input {
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	color: #fff;
	height: 50px;
	padding: 0 20px;
	width: 100%;
	z-index: 300;
}
.add-c-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
}
.add-c-input::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
}
.add-c-input:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
}
.add-c-input:-moz-placeholder { /* Firefox 18- */
	color: #fff;
}
.add-c-textarea {
	margin-top: 10px;
	background: #2b5d7a;
	border-top: 2px solid #1a3f57;
	border-bottom: 2px solid #184d68;
	border-left: 2px solid #265573;
	border-right: 2px solid #265573;
	box-shadow: 0 -1px 0 0 #386576, 0 -2px 0 0 #64a9c2, 0 1px 0 0 #408899, 0 2px 0 0 #74bfce, -1px 0 0 0 #3a6d87, -2px 0 0 0 #5290a8, 1px 0 0 0 #3a6d87, 2px 0 0 0 #5290a8;
	border-radius: 10px;
	color: #fff;
	padding: 10px 20px;
	width: 100%;
	z-index: 300;
}
.add-c-textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
}
.add-c-textarea::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
}
.add-c-textarea:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
}
.add-c-textarea:-moz-placeholder { /* Firefox 18- */
	color: #fff;
}
.add-c-button-wrapper {
	margin-top: 10px;
}
.user-feedback-success-wrapper {
	position: relative;
	text-align: center;
	display: none;
}
.user-feedback-success-wrapper i {
	font-size: 4em;
	color: rgba(0, 0, 0, 0.4);
	display: block;
	margin: 20px 0 10px 0;
}
.user-feedback-success-msg {
	font-size: 1.2em;
	font-weight: 700;
	max-width: 500px;
	margin: 0 auto;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
.add-c-error-w {
	display: none;
	color: rgba(0, 0, 0, 0.6);
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Separator
--------------------------------------------------------------*/

.divider
{
	position: relative;
	margin-top: 40px;
	height: 1px;
}

.div-transparent:before
{
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-arrow-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -7px;
	left: calc(50% - 7px);
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	background-color: white;
	border-bottom: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
}
/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.button-wrapper {
	margin: 40px auto 0 auto;
	position: relative;
	z-index: 2;
}
.styled-button {
	display: block;
	position: relative;
	width: 308px;
	height: 74px;
	line-height: 68px;
	color: #333 !important;
	text-transform: uppercase;
	margin: 0 auto;
	text-align: center;
	font-size: 1.6em;
	font-weight: 700;
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);	
}
.styled-button:before {
	content: '';
	position: absolute;
	display: block;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	background: url(../img/bbg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.styled-button span {
	position: relative;
	z-index: 3;
}
.styled-button.n-a {
	opacity: 0.4;
	filter: alpha(opacity=40);	
	-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;
	cursor: not-allowed;
}
.styled-button.small {
	display: block;
	position: relative;
	width: 220px;
	height: 53px;
	line-height: 50px;
	color: #333 !important;
	text-transform: uppercase;
	margin: 0 auto;
	text-align: center;
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);	
}
.f-o {
	filter: hue-rotate(-35deg);
	-webkit-filter: hue-rotate(-35deg);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	margin-top: 150px;
	text-align: center;
	padding: 5px 0;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	font-size: 0.6em;
	position: relative;
	z-index: 10;
}
footer .copyright-notice  {
	margin-top: 3px;
}
footer .copyright-notice span {
	display: block;
	margin-top: 3px;
}
footer a {
	color: #fff;
	font-weight: 700;
}
footer a:hover {
	color: #fad41b;
}
.f-n-l:after {
	display: inline-block;
	content: '|';
	margin: 0 3px;
	position: relative;
	color: rgba(0,0,0,0.2);
}
.f-n-l:last-child:after {
	display: none;
}
/*--------------------------------------------------------------
# Footer Popups
--------------------------------------------------------------*/
.mfp-bg {
	opacity: 0.95;
	filter: alpha(opacity=95);
	background: rgb(32,66,84); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(32,66,84,1) 0%, rgba(22,46,63,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(32,66,84,1) 0%,rgba(22,46,63,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(32,66,84,1) 0%,rgba(22,46,63,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#204254', endColorstr='#162e3f',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.footer-popup-wrapper {
    max-width: 500px;
	width: 90%;
	margin: 0 auto;
	position: relative;
}
.footer-popup-title-wrapper {
	position: absolute;
	width: 100%;
	left: 0;
	top: -70px;
}
.footer-popup-wrapper h1 {
	display: block;
	text-align: center;
	font-size: 1.2em;
	color: #333;
	text-shadow: 2px 2px 0 rgba(255,255,255,0.7);
	text-transform: uppercase;
	line-height: 1.2;
	margin: 0 auto 30px auto;
	position: relative;
	z-index: 2;
	padding: 20px 25px;
	max-width: 300px;
	margin-top: 38px;
	letter-spacing: 2px;
}
.footer-popup-wrapper h1:before {
	padding: 5px 20px;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	background: rgb(241,231,103); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(241,231,103,1) 0%,rgba(254,182,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #795c18, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 rgba(0, 0, 0, 0.3), inset 0 -7px 15px 0 rgba(0, 0, 0, 0.3), 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
.footer-popup-inner-wrapper {
	position: relative;
	height: 650px;
	overflow: auto;
	position: relative;
	margin: 0 auto;
	margin: 80px auto 0 auto;
	min-height: 230px;
	padding: 60px 30px 30px 30px;
	background: rgb(88,161,188); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px;
    border: 2px solid #8f9aab;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7);
}
#contact-us .footer-popup-inner-wrapper {
	height: 420px;
}
.contact-form-wrapper {
	overflow-y: hidden;
}
.footer-popup-wrapper h2 {
	font-size: 1.4em;
	margin: 20px 0 5px 0;
	color: #fff;
}
.footer-popup-wrapper p {
	color: #fff;
	font-size: 0.9em;
	text-align: justify;
	text-align-last: left;
	-moz-text-align-last: left;
}
.input-style::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
}
.input-style::-moz-placeholder { /* Firefox 19+ */
	color: #000;
}
.input-style:-ms-input-placeholder { /* IE 10+ */
	color: #000;
}
.input-style:-moz-placeholder { /* Firefox 18- */
	color: #000;
}
.footer-popup-wrapper .input-style {
	background: rgba(255,255,255,1);
	height: 45px;
	padding: 0 15px;
	border-radius: 0;
	border: none;
	font-size: 1.1em;
	color: #000;
}
.footer-popup-wrapper textarea.input-style {
	height: auto;
	padding: 10px 15px;	
}
.footer-popup-wrapper label {
	font-size: 0.9em;
	font-weight: 300;
	text-align: center;
	display: block;
	margin: 0;
	color: #fff;
}
#msgSubmit {
	margin-top: 5px;
	font-size: 1em;
}
.footer-popup-wrapper .mfp-close {
	position: absolute;
	right: 20px;
	top: -65px;
	cursor: pointer;
	opacity: 1;
	display: block;
	text-align: center;
	-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;
	display: block;
	line-height: 1;
	color: #ff1f6a;
	font-size: 4em;
}
.help-block.with-errors {
	font-size: 0.8em;
	color: red;
}
.help-block.with-errors ul {
	margin: 0;
}
.swal2-popup {
	background: rgb(88,161,188)!important; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%, rgba(63,118,147,1) 100%)!important; /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%)!important; /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(88,161,188,1) 0%,rgba(63,118,147,1) 100%)!important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a1bc', endColorstr='#3f7693',GradientType=1 )!important; /* IE6-9 fallback on horizontal gradient */
    border-radius: 10px!important;
    border: 2px solid #8f9aab!important;
	box-shadow: 0 0 0 1px #7c8191, 0 0 0 1px #9899ab, inset 0 0 0 1px #bad1e0, inset 0 0 0 3px #173b56, inset 0 0 0 2px #4b6a7b, inset 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 7px 15px 0 #315e7a, inset 0 -7px 15px 0 #315e7a, 0 0 7px 0 rgba(0, 0, 0, 0.6), 0 0 20px 0 rgba(0, 0, 0, 0.7)!important;
}
.swal2-container.swal2-shown {
    background-color: rgba(0,0,0,.8)!important;
}
.swal2-styled.swal2-confirm {
	display: block!important;
	position: relative!important;
	width: 308px!important;
	height: 74px!important;
	line-height: 30px!important;
	color: #333 !important;
	text-transform: uppercase!important;
	margin: 0 auto!important;
	text-align: center!important;
	font-size: 1.8em!important;
	font-weight: 700!important;
	cursor: pointer!important;
	opacity: 1!important;
	filter: alpha(opacity=100)!important;	
	background: url(../img/bbg.png)!important;
	background-size: 100% 100%!important;
	background-repeat: no-repeat!important;	
}
.swal2-title {
     color: #ff5353 !important;
     text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8) !important;
}
#swal2-content {
	color: #fff!important;
	font-weight: 700!important;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3)!important;
}	
/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animation-delay-200 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.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-1200 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.animation-delay-1400 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.animation-delay-1600 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.animation-delay-1800 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 1920px) { 
	.img-logo {
		max-width: 450px;
	}
	header h1 {
		font-size: 2.6em;
	}
}
@media screen and (max-width: 1400px) { 
	header {
		padding-top: 70px;
		padding-bottom: 300px;
	}
}
@media screen and (max-width: 767px) { 
	header {
		padding-bottom: 300px;
	}
	.recent-activity-wrapper  {
		z-index: 1;
	}
	.generator-wrapper {
		z-index: 2;
		padding: 5px 30px 40px 30px;
	}	
	.img-logo {
		max-width: 330px;
	}
	header h1 {
		font-size: 2.4em;
	}
	.styled-label {
		font-size: 1.5em;
		max-width: 350px;
	}
	.recent-activity-label {
		font-size: 1.2em;
	}
	.styled-input {
		font-size: 1.8em;
		padding-left: 50px;
	}
	.selectric .label {
		font-size: 1.8em;
	}
	.selectric, .selectric:hover, .selectric:active, .selectric:focus {
		padding: 20px 20px 20px 75px;
	}
	.platform-icon-wrapper i {
		font-size: 2.2em;
	}
	.floating-arrow-wrapper {
		top: 26px;
	}
	.input-icon {
		max-width: 40px;
		top: 24px; 
	}
	.resource-select {
		height: 88px;
		line-height: 92px;
	}
	.resource-button-wrapper {
		width: 70px;
	}
	.resource-select-img {
		max-width: 40px;
	}
	#resource-val {
		font-size: 2em;
	}
	.step-content .styled-label {
		font-size: 1.8em;
	}
}
@media screen and (max-width: 575px) { 
	.container {
		padding: 0 15px;
	}
	.styled-label {
		margin-bottom: 35px;
	}
	footer {
		margin-top: 100px;
	}
	.u-f-msg, .u-f-name {
		font-size: 0.8em;
	}
	.step-content .styled-label {
		font-size: 1.6em;
	}
	.verification-loader-wrapper {
		margin-top: 30px;
	}
}
@media screen and (max-width: 470px) { 
    #tutvideo {
        max-width: 100%;
    }
    #tutvideo2 {
        max-width: 100%;
    }
	header {
		padding-top: 30px;
	}
	.double-margin {
		margin-right: -7px;
		margin-left: -7px;
	}
	.double-padding {
		padding-right: 7px;
		padding-left: 7px;
	}
	.img-logo {
		max-width: 290px;
	}
	.styled-label {
		font-size: 1.2em;
	}
	.activity-generated-amount {
		font-size: 1.4em;
	}
	.selectric .label {
		font-size: 1.4em;
	}
	.selectric, .selectric:hover, .selectric:active, .selectric:focus {
		padding: 17px 20px 17px 75px;
	}
	.recent-activity-r-item-1::before{
		top: 0;
	}
	.platform-icon-wrapper {
		top: 20px;
	}
	.resource-button-wrapper {
		width:60px;
	}
	.input-icon {
		top: 20px;
	}
	.styled-input {
		padding: 0 20px 0 50px;
		font-size: 1.4em;
		border: none !important;
	}
	.recent-activity {
		width: 95%;
	}
	.floating-arrow-wrapper {
		top: 22px;
	}
	.activity-username {
		font-size: 1.2em;
	}
	.step-wrapper .img-logo {
		margin-top: 25px;
		max-width: 220px;
	}
	.console-wrapper {
		position: relative;
	}
	.console-loadbar {
		width: 100%;
		position: relative;
		top: 0;
		left: 0;
		margin-top: 20px;
	}
	.console-message {
		min-height: 100px;
	}
	.player-info-wrapper {
		margin-top: 30px;
	}
	.player-info-username {
		min-width: auto;
	}
	.player-info-wrapper {
		max-width: 500px;
		margin: 40px auto 80px auto;
	}
	.player-info-col {
		padding: 15px 10px;
	}
	.styled-label-popup {
		margin-bottom: 20px;
	}
	.styled-label-popup h2 {
		font-size: 1em;
	}
	.floating-label {
		font-size: 0.7em;
	}
	.resource-item-column {
		padding: 15px 10px;
	}
	.res-value-top {
		font-size: 0.9em;
	}
	.console-resource-item-column .resource-select-icon {
		top: -1px;
	}
	.console-message {
		font-size: 2em;
	}
	.human-verification-wrapper {
		padding: 60px 0 40px 0;
	}
	.verification-resources-wrapper {
		margin-bottom: 30px;
	}
	.verification-resource-item-column .res-value-bottom {
		font-size: 1.1em;
	}
	.verification-button-wrapper {
		margin-top: 15px;
	}
	.verification-resource-item-column .res-value-bottom-label {
		font-size: 0.72em;
		text-shadow: none;
	}
	.modal-step-t-video {
		position: relative;
		padding: 5px 30px 60px 30px;
	}
}
@media screen and (max-width: 420px) {
	.human-verification-wrapper .styled-label {
		font-size: 1.2em;
	}
	.double-margin {
		margin-right: -10px;
		margin-left: -10px;
	}
	.double-padding {
		padding-right: 10px;
		padding-left: 10px;
	}
	.img-logo {
		max-width: 260px;
	}
	.selectric .label {
		font-size: 1em;
	}
	.input-icon {
		max-width: 35px;
		top: 18px;
	}
	.styled-input {
		font-size: 1em;
	}
	.human-verification-wrapper p {
		font-size: 0.75em;
	}
	.human-verification-content {
		position: relative;
		padding: 5px 25px 60px 25px;
	}
	.step-content .styled-label {
		font-size: 1.4em;
	}
	.platform-icon-wrapper i {
		font-size: 1.8em;
	}
	.platform-icon-wrapper {
		top: 22px;
	}
	.resource-select-img {
		max-width: 35px;
		top: -7px;
	}
	.selectric, .selectric:hover, .selectric:active, .selectric:focus {
		padding: 15px 20px 14px 75px;
	}
	#resource-val {
		font-size: 1.6em;
	}
	.sticky {
		padding: 10px 2px 0 2px;
	}
	.activity-generated-amount {
		font-size: 1.1em;
	}
	.recent-activity-r-item-label {
		top: 0;
	}
	.activity-progress-label {
		font-size: 0.8em;
	}
	.recent-activity-r-item-1::before, .recent-activity-r-item-2::before {
		top: -3px;
	}
	.console-message {
		font-size: 1.6em;
	}
	#console-resource-item-count {
		font-size: 2em;
	}
	.processing-loader i {
		font-size: 5em;
		display: block;
		text-align: center;
		line-height: 1;
		color: #2b5d7a;
	}
	.recent-activity-content:before {
		left: 0;
		width: 100%;
	}
	.styled-button {
		width: 100%;
	}
	.recent-activity-wrapper {
		padding: 40px 20px 20px 20px;
		min-height: 200px;
	}
	
	.sticky {
		width: 100%;
	}
	.u-f-meta-w i {
		font-size: 1.4em;
	}
	.u-f-ww {
		position: relative;
		padding: 0 0 0 35px;
	}
	.recent-activity-r-item:before {
		top: -6px;
	}
	.human-verification-wrapper .styled-label {
		font-size: 1em;
	}
	.step-content {
		position: relative;
		padding: 5px 25px 60px 25px;
	}
	.styled-button {
		font-size: 1.6em;
	}
	#contact-us .footer-popup-inner-wrapper {
		height: auto;
	}
}
@media screen and (max-width: 375px) {
	.player-info-username, .selected-platform-label {
		font-size: 0.9em;
	}
	.before-header {
		padding: 0 15px;
	}		
	.floating-arrow-wrapper {
		top: 19px;
	}
	#resource-val {
		font-size: 1.3em;
	}
	.resource-button {
		font-size: 1.8em;
	}
	.resource-select {
		padding: 0 50px;
	}
	.floating-label {
		padding: 6px 10px;
	}
	.styled-button {
		font-size: 1.4em;
	}
	.resource-button-wrapper {
		width: 45px;
	}
	.resource-select-img {
		max-width: 28px;
		top: -3px;
	}
	.styled-input {
		font-size: 0.9em;
	}
	.selectric .label {
		font-size: 0.9em;
	}
	.styled-label {
		font-size: 1em;
	}
	.verification-wrapper p {
		font-size: 0.9em;
	}
	.v-error-wrapper span {
		font-size: 0.7em;
	}
}
@media screen and (max-width: 365px) {
	.human-verification-wrapper .styled-label {
		font-size: 1em;
	}	
	.console-message {
		font-size: 1.4em;
	}
	.styled-label {
		margin-bottom: 35px;
	}
}
@media screen and (max-width: 355px) {
	.styled-input {
		font-size: 0.8em;
	}
	.selectric .label {
		font-size: 0.8em;
	}
}
@media screen and (max-width: 355px) {

}
@media screen and (max-width: 350px) {
	.activity-generated-amount {
		font-size: 1em;
	}
	.activity-progress-label {
		font-size: 0.7em;
	}
	.recent-activity-r-item-1:before, .recent-activity-r-item-2:before  {
		height: 17px;
		width: 17px;
	}
}
@media screen and (max-width: 335px) {
	.console-message {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 330px) {
	.activity-generated-amount {
		font-size: 0.9em;
	}
	.console-message {
		font-size: 1.1em;
	}
}