/****************/
/*   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.mobile_hub_4_u {
    --bg-color: #212679;
    --text-color: #fff;
    --main-color: #07D2B6;
    --main-font: 'Barlow', sans-serif;

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

body.mobile_hub_4_u h1 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 13px;
}

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

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

body.mobile_hub_4_u .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;
}

.page, .static {
    flex: 1;
}

body .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;
}


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

body.mobile_hub_4_u .header .header__logo {
    background: url('../pix/logo__mobile_hub_4_u.png') center no-repeat;
    background-size: contain;
    display: block;
    width: 150px;
    height: 67px;
    margin: auto;
}

/****************/
/*   Back button
/****************/
body.mobile_hub_4_u .back {
    display: inline-block;
    font-weight: 500;
    margin: 0 0 25px;
    text-transform: uppercase;
}

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

body.mobile_hub_4_u .hero:after {
    content: '';
    background: url('../pix/hero_shadow.png') center no-repeat;
    background-size: contain;
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    z-index: 1;
}

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

body.mobile_hub_4_u .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;
}

body.mobile_hub_4_u .hero .hero__image:before {
    background: url('../pix/hero_dummy_left.png') bottom left no-repeat;
    background-size: 80px 100px;
    content: '';
    position: absolute;
    left: -15px;
    bottom: -30px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

body.mobile_hub_4_u .hero .hero__image:after {
    background: url('../pix/hero_dummy_right.png') top right no-repeat;
    background-size: 80px 100px;
    content: '';
    position: absolute;
    right: -15px;
    top: -30px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/****************/
/*   Popup X button
/****************/

body.mobile_hub_4_u .popup-landing.hide{
display: none;
transition: .2s;
}

body.mobile_hub_4_u .popup-landing-close{
cursor: pointer;
position: absolute;
top: 10px;
right: 10px;
width: 20px;
height: 20px;
}

body.mobile_hub_4_u .popup-landing-close img{
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
}


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

body.mobile_hub_4_u .option .option__title {
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 15px;
    text-align: center;
}

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

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

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

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

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

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


body.mobile_hub_4_u footer.footer ul li a {
    background: #2E338C;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px;
}

body.mobile_hub_4_u footer.footer ul a {
    background: #2E338C;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px;
    height: 30px;
}


/****************/
/*   Static
/****************/
body.mobile_hub_4_u .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: #fff;
	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: #fff;
	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: #2E338C;;
	color: #fff;
}


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

/****************/
/*   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: var(--main-color);
	color: #FFF;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding: 6px 7px;
}

.main-nav li.active a {
	color: var(--main-color);
	background: #FFF;
}

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

.horoscope-wrapper .horoscope-item h3 a {
	color: #FFF;
	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;
	color: #FFF;
}

.quiz-wrapper .quiz-item h3 a{
	color: #FFF;
	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;
}
