/****************/
/*   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, p1, 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,F
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;
}

input[type=submit]{
    cursor: pointer;
}

/****************/
/*   FONTS
/****************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700|Raleway:300,400');

/****************/
/*   GENERAL
/****************/
html,
body{
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

h1{
    color: #444444;
    /*font-family: Montserrat;*/
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

h2{
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 300;
}

p{
    color: #3F474F;
    font-size: 11px;
    line-height: 135%;
    padding-bottom: 15px;
}

p1{
    color: #3F474F;
    font-size: 11px;
    line-height: 135%;
    padding-bottom: 15px;
}

p.disclaimer{
    color: #17192B;
    opacity: .5;
}

.main {
    /* background: url(../pix/background.jpg) center no-repeat;
    background-size: cover; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* font-family: 'Raleway', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.inner{
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding: 0px 8px;
}

/****************/
/*   HEADER
/****************/
.header{
    background: -webkit-linear-gradient(left, #ba1f00 0%, #ff6a29 100%);
    background: -o-linear-gradient(left, #ba1f00 0%, #ff6a29 100%);
    background: linear-gradient(to right, #ba1f00 0%, #ff6a29 100%);
    height: 50px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    margin-bottom: 20px;
}
.header .logo{
    display: block;
    width: 99px;
    height: auto;
    margin: auto;
}
/****************/
/*   LANDING
/****************/
.button-container{
    display: block;
    width: 150px;
    margin: 10px auto;
}
.button-container .background-games{
    width: 100%;
    max-width: 300px;
}

.button-container .button-kaufen{
    width: 145px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -56%);
        -ms-transform: translate(-50%, -56%);
            transform: translate(-50%, -56%);
}

.button-container .button-blank {
    display: block;
    width: 230px;
    height: 66px;
    background: url(../pix/button-nl.png) no-repeat;
    background-size: auto auto;
    background-size: cover;
    margin: 15px auto;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    padding: 26px 0px 0px 40px;;
    color: #fff;
}

.button-container .button {
    display: block;	
    background: #00FD00;
    border: 1px solid #00FD00;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 5px;
    outline: none;
    padding: 10px 30px;
    text-decoration: none;
}


.btn-cancel-container{
    max-width: 640px;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 999;
}

.btn-cancel-container a.btn-cancel{
    background: url(../pix/close-contrast.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 100;
}

/****************/
/*   LANDING 3G
/****************/
.button-kaufen-3g{
    width: 150px;
}

img.game-preview{
    width: 90%;
    max-width: 540px;
    margin: auto
}

.details ul{
    display: block;
    max-width: 220px;
    font-size: 8px;
    margin: 16px auto;
    text-align: left;
}

.details ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3px;
}

.details ul li span:first-child{
    font-weight: 600;
    width: 40%;
    margin-right: 5px;
}

.details ul li span:last-child{
    font-weight: 300;
}

/*********************
/*	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: #333;
	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: #333;
	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: #333;
	color: #fff;
}


/****************/
/*   POPUP ANIMATION, TRIGGER AND GENERAL SETTINGS
/****************/
@-webkit-keyframes popup{
    0%{
        opacity: 0;
        -webkit-transform: translate(-50%, -20%);
                transform: translate(-50%, -20%);
    }

    50%{
        opacity: 1;
    }

    100%{
        visibility: visible;
        -webkit-transform: translate(-50%, -25%);
                transform: translate(-50%, -25%);
    }
}
@keyframes popup{
    0%{
        opacity: 0;
        -webkit-transform: translate(-50%, -20%);
                transform: translate(-50%, -20%);
    }

    50%{
        opacity: 1;
    }

    100%{
        visibility: visible;
        -webkit-transform: translate(-50%, -25%);
                transform: translate(-50%, -25%);
    }
}

.popup-trigger{
    -webkit-animation: popup .4s forwards;
            animation: popup .4s forwards;
}

.popup-container{
    -webkit-box-shadow: 0 0 15px rgba(00, 00, 00, .25);
            box-shadow: 0 0 15px rgba(00, 00, 00, .25);
    min-width: 225px;
    max-width: 225px;
    position: fixed;
    top: 150px;
    left: 50%;
    z-index: 100;
}

.popup-container .popup_pin_handynumber,
.popup-container .popup_pincode{
    background: rgba(255,255,255, 0.95);
    border-radius: 5px;
    font-size: 8px;
    padding: 13px 12px;
    text-align: left;
}

/****************/
/*   POPUP #1 PIN_CODE
/****************/
.popup-container .popup_pincode p{
    font-weight: 300;
    padding-bottom: 12px;
}

.popup-container .popup_pincode ul{
    margin-bottom: 12px;
}

.popup-container .popup_pincode ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3px;
}

.popup-container .popup_pincode ul li span:first-child{
    font-weight: 600;
    width: 40%;
    margin-right: 5px;
}

.popup-container .popup_pincode ul li span:last-child{
    font-weight: 300;
}

.popup-container .popup_pincode form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
    overflow: hidden;
}

.popup-container .popup_pincode form input[type=text]{
    border: 1px solid #DDDDDD;
    border-right: none;
    color: #525252 !important;
    border-radius: 5px 0 0 5px;
    outline: none;
    padding: 10px;
    width: 60%;
}

.popup-container .popup_pincode form input[type=text]::-webkit-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    opacity: .5;
}

.popup-container .popup_pincode form input[type=text]:-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    opacity: .5;
}

.popup-container .popup_pincode form input[type=text]::-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    opacity: .5;
}

.popup-container .popup_pincode form input[type=text]::placeholder{
    font-weight: 300;
    font-size: 12px;
    opacity: .5;
}

.popup-container .popup_pincode form input[type=submit]{
    background: -webkit-linear-gradient(#92c644 0%, #6cb305 100%);
    background: -o-linear-gradient(#92c644 0%, #6cb305 100%);
    background: linear-gradient(#92c644 0%, #6cb305 100%);
    border: 1px solid #92c644;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 40%
}

/****************/
/*   POPUP #2 PIN_HANDYNUMBER
/****************/
.popup-container .popup_pin_handynumber p{
    font-weight: 300;
    padding-bottom: 12px;
    text-align: center;
}

.popup-container .popup_pin_handynumber ul{
    margin: 0 auto 12px;
    display: block;
}

.popup-container .popup_pin_handynumber ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 3px;
}

.popup-container .popup_pin_handynumber ul li span:first-child{
    font-weight: 600;
    width: auto;
    margin-right: 5px;
}

.popup-container .popup_pin_handynumber ul li span:last-child{
    font-weight: 300;
}

.popup-container .popup_pin_handynumber form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100% !important;
    overflow: hidden;
}

.popup-container .popup_pin_handynumber 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(100% - 22px);
}

.popup-container .popup_pin_handynumber form input[type=text]::-webkit-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    opacity: .5;
}

.popup-container .popup_pin_handynumber form input[type=text]:-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    opacity: .5;
}

.popup-container .popup_pin_handynumber form input[type=text]::-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    opacity: .5;
}

.popup-container .popup_pin_handynumber form input[type=text]::placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    opacity: .5;
}

.popup-container .popup_pin_handynumber form input[type=submit],
.popup-container .popup_pin_handynumber form input[type=reset]{
    background: -webkit-linear-gradient(#92c644 0%, #6cb305 100%);
    background: -o-linear-gradient(#92c644 0%, #6cb305 100%);
    background: linear-gradient(#92c644 0%, #6cb305 100%);
    border: 1px solid #92c644;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 100%
}

.popup-container .popup_pin_handynumber form input[type=reset]{
    background: #BBBBBB;
    border: 1px solid #BBBBBB;
}

/****************/
/*   STATIC
/****************/
.static-content{
    flex: 1;
    padding: 0 8px;
}

/****************/
/*   FOOTER
/****************/
.footer{
    background: #40434D;
}
.footer ul {
    padding: 5px;
    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;
}

.footer ul li{
    margin: 5px 5px;
}

.footer ul li a{
    color: #fff;
    font-size: 10px;
    text-decoration: none;
}

.button-new {
    display: block;
    width: 230px;
    height: 66px;
    background: url(../pix/button-nl.png) no-repeat;
    background-size: auto auto;
    background-size: cover;
    margin: 9px 72px 26px -42px ;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    padding: 26px 0px 0px 40px;;
    color: #fff;
}

/****************/
/*   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;
	background: #333;
	color: #fff;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding: 6px 7px;
}

.main-nav li.active a {
	color: #FFF;
	background: rgba(51, 51, 51, .5);
}

.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 0 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: #000;
}

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

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

.horoscope-details {
	padding: 0 10px;
}

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

.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 0 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: #000000;
	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;
}
