@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root {
    --primary: #f28e00;
    --primary-light: #f89d43;
    --default: #231f20;
}
#request-form {
    font-family: "Manrope", sans-serif;
    margin-top: -140px;
    position: relative;
}
#request-form.show-quiz-screen:after {
   content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    width: 200px;
    pointer-events: none;
}
.request-back-button {
    position: absolute;
    top: 75px;
    width: 60px;
    height: 60px;
    border: 2px solid;
    color: rgba(0,0,0,0.2);
    border-radius: 50%;
    font-size: 11px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0;
}
.request-back-button.active {
    pointer-events: all;
    opacity: 1;
}
.request-back-button::after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    border-top: 2px solid;
    border-right: 2px solid;
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin: auto;
    top: 0;
    bottom: 0;
    left: 3em;
    right: 0;
}
.request-back-button:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}
.home-screen:not(.active),
.quiz-screen:not(.active),
.quiz-pages-number:not(.active) {
    display: none;
}
.home-screen-left {
    margin-top: 20px;
}
.home-screen h1 {
    color: var(--primary);
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1;
}
.home-screen-paragraph {
    max-width: 560px;
    margin-bottom: 50px;
}
.home-screen h2 {
    color: rgba(0,0,0,0.25);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}
.home-screen-inputs {
    max-width: 330px;
    width: 100%;
    margin-bottom: 60px;
}
.sk.form .home-screen-inputs .field {
    margin: 0 0 15px;
}
.text-errors {
    color: rgba(189,33,38, 0.9);
    font-size: 10px;
}
#request-form .circle-button {
    cursor: pointer;
}
.home-screen-image {
    overflow: hidden;
    border-radius: 35px;
    height: 100%;
}
.home-screen-image img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.quiz-screen {
    padding-top: 100px;
}
.quiz-pages-dot {
    height: 8px;
    width: 37px;
    background-color: rgba(0,0,0,0.07);
    border-radius: 10px;
}
.quiz-pages-dot:not(:last-child) {
    margin-right: 4px;
}
.quiz-pages-dot.active {
    background-color: var(--primary-light);
    cursor: pointer;
}
.quiz-pages-indicator {
    font-size: 14px;
    color: rgba(35,31,32,0.2);
    margin-top: 7px;
}
.quiz-pages-results {
    margin-top: 35px;
    white-space: nowrap;
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    font-size: 0;
}
.quiz-page-item {
    width: 100%;
    display: inline-block;
    white-space: normal;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
}
.quiz-page-item.active {
    pointer-events: all;
}
.quiz-page-item h3 {
    font-size: 65px;
    color: rgba(0,0,0,0.3);
    font-weight: 400;
    margin-bottom: 50px;
}
.quiz-page-item h3 small {
    font-size: 0.5em;
    position: relative;
    top: -1em;
}
.quiz-page-item[data-page="1"] h3 {
    max-width: 795px;
}
.quiz-page-item[data-page="2"] h3 {
    max-width: 800px;
}
.quiz-page-item[data-page="7"] h3 {
    max-width: 1200px;
}
.quiz-page-item[data-page="8"] h3 {
    max-width: 1200px;
}
.quiz-page-item[data-page="9"] h3 {
    font-size: 35px;
    max-width: 1200px;
    line-height: 2;
}
.quiz-page-boxes-container {
    position: relative;
}
.quiz-page-boxes {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 30px;
    background-color: rgba(0,0,0,0.1);
}
.quiz-page-boxes:not(.one-box) {
    padding-bottom: 0;
}
.quiz-page-boxes:not(:first-child) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.quiz-page-boxes.active {
    opacity: 1;
    pointer-events: all;
}
.quiz-page-boxes > .row > .col {
    margin-bottom: 30px;
}
.quiz-page-boxes > .row > .col > label,
.quiz-page-box {
    height: 100%;
}
.quiz-page-box {
    padding: 30px;
    border-radius: 20px;
    width: 325px;
    background-color: white;
    min-height: 300px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quiz-page-boxes.one-box .quiz-page-box {
    width: 675px;
}
.quiz-page-boxes.three-boxes .quiz-page-box {
    width: 275px;
}
.quiz-page-boxes.four-boxes .quiz-page-box {
    width: 275px;
    padding: 15px;
}
.quiz-page-boxes.five-boxes .quiz-page-box {
    width: 235px;
}
.quiz-page-boxes label {
    display: block;
    margin: 0;
}
.quiz-page-boxes .checkbox {
    position: absolute;
    left: -9999px;
}
.quiz-page-check {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: rgba(0,0,0,0.1);
    top: 20px;
    right: 20px;
    border-radius: 8px;
    color: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quiz-page-check::after {
    content: "";
    position: absolute;
    border-bottom: 3px solid;
    border-right: 3px solid;
    width: 0.5em;
    height: 1em;
    top: -0.2em;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.quiz-page-icon svg {
    height: 100px;
    fill: var(--primary-light);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quiz-page-title {
    margin-top: 15px;
    font-size: 28px;
    line-height: 1;
}
.quiz-page-title-wrap {
    border-bottom: 2px solid transparent;
    display: inline-block;
    padding-bottom: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quiz-page-title-wrap::after {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 0.3em;
    height: 0.3em;
    background-color: white;
    margin-left: 0.3em;
    vertical-align: 0.5em;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quiz-page-title-wrap small {
    font-size: 18px;
}
.quiz-page-boxes .checkbox:checked + .quiz-page-box {
    background-color: var(--primary-light);
    color: white;
}
.quiz-page-boxes .checkbox:checked + .quiz-page-box .quiz-page-check {
    background-color: white;
    color: var(--primary-light);
}
.quiz-page-boxes .checkbox:checked + .quiz-page-box .quiz-page-icon svg {
    fill: white;
}
.quiz-page-boxes .checkbox:checked + .quiz-page-box .quiz-page-title-wrap {
    border-bottom-color: inherit;
}
.quiz-page-boxes .checkbox:checked + .quiz-page-box .quiz-page-title-wrap::after {
    opacity: 1;
}
.quiz-page-input-left {
    flex: 1;
}
.sk.form .quiz-page-input-left input[type="text"] {
    border: 0;
    border-bottom: 1px solid;
    color: var(--default);
    padding: 0 0 5px !important;
    font-size: 35px;
    line-height: 1;
}
.sk.form .quiz-page-input-left ::placeholder {
    color: var(--default);
    opacity: 1;
}
.quiz-page-input-right {
    font-size: 35px;
    line-height: 1;
}
.quiz-input-file-top h4 {
    margin: 0 0 15px;
    font-weight: 400;
    font-size: 19px;
}
.custom-browse-preview-file {
    position: relative;
    padding: 4px 25px 4px 5px;
    background-color: rgba(35,31,32,0.1);
    border-radius: 5px;
    color: rgba(35,31,32,0.5);
    margin-bottom: 5px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    max-width: 100%;
}
.custom-browse-preview-file .close {
    position: absolute;
    right: 5px;
    width: 0.5em;
    margin: auto;
    top: 3px;
    line-height: 1;
}
.custom-browse-preview-file .close svg {
    fill: none;
    stroke: #231f20;
    stroke-miterlimit: 10;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quiz-input-file-bottom {
    margin-top: 30px;
}
.quiz-page-boxes .custom-browse-button {
    font-size: 35px;
    padding: 7px 20px;
    border: 1px solid;
    display: inline-block;
    line-height: 1;
    border-radius: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.quiz-page-boxes .custom-browse-button:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}
.quiz-page-required {
    margin-top: 25px;
    color: rgba(35,31,32,0.4);
}
.quiz-page-required.red {
    color: rgba(189,33,38, 0.9);
}
.quiz-page-required .star {
    font-size: 2em;
    font-weight: 100;
    line-height: 1;
    vertical-align: -0.4em;
    margin-right: 0.2em;
}
.without-requirements .quiz-page-required {
    opacity: 0;
    pointer-events: none;
}
.sk.button.no-style {
    padding: 0;
    border: 0;
    text-transform: none;
    background-color: transparent !important;
}
#request-form #msgholder {
    position: relative;
    z-index: 1;
}
.home-screen-button {
    margin-top: 10vw;
}

.custom-browse-preview-file.has-error {
    border: 1.5px solid red;
    color: red;
}
.btn-disable {
    touch-action: none;
    opacity: 0.5;
    pointer-events: none;
}
/*Responsive*/
@media only screen and (max-width:1850px) {
    .quiz-page-box {
        padding: 20px;
    }
    .quiz-page-boxes.five-boxes .quiz-page-box {
        width: 210px;
    }
    .quiz-page-title {
        font-size: 21px;
    }
    .quiz-page-title-wrap small {
        font-size: 15px;
    }
    .quiz-page-boxes {
        padding: 20px;
    }
    .quiz-page-boxes > .row > .col {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width:1700px) {
    .home-screen h1 {
        font-size: 60px;
        margin-bottom: 30px;
    }
    .home-screen-paragraph {
        margin-bottom: 40px;
    }
    .quiz-page-boxes > .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .quiz-page-boxes > .row > .col {
        padding-left: 10px;
        padding-right: 10px;
    }
    .quiz-page-boxes.four-boxes .quiz-page-box {
        width: 240px;
    }
    .quiz-page-boxes.five-boxes .quiz-page-box {
        width: 180px;
    }
}
@media only screen and (max-width:1550px) {
    #request-form.show-quiz-screen::after {
        width: 100px;
    }
    .home-screen h1 {
        font-size: 50px;
        margin-bottom: 25px;
    }
    .home-screen-paragraph {
        margin-bottom: 30px;
    }
    .home-screen h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .quiz-page-item {
        font-size: 14px;
    }
    .quiz-page-row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .quiz-page-row > .col-40 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .quiz-page-box {
        min-height: 225px;
        padding: 10px;
        border-radius: 15px;
    }
    .quiz-page-boxes.four-boxes .quiz-page-box {
        width: 205px;
    }
    .quiz-page-boxes.five-boxes .quiz-page-box {
        width: 160px;
    }
    .quiz-page-icon svg {
        height: 75px;
    }
    .quiz-page-check {
        width: 22px;
        height: 22px;
        top: 10px;
        right: 10px;
        font-size: 10px;
    }
    .quiz-page-title {
        font-size: 20px;
    }
    .quiz-page-title-wrap small {
        font-size: 12px;
    }
}
@media only screen and (max-width:1300px) {
    #request-form {
        margin-top: -100px;
    }
    #request-form.show-quiz-screen:after {
        display: none;
    }
    .request-back-button {
        top: 0;
        width: 45px;
        height: 45px;
        font-size: 8px;
    }
    .home-screen h1 {
        font-size: 40px;
    }
    .home-screen h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .quiz-screen {
        padding-top: 70px;
    }
    .quiz-pages-results {
        -ms-transform: none !important;
        transform: none !important;
        white-space: normal;
    }
    .quiz-page-item {
        display: none;
    }
    .quiz-page-item.active {
        display: block;
    }
    .quiz-page-item h3 {
        font-size: 45px;
        margin-bottom: 35px;
    }
    .quiz-page-row > .col-40 {
        width: 100%;
    }
    .quiz-page-row > .col-40:last-child {
        margin-top: 15px;
    }
    .quiz-page-box {
        width: 100% !important;
    }
    .quiz-page-boxes.two-boxes > .row > .col {
        width: 50%;
    }
    .quiz-page-boxes.three-boxes > .row > .col {
        width: 33.33%;
    }
    .quiz-page-boxes.four-boxes > .row > .col {
        width: 25%;
    }
    .quiz-page-boxes.five-boxes > .row > .col {
        width: 20%;
    }
    .sk.form .quiz-page-input-left input[type="text"] {
        font-size: 25px;
    }
    .quiz-page-input-right {
        font-size: 25px;
    }
}
@media only screen and (min-width:770px) and (max-width:1300px) {
    .quiz-page-boxes.one-box,
    .quiz-page-boxes.two-boxes,
    .quiz-page-boxes.three-boxes {
        max-width: 700px;
    }
}
@media only screen and (max-width:1024px) {
    #request-form {
        margin-top: 0;
    }
    .home-screen-left {
        margin-top: 20px;
    }
    .home-screen h1 {
        line-height: 1.4;
        font-size: 30px;
    }
    .home-screen-bottom-left,
    .home-screen-bottom-right {
        width: 100%;
    }
    .quiz-page-item[data-page="9"] h3 {
        font-size: 25px;
        line-height: 1.3;
    }
    .quiz-page-boxes.four-boxes > .row > .col {
        width: 50%;
    }
    .quiz-page-boxes.five-boxes > .row > .col {
        width: 33.33%;
    }
    .quiz-page-box {
        min-height: 160px;
    }
    .quiz-page-boxes .custom-browse-button {
        font-size: 30px;
    }
}
@media only screen and (max-width:769px) {
    .home-screen-right {
        margin-top: 70px;
    }
    .home-screen-button {
        margin-top: 20px;
    }
    .quiz-page-item h3 {
        font-size: 27px;
        margin-bottom: 20px;
    }
    .quiz-page-item {
        font-size: 12px;
    }
    .quiz-page-boxes.three-boxes > .row > .col {
        width: 50%;
    }
    .quiz-page-boxes.five-boxes > .row > .col {
        width: 50%;
    }
    .quiz-page-box {
        min-height: 110px;
    }
    .quiz-page-icon svg {
        max-width: 60px;
        height: 45px;
    }
    .quiz-page-title {
        margin-top: 10px;
        font-size: 15px;
    }
    .quiz-page-title-wrap::after {
        margin-left: 0;
        position: relative;
        left: 0.2em;
    }
    .quiz-input-file-top h4 {
        font-size: 16px;
    }
    .quiz-page-boxes .custom-browse-button {
        font-size: 22px;
    }
}
@media only screen and (max-width:500px) {
    .quiz-pages-dot {
        flex: 1;
        height: 5px;
    }
    .home-screen-inputs {
        margin-bottom: 40px;
    }
    .home-screen-right {
        margin-top: 40px;
    }
    .quiz-page-item h3,
    .quiz-page-item[data-page="9"] h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    .quiz-page-item[data-page="9"] h3 {
        font-size: 19px;
    }
    .quiz-page-boxes {
        padding: 10px;
    }
    .quiz-page-boxes > .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .quiz-page-boxes > .row > .col {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    .quiz-page-boxes.four-boxes .quiz-page-box {
        padding: 10px;
    }
    .quiz-page-title-wrap small {
        font-size: 10px;
    }
    .sk.form .quiz-page-input-left input[type="text"] {
        font-size: 15px;
    }
    .quiz-page-input-right {
        font-size: 15px;
    }
    .home-screen-button {
        margin-top: 10px;
    }
}
