/* RESET CSS */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	background: url(../img/stats/bg.png);
	line-height: 1;
	background-size: cover;
}
*,*:after,*:before{
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	text-transform: uppercase;
    font-family: 'Poppins';
	color: white;
	font-weight: bold;
	text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
	border-collapse: collapse;
	border-spacing: 0;
}

/* RESET CSS */

/* TOOLTIP */

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

/* BODY  */
body {
	background-color: #3a3a3a;

	scroll-behavior: smooth;
	/*cursor: url("../img/cursor.png"), auto;*/
}

.unselectable {
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.container-index {
	max-width: 1600px;
	width: 100%;
	height: 100%;

	margin-left: auto;
	margin-right: auto;
}

.navbar-index {
	position: fixed;

	background-image: url("../img/navbar.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;

	width: 100%;
	height: 114px;

	max-width: 1600px;

	top: 0px;
}

.middle-container {
	display: flex;
	flex-wrap: wrap;

	justify-content: center;
	max-width: 1600px;
    width: 100%;

	padding-top: 200px;
}

.footer {
	position: fixed;

	background-image: url("../img/footer.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;

	width: 100%;
	height: 114px;

	max-width: 1600px;

	bottom: 0px;
}
@media only screen and (max-width: 1599px) {
	.gamePlayUnlocked, .gamePlay {
		bottom: 5px!important;
	}
}

@media only screen and (max-width: 600px) {
	.logoBody{
		display: none;
	}
	.menu {
		margin-top: 35px!important;
	}
	.backButton {
		display: none;
	}
}

/*
.break-first {
	display: none;
	flex-basis: 100%;
	height: 0;
}

.break-second {
	display: none;
	flex-basis: 100%;
	height: 0;
}

@media only screen and (max-width: 1600px) {
	body {
		overflow-x: hidden;
	}

	.break-first {
		display: flex;
	}

	.middle-container {
		max-width: 1400px;
		width: 100%;
	}

	.charFrame {
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 1100px) {
	.middle-container {
		max-width: 1100px;
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	.break-second {
		display: block;
	}

	.middle-container {
		max-width: 768px;
		width: 100%;
	}
}

@media only screen and (max-width: 550px) {
	.break-second {
		display: block;
	}

	.middle-container {
		width: 100%;
	}
}
*/

/* BODY  */

/* MAIN FRAME */

h1 {
	font-family: 'Poppins';font-size: 16px;

	color: rgb(236, 214, 177);
	line-height: 1.2;
	text-align: center;
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.004);

	-webkit-text-stroke: 0.3px black;
	paint-order: stroke fill;
}

.charData {
	position: absolute;
}

.avatarFrame {
	position: relative;
	display: inline-block;
	content: url("../img/avatar-frame.png");
}

.blue-link {
	/*color: #5757eb!important;*/
	color: #ffd700!important
}
.avatarImage {
	position: absolute;
	/*content: url("../img/chars/1_avatar.png");*/

	top: 14px;
	left: 10px;

	width: 90px;
}

.charLevelImg {
	position: absolute;
	content: url("../img/level-frame.png");

	width: 30px;
	height: 30px;

	top: 2px;
	right: 3px;
}

.charLevelText {
    position: absolute;
    font-size: 16px;
    top: 7px;
    right: 8px;
    width: 25px;
    text-align: right;
}

.myCharStats {
	position: absolute;
	display: inline-block;
	margin-top: 22px;
	margin-left: 120px;
}
.allStats {
	background-image: url("../img/interface/stats_box.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.emptySlot {
	position: relative;
	display: block;
	background-image: url("../img/empty-bar.png");
	background-repeat: no-repeat;
	background-size: contain;
	
	width: 132px;
	height: 29px;

	padding-top: 5px;
	margin-bottom: -5px;
}

.expBar {
	position: absolute;
	display: inline-block;

	background-image: url("../img/exp-slot.png");
	background-repeat: no-repeat;

	object-fit: cover;
	object-position: 0;

	width: 100%;
	height: 29px;

	top: -1px;
}

.expBar2 {
	position: absolute;
	display: inline-block;

	background-image: url("../img/exp-slot.png");
	background-repeat: no-repeat;

	object-fit: cover;
	object-position: 0;

	width: 100%;
	height: 29px;

	top: -1px;
}

.energyBar {
	position: absolute;
	display: inline-block;

	background-image: url("../img/energy-slot.png");
	background-repeat: no-repeat;

	width: 100%;
	height: 29px;

	object-fit: cover;
	object-position: 0;

	top: 0px;
}

.energyBar2 {
	position: absolute;
	display: inline-block;

	background-image: url("../img/energy-slot.png");
	background-repeat: no-repeat;

	width: 100%;
	height: 29px;

	object-fit: cover;
	object-position: 0;

	top: 0px;
}

.expText {
	position: absolute;
	color: rgb(40, 116, 17);
	margin-top: 6px;
	text-align: center;
    width: 100%;
}

.expText2 {
	position: absolute;
	color: rgb(40, 116, 17);
	margin-top: -1px;
	text-align: center;
    width: 100%;
}

.energyText {
	position: absolute;
	color: rgb(40, 116, 17);
	margin-top: 5px;
	text-align: center;
    width: 100%;
}

.energyText2 {
	position: absolute;
	color: rgb(40, 116, 17);
	text-align: center;
    width: 100%;
}

.logo {
	display: block;
	position: relative;
	
	content: url("../img/logo.png");
	margin: auto;

	width: 95px;

	top: 28px;
	margin-bottom: -80px;
}

.logoText {
	margin-top: 2px;
}
h1 {

	font-size: 16px!important;
}
.menu {
	display: inline-block;
	position: absolute;
	right: 0;
	margin-top: 15px;
	margin-right: 20px;
}

.menu a:hover {
	opacity: 0.6;
}

.charButton {
	content: url("../img/char.png");
}

.logoutButton {
	content: url("../img/btn_logout.png");
}

.collectionBookBtn {
	content: url("../img/collection_book.png");
}

.backButton {
	content: url("../img/back_d.png");
}

.hideButton {
	content: url("../img/hide_btn.png");
	transform: rotate(180deg);
}

.showButton {
	content: url("../img/hide_btn.png");
}

.inventoryButton {
	content: url("../img/inventory.png");
	margin-right: 20px;
}

.marketplaceButton {
	content: url("../img/shop.png");
	margin-right: 20px;
}

/* MAIN FRAME */

/* SELECT CHARACTER */

.newChar {
	position: relative;

	width: 65px;
	height: 65px;
}

.newCharButton {
	position: absolute;
	content: url("../img/interface/select_char/create_btn.png");
	height: 90px;
	top: 200px;
}

.charFrame {
	background-color: white;
	border-radius: 20px;
	
	position: relative;
	max-width: 100%;
	width: 270px;
	height: 490px;
	margin: 20px 0;
	margin-left: 25px;
	margin-right: 25px;
}

.charFrameStats {
	position: absolute;
	content: url("../img/interface/select_char/bg_stats.png");
	z-index: 1;
    top: 290px;
    left: 21px;
    margin: 0 auto;
}
.charStats {
	z-index: 2;
    position: absolute;
    top: 315px;
    left: 110px;
}
.start-button {
    font-family: 'Poppins', 'Open Sans';
	text-decoration: none;
	display: block;
	width: 150px;
    margin: 0 auto;
    height: 40px;
    text-transform: uppercase;
    background-color: #2a2a35;
    font-weight: bold;
    color: white;
    padding: 10px 16px;
    font-size: 1rem;
    border-radius: 3px;
    transition: all .15s cubic-bezier(0.4,0,0.2,1);
    border: none;
    cursor: pointer;
}

.start-button:hover {
	color: white;
    background-color: #5757eb;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.start-button:active {
    position: relative;
    top: 1px;
    right: 1px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.charStats {
	position: absolute;
	bottom: 42px;
	left: 95px;
}

.charEmptySlot {
	position: relative;
	display: block;
	background-image: url("../img/empty-bar.png");
	background-repeat: no-repeat;
	background-size: contain;
	
	width: 132px;
	height: 29px;

	padding-top: 5px;
	margin-bottom: 0px;
}

.charPlay {
	position: absolute;
	content: url("../img/play-normal.png");
	
	width: 73px;
	height: 73px;

	bottom: 50px;
	right: 25px;
}

.charPlayLocked {
	position: absolute;
	content: url("../img/play-locked.png");
	
	width: 73px;
	height: 73px;

	bottom: 50px;
	right: 25px;
}

.charFrameLevel {
	position: absolute;
	content: url("../img/level-frame.png");

	width: 20px;
	height: 20px;

	bottom: 107px;
	left: 77px;
}

.charFrameLevelText {
	position: absolute;
	width: 15px;
	font-size: 13px;

	bottom: 109px;
	left: 82px;
}

.charPreview {
	z-index: 2;
	position: absolute;
	/*content: url("../img/chars/0_preview.gif");*/

    top: 95px;
    left: 20px;
    margin: 0 auto;
}

.minePreview {
	position: absolute;

    left: 15px;
	max-height: 250px;
	max-width: 305px;

	bottom: 170px;
}
.required_icon {
	vertical-align:middle;
    height: 30px;
    width: 30px;
}
.items_required li {
    font-size: 30px;
	margin-bottom: 5px;
}
.portalPreview {
	position: absolute;

    left: 15px;
	max-height: 250px;
	max-width: 305px;
	
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	bottom: 170px;
}

.charRace {
	position: absolute;
	/* content: url("../img/chars/0_race.png"); */

	z-index: 2;
	top: 325px;
	left: 32px;
}

/* SELECT CHARACTER */

/* SELECT GAME */

.gameFrame {
	position: relative;
	width: 33%;
	margin: 50px 0;
	padding: 0 50px;
}

.gameFrameImg {
	position: relative;
	content: url("../img/game_frame.png");
	top: 0;
	left: 0;
	width: 100%;
	position: relative;
	display: block;
}

.gameImage {
	position: absolute;
	content: url("../img/free-text-slot.png");
	top: 6%;
    left: 11.5%;
    width: calc(100% - 23%);
    height: calc(100% - 17%);
}

.gamePlay {
	position: absolute;
	content: url("../img/locked.png");
	width: 100px;
	bottom: 15px;
	left: calc(50% - 50px);
}

.gamePlayUnlocked {
	position: absolute;
	content: url("../img/play_normal.png");
	width: 100px;
	bottom: 15px;
	left: calc(50% - 50px);
}

.gameFrame a.gamePlay:hover {
	opacity: 0.7;
}

.gamePlayUnlocked:hover, .charPlay:hover {
	-webkit-filter: brightness(120%);
	filter: brightness(120%);
}

/* SELECT GAME */

/* BATTLE ZONE */

.inventoryFrame {
	flex-direction: column;
	position: relative;
	width: 20%;
}

.inventoryFrameImg {
	content: url("../img/game_inventory.png");

	width: 100%;
	display: block;
}
.fight_side{
	width: 80%;
	padding-left: 20px;
}

.randomFight {
	flex-direction: row;
	position: relative;
	left: initial;
    margin: auto;
    display: block;
    text-align: center;
	height: 65px;
}

.randomFightImg {
	position: relative;
	content: url("../img/search_normal.png");

	width: 186px;
	height: 65px;
}

.mobList {
	flex-direction: row;
	position: relative;
	margin-top: 168px;
}

.mobFrame {
	display: inline-block;
	position: relative;
	
	width: 266px;
	height: 319px;

	margin-left: 35px;
}

.mobFrameImg {
	position: relative;
	content: url("../img/mob_frame.png");
}

/* BATTLE ZONE */

/* BATTLE GAME */

.mainFrame {
	position: relative;

	width: 266px;
	height: 319px;
}

.heroFrame {
	margin-left: 185px;
	margin-right: auto;
}

.monsterFrame {
	margin-right: 185px;
	margin-left: auto;
}

.mainFrameImg {
	position: relative;
	content: url("../img/mob_frame.png");
}

.mainAvatarImg {
	position: absolute;

	width: 175px;
	height: 185px;

	top: 43px;
	left: 45px;
}

.healthFrame {
	position: absolute;

	width: 132px;
	height: 29px;

	bottom: 11px;
	left: 70px;
}

.healthSlot {
	position: relative;
	content: url("../img/empty-bar.png");
}

.healthBar {
	position: relative;
	content: url("../img/hp-bar.png");

	width: 100%;
	height: 29px;

	object-fit: cover;
	object-position: 0;

	margin-top: -31px;
	transition: width 1s ease-in-out;

	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

.logFrame {
	position: relative;
	background-image: url("../img/free-text-slot.png");
	background-size: auto 100%;

	width: 1200px;
	height: 200px;

	margin-top: 50px;

	overflow-y: auto;
	overflow-x: none;

	padding: 15px;

	border: 1px white dotted;

	font-family: 'Poppins';
	font-size: 16px;

	color: rgb(236, 214, 177);
	line-height: 1.2;
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.004);

	-webkit-text-stroke: 0.3px black;
	paint-order: stroke fill;
}

.charStats table {
	font-family: 'Poppins';
	text-transform: uppercase;
	color: #ffffff;
}
.charStats table td:first-child {
    width: 75px;
}
.charStats  table td {
	font-weight: bold;
	padding-bottom: 5px;
    font-size: 15px;
}
.charStats table td:nth-child(2) {
    text-align: left;
	
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 80px;
}

.heroLogs {
	width: 500px;
	float: left;
	text-align: left;
}

.monsterLogs {
	width: 500px;
	float: right;
	text-align: right;
}

@keyframes shake {
	10%, 90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%, 80% {
		transform: translate3d(2px, 0, 0);
	}

	30%, 50%, 70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%, 60% {
		transform: translate3d(4px, 0, 0);
	}
}

/* BATTLE GAME */

/* INVENTORY PAGE */



/* INVENTORY PAGE */
@media(max-width: 1200px){
	.gameFrame{
		padding: 0 25px;
	}
}
@media(max-width: 991px){
	.heroFrame{
	    margin: 0;
	    width: 50%;
	    padding-left: 25px;
	}
	.monsterFrame{
	    margin: 0;
	    width: 50%;
	    padding-right: 25px;
	    margin-left: auto;
	    margin-right: 0;
	    text-align: right;
	}
	.monsterFrame .mainAvatarImg{
	    right: 45px;
	    left: initial;
	}
	.monsterFrame .healthFrame{
	    right: 70px;
	    left: initial;
	}
	.heroLogs{
	    width: 50%;
	    padding-right: 10px;
	    float: left;
	}
	.monsterLogs{
	    width: 50%;
	    padding-left: 10px;
	    float: left;
	}
	.logFrame{
		max-width: 95%;
	}
	.mainFrameImg{
	    width: 50%;
	}
	.mainAvatarImg{
	    width: 50%;
	}
	.gameFrame{
		width: 100%;
	}
	.gameImage{
		top: 6%;
	    left: 7.5%;
	    width: calc(100% - 15%);
	    height: calc(100% - 17%);
	}

}
@media(max-width: 767px){
	.charFrame{
	    margin: 20px 20px;
	}
	.middle-container{
		padding: 150px 0px;
	}
	.inventoryFrame{
		width: 100%;
		padding: 20px;
	}
	.fight_side{
		width: 100%;
		padding-right: 20px;
	}
	.mobList{
		margin-top: 20px;
	}
	.mobFrame{
		width: 100%;
		height: auto;
		display: block;
		margin: 20px 0;
	}
	.mobFrameImg{
		width: 100%;
		height: auto;
		display: block;
	}
}
@media(max-width: 600px){
	.heroFrame{
		width: 100%;
		padding: 20px;
		height: auto;
	}
	.monsterFrame{
		width: 100%;
		padding: 20px;
		height: auto;
	}
	.mainFrameImg{
		width: 100%;
		display: block;
	}
	.mainAvatarImg ,.monsterFrame .mainAvatarImg{
	    width: 60%;
	    height: auto;
	    left: calc(50% - 30%);
	    right: initial;
	    top: 15%;
	}
	.healthFrame{
	    bottom: 6%;
	    display: block;
	    width: calc(100% - 140px);
	    height: 50px;
	}
	.healthSlot{
	    width: 100%;
	    display: block;
	    height: 100%;
	}
	.healthBar{
	    height: 50px;
	    margin-top: -50px;
	}
}
@media(max-width: 400px){
	.gamePlay{
		bottom: 8px;
	}
}
@media (max-width: 575px) {
	.container-index {
		width: unset!important;
	}
	.newCharButton {
		top: 0px;
	}
}
input.form-control, select.form-control {
    background-color: #192727;
    border-color: #125028;
    border-radius: 0;
    margin-top: 6px;
    color: white;
}
input.form-control:focus, select.form-control:focus {
    background-color: #233838;
    border-color: #125028;
    border-radius: 0;
    margin-top: 6px;
    color: white;	
}
.modal-content {
    background-color: #162926;
	color: white;
	border-radius: 0;
}
.btn {
	border-radius: 0;
}
.modal-header {
	border-bottom: 1px solid #2c504a;
}
.modal-footer {
	border-top: 1px solid #2c504a;
}
.modal-title {
	text-transform: uppercase;
	font-family: 'Poppins';
}
.slots-img2 {
	border-radius: 8px;
    position: relative;
	background-color: #bfbfbf;
    height: 70px;
    width: 70px;
    display: inline-block;
    margin-right: 5px;
    background-size: cover;
}
.slots-img2 span {
    position: absolute;
    bottom: 4px;
    right: 10px;
    font-size: 12px;
    color: #8b4c17d1;
    font-weight: bold;
}
.modal {
padding-top: 165px;
}
.charFrame2 {
	position: relative;
	max-width: 100%;
	width: 347px;
	height: 484px;
	margin: 20px 0;
	margin-left: 25px;
	margin-right: 25px;
}
.bg-stats {
	height: 665px;
	border-radius: 0 0 15px 15px;
	background-color: white;
}
.charStats2 {
	position: absolute;
	bottom: 42px;
	right: 105px;
}
.charRace2 {
	position: absolute;
	/* content: url("../img/chars/0_race.png"); */

    width: 70px;
    height: 70px;

	bottom: 54px;
	left: 22px;
}
.charFrameImg {
	position: relative;
	content: url("../img/char-frame.png");
	top: 0;
	left: 0;
}
.game-title2 {
	font-family: 'Poppins';
    font-size: 18px;
    position: absolute;
    top: 14px;
    left: 50%;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.004);

	-webkit-text-stroke: 0.3px black;
	paint-order: stroke fill;
}

.game-title span {
	display: block;
	color: #de2e0c;
}
.game-title {
	background-color: #1d2027;
    padding: 15px 0 15px 0;
	border-radius: 15px 15px 0 0;
	text-transform: uppercase;
	font-family: 'Poppins';
    font-size: 18px;
	top: 20px;
	font-weight: bold;
	text-align: center;
	color: white;
	line-height: 1.2;
}

.inventory-tabs {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translate(-50%, -50%);
}
span.i-tabs {
    background-color: #184646;
    padding: 1px 10px 1px 10px;
    border: 1px solid #6a6a4b;
    font-size: 12px;
}
@media (max-width: 490px) {
	span.i-tabs {
		display: block;
	}
}
span.i-tabs.opened {
	opacity: 0.6;
}
#nfts_inventory {
	display: none;
}
.item-gray {
	color:#D0D0D0!important;
}
.item-green {
	color:#2AAA8A!important;
}
.item-blue {
	color:#1F51FF!important;
}
.item-purple {
	color:#BF40BF!important;
}
.item-orange {
	color:#F28C28!important;
}
.start-frame {
	position: absolute;
	top: 440px;
    width: 100%;
}
.energyTimer {
	height: 21px;
	background-image: url("../img/interface/select_char/energy_reg.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	line-height: 20px;
	position: absolute;
	top: 410px;
    width: 100%;
    text-align: center;
    font-family: 'Poppins';
    font-size: 15px;
    color: white;
	font-weight: bold;
	text-transform: uppercase;
}

.energyTimer span {
	color: #5d5dfe;
}
/* COLLECTION BOOK */

.collectionBook {
	position: relative;

	width: 965px;
	height: 700px;
}

.collectionBookImg {
	content: url("../img/collection-book/collection-book.png");
}

.leftPage {
	position: absolute;

	top: 0px;
	left: 0px;

	width: 470px;
	height: 700px;
}

.weaponsCattegory {
	position: absolute;
	content: url("../img/collection-book/weapons-cattegory-normal.png");

	top: 270px;
	left: 130px;
}

.monstersCattegory {
	position: absolute;
	content: url("../img/collection-book/monsters-cattegory-normal.png");

	top: 330px;
	left: 130px;
}

.fishingCattegory {
	position: absolute;
	content: url("../img/collection-book/fishing-cattegory-normal.png");

	top: 390px;
	left: 130px;
}

.miningCattegory {
	position: absolute;
	content: url("../img/collection-book/mining-cattegory-normal.png");

	top: 450px;
	left: 130px;
}

.devcardsCattegory {
	position: absolute;
	content: url("../img/collection-book/devcards-cattegory-normal.png");

	top: 510px;
	left: 130px;
}

.adventurePoints {
	position: absolute;

	bottom: 80px;
	left: 135px;
}

.adventurePointsImg {
	content: url("../img/collection-book/adv-points-slot.png");
}

.adventurePointsSlot {
	position: absolute;
	width: 160px;

	right: 2px;
	top: 5px;
}

.adventurePointsText {
	text-align: center;
}

.rightPage {
	position: absolute;

	top: 120px;
	right: 80px;

	width: 360px;
	height: 700px;
}

.book-slot {
	content: url("../img/collection-book/slot.png");
	margin-bottom: 10px;
}

.book-item {
	position: absolute;

	/* content: url("../img/items/weapon/1.png"); */
	
	width: 25px;
	transform: rotate(45deg);

	/* left: 20px;
	left: 90px;
	left: 160px; */

	/* top: 0px;
	top: 75px;
	top: 150px; */
}
.textComigSoon {
    position: absolute;
    top: 180px;
    left: 150px;
    color: #6c9f8b;
    font-size: 35px;
    text-transform: uppercase;
    text-shadow: 2px 2px #000000;
}
/* COLLECTION BOOK */


/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	z-index: 1030;
	background:none;
}

.main-header .header-container{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.main-header .bg-shape-box{
	position: absolute;
	left: -50px;
	top: 0;
	bottom:-2px;
	right: -50px;
	overflow: hidden;
}

.main-header .bg-shape-box:before{
	content: '';
    position: absolute;
    right: 26px;
    top: 64px;
    width: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    z-index: 1;
}

.main-header .bg-shape-box .bg-shape{
	position: absolute;
	left: 50px;
	top: 0;
	bottom:0px;
	right: 50px;
	background: #1c1f26;
	border-bottom: 1px solid #191a24;
}

.main-header .bg-shape-box .bg-shape:before{
	content: '';
    position: absolute;
    left: -34px;
    top: 1px;
    z-index: -1;
    width: 50px;
    height: 250px;
    background: #1c1f26;
    -webkit-transform: rotate(-65deg);
    -ms-transform: rotate(-65deg);
    transform: rotate(-65deg);
    border-left: 1px solid #191a24;
}

.main-header .bg-shape-box .bg-shape:after{
	content: '';
    position: absolute;
    right: -34px;
    top: 1px;
    z-index: -1;
    width: 50px;
    height: 250px;
    background: #1c1f26;
    -webkit-transform: rotate(65deg);
    -ms-transform: rotate(65deg);
    transform: rotate(65deg);
    border-right: 1px solid #191a24;
}

.main-header .header-top{
	position: relative;
	color:#191a24;
	font-size: 15px;
	font-weight: 400;
	border-bottom: 1px solid rgba(255,255,255,0.10);
}

.header-style-two .header-container{
	max-width: 100%;
}

.main-header .header-top .inner{
	position:relative;
	padding: 17px 20px 17px 60px;
}

.header-style-two .header-top{
	padding-left: 0;
}

.header-style-two .header-top .inner{
	padding: 17px 0px;
}

/* Top Left*/

.main-header .header-top .top-left{
	position: relative;
	color: #191a24;
	float: left;
}

.header-style-two .header-top .top-left{
	color: #ffffff;
}

.main-header .header-top .top-right{
	position:relative;
	float:right;
}

.main-header .header-top .info{
	position: relative;
	z-index: 1;
}

.main-header .header-top .info li{
	position: relative;
	float: left;
	font-size: 15px;
	line-height: 30px;
	color: #191a24;
	padding: 0px 0px;
	margin-left:30px;
}

.main-header .header-top .info li a{
	font-size: 18px;
	text-transform: uppercase;
	font-family: 'Poppins', 'Open Sans';
	font-weight: bold;
	position:relative;
	display: inline-block;
	color: #de2e0c;
	text-decoration: none;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.header-style-two .header-top .info li a{
	color: #ffffff;
}

.main-header .header-top .info li a:hover{
	color: #ff7a21;
	text-decoration: none;
}

.main-header .social-links{
	position:relative;
}

.main-header .social-links li{
	position:relative;
	float:left;
	color:#999999;
	margin-left:10px;
}

.main-header .social-links li a{
	position:relative;
	display:block;
	color:#ffffff;
	font-size:14px;
	width: 40px;
	height: 40px;
	background: #000000;
	line-height:40px;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-header .social-links li a:hover{
	color:#ff7a21;
	box-shadow: 0px 0px 30px 0px #ff7a21;
}

/*=== Header Upper ===*/
.flaticon-cancel{
	font-size: 60px;
}
.flaticon-cancel:after{
	display: inline-block;
	content: "\00d7"; /* This will render the 'X' */
}
.flaticon-menu-2 {
    position: relative;
    display: inline-block;
    width: 1.25em;
    height: 0.8em;
    margin-right: 0.3em;
    border-top: 0.2em solid #fff;
    border-bottom: 0.2em solid #fff;
}

.flaticon-menu-2:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0px;
    width: 100%;
    border-top: 0.2em solid #fff;
}

.main-header .header-upper{
	position:relative;
}

.main-header .header-upper .inner-container{
	position:relative;
}

.menu-right {
	float: right!important
}

.header-style-two .header-upper .inner-container{
	padding-left: 0;
}

.main-header .header-upper .logo-box{
	position: absolute;
	float:left;
	left: 0;
	top: -64px;
	background: #1c1f26;
	padding:20px 10px;
	text-align: center;
	height: 156px;
	width: 210px;
	border-right: 1px solid rgba(255,255,255,0.10);
	z-index:10;
}

.header-style-two .header-upper .logo-box{
	position: relative;
	float: left;
	top: 0;
	background:none;
	padding: 0;
	width: auto;
	height: auto;
	border:none;
}

.main-header .header-upper .logo-box .logo{
	position: relative;
	display:block;
}

.main-header .header-upper .logo img{
	position: relative;
	display: inline-block;
	z-index:1;
}

.main-header .header-upper .social-links{
	position: relative;
	float: right;
	padding: 26px 0;
}

.header-style-two .header-upper .social-links{
	padding: 30px 0px 20px;
	margin-left: 80px;
}

.main-header .nav-outer{
	position: relative;
	padding-left: 60px;
	padding-right: 20px;
	z-index:3;
}

.header-style-two .nav-outer{
	float: right;
	padding: 0;
}

.main-header .nav-outer .link-box .cart-link a:hover{
	color:#ff7a21;	
}

.main-header .nav-outer .main-menu{
	position:relative;
	float:left;
}

.main-menu .navbar-collapse{
	padding:0px;
	display:block !important;
}

.main-menu .navigation{
	position:relative;
	margin:0px;
	font-family: 'Oswald', sans-serif;
}

.main-menu .navigation > li{
	position:relative;
	float:left;
	padding:21px 0px;
	margin-right: 50px;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-menu .navigation > li.user-info > p:not(:last-child) {
	padding-bottom: 7px;
}

.main-menu .navigation > li.user-info {
	padding: 15px 0px!important;
}

.header-style-two .main-menu .navigation > li{
	padding: 25px 0px;
}

.main-menu .navigation > li:last-child{
	margin-right:0px;
}

.main-menu .navigation > li > p{
	color: white;
	font-family: 'Poppins', 'Open Sans';
	text-transform: uppercase;
	font-weight: bold;
}
.main-menu .navigation > li > a{
	position:relative;
	display:block;
	text-align:center;
	font-size:14px;
	line-height:28px;
	font-weight:400;
	text-transform:uppercase;
	color:#ffffff;
    font-family: 'Poppins', 'Open Sans';
	text-decoration: none;
	font-weight: bold;
	padding:12px 0px 10px;
	letter-spacing:0.05em;
	opacity:1;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.header-style-two .main-menu .navigation > li > a{
	color: #ffffff;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a{
	color:#ff7a21;
	-webkit-text-shadow: 0px 0px 30px #ff7a21, 0px 0px 30px #ff7a21;
	-ms-text-shadow: 0px 0px 30px #ff7a21, 0px 0px 30px #ff7a21;
	text-shadow: 0px 0px 30px #ff7a21, 0px 0px 30px #ff7a21;
}

.main-menu .navigation > li:before{
	content: "";
	position:absolute;
	left:0px;
	top:0px;
	display:block;
	width: 0;
	border-bottom: 3px solid #ff7a21;
	z-index:5;	
}

.main-menu .navigation > li.current:before,
.main-menu .navigation > li:not(.user-info):hover:before{
	width: 100%;
}

.main-menu .navigation > li > ul{
	position:absolute;
	left:0px;
	top:100%;
	margin-top: 10px;
	width:200px;
	z-index:100;
	display:none;
	opacity: 0;
    visibility: hidden;
	padding: 10px 0px;
	background: #ffffff;
	text-align:left;
	border-radius: 3px;
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul:before{
	position:absolute;
	content:'';
	left:0px;
	top:-30px;
	width:100%;
	height:30px;
	display:block;
}

.main-menu .navigation > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-menu .navigation > li > ul > li{
	position:relative;
	width:100%;
	padding:0px 25px;
	border-bottom:1px solid rgba(0,0,0,0.05);
	margin-bottom: 0px;
}

.main-menu .navigation > li > ul > li:last-child{
	margin-bottom: 0px;
	border-bottom:none;
}

.main-menu .navigation > li > ul > li > a{
	position:relative;
	display:block;
	padding:8px 0px;
	line-height:24px;
	font-weight:400;
	font-size:15px;
	letter-spacing: 0.03em;
	text-transform:capitalize;
	color:#222222;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.main-menu .navigation > li > ul > li:hover > a{
	color:#ff7a21;
	padding-left:5px;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
	font-family: 'Font Awesome 5 Free';
	content: "\f105";
	position:absolute;
	right:0px;
	top:9px;
	width:10px;
	display:block;
	line-height:24px;
	font-size:16px;
	font-weight:900;
	text-align:center;
	z-index:5;	
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top:0px;
	width:200px;
	z-index:100;
	display:none;
	opacity: 0;
    visibility: hidden;
	padding: 10px 0px;
	background: #ffffff;
	text-align:left;
	border-radius: 3px;
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	padding:0px 25px;
	border-bottom:1px solid rgba(0,0,0,0.05);
	margin-bottom: 0px;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
	margin-bottom: 0px;
	border-bottom:none;
}

.main-menu .navigation > li > ul > li > ul > li > a{
	position:relative;
	display:block;
	padding:8px 0px;
	line-height:24px;
	font-weight:400;
	font-size:15px;
	letter-spacing: 0.03em;
	text-transform:capitalize;
	color:#222222;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a{
	color:#ff7a21;
	padding-left:5px;
}

.main-menu .navigation > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;

}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	top:0;
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	
}

.main-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:10px;
	top:8px;
	width:34px;
	height:30px;
	border:1px solid #ffffff;
	text-align:center;
	font-size:16px;
	line-height:26px;
	color:#ffffff;
	cursor:pointer;
	z-index:5;
	display:none;
}


/*** 

====================================================================
			Mobile Menu
====================================================================

***/
.new_header_bg {
    background-color: #1c1f26;
    height: 134px;
    position: absolute;
	border-bottom: 1px solid #191a24;
    width: 100%;
}
.main-header .mobile-nav-toggler{
	position: relative;
	float: right;
	font-size: 30px;
    line-height: 30px;
    cursor: pointer;
    color: #ff7a21;
    margin-left: 25px;
    margin-top: 25px;
	display: none;
}

.mobile-menu{
	position: fixed;
    right: 0;
	top: 0;
	width: 300px;
	padding-right:30px;
	max-width:100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
}

.mobile-menu .mCSB_inside>.mCSB_container{
	margin-right:5px;	
}

.mobile-menu .navbar-collapse{
	display:block !important;	
}

.mobile-menu .nav-logo{
	position:relative;
	padding:30px 25px;
	text-align:left;	
}

.mobile-menu-visible{
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-backdrop{
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background:#080706;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
	opacity: 0.70;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .menu-box{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #202020;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{
	opacity: 1;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn{
	position: absolute;
	right: 10px;
	top: 10px;
	line-height: 30px;
	width: 24px;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	cursor: pointer;
	z-index: 10;
	-webkit-transition:all 0.9s ease;
	-moz-transition:all 0.9s ease;
	-ms-transition:all 0.9s ease;
	-o-transition:all 0.9s ease;
	transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
	-webkit-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
	color:#ff7a21;
	-webkit-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	transform:rotate(90deg);
}

.mobile-menu .navigation{
	position: relative;
	display: block;
	width: 100%;
	float: none;
}

.mobile-menu .navigation li{
	position: relative;
	display: block;
	border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
	border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
	border-top: 1px solid rgba(255,255,255,0.10);
}
.logo-header {
    position: absolute;
    z-index: 1;
    width: 100%;
}
.mobile-menu .navigation li > a{
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
	
	letter-spacing: 1px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
}

.mobile-menu .navigation li ul li > a{
	margin-left: 20px;
	text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	height:0;
	border-left:5px solid #ff7a21;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
}

.mobile-menu .navigation li.current > a,
.mobile-menu .navigation li > a:hover{
	color:#ff7a21;	
}

.mobile-menu .navigation li.current > a:before{
	height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:6px;
	top:6px;
	width:32px;
	height:32px;
	text-align:center;
	font-size:16px;
	line-height:32px;
	color:#ffffff;
	background:rgba(255,255,255,0.10);
	cursor:pointer;
	border-radius:2px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
	z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
	background:#ff7a21;	
	-webkit-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	transform:rotate(90deg);	
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
	display: none;
}

.mobile-menu .social-links{
	position:relative;
	text-align:center;
	padding:30px 25px;
}

.mobile-menu .social-links li{
	position:relative;
	display: inline-block;
	margin: 0;
	margin-right: 7px;
	color:#999999;
}

.mobile-menu .social-links li:last-child{
	margin-right: 0;
}

.mobile-menu .social-links li a{
	position:relative;
	display:block;
	color:#ffffff;
	font-size:13px;
	width: 39px;
	height: 39px;
	background: #000000;
	border: 1px solid rgba(255,255,255,0.10);
	line-height:38px;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.mobile-menu .social-links li a:hover{
	color:#ff7a21;
	-webkit-box-shadow: 0px 0px 30px 0px #ff7a21;
	-ms-box-shadow: 0px 0px 30px 0px #ff7a21;
	box-shadow: 0px 0px 30px 0px #ff7a21;
}
/* Sintix - Digital Video Gaming and Consol HTML Template  */

@media only screen and (max-width: 7000px){
	.page-wrapper{
		overflow: hidden;
	}
	
}

@media only screen and (max-width: 1299px){
	.main-header .header-container,
	.main-footer .footer-bottom .outer-container{
		margin: 0px 50px;
	}

	.banner-carousel .content-box h2{
		font-size: 84px;
	}

	.banner-carousel .content-box h1{
		font-size: 120px;
		line-height: 1.1em;
	}

	.banner-style-two .owl-nav{
		width: 100%;
		left: 0;
	}
}

@media only screen and (max-width: 1139px){
	.bg-shape-box, .logo-header {
		display: none;
	}
	.main-menu .navigation > li{
		margin-right: 30px;
	}

	.main-header .header-container{
		margin: 0px 0px;
	}

	.banner-carousel .content-box h2{
		font-size: 72px;
	}

	.banner-carousel .content-box{
		height: 700px;
	}

	.header-style-two .header-upper .social-links{
		margin-left: 30px;
	}

	.game-block .lower-content{
		padding: 40px 20px;
	}

	.fixed-gallery-box{
		width: auto;
		height: auto;
		margin: 0px -10px;
	}

	.dual-section .fixed-gallery-box{
		margin-bottom: 50px;
	}

	.fixed-gallery-box .gallery-item:nth-child(even),
	.fixed-gallery-box .gallery-item:nth-child(odd),
	.fixed-gallery-box .gallery-item{
		position: relative !important;
		float: left;
		padding: 0px 10px;
		margin-bottom: 20px;
		width: 33.3333%;
		left: 0 !important;
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
	}

	.fixed-gallery-box .gallery-item:nth-child(even) .image-box,
	.fixed-gallery-box .gallery-item:nth-child(odd) .image-box,
	.fixed-gallery-box .gallery-item .image-box{
		width: 100% !important;
		height: 310px !important;
	}

	.sec-title h2{
		font-size: 42px;
	}

	.featured-carousel-box .slide-item .text-column .inner{
		padding: 50px 30px 120px;
	}

	.main-footer .links-widget .widget-content{
		padding-left: 0;
	}

	.platofrm-block .inner{
		padding-left: 100px;
	}

	.platofrm-block .icon-box{
		left: 30px;
	}

	.featured-game .image-column .inner{
		margin: 0;
	}

	.page-banner h1{
		font-size: 64px;
	}

	.about-section .image-column .inner{
		padding-right: 0;
	}

	.feature-block .inner-box{
		padding: 40px 20px;
	}

	.cont-info-section .info-block .inner-box:after{
		display: none;
	}

	.cont-info-section .info-block .inner-box{
		padding-left: 0 !important;
		text-align: center;
	}

	.cont-info-section{
		padding: 80px 0px 10px;
	}

	.cont-info-section .info-block .text{
		max-width: 400px;
		margin: 0 auto;
	}

}

@media only screen and (min-width: 768px){
	.main-menu .navigation > li > ul,
	.main-menu .navigation > li > ul > li > ul{
		display:block !important;
		visibility:hidden;
		opacity:0;
	}
}

@media only screen and (max-width: 1023px){
	.main-header{
		position: relative !important;
		left: 0;
		top: 0;
	}

	.main-header .header-top,
	.main-header .header-upper .inner-container{
		padding-left: 0;
	}

	.main-header .header-top .inner{
		padding: 12px 20px;
	}

	.main-header .header-upper .logo-box{
		position: relative;
		top: 0;
		left: 0;
		bottom: 0;
		padding: 10px 20px;
		width: auto;
		background: none;
		height: auto;
		border: none;
	}

	.main-header .header-upper .logo img{
		height: 80px;
	}

	.main-header .nav-outer .main-menu,
	.sticky-header{
		display: none !important;
	}

	.nav-outer .mobile-nav-toggler{
		display: block;
	}

	.main-header .header-upper .social-links{
		padding: 30px 0px;
	}

	.banner-carousel .slide-item{
		padding-top: 0;
	}

	.banner-carousel .content-box{
		height: 600px;
		margin: 0 auto;
		text-align: center;
	}

	.banner-carousel .content-box h2{
		font-size: 64px;
		line-height: 1.3em;
	}

	.fixed-gallery-box .gallery-item:nth-child(even),
	.fixed-gallery-box .gallery-item:nth-child(odd),
	.fixed-gallery-box .gallery-item{
		width: 50% !important;
	}

	.fixed-gallery-box .gallery-item:nth-child(even) .image-box,
	.fixed-gallery-box .gallery-item:nth-child(odd) .image-box,
	.fixed-gallery-box .gallery-item .image-box{
		height: 420px !important;
	}

	.sec-title h2{
		font-size: 36px;
	}

	.reviews-section .carousel-outer{
		padding: 0;
		min-height: 0;
		text-align: center;
	}

	.reviews-section .carousel-outer .thumb-carousel-box{
		position: relative;
		margin: 0 auto 50px;
	}

	.reviews-section .carousel-outer .text-carousel .owl-nav{
		position: relative;
		left: 0;
		bottom: 0;
		width: 100%;
		top: 0;
		right: 0;
		text-align: center;
		padding-top: 50px;
	}

	.reviews-section .sec-title{
		text-align: center;
	}

	.reviews-section .sec-title .bottom-curve{
		left: 50%;
		margin-left: -65px;
	}

	.fact-counter{
		text-align: center;
	}

	.video-section h2{
		font-size: 48px;
		line-height: 1.3em;
	}

	.news-block .over-box{
		padding: 0px 20px 20px;
	}

	.news-block .over-box h3{
		font-size: 24px;
		line-height: 1.3em;
	}

	.main-footer .footer-bottom,
	.main-footer .footer-bottom .social-links,
	.main-footer .footer-bottom .social-links ul{
		text-align: center;
	}

	.main-footer .footer-bottom .outer-container{
		margin: 0 0;
	}

	.banner-carousel .content-box h1{
		font-size: 80px;
		line-height: 1.2em;
	}

	.banner-style-two .owl-nav{
		margin-top: -50px;
	}

	.featured-game .text-column{
		order: 0;
	}

	.featured-game .sec-title{
		margin-bottom: 30px;
	}

	.parallax-section h2{
		font-size: 48px;
		margin-bottom: 25px;
	}

	.parallax-section{
		padding: 140px 0px 130px;
	}

	.page-banner{
		padding-top: 0;
	}

	.page-banner .banner-inner{
		padding: 80px 0px 120px;
	}

	.page-banner h1{
		font-size: 48px;
	}

	.about-section .text-column{
		order: 0;
	}

	.blog-detail .lower-content h3,
	.group-title h3{
		font-size: 30px;
	}

	.contact-banner .banner-inner,
	.contact-banner .map-canvas{
		padding: 0;
		height: 500px;
	}
}

@media only screen and (max-width: 767px){	
	
	.banner-carousel .content-box h2{
		font-size: 48px;
	}

	.banner-carousel .content-box{
		padding: 80px 0px 150px;
		height: auto;
	}

	.fixed-gallery-box .gallery-item:nth-child(even) .image-box,
	.fixed-gallery-box .gallery-item:nth-child(odd) .image-box,
	.fixed-gallery-box .gallery-item .image-box{
		height: 280px !important;
	}

	.sec-title h2{
		font-size: 30px;
	}

	.video-section h2{
		font-size: 42px;
	}

	.video-section{
		padding: 150px 0px;
	}

	.featured-carousel-box .slide-item .image-column,
	.featured-carousel-box .slide-item .text-column{
		width: 100%;
		position: relative;
	}

	.featured-carousel-box .slide-item .image-box{
		display: block;
	}

	.featured-carousel-box .slide-item .image-layer{
		display: none;
	}

	.featured-carousel-box .owl-theme .owl-nav{
		width: 100%;
		bottom: 0;
		padding: 40px 0px 0px;
		text-align: center;
	}

	.featured-carousel-box .owl-theme .owl-nav .owl-prev,
	.featured-carousel-box .owl-theme .owl-nav .owl-next{
		margin: 0px 3px;
	}

	.banner-carousel .content-box h1{
		font-size: 64px;
	}

	.banner-carousel .content-box .upper-subtitle,
	.banner-carousel .content-box .lower-subtitle{
		font-size: 24px;
	}

	.parallax-section h2{
		font-size: 36px;
	}

	.parallax-section .text-box{
		font-size: 18px;
		font-weight: 300;
	}

	.accordion-box .block .acc-btn{
		padding-left: 20px;
		padding-right: 50px;
	}

	.accordion-box .block .icon{
		right: 20px;
	}

	.accordion-box .block .content{
		padding: 20px 20px;
	}

	.page-banner h1{
		font-size: 42px;
	}

	.feature-block .inner-box{
		text-align: center;
	}

	.game-details .lower-content .title-box .title,
	.game-details .lower-content .link-box{
		width: 100%;
	}

	.game-details .lower-content .title-box{
		margin-bottom: 20px;
	}

	.game-details h2{
		font-size: 24px;
	}

	.blog-detail .lower-content h3,
	.group-title h3{
		font-size: 24px;
	}

	.blog-detail .post-info{
		margin-bottom: 15px;
	}

	.author-box{
		padding: 30px;
	}

	.contact-banner .banner-inner,
	.contact-banner .map-canvas{
		padding: 0 !important;
		height: 400px;
	}

	.news-block-two .lower-content h3{
		font-size: 22px;
	}
}

@media only screen and (max-width: 599px){
	.main-header .header-top{
		text-align: center;
	}

	.main-header .header-top .top-right{
		width: 100%;
	}

	.main-header .header-top .top-left{
		display: none;
	}

	.main-header .header-top .info li{
		float: none;
		display: inline-block;
		margin: 0px 10px;
	}

	.banner-carousel .content-box h2{
		font-size: 36px;
	}

	.fixed-gallery-box .gallery-item:nth-child(even),
	.fixed-gallery-box .gallery-item:nth-child(odd),
	.fixed-gallery-box .gallery-item{
		width: 100% !important;
	}

	.fixed-gallery-box .gallery-item:nth-child(even) .image-box,
	.fixed-gallery-box .gallery-item:nth-child(odd) .image-box,
	.fixed-gallery-box .gallery-item .image-box{
		height: 420px !important;
	}

	.video-section h2{
		font-size: 36px;
	}

	.featured-carousel-box .slide-item .text-column .title{
		padding-right: 0;
	}

	.featured-carousel-box .slide-item .text-column .title .rating{
		position: relative;
		left: 0;
		top: 0;
	}

	.featured-carousel-box .slide-item .text-column .bottom-links li a{
		font-size: 13px;
		padding: 15px 5px;
	}

	.featured-carousel-box .slide-item .text-column .inner{
		padding:40px 20px 100px;
	}

	.featured-carousel-box .slide-item .text-column .title h3{
		font-size: 24px;
	}

	.banner-carousel .content-box h1{
		font-size: 48px;
	}

	.banner-carousel .content-box .upper-subtitle,
	.banner-carousel .content-box .lower-subtitle{
		font-size: 20px;
	}

	.banner-style-two .owl-nav{
		display: none;
	}

	.trailer-video-box .over-link .icon{
		-webkit-transform: scale(0.7);
		-ms-transform: scale(0.7);
		transform: scale(0.7);
	}

	.platofrm-block .inner{
		padding: 30px 20px;
		text-align: center;
	}

	.platofrm-block .icon-box{
		position: relative;
		left: 0;
		top: 0;
		margin: 0 auto 20px;
	}

	.page-banner .banner-inner{
		padding: 50px 0px 100px;
	}

	.page-banner h1{
		font-size: 36px;
	}

	.sidebar-widget{
		padding: 30px 20px;
	}

	.author-box .inner-box{
		padding-left: 0;
		text-align: center;
	}

	.author-box .thumb,
	.comments-area .comment-box .author-thumb{
		position: relative;
		left: 0;
		top: 0;
		margin: 0 auto 20px;
	}

	.group-title{
		text-align: center;
	}

	.comments-area .comment{
		padding-left: 0;
	}

	.comments-area .comment-box .reply-btn{
		position: relative;
		left: 0;
		top: 0;
		margin: 20px 0 0;
	}

	.comments-area .comment-box{
		padding-bottom: 30px;
		margin-bottom: 30px;
		text-align: center;
	}

	.comments-area .comment-box .name{
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 479px) {
	.main-header .header-upper .social-links{
		display: none;
	}

	.fixed-gallery-box .gallery-item:nth-child(even) .image-box,
	.fixed-gallery-box .gallery-item:nth-child(odd) .image-box,
	.fixed-gallery-box .gallery-item .image-box{
		height: 280px !important;
	}

	.video-section h2{
		font-size: 30px;
	}

	.reviews-section .carousel-outer .thumb-carousel-box{
		width: 280px;
	}

	.reviews-section .carousel-outer .thumb-carousel-box .thumb img{
		width: 81px;
		height: 81px;
	}

	.news-block .over-box h3{
		font-size: 20px;
	}

	.banner-carousel .content-box h1{
		font-size: 42px;
		display: block;
	}

}
.christmas_pack {
    color: #ffd700!important;
    font-family: 'Poppins', 'Open Sans';
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
    padding-left: 45px;
    font-size: 22px;
}
.christmas_pack span {
	padding-bottom: 8px;
    display: block;
}
.christmas_pack img {
	height: 20px;
    vertical-align: middle;
}
.game-title span {
    font-size: 15px;
    padding-top: 4px;
}

.avatar-a {
	width: 50px;
}
.avatar-a img {
	height: 50px;
    position: absolute;
    top: -30px;
}
.avatar-a img.av {
	padding: 5px;
}

.avatar-select img {
	max-width: 64px;
	max-height: 64px;
}

.avatar-select [type=radio] {
  position: absolute;
  opacity: 0;
}

.avatar-select [type=radio]+img {
  cursor: pointer;
  margin-right: 0.5rem;
}

.avatar-select [type=radio]:checked + img {
  outline: 5px solid orange;
}

.calendar-button {
	text-align: center;
    margin: 0 auto;
    background-color: transparent;
    color: #ff7f27!important;
    padding: 0 6px 0 6px;
    border-radius: 0.5rem;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #ff7f27;
    z-index: 10;
}

.calendar-button:hover {
	box-shadow: 0 10px 20px rgba(255, 127, 39, 0.19), 0 6px 6px rgba(255, 127, 39, 0.23);
}

.calendar-button:active {
	position: relative;
	top: 1px;
	right: 1px;
	box-shadow: 0 3px 6px rgba(255, 127, 39, 0.16), 0 3px 6px rgba(255, 127, 39, 0.23);
}