@font-face {
    font-family: "FuturaPT-Bold";
    src: url("fonts/FuturaPT-Bold.ttf");
}

@font-face {
    font-family: "FuturaPT-Medium";
    src: url("fonts/FuturaPT-Medium.ttf");
}

.hide {
    display: none!important;
}

* {
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


body {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'FuturaPT-Medium';
}

.bold {
    font-family: 'FuturaPT-Bold';
}

.uppercase {
    text-transform: uppercase;
}

.page-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.header-wrapper {
    width: 100vw;
    height: 28.91vh;
    background: radial-gradient(#FFFFFF 0, #F38B00 80%, #D22A1B 110%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.13vh;
}

.header-wrapper .text {
    text-align: center;
}

.form-wrapper {
    width: calc(100vw - 6vw);
    height: calc(100vh - 28.91vh - 6vh);
    padding: 3vh 3vw;
}

.question-title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 2vh;
    margin: 3vh 0;
}

.question-title-wrapper .question-count {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 2vw;
}

.first-page-form {
    font-size: 2vh;
}

.start-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

#startButton,
#nextButton,
#finishButton {
    height: 4.84vh;
    width: auto;
}


.all-questions-counter {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.41vh;
}

.all-questions-counter .all-questions-item {
    background-color: rgba(243, 139, 0, 0.2);
    width: 4vw;
    height: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.all-questions-counter .all-questions-item.active {
    background-color: rgba(243, 139, 0, 1);
}

.question-answers .answer-item {
    font-size: 2vh;
    width: calc(100% - 0.6vw);
    padding: 0.3vh 0.3vw;
    position: relative;
    margin-bottom: 1.5vh;
}

.answer-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(210, 42, 27, 0.6), rgba(233, 121, 29, 0.6), rgba(255, 200, 31, 0.6));
    z-index: 0;
    border-radius: 4vw;
}

#firstAnswer,
#secondAnswer {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 4vw;
    padding: 0.5vh 2vw;
    transition: all 0.2s linear;
}

#firstAnswer.selected,
#secondAnswer.selected {
    background: linear-gradient(to left, rgba(210, 42, 27, 0.6), rgba(233, 121, 29, 0.6), rgba(255, 200, 31, 0.6));
}

.next-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.finish-page .finish-page-title {
    font-size: 2.4vh;
    margin-bottom: 2vh;
    line-height: 3.2vh;
}

.finish-page .finish-page-text {
    font-size: 2vh;
}

.key-word {
    position: relative;
    background-color: #fff;
    border-radius: 4vw;
}

.key-word::before {
    content: '';
    position: absolute;
    left: -4%;
    top: -10%;
    width: 108%;
    height: 120%;
    background: linear-gradient(to left, rgba(210, 42, 27, 0.6), rgba(233, 121, 29, 0.6), rgba(255, 200, 31, 0.6));
    border-radius: 4vw;
    z-index: -2;
}

.key-word::after {
    content: '';
    position: absolute;
    left: -2%;
    top: -1%;
    width: 104%;
    height: 104%;
    background: #fff;
    border-radius: 4vw;
    z-index: -1;
}

.footer {
    position: absolute;
    bottom: 1vh;
    width: 100%;
    text-align: center;
    color: #606060;
    font-size: 1vh;
}

.finish-page-button-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}