.popup-v3__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
}

.popup-v3__container {
    width: 440px;
    min-height: 720px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 1);
    padding: 50px 50px 59px 50px;
    z-index: 1001;
    overflow: hidden;
    position: relative;
}

@media (max-height: 836px) {
    .popup-v3__container {
        min-height: auto;
        height: 100vh;
    }
}

.popup-v3__close {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/static/svg/popup/close.svg) center center no-repeat;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 10;
}

.popup-v3__backarrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/static/svg/login/popup-back-arrow.svg) center center no-repeat;
    position: absolute;
    left: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 2;
}

.popup-v3__content {
    text-align: center;
    /*padding: 0 5px;*/
}

.popup-v3__title {
    color: rgba(51, 51, 51, 1);
    font-size: 18px;
    font-weight: 700;
}

.popup-v3__subtitle {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}

.popup-v3__inputs__wrapper {
    margin-top: 44px;
    text-align: left;
}

.popup-v3__input__wrapper label {
    color: rgba(119, 119, 119, 1);
    font-size: 12px;
    font-weight: 400;
}

.popup-v3__input__error {
    color: rgba(217, 17, 27, 1);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

.popup-v3__input__info {
    color: #279400;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

.popup-v3__input {
    height: 50px;
    box-shadow: 0 0 0 1px rgba(221, 221, 221, 1) , 0 0 4px 0 rgba(202, 202, 202, 1);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    border: 0;
    margin-top: 10px;
    text-align: left;
    outline: none;
    padding-left: 50px;
    padding-right: 15px;
}

textarea.popup-v3__input {
    height: 65px;
    resize: none;
}

.popup-v3__input.less-rounded {
    border-radius: 10px;
    padding: 12px 16px;
}

.popup-v3__input.password {
    padding-right: 50px;
    font-weight: 400;
}

.error .popup-v3__input,
.error .popup-v3__input.confirmation {
    box-shadow: 0 0 0 1px rgba(217, 17, 27, 1) , 0 0 4px 0 rgba(202, 202, 202, 1);
}

/*.popup-v3__input::placeholder,*/
/*.popup-v3__input {*/
/*    text-indent: -25px; !* half of icon width *!*/
/*}*/

.popup-v3__submit__wrapper {
    margin-top: 25px;
}

.popup-v3__options form.sticky-bottom {
    padding-bottom: 65px;
}

.sticky-bottom .popup-v3__submit__wrapper {
    position: sticky;
    bottom: -19px;
    background: rgba(255, 255, 255, 0.8);
    padding-top: 25px;
    margin-top: 1px;
    margin-bottom: -65px;
}

.popup-v3__submit {
    width: 250px;
    height: 47px;
    box-shadow: 0 1px 0 0 rgba(207, 148, 46, 1);
    border-radius: 5px;
    background-color: rgba(255, 197, 47, 1);
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.popup-v3__submit[disabled] {
    opacity: 0.5;
}

.popup-v3__or {
    color: rgba(119, 119, 119, 1);
    font-size: 12px;
    font-weight: 400;
    margin: 15px 0;
    text-transform: lowercase;
}

.popup-v3__social__button {
    width: 250px;
    height: 40px;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    padding: 0 5px 0 10px;
    margin: auto;
    margin-bottom: 15px;
}

.popup-v3__social__button:last-child {
    margin-bottom: 0;
}

.popup-v3__social__button__icon {
    margin-right: 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.google .popup-v3__social__button__icon {
    background: url(/static/svg/popup/google.svg) center center no-repeat;
}

.facebook .popup-v3__social__button__icon {
    background: url(/static/svg/popup/facebook.svg) center center no-repeat;
}

.apple .popup-v3__social__button__icon {
    background: url(/static/svg/popup/apple.svg) center center no-repeat;
}

.popup-v3__social__button__icon.broker {
    background: url(/static/svg/login/broker_icon.svg) center center no-repeat;
}

.popup-v3__social__button__title {
    color: rgba(51, 51, 51, 1);
    font-size: 14px;
    font-weight: 400;
}

.popup-v3__broker__wrapper {
    border-top: 1px solid rgba(221, 221, 221, 1);
    margin-top: 23px;
    padding: 30px 0 0 0;
}

.popup-v3__broker__title {
    color: rgba(51, 51, 51, 1);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.popup-v3__input__container {
    position: relative;
}

.popup-v3__input__icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 15px;
}

.popup-v3__input__icon.email {
    background: url(/static/svg/popup/form_email.svg) center center no-repeat;
}

.error .popup-v3__input__icon.email {
    background: url(/static/svg/popup/form_email_error.svg) center center no-repeat;
}

.popup-v3__input__icon.password {
    background: url(/static/svg/popup/form_password.svg) center center no-repeat;
}

.popup-v3__input__icon.password_show {
    background: url(/static/svg/login/view_pass.svg) center center no-repeat;
    right: 10px;
    top: 13px;
    left: auto;
    cursor:pointer;
}

.popup-v3__input__icon.password_show.pass-hide {
    background: url(/static/svg/login/view_pass_2.svg) center center no-repeat;
    right: 10px;
    top: 13px;
    left: auto;
    cursor:pointer;
}

.error .popup-v3__input__icon.password {
    background: url(/static/svg/popup/form_password_error.svg) center center no-repeat;
}

.popup-v3__self-service__wrapper {
    border-top: 1px solid rgba(221, 221, 221, 1);
    padding-top: 41px;
    margin-top: 53px;
}

.popup-v3__self-service__link {
    color: rgba(51, 51, 51, 1);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.popup-v3__self-service__link__icon {
    background: url(/static/svg/login/back.svg) center center no-repeat;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.popup-v3__content {
    text-align: center;
    display: flex;
    width: 100%;
    position: relative;
    transition: all 0.2s ease-in-out;
    overflow-y: auto;
    overflow-x: visible;
    max-height: 100%;
    padding: 20px;
}

.popup-v3__options {
    width: 100%;
    display: none;
}

.popup-v3__options.active {
    display: block;
}

.popup-v3__smart-login__wrapper {
    margin-top: 52px;
}

.popup-v3__smart-login__label {
    color: rgba(51, 51, 51, 1);
    font-size: 12px;
    font-weight: 700;
}

.popup-v3__smart-login__label.margin {
    margin-bottom: 20px;
}

.popup-v3__smart-login__wrapper {
    text-align: left;
}

.popup-v3__separator {
    margin-top: 51px;
    margin-bottom: 42px;
    border-top: 1px solid rgba(221, 221, 221, 1);
}

.popup-v3__account__wrapper {
    height: 50px;
    line-height: 50px;
    box-shadow: 0 0 0 1px rgba(221, 221, 221, 1);
    border-radius: 25px;
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
    display: block;
    position: relative;
}

.popup-v3__account__wrapper .popup-v3__self-service__link__icon {
    position: absolute;
    left: 0;
    top: 5px;
}

.popup-v3__login__subtitle {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    font-weight: 400;
    margin-top: 29px;
}

.popup-v3__register__legal__wrapper {
    margin: 41px auto 0 auto;
    color: rgba(51, 51, 51, 1);
    font-size: 12px;
    font-weight: 400;
    width: 250px;
}

.popup-v3__confirmation__wrapper {
    margin-top: 44px;
    text-align: center;
}

.popup-v3__confirmation__inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.popup-v3__input.confirmation {
    width: 40px;
    height: 50px;
    box-shadow: 0 0 0 1px rgba(221, 221, 221, 1) , 0 0 4px 0 rgba(202, 202, 202, 1);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(51, 51, 51, 1);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-indent: 0;
    text-align: center;
}

.popup-v3__confirmation__input__divider {
    border-top: 2px solid rgba(221, 221, 221, 1);
    width: 6px;
    margin: 0 8px;
}

.popup-v3__confirmation__resend__wrapper {
    margin-top: 11px;
    text-align: right;
}

.popup-v3__confirmation__remind__wrapper {
    margin-top: 11px;
    text-align: right;
    padding-right: 15px;
}

.popup-v3__confirmation__inputs__container {
    display: inline-block;
    width: 226px;
}

.popup-v3__confirmation__inputs__container.elements5 {
    width: 288px;
}

.multiple-account-login__accounts {
    margin: auto;
    margin-top: 45px;
}

.multiple-account-login__accounts a {
    display: block;
    max-width: 300px;
    margin: auto;
}

.multiple-account-login__account {
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 9px 13px;
    margin-bottom: 17px;
    max-width: 300px;
    text-align: left;
}

.multiple-account-login__account__icon {
    width: 26px;
    height: 25px;
    display: inline-block;
    flex-shrink: 0;
}

.multiple-account-login__account__icon.unconfirmed {
    background: url(/static/svg/broker_page/user-nepatvirtintas-1.svg) center center no-repeat;
}

.multiple-account-login__account__icon.confirmed {
    background: url(/static/svg/broker_page/user-patvirtintas.svg) center center no-repeat;
}

.multiple-account-login__account__icon.normal {
    background: url(/static/svg/user/login_user.svg) center center no-repeat;
}

.multiple-account-login__account__info {
    margin-left: 10px;
}

.multiple-account-login__account__info__sub {
    color: #999999;
    font-size: 12px;
    line-height: 14px;
}

.multiple-account-login__account__info__user {
    color: #333333;
    font-family: Arial, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 19px;
}

#dokobit-identity-container {
    box-sizing: border-box;
}

.popup-v3__register__legal__text {
    text-align: left;
    line-height: normal;
    font-size: 12px;
}

.popup-v3__register__legal__wrapper input {
    display: none;
}

.popup-v3__register__legal__wrapper label {
    display: flex;
    align-items: center;
}

.popup-v3__register__legal__wrapper label span {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: rgba(221, 221, 221, 1) 1px solid;
    background: #fff;
    vertical-align: middle;
    display: inline-block;
    user-select: none;
    align-self: auto;
    margin-right: 14px;
    flex-shrink: 0;
}

.popup-v3__register__legal__wrapper input:checked + label span {
    background: #5bb700;
    border-color: #5bb700;
}

.popup-v3__register__legal__wrapper span::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 6px;
    height: 4px;
    background: transparent;
    top: 4px;
    left: 5px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-appearance: none;
}

.popup-v3__confirmation__resend {
    color: rgba(217, 17, 27, 1);
    font-size: 14px;
    font-weight: 400;
}

.popup-v3__graybox__wrapper {
    padding: 16px;
    border-radius: 12px;
    background: #EDEDED;
    margin-top: 20px;
    color: #333;
    font-size: 14px;
    text-align: left;
    line-height: 16px;
}

.popup-v3__swiper__title {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.popup-v3__swiper__wrapper {
    margin-top: 20px;
    text-align: left;
}

.popup-v3__swiper__outer {
    /*overflow: hidden;*/
    position: relative;
}

.popup-v3__swiper__inner::-webkit-scrollbar {
    display: none;
}

.popup-v3__swiper__inner {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px;
    overflow: hidden;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex-wrap: wrap;
}

.popup-v3__swiper__inner input {
    display: none;
}

.popup-v3__swiper__outer:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 16px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.10) 100%);
    left: 0;
    top: 0;
    display: none;
}

.popup-v3__swiper__outer:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 16px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.10) 100%);
    right: 0;
    top: 0;
    display: none;
}

.popup-v3__swiper__outer.scroll-left:before {
    display: inline-block;
}

.popup-v3__swiper__outer.scroll-right:after {
    display: inline-block;
}

.popup-v3__swiper__outer .popup-v3__swiper__inner.scrollable {
    flex-wrap: nowrap;
}

.popup-v3__swiper__outer.hours .popup-v3__swiper__inner .popup-v3__swiper__item {
    width: auto;
    height: 42px;
}

.popup-v3__swiper__item {
    display: flex;
    width: 90px;
    padding: 12px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #CCC;
    background: #FFF;
    font-size: 14px;
    font-style: normal;
    flex-shrink: 0;
    color: #333;
    cursor: pointer;
}

.popup-v3__swiper__item.disabled {
    background-color: #f5f5f5;
    color: #bbbbbb;
}

.popup-v3__swiper__inner input:checked + label {
    border: 1px solid #74D08E;
    outline: 2px solid #74D08E;
    background: #F3FFF6;
}

.popup-v3__swiper__item .month-name {
    line-height: 18px;
}

.popup-v3__swiper__item .day-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px
}

.popup-v3__swiper__item .day-name {
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
}

.popup-v3__swiper__item .as-soon {
    font-weight: 700;
    text-align: center;
}

.popup-v3__swiper__button {
    width: 32px;
    height: 32px;
    padding: 8px 12px;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #CCC;
    background: url(/static/svg/controls/arraw_popup.svg) 12px center no-repeat #FFF;
    position: absolute;
    top:50%;
    transform: translate(0, -50%);
    display: none;
    z-index: 2;
    cursor: pointer;
}

.popup-v3__swiper__button.left {
    left: -16px;
    transform: rotate(180deg) translate(0, 50%);
}

.popup-v3__swiper__button.right {
    right: -16px;
}

.popup-v3__swiper__outer.scroll-right .popup-v3__swiper__button.right {
    display: block;
}

.popup-v3__swiper__outer.scroll-left .popup-v3__swiper__button.left {
    display: block;
}

.property-viewing__date__wrapper {
    border-top: 1px solid #ccc;
    margin-top: 8px;
    padding-top: 8px;
    display: flex;
    align-items: center;
}

.property-viewing__registration__wrapper {
    border-top: 1px solid #ccc;
    margin-top: 8px;
    padding-top: 8px;
}

.property-viewing__date__icon {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: url(/static/svg/controls/calendar-property-view.svg) center center no-repeat #fff;
}

.property-viewing__date__icon.open-door-icon {
    background: url(/static/svg/open_door/door_green.svg) center center no-repeat #fff;
    background-size: 24px;
}

.property-viewing__date__date {
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.property-viewing__date__date__inner {

}

.property-viewing__date__date__full {
    font-weight: 700;
}

.property-viewing__registration__data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.property-viewing__registration__data__note {
    color: #777;
    font-size: 12px;
    font-weight: 400;
    margin-top: 8px;
    display: flex;
}

.property-viewing__registration__data__note__label {
    margin-right: 5px;
}

.property-viewing__confirmation__text {
    margin-top: 20px;
    color: #333;
    text-align: center;
    font-size: 14px;
}

.property-viewing__success {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.property-viewing__date__hour {
    max-width: 81px;
    text-align: right;
}

.property-viewing__registration__data__note__value {
    word-wrap: break-word;
    white-space: normal;
    flex-grow: 0;
    max-width: 210px;
}

html.popupv3-open
{
    position: fixed;
    top: calc(-1 * var(--scroll-y));
    width: 100%;
    overflow-y: scroll;
}

.mobile .popup-v3__inputs__wrapper {
    margin-top: 20px
}

.mobile .popup-v3__submit {
    height: 40px
}

.mobile .popup-v3__container {
    padding: 20px 20px 29px 20px;
}

.mobile .popup-v3__input {
    height: 40px;
}

.mobile .popup-v3__input__icon {
    width: 36px;
    height: 36px;
    position: absolute;
    left: 6px;
    top: 12px;
}

.mobile .popup-v3__input__icon.password_show {
    left: auto;
}

.mobile .popup-v3__broker__wrapper {
    margin-top: 15px;
    padding: 15px 0 0 0;
}

.mobile .popup-v3__broker__title {
    margin-bottom: 15px;
}

.mobile .popup-v3__or {
    margin: 10px 0;
}

.mobile .popup-v3__title {
    font-size: 17px;
}

.mobile .popup-v3__subtitle {
    font-size: 14px
}

.mobile .popup-v3__separator {
    margin-top: 21px;
    margin-bottom: 22px;
}

.mobile .popup-v3__smart-login__wrapper {
    margin-top: 20px;
}

.mobile .login-smart-login__login {
    margin-bottom: 21px;
}

.mobile .popup-v3__self-service__wrapper {
    padding-top: 21px;
    margin-top: 21px;
}

.mobile textarea.popup-v3__input {
    height: 65px;
    resize: none;
}