:root{
    --main-color: #2B98FC;
    --gray-color: #F0F0F0;
    --dark-blue-color: #406B9A;
    --light-blue-color: #DAEBFF;
    --secondary-color: #ddeeff;
    --red-color: #dc3545;
    --green-color: #0AC971;
}
*{
    font-family: Montserrat;
    font-weight: 400;
}

html, body{
    margin: 0;
}

button{
    border: none;
    padding: 10px;
    border-radius: 8px;
    outline: none !important;
    box-shadow: none !important;
}

input, textarea{
    box-shadow: none !important;
    outline: none !important;
    transition: all .3s ease;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 5px !important;
}
input, textarea, input:focus, textarea:focus{
    border-color: #000 !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

textarea{
    resize: none;
}

a, a:link, a:hover, a:focus, a:visited, .custom-link{
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

ul{
    list-style: none;
    padding: 0;
}

small {
    font-size: 14px;
    line-height: 16px;
    color: #AEAEAE;
    display: block;
}

h1{
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.b{
    font-weight: bolder;
}

.full-width {
    width: 100% !important;
    max-width: 100% !important;
}

.form-control {
    border-radius: 8px!important;
    height: 40px;
    font-size: 15px;
    background: transparent;
}
.form-control:focus{
    background: transparent;
}
.form-control.with-bottom-border{
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0!important;
    border-bottom: 1px solid #000;
    padding-left: 0;
}

textarea.form-control{
    height: auto !important;
}

.with-border-bottom{
    border: none;
    border-radius: 0 !important;
    border-bottom: 1px solid;
}

.bottom-fixed-block{
    position: absolute;
    bottom: 75px;
    width: 100%;
}

.custom-btn{
    background: none;
    outline: none;
    cursor: pointer;
}
a.custom-btn{
    display: inline-block;
    color: #000;
    font-weight: 500;
    text-align: center;
    width: 100%;
}
.custom-btn.blue-btn {
    background: var(--main-color);
    color: #fff;
    display: inline-block;
}
.custom-btn.underlined-btn{
    font-weight: 600;
    text-decoration: underline;
}
.custom-btn.gray-btn{
    background: #F5F5F5;
}

.photo-container.main-photo-container .add-photos-btn img[data-type="realty"], .photo-container.main-photo-container .add-photos-btn img[data-type="transport"] {
    display: none;
    object-fit: contain;
}
.photo-container.main-photo-container .add-photos-btn img.active {
    display: block;
}
.photo-container.main-photo-container .add-btn {
    display: block;
    background: var(--main-color);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    margin-top: 20px;
}
.photo-container.main-photo-container .add-btn img{
    height: auto !important;
    width: auto !important;
    margin-right: 10px;
}

.success-label, .failed-label{
    font-size: 14px;
}
.success-label{
    color: var(--main-color);
}
.failed-label{
    color: var(--red-color);
}
.custom-label{
    color: var(--gray-color);
    font-size: 14px;
}

header{
    height: 60px;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 104;
    left: 0;
    width: 100%;
}
header .main-logo{
    position: absolute;
    height: 60px;
    padding: 10px 0;
    font-size: 20px;
    color: var(--main-color);
    left: 25px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Montserrat';
    display: flex;
    align-items: center;
}
header .main-logo span{
    font-weight: 600;
}
header .main-logo img{
    height: calc(100% - 10px);
    margin: 5px;
}

header .search-panel {
    background: #F6F6F6;
    border-radius: 10px;
    height: 40px;
    padding-left: 8px;
}
header .search-panel .search-icon{
    width: 15px;
    display: inline-block;
}
header .search-panel .search-icon img{
    width: 100%;
}
header .search-panel .search-input{
    border: none;
    background: transparent;
}
header .search-panel .filters-btn{
    height: 40px !important;
    width: 50px !important;
    padding: 0;
}

.form-group.phone-group {
    position: relative;
}
.form-group.phone-group:before {
    content: "+";
    display: block;
    position: absolute;
    color: #888;
    margin-left: 10px;
    margin-top: 5px;
    width: 20px;
    height: 35px;
    font-size: 20px;
}
.form-group.phone-group input[name="phone"]{
    padding-left: 30px;
}
.form-group.flex-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-block {
    display: inline-block;
    margin-top: 10px;
    float: right;
}
.lang-btn {
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    background: var(--gray-color);
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}
.lang-btn.lang-active {
    border-color: var(--main-color);
}

/* sidebar */
.sidebar {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    height: calc(100vh - 60px);
    height: calc(calc(var(--vh, 1vh) * 100) - 60px);
    z-index: 100;
    overflow: hidden;
    transition: all .3s ease;
}
.sidebar.right-sidebar {
    transform: translateX(calc(100% + 10px));
}
.sidebar.right-sidebar.sidebar-open{
    transform: translateX(0);
}
.sidebar .sidebar-container {
    height: 100%;
    width: 100vw;
    overflow: hidden;
}
.sidebar .sidebar-heading {
    height: 40px;
    padding: 10px;
}
.sidebar .sidebar-heading .sidebar-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.sidebar .sidebar-heading .close-sidebar-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 60px;
    padding: 0 20px;
    color: #fff;
    font-size: 30px;
    line-height: 30px;
}

.sidebar-content {
    height: calc(calc(var(--vh, 1vh) * 100) - 60px - 40px);
    overflow: hidden;
    width: 200vw;
    transition: all .3s ease;
}
.sidebar-content.full-height{
    height: calc(calc(var(--vh, 1vh) * 100) - 60px);
}
.sidebar-content .sidebar-content-panel, .sidebar-content .sidebar-content-panel.main-panel{
    height: 100%;
    display: inline-block;
    width: 100vw;
    background: #fff;
    float: left;
    transition: all .3s ease;
    position: relative;
}
.sidebar-content .sidebar-content-panel.active-panel{
    margin-left: -50%;
}
/* end sidebar */

/* chats */
.chats-list {
    height: 100%;
    overflow: auto;
    padding: 10px 20px;
}

.chats-list .chat-item {
    padding: 15px 0;
    cursor: pointer;
    margin-bottom: 5px;
}
.chats-list .chat-item .chat-info {
    margin: 0;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.chats-list .chat-item .chat-info .delete-chat-btn {
    margin: -5px -10px 0 0;
    filter: grayscale(1);
    float: right;
}
.chats-list .chat-item .chat-info .delete-chat-btn img {
    width: 16px;
}

.chat-info .chat-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
    float: left;
    margin-right: 10px;
    border-radius: 50%;
}
.chats-list .chat-item.is-system .moderator-label{
    font-size: 16px;
    color: var(--main-color);
    font-weight: 500;
}
.chats-list .chat-item.is-system .moderator-label i{
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    font-size: 30px;
    padding: 10px;
}
.chats-list .chat-item .chat-date {
    font-size: 14px;
    color: #AEAEAE;
}
.chat-item .chat-info .new-messages-label {
    float: right;
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 2px 10px;
    margin: 10px 5px;
    border-radius: 15px;
}
.chat-content {
    height: 100%;
}
.chat-content .chat-heading {
    background: #fff;
    height: 120px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.chat-content .chat-heading .chat-title {
    color: #fff;
    height: 40px;
    border-bottom: 1px solid #eee;
}
.chat-content .chat-heading .chat-title .chat-label {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-left: 10px;
}
.chat-content .chat-heading .chat-control-btn {
    background: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    padding: 2px;
    box-shadow: 0px 0px 5px #ccc !important;
}
.chat-content .chat-heading .chat-control-btn.right-btn{
    position: absolute;
    right: 25px;
}
.chat-content .chat-heading .adv-info{
    padding-top: 15px;
}
.chat-content .chat-heading .adv-info .adv-link {
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 12px;
}
.chat-content .chat-heading .adv-info .adv-link .price-label{
    color: #AEAEAE;
    font-size: 14px;
    display: block;
    padding-left: 70px;
}
.chat-content .chat-heading .adv-info .chat-avatar {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin: 0 10px 0 0;
    display: inline-block;
    float: left;
}
.chat-content .chat-heading .close-chat-btn {
    line-height: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    float: left;
}
.chat-control-btn img {
    width: 12px;
    height: 12px;
}
.chat-control-btn.close-chat-btn img {
    transform: rotate(180deg);
}
.chat-control-block {
    position: fixed;
    bottom: 0;
    background: #fff;
    width: 100%;
    padding: 15px;
    height: 80px;
}

.chat-control-block .chat-message-input{
    height: 50px;
    width: 100%;
    border-radius: 9px;
    background: #0000000D;
    border: none;
    padding: 10px;
}
.chat-control-block .send-message-btn {
    color: var(--main-color);
    font-weight: 600;
    display: inline-block;
    float: right;
    height: 50px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
}
.chat-control-block .send-message-btn:disabled{
    color: var(--gray-color);
}

.chat-messages-container{
    height: calc(100% - 80px - 120px);
    overflow: auto;
    padding: 15px 5px;
}
.chat-messages {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.load-previous-messages-btn {
    margin: 10px 50% 10px 0;
    transform: translateX(50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    background: none;
    color: var(--main-color);
    border: 1px solid;
}
.chat-messages .date-group-label {
    text-align: center;
    color: #aaa;
    background: #eee;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    transform: translateX(50%);
    margin: 10px 50% 10px 0;
}
.chat-message {
    width: 100%;
}
.chat-message.my-message {
    text-align: right;
}
.chat-message .message-container {
    max-width: 75%;
    width: auto;
    display: inline-block;
    padding: 5px 10px;
}
.chat-message .message-container .message-text {
    font-size: 12px;
    padding: 10px;
    text-align: left;
    font-weight: 500;
}
.chat-message.user-message .message-container .message-text {
    background: #F0F0F0;
    color: #101010;
    border-radius: 0 10px 10px;
}
.chat-message.my-message .message-container .message-text {
    background: var(--main-color);
    color: #FFF !important;
    border-radius: 8px 0 8px 8px;
}
.chat-message .message-container .message-time {
    font-size: 10px;
    float: right;
    margin-right: 10px;
}
.message-status {
    display: none;
}
.message-status img {
    height: 8px;
    width: 25px;
    object-fit: contain;
    margin-top: -10px;
}

.chat-message.my-message.new-message .message-status img{
    height: 12px;
}
.chat-message.my-message .message-status.is-seen{
    display: inline-block;
}

.chat-btn .new-message-label {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 8px;
    margin-left: 22px;
    display: block;
    animation: blink 1.2s infinite;
    background: #dc3545;
}

@keyframes blink {
    0%{
        background: #dc3545;
    }
    60%{
        background: #fff;
    }
}
/* end chats */

/* custom modal */
.custom-modal .modal-content {
    border-radius: 8px;
    padding: 10px 25px;
}
.custom-modal .modal-header {
    color: #000;
    border: none;
}

.custom-modal .modal-header .modal-title {
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
}
.custom-modal .modal-header .modal-title .close-modal-btn {
    color: #fff;
    font-size: 40px;
    line-height: 0;
    font-weight: 600;
    position: absolute;
    right: 10px;
    top: 0;
    height: 50px;
    width: 50px;
}
/* end custom modal */

/* custom forms */
.form-block .form-content {
    background: #fff;
    padding: 40px 20px;
    border-radius: 25px;
}

.form-container {
    background: #fff;
}

.custom-form .form-btn {
    font-weight: 600;
    width: 100%;
    font-size: 14px;
    transition: all .3s ease;
}
.custom-form .form-btn.form-ok-btn {
    background: var(--main-color);
    color: #fff;
}
.custom-form .form-btn.form-ok-btn:disabled {
    background: #AAA;
    cursor: not-allowed;
}

.save-preloader {
    position: absolute;
    width: 60%;
    background: var(--main-color);
    left: 50%;
    transform: translateX(-50%);
    height: inherit;
}
.save-preloader img{
   width: 75px;
   height: 100%;
   object-fit: contain;
}
.loading-preloader {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px;
}
.loading-preloader img {
    filter: contrast(0.5);
    width: 100%;
    height: 20px;
}
.field-label {
    font-weight: 600;
    color: #000;
    font-size: 15px;
    text-align: left;
}
.form-btn.custom-btn {
    display: inline-block;
    padding: 10px;
    text-align: center;
    background: var(--gray-color);
    border-radius: 8px;
}
.form-btn.custom-btn.red-btn {
    background: #ff7878;
    color: #fff;
}
.form-btn.custom-btn.blue-btn {
    background: var(--main-color) !important;
    color: #fff;
}
/* end custom forms */

/* custom fields */
.custom-radio{
    border: 2px solid #555;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    padding: 3px;
    transition: all .3s ease;
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-top: 2px;
}
.custom-radio-label {
    display: inline-block;
    padding: 15px 0;
    cursor: pointer;
    color: #555;
}

.custom-radio.active{
    border-color: var(--main-color);
}
.custom-radio .custom-radio-dot{
    transition: all .3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.custom-radio.active .custom-radio-dot{
    background: var(--main-color);
}
.custom-radio-label input{
    display: none;
}
/* end custom fields */
.select-radio-block{
    text-align: center;
}
.select-radio-btn {
    padding: 10px;
    min-width: 15%;
    text-align: center;
    font-size: 13px;
    margin: auto;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    background: var(--gray-color);
    height: 100%;
    user-select: none;
}

.select-radio-btn.select-radio-active {
    background: var(--main-color);
    color: #fff;
}
.select-radio-btn.select-radio-disabled{
    opacity: 0.3;
    cursor: default;
}
.select-radio-btn input{
    display: none;
}
.select-radio-btn .select-radio-icon{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    float: left;
    margin-left: 5px;
}
.select-radio-btn .select-radio-icon.apartment-icon{
    background-image: url(../static_images/ic_apartment.svg);
}
.select-radio-btn .select-radio-icon.house-icon{
    background-image: url(../static_images/ic_house.svg);
}
.select-radio-btn .select-radio-icon.commercial-icon{
    background-image: url(../static_images/ic_commercial.svg);
}
.select-radio-btn .select-radio-icon.land-icon{
    background-image: url(../static_images/ic_land.svg);
}

.select-radio-btn .select-radio-icon.card-icon{
    background-image: url(../static_images/ic_card.svg);
}
.select-radio-btn .select-radio-icon.wallet-icon{
    background-image: url(../static_images/ic_wallet.svg);
}

.select-radio-btn.select-radio-active .select-radio-icon{
    filter: brightness(0) invert(1);
}

.select-radio-btn .select-radio-title {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 8px;
}
.select-radio-btn .select-radio-description {
    font-size: 12px;
    text-align: left;
    display: block;
    color: #AEAEAE;
}
.select-radio-btn.select-radio-active .select-radio-description{
    color: #fff;
}

.toggle-btn {
    background: #CCC;
    display: inline-block;
    width: 50px;
    height: 25px;
    border-radius: 25px;
    padding: 3px;
    cursor: pointer;
    position: relative;
}

.toggle-thumb {
    display: inline-block;
    background: #FFF;
    border-radius: 50%;
    height: 19px;
    width: 19px;
    left: 3px;
    position: absolute;
    transition: all .3s ease;
}
.toggle-btn input{
    display: none;
}
.toggle-btn.active-toggle-btn {
    background: #66C469;
}
.active-toggle-btn .toggle-thumb {
    transform: translateX(calc(100% + 6px));
}

.toggle-block {
    display: none;
}
.block-visible{
    display: block;
}


/* bootstrap */
/* date range */
.datepicker {
    border: 1px solid var(--main-color);
}
.datepicker:before{
    border-top-color: var(--main-color) !important;
}
.active.selected.range-end.day, .active.selected.range-start.day {
    background: var(--main-color);
}
.range.day {
    background: var(--secondary-color) !important;
    font-weight: 600;
    color: #73cb9e;
}
.selected.range-start.day, .selected.range-end.day {
    background: #73cb9e;
    font-weight: 600;
    color: #fff;
}
.year.active, .century.active, .month.active,  .decade.active {
    background: var(--main-color) !important;
    font-weight: 600;
}

/* select */
.bootstrap-select>.dropdown-toggle,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus,
.show>.btn-light.dropdown-toggle:focus{
    background: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    outline-offset: none!important;
    outline: none !important;
}
.bootstrap-select .dropdown-menu {
    min-width: calc(100% - 30px);
    margin-left: 15px;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--main-color);
    font-weight: 600;
}
.bootstrap-select .dropdown-menu li {
    margin: 10px 0;
}
/* end bootstrap */

/* slick slider */
.slick-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: #fff;
    color: var(--main-color);
    width: 35px;
    height: 50px;
}
.slick-slider .slick-arrow.btn-prev{
    left: -15px;
    border-radius: 0 50% 50% 0;
}
.slick-slider .slick-arrow.btn-next{
    right: -15px;
    border-radius: 50% 0 0 50%;
}
.slick-slider .slick-list {
    border-radius: 10px;
}
/* end slick slider */

.main-realty-slider.slick-slider .slick-list {
    border-radius: 0;
}
.slick-list,
.slick-track,
.slick-slide {
    height: 100%;
}
.slick-slider.realty-mini-slider .slick-track {
    display: inline-block;
}

.realty-slider-item .realty-media {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.slides-count-block {
    position: absolute;
    z-index: 1;
    margin-top: -15px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0px 0px 5px #000;
    transform: translate(0, -100%);
}
.slides-count-block{
    right: 30px;
}
.realty-views-label {
    left: 35px;
    position: absolute;
    z-index: 1;
    margin-top: 25px;
    color: #fff;
    padding: 0;
    border-radius: 10px;
}
.realty-views-label img {
    height: 12px;
    margin-top: -4px;
}

.realty-id {
    position: absolute;
    z-index: 1;
    transform: translate(15px, -100%);
    color: #fff;
    font-size: 12px;
    margin-top: -15px;
    font-weight: 600;
    text-shadow: 0px 0px 5px #000;
}

.page{
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow-x: hidden;
    overflow-x: visible;
}

.content {
    padding: 60px 15px;
}

.realty-container{
    padding: 15px 0;
}

.realty-container .empty-results {
    text-align: center;
    font-size: 15px;
    color: #AEAEAE;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    flex-direction: column;
}
.realty-container .empty-results i{
    font-size: 75px;
    color: var(--main-color);
}

.realty-item {
    background: #fff;
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #111;
}

.realty-item .realty-options {
    padding: 10px 15px;
    color: #555;
    font-size: 14px;
}
.realty-item .realty-options .user-name{
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 1px;
}
.realty-item .realty-options .realty-menu-btn{
    font-size: 16px;
    float: right;
}
.realty-fav-btn{
    float: right;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    text-align: center;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: url(../static_images/ic_fav_inactive.svg);
    background-color: #FFF;
    background-size: 200%;
    background-position: center;
}

.realty-fav-btn.active{
    background-image: url(../static_images/ic_fav_active.svg);
}

.realty-item .realty-main-image {
    width: 100%;
}
.realty-media-container{
    margin: 2px -2px 0;
}

.realty-item .realty-option-btn.realty-fav-btn {
    cursor: pointer;
}

.realty-item .realty-media-container .realty-media {
    width: calc(100% / 3 - 2px);
    margin: 0 1px;
    float: left;
}
.realty-item .realty-info{
    padding: 0px 15px 15px;
    clear: both;
}

.realty-item .realty-info .realty-title {
    font-size: 14px;
    padding: 18px 0 8px;
    font-weight: 500;
    height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.realty-item .realty-info .realty-price {
    font-size: 20px;
    padding: 0;
    font-weight: 500;
}
.realty-location i {
    font-size: 14px;
    left: 20px;
    margin-top: 2px;
}
.realty-item .realty-main-image {
    height: 175px;
    object-fit: cover;
}

.realty-location {
    font-size: 14px;
    display: block;
    line-height: 110%;
    padding: 5px 0;
}

.realty-details{
    font-size: 14px;
    font-weight: 500;
}

.realty-metro {
    font-size: 14px;
    font-weight: 600 !important;
    color: #BBB;
    display: flex;
    align-items: center;
    align-content: center;
}
.metro-station, .metro-walking-time {
    font-weight: 500;
}
.metro-station {
    display: inline-flex;
    align-items: center;
}
.metro-station .metro-icon {
    width: 20px !important;
    height: 20px !important;
    padding: 2px !important;
    margin-right: 5px;
}
.metro-walking-time i{
    font-size: 18px;
}

.realty-item.my-ads-item .realty-time-to-expire {
    color: #000;
    font-size: 13px;
}

.realty-item .realty-info .realty-price span{
    font-size: 12px;
    color: #AAA;
    margin-left: 5px;
    font-weight: 500;
}
.realty-item .realty-info .realty-price span.currency-label {
    color: var(--main-color) !important;
    font-size: 14px !important;
}

.realty-item .realty-params {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.realty-control-buttons{
    overflow: hidden;
    padding: 16px 25px 24px;
    position: fixed;
    bottom: 60px;
    z-index: 1;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    left: 0;
}

.realty-item.realty-view .realty-price {
    font-size: 18px;
    font-weight: 600;
}

.realty-item .create-time {
    position: absolute;
    right: 25px;
    transform: translateY(-100%);
    font-size: 12px;
    color: #AEAEAE;
}

.add-realty-btn {
    height: 45px;
    padding: 10px;
}

.realty-control-btn,  a.realty-control-btn{
    color: #000;
    background: var(--gray-color);
    letter-spacing: 1px;
    transition: all .3s ease;
    font-size: 14px !important;
    font-weight: 500;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    display: block;
    width: 100%;
    text-align: center;
}

a.realty-control-btn{
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.realty-control-btn.coloured-btn{
    background: var(--main-color);
    color: #fff !important;
}

.realty-control-btn.full-width{
    width: 96%;
    margin: 2%;
}

.add-photos-btn {
    text-align: center;
    width: 100%;
    display: block;
    height: 100%;
    color: #000;
    border-radius: 9px;
    background: #F0F0F0;
}

.realty-photo img {
    width: 100%;
    object-fit: cover;
    border-radius: 9px;
}

.delete-realty-photo-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    text-align: center;
    box-shadow: 0px 0px 3px #333;
    cursor: pointer;
}

.delete-realty-photo-btn img {
    width: 14px !important;
    height: 24px !important;
    object-fit: contain;
}

.avatar-photo {
    border-radius: 50%;
    background: #FAFAFA;
    overflow: hidden;
    position: relative;
    width: 75px;
    height: 75px;
}

.select-avatar-btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #EEE;
}

.ralty-photo.not-loaded .photo-container img, .avatar-photo.not-loaded img {
    opacity: .6;
}

.avatar-photo img {
    width: 100%;
    height: 100%;
}

.realty-photo .photo-container .preloader, .avatar-photo .preloader {
    position: absolute;
    background: #000000aa;
    backdrop-filter: grayscale(1);
    left: unset;
    top: 4px;
    border-radius: 9px;
    overflow: hidden;
    width: calc(100% - 8px);
    height: calc(100% - 8px) !important;
}
.avatar-photo .delete-avatar-btn{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -5px);
    background: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.realty-photo.not-loaded .delete-realty-photo-btn, .avatar-photo.not-loaded .delete-avatar-btn {
    display: none;
}

.avatar-photo .preloader {
    top: 0;
    width: 100%;
    height: 100% !important;
}

.realty-photo .photo-container .preloader img{
    object-fit: contain;
    margin: 100px 0 0 50%;
    transform: translate(-50%, -50%);
}
.avatar-photo .preloader img {
    object-fit: contain;
    margin: 10%;
    width: 80%;
    height: 80%;
}

.realty-main-photo .realty-photo .photo-container .preloader {
    height: 200px;
}
.realty-main-photo .realty-photo .photo-container .preloader img {
    margin: 100px 0 0 50%;
    width: 25%;
    height: 25%;
}

.realty-photos .realty-photo{
    height: 100px;
}
.realty-photos .realty-photo .photo-container, .realty-photos .realty-photo .photo-container .add-photos-btn{
    height: 100%;
}
.realty-photos .realty-photo .photo-container .add-photos-btn{
    padding: 25px 0;
    font-size: 14px;
}
.realty-photos .realty-photo .photo-container .add-photos-btn img{
    filter: invert();
    display: block;
    width: 100%;
    padding: 0 calc(50% - 10px);
    height: auto;
    margin-bottom: 10px;
}
.realty-photos .realty-photo .photo-container .preloader {
    height: 100%;
}
.realty-photos .realty-photo .photo-container .preloader img {
    margin: 42.5px 0 0 50%;
    width: 45%;
    height: 45%;
}

.realty-photo .photo-container img{
    height: 100px;
}
.realty-photo .photo-container.main-photo-container{
    min-height: 200px;
}
.realty-photo .photo-container.main-photo-container .add-photos-btn{
    background: transparent !important;
}

.realty-photo .photo-container.main-photo-container img{
    height: 200px;
}

.delete-realty-btn.red-btn{
    background: #FF3C3C !important;
}

.publish-realty-btn{
    background: var(--green-color) !important;
    color: #fff;
    text-align: center;
    display: block;
}

.realty-main-image.empty-realty-image {
    background: var(--secondary-color);
    height: 100px;
    object-fit: contain;
    padding: 30px;
}

.realty-item .realty-control-btn img {
    margin-top: -4px;
    margin-right: 5px;
}

.realty-status-label {
    padding: 2px 5px;
    font-size: 10px;
    border-radius: 4px;
    line-height: 14px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.realty-status-label.full-height{
    height: 100%;
}
.realty-status-label.moderation{
    background: #FFCA3C;
}
.realty-status-label.rejected{
    background: #F25555;
}
.realty-status-label.published{
    background: #93E369;
}
.realty-status-label.archived{
    background: #D0CECE;
}
.realty-status-label.expired{
    background: #EA73EF;
}
.realty-status-label.draft {
    background: #ffeb3b;
    color: #333;
}
.realty-status-label.payment_required {
    background: #000;
}

.profile-container {
    padding: 15px 0;
}

.profile-container .profile-info .profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    padding: 5px;
    background: var(--gray-color);
}
.profile-container .profile-info .profile-name {
    font-weight: 500;
    color: #000;
    font-size: 22px;
}
.profile-container .profile-info .profile-phone, .profile-container .profile-info .profile-email {
    color: #AEAEAE;
    font-size: 12px;
}

.profile-name.empty-name {
    color: #ccc !important;
    text-transform: unset!important;
}
.profile-container .profile-info .online-status {
    font-size: 12px;
    color: #888;
}
.profile-container .profile-info .online-status:before{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #fdf59a;
    border-radius: 50%;
    float: left;
    margin: 8px 5px 0 0;
}
.profile-container .profile-info .online-status.online:before {
    background: var(--main-color);
}

.profile-container .profile-info .contact-buttons .contact-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    background: var(--main-color);
}

.user-avatar-empty {
    height: 75px;
    margin: auto;
    width: 75px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    background: var(--main-color);
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.user-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}
.user-avatar-empty .user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 15px;
    filter: invert(1) contrast(100);
}

.page-heading{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 10px 0;
    position: sticky;
    top: 60px;
    background: #fff;
    z-index: 1;
    border-bottom: 1px solid #eee;
}
.page-title {
    font-size: 20px;
    font-weight: 600;
}
.block-heading{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.creator-info {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
}

.info-message.success-message {
    position: fixed;
    top: 60px;
    left: 0;
    background: var(--main-color);
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 10px #666;
    font-weight: 500;
    color: #fff;
    z-index: 100;
    width: 100%;
    transform: translateY(calc(-100% - 10px));
    transition: all .3s ease;
}

.info-message.success-message.show{
    transform: translateY(0);
}

.code-input{
    margin: 0 10px;
    border-radius: 10px !important;
    text-align: center;
    color: #000;
    font-size: 20px !important;
    font-weight: 600;
    height: 50px;
}

.input-field-counter {
    display: block;
    font-size: 12px;
    color: #888;
    padding-top: 5px;
}

.preloader {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
}
.preloader.ajax-preloader{
    background: #ffffffee;
}
.preloader .preloader-container {
    text-align: center;
    margin: 50vh 0 0 50%;
    margin: calc(var(--vh, 1vh) * 50) 0 0 50%;
    transform: translate(-50%, -50%);
}
.preloader img {
    width: 75px;
}

.preloader .preloader-container .preloader-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 20px;
}

.chat-messages .preloader{
    height: calc(100% - 130px);
    top: 50px;
}
.chat-messages .preloader .preloader-container {
    margin-top: calc(var(--vh, 1vh) * 50 - 110px) !important;
}

.social-login-link {
    border-radius: 8px;
    padding: 12px 10px 6px;
    display: block;
    font-size: 14px;
    font-weight: 500 !important;
    cursor: pointer;
    border: 1px solid;
    color: #000 !important;
}
.social-login-link img {
    padding: 5px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: -7px;
    float: left;
}

.app-download-link{
    border: 1px solid #000;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 60px;
    font-size: 18px !important;
    display: block;
    background: #eff1f4;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}
.app-download-link img {
    width: 200px;
    height: 40px;
    object-fit: cover;
}
.app-download-link.apk-link .icon {
    font-size: 35px;
    color: #8bc34a;
    margin-right: 10px;
    margin-left: 10px;
}

.contact-link {
    font-size: 18px !important;
}

.adv-menu-btn {
    position: absolute;
    right: 0px;
    top: 0;
    height: 50px;
    width: 50px;
    text-align: center;
    padding: 0;
    margin-top: -12px;
    background: none;
}
.adv-menu {
    position: absolute;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 6px #00000029;
    z-index: 10;
    right: 15px;
    top: 30px;
    transform-origin: top right;
    transform: scale(0);
    transition: all .3s ease-in-out;
}
.adv-menu.opened{
    transform: scale(1);
}
.adv-menu .adv-menu-items{
    margin: 0;
    padding: 5px 0;
}
.adv-menu .adv-menu-items .adv-menu-item{
    margin: 5px 0;
}
.adv-menu .adv-menu-items .adv-menu-item a, .adv-menu .adv-menu-items .adv-menu-item a:hover, .adv-menu .adv-menu-items .adv-menu-item button {
    color: #000;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    display: block;
    padding: 5px 15px !important;
    width: 100%;
    text-align: left;
    letter-spacing: 0;
}

.login-form .form-title{
    font-size: 22px;
    font-weight: 600;
}
.login-form .form-description {
    font-size: 12px;
    color: #AEAEAE;
    line-height: 120%;
}
.login-form .form-description a{
    color: #AEAEAE;
}
.login-form .form-control {
    font-size: 14px;
    border: none;
    border-radius: 0 !important;
    border-bottom: 1px solid;
    padding-left: 0;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none !important;
}
.code-sent-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
}

.form-input.phone-input {
    font-size: 22px;
    color: #888;
}

/* create ads steps */
.ads-form-steps {
    height: calc(100vh - 120px);
    overflow: hidden;
    position: relative;
}
.ads-step {
    height: calc(100vh - 120px);
    transition: all .3s ease;
    transform: translateX(100vw);
    position: absolute;
    left: 0;
    width: 100%;
    overflow: auto;
    background: #fff;
}
.ads-step.main-ads-step{
    transform: translateX(-100vw);
}
.ads-step.active{
    transform: translateX(0) !important;
    z-index: 1;
}
.step-back-btn {
    display: inline-block;
}

.ads-step .step-title{
    padding-top: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 40px;
}
.ads-step .step-title.photos-step-title{
    display: none;
}
.ads-step .step-title.photos-step-title.active{
    display: block;
}
.ads-step .step-description {
    font-size: 12px;
    color: #AEAEAE;
    line-height: 17px;
}

.step-link{
    display: block;
    border-bottom: 1px solid #E9E9E9;
    padding: 10px 0 20px;
    margin-top: 10px;
}
.step-link .link-title{
    font-weight: 600;
    font-size: 15px;
    color: #000;
}
.step-link .link-description{
    font-size: 12px;
    color: #AEAEAE;
    display: block;
    line-height: 14px;
}
.step-link .step-check-icon {
    float: right;
    margin-top: 17px;
    margin-right: 24px;
}
.step-link.step-completed .step-check-icon {
    filter: invert(100%) sepia(40%) saturate(6372%) hue-rotate(75deg) brightness(176%) contrast(80%);
}

.step-link.step-uncompleted .step-check-icon{
    filter: invert(100%) sepia(50%) saturate(6372%) hue-rotate(0deg) brightness(126%) contrast(119%);
}

.ads-step .step-control-btn {
    display: block;
    text-align: center;
    background: #F0F0F0;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px;
}
.ads-step .step-control-btn.step-coloured-btn{
    color: #fff;
    background: var(--main-color);
}

.fullscreen-modal#realtyPhotosModal .modal-header{
    color: #FAFAFA;
}

.rounded-btn{
    background: #fff;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    box-shadow: 0px 0px 5px #aaa;
}

.realty-mini-slider .realty-slider-item {
    border-radius: 8px;
    overflow: hidden;
    margin: 2px;
}

.whatsapp-link{
    color: var(--main-color) !important;
}

.ads-promotion {
    padding: 15px;
    margin: 6px 0;
    background: #F0F0F0;
    border-radius: 8px;
    transition: all .3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.ads-promotion.active{
    border-color: var(--main-color);
}
.ads-promotion-label {
    color: #FFF;
    border-radius: 50%;
    display: flex;
    width: 45px;
    height: 45px;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 500;
}
.ads-promotion-description {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}
.ads-promotion-cost{
    font-size: 14px;
}
.ads-promotion-check-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ads-promotion.active .ads-promotion-check-icon{
    filter: invert(52%) sepia(40%) saturate(3868%) hue-rotate(188deg) brightness(100%) contrast(98%);
}

.ads-promotion-pay-btn {
    display: block;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
}
.ads-promotion-pay-btn:disabled{
    background: #F0F0F0;
    color: #000;
}
.promo-checkout .ads-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid transparent;
}
.promo-checkout-label{
    width: 100px;
    height: 100px;
}

.promo-checkout .promo-plan-label {
    position: absolute;
    bottom: 0;
    right: 0px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.realty-item .ads-promotion-label{
    position: absolute;
    top: 50%;
    left: calc(50% + 8px);
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
}
.realty-item.realty-view .ads-promotion-label{
    right: 10px;
    left: unset;
    margin-top: 15px;
}

.coloured-text {
    color: var(--main-color);
    font-size: 20px;
}

.cookies-panel {
    transform: translateY(calc(100% + 90px));
    bottom: 70px;
    position: fixed;
    width: calc(100% - 20px);
    background: #FFF;
    box-shadow: 0px 0px 25px #ccc;
    left: 10px;
    border-radius: 10px;
    padding: 10px;
    transition: all .3s ease;
    z-index: 100;
}
.cookies-panel.opened{
    transform: translateY(0);
}

.form-ok-btn.step-submit-form:disabled{
    background: #EEE;
    color: #666;
    overflow: hidden;
    position: relative;
}

.form-ok-btn.step-submit-form .save-preloader{
    width: 100%;
    top: 0;
    height: 100%;
}

.balance-block {
    background: #F0F0F0;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
}
.balance-block .balance-title {
    font-size: 14px;
    font-weight: 600;
}

.balance-block .balance-amount {
    font-size: 18px;
    font-weight: 500;
}

.tabs-panel{

}
.tabs-panel .tabs-heading .tab-btn {
    background: #eee;
    padding: 10px 30px;
    cursor: pointer;
}
.tabs-panel .tabs-heading .tab-btn:first-child{
    border-radius: 10px 0 0 10px;
}
.tabs-panel .tabs-heading .tab-btn:last-child{
    border-radius: 0 10px 10px 0;
}
.tabs-panel .tabs-heading .tab-btn.active{
    background: var(--main-color);
    color: #fff;
}
.tabs-panel .tab{
    display: none;
}
.tabs-panel .tab.active-tab{
    display: block;
}

.select-radio-description.balance-amount {
    font-size: 18px;
    font-weight: 500;
}

.payment-history-item {
    background: #FAFAFA;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.custom-btn{
    width: 100%;
}

.deposit-btn:disabled{
    background: #F0F0F0;
    color: #000;
}

.share-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.share-buttons .share-btn {
    flex: auto;
    margin: 10px;
}
.adv-link {
    display: block;
    padding: 10px;
    color: #666;
    border: 1px solid #EEE;
    border-radius: 5px;
    margin: 0 0 10px;
    background: #FAFAFA;
    font-size: 14px;
}

.ad-report-btn{
    background: #FFE8E8;
    color: #FF0000;
}

.faq-container{
    background: #FAFAFA;
    padding: 15px;
    text-align: center;
    height: 100%;
}
.faq-container img{
    max-width: 100%;
    object-fit: contain;
}

/* subscriptions */
.subscription-item {
    border-bottom: 1px solid #EEE;
    margin: 15px 0 0 5px;
    padding: 10px 0 20px;
    display: flex;
    align-items: center;
}
.subscription-item .subscription-title {
    font-size: 14px;
    flex: auto;
    width: 50%;
}
.subscription-item .subscription-prices{
    color: #CCC;
}

.subscription-toggle-btn{
    height: 35px;
    width: 55px;
}
.subscription-toggle-btn .toggle-thumb {
    height: 29px;
    width: 29px;
    transform: translateX(0);
}

.subscription-toggle-btn.active-toggle-btn {
    background: var(--main-color);
}
.subscription-toggle-btn.active-toggle-btn .toggle-thumb{
    transform: translateX(calc(50% + 6px));
}

.subscription-item .subscription-delete-btn {
    background: none;
    filter: contrast(0.5);
    width: 30px;
    height: 30px;
    padding: 4px;
}
.subscription-item .subscription-delete-btn img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.categories-container {
    width: 100%;
    overflow: auto;
    position: relative;
}

.categories-container .categories-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.categories-container .categories-list .category-item {
    background: #F0F0F0;
    border-radius: 10px;
    width: calc(25% - 10px);
    margin: 5px;
    padding: 15px 10px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.categories-container.over-map{
    position: sticky;
    top: 70px;
}
.categories-container.over-map .categories-list .category-item{
    background: #FFF;
    box-shadow: 0px 0px 10px #ccc;
}

.select-category-btn.active {
    background: var(--main-color) !important;
    color: #FFF !important;
}

.categories-container .categories-list .category-item .category-icon {
    height: 18px;
}
.select-category-btn.active .category-icon {
    filter: brightness(0) invert(1);
}

.categories-container .categories-list .category-item .category-title {
    font-size: 14px;
    display: inline-block;
}

.categories-container .categories-list .category-item .category-image {
    height: 70%;
    object-fit: contain;
    position: absolute;
    right: 0;
    bottom: 0;
}

.categories-container .categories-list .category-item .category-image.large-image{
    height: 85%;
}

.filters-toggle {
    background: #FFF;
    min-height: 100%;
    width: 100%;
    left: 0;
    padding: 0 1rem;
    display: none;
}
.toggle-filters-btn{
    height: 41px;
    padding: 5px !important;
}

.select-button {
    border-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: auto;
}

.select-button .select-title{
    font-size: 14px;
    color: #000;
}
.select-button .icon {
    color: var(--main-color);
    font-size: 20px;
    margin: 1px 5px 0 0;
    float: left;
}

.select-metro-container {
    position: fixed;
    top: 70px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    left: 0;
    width: 100%;
    z-index: 102;
    display: none;
}

.select-city-container{
    display: none;
}

.promo-checkout-total{
    position: relative;
}
.promo-checkout-total span{
    background: #fff;
    z-index: 1;
}
.promo-checkout-total hr{
    width: 100%;
    position: absolute;
}
.promo-checkout-total.flex-group{
    align-items: flex-start;
}

.tip-label {
    width: 20px;
    display: inline-flex;
    height: 20px;
    background: var(--main-color);
    border-radius: 50%;
    color: #FFF;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 4px;
    cursor: pointer;
}

.tip {
    text-align: center;
}
.tip-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}
.tip-icon {
    display: block;
    color: var(--main-color);
    font-size: 30px;
    margin-bottom: 10px;
}

.verification-text {
    text-align: center;
    font-weight: 500;
}
.verification-text.agent-not-verified {
    color: var(--red-color);
}
.verification-text.agent-moderation {
    color: var(--dark-blue-color);
}
.verification-icon {
    display: block;
    font-size: 40px;
    padding: 10px 0 20px;
}

.realty-map-container {
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden;
    z-index: 1;
    display: none;
}

.realty-map-container.full-page {
    position: fixed;
}
.realty-map-container.map-visible {
    display: block;
}

.realty-map-container.main-map{
    opacity: 0;
    z-index: -100;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.realty-map-container.map-visible.main-map{
    opacity: 1;
    z-index: 101;
}

.realty-map-content {
    height: 100%;
}

.map-marker {
    background: #FFF;
    padding: 5px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 15px #ccc;
    cursor: pointer;
    user-select: none;
}
.realty-marker-popup {
    position: absolute;
    bottom: 20px;
    background: #FFF;
    padding: 5px;
    width: 350px;
    display: none;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #ccc;
    left: 50%;
    transform: translate(-50%, 10px);
    z-index: 111;
}
.realty-popup-close {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 25px;
    display: flex;
    height: 25px;
    cursor: pointer;
    padding: 8px;
    justify-content: center;
    align-items: center;
}
.realty-popup-close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.realty-marker-popup .popup-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.realty-marker-popup .popup-content .realty-popup-image{
    width: 25%;
    border-radius: 10px;
}
.realty-marker-popup .popup-content .realty-popup-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 10px 10px 15px;
    width: 100%;
}
.realty-marker-popup .popup-content .realty-popup-info .realty-popup-title, .realty-marker-popup .popup-content .realty-popup-info .realty-popup-price{
    font-size: 14px;
    font-weight: 600;
}
.realty-marker-popup .popup-content .realty-popup-info .realty-popup-id, .realty-marker-popup .popup-content .realty-popup-info .realty-popup-date{
    font-size: 12px;
}

.map-pin {
    font-size: 40px;
    color: var(--main-color);
    transform: translate(-50%, -80%);
}

.search-block {
    position: absolute;
    top: 10px;
    z-index: 1;
    right: 10px;
    background: #FFF;
    padding: 10px 10px 0;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #ccc;
    width: 100%;
    max-width: 450px;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.search-block.expanded{
    height: calc(100vh - 140px);
    padding: 10px;
}
.search-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #FAFAFA;
    border-radius: 10px;
}
.search-container .search-preloader img{
    width: 40px;
    height: 40px;
    padding: 7px 5px 7px 0;
    position: absolute;
    right: 10px;
    top: 10px;
}
.search-container .search-icon{
    width: 40px;
    padding: 10px;
}

.search-block:has(.close-search-btn) .search-heading {
    display: flex;
    height: 40px;
    align-content: center;
    align-items: center;
}
.close-search-btn {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
}
.search-block:has(.close-search-btn) .search-container {
    width: calc(100% - 35px);
    margin-left: 5px;
}
.search-input {
    border: none;
    padding: 0;
    font-size: 14px;
}

.toggle-map-btn{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.show-map-btn {
    bottom: 20px;
    right: 20px;
    border-radius: 18px;
    box-shadow: 0px 2px 5px #aaa !important;
    position: sticky;
    float: right;
    background: #FFF;
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.search-results {
    height: calc(100% - 50px);
    overflow: hidden;
    overflow-y: auto;
    margin: 10px -10px 0;
    position: relative;
    display: none;
}
.search-results .search-preloader {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #ffffff78;
}
.search-results .search-preloader img {
    width: 70px;
    height: 70px;
}
.search-results::-webkit-scrollbar{
    width: 10px;
}

.search-results::-webkit-scrollbar-thumb{
    border-radius: 5px !important;
    background: #CCC;
}
.search-results::-webkit-scrollbar-track{
    background: #fafafa;
    border-radius: 10px;
}

.search-results .empty-results{
    display: none;
    height: calc(100% - 60px);
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #666;
    text-align: center;
}

.search-block.expanded .search-results {
    display: block;
}
.search-block.expanded .search-results .empty-results {
    display: flex;
}
.search-results .empty-results img {
    filter: grayscale(1);
}

.search-result-item {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    padding: 10px 0 10px 20px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.search-result-item:hover {
    background: #607d8b17;
}
.search-result-item-icon {
    font-size: 24px;
    color: #99adb7;
    width: 30px;
}
.search-result-details {
    line-height: 100%;
}
.search-result-title {
    font-size: 14px;
}
.search-result-city {
    font-size: 12px;
    color: #AAA;
    font-weight: 500;
}
.metro-icon {
    border-radius: 50px;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.dropdown-item {
    padding: 5px 15px;
}

.dropdown-menu .search-preloader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.dropdown-menu.inner.show {
    position: relative;
    height: 250px;
}

.select-metro-container .search-block{
    height: calc(100vh - 90px);
}

.clear-search-btn {
    width: 30px;
    text-align: center;
    right: 15px;
    position: absolute;
    display: none !important;
}

.search-block.expanded .clear-search-btn {
    display: block !important;
}

.get-user-location-btn {
    position: fixed;
    bottom: calc(30vh - 60px);
    margin-bottom: 15px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    background: #FFF;
    box-shadow: 0px 0px 5px #aaa !important;
    justify-content: center;
    align-items: center;
}

.close-btn {
    background: none !important;
    border: 1px solid;
    padding: 9px 10px;
}

.publication-rules {

}
.rule-item {
    border-bottom: 1px solid #EEE;
    padding: 10px 0 15px;
}
.rule-title {
    font-weight: 600;
    font-size: 18px;
}
.rule-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 115%;
    margin-top: 5px;
}

.custom-tip {
    display: flex;
    align-items: center;
    text-align: left;
}
.custom-tip-icon {
    width: 25px;
    height: 23px;
    font-size: 12px;
    display: flex;
    color: #FFF;
    background: var(--main-color);
    margin: 0;
    border-radius: 50%;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}
.custom-tip-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    width: 100%;
}

.report-types .report-type {
    padding: 10px;
    cursor: pointer;
}
.report-types .report-type:not(.report-type:last-child) {
    border-bottom: 1px solid #EEE;
}
.report-types .report-type .report-type-title {
    padding-left: 5px;
    font-size: 14px;
    font-weight: 500;
}
.report-types .report-type.checked .report-type-icon {
    filter: invert(100%) sepia(20%) saturate(6372%) hue-rotate(75deg) brightness(150%) contrast(80%);
}

.confirm-rules-btn {
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.toggle-input-text-btn {
    float: right;
    position: absolute;
    top: 0;
    right: 15px;
    height: 100%;
    color: #CCC;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease;
}

.form-control.is-invalid~.toggle-input-text-btn{
    height: calc(100% - 24px);
}

.toggle-input-text-btn.active{
    color: var(--main-color) !important;
}
