.whowantstobe-game {
    --orangeish-color : #FF8F2D;
    --blueish:  #4E5CB1;
}

.whowantstobe-game.questions-holder {
    background: url(/images/whowantsto.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 425px;
    align-content: center;
    justify-content: center;
    display: flex;
}
.whowantstobe-game .starting-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:  0 5px;
}
.whowantstobe-game .starting-badge .btn {
    background: var(--orangeish-color);
    border:none;
    color: white;
    font-size: 16px;
}

.whowantstobe-game .starting-badge .question-title {
    text-transform: uppercase;
}
.whowantstobe-game .question-title {
    color: white;

}
.whowantstobe-game .finished-badge .question-title {
    color: rgb(0,177,159);
    margin: 0;
}

.whowantstobe-game .answers {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    width: 75%;
}


.whowantstobe-game .answer {
    border-radius: 10px;
    background-color: var(--blueish);
    margin-block-end: 1.5rem;
    font-size: 16px;
    text-align: center;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    box-shadow: none;
    border: 2px solid white;
}

.whowantstobe-game .answer img {
    height: 1.5rem;
}

.whowantstobe-game .answer.right-answer {
    background-color: var(--good-answer-color);
    color: white;
}

.whowantstobe-game .answer.right-answer-border {
    border: 5px solid var(--good-answer-color);
    padding: 5px 15px;
}

.whowantstobe-game .answer.wrong-answer {
    background-color: var(--wrong-answer-color);
    color: white;
}

.whowantstobe-game .finished-badge {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media only screen and (min-width: 1024px) {
    .whowantstobe-game .answers {
        flex-flow: row wrap;
        justify-content: space-between;
    }
    .whowantstobe-game .answer {
        flex-basis: 49%;
    }
}

.steps-holder {
    width: 45%;
    background: black;
    color: white;
    padding: 0.5rem;
    margin-bottom: 2rem;

}
.steps-holder p {
    margin-bottom: 0;
}
.steps-holder p.active {
    color: var(--orangeish-color);
}

.btn-next-question,.btn-retry {
    padding: 1rem 3rem;
    width: 45%;
    color:white;
    background: var(--orangeish-color);
    border: none;
    border-radius: 10px
}

.completed .finished-badge .steps-holder{
  margin-bottom:0px;
}
