#game_info {
    position: relative;
}

#game_info #game_status {
    width: calc(100% - 30px);
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1em;
}

#game_info .player_slot {
    display: none;
    position: relative;
    border-bottom: 0;
    height: 0;
    padding: 0;
    transition: height 1s ease;
}

#game_info .player_slot.hasPlayer {
    display: inline;
    height: 55px;
    padding: 10px;
    border-bottom: 2px solid #666;
}

#game_info .player_slot:last-child {
    border-bottom: none;
}

#game_info .player_slot > img {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 30px;
    border: 1px solid #555;
    border-radius: 5px;
}

#game_info .player_slot > span > a {
    display: block;
}

#game_info .player_slot > span > a[data-user-gender='m'] {
    color: #009;
}

#game_info .player_slot > span > a[data-user-gender='w'] {
    color: #900;
}

#game_info .player_slot > span > a > span {
    z-index: 10000000;
}

#game_info .player_slot > span {
    position: absolute;
    top: 5px;
    left: 40px;
    font-weight: bold;
    cursor: pointer;
}

#game_info .player_slot > div {
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: normal;
    font-size: 0.7em;
    cursor: pointer;
}

#game_info .player_slot > p {
    position: absolute;
    bottom: 0;
    left: 55px;
    font-weight: bold;
    cursor: pointer;
}

#game_info #game_timer {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 5px;
    font-size: 9px;
}

#game_notification {
    display: none;
    z-index: 1000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #f00;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .85);
}

#game_notification > h3 {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    line-height: 2em;
    border-bottom: 1px solid #300;
    background-color: rgba(200, 200, 200, .85);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-top: 0;
    width: 100%;
    text-align: center;
}

#game_notification > p {
    margin: 50px 20px;
}

#game_notification > div {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
}

#game_info {
    width: 20% !important;
}

.gameTimer {
    display: none !important;
}

#game_status {
    display: none !important;
}

#game_game #gameLoader {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
    background-color: #510000;
    z-index: 1900;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

