.welcome {
    position: relative;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    height: 100vh;
    height: var(--app-height);
    overflow: hidden;
}
.welcome-slider {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
    width: 100%;
}
.welcome-slide {
    position: relative;   
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical; 
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 110px;
}
.welcome-slide-img {
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
    height: 260px;
    width: 100%;
    overflow: hidden;
}
.welcome-slide-img img {
    width: auto;
    height: 100%;    
    margin: 0 auto;
}
.welcome-slide-content {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 20px 20px 0 20px;
    text-align: center;    
}
.welcome-slide-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}
.welcome-slider-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 1;
}
.welcome-slide-actions {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
}
.welcome-slide-start {
    display: none;
}
.welcome-pagination.swiper-pagination {
    position: static;
}
.welcome-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 7px;
    border-radius: 5px;
    background: var(--theme-color);
    opacity: 0.2;
    transition: 0.45s linear;
}
.welcome-pagination .swiper-pagination-bullet-active {
    width: 25px;
    opacity: 1;
}
.reg-wrap {
    display: none;
}
.reg-wrap,
.confirm-wrap {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}
.welcome-container-login .reg-wrap {
    display: flex;
}
.pwa-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: var(--app-height);
}
.wrapper-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.reg-wrap .wrapper-title,
.confirm-wrap .wrapper-title {
    margin-bottom: 10px;
}
.reg-form,
.confirm-form {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    gap: 12px;
}
.reg-form .code-wrap,
.reg-form .form-footer {
    display: none;
}
.reg-form .form-agreement > span {
    display: none;
}
.reg-form.confirm--state .code-wrap {
    display: flex;
}
.reg-form.confirm--state .form-footer {
    display: block;
}
.reg-form.confirm--state .form-agreement > span {
    display: block;
}
.code-fields {
    gap: 10px;
    margin-top: 10px;
}
.auth-type-wrap {
    margin-bottom: 10px;
}
.radios-block {
    gap: 15px;
}
.auth-type-label > input {
    display: none;
}
.auth-type-label > .radio-block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 0;
    border: 2px solid #e0e0e0;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}
.radio-block .dot {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
}
.radio-block .dot:before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--theme-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}
.auth-type-label > input:checked + .radio-block {
    color: #fff;
    border-color: var(--theme-color);
    background: var(--theme-color);
}
.auth-type-label > input:checked + .radio-block .dot {
    background: #fff;
}
.auth-type-label > input:checked + .radio-block .dot:before {
    opacity: 1;
    transform: scale(1);
}