body {
    padding: 0;
    margin: 0;
    font-family: open sans, sans-serif
}

#game-root {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background-color: #434448
}

.game-overlay {
    background-color: #434448;
    background-position: center;
    background-size: cover;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden
}

#adWrapper {
    width: 100%;
    height: 100%
}

#adContainer {
    width: 100%;
    height: 100%
}

#videoContent {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%
}

#game-container {
    z-index: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 45px;
    background-color: #434448;
    box-shadow: 0 5px 5px #888
}

#game-container.fullscreen {
    bottom: 0
}

#game-container.has-own-toolbar {
    bottom: 0
}

.game-footer {
    z-index: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    background-color: #434448
}

.game-button {
    background: #3498db;
    background: linear-gradient(to bottom, #0086cb 0%, #0282c5 100%);
    cursor: pointer;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 1px 1px 3px #666;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border: solid #1f628d 3px;
    text-transform: uppercase;
    padding: 10px;
    display: block;
    margin: 0 auto
}

.game-button:hover {
    background: #00a6e7;
    background-image: linear-gradient(to bottom, #00a6e7, #1a91cf);
    text-decoration: none
}

.game-button-link:hover {
    text-decoration: none
}

.game-footer {
    -webkit-user-select: none;
    -moz-user-select: none;
    box-sizing: content-box
}

.game-footer .game-footer-logo {
    font-size: 24px;
    line-height: 45px;
    padding: 0 10px;
    margin: 0
}

.game-footer .game-footer-logo a,
.game-footer .game-footer-logo a:hover,
.game-footer .game-footer-logo a:active {
    text-decoration: none;
    color: inherit
}

.game-footer .game-footer-fullscreen-button img {
    transition: all .2s ease-in-out
}

.game-footer .game-footer-fullscreen-button:hover img {
    transform: scale(1.15)
}

.game-footer .game-footer-button {
    color: #fff;
    height: 45px;
    overflow-y: hidden;
    margin-left: 5px;
    cursor: hand;
    font-weight: 700
}

.game-footer .game-footer-button.game-footer-logo {
    margin: 0
}

.game-footer .game-footer-button:hover {
    background-color: #353435
}

.game-footer .game-footer-button a.game-footer-link {
    line-height: 15px;
    height: 15px;
    display: inline-block
}

.game-footer .game-footer-button a.game-footer-link:link,
.game-footer .game-footer-button a.game-footer-link:visited {
    color: inherit;
    text-decoration: none
}

.game-footer .game-footer-button a.game-footer-link:hover {
    background-color: #353435
}

.game-footer .game-footer-more {
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 16px
}

.game-footer .game-footer-image-button {
    width: 70px;
    overflow-x: hidden;
    height: 45px;
    cursor: pointer
}

.game-footer .game-footer-image-button div {
    height: 45px;
    text-align: center
}

.game-footer .game-footer-image-button div a {
    font-size: 0
}

.preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    overflow: hidden
}

.preloader .preloader-game-name {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.preloader .preloader-thumbnail {
    margin-left: auto;
    margin-right: auto;
    margin: 8px 0 15px;
    width: 300px
}

.preloader .preloader-progressbar {
    height: 5px;
    background-color: rgba(10, 10, 10, .5)
}

.preloader .preloader-progressbar .preloader-progressbar-progress {
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, .5)
}

.preloader .preloader-progress-info {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-size: 20px;
    color: grey;
    font-weight: 700;
    text-align: center
}

@keyframes rotate_pacman_half_up {
    0% {
        transform: rotate(270deg)
    }
    50% {
        transform: rotate(360deg)
    }
    100% {
        transform: rotate(270deg)
    }
}

@keyframes rotate_pacman_half_down {
    0% {
        transform: rotate(90deg)
    }
    50% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(90deg)
    }
}

@keyframes pacman-balls {
    75% {
        opacity: .7
    }
    100% {
        transform: translate(-100px, -6.25px)
    }
}

.pacman {
    position: relative
}

.pacman>div:nth-child(2) {
    animation: pacman-balls 1s -.99s infinite linear
}

.pacman>div:nth-child(3) {
    animation: pacman-balls 1s -.66s infinite linear
}

.pacman>div:nth-child(4) {
    animation: pacman-balls 1s -.33s infinite linear
}

.pacman>div:nth-child(5) {
    animation: pacman-balls 1s 0s infinite linear
}

.pacman>div:first-of-type {
    width: 0;
    height: 0;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-radius: 25px;
    animation: rotate_pacman_half_up .5s 0s infinite;
    position: relative;
    left: -30px
}

.pacman>div:nth-child(2) {
    width: 0;
    height: 0;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-radius: 25px;
    animation: rotate_pacman_half_down .5s 0s infinite;
    margin-top: -50px;
    position: relative;
    left: -30px
}

.pacman>div:nth-child(3),
.pacman>div:nth-child(4),
.pacman>div:nth-child(5),
.pacman>div:nth-child(6) {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    width: 10px;
    height: 10px;
    position: absolute;
    transform: translate(0, -6.25px);
    top: 25px;
    left: 70px
}

.loader-hidden {
    display: none
}

.loader-active {
    display: block
}

.czy--text-bold {
    font-weight: 700 !important
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}