html,
body {
    margin: 0;
    padding: 0;
    background-color: #222222;
    height: 100%;
    min-height: 100%;
}

body {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 300;
}

.hide {
    display: none !important;
}

h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 100%;
}

h2 {
    font-size: 280%;
}

h3 {
    font-size: 160%;
}

h2+h3 {
    line-height: 130%;
    margin-top: 10px;
}

.headlineHolder {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.headlineHolder .button {
    margin-left: 10px;
}

p {
    line-height: 140%;
}

.marginTop {
    margin-top: 20px;
}

button.button {
    margin: 0;
    border: 0;
    padding: 0;
    font: inherit;
    background-color: transparent;
    cursor: pointer;
    overflow: visible;
    outline: none;
}

button.button:active {
    outline: none;
}

button.button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.buttonContainer {
    margin-top: 20px;
}

.buttonContainer.centered {
    text-align: center;
}

.buttonContainer.topMargin {
    margin-top: 20px;
}

.button {
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #8a8a8a;
    border-radius: 10px;
    color: #474747;
    font-weight: 400;
    font-size: 120%;
    white-space: nowrap;
}

.button.noBorder {
    border: 0;
    box-shadow: none;
}

.button:hover {
    background-color: #8a8a8a;
    color: #fff;
}

.button.green {
    border-color: #276600;
    color: #276600;
}

.button.green:hover {
    background-color: #276600;
    color: #fff;
}

.button.green.withIcon svg {
    fill: #276600;
}

.button.green.withIcon:hover svg {
    fill: #fff;
}

.button.facebook {
    border-color: #03A9F4;
    color: #03A9F4;
}

.button.facebook:hover {
    background-color: #03A9F4;
    color: #fff;
}

.button.facebook.withIcon svg {
    fill: #03A9F4;
}

.button.facebook.withIcon:hover svg {
    fill: #fff;
}

.button.white {
    border-color: #fff;
    color: #fff;
}

.button.white:hover {
    background-color: #fff;
    color: #333;
}

.button.filled {
    background-color: #fff;
    color: #333 !important;
}

.button.filled:hover {
    color: #fff !important;
    background-color: transparent !important;
}

.button.cta {
    border-color: #276600;
    background-color: #03A9F4;
    color: #fff;
}

.button.cta:hover {
    background-color: #fff;
    color: #276600;
}

.button.cta.orange {
    border-color: #333;
    background-color: #333;
}

.button.cta.orange:hover {
    background-color: #fff;
    color: #333;
}

.button.withIcon {
    padding-right: 55px;
    position: relative;
}

.button.withIcon svg {
    position: absolute;
    right: 10px;
    top: 8px;
    height: 22px;
}

.button+.button {
    margin-left: 20px;
}

article.dark .button {
    color: #fff;
    border-color: #fff;
}

article.dark .button:hover {
    background-color: #fff;
    color: #333;
}

article.dark .button.cta {
    border-color: #dbdee3;
}

article.dark .button.cta.play {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 140%;
    line-height: 100%;
    animation: .99s ease-in-out 0s infinite normal none running scales;
    -webkit-animation: .99s ease-in-out 0s infinite normal none running scales;
}

@keyframes scales {
    0%, 100% {
        transform: scale(0.8);
    }

    25%, 75% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }
}

@-webkit-keyframes scales {
    0%, 100% {
        transform: scale(0.8);
    }

    25%, 75% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }
}

article.dark .button.cta.play svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    margin-left: 20px;
}

article.dark .button.cta:hover {
    background-color: #6f658f;
    color: #fff;
    border-color: #fff;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
}

@media only screen and (min-width: 641px) {
    h2 {
        font-size: 400%;
    }
    h3 {
        font-size: 220%;
    }
}

ul.textList {
    margin-bottom: 20px;
    font-size: 120%;
    font-weight: 400;
}

ul.textList.skills {
    list-style: none;
    padding-left: 0;
}

ul.textList.skills li .skill {
    display: inline-block;
    vertical-align: middle;
    width: 140px;
    text-transform: uppercase;
}

ul.textList.skills li .stars {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
}

ul.textList.skills li .stars img {
    width: 20px;
}

ul.textList.jobs li a {
    font-size: 120%;
    text-decoration: none;
}

ul.textList.jobs li a span {
    text-decoration: underline;
}

ul.textList.jobs li a small {
    display: block;
    color: #666;
}

ul.textList li+li {
    margin-top: 10px;
}

ul.textList+h3 {
    margin-top: 40px;
}

.videoContainer {
    display: block;
    margin: 40px auto 0 auto;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.videoContainer a {
    display: block;
}

.videoContainer img {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.backLink {
    display: block;
    padding-left: 30px;
    margin: 0 0 20px 0;
    font-size: 120%;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    position: relative;
}

.backLink svg {
    position: absolute;
    left: 0;
    top: -4px;
    display: block;
    width: 26px;
    height: 26px;
    fill: #333;
}

.imageHolder img {
    width: 100%;
    margin-bottom: 10px;
}

.desktopOnly {
    position: relative;
    display: block;
    padding: 5px;
    border-radius: 10px;
    max-width: 450px;
    margin: 0 auto 10px auto;
    color: #fff;
    background-color: #ffab33;
    text-align: left;
    font-size: 100%;
    display: flex;
    align-items: center;
}

.desktopOnly p {
    margin: 0;
}

.desktopOnly svg {
    display: block;
    fill: #fff;
    width: 20px;
    margin: 0 10px;
    flex-shrink: 0;
}

.searchContainer {
    margin: 10px;
    text-align: center;
    width: 0%;
    transition: width 0.25s linear;
}

.searchContainer .searchHolder {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.searchContainer .searchHolder svg.search {
    fill: #666;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 22px;
}

.searchContainer .searchHolder em {
    position: absolute;
    left: 50px;
    top: 13px;
    transition: all 0.3s;
    color: #333;
    pointer-events: none;
    font-size: 130%;
    font-style: normal;
}

.searchContainer .searchHolder input {
    padding: 14px 50px;
    width: 100%;
    border: 0;
    background: none;
    outline: none;
    box-sizing: border-box;
    color: #333;
    font-size: 120%;
}

.searchContainer .searchHolder .x {
    display: none;
    position: absolute;
    top: 12px;
    right: 7px;
}

.searchContainer .searchHolder .x svg {
    width: 20px;
    fill: #fff;
}

.searchContainer .searchHolder .searchResults {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.searchContainer .searchHolder .searchResults ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 5px 0;
}

.searchContainer .searchHolder .searchResults ul li a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 120%;
    color: #333;
}

.searchContainer .searchHolder .searchResults ul li a img {
    flex-shrink: 0;
    width: 30px;
    margin-right: 10px;
}

.searchContainer .searchHolder .searchResults ul li+li {
    border-top: 1px solid #ccc;
}

.searchContainer .searchHolder.typing em {
    left: 0;
    top: -20px;
    font-size: 110%;
    color: #999;
}

.searchContainer .searchHolder.typing .x {
    display: block;
}

header .searchContainer {
    margin: 0;
    text-align: center;
}

header .searchContainer .searchHolder {
    width: 100%;
    max-width: 550px;
    transition: width 0.5s;
    background-color: #dedede;
}

header .searchContainer .searchHolder svg.search {
    top: 10px;
    left: 7px;
    width: 18px;
    fill: #999;
}

header .searchContainer .searchHolder input {
    padding: 11px 10px;
}

header .searchContainer .searchHolder em {
    left: 30px;
    top: 10px;
    font-weight: 400;
    color: #444;
}

header .searchContainer .searchHolder .x {
    top: 11px;
    right: 5px;
}

header .searchContainer .searchHolder .x svg {
    width: 16px;
    fill: #666;
}

header .searchContainer .searchHolder .searchResults {
    width: 250px;
    text-align: left;
}

header .searchContainer .searchHolder .searchResults ul {
    display: block;
}

header .searchContainer .searchHolder .searchResults ul li {
    width: 100%;
}

header .searchContainer .searchHolder .searchResults ul li+li {
    margin-left: 0;
}

header .searchContainer .searchHolder.typing input {
    color: #333;
}

header .searchContainer .searchHolder.typing svg.search {
    display: none;
}

header .searchContainer .searchHolder.typing em {
    color: #333;
}

.bigSlider {
    position: relative;
    overflow: hidden;
    margin: -20px -10px 20px -10px;
}

.bigSlider .arrow {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    z-index: 100;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    fill: #fff;
    cursor: pointer;
}

.bigSlider .arrow.left {
    left: 10px;
}

.bigSlider .arrow.right {
    right: 10px;
}

.bigSlider .arrow:hover {
    opacity: 1;
}

.bigSlider ul.slides {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bigSlider ul.slides li {
    width: 100%;
    position: absolute;
    top: 0;
    left: -100%;
}

.bigSlider ul.slides li .imageHolder {
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.bigSlider ul.slides li .imageHolder img {
    width: 100%;
    margin: 0;
    height: 190px;
}

.bigSlider ul.slides li .imageHolder .marker {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    width: 35%;
}

.bigSlider ul.slides li .imageHolder .marker.bottomRight {
    top: inherit;
    bottom: 0;
}

.bigSlider ul.slides li .imageHolder .marker.bottomLeft {
    top: inherit;
    right: inherit;
    bottom: 0;
}

.bigSlider ul.slides li .imageHolder .marker.topLeft {
    right: inherit;
    left: 0;
}

.bigSlider ul.slides li .imageHolder .marker img {
    margin-bottom: -3px;
}

.bigSlider ul.slides li .text {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 10px;
    background-color: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.bigSlider ul.slides li .text h3 {
    font-size: 200%;
    padding-right: 10px !important;
}

.bigSlider ul.slides li .text h3 small {
    display: block;
    margin-top: 5px;
    font-size: 70%;
    opacity: 0.7;
}

.bigSlider ul.slides li .text h3,
.bigSlider ul.slides li .text p {
    color: #fff;
    margin: 0;
    padding: 0;
}

.bigSlider ul.slides li .text .inner div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bigSlider ul.slides li .text .inner div p {
    padding-right: 10px;
}

.bigSlider ul.slides li.active {
    left: 0%;
}

.bigSlider ul.slidesPreview {
    position: absolute;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 15px 0 10px 0;
    list-style: none;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bigSlider ul.slidesPreview li {
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.bigSlider ul.slidesPreview li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 34px;
    font-size: 130%;
    font-weight: 700;
    color: #fff;
    line-height: 90%;
}

.bigSlider ul.slidesPreview li.active {
    position: relative;
    border: 4px solid rgb(199 210 211 / 70%);
}

.bigSlider ul.slidesPreview li.active:after {
    top: -24px;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: rgba(223, 230, 231, 0.7);
    border-width: 10px;
    margin-left: -10px;
}

.bigSlider ul.slidesPreview li+li {
    margin-left: 10px;
}

.allGamesHolder {
    margin: 40px 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

#gameSubmission {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 10px 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000020;
    background: rgba(0, 0, 0, 0.8);
}

#gameSubmission .logo {
    display: block;
    margin: 10px auto;
    text-indent: -10000px;
    width: 23px;
    height: 31px;
    background: url("../img/gameboard.cc - Dive into the pool of happiness | Online Game | Free GameFLogo_onLight.svg") no-repeat 0 0;
    background-size: auto 31px;
}

#gameSubmission .closeText {
    display: block;
    text-align: center;
    color: #333;
}

#gameSubmission .close {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 110;
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTdGMTM5RjYzNTRGMTFFNkJGQUVFQ0IxNTQyOTg3QjYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTdGMTM5RjczNTRGMTFFNkJGQUVFQ0IxNTQyOTg3QjYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBN0YxMzlGNDM1NEYxMUU2QkZBRUVDQjE1NDI5ODdCNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBN0YxMzlGNTM1NEYxMUU2QkZBRUVDQjE1NDI5ODdCNiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Po+QIpgAAAFNUExURdIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANIAANUgHdtTUd5mZeF3d+SGhuqjou2wr++9vPHJyffg4Prr6/z19f///x6fouIAAABhdFJOUwABAgQFBgcKCw4PEh8hJCUqLzA3OEJDREVGR0hLTU9QUVJTVFVWWFlaYGJjaXN0dXZ+hYaHjo+QkZmam5ydnp+grK28vb7BwsXGx8jJ0dLT1NXm5+ju7/Dz9vf5+vv8/f7wJLn7AAADuElEQVRo3sXa6UMSURAA8KemeBSemJWVCmJ5X2V4i3krKKnggTGQa2ry/39MEGVZ3jHz9qHzUXb9LcfumzczjOGixts9ElqNxo6SkDyKRVdDI93eGmYwan2TGydQHicbk75aI0J9/0oCxJFY6a93S7TPyYSCM9fuQqju2wRcbAWq9Ygq/z7gY99fpWG0bgItNlupRMP3JFAjOdNAMj7GQCdin/HEq28p0IxZD9J4vQ36sedFGW+PwU0cdyGMwXNwF+eDSmMsBW4jNaYwJsBETEiNUTAToxLja8oQkhJ/L74zMBVnPoHhjYO5iPPvF88emIw97r0fArMR4hg9YDrKn5ZNh8aRwyYnsgDmY8FhdKQqgKQ6StfzXe5R1l0G9d+uBcftlqz7fr6RzaKU6/vjLO4rAXvusy8wUEr+uOwVN4exZUq94nPVSuG47E2a82JfEeGtt5eFc0WfhNPgv5ftYi7KOzl9+3S2hTJuuK8//cAWQVspGrdp7gGLj3m7IKdGKEoDEoWcv190mUpFbQAEH5Cw8MNI30kVjAHhvFEn2YFkZArKgERdftGV/UAlCs4A6MwhU6ClYA2YyiHroKOgDVjP7Z1PQUPBG3ByvxNvUT4AOUoGbwC0MBYEulL8A8KAAVz261BoRi4zXgaqQjRgibE1ICpXRAN+MhYFqkI0IMLYL9BUsAbEGENn2Q4FbUCcMfwWsUTBG3DOGCFZsykEA4DyTmzPkiwy63t8J3Edg6TE8b+uUoOixND3idMgKBHsHV9u4JU15LPLZtz9uSUqy8gahGW//GIOg1Pun8IDVMN+v6CUL5iV0WlQlRbEGl9u0JTTGnW2wjNIyro67+IbFCWfd3XqGASlU5ULiw208pALS7J6mYFVwor9idxAKkH5TktloJTHnZZgz2gz/mWUa6VIWXwqrGjv1dRKB24fL1/PM/KPtLiPZ32ya1TkDJZ0W+lX1FYKijIvsSSGvbbCrxJZyNzHEm/CA+p6l4XMr3Ilq0t1vUtQufuLzOEExTdH5a4yNcilF6mmVqAu3MOpPs8aNma5tfqIUSPqeYauQ7Ogt/H+wphx8UHYpRk21gkafuGe1vN05xgbN9BnHFd2M4dcd0yHEH3ZLpe933eoDvObHRdGpLny/fh5D77t/0lzsqCXNL/QOKMxI/GjkTqK0Uad9thq05lbCRwQiIOAztxKLlMKYKcldnQncB76N/OIWaJ5N7NEDzl/MCydigoHXU9FFea7pgXzXdOG5ruck2oX8Lsik2qu4z829ZBvFb9dNwAAAABJRU5ErkJggg==") no-repeat 0 0;
    background-size: 25px auto;
}

#gameSubmission .overlay {
    display: block;
    background-color: #fff;
    display: block;
    max-width: 570px;
    padding: 20px;
    margin: -2000px auto 0 auto;
    box-sizing: border-box;
    position: relative;
    transition: margin 0.5s linear;
}

#gameSubmission .overlay .loading {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6) url("../img/loading.gif") no-repeat center center;
}

#gameSubmission .overlay.show {
    margin-top: 0;
}

#gameSubmission .overlay .button {
    text-decoration: none;
    border: 0;
    color: #fff;
    background-color: #03A9F4;
    padding: 15px;
    vertical-align: middle;
    display: block;
    margin-top: 10px;
    text-align: center;
}

#gameSubmission .overlay .button.red {
    background-color: #b10000;
}

#gameSubmission .overlay .g-recaptcha {
    margin-top: 20px;
}

#gameSubmission .overlay h1 {
    margin: 0;
    font-weight: 300;
    font-size: 210%;
    text-align: center;
}

#gameSubmission .overlay h2 {
    color: #03A9F4;
    font-size: 180%;
    margin-bottom: 10px;
    line-height: 120%;
}

#gameSubmission .overlay h3 {
    font-size: 140%;
    margin: 20px 0 10px 0;
    color: #03A9F4;
}

#gameSubmission .overlay p {
    font-size: 120%;
}

#gameSubmission .overlay p.noMargin {
    margin-bottom: 0;
    text-align: center;
}

#gameSubmission .overlay p.check {
    position: relative;
    padding-left: 25px;
}

#gameSubmission .overlay p.check input[type=checkbox] {
    position: absolute;
    top: 2px;
    left: 0;
}

#gameSubmission .overlay p.check a {
    color: #03A9F4;
    text-decoration: underline;
}

#gameSubmission .overlay p.check .error {
    display: block;
    margin-top: 10px;
    color: #c50000;
}

#gameSubmission .overlay p.check .error svg {
    margin: 0 5px -3px 0;
    width: 20px;
    fill: #c50000;
}

#gameSubmission .overlay .submitted .button {
    display: inline-block;
    width: auto;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 120%;
}

#gameSubmission .overlay form em {
    color: #03A9F4;
    font-size: 80%;
}

#gameSubmission .overlay form .two-cols {
    columns: 2;
}

#gameSubmission .overlay form .three-cols {
    columns: 3;
}

#gameSubmission .overlay form .five-cols {
    columns: 5;
}

#gameSubmission .overlay form .two-cols+h2,
#gameSubmission .overlay form .three-cols+h2,
#gameSubmission .overlay form .five-cols+h2 {
    margin-top: 30px;
}

#gameSubmission .overlay form label {
    display: block;
    font-size: 120%;
    font-weight: bold;
    color: #666;
}

#gameSubmission .overlay form label[for=privacy] {
    font-size: 90%;
    font-weight: normal;
}

#gameSubmission .overlay form label.submit {
    text-align: right;
}

#gameSubmission .overlay form label input,
#gameSubmission .overlay form label textarea,
#gameSubmission .overlay form label button {
    display: block;
    width: 100%;
    border: 0;
    background-color: #eee;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box;
    outline: none;
    font-size: 120%;
    font-weight: 300;
}

#gameSubmission .overlay form label input[type=radio],
#gameSubmission .overlay form label input[type=checkbox],
#gameSubmission .overlay form label textarea[type=radio],
#gameSubmission .overlay form label textarea[type=checkbox],
#gameSubmission .overlay form label button[type=radio],
#gameSubmission .overlay form label button[type=checkbox] {
    display: inline-block;
    width: auto;
    margin-left: -20px;
}

#gameSubmission .overlay form label input[type=submit],
#gameSubmission .overlay form label textarea[type=submit],
#gameSubmission .overlay form label button[type=submit] {
    border: 0;
    padding: 0;
    font: inherit;
    background-color: transparent;
    cursor: pointer;
    overflow: visible;
    outline: none;
    -webkit-appearance: none;
    white-space: nowrap;
    display: inline-block;
    width: auto;
    margin: 20px 0 10px 0;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #008b21;
    color: #fff;
    font-size: 120%;
}

#gameSubmission .overlay form label input[type=submit]:active,
#gameSubmission .overlay form label textarea[type=submit]:active,
#gameSubmission .overlay form label button[type=submit]:active {
    outline: none;
}

#gameSubmission .overlay form label input[type=submit]::-moz-focus-inner,
#gameSubmission .overlay form label textarea[type=submit]::-moz-focus-inner,
#gameSubmission .overlay form label button[type=submit]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

#gameSubmission .overlay form label input[type=submit] svg,
#gameSubmission .overlay form label textarea[type=submit] svg,
#gameSubmission .overlay form label button[type=submit] svg {
    display: inline-block;
    fill: #fff;
    vertical-align: middle;
    height: 20px;
    margin-left: 10px;
}

#gameSubmission .overlay form label.textField {
    padding-left: 0;
}

#gameSubmission .overlay form label+label {
    margin-top: 10px;
}

#gameSubmission .overlay form label+h2 {
    margin-top: 30px;
}

#gameSubmission .overlay form .inLine label {
    display: inline-block;
    margin-right: 20px;
}

#gameSubmission .overlay form .inLine label+label {
    margin-top: 5px;
}

#gameSubmission.hide {
    display: none !important;
}

.tooltip {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: inline-block;
    padding: 5px 10px;
    background-color: #000;
    border-radius: 10px;
    font-size: 12px;
    color: #fff;
}

.overlayContent {
    display: inline-block;
    position: fixed;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    z-index: 501;
    background-color: rgba(0, 0, 0, 0.9);
}

.overlayContent.gameboard.cc {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlayContent.gameboard.cc.videoHolder {
    width: 90%;
}

.overlayClose {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 502;
    border-radius: 50%;
    background-color: #03A9F4;
    display: block;
    width: 38px;
    color: #fff;
    text-decoration: none;
    font-size: 180%;
    line-height: 180%;
    text-align: center;
}

p {
    font-size: 110%;
}

header {
    position: relative;
    transition: left 0.2s;
    left: 0;
    width: 100%;
    min-height: 75px;
    background-color: #fff;
    text-align: center;
    -webkit-transition: left 0.2s;
    -moz-transition: left 0.2s;
    -ms-transition: left 0.2s;
    -o-transition: left 0.2s;
}

header h2 {
    display: inline-block;
    padding: 75px 10px 10px 10px;
    margin: 0;
    font-size: 340%;
    font-weight: 700;
    color: #333;
}

header h2 small {
    display: block;
    margin-bottom: 10px;
    line-height: 100%;
    font-size: 50%;
    font-weight: 300;
}

header h2 span {
    display: block;
    margin: 5px 0 8px 0;
}

header h2.withIcon {
    font-size: 300%;
}

header h2.withIcon span {
    position: relative;
    padding-left: 35px;
    display: inline-block;
}

header h2.withIcon span svg {
    position: absolute;
    left: -10px;
    top: -5px;
    width: 45px;
}

header.withSearch .inner .logo {
    left:  25px;
    margin-left: 0;
    width: 28px;
}

header.withSearch .searchContainer {
    width: 100%;
}

header:not(.withSearch) .searchContainer {
    overflow: hidden;
}

header .tabs {
    border-bottom: 4px solid #03A9F4;
}

header .tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    justify-content: center;
}

header .tabs ul li a {
    display: block;
    min-width: 100px;
    border: 1px solid #03A9F4;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px 20px;
    margin-bottom: -1px;
    color: #03A9F4;
    font-weight: 400;
    font-size: 120%;
    text-decoration: none;
}

header .tabs ul li.active a {
    background-color: #03A9F4;
    color: #fff;
}

header .tabs ul li+li {
    margin-left: 5px;
}

header .tabs .tabContent {
    padding: 10px;
    background-color: #03A9F4;
}

header .tabs .tabContent .inner p {
    text-align: center;
}

header .tabs .tabContent .inner.withButton .button {
    margin-top: 10px;
}

header .tabs .tabContent p {
    margin: 0 20px 0 0;
    text-align: left;
    color: #fff;
}

header .topNavigation {
    display: block;
    position: absolute;
    top: 40px;
    right: 10px;
    width: 100%;
}

header .topNavigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

header .topNavigation ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 100%;
    font-size: 130%;
    color: #333;
}

header .topNavigation ul li a svg {
    fill: #333;
    width: 20px;
    height: 20px;
}

header .topNavigation ul li a:hover svg {
    fill: #03A9F4;
}

header .topNavigation ul li.search {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

header .topNavigation ul li.search .icon {
    margin: 8px 15px 0 15px;
}

header .topNavigation ul li.jobs {
    display: none;
}

header .topNavigation ul li.jobs .button {
    position: relative;
    margin-right: 30px;
    border-color: #276600;
    background-color: #276600;
    color: #fff;
    padding: 10px;
}

header .topNavigation ul li.jobs .button em {
    position: absolute;
    top: -15px;
    right: -15px;
    display: block;
    width: 30px;
    height: 30px;
    background-color: #ef8118;
    border-radius: 50%;
    color: #fff;
    text-transform: uppercase;
    line-height: 30px;
    font-style: normal;
    font-size: 60%;
    font-weight: bold;
}

header .topNavigation ul li.jobs .button:hover {
    color: #276600;
    background-color: #fff;
}

header .topNavigation ul li.contact {
    margin-right: 15px;
    position: relative;
}

header .topNavigation ul li.contact .contactContainer {
    position: absolute;
    top: 30px;
    right: -20px;
    z-index: 10000;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: left;
}

header .topNavigation ul li.contact .contactContainer h2 {
    padding: 10px 0 20px 0;
    font-size: 180%;
}

header .topNavigation ul li.contact .contactContainer h3 {
    padding: 20px 0 10px 0;
    font-size: 170%;
}

header .topNavigation ul li.contact .contactContainer p {
    font-size: 140%;
    margin-top: 0;
}

header .topNavigation ul li.contact .contactContainer p+h3 {
    padding-top: 0;
}

header .topNavigation ul li.contact .contactContainer:after {
    bottom: 100%;
    left: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: #fff;
    border-width: 7px;
    margin-left: -35px;
}

header .topNavigation ul li.menuHolder {
    position: relative;
}

header .topNavigation ul li.menuHolder .menu {
    position: absolute;
    top: 30px;
    right: -10px;
    z-index: 150;
    background-color: #03A9F4;
    display: block;
    width: 220px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: left;
}

header .topNavigation ul li.menuHolder .menu li {
    display: block;
    margin-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .topNavigation ul li.menuHolder .menu li a {
    display: flex;
    padding: 20px 10px;
    align-items: center;
    color: #fff;
    border-left: 5px solid transparent;
}

header .topNavigation ul li.menuHolder .menu li a svg {
    margin-right: 10px;
    fill: #fff;
}

header .topNavigation ul li.menuHolder .menu li a:hover {
    background-color: #03A9F4;
}

header .topNavigation ul li.menuHolder .menu li:first-child a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

header .topNavigation ul li.menuHolder .menu li:last-child {
    border-bottom: 0;
}

header .topNavigation ul li.menuHolder .menu li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

header .topNavigation ul li.menuHolder .menu li.home a svg,
header .topNavigation ul li.menuHolder .menu li.login a svg,
header .topNavigation ul li.menuHolder .menu li.contact a svg {
    width: 16px;
    height: 16px;
    margin-right: 14px;
}

header .topNavigation ul li.menuHolder .menu li.active a {
    border-color: #0018ff;
    font-weight: 400;
}

header .topNavigation ul li.menuHolder .menu:after {
    bottom: 100%;
    left: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: #03A9F4;
    border-width: 7px;
    margin-left: -25px;
}

header .inner {
    position: relative;
}

header .inner .logo {
    display: block;
    margin: 0;
    position: absolute;
    top: 7px;
    left: 55%;
    z-index: 100;
    font-size: 25px;
    text-indent: -10000px;
    width: 167px;
    height: 50px;
    color: #e01a13;
    margin-left: -108px;
    text-decoration: none;
    transition: left 0.25s linear;
    background: url(/img/logo.png) no-repeat 0 0;
    background-size: 100% 100%;
    font-weight: bold;
    -webkit-transition: left 0.25s linear;
    -moz-transition: left 0.25s linear;
    -ms-transition: left 0.25s linear;
    -o-transition: left 0.25s linear;
}

header .inner .topNavigation {
    top: 20px;
}

header .inner .topNavigation ul li .searchContainer {
    margin-left: 50px;
}

.author {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #414141;
}

.author .imageContainer {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.author .imageContainer img {
    width: 100%;
}

.author .infos strong {
    display: block;
    margin-bottom: 5px;
    font-size: 140%;
    font-weight: 400;
}

.author .infos strong em {
    font-weight: 300;
    font-style: normal;
}

.author .infos p {
    margin-bottom: 0;
}

.author .infos p.contact {
    margin-top: 20px;
    background-color: #4e4e4e;
    border-radius: 10px;
    padding: 10px;
}

.author .infos p.contact span {
    display: block;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.author .infos p.contact a.button {
    font-size: 100%;
}

.author.contactBox {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.author.contactBox .infos strong em {
    display: block;
}

.author.contactBox .infos p {
    display: none !important;
}

.trippleFacts {
    display: block;
}

.trippleFacts .listHolder {
    width: 100%;
}

.trippleFacts .listHolder img {
    width: 100%;
    max-width: 220px;
}

.trippleFacts .listHolder strong {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    font-size: 150%;
}

.trippleFacts .listHolder+.listHolder {
    margin-top: 10px;
}

ul.checkList {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

ul.checkList li {
    font-size: 120%;
    font-weight: 400;
    padding: 5px 0 5px 26px;
    background: url("../img/Checked.svg") no-repeat 0 3px;
    background-size: 20px auto;
}

ul.checkList li+li {
    margin-top: 5px;
}

ul.servicesList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 0 -6px -6px -6px;
}

ul.servicesList li {
    box-sizing: border-box;
    width: 25%;
    margin-bottom: 6px;
}

ul.servicesList li a {
    display: block;
    height: 100%;
    margin: 0 3px;
    padding: 5px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #333;
    text-decoration: none;
    text-align: center;
}

ul.servicesList li a svg {
    width: 70%;
    margin-bottom: 5px;
    fill: #333;
}

ul.servicesList li a small {
    display: block;
}

ul.servicesList li.selected a {
    background-color: #03A9F4;
    color: #fff;
}

ul.servicesList li.selected a svg {
    fill: #fff;
}

ul.servicesList li.text a {
    background: none;
    box-shadow: none;
    text-decoration: underline;
    font-size: 120%;
}

ul.servicesList li.text.selected a {
    color: #03A9F4;
}

article {
    padding: 20px 10px;
    background-color: #ebebeb;
    position: relative;
    transition: left 0.2s;
    left: 0;
}

article section {
    color: #333;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

article section.descriptionHolder ul li {
    font-size: 120%;
}

article section.descriptionHolder ul li+li {
    margin-top: 5px;
}

article section.contactBox iframe.maps {
    width: 100%;
    height: 200px;
    border: 0;
}

article section p {
    margin-top: 0;
}

article section p.forHeadline {
    margin: -10px 0 30px 0;
}

article section+section {
    margin-top: 20px;
}

article section.jobs .backLink {
    margin: 0 0 20px -10px;
}

article section a {
    color: #03A9F4;
    text-decoration: underline;
    font-weight: 400;
}

article .screenShots {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

article .screenShots li {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding-bottom: 10%;
}

article .screenShots li h3 {
    position: absolute;
    top: -25px;
    width: 100%;
    font-size: 140%;
    text-align: center;
}

article .screenShots li img {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    margin: 22% 0 0 4%;
    width: 92%;
}

article .screenShots li img.smartphone {
    position: absolute;
    z-index: 2;
    margin: 0;
    width: 100%;
}

article .screenShots li+li {
    margin-left: 10px;
}

article h2 {
    padding: 0 0 10px 0;
    font-size: 230%;
    font-weight: 400;
    line-height: 120%;
}

article h2 small {
    display: block;
    color: #666;
    font-size: 60%;
}

article h2.hint {
    color: #999;
}

article h3,
article h4 {
    padding: 0 0 10px 0;
    font-size: 180%;
    font-weight: 400;
}

article h3.topSpacing,
article h4.topSpacing {
    padding-top: 20px;
}

article h4 {
    color: #666;
}

article.light {
    background-color: #eee;
    padding: 20px 10px;
}

article.dark {
    background:  -webkit-linear-gradient(90deg, #d8adf4,#7bb7e3,#7cadab,#949a91,#009ddf);/* Chrome 10-25, Safari 5.1-6 */                          background: linear-gradient(90deg, #d8adf4,#7bb7e3,#7cadab,#949a91,#009ddf);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */                                             ;;
    padding: 20px 10px;
}

article.dark h2,
article.dark h3 {
    padding-bottom: 20px;
    font-weight: 300;
    color: #fff;
}

article.dark h2.standalone,
article.dark h3.standalone {
    display: flex;
    align-items: flex-end;
    line-height: 100%;
}

article.dark h2.standalone svg,
article.dark h3.standalone svg {
    fill: #fff;
    height: 24px;
    flex-shrink: 0;
}

article.dark h2.standalone svg+svg,
article.dark h3.standalone svg+svg {
    margin-left: 3px;
}

article.dark h2.standalone svg:first-child,
article.dark h3.standalone svg:first-child {
    margin-left: 20px;
}

article.dark h3 {
    padding-bottom: 10px;
}

article.dark section {
    background-color: #222222;
    color: #fff;
}

article.dark section+section {
    margin-top: 20px;
}

article iframe.video {
    width: 100%;
    border: 0;
}

article .screenshotHolder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

article .screenshotHolder .screenshots {
    list-style: none;
    padding: 0;
    margin: 0;
}

article .screenshotHolder .screenshots li {
    width: 100%;
    display: none;
}

article .screenshotHolder .screenshots li img {
    max-height: 100%;
    max-width: 100%;
}

article .screenshotHolder .screenshots li.active {
    display: block;
}

article .screenshotHolder .arrow {
    display: flex;
    align-items: center;
    cursor: pointer;
}

article .screenshotHolder .arrow.left {
    justify-content: flex-start;
    margin-right: 10px;
}

article .screenshotHolder .arrow.right {
    justify-content: flex-end;
    margin-left: 10px;
}

article .screenshotHolder .arrow svg {
    fill: #fff;
    width: 14px;
}

article .phone {
    font-size: 120%;
}

article p+h2,
article p+h3 {
    padding-top: 20px;
}

article .twoCols .col+.col {
    margin-top: 20px;
}

article section {
    padding: 10px;
}

article section.noPadding {
    padding: 0 !important;
}

article section.noBox {
    padding: 20px 0 0 0;
    background: none;
    box-shadow: none;
}

article section.noBox section+section {
    margin-top: 40px;
}

article section.noSpacing {
    padding-top: 0;
}

article section.noSpacing {
    padding-top: 0;
}

article section.quote {
    padding: 20px 0;
}

article section.quote strong {
    display: block;
    padding-left: 30px;
    position: relative;
    font-style: italic;
    font-size: 280%;
    font-weight: 300;
    color: #5a5a5a;
}

article section.quote strong em {
    position: absolute;
    left: 0;
    top: -35px;
    font-weight: 700;
    font-size: 220%;
    line-height: 100%;
}

article section.quote small {
    display: block;
    padding-left: 30px;
    margin-top: 5px;
    font-size: 120%;
}

article section.marketingMaterial img {
    display: block;
    width: 100%;
    margin: 10px auto;
}

article section.highlightBox {
    text-align: center;
}

article section.highlightBox svg {
    display: inline-block;
    width: 50px;
    margin-bottom: 5px;
    fill: #333;
}

article section.highlightBox h2 {
    color: #333;
}

article section.featuredGames .teaserHolder.noDesignElements {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat;
}

article section.featuredGames .teaserHolder.noDesignElements img {
    box-sizing: border-box;
    margin: 20px;
    width: 20%;
    min-width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

article section.featuredGames .slider {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

article section.featuredGames .slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

article section.featuredGames .slider li:not(.active) {
    left: 100%;
}

article section.featuredGames .slider li.active {
    z-index: 100;
}

article section.featuredGames .slider li.lowest {
    z-index: 1;
}

article section.featuredGames .slider a {
    text-decoration: none;
}

article section.featuredGames .slider .teaserHolder {
    background-size: cover;
    position: relative;
    height: 250px;
}

article section.featuredGames .slider .teaserHolder .figure {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80%;
}

article section.featuredGames .slider .teaserHolder .marker {
    position: absolute;
    right: 0;
    bottom: 20px;
    background-color: #fff;
    display: inline-block;
    padding: 10px;
    color: #555;
    font-size: 140%;
    font-weight: 400;
}

article section.featuredGames .slider .teaserHolder .logo {
    position: absolute;
    right: 10px;
    top: 10px;
    max-height: 80px;
}

article section.featuredGames .slider.asHeader {
    margin-bottom: 20px;
}

article section.featuredGames .slider.asHeader li {
    position: static;
}

article section.featuredGames .slider.asHeader .teaserHolder .teaserElements .figure,
article section.featuredGames .slider.asHeader .teaserHolder .teaserElements .logo {
    left: 50%;
    transform: translateX(-50%);
}

article section.featuredGames .slider.asHeader .teaserHolder .iFrameHolder {
    display: none;
}

article section.featuredGames .slider.asHeader .teaserHolder .figure {
    max-height: 70%;
}

article section.featuredGames .slider.asHeader .teaserHolder .logo {
    right: auto;
    max-height: 30%;
}

article section.featuredGames .slider .textHolder {
    padding: 10px;
    box-sizing: border-box;
    background-color: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-align: center;
}

article section.featuredGames .slider .textHolder h3 {
    margin: 0 0 10px 0;
    font-size: 180%;
    padding: 0;
}

article section.featuredGames .slider .textHolder p {
    margin: 0;
}

article section.featuredGames .slider .textHolder p.withMargin {
    margin-bottom: 10px;
}

article section.featuredGames .slider .textHolder .button {
    margin-top: 10px;
}

article section.featuredGames .slider .textHolder .playContainer .button {
    margin-top: 0;
}

article section.featuredGames .slider .textHolder .playContainer .desktopOnlyHint {
    font-size: 120%;
}

article section.featuredGames .slider .textHolder .playContainer .desktopOnlyHint svg {
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    fill: #fff;
    float: left;
}

article .sliderPages,
article .screenshotPages {
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 10px 0 0 0;
    text-align: center;
}

article .sliderPages li,
article .screenshotPages li {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.4;
    border-radius: 50%;
    cursor: pointer;
}

article .sliderPages li a,
article .screenshotPages li a {
    display: block;
    width: 100%;
    height: 100%;
}

article .sliderPages li+li,
article .screenshotPages li+li {
    margin-left: 4px;
}

article .sliderPages li.active,
article .screenshotPages li.active {
    opacity: 1;
}

article .detailsList {
    list-style: none;
    padding: 0;
    margin: 0;
}

article .detailsList li {
    display: flex;
    align-items: center;
    font-size: 120%;
}

article .detailsList li strong {
    width: 50%;
    font-weight: 300;
}

article .detailsList li span img.dev {
    max-height: 40px;
    max-width: 100px;
}

article .detailsList li span img.device.desktop {
    height: 40px;
}

article .detailsList li span img.device.smartphone {
    height: 30px;
}

article .detailsList li span img.device+img.device {
    margin-left: 10px;
}

article .detailsList li span .stars img {
    width: 14px;
}

article .detailsList li+li {
    margin-top: 15px;
}

article .impressionsList {
    list-style: none;
    padding: 0;
    margin: 0;
}

article .impressionsList li {
    display: block;
    text-align: center;
}

article .impressionsList li img {
    width: 100%;
    max-width: 220px;
}

article .impressionsList li+li {
    margin-top: 20px;
}

article .gamesContainer {
    margin: 0 -10px 30px -10px;
    padding: 20px;
    background-color: #222222;
}

article .gamesContainer h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

article .gamesList ul,
article .premiumGamesList ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    margin: 0px;
    flex-wrap: wrap;
}

article .gamesList ul li,
article .premiumGamesList ul li {
    width: 50%;
    padding: 5px;
    box-sizing: border-box;
}

article .gamesList ul li a.tilt,
article .premiumGamesList ul li a.tilt {
    display: block;
}

article .gamesList ul li {
    width: 33.33%;
}

article .gamesList ul li img {
    width: 100%;
}

article .gamesList.related ul li:nth-child(10) {
    display: none;
}

article .premiumGamesList ul li .premiumTeaserHolder {
    display: block;
    width: 100%;
    position: relative;
}

article .premiumGamesList ul li .premiumTeaserHolder .background {
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
}

article .premiumGamesList ul li .premiumTeaserHolder .background img {
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

article .premiumGamesList ul li .premiumTeaserHolder .logo,
article .premiumGamesList ul li .premiumTeaserHolder .figure,
article .premiumGamesList ul li .premiumTeaserHolder .dev {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

article .premiumGamesList ul li .premiumTeaserHolder .logo {
    top: 20px;
    box-sizing: border-box;
    padding: 0 20px;
}

article .premiumGamesList ul li .premiumTeaserHolder .logo img {
    width: 90%;
}

article .premiumGamesList ul li .premiumTeaserHolder .figure {
    bottom: 0;
}

article .premiumGamesList ul li .premiumTeaserHolder .figure img {
    width: 100%;
}

article .premiumGamesList ul li .premiumTeaserHolder .dev {
    bottom: 20px;
}

article .premiumGamesList ul li .premiumTeaserHolder .dev img {
    width: 25%;
}

article .premiumGamesList ul li .premiumTeaserHolder .soonMarker {
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 100;
    background-color: #ffb400;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-size: 110%;
    white-space: nowrap;
}

article .premiumGamesList ul li .premiumTeaserHolder.soon .figure img,
article .premiumGamesList ul li .premiumTeaserHolder.soon .background img,
article .premiumGamesList ul li .premiumTeaserHolder.soon .logo img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

article .premiumGamesList ul li .premiumTeaserHolder.soon .dev {
    display: none;
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt {
    transform-style: preserve-3d !important;
    transform: perspective(300px);
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt .figure,
article .premiumGamesList ul li .premiumTeaserHolder.tilt .logo {
    transform: translateZ(0);
    transition: all 0.5s;
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt .dev {
    transition: all 0.5s;
    opacity: 1;
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt:hover {
    transform: perspective(300px);
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt:hover .figure {
    transform: translateZ(20px);
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt:hover .figure.cutted {
    bottom: 10px;
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt:hover .dev {
    opacity: 0;
    transform: translateZ(30px);
}

article .premiumGamesList ul li .premiumTeaserHolder.tilt:hover .logo {
    transform: translateZ(10px);
}

article .premiumGamesList ul li.empty {
    opacity: 0.5;
}

article .premiumGamesList ul li .stars {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 5px;
}

article .premiumGamesList ul li .stars img {
    display: inline-block;
    width: 8%;
    max-width: 14px;
}

article .affiliateContainer {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    justify-content: flex-end;
}

article .affiliateContainer a {
    margin-left: 10px;
    text-decoration: underline !important;
    color: #fff;
    font-size: 100%;
}

article .affiliateContainer a.reset {
    margin-left: 0;
    font-size: 100%;
}

article .affiliateContainer .inputHolder {
    width: 100%;
    position: relative;
}

article .affiliateContainer .inputHolder label {
    position: relative;
    display: block;
}

article .affiliateContainer .inputHolder label em {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    background-color: #4e4e4e;
    font-style: normal;
    font-size: 90%;
    text-transform: uppercase;
    cursor: pointer;
}

article .affiliateContainer .inputHolder label em svg {
    width: 20px;
    fill: #fff;
    margin-right: 5px;
}

article .affiliateContainer .inputHolder input {
    background-color: #4e4e4e;
    border-radius: 10px;
    border: 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    font-size: 100%;
    color: #fff;
    font-weight: 300;
}

article .affiliateContainer .inputHolder .clipboardHint {
    position: absolute;
    right: 80px;
    top: 5px;
    background-color: #333;
    padding: 5px;
    border-radius: 10px;
    color: #fff;
    font-weight: 400;
}

article .affiliateContainer .selectContainer {
    position: relative;
    background-color: #4e4e4e;
    overflow: hidden;
    height: 30px;
    width: 30%;
    font-size: 100%;
    font-weight: 300;
}

article .affiliateContainer .selectContainer select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
}

article .affiliateContainer .selectContainer span {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 1;
    display: block;
    padding: 0 35px 0 10px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

article .affiliateContainer .selectContainer span em {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    background-color: #4e4e4e;
    width: 25px;
    height: 100%;
}

article .affiliateContainer .selectContainer span em svg {
    fill: #fff;
    width: 12px;
    position: absolute;
    right: 7px;
    top: 2px;
    z-index: 2;
}

article .playContainer {
    margin-top: 10px;
}

footer {
    background-color: #000;
    padding: 20px 20px;
}

footer .copyright {
    color: #999;
}

footer .copyright p {
    text-align: center;
}

footer .copyright p a {
    color: #fff;
    text-decoration: none;
}

footer .legalLinks {
    display: block;
    padding-top: 20px;
    text-align: center;
}

footer .legalLinks a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 120%;
}

footer .legalLinks a+a {
    margin-left: 30px;
}

footer .description {
    display: block;
    padding: 30px 0;
    color: #999;
    text-align: center;
}

footer .logo {
    display: block;
    width: 50px;
    height: 75px;
    /* background: url("https://img.cdn.gameboard.cc - Dive into the pool of happiness | Online Game | Free Game.com/_gameboard.cc - Dive into the pool of happiness | Online Game | Free Game_logos/gameboard.cc - Dive into the pool of happiness | Online Game | Free GameFLogo.svg") no-repeat 0 0; */
    background-size: auto 75px;
    text-indent: -10000px;
    margin: 10px auto;
}

section.categories,
section.news,
section.languageSwitcher {
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    color: #fff;
    text-align: center;
}

section.categories h2,
section.news h2,
section.languageSwitcher h2 {
    padding: 0 0 10px 0;
    font-size: 260%;
    font-weight: 300;
    line-height: 120%;
}

section.categories ul,
section.news ul,
section.languageSwitcher ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section.categories ul li,
section.news ul li,
section.languageSwitcher ul li {
    display: inline-block;
    padding: 10px 15px;
}

section.categories ul li a,
section.news ul li a,
section.languageSwitcher ul li a {
    color: #fff;
    font-size: 120%;
    text-decoration: none;
}

section.categories ul li {
    padding: 12px 7px;
}

section.categories ul li a {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 8px;
    border-radius: 10px;
}

section.news {
    margin-bottom: 0;
    border-bottom: 0;
    text-align: left;
    background-color: transparent !important;
    box-shadow: none !important;
}

section.news ul {
    margin-top: 10px;
}

section.news ul li {
    padding: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: left;
}

section.news ul li .thumb {
    display: block;
    margin: 0 0 10px 0;
    width: 100%;
    max-height: 150px;
    padding: 10px;
    background-size: cover;
    background-position: center center;
    box-sizing: border-box;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

section.news ul li .thumb a {
    display: block;
    height: 120px;
    text-align: center;
}

section.news ul li .thumb img {
    height: 120px;
    max-width: 100%;
    margin-bottom: 10px;
}

section.news ul li .thumb img.portrait {
    height: 120px;
    width: auto;
}

section.news ul li .text {
    padding: 10px;
}

section.news ul li .text h3 {
    font-size: 180%;
}

section.news ul li .text h3 strong {
    font-weight: 400;
}

section.news ul li .text h3 em {
    display: inline-block;
    vertical-align: top;
    padding: 5px;
    border-radius: 5px;
    margin-right: 5px;
    font-style: normal;
    font-size: 50%;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 100%;
    background-color: #91ef7f;
    color: #0f5800;
}

section.news ul li .text h3 em.maintenance {
    background-color: #ef7f7f;
    color: #580000;
}

section.news ul li .text h3 em.update {
    background-color: #ffbf73;
    color: #f16600;
}

section.news ul li .text h3 em.hot {
    background-color: firebrick;
    color: #fff;
}

section.news ul li .text small {
    display: block;
    margin-top: 5px;
    font-size: 100%;
    color: #999;
}

section.news ul li .text p {
    font-weight: 300;
}

section.news ul li .link {
    padding: 10px;
}

section.news ul li+li {
    margin-top: 20px;
    width: 100%;
}

section.languageSwitcher {
    padding: 0 0 20px 0;
}

section.languageSwitcher strong {
    display: inline-block;
    margin-right: 10px;
    font-size: 120%;
    font-weight: 300;
    color: #999;
}

section.languageSwitcher ul {
    display: inline-block;
}

section.languageSwitcher ul li {
    padding: 0 10px 4px 10px;
}

section.languageSwitcher ul li.active {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

section.languageSwitcher ul li.active a {
    font-weight: 400;
}

article.policy>.inner {
    max-width: 60em;
}

article.policy>.inner ul {
    font-size: 120%;
    line-height: 140%;
    font-weight: 400;
}

article.policy>.inner h2 {
    text-align: center;
}

article.policy>.inner p.updateNotice {
    text-align: right;
}

@media only screen and (min-width: 641px) {
    .backLink {
        margin: -20px 0 20px 0;
    }
    .trippleFacts {
        display: flex;
        justify-content: space-between;
    }
    .trippleFacts .listHolder {
        width: 33%;
    }
    .trippleFacts .listHolder strong {
        text-align: center;
    }
    .trippleFacts .listHolder+.listHolder {
        margin-top: 0;
    }
    footer .copyright {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }
    footer .copyright p {
        text-align: left;
        width: 25%;
    }
    section.news ul li {
        display: flex;
        align-items: stretch;
    }
    section.news ul li .thumb {
        margin: 0 20px 0 0;
        min-width: 150px;
        width: 150px;
        margin-right: 20px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    section.news ul li .thumb a {
        display: flex;
        align-items: center;
    }
    section.news ul li .thumb img {
        height: auto;
        width: 100%;
        margin-bottom: 0;
    }
    section.news ul li .thumb img.portrait {
        height: 110px;
    }
    section.news ul li .text {
        padding: 20px;
        flex-grow: 1;
    }
    section.news ul li .link {
        padding: 20px;
    }
    section.news ul li+li {
        margin-top: 20px;
        width: 100%;
    }
}

@media only screen and (min-width: 710px) {
    .bigSlider ul.slides li .imageHolder .marker {
        width: 20%;
    }
    .author .imageContainer {
        width: 70px;
        height: 70px;
    }
    .author .infos p.contact {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .author .infos p.contact span {
        margin: 0 10px 0 0;
        flex-grow: 1;
    }
    #gameSubmission {
        font-size: 110%;
    }
    article section p {
        font-size: 120%;
        font-weight: 400;
    }
    article.dark section p {
        font-weight: 300;
    }
    header {
        min-height: 80px;
    }
    header h2 {
        padding: 95px 10px 30px 10px;
        font-size: 700%;
    }
    header h2 span {
        display: block;
        margin-top: 10px;
    }
    header h2 small {
        font-size: 40%;
        line-height: 130%;
    }
    header h2.withIcon {
        padding: 115px 10px 30px 10px;
        font-size: 700%;
    }
    header h2.withIcon span {
        padding-left: 80px;
    }
    header h2.withIcon span svg {
        width: 88px;
    }
    header .topNavigation {
        top: 60px;
    }
    header .topNavigation ul li .searchContainer {
        margin-left: 100px !important;
    }
    header .topNavigation ul li.jobs .button {
        padding: 10px 20px;
    }
    header .inner .logo {
        width: 356px;
        height: 60px;
        background-size: auto 60px;
        margin-left: -72px;
    }
    header.withSearch .inner .logo {
        width: 40px;
    }
    header.noContent .inner .logo {
        background-size: auto 50px;
        margin-left: -50px;
        width: 124px;
        height: 50px;
        top: 12px;
    }
    header.noContent.withSearch .inner .logo {
        width: 37px;
        margin-left: 0;
    }
    header .tabs .tabContent {
        padding: 20px;
    }
    header .tabs .tabContent .inner.withButton {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        justify-content: space-between;
        align-items: center;
    }
    header .tabs .tabContent .inner.withButton p {
        text-align: left;
    }
    header .tabs .tabContent .inner.withButton .button {
        margin-top: 0;
    }
    article {
        padding: 40px 20px;
    }
    article h2 {
        font-size: 260%;
    }
    article .gamesContainer {
        margin: 0 -20px 60px -20px;
    }
    article section {
        padding: 20px;
    }
    article section.featuredGames .slider .teaserHolder {
        height: 350px;
    }
    article section.featuredGames .slider .teaserHolder .figure {
        bottom: auto;
        top: 0;
        height: 100%;
    }
    article section.featuredGames .slider .teaserHolder .marker {
        bottom: 40px;
        padding: 20px;
        font-size: 200%;
    }
    article section.featuredGames .slider .teaserHolder .logo {
        position: absolute;
        right: 20px;
        top: 20px;
        max-width: 250px;
        max-height: 150px;
    }
    article section.featuredGames .slider .textHolder {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    article section.featuredGames .slider .textHolder .playContainer {
        margin-top: 0;
    }
    article section.featuredGames .slider .textHolder h3 {
        font-size: 180%;
    }
    article section.featuredGames .slider .textHolder .button {
        margin-top: 0;
    }
    article section.featuredGames .slider.asHeader {
        margin-bottom: 40px;
    }
    article section.featuredGames .slider.asHeader .teaserHolder {
        background-size: auto 100%;
        background-position: left bottom;
        display: flex;
        align-items: center;
    }
    article section.featuredGames .slider.asHeader .teaserHolder .teaserElements {
        position: relative;
        width: 50%;
        height: 100%;
        z-index: 10;
    }
    article section.featuredGames .slider.asHeader .teaserHolder .teaserElements .figure {
        bottom: 0;
        top: auto;
        left: 20px;
        transform: none;
        height: 70%;
        max-height: 300px;
    }
    article section.featuredGames .slider.asHeader .teaserHolder .teaserElements .logo {
        left: 20px;
        transform: none;
        right: auto;
        max-height: 150px;
    }
    article section.featuredGames .slider.asHeader .teaserHolder .iFrameHolder {
        display: flex;
        justify-content: center;
        width: 50%;
        height: 100%;
        box-sizing: border-box;
        padding: 10px 10px 10px 0;
        position: relative;
        z-index: 100;
    }
    article section.featuredGames .slider.asHeader .teaserHolder .iFrameHolder iframe {
        overflow: hidden;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    }
    article section.featuredGames .slider.asHeader .teaserHolder.noGamePreview .teaserElements {
        width: 100%;
    }
    article section.featuredGames .slider.asHeader .teaserHolder.noGamePreview .iFrameHolder {
        display: none;
    }
    article section.featuredGames .slider.asHeader .teaserHolder.noGamePreview .logo {
        right: 20px;
        left: auto;
    }
    article section.featuredGames .slider.asHeader .teaserHolder.noGamePreview .figure {
        height: 100%;
    }
    article section.featuredGames .slider.asHeader.landscape .teaserHolder {
        display: block;
    }
    article section.featuredGames .slider.asHeader.landscape .teaserHolder .teaserElements {
        width: 100%;
        position: absolute;
    }
    article section.featuredGames .slider.asHeader.landscape .teaserHolder .teaserElements .figure {
        height: 25%;
        left: auto;
        right: 20px;
    }
    article section.featuredGames .slider.asHeader.landscape .teaserHolder .teaserElements .logo {
        top: auto;
        bottom: 0;
        height: 18%;
    }
    article section.featuredGames .slider.asHeader.landscape .teaserHolder .iFrameHolder {
        width: 90%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    article section+section {
        margin-top: 40px;
    }
    article section .cite {
        padding: 10px 0 10px 15px;
        border-left: 4px solid #03A9F4;
        font-style: italic;
        color: #03A9F4;
    }
    article .gamesList ul,
    article .premiumGamesList ul {
        margin: 0;
    }
    article .gamesList ul li,
    article .premiumGamesList ul li {
        width: 25%;
    }
    article .premiumGamesList ul {
        margin: 0 -10px;
    }
    article .premiumGamesList ul li {
        margin-bottom: 20px;
    }
    article .premiumGamesList ul li .premiumTeaserHolder .background {
        padding: 0 20px;
    }
    article .gamesList ul {
        margin: -10px;
    }
    article .gamesList ul li {
        padding: 10px;
        width: 20%;
    }
    article .gamesList.related ul li:nth-child(10) {
        display: block;
    }
    article .affiliateContainer {
        width: 50%;
        margin-top: 0;
    }
    article .affiliateContainer a {
        margin-left: 20px;
        font-size: 120%;
    }
    article .affiliateContainer .inputHolder input {
        height: 44px;
        margin-bottom: 0;
        font-size: 140%;
    }
    article .affiliateContainer .inputHolder .clipboardHint {
        right: 90px;
        top: 9px;
    }
    article .affiliateContainer .selectContainer {
        height: 40px;
        font-size: 140%;
    }
    article .affiliateContainer .selectContainer span em {
        width: 35px;
    }
    article .affiliateContainer .selectContainer span em svg {
        width: 16px;
        right: 10px;
        top: 4px;
    }
    article .twoCols {
        display: flex;
        justify-content: space-between;
    }
    article .twoCols .col {
        width: 30%;
        padding-left: 40px;
    }
    article .twoCols .col.wide {
        padding-left: 0;
        width: 70%;
    }
    article .twoCols .col+.col {
        margin-top: 0;
    }
    ul.servicesList {
        list-style: none;
        padding: 0;
        margin: 0;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        margin: 0 -10px -10px -10px;
    }
    ul.servicesList li {
        box-sizing: border-box;
        width: 14%;
        margin-bottom: 10px;
    }
    ul.servicesList li a {
        display: block;
        height: 100%;
        margin: 0 5px;
    }
}