@charset "UTF-8";

:root {
    --main-color: #303030;
    --title-color: #000;
    --errorForm-color: #ff0e0e;
    --hoverButton-color: #4ecb71;
    --mainBg-color: radial-gradient(190.24% 120.56% at -19.97% -12.36%, #4A88FF 0%, #0C111B 100%);
    --secondBg-color: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0 !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Inter', sans-serif;
    color: #939393;
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-weight: 400;
}

::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Inter', sans-serif;
    color: #939393;
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-weight: 400;
}

:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Inter', sans-serif;
    color: #939393;
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-weight: 400;
}

:-moz-placeholder { /* Firefox 18- */
    font-family: 'Inter', sans-serif;
    color: #939393;
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-weight: 400;
}

html {
    font-size: 62.5%;
    line-height: 100%;
    -webkit-text-size-adjust: 100%;
    display: grid;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    color: var(--main-color);
    background: #fff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 15px 40px;
}

@media screen and (min-width: 768px) {
    .control-height {
        min-height: 633px;
        max-height: 800px;
        height: 100%;
    }
}


header {
    flex: 0 0 auto;
    margin-bottom: 30px;
}

footer {
    flex: 0 0 auto;
    padding-top: 12px;
}

.container {
    width: 100%;
    height: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.btn {
    color: #fff;
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    max-width: 306px;
    background: var(--title-color);
    border: none;
    border-radius: 10px;
    padding: 21px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background: var(--hoverButton-color);
}

.btn_color {
    background: var(--hoverButton-color);
}

/* Header */
.header {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo .logo__img {
    width: 100%;
    max-width: 106px;
    height: auto;
}

.logo .logo__divider {
    width: 1px;
    height: 29px;
    background: #000;
    margin: 0 12px;
}

.logo .logo2__img {
    width: 100%;
    max-width: 34px;
    height: auto;
}

.lang {
    position: relative;
    margin-left: auto;
}

.lang .lang__button {
    display: flex;
    align-items: center;
    background: no-repeat;
    border: none;
    cursor: pointer;
}

.lang .lang__button__text {
    color: var(--title-color);
    font-size: 1.4rem;
    line-height: 0;
    font-weight: 600;
}

.lang .lang__button__icon {
    width: 100%;
    max-width: 17px;
    height: auto;
    margin-left: 9px;
}

.lang__dropdown {
    display: none;
    background: #fff;
    min-width: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    text-align: center;
    position: absolute;
    top: 24px;
    z-index: 1;
}

.lang__dropdown .lang__dropdown__link {
    color: var(--title-color);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    display: block;
    padding: 10px;
    text-decoration: none;
}

.lang__dropdown .lang__dropdown__link:hover {
    color: var(--hoverButton-color);
}
/* END Header */

/* Main */
.main {
    display: flex;
    height: 100%;
}

.content {
    flex: 0 1 100%;

}

.content .content-inner,
.sidebar .sidebar-inner {
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.content .content-inner {
    color: #fff;
    background:url("../images/main-img1.png") no-repeat 90% bottom, var(--mainBg-color);
    padding: 40px;
}

.content .content-inner h1 {
    font-size: 4.2rem;
    line-height: 5.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.content .content-inner ol {
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding-left: 20px;
    max-width: 326px;
}

.content .content-inner ol li {
    margin-bottom: 10px;
}

.content .content-inner ol a {
    color: inherit;
    text-decoration: underline;
}

.content .content-inner .content-inner__down {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.content .content-inner .shield {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.content .content-inner .shield .shield__img {
    width: 100%;
    max-width: 50px;
    height: auto;
}

.content .content-inner .shield .shield__text {
    font-size: 1.9rem;
    line-height: 2.1rem;
    font-weight: 600;
    margin-left: 20px;
}

.content .content-inner .hiddenBtn {
    display: none;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.content .content-inner .hiddenBtn .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.content .content-inner .hiddenBtn .btn input[accept*="camera"] {
    display: none;
}

.content .content-inner .hiddenBtn .btn .btn__img {
    width: 100%;
    max-width: 28px;
    height: auto;
    margin-right: 9px;
}

.content .content-inner .hiddenBtn a {
    color: #fff;
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 700;
    text-decoration: none;
}

.qr-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.qr-form .wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto;

}

.qr-form .qr-form__down {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;

}

.qr-form .qr-form__example {
    background: url("../images/bottle1.png") no-repeat right center / contain;
    margin: -20px 32px -15px 0;
    padding: 225px 44px 0 0;

}

.qr-form .qr-form__example .qr-form__example-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 9px 7px rgba(0, 0, 0, 0.25);
    padding: 19px;
    position: relative;
}

.qr-form .qr-form__example .qr-form__example-inner::after {
    content: "";
    display: block;
    width: 43px;
    height: 20px;
    position: absolute;
    bottom: -29px;
    left: 35px;
    margin: 0 auto;
}

.qr-form .qr-form__example .qr-form__example-inner .qr-form__example-inner__code {
    color: var(--title-color);
    font-size: 1.7rem;
    line-height: 1.9rem;
    /*max-width: 40px;*/
    margin-right: 9px;
}

.qr-form .qr-form__example .qr-form__example-inner .qr-form__example-inner__img {
    width: 100%;
    height: auto;
}

.qr-form .qr-form__controls {
    flex: 0 0 137px;
}

.qr-form .qr-form__controls .qr-form__controls__input {
    color: var(--title-color);
    font-size: 2.4rem;
    line-height: 2.9rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    background: #fff;
    border: 1px solid var(--secondBg-color);
    border-radius: 8px;
    padding: 7px 13px;
    margin-bottom: 14px;
    height: 69px;
}

.qr-form .qr-form__controls .qr-form__controls__input:last-child {
    margin-bottom: 0;
}

.qr-form .qr-form__btn {
    margin-top: auto;
}
/* END Main */

/* Footer */
.footer {
    color: var(--title-color);
    opacity: 0.5;
    font-size: 1.4rem;
    line-height: 1.7rem;
}
/* END Footer */

/* Failed page */
.content .content-inner.content-inner_validation {
    color: var(--title-color);
    background: var(--secondBg-color);
    border: 1px solid #ededed;
    padding: 83px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .content-inner.content-inner_validation .content-inner_validation__img {
    width: 100%;
    max-width: 88px;
    height: auto;
    margin-bottom: 22px;
}

.content .content-inner.content-inner_validation h2 {
    font-size: 3.6rem;
    line-height: 4.3rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.content .content-inner.content-inner_validation p {
    color: var(--main-color);
    font-size: 2.0rem;
    line-height: 2.4rem;
    margin-bottom: 40px;
    max-width: 513px;
}

.content .content-inner.content-inner_validation .info {
    font-size: 1.6rem;
    line-height: 1.9rem;
    max-width: 477px;
    margin: 46px 0 0;
}

.content .content-inner.content-inner_validation .info a {
    color: inherit;
}

.content .content-inner.content-inner_validation .info button {
    font-size: 1.6rem;
    line-height: 1.9rem;
    text-decoration: underline;
    border: none;
    cursor: pointer;
}
/* END Failed page */

/* Contacts */
.content .content-inner.contacts {
    color: var(--title-color);
    background: var(--secondBg-color);
    border: 1px solid #ededed;
    padding: 65px 40px 89px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .content-inner.contacts h2 {
    font-size: 3.6rem;
    line-height: 4.3rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.content .content-inner.contacts p {
    color: var(--main-color);
    font-size: 2.0rem;
    line-height: 2.4rem;
    text-align: center;
    margin-bottom: 63px;
    max-width: 477px;
}

.contacts-form {
    width: 100%;
    max-width: 345px;
}

.contacts-form .contacts-form__control {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
    position: relative;
}

.contacts-form .contacts-form__control-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}


.contacts-form .contacts-form__control .contacts-form__control__label {
    color: #939393;
    font-size: 1.4rem;
    line-height: 1.7rem;
    display: flex;
    flex-direction: column;
}

.contacts-form .contacts-form__control .contacts-form__control__field {
    color: var(--title-color);
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: 18px 20px;
    margin-top: 6px;
    width: 100%;
    height: 60px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 5px;
    resize: none;
}

.contacts-form .contacts-form__control .contacts-form__control__field:focus {
    border: 1px solid #2d9bf0;
}

.contacts-form .contacts-form__control textarea.contacts-form__control__field {
    height: 138px;
}

.contacts-form .contacts-form__control .contacts-form__control__error {
    color: var(--errorForm-color);
    font-size: 1.4rem;
    line-height: 1.7rem;
    margin-top: 3px;
    display: none;
}

.contacts-form .contacts-form__control.error .contacts-form__control__field {
    border: 1px solid var(--errorForm-color);
}

.contacts-form .contacts-form__control.error .contacts-form__control__error {
    display: block;
}

.contacts-form .attach-file {
    margin: 26px 0 56px;
}

.contacts-form .attach-file .contacts-form__control {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contacts-form .attach-file .contacts-form__control .removeAttachFile {
    flex: 0 0 17px;
    height: 17px;
    background: url("../images/remove-icon.svg") no-repeat center center/100%;
    margin-left: 20px;
    cursor: pointer;
}

.contacts-form .attach-file .contacts-form__control__field {
    width: 100%;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.contacts-form .attach-file .contacts-form__control__field + .contacts-form__control__label {
    font-size: 1.8rem;
    line-height: 2.2rem;
    text-decoration: underline;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contacts-form .attach-file .contacts-form__control__field + .contacts-form__control__label.fileAdded {
    color: var(--title-color);
}

.contacts-form .attach-file .contacts-form__control__field + .contacts-form__control__label::before {
    content: url("../images/icon-clip.svg");
    font-size: 0;
    line-height: 0;
    width: 100%;
    max-width: 15px;
    height: auto;
    margin-right: 8px;
}

.contacts-form .attach-file .contacts-form__control__field + .contacts-form__control__label.fileAdded::before {
    content: url("../images/icon-clip2.svg");
}

.contacts-form .attach-file .attach-file__btn {
    text-decoration-line: underline;

    color: #939393;
    font-size: 1.8rem;
    line-height: 2.2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 23px;
}

.contacts-form .btn {
    max-width: none;
}
/* END Contacts */

/* Verification */
.content .content-inner.verification {
    background: var(--mainBg-color);
}

.content .content-inner.verification::before {
    display: none;
}

.content .content-inner.verification p {
    font-size: 1.6rem;
    line-height: 1.9rem;
    max-width: 260px;
}

.content .content-inner.verification .qr-form {
    margin: -130px auto 0;
    justify-content: flex-end;
}

.content .content-inner.verification .qr-form .qr-form__example .qr-form__example-inner::after {
    background: url("../images/arrow2.svg") no-repeat center center;
}

.content .content-inner.verification .qr-form .qr-form__btn {
    margin-top: 22px;
}
/* EMD Verification */
@media screen and (max-width: 1024px) {

    .main {
        margin: 0;
    }

    .content {
        padding: 0;
    }

    .content .content-inner {
        position: relative;
        background:url("../images/main-img1.png") no-repeat 124% bottom/65%, var(--mainBg-color);


    }

    .content .content-inner::before {
        content: "";
        display: block;
        width: 100%;
        height: 191px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
        border-radius: 0 0 20px 20px;
        padding: 0 5px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
    
    .content .content-inner .content-inner__down {
        display: none;
    }

    .content .content-inner .hiddenBtn {
        display: block;
        position: relative;
    }

    .sidebar {
        display: none;
    }

    .content .content-inner.content-inner_validation::before,
    .content .content-inner.contacts::before {
        display: none;
    }

    .content .content-inner.content-inner_validation .hideMobile {
        display: none;
    }

    .content .content-inner.content-inner_validation .hiddenBtn {
        margin-top: 0;
    }

    .content .content-inner.content-inner_validation .hiddenBtn a {
        color: var(--title-color);
    }

    .qr-form .wrap {
        justify-content: flex-end;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding: 10px 15px;
    }
    header {
        margin-bottom: 16px;
    }

    main {
        /*margin-bottom: 8px;*/
        flex: 1 0 auto;
    }

    .content .content-inner {
        padding: 25px;
        background:url("../images/main-img1.png") no-repeat right -120px bottom/95%, var(--mainBg-color);
    }

    .content .content-inner h1 {
        font-size: 3.2rem;
        line-height: 3.3rem;
    }

    .content .content-inner ol {
        font-size: 1.6rem;
        line-height: 1.9rem;
        max-width: 293px;
    }

    .content .content-inner.content-inner_validation {
        padding: 70px 25px 25px;
    }

    .content .content-inner.content-inner_validation h2 {
        font-size: 2.8rem;
        line-height: 3.4rem;
        margin-bottom: 20px;
    }

    .content .content-inner.content-inner_validation p {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .content .content-inner.contacts {
        padding: 33px 25px;
    }

    .content .content-inner.contacts h2 {
        font-size: 2.8rem;
        line-height: 3.4rem;
        margin-bottom: 16px;
    }

    .content .content-inner.contacts p {
        font-size: 1.8rem;
        line-height: 2.2rem;
        margin-bottom: 30px;
    }

}

@media only screen and (max-height: 768px) {
    .content .content-inner {
        background: url("../images/main-img1.png") no-repeat right bottom /57%, var(--mainBg-color);
    }
}

@media screen and (max-width: 576px) {

    .content .content-inner.verification .qr-form {
        margin-top: 16px;
    }

    .qr-form .qr-form__down {
        justify-content: center;
    }


    .qr-form .qr-form__down .shield {
        display: none;
    }

    footer {
        padding-top: 6px;
    }
}

@media screen and (max-width: 440px) {
    .content .content-inner {
        background:url("../images/main-img1.png") no-repeat center bottom -70px /160%, var(--mainBg-color);

    }

    .content .content-inner.verification .qr-form .qr-form__example .qr-form__example-inner::after {
        left: 22px;
    }


    .qr-form .qr-form__example {
        background-size: 82px;
        background-position: right bottom;
        padding: 139px 28px 0 0;
        margin-bottom: -10px;
    }

    .qr-form .qr-form__example .qr-form__example-inner .qr-form__example-inner__img {
        max-width: 62px;
    }

    .qr-form .wrap {
        justify-content: center;
    }

    .qr-form .qr-form__example .qr-form__example-inner .qr-form__example-inner__code {
        line-height: 1.3rem;
        font-size: 1.2rem;
    }

    .qr-form .qr-form__example .qr-form__example-inner {
        padding: 14px;
    }
    .qr-form .qr-form__example {
        margin-right: 20px;
        margin-top: 0;
    }

    .qr-form .qr-form__controls {
        flex: 0 0 92px;
        padding-top: 15px;
    }

    .qr-form .qr-form__controls .qr-form__controls__input {
        padding: 7px 3px;
        height: 45px;
        margin-bottom: 9px;
    }

    .footer {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}

@media screen and (max-width: 375px) {
    .content .content-inner {
        background:url("../images/main-img1.png") no-repeat center bottom -20px /100%, var(--mainBg-color);

    }
}
