

/* Start:/local/components/main.components/express.test/style.css?174919848910419*/
.quizzy {
    display: none;
}

.grecaptcha-badge {
    visibility: hidden;
}

.container-banner {
    display: none !important;
}

:root {
    --main-color: #00c4b3;
    --main-color-hl: #bb0013;
    --main-color-cist: #CB007B;
    --main-color-gastro: #0091C0;

    --active: #9aefec;
    --active-hl: #e29199;
    --active-cist: #CB007B;
    --active-gastro: #0091C0;
}

.gt-banner {
    max-width: 1100px;
    margin: 85px auto;
}

.gt-banner img {
    width: 100% !important;
}

.gt-container {
    max-width: 1100px;
    margin: 20px auto;
    min-height: 50vh;
    font-family: "DINRoundPro", Sans-serif !important;
}

.gt-test-container,
.gt-form-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.gt-picture {
    width: 45%;
    text-align: center;
}

.gt-picture img {
    width: 85%;
}

.gt-box {
    width: 45%;
}

.gt-box__progress {}

.gt-box__progress-row {
    margin: 10px auto 10px 0;
    width: 100%;
    height: 10px;
    background-color: lightgrey;
    border-radius: 10px;
    position: relative;
}

.gt-box__progress-inrow {
    position: absolute;
    background-color: var(--main-color);
    border-radius: 10px;
    height: 10px;
    width: 0%;
}

.gt-box__progress-step {
    text-align: right;
    font-size: 16px;
}

.gt-box__progress-step span:nth-child(1) {
    color: var(--main-color);
}

.gt-box__text {
    font-size: 32px;
    text-transform: uppercase;
    color: var(--main-color);
    line-height: 1;
    font-weight: bold;
    margin-top: 20px;
}

.gt-box__answer {
    margin-top: 25px;
}

.gt-box__answer-item {
    margin: 10px auto;
    width: 100%;
    height: 80px;
    background-color: #f8f8f8;
    border-radius: 20px;
    display: flex;
    padding: 8px;
    line-height: 1;
    align-items: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.gt-box__answer-item:hover {
    border: 2px solid var(--active);
}

.gt-box__answer-item._hover-hl:hover {
    border: 2px solid var(--active-hl);
}

.gt-box__answer-item._hover-cist:hover {
    border: 2px solid var(--active-cist);
}

.gt-box__answer-item._hover-gastro:hover {
    border: 2px solid var(--active-gastro);
}

.gt-box__answer-check {
    width: 25px;
    height: 25px;
    position: relative;
    background: #dadbdb;
    margin: auto 20px auto 30px;
    border-radius: 50px;
    box-shadow: 0 0 0 2px white;
}

.gt-box__answer-check label {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    left: 4px;
    cursor: pointer;
    border-radius: 50px;
}

.gt-box__answer-check label:after {
    content: '';
    width: 13px;
    height: 13px;
    position: absolute;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background-color: #00b6a8;
    border-top: none;
    border-right: none;
    opacity: 0;
}

.gt-box__answer-check._check-hl label:after {
    background-color: var(--main-color-hl);
}

.gt-box__answer-check._check-cist label:after {
    background-color: var(--main-color-cist);
}

.gt-box__answer-check._check-gastro label:after {
    background-color: var(--main-color-gastro);
}

.gt-box__answer-check input[type=checkbox] {
    visibility: hidden;
}

.gt-box__answer-check input[type=checkbox]:checked+label:after {
    opacity: 1;
}

.gt-box__answer-label {
    font-size: 22px;
    width: 80%;
}

.gt-box__answer-label span:nth-child(1) {
    text-transform: uppercase;
    color: var(--main-color);
}

.gt-box__title {
    line-height: 1.1;
    margin-top: 20px;
}

.gt-box__title-1 {
    font-size: 22px;
    margin: 10px auto;
}

.gt-box__title-2 {
    font-size: 30px;
    color: var(--main-color);
    text-transform: uppercase;
    margin: 10px auto;
    font-weight: bold;
}

.gt-form {
    width: 100%;
}

.gt-form [type="text"],
.gt-form [type="email"] {
    width: 100%;
    font-size: 19px;
    padding: 8px 20px;
    border-radius: 15px;
    border: 1px solid #e6e6e6;
    color: #05347f;
    margin: 5px auto;
    outline: none;
}

.gt-form input::-webkit-input-placeholder {
    color: #b3b3b4;
}

.gt-form input::-moz-placeholder {
    color: #b3b3b4;
}

.gt-form input:-moz-placeholder {
    color: #b3b3b4;
}

.gt-form input:-ms-input-placeholder {
    color: #b3b3b4;
}

.gt-form__item span {
    color: #d1d0d2;
    font-size: 16px;
}

.gt-form__error {
    font-size: 14px;
    color: red;
    padding-left: 15px;
}

.gt-form__send {
    display: flex;
    margin: 15px 0;
}

.gt-form__send button {
    display: block;
    width: 140px;
    height: 40px;
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    border-radius: 40px;
    border: none;
    outline: none;
    font-size: 19px;
}

.gt-form__send-text {
    width: calc(100% - 150px);
    margin-left: 20px;
    line-height: 1;
    font-size: 18px;
    color: #d1d0d2;
}

.gt-form__send-text a {
    color: #d1d0d2;
}

.gt-result__box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.gt-result__box>img {
    width: 90%;
}

._center {
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
}

.gt-result__img {
    width: 40%;
    margin: 0 25px;
}

.gt-result__img img {
    display: block;
    width: 80%;
    margin: auto;
}

.gt-result__box__container {
    border-radius: 58px;
    background: var(--main-color-cist);;
    width: 90%;
}

.gt-result__box__container p {
    color: #FFF;
    text-align: center;
    font-family: DIN Round Pro;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.76px;
}

.gt-result__text {
    font-size: 22px;
    line-height: 1.3;
    width: 45%;
}

.gt-result__text p {
    margin-bottom: 0px;
}

.gt-result__text ul {
    margin-bottom: 0px;
}

.gt-result__text ul li {
    color: #00b6a8;
}

.gt-result__text ul li span {
    color: #05347f;
}

.gt-result__tip {
    width: 100%;
    text-transform: uppercase;
    padding: 15px 15px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 20px;
    background-color: #f8f8f8;
    margin: 15px 0;
}

.gt-best-prise {
    display: none;
}

.gt-result__end {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 25px 0;
    padding: 0 10px;
    position: relative;
}

.gt-result__end-text {
    font-size: 18px;
    line-height: 1.3;
    width: 70%;
    color: #9c9c9c;
}

.gt-result__end-img {
    width: 14%;
    margin: 0 25px;
}

.gt-result__end-img img {
    width: 100%;
}

._border-hl {
    border-color: var(--active-hl) !important;
}

._border-cist {
    border-color: var(--active-cist) !important;
}

._border-gastro {
    border-color: var(--active-gastro) !important;
}

._background-hl {
    background-color: var(--main-color-hl) !important;
}

._background-cist {
    background-color: var(--main-color-cist) !important;
}

._background-gastro {
    background-color: var(--main-color-gastro) !important;
}

._color-hl {
    color: var(--main-color-hl) !important;
}

._color-cist {
    color: var(--main-color-cist) !important;
}

._color-gastro {
    color: var(--main-color-gastro) !important;
}

._color-blue {
    color: #05347F !important; 
}

@media (max-width:1000px) {
    .gt-box__text,
    .gt-box__title-2 {
        font-size: 26px;
    }
    .gt-box__answer-check {
        margin: auto 20px;
    }
    .gt-form__send {
        flex-direction: column;
        align-items: center;
    }
    .gt-form__send-text {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        font-size: 16px;
    }
    .gt-form__send button {
        width: 200px;
        height: 50px;
        color: white;
        font-size: 24px;
    }
    .gt-result__box {
        flex-direction: column;
        margin-bottom: 25px;
    }
    .gt-result__text {
        width: 90%;
    }
    .gt-result__img {
        width: 50%;
    }
    .gt-result__img img {
        display: block;
        width: 80%;
        margin: 15px auto;
    }
}

@media (max-width:600px) {
    /* .gt-banner img {
        display: none;
    } */
    .gt-container {
        min-height: 62vh;
    }
    .gt-box__text {
        font-size: 26px;
    }
    .gt-box__answer-check {
        margin: auto 20px;
    }
    .gt-test-container,
    .gt-form-container {
        flex-direction: column;
        align-items: center;
    }
    .gt-picture {
        width: 60%;
        min-height: 51vw;
    }
    .gt-box {
        width: 90%;
    }
    .gt-box__answer-label {
        font-size: 20px;
        width: 70%;
    }
    .gt-result__img {
        width: 80%;
        min-height: 59vw;
    }
    .gt-result__tip {
        font-size: 20px !important;
    }
    .gt-result__text {
        font-size: 18px;
    }
    .gt-result__end-text {
        font-size: 18px;
        width: 90%;
    }
    .gt-result__end {
        margin-bottom: 350px;
    }
    .gt-result__end-img {
        width: 300px;
        position: absolute;
        bottom: -280px;
    }
}

.gt-loader {
    width: 100%;
}

.gt-loader .loader,
.gt-loader .loader:before,
.gt-loader .loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.2s infinite ease-in-out;
    animation: load7 1.2s infinite ease-in-out;
}

.gt-loader .loader {
    color: var(--main-color);
    font-size: 15px;
    margin: 15px auto 64px auto;
    position: relative;
    /* text-indent: -9999em; */
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.gt-loader._loader-hl .loader {
    color: var(--main-color-hl);
}

.gt-loader._loader-cist .loader {
    color: var(--main-color-cist);
}

.gt-loader._loader-gastro .loader {
    color: var(--main-color-gastro);
}

.gt-loader .loader:before,
.gt-loader .loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.gt-loader .loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.gt-loader .loader:after {
    left: 3.5em;
}

@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
/* End */
/* /local/components/main.components/express.test/style.css?174919848910419 */
