.loading-container {
    position: fixed;
    background: #ffffffd1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
}
.loading-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    animation: loading 1s ease-in-out infinite;
}
.loading-bar:nth-child(1) {
    background-color: #3498db;
    animation-delay: 0ms;
}
.loading-bar:nth-child(2) {
    background-color: #c0392b;
    animation-delay: 0.09s;
}
.loading-bar:nth-child(3) {
    background-color: #f1c40f;
    animation-delay: .18s;
}
.loading-bar:nth-child(4) {
    background-color: #27ae60;
    animation-delay: .27s;
}

@keyframes loading {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1, 2.2);
    }
    40% {
        transform: scale(1);
    }
}

.on-tooltip {
    position: relative;
    cursor: pointer;
    text-decoration: underline;
}

.the-tooltip .fa-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.the-tooltip table {
    margin: 40px 0;
}

.the-tooltip {
    position: absolute;
    background: #fff;
    border: 1px solid grey;
    top: 0;
    width: auto;
    padding: 15px;
    cursor: initial;
    z-index: 999;
}

.sentence i {
    color: #0acdda;
    cursor: pointer;
}

* {
  /*  font-family: 'Noto Sans SC', sans-serif; */
}
span.highlighted {
    color: #134f9e;
    font-weight: bold;
}

p em {
    display: block;
}

i.play {
    font-size: 25px;
    color: #0acdda;
    cursor: pointer;
}

.only-mobile {
    display: none;
}

.content {
    margin-top: 100px;
}

@media(max-width: 762px) {

    .content {
        margin-top: 150px;
    }

    .only-mobile {
        display: initial;
    }
    .table > tbody > tr > td {
        display: block;
    }
    .table > tbody > tr {
        display: block;
        margin-bottom: 15px;
        border: 2px solid black;
    }
    .table > thead {
        display: none;
    }

    .the-tooltip {
        width: 100% !important;
        left: 0;
        position: fixed;
        right: 0;
        top:0;
        bottom :0;
        overflow: scroll;
    }
}

.sr-only {
    display: none !important;
}

.form-top {
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 20px;
    box-shadow: 2px -2px 10px 0 rgba(0,0,0,0.5);
    z-index: 100;
}


input[type="password"] {
    font-family: Arial, serif;
}


.main-game {
    text-align: center;
    display: block;
    margin: 0 auto 40px auto;
    font-size: 75px;
    padding: 25px;
}

.secondary-game {
    display: block;
    margin: 15px auto;
    padding: 10px 15px;
}

.secondary-game.active {
    background: #28a745;
}

.secondary-game.error {
    background: #c0392b;
}

.mg-top-25 {
    margin-top: 25px;
}

.game-title {
    text-align: center;
    margin-top: 30px;
}

.game-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
}

.validate-game {
    display: block;
    width: 96%;
    margin: 3% auto;
}

.game-container {
    padding-bottom: 80px;
}

.-alert {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    padding: 14px 25px;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.5);
    display: none;
}

.-alert.success {
    background: #28a745;
}

.-alert.error {
    background: #c0392b;
}

.done {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
    display: none;
}

.done button {
    position: absolute;
    bottom: 30%;
    right: 20%;
    left: 20%;
    width: 60%;
    padding: 10px;
    font-size: 25px;
    z-index: 99;
}

.done h3 {
    margin-top: 40px;
    text-align: center;
    font-weight: bolder;
}

.done p {
    font-weight: bold;
    margin-top: 10px;
}

.home {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(11, 138, 33);
    /* padding: 5px; */
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}