/****************/
/*   RESET
/****************/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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-item {
    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 {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100% !important;
}

/****************/
/*   GENERAL
/****************/

body.game_zone {
    --bg-color: linear-gradient(180deg, rgba(255, 242, 219, 1) 0%, rgba(255, 251, 240, 1) 100%);
    --text-color: #392715;
    --main-color: #F98F2E;
    --main-font: 'Spartan', sans-serif;
    --footer-link-bg: #DDCCB9;
    --footer-link-color: #825F3C;

    color: var(--text-color);
    font-family: var(--main-font);
    font-size: 12px;
}

body.game_zone h1 {
    color: var(--footer-link-color);
    font-size: 9px;
    font-weight: 900;
    margin: 0 0 13px;
}

body.game_zone p {
    font-size: 10px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 25px;
}

body.game_zone a {
    color: var(--main-color);
    text-decoration: underline;
}

body.game_zone .main {
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    max-width: 640px;
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 15px;
    position: relative;
}

/****************/
/*   Header
/****************/
body.game_zone .header {
    text-align: center;
    padding: 20px 15px 20px;
}

body.game_zone .header .header__logo {
    background: url('../pix/logo__game_zone.png') center no-repeat;
    background-size: contain;
    display: block;
    width: 139px;
    height: 64px;
    margin: auto;
}

/****************/
/*   Back button
/****************/
body.game_zone .back {
    color: var(--footer-link-color);
    display: inline-block;
    font-weight: 700;
    font-size: 9px;
    margin: 0 0 25px;
    text-transform: uppercase;
}

/****************/
/*   Landing
/****************/
body.game_zone .hero {
    position: relative;
}

body.game_zone .hero .hero__image {
    position: relative;
    text-align: center;
}

body.game_zone .hero .hero__image img {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 90%;
    margin: auto auto 15px;
    position: relative;
    z-index: 2;
}

/****************/
/*   Option
/****************/
body.game_zone .option {
    max-width: 320px;
    margin: auto;
}

body.game_zone .option .option__title {
    font-size: 9px;
    font-weight: 900;
    margin: 0 0 15px;
    text-align: center;
}

body.game_zone .option a.button {
    background: var(--main-color);
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 500;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin: 0 15px 8px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
}

body.game_zone .option a.button:last-of-type {
    margin-bottom: 15px;
}

body.game_zone .option p {
    text-align: center;
}


.button-container form input[type="text"] {
    border: 1px solid #DDDDDD;
    color: #525252 !important;
    border-radius: 5px;
    margin-bottom: 5px;
    outline: none;
    padding: 10px;
    text-align: center;
    width: calc(63% - 22px);
}

.button-container .btn-kaufen {
    background: #F55453;
    border: 1px solid #F55453;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 59%;
    text-align: center;
}

/****************/
/*   Footer
/****************/
body.game_zone footer.footer {
    padding: 0 15px;
}

body.game_zone footer.footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0 0 10px;
}

body.game_zone footer.footer ul li {
    margin: 0 10px 15px;
}

body.game_zone footer.footer ul li a {
    background: var(--footer-link-bg);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: var(--footer-link-color);
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px;
}

/****************/
/*   Static
/****************/
body.game_zone .static-content {
    margin-top: 20px;
    text-align: center;
}

/*********************
/*	CONTENT
/********************/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1.title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    	-webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
    	-webkit-box-orient: horizontal;
    	-webkit-box-direction: normal;
        -ms-flex-direction: row;
    flex-direction: row;
    	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.title a{
    padding: 0 20px;	
}

.title img{
    width: 130px;
}

.videos-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding: 15px 5px 5px;
}

.videos-wrapper .item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
	padding:0 5px;
	margin-bottom: 10px;

}

.videos-wrapper .item .img {
	position: relative;
	height: 160px;
	margin: 0 0 10px;
}

.videos-wrapper .item a {
	text-decoration: none;
}

.videos-wrapper .item .img .btn-play {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background: url(../pix/icon-play.png) center no-repeat;
	background-size: 26px;
}

.videos-wrapper .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.videos-wrapper .item h1 {
	padding: 0 5px;
	color: #825F3C;
	font-size: 12px;
}


.pag {
	padding: 5px 10px 15px;
}

.pag ul {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	-ms-flex-align: center;
    align-items: center;
	-ms-flex-pack: center;
    justify-content: center;
	text-align: center;
}

.pag ul li {
	margin: 0 5px 5px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

.pag ul li a {
	display: block;
	text-decoration: none;
	color: #825F3C;
	font-size: 15px;
	padding: 3px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	min-width: 21px;
}

.pag ul li.active a {
	background: #DDCCB9;;
	color: #825F3C;
}

.logo1{
    display: block;
    width: 99px;
    height: auto;
    padding: 26px 0 27px;
    margin: auto;
}

.is-blanchedalmond {
    background: #ffebcd !important;

}

/****************/
/*   NEW CSS
/****************/

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	text-align: center;
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.main-nav li {
	flex-grow: 1;
	flex-shrink: 0;
	padding: 0 3px;
}

.main-nav li a {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none!important;
	color: var(--footer-link-color);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding: 6px 7px;
}

.main-nav li.active a {
	background: var(--footer-link-bg);
}

.videos-wrapper .item.video-item .img a {
	background: url(../pix/icon-play-new.png) center no-repeat;
	background-size: 36px;
}

.video-details .video img,
.video-details .video video,
.video-details .video iframe {
	width: 100%!important;
	height: auto!important;
	display: block!important;
}

.horoscope-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 15px -10px 5px;
}

.horoscope-wrapper .horoscope-item {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
	padding: 0 10px;
	text-align: center;
	margin-bottom: 20px;
}

.horoscope-wrapper .horoscope-item .img {
	margin-bottom: 10px;
}

.horoscope-wrapper .horoscope-item .img img {
	display: black;
	width: 100%;
	height: auto;
}

.horoscope-wrapper .horoscope-item h3 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 5px;
	text-transform: lowercase;
	color: #392715;
}

.horoscope-wrapper .horoscope-item h3 a {
	color: #392715;
	text-decoration: none!important;
}

.horoscope-wrapper .horoscope-item p {
	font-size: 12px;
	margin: 0;
	
}

.horoscope-details .heading {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.horoscope-details .heading .img {
	width: 30%;
	margin-right: 20px;
	flex-shrink: 0;
}

.horoscope-details .heading .img img {
	width: 100%;
	height: auto;
	display: block;
}

.horoscope-details .heading h1 {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 5px;
}

.horoscope-details .heading p {
	margin: 0;
}

.horoscope-details .horoscope-text {
	text-align: center;
}

.horoscope-details .horoscope-text p {
	font-size: 14px;
	line-height: 1.5;
}

.quiz-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 15px -10px 5px;
}

.quiz-wrapper .quiz-item {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
	padding: 0 10px;
	text-align: center;
	margin-bottom: 20px;
}

.quiz-wrapper .quiz-item .img {
	margin-bottom: 6px;
}

.quiz-wrapper .quiz-item .img img {
	display: black;
	width: 100%;
	height: auto;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.quiz-wrapper .quiz-item h3 {
	font-size: 14px;
	font-weight: 700;
	margin: 0;
}

.quiz-wrapper .quiz-item h3 a{
	color: #392715;
	text-decoration: none!important;
}

.gamesguides-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 15px 0 5px;
}

.gamesguides-wrapper .gamesguides-item {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
	padding: 0 10px;
	text-align: center;
	margin-bottom: 20px;
}

.gamesguides-wrapper .gamesguides-item .img {
	margin-bottom: 10px;
}

.gamesguides-wrapper .gamesguides-item .img img {
	display: black;
	width: 100%;
	height: auto;
}

.gamesguides-wrapper .gamesguides-item h3 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 5px;
	text-transform: lowercase;
}

.gamesguides-wrapper .gamesguides-item h3 a {
	color: #333;
	text-decoration: none!important;
}

.gamesguides-wrapper .gamesguides-item p {
	font-size: 12px;
	margin: 0;
	
}
.gamesguides-details {
	padding: 0 15px;
}

.gamesguides-details .heading {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	text-align: left;
}

.gamesguides-details .heading .img {
	width: 30%;
	margin-right: 20px;
	flex-shrink: 0;
}

.gamesguides-details .heading .img img {
	width: 100%;
	height: auto;
	display: block;
}

.gamesguides-details .heading h1 {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 5px;
}

.gamesguides-details .heading p {
	margin: 0;
	font-size: 12px;
}

.gamesguides-details .gamesguides-text {
	text-align: center;
}

.gamesguides-details .gamesguides-text p {
	font-size: 14px;
	line-height: 1.5;
}


/****************/
/*   INPUT FIELDS
/****************/

.input-field [type="text"] {
    border: 1px solid #DDDDDD;
    color: #525252 !important;
    border-radius: 5px;
    margin-bottom: 5px;
    outline: none;
    padding: 10px;
    text-align: center;
    width: calc(100%);
}

.input-field-pin{
    width: calc(100%);
    margin: 0px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-appearance: none;
}

.btn-kaufen {
    background: #F55453;
    border: 1px solid #F55453;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 100%;
    text-align: center;
}