

/* Start:/local/components/lombard/lk.auth/templates/.default/style.css?17362685037951*/
.smartlk-auth {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    height: calc(100vh - 198px);
    margin: 0 auto;
}

.smartlk-auth__form {
    position: relative;
}

.smartlk-auth__step {
    display: none;
    position: relative;
}

.smartlk-auth__step--active {
    display: block;
}

.smartlk-auth__phone-label {
    position: relative;
    display: block;
    width: 100%;
}

.smartlk-auth__title {
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1;
}

.smartlk-auth__phone-label .smartlk-auth__phone-label-text {
    position: absolute;
    left: 16px;
    top: 16px;
    max-width: calc(100% - 32px);
    color: rgba(0, 0, 0, .48);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    transition: all .25s;
    transform-origin: left;
    transition-property: transform, color, font-size;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.smartlk-auth__phone-input:focus ~ .smartlk-auth__phone-label-text {
    transform: translateY(-12px) scale(.87);
    color: rgba(0, 0, 0, .8);
}

.smartlk-auth__phone-label-text--value {
    transform: translateY(-10px) scale(.87);
    color: rgba(0, 0, 0, .8);
}

.smartlk-auth__phone-input {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 8px;
    outline: none;
    background-color: #fff;
    transition-duration: .25s;
    transition-property: background-color;
    transition-timing-function: ease;
    font-size: 17px;
    text-align: center;
}

.smartlk-auth__phone-wrapper {

}

.smartlk-auth__phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffdd2d;
    padding: 15px 0;
    width: 224px;
    height: 56px;
    border: none;
    border-radius: 45px;
    -webkit-tap-highlight-color: transparent;
    transition-duration: .3s;
    transition-property: background-color, color;
    margin: 20px auto 0 auto;
    font-size: 15px;
    font-weight: 600;
}

.smartlk-auth__confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffdd2d;
    padding: 15px 0;
    width: 224px;
    height: 56px;
    border: none;
    border-radius: 45px;
    -webkit-tap-highlight-color: transparent;
    transition-duration: .3s;
    transition-property: background-color, color;
    margin: 25px auto 0 auto;
    font-size: 15px;
    font-weight: 600;
}

.smartlk-auth__resend-code {
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px auto 0 auto;
    text-align: center;
    width: fit-content;
    user-select: none;
}

.smartlk-auth__loader {
    display: none;
    width: 26px;
    height: 26px;
    animation: spinner 1.5s linear infinite;
    transition-timing-function: ease;
}

.smartlk-auth__phone-btn.smartlk-auth__phone-btn--loading .smartlk-auth__phone-btn-icon-default,
.smartlk-auth__confirm-btn.smartlk-auth__confirm-btn--loading .smartlk-auth__confirm-btn-icon-default {
    display: none;
}

.smartlk-auth__phone-btn.smartlk-auth__phone-btn--loading .smartlk-auth__loader,
.smartlk-auth__confirm-btn.smartlk-auth__confirm-btn--loading .smartlk-auth__loader {
    display: block;
}

.smartlk-auth__resend-code.smartlk-auth__resend-code--loading .smartlk-auth__loader {
    display: block;
}

.smartlk-auth__phone-btn:hover,
.smartlk-auth__confirm-btn:hover {
    background-color: #ffcd33;
}

.smartlk-auth__phone-btn[disabled],
.smartlk-auth__confirm-btn[disabled] {
    background-color: rgba(255, 221, 45, .48);
}

@keyframes spinner {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.smartlk-auth__phone-reset-btn {
    position: absolute;
    top: 50%;
    right: 18px;
    padding: 0;
    display: flex;
    transform: translateY(-50%);
    border: none;
    background: none;
}

.smartlk-auth__phone-reset-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    color: rgba(0, 0, 0, .4);
    transition: color .25s;
}

.smartlk-auth__phone-reset-btn-icon:hover {
    color: rgba(0, 0, 0, .48);
}

.smartlk-auth__code-title {
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.smartlk-auth__code-text {
    color: rgba(0, 0, 0, .48);
    margin-bottom: 25px;
    text-align: center;
    font-size: 15px;
}

.smartlk-auth__code-label {
    position: relative;
    display: block;
    width: 228px;
    margin: 0 auto;
}

.smartlk-auth__code-input {
    display: block;
    font-size: 35px;
    text-align: center;
    width: 38px;
    height: 54px;
    border: 0;
    border-radius: 5px;
    outline: none;
    padding: 0;
    background-color: #F6F7F9;
    transition-duration: .25s;
    transition-property: background-color;
    transition-timing-function: ease;
}

.smartlk-auth__code-input:not(:last-child) {
    margin-right: 20px;
}

.smartlk-auth__code-label .smartlk-auth__code-label-text {
    position: absolute;
    left: 16px;
    top: 16px;
    max-width: calc(100% - 32px);
    color: rgba(0, 0, 0, .48);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    transition: all .25s;
    transform-origin: left;
    transition-property: transform, color, font-size;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.smartlk-auth__code-input:focus {
    background-color: #fff;
    border: 1px solid #000;
    -webkit-appearance: none;
}

.smartlk-auth__error-container {
    text-align: center;
}

.smartlk-auth__step-preloader {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
    transition: .5s all;
}

.smartlk-auth__step-preloader--active {
    opacity: 1;
    visibility: visible;
}

.smartlk-auth__step-preloader-bg {
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .8;
}

.smartlk-auth__step-preloader-circle-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.smartlk-auth__step-preloader-circle {
    border-color: #E73E1D transparent transparent #E73E1D;
    width: 60px;
    height: 60px;
    border-width: 5px;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    border-style: solid;
    border-radius: 100px;
    display: inline-block;
    animation: spinner .7s linear infinite;
}

.smartlk-auth__code-input-wrapper {
    display: flex;
    justify-content: center;
}

.smartlk-auth__code-confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffdd2d;
    padding: 15px 0;
    width: 224px;
    height: 56px;
    border: none;
    border-radius: 45px;
    -webkit-tap-highlight-color: transparent;
    transition-duration: .3s;
    transition-property: background-color, color;
    margin: 20px auto 0 auto;
    font-size: 15px;
    font-weight: 600;
}

.smartlk-auth__phone-input-wrapper {
    border-radius: 10px;
    width: 100% !important;
}

.smartlk-auth__desc-text {
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 10px;
}

.smartlk-auth__agreement {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    margin-top: 20px;
}

.smartlk-auth__agreement a {
    color: #0074d3;
    text-decoration: underline;
}

@media (max-width: 767px) {
    body {
        margin-bottom: 0 !important;
    }

    #footer {
        margin-top: 0 !important;
    }

    .city-select-block-mobile {
        display: none !important;
    }

    .is-mob__bottom {
        display: none !important;
    }

    .mobile-top-navbar {
        display: none !important;
    }
}
/* End */
/* /local/components/lombard/lk.auth/templates/.default/style.css?17362685037951 */
