/* Core Styles Begin */
html {
	/* Adjust font size */
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	/* Font varient */
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	/* Smoothing */
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

*,*:focus,*:hover{
	outline:none;
}

iframe {
	max-width: 100% !important;
}

body, html {
	min-height: 100%;
	font-family: 'Roboto', sans-serif;
	color: #333;
}

body {
	background: url('../images/background.png');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

* {
	text-shadow: none !important;
	outline: none !important;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

:focus,
*:focus {
	outline: none;
}

input.disabled,
input[disabled] {
	opacity: .65;
	pointer-events: none;
	cursor: not-allowed;
}

.social-box {
	display: flex;
	margin: 15px 0;
}

.social-box .fb-share-button {
	margin-right: 5px;
}

.tooltip {
	/*position: relative;*/
}

.tooltip .tooltiptext {
	visibility: hidden;
	min-width: 140px;
	min-height: 45px;
	background-color: #7ab243;
	font-family: 'Roboto Slab', serif;
	color: #fff;
	text-align: center;
	justify-content: center;
	padding: 6px;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	top: -50px;
	align-items: center;
	display: flex;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	left: 50%;
	transform: translate(-50%, 0);
}

.tooltip .tooltiptext:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 15px 0 15px;
	border-color: #7ab243 transparent transparent transparent;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -15px;
	margin-left: auto;
	margin-right: auto;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

.wrapper {
	display: flex;
	min-height: 100vh;
	font-family: 'Roboto', sans-serif;
	padding: 0 30px;
	align-items:center;
	align-content:center;
	flex-direction: column;
	max-width: 1280px;
	margin: 0 auto;
}

.container {
	flex-grow: 1;
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1400px;
}

.container.game-detail {
	align-items: flex-start;
	flex-direction: row;
}

.container .content {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.container .content p {
	font-family: 'Roboto Slab', serif;
	color: #000;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1px;
	display: block;
	padding: 12px;
	width: 100%;
	max-width: 1170px;
	margin: 0;
}

.container .content .marker {
	font-size: 26px;
	font-weight: bold;
	padding: 22px 12px;
	width: 100%;
	max-width: 1170px;
	margin: 0;
}

.container .content > .marker:first-child {
	padding-top: 0;
}

.accept-cookies {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	background: #6a9c39;
	padding: 15px 35px;
	align-items: center;
	justify-content: center;
	border-top: 2px solid #ddd;
}

.accept-cookies span {
	font-family: 'Roboto Slab', serif;
	color: #fff;
	font-size: 14px;
	line-height: 21px;
	display: block;
	padding: 0 35px;
	letter-spacing: 1px;
	flex-grow: 1;
	text-align: center;
}

.accept-cookies button {
	font-family: 'Roboto Slab', serif;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	display: block;
	padding: 10px 15px;
	letter-spacing: 1px;
	text-align: center;
	border: none;
	border-radius: 14px;
	width: 160px;
	background: #f9cb04;
	-webkit-transition: all .35s ease-in-out;
	-moz-transition: all .35s ease-in-out;
	-ms-transition: all .35s ease-in-out;
	-o-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
}

.accept-cookies button:hover {
	border-radius: 4px;
	background: #000;
	color: #f9cb04;
}

.info-boxes {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.info-boxes div {
	width: 33.33%;
	padding: 0 10px;
	font-family: 'Roboto Slab', sans-serif;
}

.info-boxes div span {
	color: #666;
	font-size: 22px;
	text-shadow: none;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 7px;
	margin-top: 0;
}

.info-boxes div:nth-child(1) span {
	color: #9A046D;
}

.info-boxes div:nth-child(2) span {
	color: #0EA0D0;
}

.info-boxes div:nth-child(3) span {
	color: #6A9C39;
}

.info-boxes div p {
	color: #666;
	font-size: 13px;
	font-weight: normal;
	letter-spacing: 0;
	line-height: 22px;
}

.info-boxes div a {
	color: #666;
	font-size: 13px;
	font-weight: normal;
	letter-spacing: 0;
	text-decoration: underline;
}
/* Core Styles End */

/* Header Styles Begin */
header {
	width: 100%;
	display: flex;
	flex-direction: column;
	max-width: 1400px;
}

header .header-top {
	width: 100%;
	min-height: 121px;
	display: flex;
	flex-wrap: wrap;
}

header .header-top .social-media {
	flex-grow: 1;
	width: 100%;
	height: 50px;
	justify-content: flex-end;
	align-items: flex-start;
	display: flex;
}

header .header-top .social-media ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 4px;
	background-color: #a1dced;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

header .header-top .social-media ul li a {
	display: block;
	padding: 0 5px;
}

header .header-top .social-media ul li a img {
	width: 24px;
	border-style: none;
	box-shadow: none;
	outline: 1px solid transparent;
	content: "";
}

header .header-top .header-top-left {
	padding-right: 50px;
	display: flex;
	align-items: center;
}

header .header-top .header-top-left .logo {
	display: block;
}

header .header-top .header-top-left .logo img {
	max-width: 100%;
	margin-top: -10px;
}

header .header-top .header-top-right {
	flex-grow: 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

header .header-top .header-top-right .my-game-box {
	display: flex;
	background-color: #c79fbb;
	border-radius: 4px;
	position: relative;
	width: 200px;
	margin-right: 15px;
	background-image: url('../images/my-game-box-icon.png');
	background-repeat: no-repeat;
	background-position: 150px center;
	height: 40px;
}

header .header-top .header-top-right .my-game-box a {
	font-family: 'Roboto Slab', serif;
	color: #fff;
	font-size: 16px;
	letter-spacing: 1px;
	display: block;
	padding: 12px;
	width: 100%;
	height: 40px;
}

header .header-top .header-top-right .my-game-box a .badge {
	position: absolute;
	right: -6px;
	top: -6px;
	border-radius: 50%;
	background: #df3d2c;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	text-align: center;
	padding: 5px 7px;
	font-style: normal;
}

header .header-top .header-top-right .search-box form {
	display: flex;
}

header .header-top .header-top-right .search-box form input {
	font-family: 'Roboto Slab', serif;
	color: #fff;
	border: none;
	font-size: 16px;
	letter-spacing: 1px;
	display: block;
	padding: 0 12px;
	background-color:#6a9c39;
	height: 40px;
	border-radius: 4px;
}

header .header-top .header-top-right .search-box form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: white;
}

header .header-top .header-top-right .search-box form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: white;
	opacity:  1;
}

header .header-top .header-top-right .search-box form input::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: white;
	opacity:  1;
}

header .header-top .header-top-right .search-box form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: white;
}

header .header-top .header-top-right .search-box form input::-ms-input-placeholder { /* Microsoft Edge */
	color: white;
}

header .header-top .header-top-right .search-box input::placeholder { /* Most modern browsers support this now. */
	color: white;
}

header .header-top .header-top-right .search-box form button {
	font-family: 'Roboto Slab', serif;
	color: #fff;
	border: none;
	font-size: 16px;
	letter-spacing: 1px;
	display: block;
	padding: 0 12px;
	background-color:#6a9c39;
	background-image: url('../images/search-icon.png');
	background-position: center center;
	background-repeat: no-repeat;
	height: 40px;
	width: 40px;
	border-radius: 4px;
	margin-left: 4px;
	cursor: pointer;
}

header .header-bottom {
	display: flex;
	justify-content: center;
	padding-top: 15px;
	flex-direction: column;
	align-items: center;
}

header .header-bottom ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 15px 0;
	overflow: hidden;
	max-height: 110px;
	border: 1px solid transparent;
	transition: ease-in-out .3s;
	-webkit-transition: ease-in-out .3s;
	-moz-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
}

header .header-bottom ul.active {
	max-height: 320px;
	background: #fff;
	border-radius: 25px;
	border-color: #ddd;
}

header .header-bottom ul.active + .toggle-more + .mobile-menu-close span,
header .header-bottom ul.active + .toggle-more span {
	border: 1px solid #ddd;
	margin-top: -25px;
	background-color: #7ab243;
	color: #fff;
}

header .header-bottom .mobile-menu-close,
header .header-bottom .toggle-more,
header .header-bottom ul li {
	min-width: 80px;
	padding: 25px 8px;
}

header .header-bottom ul li {
	cursor: pointer;
}

header .header-bottom .mobile-menu-close,
header .header-bottom .toggle-more {
	padding: 0;
	z-index: 2;
}

header .header-bottom .mobile-menu-close,
header .header-bottom .toggle-more,
header .header-bottom ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #3b6115;
	position: relative;
	padding: 5px;
}

header .header-bottom .mobile-menu-close span,
header .header-bottom .toggle-more span,
header .header-bottom ul li a span {
	display: block;
	background: white;
	padding: 10px 5px;
	border-radius: 10px;
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	width: 100%;
	text-align: center;
	font-size: 14px;
	border: 1px solid transparent;
}

header .header-bottom ul li a span {
	border: solid transparent;
	border-width: 2px;
}

header .header-bottom ul li:hover a span {
	border-color: transparent;
	/*border-radius: 4px;*/
	background: #8ac94f;
	color: #fff;
}

header .header-bottom .mobile-menu-close:hover span,
header .header-bottom .toggle-more:hover span {
	border-color: #ddd;
	background-color: #7ab243;
	color: #fff;
}

header .header-bottom .mobile-menu-close span,
header .header-bottom .toggle-more span {
	padding: 15px;
}

header .header-bottom ul li a img {
	position: absolute;
	top: -32px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	border: solid transparent;
}

header .header-bottom ul li:hover a img {
	/*top: -40px;*/
}

header .header-bottom .mobile-menu-close {
	display: none;
}

header .mobile-menu {
	display: none;
	flex-grow: 1;
	justify-content: flex-end;
	padding-top: 10px;    
}

header .mobile-menu img {
	height: 32px;
}
/* Header Styles Begin */

/* Game List Styles Begin */
.game-list {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin: 15px 0;
}

.game-list .title {
	font-family: 'Roboto Slab', serif;
	font-size: 21px;
	display: flex;
	width: 100%;
	padding: 10px 0;
	align-items: center;
	word-break: break-word;
	font-weight: normal;
	margin: 0;
}

.game-list .blog-title.title {
	font-size: 32px;
	padding-bottom: 15px;
	border-bottom: 2px solid #ddd;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.game-list.related-games {
	padding-top: 62px;
}

.game-list.related-games .title {
	justify-content: center;
	margin-bottom: 10px;
}

.game-list .title img {
	padding:0 10px;
}

.game-list ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	/*padding: 15px 0;*/
}

.game-list ul li {
	min-width: 185px;
	width: 16.66%;
	margin: 0;
}

.game-list ul.my_game_box li {
	margin: 0;
	padding: 5px;
}

.related-games.game-list ul {
	padding: 0 15px;
}

.related-games.game-list ul li {
	min-width: unset;
	margin: 5px 0;
}

.game-list ul.blog-list {
	justify-content: space-between;
}

.game-list ul.blog-list > li {
	width: calc(50% - 7.5px);
	margin-bottom: 15px;
}

.game-list.blog-detail ul.blog-list,
.game-list.blog-detail ul.blog-list > li {
	width: 100%;
}

.game-list.blog-detail ul.blog-list > li {
	width: 100%;
	background: white;
	padding: 15px;
}

.game-list.blog-detail ul.blog-list > li img {
	max-width: 100%;
	border: 4px solid #c6d5b4;
	border-radius: 7px;
	box-shadow: 0 5px 8px 0px rgb(199 159 187 / 55%);
}

.game-list.blog-detail ul.blog-list > li > img {
	max-width: 100%;
	margin:0 auto;
	display: block;
	border: 8px solid #c6d5b4;
	border-radius: 14px;
	box-shadow: 0 5px 5px 0px #c79fbb;
}

.game-list.blog-detail ul.blog-list > li > div {
	font-family: 'Roboto Slab', serif;
}

.game-list.blog-detail > ul.blog-list > li > a {
	flex-direction: column;
	flex-wrap: wrap;
	border: 1px solid #ddd !important;
	background: white;
	cursor: auto;
}

.game-list.blog-detail > ul.blog-list > li > a > img {
	padding: 15px;
	max-width: 100%;
	margin: 0;
	align-self: center;
}

.game-list ul.blog-list > li > a {
	flex-direction: row;
	flex-wrap: nowrap;
	border-color: #ddd;
}

.game-list ul.blog-list > li > a > img {
	margin: 0;
	margin-left: 5px;
	max-width: 240px;
}

.game-list ul.blog-list > li > a > div {
	padding: 15px;
	word-break: break-word;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
	text-align: left;
	font-size: 14px;
	color: #777;
	line-height: 24px;
}

.game-list.blog-detail > ul.blog-list > li > a > div {
	padding: 15px;
	word-break: break-word;
	display: flex;
	justify-content: initial;
	flex-direction: column;
	align-items: initial;
	flex-grow: 1;
	text-align: initial;
	font-size: initial;
	color: initial;
	line-height: initial;
	width: 100%;
}

.pagination ul {
	justify-content: flex-end;
}

.pagination ul li {
	min-width: unset;
	width: 60px;
	text-align: center;
	color: #9A046D;
	font-family: 'Jost', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 0;
	cursor: pointer;
	margin: 4px 8px;
	border: 3px solid #9A046D;
}

.pagination ul li.active,
.pagination ul li:not(.active):hover {
	background: #9A046D;
	color: #fff;
}

span.date,
.game-list ul.blog-list li a div span {
	font-weight: normal;
	color: #000;
	font-size: 22px;
}

span.date,
.game-list ul.blog-list li a div span.date {
	color: #777;
	font-size: 14px;
}

.blog-detail span.date {
	flex-grow: 1;
	text-align: right;
}

.related-games.game-list ul li a {
	min-height: unset;
}

.related-games.game-list ul li a span {
	font-size: 14px;
}

.game-list ul > li > a {
	/*background: #7ab243;*/
	padding: 5px;
	min-height: 240px;
	border-radius: 25px;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	color: #000;
	align-items: center;
	border: 4px solid transparent;
	min-height: 270px;
}

.game-list ul > li:hover > a {
	border-color: #7ab243;
	background: #fff;
	border-radius: 0;
}

.game-list ul.my_game_box li:hover a {
	border-color: #db17a0;
	background: #fff;
	border-radius: 0;
}

.game-list ul > li > a > img {
	display: block;
	max-width: 100%;
	    min-width: 173px;
	/*max-height: 200px;*/
	margin-bottom: 10px;
	border-radius: 14px;
}

.game-list ul > li:hover > a > img {
	border-radius: 0;
}

.game-list ul li a span {
	font-family: 'Jost', sans-serif;
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	padding-bottom: 5px;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: capitalize;
	word-break: break-word;
}
/* Game List Styles End */

/* Footer Styles Begin */
footer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-top: 50px;
}

footer:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: -23px;
	width: 100%;
	/* border-radius: 100%; */
	border: 2px solid #b2b3b3;
	border-width: 0px 0px 2px 0;
	/*border-radius: 25%;*/
	height: 25px;
}

footer ul {
	margin: 25px auto 50px auto;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

footer ul li {
	margin: 4px;
}

footer ul li a {
	font-family: 'Jost', sans-serif;
	display: block;
	background: #b2b3b3;
	padding: 8px;
	color: #daf5fd;
	border-radius: 0 0 4px 4px;
	font-size: 14px;
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-ms-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

footer ul li:hover a {
	background: #848585;
}
/* Footer Styles End */

/* Game Holder Styles Begin */
.game-holder {
	width: calc(100% - 200px);
	width: -webkit-calc(100% - 200px);
	width: -moz-calc(100% - 200px);
	display: flex;
	flex-direction: column;
	padding-right: 15px;
}

.game-holder iframe {
	width: 100% !important;
}

.game-holder .game-top {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.game-holder .game-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, .25);
	padding: 8px;
	border-radius: 4px;
	margin: 8px 0;
}

.game-holder .game-buttons li {
	margin: 0 4px;
}

.game-holder .game-buttons li a {
	background: rgba(0, 0, 0, .25);
	padding: 8px;
	border-radius: 4px;
	display: block;
}

.game-holder .game-buttons li a {
	position: relative;
}

.game-holder .game-buttons li.in_game_box a {
	background: #7ab243;
}

.game-holder .game-title {
	flex-grow: 1;
	font-family: 'Roboto Slab', serif;
	display: block;
	color: #7ab243;
	border-radius: 0 0 4px 4px;
	font-size: 24px;
	padding-left: 15px;
	text-transform: uppercase;
	word-break: break-word;
	font-weight: normal;
}

.game-holder .game-information {
	width: 100%;
	font-family: 'Roboto Slab', sans-serif;
	display: block;
	color: #000;
	font-size: 15px;
	line-height: 20px;
	margin: 15px 0;
	font-weight: normal;
	word-break: break-word;

}

.game-holder .game-description {
	width: 100%;
	font-family: 'Roboto Slab', serif;
	display: block;
	color: #000;
	font-size: 15px;
	line-height: 21px;
	margin: 15px 0;
	font-weight: 500;
	word-break: break-word;
}

.game-list.blog-detail ul.blog-list li a div table {
	max-width: calc(100vw - 92px);
}

.game-holder .game-description table {
	max-width: calc(100vw - 45px);
}

.no-blog-found,
.no-game-found {
	width: 100%;
	text-align: center;
	font-family: 'Jost', sans-serif;
	display: block;
	background: #b2b3b3;
	padding: 20px;
	margin: 15px auto;
	color: #daf5fd;
	border-radius: 0 0 4px 4px;
	font-size: 24px;
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-ms-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	font-weight: normal;
}

.toggle-embed-code {
	font-family: 'Jost', sans-serif;
	display: block;
	background: #848585;
	padding: 15px;
	color: #daf5fd;
	font-size: 15px;
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-ms-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.toggle-embed-code.active {
	background: #7ab243;
	color: white;
}

.embed-code {
	padding: 15px;
	background: #7ab243;
	border: 1px solid #ddd;
	color: white;
	max-width: 100%;
	font-size: 14px;
	margin: 10px auto;
	display: none;
}

.embed-code.active {
	display: block;
}

.related-games {
	width: 200px;
	flex-direction: column;
}

.related-games ul li {
	width: 100%;
}

.related-games ul li a {
	min-height: 200px;
}

.related-games ul li a img {
	max-height: 150px;
}

.related-games .title {
	background: #7ab243;
	border-radius: 4px;
	font-size: 18px;
	width: calc(100% - 15px);
	width: -webkit-calc(100% - 15px);
	width: -moz-calc(100% - 15px);
	margin: 0 auto;
	margin-bottom: -10px;
	color: #fff;
}

.my-game-box-remove {
	font-family: 'Roboto Slab', serif;
	color: #fff;
	border: none;
	font-size: 14px;
	letter-spacing: 1px;
	display: block;
	padding: 0 12px;
	background-color: #6a9c39;
	height: 40px;
	border-radius: 4px;
	width: 100%;
	margin: 5px 0;
	text-transform: uppercase;
}

.my-game-box-remove:hover {
	background: #db17a0;
	color: #fff;
}

.game-holder .game-bottom-wrapper {
	display: flex;
}

.game-holder .game-bottom-wrapper .game-bottom {
	width: 100%;
}

.game-holder .game-bottom-wrapper .game-ad {
	min-height: 100px;
}
/* Game Holder Styles End */


/**
 * Uğur Biçer www.ugurbicer.com.tr
 * @since 22.02.2021
 */

.moregameslink {
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 10px 0;
	margin: 10px 0;
}

.moregameslink .morelink {
	min-width: unset;
	width: auto;
	text-align: center;
	color: #9A046D;
	font-family: 'Jost', sans-serif;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 20px;
	cursor: pointer;
	margin: 4px 8px;
	border: 3px solid #9A046D;
	float: right;
}

.moregameslink .morelink:hover {
	background-color: #9A046D;
	color: #FFFFFF;
}

#paginationList li a {
	box-sizing: border-box;
	position: relative;
	display: block;
	line-height: 20px;
	color: inherit;
	padding: 5px 0;
	margin: 0px;
	min-height: unset;
	background: unset;
	border: unset;
}

#paginationList li {
	padding: 0px;
}

#paginationList {
	padding: 0px;
	display: flex;
}

#paginationList span {
	width: auto;
	display: block;
	padding: 0px 10px;
	font-size: 20px;
	color: #9A046D;
	font-stretch: expanded;
}

#paginationListMobile li a {
	position: relative;
	display: block;
	line-height: 20px;
	color: inherit;
	padding: 0px;
	margin: 0px;
	min-height: unset;
	background: unset;
	border: unset;
}

#paginationListMobile {
	padding: 0px;
	display: none;
}

#paginationListMobile span {
	width: auto;
	display: block;
	padding: 0px 10px;
	font-size: 20px;
	color: #9A046D;
	font-stretch: expanded;
}

/**
 * Uğur Biçer www.ugurbicer.com.tr
 * @since 29.05.2021
 */

.game-details-ads {
	width: 100%;
	height: auto;
	min-height: 120px;
	margin-top: 30px;
	margin-bottom: 20px;
}

.fixedcontainer {
	display: none;
  position: absolute;
	box-sizing: border-box;
	overflow: hidden;
	height: auto;
	max-height: 100vh;
	top: 378px;
}

.fixedcontainer.sticky {
	position: fixed;
	top: 0;
}

.fixedcontainer#left-fixed {
	left: 0px;
}

.fixedcontainer#right-fixed {
	right: 0px;
}


@media screen and (min-width: 1500px) {
	.fixedcontainer {
		display: block;
		width: 120px;
	}

	.fixedcontainer.game-page {
		display: none;
	}

	.fixedcontainer.game-page#right-fixed {
		display: block;
		width: 120px;
	}
}

@media screen and (min-width: 1600px) {
	.fixedcontainer {
		display: block;
		width: 170px;
	}

	.fixedcontainer.game-page#right-fixed {
		display: block;
		width: 150px;
	}
}

@media screen and (min-width: 1820px) {
	.fixedcontainer {
		display: block;
		width: 300px;
	}

	.fixedcontainer.game-page {
		display: block;
		width: 150px;
	}

	.fixedcontainer.game-page#right-fixed {
		width: 300px;
	}
}

@media screen and (min-width: 2120px) {
	.fixedcontainer {
		display: block;
		width: 300px;
	}

	.fixedcontainer.game-page {
		display: block;
		width: 300px;
	}
}