@charset "UTF-8";
/* Single Page Styles */

#single_header {
	display: none;
	height: auto;
	background: rgba(0, 0, 0, 0.57) url('images/sample_header.jpg') no-repeat top 40px center fixed;
	background-size: auto 500px;
	background-blend-mode: multiply;
	position: relative;
	padding: 0;
}

#single_header img {
	width:100%;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	margin: 0 !important;
}

#single_header:before {
	position: absolute;
	width: calc(50% - 15px);
	left: 0;
	bottom: 0;
	border-bottom: 20px solid var(--bg-color);
	border-right: 20px solid transparent;
	display: block;
	content:" ";
}

#single_header:after {
	position: absolute;
	width: calc(50% - 15px);
	bottom: 0;
	right: 0;
	border-bottom: 20px solid var(--bg-color);
	border-left: 20px solid transparent;
	display: block;
	content:" ";
}

#single_body > div {
	padding: 0 20px;
	margin: 30px auto;
}

#single_body {
    padding-top: 10px;
}

#game_info {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.game_info_title .page-title {
	color: var(--text-color-llight);
	font-size: 26pt;
}


.game_info_title {
	font-size: 9pt;
}


#game_info .game_info_icon {
	align-self: flex-start;	
}

#game_info .game_info_icon img {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	margin: 0 0 10px;
}

#game_info .game_info_meta {
	align-self: flex-start;
	flex: 1;		
	padding: 0 20px;
	font-size: 10pt;
}

#game_info .game_info_btn {
	display: flex;
	width: 100%;
	margin-top: 10px;
	text-align: center;
	flex-direction: column;
	font-size: 10pt;
	align-content: flex-end;
	align-self: center;
}

#game_info .downloadbtn {
	display:  block;
	font-size: 18pt;
	padding: 15px 30px;
	
}

#game_download .downloadbtn {
	font-size: 20pt;
	padding: 15px 30px;
}

.downloadbtn>.filesize {
	white-space: nowrap;
	font-size: 12pt;
}

#single_body .downloadbtn {
	border: none;
	border-radius: 5px;
	color: white;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
	margin: auto;
	width: auto;
	max-width: 250px;
	background-color: #ffc107;
	border-color: #ffc107;
	background-image: linear-gradient(180deg,rgba(255,233,77,1) 0%,rgba(237,144,61,1) 75%);
	background-color: #ffe94d;
}


#single_body .downloadbtn:hover {
	background: rgba(255,233,77,1);
}

#game_disclaimer {
	font-size: 10pt;
}

.game_info_meta h2 {
	margin-bottom: 5px;
}

.game_info_meta .meta-label {
	color: gray;
}
.game_info_meta p {
	margin-bottom: 0 !important;
}

#game_description {
	margin-right: 1rem;
    margin-left: 1rem;
}

#game_screenshots {
	text-align: center;
}

#game_screenshots .carousel-box {
	margin: auto;
	overflow: hidden;
}

#game_screenshots .carousel-box div {
	
}

#game_screenshots img {
	width: 100%;
	height: auto;
}

#game_screenshots .tns-nav button {
    width: 25px;
    height: 5px;
    margin: 5px 2px;
    border: none;
    background: var(--theme-color-1);
    opacity: 0.7;
}
#game_screenshots .tns-nav button:hover {
    
    background: var(--theme-color-1);
    opacity: 1;
}

#game_screenshots .tns-nav button.tns-nav-active {
    background: var(--theme-color-1);
    border-color: var(--theme-color-1);
    box-shadow: 0 0 5px 1px var(--theme-color-1);
    opacity: 1;
}

#game_screenshots .tns-nav {
    margin-top: 10px;
}

#game_screenshots {
    position: relative;
}

#game_screenshots .tns-controls {
    position: absolute;
    top: calc(50% - 45px); left: 0;
    width: 100%;
    
}

#game_screenshots .tns-controls button[data-controls="prev"] {
    float: left;
}
#game_screenshots .tns-controls button[data-controls="next"] {
    float: right;
}

#game_screenshots .tns-controls button {
    /* width: 30px; */
    height: auto;
    padding: 10px 10px 10px 10px;
    text-align: center;
    font-size: 16pt;
    margin: 5px 2px;
    border: none;
    color: var(--text-color-dark);
    background: white;
}

#game_screenshots .tns-controls button:hover {
    color: var(--theme-color-2);
}


/* HOW TO PLAY */

.htp-grid {
	padding: 0;
	display: flex;
	width: auto;
	justify-content: center;
	flex-wrap: wrap;
}

.htp-grid > .htp-item {
	width: 100%;
	margin: 5px;
	overflow: hidden;
	background: white;
	color: var(--text-color-dark);
	border-radius: 10px;
	padding: 10px 0;
}

#game_tutorial .htp-item .htptut_step1,
#game_tutorial .htp-item .htptut_step2,
#game_tutorial .htp-item .htptut_step3 {
	width: 100%;
	height: 200px;
	margin: 5px 0;
}

#game_tutorial .htp-item .tut_screen {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#game_tutorial .htp-item .htptut_step3 {
	position: relative;
}
		
#game_tutorial .htp-item .tut_icon {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 24px;
	height: 24px;
	object-fit: cover;
	border-radius: 2px;
	border: 2px solid #31bbf1;
}
		
#game_tutorial .htp-item .htptut_step3 .tut_screen {
	position: absolute;
	top: 0;
	left: 0;
}

#game_tutorial .htp-item .tut_thumbnail {
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 125px);
	width: 250px;
	height: 150px;
	object-fit: cover;
}

/* SYSTEM REQUIREMENTS AND UNINSTALL */



.requirements-area {
    display: flex;
    flex-direction: column;
}

.requirements-area .requirementsteps {
    flex-direction: column;
    align-items: start;
    padding-right: 25px;
    flex: 1;
    margin-bottom: 15px;
}

.requirementsteps .columns {
	display: flex;
    flex-direction: row;
	align-items: center;
	margin-bottom: 5px;
	text-align: center;
	position: relative;
}


.requirementsteps .columns img {
	margin-right: 10px;
	width: 50px;
	height: 50px;
}

.requirementsteps .columns .info {
    text-align: left;
}

.requirementsteps .columns strong {
	font-weight: bold;
	color: var(--theme-color-2);
}


.uninstall {
	flex: 1;
}

.uninstall li {
    margin-bottom: 15px;
}

.uninstall li a {
	color: #fff;
}

.uninstall li a:hover {
    color: var(--theme-color-1);
}


/* SUPPORT PAGE */

#support-page ul {
    margin-left: 25px;
    list-style: disc;
}

#support-page ul li {
    margin-bottom: 15px;
}

/* CONTENT RELATED GAMES */


.content-related-games {
	padding: 30px 0 50px;
}

.related-games-box {
	text-align: center;
	height: 290px;
	min-width: 100%;
	overflow: hidden;
	display: block;
}

.content-related-games .box {
    padding: 10px;
}

.content-related-games .item {
	text-align: center;
	background: #fff;
	display: inline-block;
	padding: 10px 10px;
	height: 275px;
	width: 135px;
}

.content-related-games .item .game_icon {
	width: 130px;
    height: 130px;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}

.content-related-games .item .caption h5 .title {
	color: #935100;
    text-shadow: none;
    font-weight: 600;
    /* border: 1px solid; */
    display: block;
    width: 100%;
    max-width: 150px;
    height: 80px;
    overflow: hidden;
    margin: 0 auto;
    line-height: 20px;
	font-size: 15px;
}

 .content-related-games .item .stars span {
     font-size: 18px;
 }


.content-related-games .tns-controls {
	margin: 10px auto;
	text-align: center;
}

.content-related-games .tns-controls button {
    height: 30px;
	width: 60px;
	margin: 5px;
	font-size: 10pt;
	background: transparent;
	border-radius: 5px;
	color: var(--theme-color-1);
	border: 2px solid var(--theme-color-1);
}

.content-related-games .tns-controls svg.tns-arrow-right,tns-arrow-left {
    fill: var(--theme-color-1);
    height: 15px;
    width: 15px;
    margin-top: 4px;
}

.content-related-games .tns-controls button:active {
	border: 2px solid var(--theme-color-2);
}

/* Bottom Related Games */
 
.related-games {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.related-games .item {
    text-align: center;
    width: 150px;
    margin-bottom: 60px;
}

.related-games .item .caption h5 {
    padding: 0 10px;
}

.related-games .item .caption h5 a {
    font-size: 1.1rem;
    
}

/* Related Articles */
.related-articles {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
}

.related-articles .related-article-title {
    width: 100%;
    text-align: left;
}

.related-article-items {
    justify-content: center;
}

.related-article-items .item {
    width: 300px;
    margin: 15px;
}

.related-article-items .item .meta {
	font-size: 10pt;
}

/* RESPONSIVE */
/* Smaller Screen */

/* Larger than mobile */
@media (min-width: 400px) {
	.related-games .item {
		width: 160px;
	}
}

/* Larger than phablet */
@media (min-width: 550px) {
    .content-related-games .item {
	    text-align: center;
	    background: #fff;
	    display: inline-block;
	    padding: 20px 10px;
	    height: 280px;
	    width: 165px;
    }
    
	.related-games .item {
		width: 200px;
	}
}


/* Larger than tablet */
@media (min-width: 750px) {

	
	#single_header {
		display: block;
	}
	
	.htp-grid > .htp-item {
		flex: 1;
		width: auto;
	}
	
	.requirements-area {
        flex-direction: row;
	}
	
	.requirements-area .requirementsteps {
	    border-right: 1px solid grey;
	}
	
	.uninstall {
        padding-left: 25px;
    }
    
    .uninstall .box a {
        text-align: left;
    }
}


/* Larger than desktop */
@media (min-width: 1000px) {

	
	#game_info .game_info_icon {
		align-self: center;	
	}
	
	#game_info .game_info_icon img {
		width: 200px;
		height: 200px;
	}
	
	#game_info .game_info_meta {
		align-self: center;	
	}
	
	#game_info .game_info_btn {
		width: auto;
		align-self: center;
	}
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
	
	.content-related-games .tns-controls button:hover {
		border: 2px solid var(--theme-color-2);
	}
	
}

