:root {
    color-scheme: light dark
}

@media (prefers-color-scheme: light) {
    body {
        background: #fff
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: #fff
    }
}

*, ::after, ::before {
    box-sizing: border-box
}

* {
    max-height: 100000px;
    padding: 0;
    margin: 0;
    border: none;
    outline: 0
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: 400
}

input {
    -webkit-appearance: none;
    font: inherit
}

img, svg {
    vertical-align: top;
    max-width: 100%;
    height: auto;
    border-style: none
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit
}

a[href^=tel] {
    color: inherit;
    text-decoration: inherit;
    pointer-events: none;
    display: inline
}

.footer a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: inherit
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Bold.woff2) format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Medium.woff2) format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Light.woff2) format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

body {
    min-width: 320px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    color: #383838;
    background: #fff;
    overflow-x: hidden;
    overflow-Y: scroll;
    text-size-adjust: none;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent
}

.hide-scrollbar::-webkit-scrollbar {
    width: 0
}

.hide-scrollbar {
    scrollbar-width: none
}

.wrap-inner {
    text-align: center;
    min-height: 80vh;
}

.step-1 {
    padding-top: 70px
}

.hiding {
    animation: hiding .3s forwards
}

@keyframes hiding {
    from {
        opacity: 1;
        transform: translateY(0)
    }
    to {
        opacity: 0;
        transform: translateY(-250px)
    }
}

.title {
    font-weight: 500;
    font-size: 28px;
    color: #403f3f;
    margin-bottom: 24px
}

.box {
    max-width: 372px;
    padding: 25px 10px 47px;
    margin: 0 auto 16px;
    border: 1px solid #e9e9e9;
    border-radius: 9px
}

.box__number {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 32px;
    color: #000;
    transition: color linear .3s
}

.box__text {
    max-width: 280px;
    margin: 0 auto 18px;
    font-weight: 300;
    font-size: 20px;
    line-height: 112%;
    color: #383838
}

.btn-container {
    display: flex;
    max-width: 242px;
    margin: 0 auto
}

.btn {
    display: block;
    margin: 0 auto;
    padding: 19px 5px;
    width: 100%;
    max-width: 310px;
    border-radius: 6px;
    color: #fff;
    background: #1a73e8;
    cursor: pointer;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    user-select: none;
    transition: .3s linear background
}

.btn--circle {
    border: 1px solid #1a6fdf;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    font-size: 20px;
    padding: 0;
    font-weight: 500;
    transition: all linear .1s
}

.btn:hover {
    background: #075ac7
}

.btn--circle:active {
    background-color: #00439a;
    transform: scale(.9)
}

.steps {
    font-weight: 500;
    font-size: 14px;
    line-height: 112%;
    color: #3f3e3e;
    font-weight: 700
}

.step-2 {
    padding-top: 122px;
    animation: slip .5s
}

@keyframes slip {
    from {
        opacity: 0;
        transform: translateX(100px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.box--finish {
    padding: 49px 10px 54px
}

.box__text--finish {
    max-width: 260px;
    margin-bottom: 25px
}

.text-info {
    max-width: 330px;
    margin: 51px auto 0;
    font-weight: 300;
    font-size: 14px;
    color: #666
}

.footer {
    margin: 0 auto;
    width: 100%;
    max-width: 750px;
    font-size: 11px;
    padding: 0 10px;
    text-align: center;
    color: #757575
}

.footer__text {
    position: relative;
    text-indent: 45px;
    font-weight: 300
}

.footer__text::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 5px;
    width: 40px;
    height: 12px;
    background: url(../compliance.png) no-repeat center;
    background-size: contain
}

.footer__link {
    font-weight: 300;
    display: block;
    margin: 0 auto;
    padding: 10px 5px 5px
}

.hide {
    display: none;
    visibility: hidden;
    opacity: 0
}

.error {
    color: #d10000;
    animation: pulse;
    animation-duration: 2.3s
}

@keyframes pulse {
    0%, 100%, 50% {
        opacity: 1
    }
    25%, 75% {
        opacity: .2
    }
}

@media (orientation: landscape) and (max-width: 950px) and (max-height: 500px) {
    .wrap-inner {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .step-1 {
        padding: 0
    }

    .title {
        font-size: 26px;
        margin-bottom: 10px
    }

    .box {
        padding: 21px 10px 40px;
        margin-bottom: 8px
    }

    .box__number {
        font-size: 30px;
        margin-bottom: 5px
    }

    .btn--circle {
        width: 58px;
        height: 58px;
        font-size: 18px
    }

    .box__text {
        max-width: 262px;
        font-size: 18px;
        margin-bottom: 15px
    }

    .btn-container {
        max-width: 207px
    }

    .steps {
        font-size: 12px
    }

    .wrap-inner {
        min-height: calc(var(--vh, 100vh) - 33px)
    }

    .step-2 {
        width: 100%;
        padding-top: 0;
        display: flex;
        align-items: center
    }

    .horizon-container {
        width: 50%;
        margin-left: 48px
    }

    .text-info {
        font-size: 12px;
        max-width: 280px;
        margin: auto;
        padding-bottom: 22px
    }

    .btn {
        max-width: 250px;
        padding: 10px
    }

    .box--finish {
        padding: 41px 10px 47px
    }

    .box__text--finish {
        max-width: 238px
    }

    .hide {
        display: none
    }
}

@media (orientation: landscape) and (max-width: 950px) and (max-height: 290px) {
    .box {
        padding: 10px 10px 20px
    }
}

@media (orientation: landscape) and (max-width: 580px) and (max-height: 320px) {
    .box {
        padding: 10px 10px 15px
    }

    .box__text {
        margin-bottom: 9px
    }

    .btn-container {
        max-width: 175px
    }

    .box__text--finish {
        max-width: 208px;
        font-size: 16px
    }

    .btn {
        max-width: 220px;
        padding: 8px;
        font-size: 20px
    }

    .btn--circle {
        width: 47px;
        height: 47px;
        font-size: 17px
    }

    .text-info {
        padding: 30px;
        padding-bottom: 22px
    }
}

@media (orientation: portrait) and (max-width: 500px) {
    .box {
        max-width: 93%
    }
}

@media (orientation: portrait) and (max-width: 375px) {
    .box__text--finish {
        max-width: 290px;
        letter-spacing: -.01em
    }
}

@media (orientation: portrait) and (max-width: 375px) and (max-height: 555px) {
    .step-1 {
        padding-top: 42px
    }

    .step-2 {
        padding-top: 97px
    }

    .text-info {
        margin: 51px auto 0
    }
}

@media (orientation: portrait) and (max-width: 320px) {
    .step-2 {
        padding-top: 35px
    }

    .btn-container {
        max-width: 207px
    }

    .btn {
        max-width: 250px;
        padding: 11px
    }

    .btn--circle {
        width: 58px;
        height: 58px;
        font-size: 18px
    }

    .text-info {
        max-width: 280px;
        font-size: 12px;
        margin: 25px auto 0
    }
}