#contact_btn {
    z-index: 10;
    position: absolute;
    width: 16.2%;
    height: 7%;
    right: 1.4%;
    top: 1.5%;
    border-radius: 2em;
    font-family: OEMishtameshPro-Regular;
    background-color: white;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

#blue_circle {
    position: absolute;
    width: 30%;
    height: 92.1%;
    background-color: #0086DC;
    right: 1.3%;
    top: 4%;
    border-radius: 2em;
}

#iconContact {
    width: 100%;
    height: 100%;
}

#contactText {
    margin-top: 15%;
    position: relative;
    margin-right: 36%;
    color: #224099;
}

.hidden {
    visibility: hidden;
}

.question_bg {
    position: absolute;
    background-color: #B0DFFF;
    color: #224099;
    top: 22.5vh;
    left: 15%;
    width: 66%;
    height: 60%;
    border-radius: 4%;
    border: 2vh solid #0086dc;
    direction: ltr;
    z-index: 50;
}

.x {
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("../../../../assets/images/help/x.png");
    top: 2vh;
    left: 2vh;
    width: 4vh;
    height: 4vh;
    cursor: pointer;
}

.bgTitle {
    position: relative;
    background-color: #C2E9FE;
    border-radius: 1vh 1vh 0vh 0vh;
    width: 100%;
    height: 9vh;
}

.title {
    position: absolute;
    margin-top: 2vh;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.question {
    position: relative;
    margin-top: 7vh;
    margin-bottom: 6vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.answer {
    position: relative;
    margin-top: 2vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: #C2E9FE;
    border-radius: 5vh;
    width: inherit;
    height: 5vh;
    line-height: 5vh;
    cursor: pointer;
}

.answer.wrong {
    border: solid 0.5vh red;
    color: red;
}

.answer.disable {
    pointer-events: none;
    cursor: default;
}