.game .game-tools button,
.game .modal .modal-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.modal-open .game article .game-section {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
}

.game .modal {
    position: absolute;
}

.game .modal .modal-dialog {
    margin-top: 100px;
}

.game .modal .modal-content {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 35px;
    font-style: italic;
    text-align: center;
    border: none;
    padding: 15px;
}

.game .modal .modal-body {
    padding: 25px;
}

.game .modal .modal-body li {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.game .modal .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border: none;
}

.game .modal .modal-footer button {
    background-color: #ce313c;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 2px #333;
    margin: 5px auto;
}

.game .modal .modal-footer a {
    color: #fff;
    font-size: 24px;
    margin-top: 10px;
}

.game .post-title {
    color: #fff;
    font-size: 56px;
    text-shadow: 2px 2px 2px #333;
    text-align: center;
    margin-top: 0;
}

.game .game-tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    padding: 0 15px;
}

.game .game-tools button {
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    font-weight: 700;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.game .game-tools button:focus,
.game .game-tools button:hover {
    color: #ce313c;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.game .game-tools button:active {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    text-shadow: none;
    box-shadow: none;
}

.game .game-tools .timer {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.game .game-tools #timer {
    font-size: 30px;
}

.game .game-tools .glyphicon {
    margin-bottom: 5px;
    font-size: 35px;
}

.game .game-key {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

.game #puzzle-finished {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    text-shadow: 1px 2px #333745;
}

.game #puzzle-finished .answer-title {
    font-size: 60px;
}

.game #puzzle-finished p {
    font-size: 22px;
    color: #77aeef;
    font-weight: 700;
}

.game #puzzle-finished .glyphicon-star {
    font-size: 18px;
    color: #f0545e;
}

.game #puzzle-finished h4 {
    margin-top: 15px;
    font-size: 28px;
    line-height: 0.8;
    text-shadow: 2px 2px 2px #333;
}

.game #puzzle-finished .game-stats p {
    font-size: 18px;
    color: #fff;
}

.game #puzzle-finished .game-stats p strong {
    color: #77aeef;
}

.game #puzzle-finished .share-icons {
    margin-top: 20px;
}

.game #puzzle-finished .share-icons h2 {
    margin: 0;
}

.game #puzzle-finished .share-icons svg {
    width: 65px;
    height: 65px;
    margin: 30px 20px;
    overflow: visible;
    fill: #fff;
}

.game #puzzle-finished .share-icons path {
    fill: #fff;
}

.game #puzzle-finished .share-icons .share-link:hover svg {
    -webkit-animation: social 1s ease-in-out;
    animation: social 1s ease-in-out;
}

.game #puzzle-finished #facebook-circ-fill-icon:hover path {
    fill: #3b5998;
}

.game #puzzle-finished #twitter-circ-fill-icon:hover path {
    fill: #1da1f2;
}

.game #puzzle-finished #google-icon:hover path {
    fill: #dd4b39;
}

.game #puzzle-finished #mail-icon:hover path {
    fill: #c1000a;
}

.game #puzzle-finished .game-btn {
    background-color: #ce313c;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    margin: 10px;
    border-radius: 5px;
}

.game .blue-border-game {
    border: 5px solid #009ad5;
    margin-bottom: 60px;
}

.game .blue-border-game .post-title {
    color: #009ad5;
}

.game .blue-border-game .game-tools {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #009ad5;
}

.game .blue-border-game .game-tools .game-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: auto;
}

.game .blue-border-game #puzzle-finished h4 {
    text-shadow: none;
}

@media (max-width: 990px) {
    #livechat-compact-container {
        display: none;
    }
}

@media (max-width: 425px) {
    .game .post-title {
        font-size: 46px;
    }
    .question-item .question {
        font-size: 16px;
    }
}

@-webkit-keyframes social {
    25% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    50% {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }
    75% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
}

@keyframes social {
    25% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    50% {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }
    75% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
}