/* =================================
------------------------------------
  Game Warrior Template
  Version: 1.0
 ------------------------------------ 
 ====================================*/

/*---------------------------*/
/* Template default CSS
/*---------------------------*/

@font-face {
  font-family: "JOYSTIX";
  /* WOFF2 ist ein Viertel so gross wie die TTF. swap zeigt den Text sofort
     in einer Ersatzschrift, statt ihn bis zum Laden unsichtbar zu lassen. */
  /* Nur WOFF2: jeder aktuelle Browser kann es. Mit TTF als zweitem
     Eintrag hat Chrome beide Dateien geladen, 46 KB fuer nichts. */
  src: url("../fonts/joystix.woff2") format("woff2");
  font-display: swap;
}

/* @import Open Sans entfernt: stand hinter @font-face, wurde vom Browser
   ohnehin ignoriert. Der Text lief schon immer in der Systemschrift. */

html,
body {
	height: 100%;
	font-family: 'JOYSTIX', 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
  background-color: #131313;
  overflow-x: hidden;
}

*::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	background-color: #383838;
}

*::-webkit-scrollbar
{
	width: 10px;
 height: 10px;
	background-color: #383838;
}

*::-webkit-scrollbar-thumb
{
	background-color: #0ae;
	background-image: linear-gradient(#b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
}

 ::-webkit-scrollbar-thumb:horizontal {
   background-color: #0ae;
	 background-image: linear-gradient(to right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
 }



h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 500;
	color: #ffffff;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
  font-size: 14px;
  letter-spacing: 2px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: #d4d4d4;
	line-height: 2;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

.reg-btn, .login-btn {
  width: 100%;
  height: 50px;
  text-transform: uppercase;
  border-radius: 0px;
  background: #ff205f;
  border: 0px;
  transition: all 200ms;
}

.login-btn {
  background: #5c20ff;
}

.reg-btn:hover {
  background: #cc194c;
}

.login-btn:hover {
  background: #4f22cb;
}

.almem {
  margin-top: 10px;
  display: block;
  border-top: 1px solid #bdbdbd;
  padding-top: 10px;
  text-align: center;
  color: white;
}


.pad {
  padding: 5px;
}

/*---------------------
  Helper CSS
-----------------------*/

.owl-bitcase {
  margin: 0 auto;
  width: 97%;
}

.section-title {
	text-align: center;
	margin-bottom: 10px;
}

.section-title h2 {
	padding-top: 10px;
	font-size: 36px;
}

.set-bg {
  background-repeat: no-repeat !important;
  background-size: 140%;
}

.set-bg.SNES, .set-bg.N64 {
  background-position: 57%;
}

.set-bg.GB, .set-bg.GBC, .set-bg.NES, .set-bg.GBA {
  background-size: 155%;
  background-position: 51%
}

.spad {
	padding-top: 97px;
	padding-bottom: 97px;
}

.spad-small {
	padding-top: 30px;
	padding-bottom: 50px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.rating i {
	color: #fbb710;
}

.rating .is-fade {
	color: #e0e3e4;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */
.site-btn {
	display: inline-block;
	text-align: center;
	font-size: 15px;
	color: #131313;
	padding: 16px 30px;
	min-width: 153px;
	border-radius: 50px;
	font-weight: 500;
	border: none;
	background: #ffb320;
	cursor: pointer;
}

.site-btn.btn-sm {
	padding: 10px 30px;
	min-width: 163px;
}

.site-btn:hover {
	color: #131313;
}

.cata {
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	padding: 6px 25px;
}

.cata.snes {
	background: #ff205f;
}

.cata.gb {
	background: #4eae60;
}

.cata.nes {
	background: #694eae;
}

.cata.gbc {
	background: #40abf5;
}

/* Preloder */
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}


/*------------------
  Buy Box Option Button
---------------------*/

.inputGroup {
  background-color: #fff;
  display: inline-block;
  margin: 10px 0;
  position: relative;
  width: 48%;
}

.inputGroup label {
  padding: 12px 30px;
  width: 100%;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  margin-bottom:0px;
}
.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background-color: #2992d0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
          transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: '';
  border: 2px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}
.inputGroup input:checked ~ label {
  color: #fff;
}
.inputGroup input:checked ~ label:before {
  -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
          transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}
.inputGroup input:checked ~ label:after {
  background-color: #54E0C7;
  border-color: #54E0C7;
}
.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}



#showarticle-box .form {
  padding: 0 16px;
  max-width: 550px;
  margin: -3px auto 3px auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 36px;
}

#showarticle-box small {
  margin-left: 15px;
  margin-top: 15px;
  color: #2992d0;
  display: block;
}

#showarticle-box p {
  padding: 12px;
  color: #fff89f;
  font-size: 14px;
  font-weight: 100;
  word-spacing: 2px;
  letter-spacing: 1px;
}

#showarticle-box h3 {
  font-size: 22px;
  padding: 10px 0px 0px 10px;
}

/*------------------
  Header section
---------------------*/

.header-section {
  background: #131313;
  clear: both;
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
}

.site-logo {
	display: inline-block;
	float: left;
	padding-top: 6px;
}

.user-panel {
	float: right;
	font-weight: 500;
	background: #ffb320;
	padding: 8px 28px;
	border-radius: 30px;
}

.user-panel a {
	font-size: 14px;
	color: #131313;
}

.main-menu {
	float: right;
	margin-right: 170px;
}

.main-menu img {
  vertical-align: sub;
  height: 20px;
  margin-right: 3px;
}

.main-menu ul {
	list-style: none;
 width: 100%;
}

.main-menu ul li {
	display: inline;
}

.main-menu ul li a {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  margin-left: 20px;
  font-weight: 500;
  padding: 15px 5px;
}

.main-menu ul li a:hover {
	color: #ffb320;
}

.header-btn {
	float: right;
	margin-right: 0;
}

.nav-switch {
	display: none;
}

/*------------------
  Hero Section
---------------------*/

.hero-slider .hs-item {
	height: 865px;
	display: table;
	width: 100%;
}

.hero-slider .hs-text {
	display: table-cell;
	vertical-align: middle;
}

.hero-slider .hs-text h2 {
	color: #fff;
	font-weight: 400;
	font-size: 60px;
	margin-bottom: 30px;
	position: relative;
	top: -80px;
	opacity: 0;
}

.hero-slider .hs-text h2 span {
	color: #ffb320;
}

.hero-slider .hs-text p {
	color: #fff;
	margin-bottom: 30px;
	position: relative;
	position: relative;
	top: -90px;
	opacity: 0;
}

.hero-slider .hs-text .site-btn {
	position: relative;
	top: -100px;
	opacity: 0;
}

.hero-slider .owl-item.active .hs-item h2,
.hero-slider .owl-item.active .hs-item p,
.hero-slider .owl-item.active .hs-item .site-btn {
	top: 0;
	opacity: 1;
}

.hero-slider .owl-item.active .hs-item h2 {
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.hero-slider .owl-item.active .hs-item p {
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
  font-size: 18px;
}

.hero-slider .owl-item.active .hs-item .site-btn {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.hero-slider .owl-dots {
	position: relative;
	max-width: 1146px;
	margin: -33px auto 0;
	top: -67px;
	z-index: 5;
}

.hero-slider .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 13px;
	width: 33px;
	height: 33px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	padding-top: 7px;
	border-radius: 40px;
	background: #dbe2ec;
}

.hero-slider .owl-dots .owl-dot.active {
	background: #ffb320;
}

/*---------------------
  Latest News section
-----------------------*/

.latest-news-section {
	overflow: hidden;
	display: block;
	clear: both;
	background: #131313;
	padding: 24px 0;
	position: relative;
}

.ln-title {
	position: absolute;
	height: 100%;
	width: 29%;
	left: 0;
	top: 0;
	text-align: right;
	padding-top: 24px;
	padding-right: 66px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	background: #ffb320;
	z-index: 1;
}

.news-ticker {
	width: 71%;
	float: right;
	overflow: hidden;
	display: inline-block;
}

.news-ticker-contant .nt-item {
	margin-right: 35px;
	color: #fff;
	display: inline-block;
}

.news-ticker-contant .nt-item span {
	margin-right: 35px;
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	padding: 4px 20px;
}

.news-ticker-contant .nt-item span.snes {
	background: #ff205f;
}

.news-ticker-contant .nt-item span.gb {
	background: #4eae60;
}

.news-ticker-contant .nt-item span.nes {
	background: #694eae;
}

.news-ticker-contant .nt-item span.gbc {
	background: #40abf5;
}

.news-ticker-contant .nt-item span.n64 {
	background: #aa0651;
}


/*------------------
  Feature Section
---------------------*/

.feature-item {
	height: 415px;
	position: relative;
}

.feature-item:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: .65;
}

.feature-item .cata {
	position: relative;
	margin-top: 28px;
	margin-left: 29px;
	z-index: 3;
}

.feature-item .fi-content {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 0 26px 24px;
	z-index: 2;
}

.feature-item .fi-content h5 {
	margin-bottom: 18px;
}

.feature-item .fi-content .fi-comment {
	font-size: 12px;
	opacity: .54;
}

/*----------------------
  Recent Game Section
------------------------*/

.recent-game-section {
	background-color: #eef2f6;
	border-top: 1px solid #d6dee7;
	border-bottom: 1px solid #d6dee7;
}

.recent-game-item .rgi-thumb {
	height: 204px;
	padding: 25px 28px;
}

.recent-game-item .rgi-content {
	padding: 34px 22px 20px;
	background: #fff;
	border: 1px solid #d6dee7;
	border-top: none;
	position: relative;
}

.recent-game-item .rgi-content h5 {
	margin-bottom: 20px;
	line-height: 1.5;
}

.recent-game-item .rgi-content .comment {
	font-size: 12px;
	color: #737373;
}

.recent-game-item .rgi-extra {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 70px;
}

.recent-game-item .rgi-extra .rgi-star,
.recent-game-item .rgi-extra .rgi-heart {
	height: 35px;
	width: 35px;
	float: left;
	display: block;
	padding: 6px 8px 0;
}

.recent-game-item .rgi-extra .rgi-star {
	background: #ffb320;
}

.recent-game-item .rgi-extra .rgi-heart {
	background: #ff205f;
}

/*----------------------
  Tournaments Section
------------------------*/

.tournaments-section {
	background-image: url("../img/pattern.png");
	background-repeat: repeat;
}

.tournament-title {
	display: inline-block;
	padding: 7px 25px;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	background: #fb6e10;
}

.tournament-item {
	background: #252525;
}

.tournament-item .ti-notic {
	display: inline-block;
	padding: 8px 21px;
	font-size: 12px;
	font-weight: 700;
	color: #131313;
	text-transform: uppercase;
	background: #ffb320;
}

.tournament-item .ti-content {
	padding: 38px 24px;
	overflow: hidden;
}

.tournament-item .ti-thumb {
	width: 168px;
	height: 178px;
	float: left;
}

.tournament-item .ti-text {
	padding-left: 195px;
}

.tournament-item .ti-text h4 {
	color: #ffb320;
	margin-bottom: 20px;
}

.tournament-item .ti-text ul {
	list-style: none;
	margin-bottom: 20px;
}

.tournament-item .ti-text ul li {
	color: #fff;
	font-size: 12px;
	margin-bottom: 6px;
}

.tournament-item .ti-text ul li span {
	color: #9a9a9a;
}

.tournament-item .ti-text p {
	font-size: 12px;
	margin-bottom: 0;
}

.tournament-item .ti-text p span {
	font-weight: 500;
	color: #ffb320;
}

/*----------------------
  Review Section
------------------------*/

.review-section {
  background-position: right top;
  background-image: url(../img/rbg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}


.review-section.pokebg {
  background-image: url(../img/rbg_pokemon.webp)
}

.review-item {
  text-align: center;
  position: relative;
}

.review-item .darrow.big {
  visibility: hidden;
}

.review-item:hover .darrow.big {
  visibility: visible;
}

.review-item .review-cover {
  position: relative;
  height: 200px;
  transition: all 500ms;
  border-top-left-radius: 21px;
}

.review-item .review-cover:hover {
-webkit-filter: saturate(2);
    filter: saturate(2);
}

.review-item .review-cover .score {
	position: absolute;
	width: 54px;
	height: 54px;
	top: -27px;
	left: 26px;
	padding-top: 15px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	z-index: 1;
}

.review-item .review-cover .score.yellow {
	background: #ffb320;
}

.review-item .review-cover .score.purple {
	background: #694eae;
}

.review-item .review-cover .score.pink {
	background: #ff20ae;
}

.review-item .review-cover .score.green {
	background: #4eae60;
}

.review-text {
  text-align: center;
  margin-bottom: 10px;
  background: #8d8d8d;
  z-index: 12;
  height: 72px;
  width: 100%;
  display: table;
}

.review-text h5 {
  display: table-cell;
  vertical-align: middle;
  color: #e4e4e2;
}

.review-item .review-text p {
	margin-bottom: 0;
}

.review-item .rating {
	margin-bottom: 20px;
}

.review-item .rating i {
	font-size: 12px;
}

/*----------------------
  Footer top Section
------------------------*/

.footer-top-section {
	background-image: url("../img/pattern.png");
	background-repeat: repeat;
	padding: 72px 0;
}

.footer-top-section .container {
	position: relative;
}

.footer-top-bg {
	position: absolute;
	left: -30px;
	bottom: -85px;
	z-index: 2;
}

.footer-logo img {
	margin-bottom: 35px;
}

.footer-widget {
	padding: 40px 30px 7px;
	background: #252525;
	border: 1px solid #4a4a4a;
}

.footer-widget .fw-title {
	color: #fff;
	margin-bottom: 40px;
}

.latest-blog .lb-item {
	margin-bottom: 23px;
	overflow: hidden;
}

.latest-blog .lb-item .lb-thumb {
	width: 97px;
	height: 97px;
	float: left;
}

.latest-blog .lb-item .lb-content {
	padding-left: 110px;
}

.latest-blog .lb-item .lb-content .lb-date {
	font-size: 12px;
	color: #ffb320;
	margin-bottom: 8px;
}

.latest-blog .lb-item .lb-content p {
	font-size: 12px;
	margin-bottom: 5px;
	color: #d3d3d3;
}

.latest-blog .lb-item .lb-content .lb-author {
	font-size: 12px;
	color: #d3d3d3;
	opacity: 0.45;
}

.top-comment {
	overflow: hidden;
}

.top-comment .tc-item {
	margin-bottom: 23px;
	overflow: hidden;
}

.top-comment .tc-item .tc-thumb {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.top-comment .tc-item .tc-content {
	padding-left: 100px;
}

.top-comment .tc-item .tc-content p {
	font-size: 12px;
	color: #d3d3d3;
	margin-bottom: 5px;
}

.top-comment .tc-item .tc-content p a {
	color: #ff205f;
}

.top-comment .tc-item .tc-content p span {
	color: #7a7a7a;
}

.top-comment .tc-item .tc-content .tc-date {
	font-size: 12px;
	color: #ffb320;
}

/*----------------------
  Footer Section
------------------------*/

.footer-section {
	padding: 18px 0 16px;
	overflow: hidden;
	background: #252525;
}

.footer-menu {
	list-style: none;
	float: right;
}

.footer-menu li {
	display: inline;
}

.footer-menu li a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: #aeaeae;
	margin-left: 30px;
}

.copyright {
	float: left;
	margin-bottom: 0;
	font-weight: 500;
	color: #aeaeae;
}

/*------------------
  Other Pages
--------------------
====================*/

.page-info-section {
	height: 499px;
	position: relative;
}

.page-info-section .pi-content {
	position: absolute;
	width: 100%;
	bottom: 65px;
	left: 0;
	z-index: 2;
}

.page-info-section .pi-content h2 {
	font-size: 48px;
	margin-bottom: 25px;
	font-weight: 400;
}

.site-pagination {
	padding-top: 50px;
}

.site-pagination a,
.site-pagination span {
	width: 33px;
	height: 33px;
	font-size: 14px;
	font-weight: 500;
	padding-top: 7px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	color: #131313;
	margin-right: 10px;
}

.site-pagination .active {
	background: #ffb320;
}

.site-pagination.sp-style-2 a,
.site-pagination.sp-style-2 span {
	background: #e5e5e5;
}

.site-pagination.sp-style-2 .active {
	background: #ffb320;
}

.widget-item {
	margin-bottom: 73px;
}

.widget-item:last-child {
	margin-bottom: 0;
}

.widget-item .widget-title {
	margin-bottom: 40px;
}

.widget-item .latest-blog .lb-item .lb-content p,
.widget-item .top-comment .tc-item .tc-content p {
	color: #131313;
}

.widget-item .latest-blog .lb-item .lb-content .lb-author {
	color: #737373;
}

.widget-item .top-comment .tc-item .tc-content {
	padding-right: 20px;
}

.widget-item .review-item {
	background: #eff2f5;
}

.widget-item .review-item .review-text {
	padding: 0 35px 20px;
}

.search-widget {
	position: relative;
}

.search-widget input {
	width: 100%;
	height: 41px;
	border: 1px solid #d6dee7;
	padding-left: 22px;
	padding-right: 45px;
	font-size: 12px;
}

.search-widget button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: none;
	border: none;
	padding-right: 15px;
	color: #878787;
	cursor: pointer;
}

.membervote {
}

.votebox {
  margin-bottom: 25px;
  border: 1px solid #acacac;
}

.votebox h2 {
  background: #fff;
  display: block;
  position: relative;
  padding: 10px 5px;
  font-size: 15px;
  text-align: center;
}

.votebox h2 span {
  position: absolute;
  background: #ff205f;
  font-size: 12px;
  color: white;
  padding: 5px;
  right: 3px;
  top: -15px;
}

.votebox h3 {
  background: #828282;
  padding: 10px 2px;
  font-size: 15px;
  color: white;
  text-align: center;
  box-shadow: inset 0px 0px 5px #3a3a3a;
}

.votebox button.votegame {
  background: #ffffff;
  color: black;
  width: 100%;
  border: 0px;
  border-bottom: 2px solid #000;
  cursor: pointer;
  padding: 15px 0px;
  transition: all 300ms;
}

.votebox button.votegameoff {
  background: #515151;
  color: white;
  width: 100%;
  border: 0px;
  border-bottom: 2px solid #000;
  cursor: auto;
  padding: 15px 0px;
  transition: all 100ms;
}

.votebox button.votegame:hover {
  background: #ff205f;
  color: white;
}

.gvotebtn {
  width: 50%;
  background: #fff;
  border: 5px solid #ffb320;
  text-transform: uppercase;
  cursor: pointer;
  color: #0a0a0a;
  padding: 10px 0px;
  top: 25%;
  -ms-transform: translateY(25%);
  transform: translateY(25%);
  margin-bottom: 20px;
}

.gvotebtn.red {
  border: 5px solid #dd4d4d;
}

.gvotebtn.red:hover {
  background: #dd4d4d;
  border: 5px solid #fcc7c7;
  text-transform: uppercase;
  color: white;
}

.gvotebtn.green {
  border: 5px solid #4eae60;
}

.gvotebtn.green:hover {
  background: #4eae60;
  border: 5px solid #d0ffd9;
  text-transform: uppercase;
  color: white;
}

.gvotebtn:hover {
  background: #ffb320;
  border: 5px solid #f2d69e;
  text-transform: uppercase;
  color: white;
}

.nfo {
  background: #717171;
  padding: 10px;
  color: white;
  font-style: italic;
  line-height: 20px;
  text-align: justify;
  border: 1px solid #454545;
}

hr {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.codeinput {
  padding: 10px;
  font-size: 20px;
  border: 6px solid #694eae;
  width: 75%;
  margin: 0 auto;
  display: block;
}

.codebtn {
  background: #ffb320;
  border: 0px;
  padding: 18px 67px 11px;
  font-size: 19px;
  color: white;
  border-bottom: 5px solid #c9890e;
  cursor: pointer;
  width: 75%;
  margin: 0 auto;
  display: block;
  margin-top: 10px;
}

.codebtn:hover {
  background: #dd9e26;
}

.codecircle {
  background: #4eae60;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 10px 3px 0px 0px;
  color: white;
  border: 2px solid #449b54;
}

#curCoins {
  font-style: normal;
}

.codebox {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 600px;
}

.codebox p {
  color: black;
  text-align: center;
}

#coderesult {
  padding: 10px;
  display: block;
  text-align: center;
}

.codeibox {
  padding: 40px 0px 25px 0px;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}

.csub {
  font-size: 20px;
  font-weight: lighter;
  margin-top: 10px;
  color: #666666;
}

/*-----------------
  Categories page
--------------------*/

.recent-game-page .recent-game-item {
	margin-bottom: 42px;
}

/*-----------------
  Single blog page
--------------------*/

.single-blog-page .blog-thumb {
	height: 424px;
	padding-top: 24px;
	padding-left: 29px;
	margin-bottom: 40px;
	position: relative;
}

.single-blog-page .blog-thumb .rgi-extra {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 70px;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-star,
.single-blog-page .blog-thumb .rgi-extra .rgi-heart {
	height: 35px;
	width: 35px;
	float: left;
	display: block;
	padding: 6px 8px 0;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-star {
	background: #ffb320;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-heart {
	background: #ff205f;
}

.single-blog-page .blog-content h3 {
	margin-bottom: 10px;
}

.single-blog-page .blog-content .meta-comment {
	display: block;
	font-size: 12px;
	color: #737373;
	margin-bottom: 25px;
}

.single-blog-page .blog-content p {
	margin-bottom: 25px;
}

.comment-warp {
	padding-top: 50px;
}

.comment-title {
	margin-bottom: 15px;
}

.comment-list {
	list-style: none;
}

.comment-list li {
	margin-bottom: 40px;
	overflow: hidden;
}

.comment-list .comment .comment-avator {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.comment-list .comment .comment-content {
	padding-left: 100px;
}

.comment-list .comment .comment-content h5 {
	font-size: 12px;
	color: #131313;
	font-weight: 400;
	margin-bottom: 10px;
}

.comment-list .comment .comment-content h5 span {
	color: #ffb320;
	padding-left: 18px;
}

.comment-list .comment .comment-content p {
	font-size: 12px;
	margin-bottom: 5px;
}

.comment-list .comment .comment-content .reply {
	font-size: 12px;
	color: #ff1d55;
}

.comment-form-warp {
	padding-top: 30px;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea {
	width: 100%;
	height: 41px;
	border: 1px solid #d6dee7;
	padding-left: 22px;
	padding-right: 45px;
	font-size: 12px;
	margin-bottom: 24px;
}

.comment-form textarea {
	height: 243px;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 38px;
}

/*-----------------
  Review page
--------------------*/

.review-page .review-item {
	margin-bottom: 63px;
}

.review-page .review-item .review-text h4 {
	margin-bottom: 10px;
}

.review-dark .review-item .review-text p {
	color: #b5b5b5;
}

.review-section.review-dark {
	background-position: center top;
}

/*-----------------
  Community page
--------------------*/

.community-page .site-pagination {
	padding-top: 62px;
}

.community-warp {
	max-width: 1367px;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.28);
}

.community-post-list {
	list-style: none;
}

.community-post-list li {
	padding: 33px 55px 65px;
	margin-bottom: 21px;
	overflow: hidden;
	border: 1px solid #878787;
	background: #1f2225;
}

.community-post-list .community-post .author-avator {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.community-post-list .community-post .post-content {
	padding-left: 100px;
}

.community-post-list .community-post .post-content h5 {
	font-size: 16px;
	color: #ff205f;
	font-weight: 400;
	margin-bottom: 10px;
}

.community-post-list .community-post .post-content h5 span {
	color: #7a7a7a;
	padding-left: 18px;
}

.community-post-list .community-post .post-content p {
	color: #fff;
	margin-bottom: 5px;
}

.community-post-list .community-post .post-content .post-date {
	font-size: 12px;
	color: #ffb320;
	margin-bottom: 18px;
}

.community-post-list .attachment-file {
	padding-top: 60px;
	max-width: 435px;
}

.community-top-title {
	margin-bottom: 50px;
}

.community-filter {
	margin-bottom: 80px;
}

.community-filter label {
	font-size: 18px;
	color: #1f2225;
	font-weight: 500;
	padding-right: 10px;
}

.community-filter select {
	width: 201px;
	height: 42px;
	font-size: 14px;
	padding: 0 18px;
	color: #1f2225;
	font-weight: 500;
}

/*-----------------
  Contact page
--------------------*/

.map {
	height: 515px;
	background: #ddd;
	margin-bottom: 90px;
}

.contact-info-list {
	padding-top: 55px;
	padding-bottom: 20px;
	list-style: none;
}

.contact-info-list li {
	margin-bottom: 30px;
}

.contact-info-list .cf-left {
	width: 95px;
	float: left;
	font-size: 16px;
	font-weight: 700;
	color: #ffb320;
}

.contact-info-list .cf-right {
	color: #878787;
	font-size: 15px;
	padding-left: 100px;
}

.social-links a {
	color: #474747;
	font-size: 16px;
	margin-left: 10px;
	margin-right: 20px;
}


#search-box{
  width: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin: 10px 0px 0px 0px;
}

#search-box input[type="text"]{
  padding: 15px;
  border: 2px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
  font-size: 20px;
  position: relative;
}

#search-box span {
  position: absolute;
  right: 13px;
  top: 5px;
  cursor: pointer;
  font-size: 22px;
  color: #ff205f;
}

.result{
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  max-height: 190px;
  overflow-y: auto;
  overflow-x: hidden;
}

#search-box input[type="text"], .result{
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  color: white;
}

.result a{
  margin: 0;
  padding: 7px 10px;
  border: 1px solid #CCCCCC;
  border-top: none;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.result a:hover{
  background: #f2f2f2;
}

.conicon {
  width: auto;
  float: left;
  background: #6f6f6f;
  padding: 1px 10px;
  color: white;
}

.cc_container .cc_btn {
  background-color: #e4e4e4 !important; /* Farbe des Buttons */
  color: #000 !important; /* Textfarbe des Buttons */
}
 
.cc_container {
  color: white !important;
}
 
.cc_container a {
  color: #31a8f0 !important; /* Textlink-Farbe "Mehr Infos" */
}

.cc_container {
  padding: 15px 15px 15px;
  overflow: hidden;
  position: fixed;
  top: -1;
  bottom: 0;
  left: 0;
  right: 0;
}

.moreboxes {
  background: #4078d1;
  padding: 20px;
  color: white;
  width: 100%;
  display: block;
  text-align: center;
  transition: all 200ms;
}

.moreboxes:hover {
  color: white;
  background: #356bc3;
}

.cata.new {
  background: #f33;
}

.scanlines {
  position: relative;
  overflow: hidden;
  width: 100%;
  
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
  
  z-index: 1;
  
}
.scanlines:before, .scanlines:after {
  display: block;
  pointer-events: none;
  content: '';
  position: absolute;
}
.scanlines:before {
  width: 100%;
  height: 2px;
  z-index: 2147483649;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.75;
  -webkit-animation: scanline 6s linear infinite;
          animation: scanline 6s linear infinite;
}
.scanlines:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483648;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
  background-size: 100% 4px;
  -webkit-animation: scanlines 1s steps(60) infinite;
          animation: scanlines 1s steps(60) infinite;
}

/* ANIMATE UNIQUE SCANLINE */
@-webkit-keyframes scanline {
  0% {
    -webkit-transform: translate3d(0, 200000%, 0);
            transform: translate3d(0, 200000%, 0);
  }
}
@keyframes scanline {
  0% {
    -webkit-transform: translate3d(0, 200000%, 0);
            transform: translate3d(0, 200000%, 0);
  }
}
@-webkit-keyframes scanlines {
  0% {
    background-position: 0 50%;
  }
}
@keyframes scanlines {
  0% {
    background-position: 0 50%;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: -6px;
}

ul {
  display: inline-block;
  margin: 0;
  list-style-type: none;
  padding: 0;
}

ul .jpgsmall {
    width: 100%;
    height: 300px;
    border: none;
}

ul .jpg {
  width: 100%;
  height: 650px;
  border: none;
}

.jpg, .jpgsmall {
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
}


.slidertitle {
  background: rgba(0, 0, 0, 0.75);
  width: auto;
  padding: 33px 37px;
  display: inline-block;
  position: absolute;
  text-align: center;
  left: 50%;
  z-index: 2;
  top: 32%;
  transform: translateY(-100%) translateX(-50%);
  border: double rgba(255, 255, 255, 0.75) 6px;
  border-radius: 3px;
}

.fullsizebanner .slidertitle {
  background: rgba(0, 0, 0, 0.75);
  width: auto;
  padding: 33px 37px;
  display: inline-block;
  position: absolute;
  text-align: center;
  left: 50%;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  border: double rgba(255, 255, 255, 0.75) 6px;
  border-radius: 3px;
}

.slidertitle.small {
  top: 71%;
}

#slidersubtitle {
  width: auto;
  display: inline-block;
  position: absolute;
  text-align: center;
  left: 50%;
  z-index: 2;
  top: 42%;
  transform: translateY(-100%) translateX(-50%);
}

div#showarticle-image {
  width: 100%;
  height: 450px;
  background-position: 50%;
  background-repeat: no-repeat;
  border: double rgba(5, 5, 5, 0.75) 10px;
  background-size: 150%;
  transition: all 200ms;
  background-color: #e0e0e0;
}

div#showarticle-image.snes {
  background-position: 57%;
}

img.showarticle-console {
    width: 40px;
}

img.showarticle-console:hover {
  transform: scale(1.1);
  transition: all 200ms;
  cursor: pointer;
}

img.showarticle-lang {
  width: 28px;
  vertical-align: text-top;
  margin-right: 5px;
}

div.showarticle-descblock {
  height: 35px;
  margin-top: 7px;
  padding-left: 15px;
  width: 48%;
  display: inline-block;
}

.showarticle-btn {
  margin-left: 18px;
  width: 92%;
  border: 0px;
  padding: 13px 10px;
  background: #2992d0;
  color: white;
  cursor: pointer;
  transition: background 200ms;
}

.showarticle-btn:hover {
  background: #207fb7;
}

h1.show-articlename span {
  color: #af2fce;
}

#showarticle-box h2 {
  font-size: 18px;
  display: inline-block;
  width: 150px;
}

div#showarticle-box {
  width: 100%;
  height: 450px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #0b0b10;
  border: double rgb(60, 60, 60) 10px;
  background-size: auto;
  padding: 10px;
}

div#showarticle-box.autoheight {
  height: auto !important;
}

span.showarticle-stockinfo {
  position: absolute;
  padding: 4px;
  top: -14px;
  left: 0px;
  right: 0px;
  width: 220px;
  margin: auto;
  text-align: center;
  border: 2px solid #3c3c3c;
  background: #0b0b10;
}

span.showarticle-stockinfo.instock {
  color: #72ff33;
}

span.showarticle-stockinfo.notinstock {
  color: #f33;
}

h1.show-articlename {
  font-size: 22px;
  padding: 10px 0px 18px 0px;
  border-bottom: double rgb(60, 60, 60) 7px;
  word-spacing: -12px;
  margin-bottom: 20px;
}

.darrow {
  transform: scaleY(0.7);
  display: inline-block;
  -webkit-animation: jumparrow 200ms infinite  alternate;
  animation: jumparrow 200ms infinite  alternate;
}

.darrow.big {
  display: inline-block;
  -webkit-animation: jumparrowbig 200ms infinite alternate;
  animation: jumparrowbig 200ms infinite alternate;
  font-size: 23px;
  color: #fff;
  text-shadow: 3px 1px 0px #202020;
}

.boxconsole {
  position: absolute;
  width: 40px !important;
  z-index: 99;
  top: 37px;
  left: 3px;
  background: #1f1f1f;
  border-radius: 50px;
  padding: 2px;
  transition: all 500ms;
  border: 2px solid #e0e0e0;
  cursor: default !important;
}

.boxconsole:hover {
  transform: scale(1.2);
}

#slidersubtitle h3 {
  font-size: 20px;
  text-shadow: 2px 1px 0px black;
}

.slidertitle h1, .slidertitle h2 {
  color: white;
}

.slidertitle h1 {
  font-size: 32px;
  word-spacing: -15px;
  line-height: 45px;
}

.slidertitle h2 {
  font-size: 16px;
}

h2 i {
  font-style: normal;
  color: #eb2a3d;
}

.actionboxes {
  background-repeat: no-repeat;
  height: auto;
  padding: 0;
  margin: 0;
}

.actionboxes img {
  width: 100%;
  padding: 1px;
}

.actionboxes img:hover {
  padding: 0px;
  border: 1px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
}

.owl-prev {
  float: left;
}

.owl-next {
  float: right;
}

img.olnav, img.ornav {
  width: 50px;
}

img.olnav:hover, img.ornav:hover {
  transform: scale(0.9);
  -webkit-filter: contrast(1.2);
  filter: contrast(1.2);
}

span.boxprice {
  position: absolute;
  right: 0px;
  top: 34px;
  z-index: 1;
  font-size: 18px;
  background: #39fa93;
  text-shadow: 1px 1px 0px #000;
  padding: 3px 18px;
  color: #ffffff;
  border-bottom-left-radius: 13px;
  border-left: 2px solid #37cc7c;
  border-bottom: 2px solid #1fa55e;
  letter-spacing: -2px;
}

.section-title h2.show-articlename {
  padding-top: 10px;
  font-size: 23px;
}

.section-title.showbox {
  margin-bottom: 35px;
}

.section-title.showbox h2 {
  font-size: 32px;
}

span.boxprice i {
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 1px;
}

h3#showarticle-price {
  padding: 10px;
  margin: 5px 0px 5px 18px;
}

h3#showarticle-coins {
  padding: 10px;
  margin: 5px 18px 5px 0px;
  display: none !important;
}

h3#showarticle-coins img {
  width: 23px;
  margin-left: 10px;
}

h3#showarticle-coins span {
  color: #ffce36;
}

h3#showarticle-price, h3#showarticle-coins {
  width: 36%;
  font-size: 21px;
  display: inline-block;
}

img.showarticle-isshiny {
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 15px;
  cursor: help;
}

#scart-trigger {
  background-image: url(../img/scart.webp);
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: 50% 50%;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #131313;
  border: 2px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
  border-radius: 2px;
  z-index: 3;
  box-shadow: 0px 0px 30px #000;
  transform: scale(1);
  animation: pulse 2s infinite;
  cursor: pointer;
}

#scart-trigger span {
  background: #eb2a3d;
  padding: 5px;
  color: white;
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  font-size: 11px;
  line-height: 19px;
  border-radius: 50px;
  position: absolute;
  left: -10px;
  top: -10px;
}

div#scart-window {
  display: none;
  position: fixed;
  width: 30%;
  height: 100%;
  top: 0px;
  right: 0px;
  background: #3a3a3a;
  z-index: 998;
  padding: 15px;
  border: double rgb(224, 224, 224) 6px;
  box-shadow: -100px 0px 100px #000;
}

div#scart-window.show {
  opacity: (0);
  display: block;
  animation: fadeIn 500ms;
  animation-iteration-count: 1;
}

span#scart-close {
  float: right;
  margin: -2px 5px 0px 0px;
}

span#scart-close:hover {
  color: #f33;
  cursor: pointer;
}

span.scart-item {
  display: block;
  background: #303030;
  width: 100%;
  position: relative;
  padding: 8px;
  margin: 5px 0px;
  border-bottom: 1px solid #e0e0e0;
}

.scart-item i {
  position: absolute;
  right: 0px;
  bottom: 0px;
  min-width: 82px;
  font-size: 12px;
  text-align: right;
  padding: 5px;
  color: #ddd;
  font-style: normal;
}

.scart-item-img {
  width: 120px;
  height: 90px;
  background-size: 160%;
  background-position: 58%;
  display: inline-block;
  border-radius: 1px;
}

.scart-item-img:hover {
  border: 2px solid transparent;
    border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
    border-image-slice: 1;
}

.scart-item h2 span {
  color: #2992d0;
}

div#scart-window h2 {
  font-size: 16px;
  width: 382px;
  height: 49px;
  overflow: auto;
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 140px;
}

div#scart-window h1 {
  font-size: 26px;
  background: #292929;
  padding: 10px;
}

div#scart-content {
  max-height: 70%;
  overflow-y: auto;
  overflow-x: hidden;
}

.scart-total {
  padding: 15px;
  color: white;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  margin: 5px 0px 20px 0px;
  text-align: right;
}

.scart-total span {
  color: aquamarine;
}

.scart-total i {
  font-style: normal;
  font-size: 12px;
}

.scart-total i img {
  width: 24px;
  cursor: pointer;
}

.scart-total i img:hover {
  filter: contrast(1.8);
}

#hoverinfomodal, .universalinfo {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
  padding: 20px;
  background: #2a2a2a;
  width: 300px;
  height: auto;
  box-shadow: 0px 0px 30px 1000px rgba(0, 0, 0, 0.95);
}

.universalinfo {
  width: auto !important; 
}

.universalinfo span {
  margin-bottom: 5px;
}

.universalinfo input[type=submit] {
  border: 0px;
  padding: 10px 20px;
  font-size: 18px;
  margin: 10px 0px;
  background: #3389ff;
  color: white;
  cursor: pointer;
  width: auto;
}

.universalinfo input[type=submit]:hover {
  background: #2779ea;
}

#hoverinfomodal p, .universalinfo p {
  color: white;
  margin-top: 20px;
  font-size: 13px;
}

#hoverinfomodal form, .universalinfo form {
  padding: 10px;
  display: grid; 
  color: white;
}

#hoverinfomodal form input[type="file"], .universalinfo form input[type="file"] {
  padding: 10px;
  border: 0px;
  font-size: 13px;
  overflow: hidden;
}

.scart-total hr {
  width: 100%;
  height: 1px;
  overflow: hidden;
  border: 0px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to bottom left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #0ee9ff 75%, #fd1892 100%);
  border-image-slice: 1;
  position: relative;
}

.scart-change-amount {
  background: #535353;
  border-radius: 50px;
  padding: 0px 4px;
  cursor: pointer;
  margin-right: 10px;
}

.scart-change-amount:hover {
  background: #2992d0;
}

#scart-checkout-btn {
  width: 50%;
  height: 50px;
  margin-top: 5px;
  border: 0px;
  background: #2992d0;
  color: white;
  cursor: pointer;
}

.universal-btn-blue {
  border: 0px;
  background: #2992d0;
  color: white;
  cursor: pointer;
}

.universal-btn-blue:hover {
  background: #2781b5;
}

.scart-optionwindow {
  font-size: 24px;
  width: 382px;
  height: 33px;
  position: absolute;
  z-index: 2;
  top: 70px;
  left: 140px;
  color: white;
}


#scart-checkout-stepper {
  width: 100%;
}

.scart-next-step {
  border: 0px;
  padding: 13px 10px;
  background: #2992d0;
  color: white;
  cursor: pointer;
  transition: background 200ms;
  float: right;
}

.scart-next-step:hover, .bluebtn:hover {
  background: #207fb7;
}

.scart-checkstep-login, 
.scart-checkstep-guest,
.scart-checkstep-nextafteradress,
.bluebtn {
  border: 0px;
  padding: 13px 10px;
  background: #2992d0;
  color: white;
  cursor: pointer;
  transition: background 200ms;
  min-width: 65%;
}

.greybtn {
  border: 0px;
  padding: 13px 10px;
  background: #7c7c7c;
  color: white;
  cursor: pointer;
  transition: background 200ms;
  min-width: 65%;
}

.scart-checkstep-nextafteradress {
  margin-top: 10px;
  width: 100%;
}

.scart-checkstep-guest {
  background: #3e3e3e;
}

.scart-checkstep-login:hover {
  background: #207fb7;
}

.scart-checkstep-guest:hover {
  background: #4a4a4a;
}

.scart-login-wrapper {
  display: block;
  padding: 20px;
  border: double rgb(60, 60, 60) 10px;
  color: white;
  text-align: left;
  font-family:verdana;
}

#scart-checkadress {
  position: absolute;
  z-index: 99;
  padding: 0px;
}

#scart-checkadress button {
  width: 100%;
  margin-top: 10px;
}

#paypal-button-container {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.scart-step-box {
  display: none;
}

#searchblob {
  position: fixed;
  z-index: 9;
  background: rgba(0, 0, 0, 0.98);
  width: 100%;
  height: 100%;
  top: 0px;
  padding: 10px;
  text-align: center;
}

.scart-step-box {
  position: fixed;
  z-index: 9;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0px;
  /* padding: 60px 10px 10px 10px; */
  text-align: center;
}

#scart-finish-buy {
  background: #f2e5d9;
}

#scart-finish-buy h2 {
  color: #585858;
}

#scart-finish-buy p {
  color: #616161;
}


#searchblob h2, .scart-step-box h2 {
  font-size: 22px;
}

#searchblob input[type="text"] {
  padding: 15px;
  font-size: 20px;
  margin: 30px 10px 10px 10px;
}

#searchblob .wrapper, .scart-step-box .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#searchblob .close, .scart-step-box .close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 99;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #000000;
  opacity: 1;
}

#searchblob .close:hover, .scart-step-box .close:hover {
  color: #e54040 !important;
}

.housegif {
  margin-bottom: 15px;
}


.scart-step-box .innerwrapper {
  width: 70%;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.scart-step-box .innerwrapper p {
  text-align: justify;
  margin: 10px 0px 30px 0px;
}

.scart-login-or-guest {
  min-width: 65%;
  display: block;
}

#scart-member-adress small {
  width: 100%;
  display: block;
  text-align: left;
  color: #33ff92;
  margin-top: 10px;
}

#scart-member-adress small span {
  color: #f87781;
  font-size: 9px;
  display: block;
}

#scart-member-adress input {
  width: 100%;
}

#searchblob ul#searchresult {
  display: block;
  list-style: none;
  margin: 0 auto;
}

#searchblob ul#searchresult li {
  display: block;
  float: left;
  transition: filter 100ms;
}

#searchblob ul#searchresult li:hover {
  filter: contrast(1.1);
}

#searchblob ul#searchresult li img {
  height: auto;
}

#searchblob #resultwrapper {
  overflow-y: hidden;
  overflow-x: auto;
  width: 700px;
  height: 350px;
}

.boxresultitem {
  position: relative;
}

.boxresultitem h3 {
  width: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  text-align: center;
  color: #fff;
  background: #474747;
  font-size: 12px;
  padding: 3px 0px;
  font-weight: lighter;
  word-spacing: -7px;
}

.sfcon {
  -webkit-animation: jumpicon 1s infinite alternate;
    animation: jumpicon 1s infinite alternate;
}

.fullsizebanner, .smallsizebanner {
  width: 100%;
  height: 450px;
  background-position: 0;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
}

.fullsizebanner a{
  display: inline-block;
  position: relative;
  background: #0b0b0b;
  padding: 3px;
  border: double;
  filter: grayscale(1);
  color: #f33;
  width: 90px;
  margin: 5px auto;
}


.fullsizebanner a:hover {
  filter: grayscale(0);
}

.fullsizebanner a span {
  display: block;
  font-size: 12px;
}

.fullsizebanner a img {
  width: 64px;
}

.smallsizebanner.small {
  text-align: center;
}


.instabox {
  position: absolute;
  text-align: center;
  left: 50%;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 5px;
  transition: all 500ms;
}

.instabox:hover {
  background: rgba(147, 0, 255, 0.6);
  border-radius: 10px;
}

.smallsizebanner img {
  width: 50px;
}

.smallsizebanner span {
  color: white;
}


.interactivelist {
  height: 90%;
  width: 100%;
  margin: 50px auto;
  text-transform: uppercase;
  justify-content: center;
  text-align: center;
}

.interactivelist .gameconsole-option {
  align-content: center;
  text-align: center;
}

.interactivelist .selcon {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  margin: 5px;
  cursor: pointer;

}

.interactivelist .selcon:hover {
  border-bottom: 4px solid #f33;
  height: 54px;
  margin-top: 0px;
}

.interactivelist .selcon.sel {
  border-bottom: 4px solid #f33;
  height: 54px;
  margin-top: 0px;
}


.interactivelist .selcon.gb {
  background-image: url(../img/icons/ico_gb.webp);
}

.interactivelist .selcon.gbc {
  background-image: url(../img/icons/ico_gbc.webp);
}

.interactivelist .selcon.gba {
  background-image: url(../img/icons/ico_gba.webp);
}

.interactivelist .selcon.nes {
  background-image: url(../img/icons/ico_nes.webp);
}

.interactivelist .selcon.snes {
  background-image: url(../img/icons/ico_snes.webp);
}

.interactivelist .selcon.n64 {
  background-image: url(../img/icons/ico_n64.webp);
}

.interactivelist h2 {
    margin-bottom:10px;
    font-family: 'Roboto', sans-serif;
    font-size:3em;
    font-weight: 900;
    color:#fff;
}

.interactivelist input {
    width: 100%;
    height: 50px;
    font-weight: 400;
    border: 0;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    padding-left:10px;
    font-size:1.3em;
}

.interactivelist button {
    width: 20%;
    height: 50px;
    font-weight: 600;
    background:#FAFAFA;
    color:#2E282A;
    outline: none;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size:1.3em;
    transition: all 0.33s ease;
}

.interactivelist button:hover{
    background:#2E282A;
    color:#FAFAFA;
    cursor: pointer;
}

.interactivelist input:focus::-webkit-input-placeholder {
    opacity:0
}

.interactivelist ul {
  padding:0;
  font-family: 'Montserrat', sans-serif;
  margin-top:25px;
  width: 100%;
  overflow: auto;
}


.livesearchlist {
  padding: 0;
  margin-top: 25px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  left: 0px;
  top: 26px;
  z-index: 10;
  background: #fff;
  border: 0px;
  width: 100%;
  opacity: 0.8;
}

.livesearchlist li {
  font-size: 12px;
  width: 100% !important;
}

.livesearchlist li:hover {
  background: #919191;
  color: white;
}

.interactivelist ul li{
  padding: 5px 10px;
  font-family: 'Montserrat', sans-serif;
  list-style: none;
  text-transform: none;
  text-align: left;
  height: 35px;
  font-weight: 600;
  background: #fff;
  color: #2E282A;
  outline: none;
  position: relative;
  width: 30%;
  white-space: nowrap;
  margin: 0 auto;
}

.profile-collected-gamelist li:hover {
  background: #efffcb;
}

.profile-collected-gamelist img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  float: left;
}

.interactivelist li i{
  width:20px;
  height: 20px;
  float: right;
  font-style: normal;
  text-transform: lowercase;
  position: absolute;
  right:7px;
  background: #2E282A;
  color:#FAFAFA;
  font-size: 12px;
  border-radius: 999px;
  transition: all 0.33s ease;
}

.interactivelist li i:hover{
  cursor: pointer;
  background: #E6AF2E;
}

.interactivelist li p{
  outline: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  color: #626262;
  font-size: 13px;
  overflow: hidden;
}

.interactivelist li p:hover {
  color: #2c2c2c;
}

.interactivelist li:hover{
    cursor: pointer;
}

.interactivelist li i span{
  position: relative;
  top: 3px;
  left: 5px;
}

.interactivelist .inputcontainer {
  width: 420px;
  display: block;
  position: relative;
  margin: 0 auto;
}



/* CHECK OUT ----------------------- */

.checkout-item {
  background: #e0e0e0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to bottom left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #0ee9ff 75%, #fd1892 100%);
  border-image-slice: 1;
  position: relative;
}

.checkout-item img {
  height: 100%;
  width: auto;
  transition: filter 100ms;
  cursor: zoom-in;
  float: left;
}

.checkout-item img:hover {
  filter: contrast(1.2);
}

#checkout-zoombox, .universalbox {
  z-index: 999;
  padding: 10px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #e1e1e1;
  display: none;
}

#checkout-zoombox img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
}

#checkout-zoombox .close, .universalbox .close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 99;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #000000;
  opacity: 1;
}

#checkout-zoombox h2, .universalbox h2 {
  position: absolute;
  color: white;
  z-index: 2;
  font-size: 16px;
  background: #0d0d0d;
  padding: 20px 0px;
  width: 100%;
  text-align: center;
  bottom: 0px;
  left: 0px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
}

#checkout-zoombox .close:hover, .universalbox .close:hover {
  color: #e54040;
}

.checkout-iteminfos {
  position: absolute;
  top: 50%;
  left: 160px;
  transform: translate(0, -50%);
}

h3.checkout-subtext {
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 10px 5px;
}

span.checkout-item-price {
  color: #973ffc;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.walkingmario {
  width: 45px;
  position: absolute;
  bottom: 0px;
  
  -webkit-animation: mariowalk 15s linear infinite; 
  animation: mariowalk 15s linear infinite;
}

@keyframes mariowalk {
  0% {left:-5%}
  100% {left: 105%}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1}
}


@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/*--------- Header Box Slider --------- */


@-webkit-keyframes jumpicon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes jumpicon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@-webkit-keyframes jumparrow {
    0% { transform: translateY(3px) scaleY(0.7); }
    100% { transform: translateY(-3px) scaleY(0.8); }
}
@keyframes jumparrow {
    0% { transform: translateY(3px) scaleY(0.7); }
    100% { transform: translateY(-3px) scaleY(0.8); }
}

@-webkit-keyframes jumparrowbig {
    0% { transform: translateY(3px) }
    100% { transform: translateY(-3px) }
}
@keyframes jumparrowbig {
    0% { transform: translateY(3px) }
    100% { transform: translateY(-3px) }
}



/*--------- Profile  --------- */


.content-profile-page {
  margin: 1em auto;
  width: 100%;
  box-shadow: 0px 51px 23px -17px #000;
}


.content-profile-page .title-image, .content-profile-page .other-title-image {
  width: 100%;
  height: 300px;
  background: #fff;
  background-size: cover;
  background-position: 50% 50%;
}

.content-profile-page .profile-image,  .content-profile-page .other-profile-image{
  margin: 0 auto;
  background: #fff;
  width: 10em;
  height: 10em;
  padding: 0.25em;
  border-radius: 0.4em;
  margin-top: -7em;
  border: 8px solid white;
  background-size: cover;
  -webkit-animation: jumpicon 1s infinite alternate;
  animation: jumpicon 1s infinite alternate;
  box-shadow: 0px 19px 14px -9px #b8b8b8;
}

.content-profile-page .profile-image:hover, 
.content-profile-page .title-image:hover {
  cursor: pointer;
  filter: blur(2px);
}

.profile-user-page {
  background: #fff;
  border-radius: 0.3rem;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border: .1em solid rgba(0, 0, 0, 0.2);
  margin-bottom: 1em; 
}

.profile-user-page .img-user-profile {
	margin: 0 auto;
  text-align: center; 
}

.profile-user-page .img-user-profile .profile-bgHome {
	border-bottom: .2em solid #f5f5f5;
  width: 44.23em;
  height: 16em;
  }



.profile-user-page button {
	position: absolute;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  width: 7em; 
  background: #3498db;
  border: 1px solid #2487c9;
  color: #fff;
  outline: none;
  border-radius: 0 .6em .6em 0;
  padding: .80em;
}

.profile-user-page button:hover {
  background: #51a7e0;
  transition: background .2s ease-in-out;
  border: 1px solid #2487c9;
}

.profile-user-page .user-profile-data, .profile-user-page .description-profile {
  text-align: center;
  padding: 0 1.5em; 
}

.profile-user-page .user-profile-data h1 {
  margin-top: 0.1em;
  color: #292f33;
  margin-bottom: 0; 
  font-size: 55px;
}

.profile-user-page .user-profile-data p {
  color: #8899a6; 
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 0.5em; 
}
.profile-user-page .description-profile {
  color: #75787b;
  font-size: 0.98em;
  display: block;
  width: 60%;
  margin: 20px auto 20px auto;
  background: #dbdbdb;
  padding: 10px;
  border-radius: 5px;
  cursor:pointer;
}

.profile-user-page .description-profile:hover { 
  background: #c3c3c3;
}

.profile-user-page .description-profile.nohover:hover { 
  background: #dbdbdb !important;
  cursor: default !important;
}

.profile-user-page .data-user {
  margin-bottom: 0;
  cursor: pointer;
  padding: 0;
  list-style: none;
  display: table;
  width: 100.15%; 
}
.profile-user-page .data-user li {
  margin: 0;
  padding: 0;
  width: 33.33334%;
  display: table-cell;
  text-align: center;
  border-left: 0.1em solid transparent; 
}
.profile-user-page .data-user li:first-child {
  border-left: 0; 
}
.profile-user-page .data-user li:first-child a {
  border-bottom-left-radius: 0.3rem; 
  }
.profile-user-page .data-user li:last-child a {
  border-bottom-right-radius: 0.3rem; 
}
.profile-user-page .data-user li a, .profile-user-page .data-user li strong {
  display: block; 
}
.profile-user-page .data-user li a {
  background-color: #f7f7f7;
  border-top: 1px solid rgba(242,242,242,0.5);
  border-bottom: .2em solid #f7f7f7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4),0 1px 1px rgba(255,255,255,0.4);
  padding: .93em 0;
  color: #46494c; 
}
.profile-user-page .data-user li a strong, .profile-user-page .data-user li a span {
  font-weight: 600;
  line-height: 1; 
}
.profile-user-page .data-user li a strong {
  font-size: 2em; 
}
.profile-user-page .data-user li a span {
  color: #717a7e; 
}
.profile-user-page .data-user li a:hover {
  background: rgba(0, 0, 0, 0.05);
  border-bottom: .2em solid #3498db;
  color: #3498db; 
}
.profile-user-page .data-user li a:hover span {
  color: #3498db; 
}

.profile-user-page .data-user img {
  height: 30px;
  margin-right: 5px;
}

.profile-user-public-link {
  padding: 5px;
  background: #0d0d0d;
  border-radius: 5px;
  margin: 32px 0px 0px 0px;
  text-align: center;
  color: white;
  border: 1px solid #000000;
}

.profile-user-public-link span { 
  background: #59aa3e;
  padding: 5px;
  border-radius: 5px;
  margin-right: 10px;
}

.profile-user-public-link a {
  text-decoration: none;
  color: #3f6;
}

.profile-user-public-link a:hover {
  color: #21c94b;
}



.profile-setbox {
  background: #fff;
  padding: 30px 25px;
  box-shadow: 0px 51px 23px -17px #000;
  border-radius: 6px;
  margin: 1em auto;
  position: relative;
}

.profile-setbox-icon {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -30px;
  left: 0px;
  background-color: white;
  border-radius: 6px;
  display: block;
}

.profile-setbox-formcontainer {
  width: 32%;
  margin: 1% 0 1% 0;
  display: inline-block;
}

.profile-setbox-formcontainer small {
  display: block;
  font-size: 13px;
  font-family: sans-serif;
}

.profile-setbox-formcontainer input,
.profile-setbox-formcontainer select{
  padding: 10px;
  width: 100%;
  font-family: verdana;
}

.profile-setbox p {
  color: #4f4f4f;
  font-family: verdana;
  background: #fcf8e3;
  display: block;
  margin: 0 auto;
  padding: 10px;
  font-size: 15px;
}

.profile-setbox ul {
  display: block;
  padding: 5px;
}

.profile-setbox ul li {
  background-color: #e0e0e0;
  border-bottom: 2px dotted #000000;
  margin-bottom: 20px;
}

.profile-setbox ul li span {
  display: block;
  padding: 5px;
  background: #d7d7d7;
  position: relative;
}

.profile-setbox ul li span i {
  position: absolute;
  right: 10px;
}

.profile-setbox ul li span i b {
  color: #1cba75;
  font-weight: 100;
}

#allorders {
  max-height: 630px;
  overflow: auto;
}

form#reg-form label, form#login-form label   {
  color: white;
  font-size: 12px;
}

form#login-form input, form#reg-form input {
  font-family: sans-serif;
  font-size: 1rem;
}



.order-listimg {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 200% auto;
  width: 10%;
  height: 85px;
  background-position: 50% 50%;
  margin: 5px;
  background-color: #e0e0e0;
  position: relative;
}

.order-listimg.n64, .order-listimg.snes {
  background-size: 162% auto;
  background-position: 59% 50%;
}

.order-listimg:hover {
  filter: contrast(1.2);
  cursor: zoom-in;
}

.order-listimg i {
  position: absolute;
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50px;
  text-align: center;
  vertical-align: middle;
  font-size: 11px;
  background: #363636;
  color: white;
  right: -2px;
  bottom: -2px;
  font-family: verdana;
  font-style: normal;
}

.order-listimg.gb {
  background-size: 200% auto;
}

.order-listimg.inlay {
  background-size: 100% auto;
}

#profile-save-userdata {
  border: 0px;
  padding: 10px 20px;
  font-size: 18px;
  margin: 10px 0px;
  background: #3389ff;
  color: white; 
  cursor: pointer;
  width: auto;
  font-family: sans-serif;
}



#profile-save-userdata:hover {
  background: #367dde;
}

/*------------------









  Responsive









---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1176px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  ul .jpgsmall {
    background-size: cover;
  }

	.main-menu {
		margin-right: 90px;
	}
	.hero-slider .owl-dots {
		max-width: 930px;
	}
	.review-section {
		background-position: right 10% top;
	}
	.review-item .review-cover {
		height: 280px;
	}
	.latest-blog .lb-item .lb-thumb {
		width: 55px;
		height: 55px;
	}
	.latest-blog .lb-item .lb-content {
		padding-left: 67px;
	}
	.top-comment .tc-item .tc-content {
		padding-left: 95px;
	}
	.footer-top-bg {
		max-width: 370px;
	}
	.page-info-section .pi-content h2 {
		font-size: 50px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {

  ul .jpgsmall {
    background-size: cover;
  }
  
  .slidertitle {
    left: 30%;
    transform: translateY(-100%) translateX(-20%);
}
  
  .slidertitle h1 {
    font-size: 25px;

}
  
	.site-logo {
		max-width: 130px;
	}
	.main-menu {
		margin-right: 25px;
	}
	.main-menu ul li a {
		margin-left: 15px;
	}
	.user-panel {
		padding: 8px 15px;
	}
	.hero-slider .hs-text h2 {
		font-size: 50px;
	}
	.hero-slider .owl-dots {
		max-width: 690px;
	}
	.recent-game-item {
		margin-bottom: 42px;
	}
	.tournament-item .ti-thumb {
		width: 100%;
		height: 230px;
		float: none;
	}
	.tournament-item .ti-text {
		padding-left: 0;
		padding-top: 20px;
	}
	.review-section {
		background-position: left top;
	}
	.review-item {
		margin-bottom: 63px;
	}
	.footer-logo {
		margin-bottom: 50px;
	}
	.latest-blog .lb-item .lb-thumb {
		width: 80px;
		height: 80px;
	}
	.latest-blog .lb-item .lb-content {
		padding-left: 95px;
	}
	.footer-top-bg {
		display: none;
	}
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
  
  .footer-menu li a {
    margin-left: 0px;
  }
  
  .footer-menu li {
    display: block;
    text-align: left;
  }
  
  .instabox {
    width: 100%;
  }
  
  .smallsizebanner img {
    width: 30px;
  }

  #checkout-zoombox h2, .universalbox h2 {
    font-size: 14px;
    font-family: monospace;
  }
  
  .universalinfo { 
    width: 95% !important;
    font-size: 13px;
  }
  
  .spad {
    padding-top: 47px;
    padding-bottom: 47px;
  }
  
  .profile-setbox p {
    font-size: 11px;
  }
  
  .profile-setbox-icon {
    display: none;
  }
  
  #profile-save-userdata {
    width: 100%;
  }

  .codebox {
    width: 90%;
  }
  
  .codebox p {
    width: 95%;
  }

  .codebtn {
    padding: 18px 58px 15px;
    font-size: 15px;
    width: 100%;
    margin-top: 6px;
  }
  
  .codeinput {
    width: 100%;
  }
  
  .codebox p {
    font-size: 11px;
    text-align: center;
  }
  
  #coderesult {
    padding: 10px;
    display: block;
    font-size: 13px;
    text-align: center;
  }
  
  .profile-setbox {
    background: #fff;
    padding: 20px 10px;
    box-shadow: 0px 51px 23px -17px #000;
    border-radius: 6px;
    margin: 1em auto;
    position: relative;
}
  
  .profile-setbox ul li span i {
    left: 5px;
    top: 17px;
  }
  
  .profile-setbox ul li span {
    padding: 5px 5px 15px 5px;
  }
  
  .order-listimg {
    width: 28%;
  }
  
  .profile-setbox-formcontainer {
    width: 100%;
  }
  
  .profile-setbox-formcontainer small {
    display: block;
    font-size: 10px;
    margin-top: 10px;
  }
  
  .profile-setbox ul li span {
    font-size: 9px;
  }
  
  .content-profile-page .title-image {
    height: 210px;
  }
  
  .interactivelist {
    width: 100%;
    height: 85%;
  }
  
  .interactivelist .selcon {
    width: 34px;
    height: 34px;
    margin: 2px;
  }
  
  .interactivelist .selcon.sel {
    height: 37px;
  }
  
  .profile-user-page .description-profile {
    width: 96%;
    font-size: 0.78em;
  }
  
  .profile-user-public-link {
    font-size: 14px;
    font-family: monospace;
  }
  
  .profile-user-page .user-profile-data h1 {
    margin-top: 0.5em;
    color: #292f33;
    margin-bottom: 0;
    font-size: 17px;
  }
  
  .interactivelist .inputcontainer {
    width: 100%;
  }
  
  .interactivelist ul {
    overflow: auto;
  }
  
  .interactivelist ul li {
    width: 100%;
    display: block;
    margin: 5px 0px;
    overflow: hidden;
  }
  
  .interactivelist li p {
    font-size: 11px;
  }
  
  .profile-user-page .data-user li a strong {
    font-size: 1em;
  }
  
  .profile-user-page .data-user li a span {
    font-size: 12px;
  }
  
  #checkout-zoombox img {
    height: auto;
  }
  
  #showarticle-box .form {
    font-size: 13px;
  }
  
  #paypal-button-container {
    width: 90%;
  }
  
  .scart-login-wrapper {
    font-size: 11px;
    padding: 15px;
  }
  
  #scart-member-adress {
    font-size: 15px;
  }
  
  #scart-member-adress small {
    margin-top: 6px;
  }
  
  .housegif {
    width: 150px;
    margin-bottom: 5px;
  }
  
  .scart-step-box .innerwrapper {
    width: 100%;
  }
  
  .scart-login-or-guest {
    display: block;
  }
  
  .scart-checkstep-login, 
  .scart-checkstep-guest,
  .scart-checkstep-nextafteradress,
  .bluebtn,
  .greybtn {
    width: 90%;
    display: block;
    margin: 0 auto;
    font-size: 12.5px;
  }
  
  .scart-checkstep-nextafteradress {
    width: 100%;
    margin-top: 15px;
  }
  
  .scart-next-step {
    border: 0px;
    padding: 13px 10px;
    background: #2992d0;
    color: white;
    float: none;
    margin: 0 auto;
    display: block;
    font-size: 15px;
  }
  
  .scart-step-box .wrapper {
    width: 90%;
  }
  
  .scart-step-box p {
    font-size: 9px;
  }
  
  #scart-adresstocheck {
    font-size: 13px;
  }
  
  .section-title.showbox h2 {
    font-size: 15px;
}
  
  .fullsizebanner a {
    width: 70px;
  }
  
  .checkout-iteminfos {
    left: 130px;
    font-size: 12px;
  }
  
  ul .jpgsmall {
    background-size: cover;
  }
  
  #searchblob h2 {
    font-size: 18px;
}
  
  .scart-optionwindow {
    font-size: 28px;
    width: 228px;
    height: 40px;
    position: absolute;
    z-index: 2;
    top: 55px;
    right: 10px;
    color: white;
  }
  
  .scart-change-amount {
    background: #535353;
    border-radius: 50px;
    padding: 0px 5px;
    cursor: pointer;
    margin-right: 15px;
  }

  div#scart-content {
    max-height: 68%;
  }
  
  div#scart-window h2 {
    font-size: 14px;
    width: auto;
    height: auto;
    font-family: monospace;
    display: block;
  }
  
  .scart-item i {
    font-family: monospace;
  }
  
  
  div#scart-window {
    width: 100%;
  }
  
  div.showarticle-descblock {
    width: 100%;
    display: block;
  }
  
  .showarticle-btn {
    margin-left: 15px;
    margin-top: 10px;
    width: 91%;
  }
  
  h3#showarticle-price, h3#showarticle-coins {
    width: 60%;
    font-size: 15px;
    display: inline-block;
    margin: 2px 0px 1px 10px;
  }
  
  #slider label {
    width: 250px;
    height: 250px;
  }
  
  #s1:checked ~ #slide4, #s2:checked ~ #slide5,
  #s3:checked ~ #slide1, #s4:checked ~ #slide2,
  #s5:checked ~ #slide3 {
    transform: translate3d(-150%,0,-200px);
    width: 149px;
    height: 149px;
    box-shadow: 1000px 1000px transparent;
    -webkit-filter: blur(7px);
            filter: blur(7px);
  }

  #s1:checked ~ #slide5, #s2:checked ~ #slide1,
  #s3:checked ~ #slide2, #s4:checked ~ #slide3,
  #s5:checked ~ #slide4 {
    transform: translate3d(-90%,0,-100px);
    width: 199px;
    height: 199px;
    box-shadow: 1000px 1000px transparent;
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }

  #s1:checked ~ #slide1, #s2:checked ~ #slide2,
  #s3:checked ~ #slide3, #s4:checked ~ #slide4,
  #s5:checked ~ #slide5 {
    transform: translate3d(0,0,0);

    -webkit-animation: jumpicon 1s infinite  alternate;
    animation: jumpicon 1s infinite  alternate;
  }

  #s1:checked ~ #slide2, #s2:checked ~ #slide3,
  #s3:checked ~ #slide4, #s4:checked ~ #slide5,
  #s5:checked ~ #slide1 {
    transform: translate3d(90%,0,-100px);
    width: 199px;
    height: 199px;
    box-shadow: 1000px 1000px transparent;
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }

  #s1:checked ~ #slide3, #s2:checked ~ #slide4,
  #s3:checked ~ #slide5, #s4:checked ~ #slide1,
  #s5:checked ~ #slide2 {
    transform: translate3d(150%,0,-200px);
    width: 149px;
    height: 149px;
    box-shadow: 1000px 1000px transparent;
    -webkit-filter: blur(7px);
            filter: blur(7px);
  }

  #s1:checked ~ #slide1:hover, #s2:checked ~ #slide2:hover, #s3:checked ~ #slide3:hover, #s4:checked ~ #slide4:hover, #s5:checked ~ #slide5:hover {
    transition: all 200ms;
    -webkit-filter: none;
    filter: none;
  }
  
  div#showarticle-box {
    height: auto;
  }
  
  .inputGroup {
    background-color: #fff;
    display: block;
    margin: 10px 0;
    position: relative;
    width: 100%;
  }
  
  .jpg, .jpgsmall {
    background-size: cover;
    background-position: 50%;
  }
  
  .slidertitle {
    width: 90%;
    top: 35%;
    padding: 22px 26px;
  }
  
  .slidertitle h1 {
    font-size: 19px;
    line-height: 19px;
    word-spacing: -6px;
  }
  
  .slidertitle h2 {
    font-size: 12px;
  }
  
  .review-item .review-cover.GB:hover, .review-item .review-cover.GBC:hover  {
    background-position: 50% 50%;
    transform: scale(1);
  }
  
  #slidersubtitle {
    display: inline-block;
    position: absolute;
    text-align: center;
    z-index: 2;
    top: 47%;
    transform: translateY(-100%);
    left: 0;
  }
  
  #slidersubtitle h3 {
    font-size: 15px;
    padding: 0px 15px;
  }
  
  .section-title h2 {
    padding-top: 0px;
    font-size: 12px;
  }
  
  .section-title h2.myprofileh2 {
    margin-right: 0px;
  }
  
  .boxconsole:hover {
    transform: scale(1);
  }
  
  div#showarticle-image {
    height: 250px;
    background-position: 50%;
    background-size: 190%;
  }
  
  div#showarticle-image.snes {
    height: 250px;
    background-position: 57%;
    background-size: 163%;
  }
  
  .actionboxes img {
    width: 93%;
    margin: 0 auto;
    display: block;
}

  
	.header-section {
		overflow: visible;
		padding: 23px 0;
	}
	.header-section .container {
		position: relative;
	}
	.site-logo {
		float: none;
		padding-top: 0;
   width: 70%;
	}
	.main-menu {
		display: none;
		position: absolute;
		top: calc(100% + 24px);
		left: 0;
		width: 100%;
		background: #ffffff;
		z-index: 999;
	}
	.main-menu ul li {
		display: block;
		border-bottom: 1px solid #ececec;
	}
	.main-menu ul li a {
		margin-left: 0;
		color: #131313;
		padding: 13px 26px;
	}
	.nav-switch {
		color: #fff;
		display: block;
		float: right;
		cursor: pointer;
		font-size: 25px;
	}
	.user-panel {
		display: none;
	}
	.hero-slider .hs-item {
		height: 700px;
	}
	.hero-slider .hs-text h2 {
		font-size: 36px;
	}
	.hero-slider .owl-dots {
		max-width: 510px;
	}
	.ln-title {
		padding-right: 30px;
	}
	.feature-item {
		margin-bottom: 30px;
	}
	.recent-game-item {
		margin-bottom: 42px;
	}
	.review-section {
		background-position: left top;
	}
	.footer-logo {
		margin-bottom: 50px;
	}
	.footer-top-bg {
		display: none;
	}
	.footer-section {
		padding: 30px 0 20px;
		text-align: left;
	}
	.footer-menu li:first-child a {
		margin-left: 0;
	}
	.footer-menu,
	.copyright {
		float: none;
	}
	.copyright {
		padding-top: 15px;
	}
	.community-post-list li {
		padding: 30px 25px 30px;
	}
	.page-info-section .pi-content h2 {
		font-size: 50px;
	}
}

/* Medium Mobile :480px. */

@media only screen and (max-width: 576px) {
	.hero-slider .owl-dots {
		padding: 0 15px;
	}
	.feature-section {
		padding-left: 15px;
		padding-right: 15px;
	}
	.community-post-list .community-post .author-avator {
		float: none;
	}
	.community-post-list .community-post .post-content {
		padding-left: 0;
		padding-top: 30px;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-slider .hs-item {
		height: auto;
		padding: 150px 0;
	}
.ln-title {
  display: block;
    font-size: 15px;
    text-align: center;
    width: 100%;
    height: 43px;
    position: relative;
    padding: 10px;
	}
  
  .latest-news-section {
    padding: 0px;
  }
  
	.news-ticker {
		width: 100%;
	}
	.tournament-item .ti-thumb {
		width: 100%;
		height: 230px;
		float: none;
	}
	.tournament-item .ti-text {
		padding-left: 0;
		padding-top: 20px;
	}
	.latest-blog .lb-item .lb-thumb {
		width: 55px;
		height: 55px;
	}
	.latest-blog .lb-item .lb-content {
		padding-left: 67px;
	}
	.top-comment .tc-item .tc-content {
		padding-left: 85px;
	}
	.site-btn {
		padding: 11px 30px;
		min-width: 145px;
	}
	.comment-list .comment .comment-avator {
		float: none;
	}
	.comment-list .comment .comment-content {
		padding-left: 0;
		padding-top: 20px;
	}
	.footer-widget {
		padding: 40px 15px 7px;
	}
	.page-info-section .pi-content h2 {
		font-size: 40px;
	}
}


		.slider {
    max-width: 1000px;
    width: 90%;
    margin: 15px auto;
    border-radius: 5px;
    padding: 20px 0;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 65%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
		}
		

		
  .slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background-color: transparent;
    z-index: 99;
  }

  .slick-prev {
    left: -15px;
    background-image: url(../img/btn_l_arrow.webp);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .slick-next {
    right: -15px;
    background-image: url(../img/btn_r_arrow.webp);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }

.slick-prev:hover,.slick-next:hover {
  background-size: 90% 90%;
  -webkit-filter: contrast(1.2);
  filter: contrast(1.2);
}




.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

		.slick-slide {
		  color: #333;
		  padding: 20px 0;
		  font-size: 1.25em;
		  text-align: center;
		  cursor: pointer;
		}
		
		.slick-slide .desc {
		  opacity: 0;
		}
		
		.slick-slide .desc > * {
		  transition: all 900ms ease;
		}
		
		.slick-slide .desc h2 {
		  position: relative;
		  left: 50px;
		  line-height: 1;
    font-size: 24px;
		}
		
		.slick-slide .desc p {
		  position: relative;
		  top: 50px;
		  opacity: 0;
		}
		
		.slick-slide img {
		  width: 65%;
    margin: 0 auto;
		}
		
		
		.slick-dots {
		  text-align: center;
    margin: 0 auto;
    display: block;
    cursor: pointer;
		}
		
		.slick-dots li {
		  display: inline-block;
    background: #ccc;
    margin: 10px 5px;
    width: 40px;
    height: 27px;
    font-size: 11px;
    padding-top: 5px;
    border-bottom: 4px solid #595959;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
		}

  #slick-slide00:after {
    content: "GB";
  }

  #slick-slide01:after {
      content: "GBC";
    }

  #slick-slide02:after {
      content: "GBA";
    }

  #slick-slide03:after {
      content: "NES";
    }

  #slick-slide04:after {
      content: "SNES";
    }

  #slick-slide05:after {
      content: "N64";
    }

		
		.slick-dots li.slick-active {
		  background-color: #0ae;
    padding-top: 0px;
    color: white;
		}

  .slick-center img {
    -webkit-animation: jumpicon 1s infinite  alternate;
      animation: jumpicon 1s infinite  alternate;
  }

  .slick-center img:hover {
    filter: saturate(3);
  }
		
		.slick-dots button {
		  display: none;
		}
		
		.slick-slide:nth-child(odd) {
		  /* background: blue;*/
		}
		
		.slick-slide {
		  opacity: 0.2;
		  transition: all 300ms ease;
		}
		
		.slick-current {
		  opacity: 1;
		  transform: scale(1.1);
		}
		
		.slick-current .desc {
		  opacity: 1;
		}
		
		.slick-current .desc h2 {
		  left: 0;
		}
		
		.slick-current .desc p {
		  top: 0;
		  opacity: 1;
		}

