 body, html {
 	height: 100%;
 }

body {
	background: url( '../img/background.png' );
	background-size: cover;
    -webkit-background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
	color: #1F1F1F;
	background-color: #0C141A;
  	overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.8);
  z-index: 100;
}
body.modal-open .effect {
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    -o-filter: blur(7px);
    -ms-filter: blur(7px);
    filter: blur(7px);
}
@font-face {
  font-family: customfont;
  src: url(../webfonts/Varela-Regular.ttf)
}
.modal-content {
  text-align: center;
  background: none;
  border: none;
}

.modal-header {
  background: none;
  border: none;
}

.modal-body {
  background: none;
  border: none;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #fff;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #fff;
}

h1, h2, h3 {
	line-height: normal;
	font-family: bebas-neue, sans-serif;
	font-weight: 400;
	font-size: 43px;
    color: white;
}
.separator {
	padding-top: 15px;
	padding-bottom: 15px;
}	

.logo {
	padding-top: 40px;
	padding-bottom: 40px;
}

.logo img {
	width: 200px;
	transform: scale(1.3);
    /*animation: pulse 4s infinite;*/
	filter: brightness(100%);
}
.logo img:hover{
	width: 200px;
	transform: scale(1.3);
    /*animation: pulse 4s infinite;*/
	filter: brightness(110%);
}

.logo p {
	line-height: normal;
	font-family: bebas-neue, sans-serif;
	font-weight: 400;
	font-size: 43px;
}

.section-outter {
	height: 40px;
	padding: 10px;
	position: relative;
}

.section-input {
	padding: 7px;
	padding-left: 20px;
	padding-right: 20px;
	background: #141D24;
	border: 1px solid rgb(1, 255, 255);
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.section-inner {
	font-family: bebas-neue, sans-serif;
	font-weight: 300;
	font-size: 25px;
	margin-top: -1px;
	padding: 1px;
	width: 100%;
	position: relative;
	background: #141D24;
}

.input-wrapper {
    position: relative;
}

.styled-input {
	font-family: bebas-neue, sans-serif;
	position: relative;
	text-align: center;
    width: 100%;
    background: #091314;
	color: #fff;
    border: none;
    box-shadow: none;
    padding: 0 20px 0 20px;
    height: 55px;
    font-size: 1.8em;
    font-weight: 400;
	border-radius: 5px;
}
.platform-section img{
	width: 100px;
	height: 100px;
}

.platforms {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.platforms li {
  	cursor: pointer;
    display: inline-block;
    color: #d9fff9;
    padding: 19px 0px 19px 0px;
    width: 13.333333333333%;
    line-height: 28px;
    -webkit-transition: background 1s ease-out;  
    -moz-transition: background 1s ease-out;  
    -o-transition: background 1s ease-out;  
    transition: background 1s ease-out;
	border-top: 2px outset #4D00FF;
    border-bottom: 2px outset #4D00FF;
	border-radius: 5px;
	background-color: #141D24;
	margin-right: 7px;
	margin-left: 7px;
}

.platforms li:hover {
	background: #141D24;
}

.platforms li img {
    -moz-transition: all 1s; 
    -webkit-transition: all 1s;  
    -ms-transition: all 1s;  
    -o-transition: all 1s;  
    transition: all 1s; 
	opacity: 0.6;
	z-index: 1;
	padding: 15px;
}

.platforms li:hover + .platforms li img {
	opacity: 1!important;
}

.platform-active {
	background: #141D24;
	border-top: 2px outset #4D00FF;
    border-bottom: 2px outset #4D00FF;
	border-radius: 5px;
	filter: brightness(90%);
	-webkit-box-shadow: inset 0px 0px 30px 0px rgba(0,218,216,1);
    -moz-box-shadow: inset 0px 0px 30px 0px rgba(0,218,216,1);
    box-shadow: inset 0px 0px 30px 0px rgba(0,218,216,1);
}

.platform-active img {
	opacity: 1!important;
	filter: brightness(120%);
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.styled-input:focus {   
  border-color: none;
  box-shadow: none;
  outline: 0 none;
}
a{
  color: #01F5F6;
}
.recent-activity-column {
  position: relative;
  color: #fff;
  padding-bottom: 0px!important;
  background: rgba(20, 29, 36, 0.75);
  border-bottom: 5px outset #4D00FF;
  border-top: 5px outset #4D00FF;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
}

.recent-activity-title-bg {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #1E2536;
}
.recent-activity-title {
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

.recent-activity-footer {
  background-color: #091314;
  margin-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  padding-bottom: 7px;
  color: #FFF;
}

.activity-column b {
  font-family: bebas-neue, sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 32px;
}

.ra-username {
	font-family: bebas-neue, sans-serif;
	font-size: 35px;
	letter-spacing: 1px;
	color: #00FEFE;
	font-weight: 400;
}
.ra-username1 {
	font-family: bebas-neue, sans-serif;
	font-size: 15px;
	letter-spacing: 1px;
	color: #F9C84A;
	font-weight: 400;
}
.activity-column span {
  font-family: bebas-neue, sans-serif;
  text-transform: uppercase;
  top: -10;
  display: block;
  margin-top: -5px;
  font-size: 18px;
  color: #F9C84A;
}
.user-icon {
  margin-top: -2px;
  width: 30px;
}
.game-icon {
  margin-top: -2px;
  width: auto;
  height: 100px;
  border-radius: 7px;
  border: 3px solid #8AC33F;
}
.coins-img {
  width: 80px;
  transform: scale(2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
	0% {
		transform: scale(0.65);
	}

	60% {
		transform: scale(2);
	}

	100% {
		transform: scale(0.65);
	}
}
.points-img {
  width: 80px;
  transform: scale(2);
  animation: pulse 2s infinite;
}
/* Steps - Progress Bar */
.wizard-steps-container {
  position: relative;
  margin: 0 30px;
  margin-top: -10px;
}
.wizard-steps-container .progress-bar-container {
  left: 20px;
  right: 20px;
  position: absolute;
  height: 5px;
  background-color: #24AFD0;
  top: 8px;
}
.wizard-steps-container .progress-bar-container .progress-bar {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  background-color: #4D00FF;
  transition: width 900ms ease;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 0;
}
.steps .step {
  height: 20px;
  width: 20px;
  background-color: #24AFD0;
  border-radius: 50%;
  position: relative;
}
.steps .step.done, .steps .step.active {
  background-color: #4D00FF;
}

.steps .step .label {
  font-family: bebas-neue, sans-serif;
  color: #fff;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 100px;
  margin-left: 80px;
  margin-bottom: -6px;
  text-align: center;
}

.multi-steps > li.is-active:before, .multi-steps > li.is-active ~ li:before {
  content: counter(stepNum);
  font-family: inherit;
  font-weight: 700;
}
.multi-steps > li.is-active:after, .multi-steps > li.is-active ~ li:after {
  background-color: #ddd;
}

.multi-steps {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.multi-steps > li {
  z-index: 1;
  counter-increment: stepNum;
  text-align: center;
  display: table-cell;
  position: relative;
  color: #FFF;
}
.multi-steps > li:before {
  cursor: pointer;
  content: '\f00c';
  content: '\2713;';
  content: '\10003';
  content: '\10004';
  content: '\2713';
  display: block;
  margin: 0 auto 4px;
  background-color: #EAB642;
  width: 30px;
  height: 30px;
  line-height: 22px;
  text-align: center;
  font-weight: bold;
  border-width: 3px;
  border-style: solid;
  border-color: #FFF;
  border-radius: 50%;
}
.multi-steps > li:after {
  content: '';
  height: 1px;
  width: 100%;
  background-color: #FFF;
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: -1;
}
.multi-steps > li:last-child:after {
  display: none;
}
.multi-steps > li.is-active:before {
  background-color: #EAB642;
  border-color: #FFF;
}
.multi-steps > li.is-active ~ li {
  color: #fff;
}
.multi-steps > li.is-active ~ li:before {
  background-color: #EAB642;
  border-color: #ddd;
}

.footer {
	font-family: bebas-neue, sans-serif;
	font-size: 20px;
	color: #fff;
}

.btn-generator {
  cursor: pointer;
}

.animation-delay-200 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}


.animation-delay-100 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}


.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-1000 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}


.animation-delay-800 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.console-processing-inner-wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}

.console-processing-res-wrap {
    font-family: sans-serif;
	font-weight: bold;
    max-width: 300px;
    margin: 0 auto;
    display: none;
}
.console-processing-res-item-wrap h2{
	color: red;
	text-shadow: 2px 2px #000;
	font-family: bebas-neue, sans-serif;
}
.console-processing-res-item-wrap {
    color: #fff;
    background: rgba(20, 29, 36, 0.75);
    border-bottom: 5px outset #4D00FF;
    border-top: 5px outset #4D00FF;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    width: 300px;
    display: table;
}

.coins-generator, .points-generator {
  font-style: normal;
}

.console-item-img {
    max-width: 100px;
}

.console-processing-res-select-amount {
    font-size: 5em;
    display: block;
    line-height: 1;
    font-weight: 700;
    margin-top: 7px;
    text-align: center;
    color: #000;
}

.console-processing-res-select-label {
    font-size: 1.2em;
    text-align: center;
    line-height: 1;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    text-transform: uppercase;
}

.console-processing-msg {
    font-family: bebas-neue, sans-serif;
    font-size: 3em;
    color: #01FDFE;
    text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px auto 0 auto;
}

.console-processing-msg span.lnr {
    font-size: 2em;
    color: #970DC1;
    position: relative;
    margin-bottom: 10px;
    display: block;
    text-shadow: none;
    text-align: center;
}


.console-processing-msg-success {
    color: #970DC1;
}

.console-processing-msg-fail {
    color: #fc4349;
}

.console-processing-msg-fail span.lnr {
  color: #fc4349;
}

/* Packages */

.packagesPageCoins {
  display: none;
}

.packages {
  font-family: bebas-neue, sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  padding-inline-start: 0px;
}

.packages li {
  cursor: pointer;
  text-align: center;
  padding: 8px;
  background-color: rgba(41, 56, 68, 0.88);
  border-top: 3px outset #4D00FF;
  border-bottom: 3px outset #4D00FF;
  border-radius: 5px;
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.strike {
    position: relative;
    display: inline-block;
}
.strike::before {
    content: '';
    border-bottom: 2px solid red;
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
}

.packages-bg {
  -webkit-box-shadow: -1px 2px 18px -2px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px 2px 18px -2px rgba(0,0,0,0.75);
  box-shadow: -1px 2px 18px -2px rgba(0,0,0,0.75);
  position: relative;
  text-align: center;
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(173,176,179,0.44) 100%);
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(173,176,179,0.44) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(173,176,179,0.44) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#70adb0b3',GradientType=0 );
  padding: 7px;
  z-index: 1;
  font-size: 27px;  
  color: #515151;
  border-radius: 5px;
}

.packages-bg b {
  top: -15px;
  color: #56fffa;
}

.new-price {
  margin-top: -25px;
}

.packages-bg span {
  color: #FFF;
  font-weight: bold;
}

.packages-bg img {
  width: 130px;
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}

.packages-amount {
  padding-top: 5px;
}

.packages-amount span {
  font-size: 20px;
  font-weight: bold;
}

.packages-amount img {
  margin-top: -5px;
}

.packages-about {
  font-size: 18px;
  line-height: 10px;
  padding-bottom: 6px;
  color: #4D00FF;
  letter-spacing: 1px;
}

.packages-bg:after {
  top: 0;
  left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat:no-repeat;        
    background-position: 0% top;
    z-index: -1;
    opacity: 0.7;
}

.packages-bg:before {
  top: 0;
  left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat:no-repeat;        
    background-position: right bottom;
    z-index: -1;
    opacity: 0.7;
}

.packages-bg img {
  margin-top: -50px;
}

.package-active {
  background: rgba( 16, 238, 241, 0.30 );
}

.package-active .packages-bg {
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(86,255,250,0.44) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(86,255,250,0.44) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(86,255,250,0.44) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#7056fffa',GradientType=0 );
}

.package-active .strike::before {
  border-color: #FFF;
}

.package-active2 {
  background: rgba( 16, 238, 241, 0.30 );
}

.package-active2 .packages-bg {
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(86,255,250,0.44) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(86,255,250,0.44) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(86,255,250,0.44) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#7056fffa',GradientType=0 );
}

.package-active2 .strike::before {
  border-color: #FFF;
}

.packages li:hover {
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -ms-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  background: rgba( 16, 238, 241, 0.30 );
}


.packages li:hover .packages-bg {
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -ms-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(86,255,250,0.44) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(86,255,250,0.44) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(86,255,250,0.44) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#7056fffa',GradientType=0 );
}

.packages li:hover .strike::before {
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -ms-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  border-color: #FFF;
}

.packages li:hover .packages-bg b {
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -ms-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  text-shadow: none;
  color: #FFF;
}

.packages li:hover .packages-bg:after {
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -ms-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

.packages li:hover .packages-bg:before {
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -ms-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

.verification-wrapper h3 {
  font-family: bebas-neue, sans-serif;
  font-size: 3.4em;
  text-transform: uppercase;
  color: #77041a;
}

.verification-wrapper p {
  font-family: bebas-neue, sans-serif;
  color: #FFF;
  font-size: 1.3em;
  max-width: 500px;
  margin: 0 auto;
  display: table;
}

.verification-wrapper {
  position: relative;
  color: #fff;
  background: #ff6d32;
  background: #a3152f;
  background: -moz-linear-gradient(top,  #a3152f 0%, #f61f48 100%);
  background: -webkit-linear-gradient(top,  #a3152f 0%,#f61f48 100%);
  background: linear-gradient(to bottom,  #a3152f 0%,#f61f48 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3152f', endColorstr='#f61f48',GradientType=0 );
  padding: 40px 50px;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.verification-wrapper:before {
  z-index: -1;
  background: #FF2147;
  position: absolute;
  content: ' ';
  width: 100%;
  height: 100%;
  left: -15px;
  right: 0;
  bottom: -15px;
}

.verification-entered-info {
    position: relative;
    margin-top: 10px;
}

.verification-e-i-col {
    font-family: bebas-neue, sans-serif;
    text-align: center;
    background: #a3152f;
    background: -moz-linear-gradient(top,  #a3152f 0%, #f61f48 100%);
    background: -webkit-linear-gradient(top,  #a3152f 0%,#f61f48 100%);
    background: linear-gradient(to bottom,  #a3152f 0%,#f61f48 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3152f', endColorstr='#f61f48',GradientType=0 );
    padding-bottom: 0px!important;
    padding: 15px 15px;
}

.v-e-i-label {
    display: block;
}

.v-e-i-val {
    font-size: 1.8em;
}

.v-e-i-val img {
    max-width: 35px;
    margin-right: 5px;
    position: relative;
}

.verification-spinner {
    font-size: 2.6em;
    display: block;
    text-align: center;
    margin: 20px auto;
    color: #fff;
}

.player-name-v2 {
  font-style: normal;
}

/* Mobile CSS */

@media (max-width: 767px) {

  .packages li {
    margin-bottom: 40px;
    width: 45%;
  }

	.platforms li {
		width: 30%;
	}

    .steps .step .label {
        margin-left: 6px;	
        font-size: 13px;	
    }

	 .coins-img {
		width: 80px;
	}

	.points-img {
		width: 80px;
	}

	.activity-column b {
	    font-size: 28px;
	}

  .styled-input {
    font-size: 1.6em;
  }

  .packages-bg img {
      width: 100px;
  }

  .console-processing-msg {
    font-size: 2.6em;
  }

}
/** CUSTOM CSS **/
.button-outter {
	height: 40px;
	padding: 10px;
	position: relative;
}
.button-inner {
	font-family: bebas-neue, sans-serif;
	font-weight: 300;
	font-size: 25px;
	margin-top: -15px;
	padding: 1px;
	width: 100%;
	position: relative;
	background: #141D24;
	border: 5px outset #4D00FF;
}
.embed-responsive {
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.activity-title {
	font-family: bebas-neue, sans-serif;
	font-weight: 300;
	font-size: 25px;
	margin-bottom: -33px;
	padding: 1px;
	width: 100%;
	position: relative;
	background: #141D24;
    border: 2px outset #4D00FF;
	border-radius: 5px;
}
.username-title {
	font-family: bebas-neue, sans-serif;
	font-weight: 300;
	font-size: 25px;
	margin-top: 21px;
	padding: 1px;
	width: 100%;
	position: relative;
	background: #141D24;
    border: 2px outset #4D00FF;
	border-radius: 5px;
}
.section-content {
	font-weight: normal;
	text-align: center;
	font-size: 0.8em;
	position: relative;
	background: rgba(20,23,29,0.75);
	border-width: 3px;
    border: 3px solid transparent;
    border-image: linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(1, 254, 255, 1) 50%, rgba(0,0,0,0) 90%);
    border-image-slice: 1;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0,0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0,0.75);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0,0.75);
	color: #fff;
}
.trailer-content {
	font-weight: normal;
	text-align: center;
	font-size: 0.8em;
    padding: 30px;
	position: relative;
	background: rgba(20, 29, 36, 0.75);
    border-bottom: 5px outset #4D00FF;
    border-top: 5px outset #4D00FF;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
}
/***** Preloader *****/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: url( '../img/GoCheat_Background_Loader.png' );
	background-size: cover;
    -webkit-background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
	background-color: #0C141A;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #151515;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #151515;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #151515;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;        
    z-index: 1000;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}
#loader-wrapper .loader-section.section-left {
    left: 0;
    background: linear-gradient(270deg, rgba(20,23,29,1) 0%, rgba(11,19,22,1) 100%);
}
#loader-wrapper .loader-section.section-right {
    right: 0;
    background: linear-gradient(90deg, rgba(20,23,29,1) 0%, rgba(11,19,22,1) 100%);
}
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.4s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.4s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(100%);  /* IE 9 */
	transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */
	-webkit-transition: all 0.4s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
	transition: all 0.4s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;  
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateY(-100%);  /* IE 9 */
	transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
	-webkit-transition: all 0.3s 1s ease-out;  
	transition: all 0.3s 1s ease-out;
}
.no-js #loader-wrapper {
    display: none;
}
.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3));
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3));
}
/***** Preloader END *****/

/**** GENERATE BUTTON ****/
.generate-button-outter {
	height: 40px;
	padding: 10px;
	position: relative;
	-webkit-filter: drop-shadow(0px 0px 15px rgba(1, 255, 255,0.3));
    filter: drop-shadow(0px 0px 15px rgba(1, 255, 255,0.3));
}
.generate-button-inner {
	font-family: bebas-neue, sans-serif;
	font-weight: 300;
	font-size: 25px;
	margin-top: 15px;
	padding: 1px;
	width: 100%;
	border-radius: 5px;
  text-decoration: none;
  border: 1px solid rgb(1, 255, 255);
  position: relative;
  overflow: hidden;
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.generate-button-inner:hover{
   box-shadow: 1px 1px 25px 10px rgba(1, 255, 255, 0.4);
}

.generate-button-inner:before{
	content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(1, 255, 255, 0.4),
    transparent
  );
  transition: all 650ms;
}

.generate-button-inner:hover:before{
	left: 100%;
}


.light{
background: -moz-linear-gradient(-45deg,  #141D24 0%, #141D24 40%, #fff 50%, #141D24 60%, #141D24 100%);
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#141D24), color-stop(40%,#141D24), color-stop(50%,#fff), color-stop(60%,#141D24), color-stop(100%,#141D24));
background: -webkit-linear-gradient(-45deg,  #141D24 0%,#141D24 40%,#fff 50%,#141D24 60%,#141D24 100%);
background: -o-linear-gradient(-45deg,  #141D24 0%,#141D24 40%,#fff 50%,#141D24 60%,#141D24 100%);
background: -ms-linear-gradient(-45deg,  #141D24 0%,#141D24 40%,#fff 50%,#141D24 60%,#141D24 100%);
background: linear-gradient(135deg,  #141D24 0%,#141D24 40%,#fff 50%,#141D24 60%,#141D24 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#141D24', endColorstr='#141D24',GradientType=1 );
background-repeat: no-repeat;  
background-position:0px;
background-size:300%;  
}

.light:hover{
  animation:light 1s;
  -webkit-animation:light 1s;
}

@keyframes light {
  0% {
        background-position:-600px; 
  }
  100% { 
        background-position:0px; 
  }
}
        
@-webkit-keyframes light {
  0% {
        background-position:-600px; 
  }
  100% { 
        background-position:0px; 
  }
}

/**** VERIFY BUTTON ****/
.verify-button-outter {
	height: 40px;
	padding: 10px;
	position: relative;
	-webkit-filter: drop-shadow(0px 0px 15px rgba(0, 218, 216,0.3));
    filter: drop-shadow(0px 0px 15px rgba(0, 218, 216,0.3));
	cursor: pointer;
}
.verify-button-inner {
	font-family: bebas-neue, sans-serif;
	cursor: pointer;
	font-weight: 300;
	font-size: 25px;
	margin-top: -15px;
	padding: 1px;
	width: 100%;
	position: relative;
	background: #141D24;
	border: 5px outset #4D00FF;
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75);
}

/**** BACK TO TOP ****/

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
border: 1px solid rgb(1, 255, 255);
	outline: none; /* Remove outline */
  background: transparent; /* Set a background color */
  color: #00E7FF; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  font-weight: 500;
  letter-spacing: 2;
  box-shadow: 1px 1px 15px 5px rgba(1, 255, 255, 0.4);
}

#myBtn:hover {
  color: #fff; /* Text color */
  border: 1px solid rgb(138, 12, 176);
  box-shadow: 1px 1px 15px 5px rgba(138, 12, 176, 0.4);
}

.arrow-up{
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;  
  border-bottom: 5px solid #fff;
}

/*** GALLERY ***/

#myInput {
  padding: 5px;
  border: 1px solid rgb(1, 255, 255);
  margin-bottom: 10px;
  margin-top: 10px;
  background-color: #1E2535;
  background-image: url(../img/searchicon.png);
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 35px auto;
  border-radius: 5px;
  font-family: bebas-neue, sans-serif;
  font-size: 2.0em;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  width: 70%;
}
#myInput:focus {
  width: 90%;
  box-shadow: 1px 1px 15px 5px rgba(1, 255, 255, 0.4);
}
input:focus::placeholder {
  color: transparent;
}
.wrapper ul {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  height : auto;
  max-width: 1200px;
  text-align: center;
  list-style-type: none;
  padding: 0px;
}
.wrapper {
  background-color: rgba(0,0,0,0.3);
  padding: 5px;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper ul {
   grid-template-columns: auto auto;
  }
  .box {
  padding: 5px;
  max-width: 100px;
  height: auto;
}
	
	.box-title{
		font-size: 0.8em;
	}
}
.box {
  padding: 0px;
  max-width: 250px;
  height: auto;
  background-color: #090417;
  margin: 10px;
  border-radius: 20px;
  text-align:center; 
  position: relative;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
  transition: transform .2s;
  border: 4px solid #8A0CB0;
}

.box:hover{
	border: 4px solid #01FEFF;
}
.box-title{
  display: block;
  font-family: bebas-neue, sans-serif;
  font-size: 1.3em;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  position: absolute; 
  bottom: 0px;
  width: 100%;
  height: auto;
  background-color: rgba(0,0,0,0.75);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.box:hover .box-title{
  background-color: rgba(0,0,0,0.9);
}
.box:hover{
  box-shadow: 0px 0px 15px 0px rgba(69, 150, 208,0.75);
  /*transform: scale(1.05); daje error */
}
.box-sub-title{
  font-family: customfont;
  font-size: 0.53em;
  font-weight: 700;
  letter-spacing: 1px;
  color: #01FEFF;
  text-align: center;
  background-color: #11121C;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.box:hover .box-sub-title{
  background-color: #8A0AAE;
  color: #fff;
}
.box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}
/*** GALLERY END ***/
.box-title-separator{
  height: 2px;
  background-color: aqua;
  width: 100%;
  margin-bottom: 5px;
}
/*** NAVBAR ***/
#myBtnContainer {
  margin-top: 15px;
}
.btn {
  border: 2px solid rgb(138, 12, 176);
  box-shadow: 1px 1px 5px 1px rgba(138, 12, 176, 0.4);
  outline: none;
  padding: 2px 20px;
  background: transparent;
  cursor: pointer;
  margin-bottom: 10px;
  color: #fff;
  font-family: bebas-neue, sans-serif;
  letter-spacing: 2px;
}
.btn a{
  color: #fff;
  font-weight: 450;
  padding: 10px;
}

.btn:hover {
  background-color: #8A0AAE;
}

.btn.active {
  background-color: #8B0AAF;
  color: #fff;
  font-weight: 450;
}
/** FILTER END **/

#myBtnDownloadContainer {
  margin-top: 15px;
}
.btn-download {
  border: none;
  outline: none;
  padding: 2px 20px;
  background-color: #4D00FF;
  cursor: pointer;
  margin: 15px auto;
  color: #fff;
  max-width: 145px;
  border-radius: 20px;
  font-size: 1.2em;
  background-image: url(../img/download-icon.html);
  background-position: 13px;
  background-repeat: no-repeat;
  background-size: 20px auto;
  text-align: right;
}
.btn-download a{
  color: #fff;
  font-weight: 600;
}
.btn-download:hover {
  background-color: #00002F;
}

/** INJECT **/
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  top: 25%;
  left: 50%;
  right: 50%;
  padding: 40px;
  background: #12131C;
  border: 5px solid #01FFFF;
  border-radius: 5px;
  position: sticky;
  transition: all 1s ease-in-out;
  width: 100%;
  margin: auto;
  
}
.popup h2 {
  margin-top: 0;
  color: #C261E0;
  font-family: bebas-neue, sans-serif;
  letter-spacing: 2px;
}
.popup .close {
  position: absolute;
  top: 5px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.popup .close:hover {
  color: red;
}
.popup .content {
  max-height: 50%;
  overflow: auto;
}

/** hexagon **/

.hexagon-top {
    width: 100%;
    height: 191px;
    background-image: url(../img/pattern-top.png);
    background-repeat: repeat-x;
    position: absolute;
    animation: animatedBackground 60s linear infinite;
	z-index: -1;
}
.hexagon-bottom {
    width: 100%;
    height: 191px;
    margin-bottom: -1em;
    background-image: url(../img/pattern-bottom.png);
    background-repeat: repeat-x;
    position: inherit;
    animation: animatedBackground 60s linear infinite;
	z-index: -1;
}
@keyframes animatedBackground {
    from {
        background-position: 0 0
    }
    to {
        background-position: 100% 0
    }
}
@media (max-width: 402px) {
    .hexagon-bottom {
        animation: animatedBackground 10s linear infinite
    }
    .hexagon-top {
        animation: animatedBackground 10s linear infinite
    }
}


/*  pass */
.btn-block {
  width: 100%;
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -200px;
  width: 400px;
  height: auto;
  padding: 30px;
  background: rgba(20,23,29,0.75);
  border-width: 3px;
    border: 3px solid transparent;
    border-image: linear-gradient(90deg, rgba(0,0,0,0) 10%, rgba(1, 254, 255, 1) 50%, rgba(0,0,0,0) 90%);
    border-image-slice: 1;
	border-radius: 15px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(4, 231, 232,0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(4, 231, 232,0.75);
    box-shadow: 0px 0px 15px 0px rgba(4, 231, 232,0.75);
}
.login h1 {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-align: center;
}

.login p {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-align: center;
}

input {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2),
    0 1px 1px rgba(255, 255, 255, 0.2);
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
}
input:focus {
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.4),
    0 1px 1px rgba(255, 255, 255, 0.2);
}

.notifyText {
	display: none;
}
#invalidPass {
	color: red;
	padding: 15px;
}
#success {
	color: green;
	padding: 15px;
}
#userPass {
	color: white;
	padding: 15px;
}
#userPass strong {
	color: green;
}

.btn-primary:hover{
  border: 2px solid rgb(138, 12, 176);
}

/* tooltip */
.tooltip1 {
  position: relative;
  display: inline-block;
}

.tooltip1 .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip1 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip1:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#CopyInput {
  width: 60%;
  margin-bottom: 10px;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2),
    0 1px 1px rgba(255, 255, 255, 0.2);
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
}
#CopyInput:focus {
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.4),
    0 1px 1px rgba(255, 255, 255, 0.2);
}

.myCopy {
  border: 2px solid rgb(138, 12, 176);
  box-shadow: 1px 1px 5px 1px rgba(138, 12, 176, 0.4);
  outline: none;
  padding: 2px 20px;
  background: transparent;
  cursor: pointer;
  color: #fff;
  font-family: bebas-neue, sans-serif;
  letter-spacing: 2px;
}
.myCopy a{
  color: #fff;
  font-weight: 450;
  padding: 10px;
}

.myCopy:hover {
  background-color: #8A0AAE;
}

.myCopy.active {
  background-color: #8B0AAF;
  color: #fff;
  font-weight: 450;
}