:root {
    --clr-white: #ffffff;
    --clr-d-dark-blue: #044697;
    --clr-d-red: #D41217;
}


/* ----------------- Index ----------------- */

.dilemataIndex {
}

.dilemataIndex .h1 {
    margin-top: 3rem;
    margin-bottom: 4rem;
    font-size: 6.0rem;
    line-height: 6.6rem;
}

.dilemataIndex .h2 .decoration {
    position: absolute;
    top: -2.6rem;
    left: -1.4rem;
    height: 5.0rem;
    width: 5.0rem;
    background-image: url('/public/images/assets/splash.svg');
} 

.dilemataIndex .aboutLink {
    display: block;
    margin: 2.8rem auto 0 auto;
    width: 9.8rem;
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 2.0rem;
    font-weight: 300;
    text-align: left;
}

.dilemataIndex .aboutLink div {    
    width: 100%;
    background-image: url('/public/images/BirellQuiz/icons/arrow-down.svg');
    background-size: 1.5rem 1.5rem;
    background-position: right center;
}


/* ----------------- Game ----------------- */

.game {
    padding: 0rem 0 10rem 0;
    width: 100%;
}

.game .card {
    position:relative;
    margin: auto;
    width: 100%;
    height: 42rem;
    background-image: url('/public/images/Dilemata/card.svg');
}

.game .card .header {
    position: absolute;
    left: 50%;
    color: var(--clr-red);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: translateX(-50%) translateY(-50%);
}

.game .card .header.top {
    top: 10%;
}

.game .card .header.mid {
    top: 49.5%;
}

.game .card .question {
    position: absolute;
    left: 50%;
    width: 76%;
    color: var(--clr-d-dark-blue);
    font-family: 'Oswald', sans-serif;
    font-size: 2.36rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
    transition: background 0s, box-shadow 0s, opacity 0.6s;
}

.game .card .question.active {
    /*filter: drop-shadow(0 0 6vw #007EC9);*/
    background-color: rgba(0, 126, 201, 0.3);
    /*background: radial-gradient(closest-side,#ffffff, #007EC9);*/
    box-shadow: 0 0 3vw 3vw rgba(0, 126, 201, 0.3);
    transition: background 0.6s, box-shadow 0.6s, opacity 0.6s;
}

.game .card.changing .question {
    opacity: 0;
}

.game .card .question.first {
    top: 30%;
}

.game .card .question.second {
    top: 71%;
}


.game .buttons {
    margin: 0.4rem auto 0 auto;
    width: 70%;
}

.game .buttons .button {
    margin-bottom: 1.2rem;
    padding: 1.4rem;
    max-height: 4.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.game .buttons .button.next {
    color: var(--clr-white);
    background-image: linear-gradient(180deg, #F04635 0%, #C94133 100%);
}

.game .buttons .button.next:after {
    border: solid 0.1rem #FF656588;
}

.game .buttons .button.back {
    color: var(--clr-d-dark-blue);
    background-color: var(--clr-white);
}

.game .buttons .button.active {
    filter: drop-shadow(0 0 3.6vw var(--clr-white)) contrast(110%);
}

.game .buttons .button.disabled {
    filter: grayscale(100%) contrast(60%);
}

