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

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

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

body {
    background: #FFF;
    color: #666;
    font-family: 'Asap', sans-serif;
    font-weight: 500;
    margin-bottom:50px !important;
}

.main {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.header {
    position: relative;
    z-index: 10;
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */
    padding: 10px;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.25);
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.25);
}

.header .logo {
    display: block;
    width: 110px;
    height: 30px;
    background: url(../img/logo.png) no-repeat;
    background-size: cover;
    margin: 0 auto;
}

/****************/
/*   ENTER PAGES
/****************/

.enter-page .main-img {
    position: relative;
}

.enter-page .main-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.enter-page .main-img .price-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 10px;
    -webkit-box-shadow: 4px 0px 15px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 4px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 4px 0px 15px 0px rgba(0,0,0,0.08);
}

.enter-page .main-img .price-container h1 {
    font-size: 22px;
    color: #0092D8;
    margin: 0 0 5px;
}

.enter-page .main-img .price-container h1 span {
    color: #FF5926;
    font-size: 26px;
    font-weight: 700;
}

.enter-page .main-img .price-container p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.enter-page .main-img .price-container a.standard-link {
    font-size: 13px;
    color: #666;
    margin: 10px 0 0;
    display: block;
}

.enter-page .enter-button {
    display: inline-block;
    color: #fff!important;
    font-size: 20px!important;
    font-weight: 700!important;
    text-decoration: none;
    text-transform: uppercase;
    background: rgb(81,205,36); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(81,205,36,1) 0%, rgba(63,162,26,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(81,205,36,1) 0%,rgba(63,162,26,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(81,205,36,1) 0%,rgba(63,162,26,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51cd24', endColorstr='#3fa21a',GradientType=0 ); /* IE6-9 */
    border: 2px solid #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 12px 18px;
    min-width: 230px;
    position: absolute;
    bottom: 125%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.enter-page form  {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 125%;
    margin: 0 auto;
    text-align: center;
}

.enter-page form .input-wrapper {
    display: inline-block;
    -webkit-box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.65);
    -moz-box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.65);
    box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.65);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.enter-page form input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #ddd;
    text-align: center;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 0px 4px rgba(255,255,255,1);
    box-shadow: 0px 0px 0px 4px rgba(255,255,255,1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 12px 10px;
    font-size: 11px;
    min-width: 270px;
}

.enter-page form input::-webkit-input-placeholder {
    color: #aaa;
}

.enter-page form input:-moz-placeholder {
    color: #aaa;
}

.enter-page form input::-moz-placeholder {
    color: #aaa;
}

.enter-page form input:-ms-input-placeholder {
    color: #aaa;
}

.enter-page form .refresh-link {
    margin-bottom: 11px;
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.74) url(../img/icon-refresh.png) 8px center no-repeat;
    background-size: 12px;
    padding: 6px 10px 6px 28px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.enter-page form .enter-button {
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.enter-page .enter-button .badge {
    width: 70px;
    height: 70px;
    background: url(../img/badge.png) no-repeat;
    background-size: cover;
    position: absolute;
    right: -20px;
    top: -50px;
}

.enter-page .price-container .card {
    background: -moz-linear-gradient(top, rgba(0,146,216,0.94) 0%, rgba(0,82,121,0.94) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,146,216,0.94) 0%,rgba(0,82,121,0.94) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,146,216,0.94) 0%,rgba(0,82,121,0.94) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f00092d8', endColorstr='#f0005279',GradientType=0 ); /* IE6-9 */
    position: absolute;
    left: 0;
    width: 33%;
    bottom: 100%;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
    text-decoration: none;
    color: #fff;
    padding: 10px 10px 5px;
    margin: 0!important;
}

.enter-page .price-container .card.last {
    left: auto;
    right: 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
}

.enter-page .price-container .card.green {
    background: -moz-linear-gradient(top, rgba(80,202,35,0.94) 0%, rgba(66,170,28,0.94) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(80,202,35,0.94) 0%,rgba(66,170,28,0.94) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(80,202,35,0.94) 0%,rgba(66,170,28,0.94) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f050ca23', endColorstr='#f042aa1c',GradientType=0 ); /* IE6-9 */
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    padding: 15px 10px;
}

.enter-page .price-container .card p {
    font-size: 11px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 14px;
}

.enter-page .price-container .card p b {
    font-weight: 700;
}

.enter-page .price-container .card h1 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0;
}

.disclaimer {
    padding: 10px;
}

.disclaimer p {
    font-size: 13px;
    text-align: center;
}

/****************/
/*   HOME
/****************/

.main-carousel {
    margin: 0!important;
}

.main-carousel .item {
    position: relative;
}

.main-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
}

.main-carousel .item a.play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/icon-play.png) center no-repeat;
    background-size: 56px;
}

.main-carousel .slick-dots {
    bottom: 0;
    padding: 0 0 10px;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000',GradientType=0 ); /* IE6-9 */
}

.main-carousel .slick-dots li {
    width: 7px;
    height: 7px;
    margin: 0 2px;
}

.main-carousel .slick-dots li button {
    width: 7px;
    height: 7px;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}

.main-carousel .slick-dots li button:before {
    display: none;
}

.main-carousel .slick-dots li.slick-active button {
    background: #28B96B;
}


/****************/
/*   NAVIGATION
/****************/

.nav {
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.08);
}

.nav ul li {
    display: inline-block;
    width: 32.5%;
    text-align: center;
}

.nav ul li a {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #aaa;
    padding: 14px 8px;
}

.nav ul li a:after {
    display: none;
    width: 12px;
    height: 12px;
    content: '';
    background: #28B96B;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: -6px;
    margin-left: -6px;
}

.nav ul li.active a {
    color: #28B96B;
}

.nav ul li.active a:after {
    display: block;
}


/****************/
/*   GAMES
/****************/

.games-wrapper {
    overflow: hidden;
    padding: 15px 5px 0;
}

.game {
    float: left;
    width: 49%;
    padding: 0 10px;
    margin-bottom: 20px;
    position: relative;
}

.game a.game-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
	background: url(../img/icon-play.png) no-repeat;
	background-size: 56px;
	    background-position: 50% 30%;
}

.game a.single-game-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 94px;
    z-index: 2;
	background: url(../img/icon-play.png) center no-repeat;
	background-size: 56px;
}

.game img {
    width: 100%;
    height: auto;
    display: block;
}

.game .info {
    overflow: hidden;
    padding: 4px 5px;
    margin-bottom: 8px;
}

.game .rating {
    overflow: hidden;
    float: left;
}

.game .rating li {
    float: left;
    margin-right: 2px;
}

.game .rating li a {
    display: block;
    width: 8px;
    height: 8px;
    background: url(../img/icon-star.png) no-repeat;
    background-size: cover;
}

.game .rating li.active a {
    background: url(../img/icon-star-active.png) no-repeat;
    background-size: cover;
}

.game .category {
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    float: right;
    margin: 0;
}

.game.arcade .info {
    background: #EE820C;
}

.game.action .info {
    background: #E42431;
}

.game.app-games .info {
    background: #4ECC20;
}

.game.strategy .info {
    background: #7B3488;
}

.game.sport .info {
    background: #00D9D9;
}

.game h1 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 5px;
}

.block-with-text {
    font-size: 13px;
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 1.2em;
    text-align: justify;
    padding-right: 1em;
}
.block-with-text:before {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0;
}
.block-with-text:after {
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: white;
}

.game.big {
    width: 100%;
    float: none;
    clear: both;
}

/****************/
/*   GAME DETAILS
/****************/

.game-details .game {
    float: none;
    width: 100%;
    padding: 0;
}

.game-details .game .info {
    padding: 4px 20px;
    margin-bottom: 20px;
}

.game-details .game h1 {
    padding: 0 20px;
    text-align: center;
    margin: 0 0 15px;
}

.game-details .game p {
    text-align: center;
    padding: 0 20px;
}

.more-games {
    font-size: 13px;
    color: #28B96B;
    font-weight: 700;
    text-align: center;
    padding: 15px 20px 5px;
}

.more-games i {
    display: block;
    width: 7px;
    height: 12px;
    background: url(../img/arrow-down.png) no-repeat;
    background-size: cover;
    margin: 5px auto 0;
}

/****************/
/*   PAGINATION
/****************/

.pag {
    position: relative;
    border-top: 1px solid #eee;
    text-align: center;
    padding: 7px 15px;
}

.pag .arrow {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -15px;
}

.pag .arrow.back {
    left: 15px;
    background: url(../img/arrow-back.png) center no-repeat;
    background-size: 12px 7px;
}

.pag .arrow.next {
    right: 15px;
    background: url(../img/arrow-next.png) center no-repeat;
    background-size: 12px 7px;
}

.pag .arrow.inactive {
    opacity: 0.7;
    pointer-events: none;
}

.pag ul {
    display: block;
    padding: 0 35px;
}

.pag ul li {
    display: inline-block;
    margin-right: 5px;
}

.pag ul li:last-child {
    margin-right: 0;
}

.pag ul li a {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #313131;
    text-decoration: none;
    text-align: center;
    padding: 10px 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 30px;
    text-align: center;
}

.pag ul li.active a {
    background: #28B96B;
    color: #fff;
}


/****************/
/*   CATEGORY
/****************/

.category-item {
    position: relative;
}

.category-item img {
    width: 100%;
    height: auto;
    display: block;
}

.category-item a.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.29);
}

.category-item h1 {
    text-align: center;
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.category-list .category-item {
    margin-bottom: 1px;
}

.category-list .category-item:last-child {
    margin-bottom: 0;
}

/****************/
/*   STATIC
/****************/

.static {
    padding: 25px 25px 50px;
    text-align: center;
}

.static .back {
    display: block;
    font-size: 13px;
    color: #26B86B;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 20px;
}

.static h1 {
    font-size: 14px;
    color: #111;
    font-weight: 700;
    margin: 0 0 20px;
}

.static p {
    font-size: 13px;
    line-height: 18px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
    min-width: 120px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 20px 2px;
}

.btn.yes {
    background: #26B86B;
    color: #fff;
}

.btn.no {
    background: #ddd;
    color: #444;
}

/****************/
/*   FOOTER
/****************/

.footer {
    text-align: center;
    overflow: hidden;
    background: #313131;
    position: fixed;
    /*height: 30px; */
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
	z-index: 9999;
}


.footer ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer ul li a {
    display: block;
    color: #FFF;
    font-weight: 700;
    font-size: 10px;
    text-decoration: none;
    padding: 10px 0;
    text-transform: uppercase;
}

.static .footer {
    margin: 0 -15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}


/****************/
/*   Static Pages
/****************/

.textWrap{
    float:left;
    width:94%;
    min-height:390px;
    margin:0 3%;
	padding-top: 15px;
	padding-bottom: 60px;
}

.textWrap h4 {
	color: #fff;
}
.textWrap .headline{
    font-weight:400;
    color:#6b6b6b;
    line-height: 40px;
    font-size: 18px;
    margin: 0 20px;
    font-family: Arial;
    font-style:normal;
    font-weight:normal;
    margin:20px 0;
    width:100%;
    text-align:center;

}

.textWrap p, .search-no-results p{
    color:#6C6C6C;
    font-size:12px;
    text-align:center;
    width:100%;
	line-height: 1.4em;
	padding-bottom: 7px;
}

.textWrap ul {
    margin-left: 10px;
}
.textWrap ul li {
    font-size: 12px;
    list-style-type: disc;
}

.textWrap form{
    width:100%;
    margin:25px 0;
}

.textWrap form input{
    width:100%;
    text-align:center;
    font-size:19px;
    border-radius:8px;
    padding:12px 0;
    border:1px solid #666;
    color:#6b6b6b;
    margin-bottom:10px;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
}

.textWrap .btn{
    background: rgb(227,227,227);
    background: -moz-linear-gradient(top, rgba(227,227,227,1) 0%, rgba(207,207,207,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(227,227,227,1)), color-stop(100%,rgba(207,207,207,1)));
    background: -webkit-linear-gradient(top, rgba(227,227,227,1) 0%,rgba(207,207,207,1) 100%);
    background: -o-linear-gradient(top, rgba(227,227,227,1) 0%,rgba(207,207,207,1) 100%);
    background: -ms-linear-gradient(top, rgba(227,227,227,1) 0%,rgba(207,207,207,1) 100%);
    background: linear-gradient(to bottom, rgba(227,227,227,1) 0%,rgba(207,207,207,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3e3e3', endColorstr='#cfcfcf',GradientType=0 );
    border:1px solid #666;
    border-radius:8px;
    font-family: 'bemioregular';
    font-style:italic;
    color:#6b6b6b;
    text-shadow:0px 1px 1px #FFF, 0px -1px 0px #666;
    padding:12px 10px;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    text-align:center;
    font-size: 17px;
    box-shadow: inset 0px 1px 2px #FFF;
    text-decoration: none;
	display: block;
}

.textWrap .actionBtn{
    background:#C9C2AA;
    border:1px solid #666;
    border-radius:8px;
    font-family: 'bemioregular';
    color:#6b6b6b;
    text-shadow:0px 1px 1px #FFF, 0px -1px 0px #666;
    padding:12px 10px;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    text-align:center;
    font-size: 17px;
    text-decoration: none;
	display: block;
}

.textWrap .centeredContactData{
    width:100%;
    text-align:center;
    font-size:12px;
    color:#6b6b6b;
    margin:15px 0;

}

.textWrap .centeredContactData h3{
    font-family: 'bemioregular';
    font-weight:normal;
}

.textWrap .centeredContactData b{
    color:#000;
}

.textWrap  .zurStartSeite{
    width:100%;
    float:left;
    margin:10px 0;
}

.textWrap  .jaNeinWrap{
    width:240px;
    margin:10px auto;
    display:block;
}

.textWrap  .jaNeinWrap .jaBtn, .textWrap  .jaNeinWrap .neinBtn {
    width:85px;
    display: inline-block;
    margin: 6px;
}

.textWrap table{
    max-width: 100%;
    width: 100%;
    border: transparent;
    font-size: 13px;
}

.textWrap table td{
    padding: 4pxx;
    border-bottom: 1px solid #ccc;
    font-size:12px;
    color:#6C6C6C;
}

.grecaptcha-badge {
	display: none;
}

@media screen and (max-width: 450px) {
	.game h1 {
	    height: 28px;
	    overflow: hidden;
	}
	.game {
		height: 175px;
	}
	.game.big {
		height: auto;
	}
	.game-details .game {
		height: auto;
	}
}