@charset "UTF-8";
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--color-white) inset !important;
  box-shadow: 0 0 0 1000px var(--color-white) inset !important;
  background-color: var(--color-white) !important;
}

a:link,
a:visited,
a:hover,
a:focus,
a:active {
  outline: none;
}

input:focus,
input:active,
textarea:focus,
textarea:active,
button:focus,
button:active,
select:focus,
select:active {
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  margin: 0;
  margin-top: 0;
  font-weight: 400;
}

h1 {
  font-weight: 700 !important;
}

h2 {
  font-weight: 600 !important;
  font-size: 30px;
  line-height: 28px;
  color: var(--color-heading);
  margin-bottom: 40px;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 158%;
  color: var(--color-heading);
  background: var(--color-white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

body.deactive {
  overflow: hidden;
}

.page-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  color: var(--color-hTag);
  margin: 0;
}

a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

button:active,
button:hover,
button:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

button, select {
  text-transform: none;
}

button, input {
  overflow: visible;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border-radius: 0;
}

/* Bootstrap-lite: only classes used by static.index.html and current home scripts. */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--radius-xs, 4px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-input, #495057);
  background-color: var(--color-white, #fff);
  background-clip: padding-box;
  border: 1px solid var(--border-default, #ced4da);
  border-radius: var(--radius-xs, 4px);
}

.form-control:focus {
  color: var(--color-input, #495057);
  background-color: var(--color-white, #fff);
  border-color: var(--color-primary, #80bdff);
  outline: 0;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: var(--color-gray-light, #e9ecef);
  opacity: 1;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  margin: 0.125rem 0 0;
  list-style: none;
  background-color: var(--color-white, #fff);
  background-clip: padding-box;
  border: 1px solid var(--border-default, rgba(0, 0, 0, 0.15));
  border-radius: var(--radius-xs, 4px);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal.show {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal.fade {
  transition: opacity 0.15s linear;
}

.modal.fade:not(.show) {
  opacity: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--color-white, #fff);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius, 6px);
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border-default, #dee2e6);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid var(--border-default, #dee2e6);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(22, 27, 54, 0.3);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 1;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 var(--color-white, #fff);
  opacity: 0.5;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-xs, 4px);
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.text-success {
  color: #28a745;
}

.text-danger {
  color: #dc3545;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
}
.hide,
.gallery-hidden,
.hidden {
  display: none !important;
}

.modal-backdrop.show {
  opacity: 1 !important;
}

.modal-backdrop {
  background-color: rgba(22, 27, 54, 0.3) !important;
}

.carousel::-webkit-scrollbar,
.cases_top::-webkit-scrollbar,
.wrap_sections::-webkit-scrollbar,
.splide__list::-webkit-scrollbar {
  width: 0;
  display: none;
}

.comments-area {
  width: auto;
}

.single-property .property-documents {
  float: none;
}

.info_reiting {
  display: none;
}

@media (max-width: 767.98px) {
  .tab_all,
  .title-tab {
    padding: 0 15px;
  }
}
.home .container.cont_link_chapter,
.home .advanced-search.advanced-search-nav.mobile-search-nav,
.home .icon-thumb-down1,
.home .mi13_like_dislike {
  display: none;
}

.wrapper {
  width: 100%;
  max-width: var(--space-page-max, 1230px);
  padding: 0 var(--space-page-x, 15px);
  margin: 10px auto 0;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}
.box {
  /* Это основной контейнер для блоков (подобно .container). В дальнейшем использовать отдельно padding-top & padding-bottom. Общий padding & горизонтальный padding зарезервирован */
  padding: 0 calc(50% - 570px);
}

@media (max-width: 1200px) {
  .box {
    padding: 0 30px;
  }
}
/* MAIN - only outer */
/* ------------------------------------------------------------------------ */
.main-wrap.slideout-panel {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -10px 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -10px 10px;
  /*overflow: hidden;*/
  overflow: visible;
  position: relative;
  z-index: 11;
}

@media (max-width: 991.98px) {
  .slideout-panel {
    position: relative;
  }
  .header-main-wrap.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 2px #f7f7f7;
    z-index: 99;
  }
  .header-main-wrap.fixed.open {
    position: sticky;
    width: 100%;
    top: 0;
  }
}
.btn {
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  -o-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

.btn {
  padding: 0 15px;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
}

.btn:active, .btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 !important;
}

.dropdown-menu {
  border-color: var(--border-default);
}

/* ///////////////////////////////////////////////////////// */
/* лайк */
.item-wrap .favorites_harant.unit__like {
  z-index: 3;
  position: absolute;
  bottom: -3px;
  right: 4px;
  padding: 5px;
  color: var(--white-text);
  font-size: 20px;
  top: auto;
}

.item-wrap .favorites_harant.unit__like:hover {
  cursor: pointer;
}

.item-wrap .favorites_harant.unit__like:hover i:after {
  color: var(--color-heading);
}

.unit__like i:before {
  z-index: 9;
  position: relative;
  color: var(--color-heading);
}

.unit__like i:after {
  content: "\f004";
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white-text);
}

/* ссылка */
.unit__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
}

/* header плитки */
.unit__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.unit__img-outer {
  width: 125px !important;
  height: 158px;
  text-align: right;
  position: relative;
  float: left;
  margin-right: 20px;
  margin-top: 0px;
}

.unit__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.unit__indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1px;
}

.agency_card.unit .unit__indicator {
  margin-top: 19px;
}

.unit p {
  margin: 0;
}

.unit__info-text {
  height: 18px;
  white-space: nowrap;
  line-height: 1;
  font-weight: 700;
}

.unit__info-text span {
  /*margin-left: 5px;*/
  color: #222;
  font-weight: 500;
  /*font-weight: bold;*/
}

.unit__rating-on {
  font-size: 30px;
  line-height: 40px;
}

.unit__rating-on .osn_ch {
  position: relative;
  margin-right: 8px;
}

.unit__rating-on .drob_ch {
  position: absolute;
  font-size: 14px;
  top: -5px;
  right: -12px;
  font-weight: 700;
}

.unit__rating-on .drob_ch_sp {
  top: -8px;
  position: relative;
  left: -1px;
}

.unit__rating .not-exist-rating span {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

/* звезды отзывов */
.unit__feedback .wpd-rating-value {
  display: none;
}

.unit__feedback .wpd-custom-field {
  padding: 0;
}

.unit__feedback .wpd-rating {
  justify-content: flex-start;
  margin: 0;
}

.unit__feedback .wpd-rating-wrap .wpd-rating-stars {
  margin-top: 0 !important;
}

.unit__feedback .wpd-rating .wpd-rating-wrap {
  width: 100%;
  justify-content: flex-start;
}

.unit__feedback .wpd-rating .wpd-rating-wrap .wpd-rating-data {
  width: 120px;
  align-items: flex-start;
}

.unit__feedback .wpd-rating .wpd-rating-wrap .wpd-rating-left, .unit__feedback .wpd-rating .wpd-rating-wrap .wpd-rating-right {
  display: none;
}

.unit__feedback .wpd-custom-field {
  width: auto;
}

.unit__feedback {
  display: flex;
}

.unit__feedback span.hrnt_count_comment {
  margin-left: 0px;
}

.hrnt_count_comment {
  color: #6c757d;
}

.unit__info-block .is_met {
  font-size: 12px;
  margin-top: 5px;
  margin-top: 0;
}

.unit__info-block .is_met span {
  display: block;
  line-height: 1.5;
}

.unit__info-block .is_met .fa-check-circle::before {
  font-size: 14px;
  color: green;
}

/* ФИО */
.unit__fullname {
  width: 100%;
  margin: 15px 0 0 0;
  font-size: 18px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: bold;
  line-height: 22px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #213772;
}

.unit__fullname:hover, .unit__btn-detail:hover {
  text-decoration: underline;
}

/* main плитки */
.unit__main {
  margin-top: 5px;
  color: #777;
}

.unit__description {
  font-size: 16px;
}

.sud_del span {
  font-weight: 700;
}

/* footer плитки */
.unit__footer {
  margin-right: 0;
  text-align: left;
  width: 100%;
  margin-top: 20px;
}

/* кнопки */
.unit .unit__buttons {
  margin: 0;
  text-align: left;
}

.unit .card_butoon.unit__btn-tel {
  position: relative;
  width: 150px;
  height: auto;
  margin-right: 20px !important;
  padding: 0;
  background: transparent;
  /*color: var(--white-text);*/
  font-size: 14px;
  line-height: 18px;
  border: none;
  -webkit-transition: background 0.3s, color 0.3s !important;
  -o-transition: background 0.3s, color 0.3s !important;
  transition: background 0.3s, color 0.3s !important;
  max-height: 40px;
}

.unit .unit__btn-tel-outer {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--color-heading);
  border: 1px solid var(--color-heading);
  -webkit-transition: background 0.3s, color 0.3s !important;
  -o-transition: background 0.3s, color 0.3s !important;
  transition: background 0.3s, color 0.3s !important;
  height: 100%;
  border-radius: var(--radius);
}

.unit .unit__btn-tel-outer:hover {
  color: var(--white-text) !important;
}

.unit .unit__btn-tel-outer--disabled {
  position: relative;
  background: #888;
  color: var(--white-text);
  border: none;
  cursor: default;
}

.unit .unit__btn-tel-outer--disabled + .unit__btn-tel-inner {
  display: none !important;
}

.unit .unit__btn-tel-inner {
  display: none;
  padding: 10px;
  color: var(--color-heading);
  border: 1px solid var(--color-heading);
  border-radius: var(--radius);
}

.unit__btn-detail {
  padding: 10px 0px;
  color: var(--color-heading);
}

.unit__btn-detail:hover {
  color: var(--color-primary);
}

.unit__btn-detail i {
  position: relative;
  top: 1px;
  margin-left: 5px;
  -webkit-transition: margin 0.3s;
  -o-transition: margin 0.3s;
  transition: margin 0.3s;
}

.unit__btn-detail:hover i {
  margin-left: 8px;
  margin-right: -3px;
}

#nav_fav_harant .dashboard-notification-wrap {
  position: relative;
  display: inherit;
}

#nav_fav_harant .notification-circle {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--color-white);
  border: 1px solid var(--color-heading);
  top: 12px;
  right: -4px !important;
  left: inherit;
  color: var(--color-heading);
  font-size: 10px;
  border-radius: 11px;
}

#nav_fav_harant .icon-alarm-bell {
  font-size: 24px;
  line-height: 60px;
  height: 60px;
}

.unit:hover .item-wrap.item-wrap-no-frame {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.unit-box--quad {
  margin: 0 -15px;
}

.unit-box--quad .unit {
  width: 33.3333333333%;
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  height: auto;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--color-white);
  background-clip: border-box;
  border-radius: 0.25rem;
}

.unit .item-wrap.item-wrap-no-frame {
  border: 1px solid var(--border-default);
  padding: 30px 15px 15px;
  border-radius: var(--radius);
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  overflow: hidden;
  max-width: 100%;
}

.unit .d-flex.align-items-center.h-100 {
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

.unit .item-body.flex-grow-1 {
  padding: 0;
  width: 100%;
}

.unit__rating {
  margin-top: 0px;
  font-size: 30px;
}

.unit__indicator .unit__info-text {
  font-size: 12px;
  margin-top: 0px;
  line-height: 15px;
  height: auto;
}

.bg-footer_logo {
  width: 163px;
  height: 47px;
  background: url("../img/logo_footer.svg") 0px -1px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* FOOTER */
/* ------------------------------------------------------------------------ */
/* NEW */
footer {
  background-color: var(--white-text);
  padding-top: 45px;
  padding-bottom: 33px;
}

.footer-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo__wrap {
  max-width: 440px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-line__wrapper {
  max-width: 409px;
  width: 100%;
  height: 42px;
}

.search-line__wrapper form {
  width: 100%;
  height: 100%;
  position: relative;
}

.search-line__wrapper form input {
  background: linear-gradient(269.59deg, #F0F7FA 0.97%, #F7F7F8 100.67%);
  border-radius: var(--radius);
  outline: none;
  padding-left: 22px;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--color-hTag);
  border: none;
  padding-right: 35px;
}

.footer-logo__wrap .footer-logo > svg g:first-child rect {
  fill: var(--color-button);
}

.search-line__wrapper form::after {
  content: "\e901";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  font-family: "harant-icons";
}

#formSearch span {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  z-index: 50;
  cursor: pointer;
}

.footer-menu__wrapper {
  margin-top: 57px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-menu__items, .footer-menu__wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 233px;
  width: 100%;
  padding-left: 0;
  list-style: none;
}

.footer-menu__wrapper p {
  margin-bottom: 7px;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  color: var(--color-ptag);
}

.footer-menu__item span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-Text);
}

footer .footer-menu__item a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ptag);
}

.footer-menu__item #adminmail span {
  color: var(--color-ptag);
}

.footer-menu__item a svg > path {
  fill: var(--color-Text);
}

.footer-menu__wrapper .footer-menu__items:last-child .footer-menu__item:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .copyright {
  border-top: 1px solid var(--color-ptag);
  padding-top: 22px;
  margin-top: 20px;
}

footer .copyright p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-ptag);
}

@media (max-width: 450px) {
  footer {
    padding-top: 30px;
  }
  .copyright {
    margin-top: 10px;
  }
  .footer-menu__wrapper {
    gap: 20px;
    margin-top: 35px;
  }
}
/* NEW */
.footer-social span {
  margin-left: 10px;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a {
  position: relative;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a:before {
  position: absolute;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li:before, .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li:after {
  display: table;
}

.widget-wrap {
  border-radius: var(--radius);
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs), .widget-wrap:first-of-type {
  margin: 0;
}

.widget-wrap {
  margin-top: 30px;
}

.footer-top-wrap .widget-wrap {
  margin-bottom: 30px;
}

.footer-top-wrap .widget-wrap, .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) {
  padding: 0;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a:before {
  left: 0;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a {
  font-weight: 500;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li {
  /**zoom: 1*/
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li:before, .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li:after {
  content: " ";
  width: 100%;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li:after {
  clear: both;
}

.btn-facebook {
  color: #506dab;
}

.btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active {
  color: #48629a !important;
}

.btn-twitter {
  color: #00aced;
}

.btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active {
  color: #0099d4 !important;
}

.btn-instagram {
  color: #517fa4;
}

.btn-instagram:hover, .btn-instagram:focus, .btn-instagram:active {
  color: #497293 !important;
}

.btn-linkedin {
  color: #007bb6;
}

.btn-linkedin:hover, .btn-linkedin:focus, .btn-linkedin:active {
  color: #006a9d !important;
}

.btn-youtube {
  color: #b00;
}

.btn-youtube:hover, .btn-youtube:focus, .btn-youtube:active {
  color: #a20000 !important;
}

.widget-wrap {
  padding: 5px 25px 25px;
  background-color: var(--color-white);
}

.widget-title {
  margin-bottom: 15px;
  font-size: 19px;
  line-height: 24px;
  display: block;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) {
  list-style: none;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li {
  line-height: 35px;
  padding: 0 0 0 10px;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a {
  padding-left: 15px;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: -10px;
}

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a:before {
  content: "\e912";
  font-family: "houzez-iconfont";
  font-size: 10px;
}

.footer-top-wrap {
  padding: 55px 0 50px;
}

@media (max-width: 767.98px) {
  .footer-top-wrap {
    padding: 50px 30px 30px;
  }
}
.footer-top-wrap .widget-wrap {
  background-color: transparent;
}

.footer-bottom-wrap {
  padding: 30px 0;
}

@media (max-width: 767.98px) {
  .footer-bottom-wrap .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .footer-bottom-wrap .d-flex .footer-copyright {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .footer-bottom-wrap {
    height: 40px;
    padding: 0;
    padding-top: 10px;
  }
}
.fa-facebook:before {
  padding-left: 3px !important;
}

@media (max-width: 767.98px) {
  .footer_text_bottom {
    margin-top: -10px;
  }
}
/* PREFOOTER BLOCK - looked lawyers */
/* -------------------------------- */
.listing-view, .item-header {
  position: relative;
}

.btn-item, .item-tools {
  position: absolute;
}

.btn:focus .show-on-click {
  display: block;
}

.item-tool > span, .item-tool {
  display: inline-block;
}

.grid-view-4-cols:not(.list-view) .item-listing-wrap .btn-item, .btn:focus .hide-on-click, .btn .show-on-click {
  display: none;
}

.item-tool > span {
  border-radius: var(--radius);
}

.item-tools {
  margin: 0;
  padding: 0;
  z-index: 2;
  list-style: none;
}

.grid-view .item-listing-wrap {
  float: left;
}

.item-title {
  /*white-space: nowrap;*/
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

strong {
  font-weight: 600;
}

.h-100 {
  height: 100%;
}

.btn-half-width {
  width: calc(48% - 5px);
  padding-left: 0;
  padding-right: 0;
}

.btn-half-width:first-of-type {
  margin-right: 10px;
}

@media (max-width: 575.98px) {
  .btn-half-width {
    margin-right: 0;
  }
}
.btn-call:focus {
  background-color: var(--color-button);
  border: 1px solid var(--color-button);
}

.btn.not_phone, .btn.not_phone:hover, .btn.not_phone:focus {
  background: var(--color-muted-alt) !important;
  cursor: default;
  border-color: var(--color-muted-alt) !important;
}

.listing-wrap .item-header {
  min-height: 1px;
}

.item-tools {
  bottom: 20px;
  right: 20px;
}

.item-tool > span {
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
}

.item-tool > span {
  color: var(--white-text);
  border: 1px solid transparent;
  background-color: rgba(0, 0, 0, 0.35);
}

.item-tool > span:hover {
  background-color: rgba(0, 0, 0, 0.65);
  color: var(--white-text);
}

.item-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 3px;
}

.btn-item {
  line-height: 30px;
  padding: 0 10px;
  bottom: 80px;
  right: 20px;
  height: 32px;
}

.grid-view .d-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767.98px) {
  .all_card {
    display: flex;
  }
}
.favorites_harant i {
  position: relative;
}

.favorites_harant.listing-slider-favorites i.fa-heart-o:hover:after {
  content: "\f004";
  color: var(--color-primary);
}

.page-title-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 0;
}

@media (max-width: 767.98px) {
  .page-title-wrap {
    padding: 15px 0;
  }
}
.card-deck .card {
  margin-left: 0;
  margin-right: 0;
  background-color: transparent;
  border: 0;
  overflow: hidden;
}

@media (min-width: 576px) {
  .card-deck .card {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}
.listing-view::after {
  display: block;
  content: "";
  clear: both;
}

.listing-view .card {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.listing-view.card-deck {
  padding-left: 0;
  padding-right: 0;
}

.grid-view {
  margin-right: -15px;
  margin-left: -15px;
}

.grid-view.card-deck {
  padding-left: 0;
  padding-right: 0;
}

.grid-view .item-listing-wrap {
  width: 50%;
  flex-basis: 50%;
  -ms-flex-preferred-size: auto !important;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.container-2 {
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .grid-view .item-listing-wrap {
    width: 100%;
    float: none;
  }
  .harakteristiki {
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .grid-view-4-cols:not(.list-view) .item-listing-wrap {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
}
.card {
  border: 0;
  background-color: #eff1f1;
}

.card_left div {
  font-weight: 700;
  height: 18px;
}

.card_left div span {
  font-weight: 500;
}

.listing-wrap .reiting_harant_spisok .osn_ch {
  position: relative;
  margin-right: 8px;
}

.listing-wrap .reiting_harant_spisok .drob_ch {
  position: absolute;
  font-size: 14px;
  top: 6px;
  right: -12px;
  font-weight: 700;
}

.listing-wrap .reiting_harant_spisok .drob_ch_sp {
  top: -8px;
  position: relative;
  left: -1px;
}

.listing-wrap .item-title a {
  color: var(--color-heading);
}

.listing-wrap .knopki_card .btn-item {
  width: 160px;
  height: 30px;
  padding-top: 5px;
  color: #000;
  background: var(--color-white);
  line-height: 15px;
  position: static;
}

@media (max-width: 768px) {
  .listing-wrap .reiting_harant_spisok .drob_ch {
    top: 0;
  }
}
@media (min-width: 992px) {
  .btn-call {
    background: var(--color-heading);
    color: var(--white-text) !important;
    margin-left: 20px;
  }
  .btn-call:hover {
    background: var(--color-primary);
  }
  .card .item-header {
    width: 125px !important;
    float: left;
    margin-right: 20px;
    margin-top: 5px;
  }
  .listing-wrap .wp-post-image {
    margin-top: 0;
    width: 320px;
    height: 100vh !important;
    object-fit: cover;
    border: 1px solid var(--color-heading);
    max-height: 160px;
  }
  .listing-wrap .card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .card_left {
    padding-right: 10px;
  }
  .card_right {
    margin-left: 10px;
  }
  .listing-wrap .item-title {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 20px;
  }
  .knopki_card {
    margin-top: -5px;
    margin-right: 50px;
    text-align: right;
    margin-bottom: 10px;
  }
  .card_left_and_right {
    display: -webkit-flex;
    display: flex;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .kratkoe_opisanie {
    max-width: 650px;
    height: 100px;
    margin-top: 25px;
  }
  .card_left div {
    white-space: nowrap;
  }
  .reiting_harant_spisok {
    font-size: 40px;
  }
  .lable_reiting_harant_spisok {
    font-size: 12px;
    margin-top: 1px;
  }
  .card_butoon {
    width: 160px;
    height: 30px;
    margin-right: 10px;
    color: #000 !important;
    background: var(--color-white);
    line-height: 15px;
  }
  .knopki_card .card_butoon:hover {
    background: var(--color-primary);
    color: var(--white-text) !important;
    border-radius: var(--radius);
  }
  .knopki_card .card_butoon:hover .unit__btn-tel-outer {
    color: var(--white-text);
  }
  .knopki_card .card_butoon:hover a {
    color: var(--white-text) !important;
  }
  .knopki_card .btn-primary:hover {
    background: var(--color-primary) !important;
    color: var(--white-text) !important;
  }
  .knopki_card .show-on-click a:hover {
    color: var(--white-text) !important;
  }
  .container-2 {
    margin-top: 0;
  }
}
@media (min-width: 351px) and (max-width: 410px) {
  .btn-call {
    margin-left: 0 !important;
    margin-top: 0;
  }
}
@media (max-width: 350px) {
  .btn-call {
    margin-left: 0 !important;
    margin-top: 7px;
  }
}
@media (min-width: 767.98px) and (max-width: 992px) {
  .btn-call {
    width: 160px;
  }
}
@media (max-width: 992px) {
  .reiting_harant_spisok {
    float: right;
  }
  .reiting_harant_spisok {
    font-size: 25px;
  }
  .card_right {
    width: 200px;
  }
  .kratkoe_opisanie {
    color: var(--color-hTag);
  }
  .listing-wrap .card {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
  }
  .knopki_card {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .breadcrumb-wrap.hidden-mobile {
    display: none;
  }
  .single-houzez_agency .card_left div {
    height: auto;
    line-height: 14px;
  }
  .single-houzez_agency .container.container-2 .item-body {
    padding: 0px;
  }
}
@media (max-width: 500px) {
  .listing-wrap .card .item-header {
    margin-right: 10px;
  }
  .listing-wrap .grid-view .item-listing-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .listing-wrap .reiting_harant_spisok {
    margin-right: 20px;
  }
  .listing-wrap .harakteristiki {
    min-width: 150px;
  }
  .listing-wrap .kratkoe_opisanie {
    margin-top: 7px;
  }
  .listing-wrap .all_card {
    position: relative;
  }
}
.btn-call {
  background: var(--color-button);
  color: var(--white-text) !important;
  margin-left: 20px;
}

.btn-call:active {
  background: var(--color-heading);
}

.add-favorite-js {
  display: none !important;
}

.card .item-header {
  width: 125px !important;
  float: left;
  margin-right: 20px;
  text-align: right;
}

.fa-heart:before {
  text-shadow: 0 0 8px var(--color-white);
}

.listing-wrap .wp-post-image {
  margin-top: 0;
  width: 320px;
  height: 100vh !important;
  object-fit: cover;
  border: 1px solid var(--color-heading);
  max-height: 160px;
}

img.img-fluid.img_look_img {
  z-index: 5;
  position: relative;
}

img.img-fluid.img_look_img:hover {
  opacity: 0.7;
}

.photo_card.have_video img.img-fluid.img_look_img {
  z-index: 1;
}

.photo_card.have_video img.img-fluid.img_look_img:hover {
  opacity: 1;
}

.card_butoon {
  width: 120px;
  height: 30px;
  margin-right: 10px;
  color: #000 !important;
  background: var(--color-white);
  line-height: 15px;
}

.knopki_card .card_butoon {
  width: auto;
  padding: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.btn_podrobnee .btn-item {
  width: auto !important;
  padding: 0 !important;
  line-height: 15px !important;
  padding-top: 5px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.btn_podrobnee {
  line-height: 15px !important;
}

.wpd-rating-data {
  position: relative;
}

.wpd-rating-stars {
  display: flex;
}

.wpd-rating-stars svg {
  width: 26px;
  height: 26px;
  display: block;
  margin-right: -3px;
}

.wpd-rating-stars svg .wpd-star {
  fill: #ddd;
}

.wpd-rating-stars svg .wpd-active {
  fill: gold;
}

.otziv_houzez_spisok {
  display: flex;
}

.yarlik-wrap {
  color: var(--white-text);
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  position: absolute;
  width: 83px;
  height: 38px;
  top: -15px;
  bottom: auto;
  left: auto;
  right: -4px;
  opacity: 1;
  text-align: center;
  z-index: 1;
  font-size: 10px;
  background: url(/wp-content/themes/houzez/img/proveren.png) no-repeat;
  background-size: cover;
}

.yarlik-wrap > div {
  position: relative;
  width: 100%;
  height: auto;
  padding: 3px 0 0 10px;
  color: var(--white-text);
}

.block_looked {
  margin-top: 0px;
  margin-bottom: 0px;
}

.block_looked .container-2 {
  padding-right: 15px;
  padding-left: 15px;
}

.block_looked .container-2 .kratkoe_opisanie {
  height: 65px;
}

.block_looked .container-2 .kratkoe_opisanie {
  font-size: 15px;
}

.block_looked .container-2 .harakteristiki {
  width: 265px;
}

.listing-wrap.block_looked .card {
  box-shadow: none;
}

.listing-wrap.block_looked .card:first-child {
  padding-left: 0;
}

.listing-wrap.block_looked .card:last-child {
  padding-right: 0;
}

.block_looked .knopki_card .card_butoon {
  margin-right: 5px;
  margin-left: 0;
}

.block_looked .knopki_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  margin-right: 0;
}

.block_looked .knopki_card .btn_podrobnee a {
  display: inline-block !important;
}

@media (min-width: 992px) {
  .container.container-2 .item-body {
    min-height: 285px;
    padding-top: 10px;
  }
  .item-body {
    padding: 20px;
  }
}
@media (max-width: 540px) {
  .grid-view .d-flex {
    float: left;
  }
  .block_looked .container-2 .harakteristiki {
    width: 136px !important;
    min-width: 120px;
  }
  .listing-wrap.block_looked .card:last-child {
    padding-right: 15px;
  }
  .block_looked .container-2 h2 {
    margin-top: 5px;
  }
}
.otziv_houzez_spisok .wpd-rating {
  margin: 0 2px;
}

.otziv_houzez_spisok .wpd-rating .wpd-rating-wrap .wpd-rating-value {
  display: none;
}

.otziv_houzez_spisok .wpd-rating .wpd-rating-wrap .wpd-rating-stars {
  margin-top: 0;
}

.listing_block_looked .card_left_and_right .wpd-rating .wpd-rating-wrap .wpd-rating-data {
  width: auto;
}

.listing_block_looked .card_left_and_right .wpd-rating .wpd-rating-wrap .wpd-rating-stars svg {
  width: 21px;
  height: 21px;
}

.otziv_houzez_spisok .wpd-custom-field {
  display: block;
  /*width: 100%*/
}

.block_looked .agency_card .all_card {
  height: 175px;
}

.all_card .item-title, .item-body .item-title {
  font-weight: 700;
}

/* PREFOOTER BLOCK - REG */
/* ------------------------------------------------------------------------ */
.btn-full-width, #houzez-login-btn, #houzez-register-btn {
  width: 100%;
}

.register-form-wrap .form-group-field, .btn-loader {
  position: relative;
}

.register-form-wrap .form-group-field:after {
  position: absolute;
}

.register-form-wrap .form-group-field:after, label {
  display: inline-block;
}

.btn-loader {
  display: none;
}

.btn-loader.loader-show {
  display: inline-block;
}

#add_l_l .add_leads_mail_lawers {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: var(--color-heading);
  border-color: var(--color-heading);
}

#add_l_l .add_leads_mail_lawers:hover, .btn-secondary:hover {
  background-color: var(--color-purple);
  border-color: var(--color-purple);
}

#add_l_l .add_leads_mail_lawers .btn-loader.loader-show {
  position: absolute;
  display: block;
  margin-top: 9px;
  margin-left: -77px;
}

.control__indicator {
  background-color: transparent;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .control__indicator, .form-control .btn {
  background-color: var(--color-white);
}

.register-form-wrap {
  border-radius: var(--radius);
}

.mt-10 {
  margin-top: 10px;
}

.form-tools {
  margin-top: 20px;
}

.register-form-wrap .form-group, .form-tools .control {
  margin-bottom: 0;
}

.form-tools {
  margin-bottom: 20px;
}

.control__indicator {
  top: 0;
}

label {
  font-weight: 600;
}

.control__indicator {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn-loader {
  top: 2px;
  width: 16px;
  height: 16px;
  margin-right: 15px;
}

.btn-loader:after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  margin: 1px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  border-color: var(--white-text) transparent var(--white-text) transparent;
  -webkit-animation: btn-loader 1.2s linear infinite;
  animation: btn-loader 1.2s linear infinite;
}

@-webkit-keyframes btn-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes btn-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
label {
  padding-bottom: 10px;
  margin-bottom: 0;
}

.block_reg_form .form-group-field {
  border: 1px solid var(--color-primary);
  display: flex;
}

.block_reg_form .form-control {
  height: 44px;
  background-color: white;
  color: var(--color-heading);
  border: 0 !important;
}

.block_reg_form .register-form-wrap {
  background: transparent;
}

.block_reg_form input.form-control {
  flex: 1 1 100%;
  padding: 0 15px;
}

.form-control .btn {
  border: 1px solid;
  border-color: var(--border-default);
}

.control {
  color: #a1a7a8;
  min-height: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.control__indicator {
  border: 1px solid var(--border-default);
  border-radius: 2px;
}

.control--checkbox .control__indicator::after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
}

input[type=checkbox] {
  margin: 6px 0 0;
}

.register-form-wrap .form-group-field:after {
  font-family: "houzez-iconfont";
  color: #636363;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
}

.block_reg .row {
  align-items: center;
}

.bootstrap-select .dropdown-toggle::after {
  font-family: "harant-icons";
  border-style: none;
}

.bootstrap-select .dropdown-toggle::after {
  content: "\e905";
  font-size: 18px;
  font-weight: 300;
}

.bootstrap-select > .dropdown-toggle:after {
  margin-top: 1px;
}

.bootstrap-select .dropdown-menu.inner:not(.register-select) {
  text-transform: none;
}

.bootstrap-select .btn {
  font-weight: 400;
  border-radius: var(--radius);
}

#id_login {
  font-size: 10px;
  line-height: 1.1;
  margin-top: 10px;
}

#id_login p {
  padding: 0 0 0 18px;
}

#id_login input {
  display: none;
}

#id_login label {
  height: 12px;
  width: 12px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  background-color: var(--color-white);
  border-radius: 2px;
  margin: 2px 0 0 0;
  padding: 0;
}

#id_login label._error {
  background: #ff001b;
}

#id_login input[type=checkbox]:checked + label:before {
  content: "\e91a";
  font-family: "Harant-icons" !important;
  position: absolute;
  top: -1px;
  left: 2px;
  font-size: 14px;
  color: var(--color-heading);
  font-weight: 100;
}

.form-tools .i_agree {
  font-size: 10px;
  line-height: 1.1;
}

@media (max-width: 992px) {
  #id_login {
    font-size: 10px;
  }
}
.lending-option-urist {
  display: none !important;
}

.block_reg {
  background: var(--gradient-brand-panel);
  margin-top: 15px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.block-reg-wrap .container {
  padding: 0px;
}

.block-reg-wrap .container .block_reg {
  padding: 20px 20px 20px 40px;
  height: 127px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
  flex-direction: row;
}

.block_reg .block_reg__logo {
  display: flex;
  align-content: center;
}

.block_reg .block-reg__right .btn-mob-name {
  display: none;
}

.block_reg .block-reg__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.block_reg .block-reg__left {
  padding: 0px;
  text-align: left;
  flex: 0 0 46%;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 100%;
}

.block_reg .block-reg__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.block_reg .block-reg__left {
  display: flex;
  justify-content: start;
  flex-direction: row;
}

.block_reg .block-reg__left .block_reg__logo img {
  width: 59px;
  margin-right: 9px;
  height: auto;
  margin: auto;
  margin-right: 15px;
}

.block_reg .block-reg__left .block_reg__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .block_reg .block-reg__left {
    flex-direction: row-reverse;
  }
  .block_reg .block-reg__left .block_reg__logo img {
    margin-right: 0px;
    margin-left: 10px;
    margin-top: 0;
  }
}
.block_reg .block-reg__right .wrap-button-1 {
  margin-left: 15px;
}

.block_reg .block-reg__description {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
}

.block_reg .block-reg__description span {
  color: var(--color-primary);
}

@media (max-width: 992px) {
  .block_reg .block-reg__title {
    font-size: 24px;
  }
  .block_reg .reg__description {
    font-size: 16px;
  }
  .block_reg .block-reg__right svg {
    display: none;
  }
  .block_reg .block-reg__right .btn-mob-name {
    display: block;
    color: var(--white-text);
  }
  .block-reg-wrap .container .block_reg {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
  }
  .form-group-field input {
    padding: 0 15px;
    width: calc(100% - 30px);
  }
  .block-reg-wrap .container .block_reg {
    height: 247px;
    padding: 19px;
    margin: 19px;
  }
  .block_reg_form .form-register-1 {
    flex-direction: column;
    gap: 10px;
  }
  .block_reg .block-reg__description {
    margin-bottom: 12px;
    line-height: 125%;
  }
  .block_reg .block-reg__title {
    margin-bottom: 10px;
  }
  .block_reg_form .form-control {
    height: 37px;
  }
  .block_reg .block-reg__right .wrap-button-1 {
    margin-left: 0px;
    margin-top: 20px;
  }
  .block_reg .block-reg__left {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.block_reg_form {
  position: relative;
}

.block_reg_form .form-tools {
  display: none;
}

.block_reg_form .form-register-1 {
  display: flex;
  justify-content: space-between;
}

.block_reg_form .input-register-1 {
  width: 450px;
  margin-top: 10px;
  margin-right: 0px;
  height: 44px;
}

.block_reg_form .wrap-button-1 button {
  background: var(--color-button);
  color: var(--color-heading);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--white-text);
  border: none;
  width: 81px;
  height: 44px;
}

.block_reg_form .wrap-button-1 button:hover {
  background-color: var(--hover-button) !important;
}

.block_reg_form #hz-register-messages-footer {
  position: absolute;
  top: -80px;
}

.block-reg-wrap .block_reg #log_recap_form_2 {
  position: absolute;
  bottom: -97px;
}

@media (max-width: 992px) {
  .block_reg_form .wrap-button-1 button {
    width: 100%;
    height: 37px;
    margin: 0px;
  }
  .block_reg_form .input-register-1 {
    width: 100%;
    height: 37px;
  }
  .block_reg .block-reg__right {
    padding: 0px;
  }
  .block_reg_form #hz-register-messages-footer {
    top: -97px;
  }
}
.block_reg_form #id_login span {
  cursor: pointer;
}

.block_reg_form #id_login span:hover {
  color: var(--color-link-brand);
}

.block_reg_form #id_login {
  font-size: 10px;
  color: #ACACAC;
  float: left;
  text-align: left;
}

.block_reg_form #id_login a {
  color: #ACACAC;
  font-size: 10px;
}

.block_reg_form #id_login a:hover {
  text-decoration: underline;
}

@media (max-width: 540px) {
  .block_reg_form #id_login {
    max-width: 100%;
    margin-top: 8px;
  }
  .block_reg_form .register-form-wrap .form-group-field input {
    padding-left: 15px;
  }
  .block_reg_form .form-register-1 {
    flex-direction: column;
    gap: 20px;
  }
  .block_reg_form .wrap-button-1 {
    width: 100%;
  }
}
button {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* AFTERFOOTER MODAL - overlay-search-advanced-module */
/* ------------------------------------------------------------------------ */
.overlay-search-advanced-module {
  width: 100%;
}

.overlay-search-advanced-module {
  height: 100%;
}

.auto-complete, .overlay-search-module-close {
  position: absolute;
}

.overlay-search-advanced-module {
  position: fixed;
}

.ui-slider-horizontal .ui-slider-handle:after {
  display: block;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .form-control .btn {
  background-color: var(--color-white);
}

.ui-slider-horizontal .ui-slider-range {
  border: 0;
}

.overlay-search-advanced-module .range-text, .overlay-search-advanced-module {
  left: 0;
}

.overlay-search-advanced-module .range-text, .overlay-search-advanced-module {
  top: 0;
}

.overlay-search-advanced-module.open, .overlay-search-advanced-module {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.bootstrap-select .filter-option-inner {
  line-height: 40px;
}

.sort-by .bootstrap-select .dropdown-toggle::after,
.sort-by .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: #858585;
}

.overlay-search-advanced-module {
  visibility: hidden;
  overflow-y: scroll;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-overflow-scrolling: touch;
  z-index: 9;
  padding: 15px 20px;
}

.overlay-search-advanced-module.open {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index: 12;
  margin-top: 57px;
}

.overlay-search-advanced-module .row {
  margin-right: -5px;
  margin-left: -5px;
}

.overlay-search-advanced-module .row div[class^=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.overlay-search-advanced-module .form-group {
  margin-bottom: 10px;
}

.overlay-search-advanced-module .search-title {
  font-size: 18px;
  font-weight: 500;
  padding: 5px 5px 20px;
}

.overlay-search-module-close {
  top: 8px;
  right: 3px;
  width: auto;
  background: none;
}

.overlay-search-advanced-module .range-text {
  padding-top: 15px;
  text-align: center;
}

.overlay-search-advanced-module .price-range-wrap {
  padding: 0 0 30px;
}

.overlay-search-advanced-module .ui-slider-horizontal {
  height: 48px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 25px;
}

.overlay-search-advanced-module .ui-slider-horizontal .ui-slider-range {
  top: 50%;
}

.overlay-search-advanced-module .ui-slider .ui-slider-handle {
  top: -1px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-left: -24px;
  border-radius: 25px;
}

.overlay-search-advanced-module .ui-slider .ui-slider-handle:first-of-type {
  margin-left: -25px;
}

@media (max-width: 991.98px) {
  .overlay-search-advanced-module .ui-slider .ui-slider-handle {
    top: -21px;
  }
}
:not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}

.bootstrap-select:not(.input-group-btn), .bootstrap-select[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.bootstrap-select {
  width: 220px;
  vertical-align: middle;
}

.range-text.onl {
  margin-top: 20px;
}

.range-text.onl .form-control {
  height: 32px;
}

.range-text.onl .form-control label {
  font-weight: 100;
}

.price-range-wrap {
  padding: 0 6px;
}

.price-range-wrap {
  padding-bottom: 0;
}

.range-text {
  margin-bottom: 20px;
}

.range-title, .min-price-range, .max-price-range {
  font-weight: 500;
}

.auto-complete {
  z-index: 7;
  min-width: 450px;
  padding-top: 5px;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .auto-complete {
    min-width: 100%;
    width: 100%;
  }
}
.sort-by-title {
  white-space: nowrap;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .sort-by {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.sort-by .filter-option {
  margin-right: 5px;
  margin-left: 5px;
}

.sort-by .bootstrap-select .dropdown-menu {
  min-width: 100%;
}

.sort-by .form-control, .sort-by .btn-light.dropdown-toggle {
  padding: 0 2px;
  border-color: transparent !important;
  background-color: transparent !important;
}

.ui-slider-horizontal .ui-slider-range, .ui-state-default, .ui-widget-content .ui-state-default {
  background: var(--color-white);
  border: 1px solid var(--border-default);
}

.ui-widget.ui-widget-content {
  height: 9px;
}

.ui-slider-horizontal .ui-slider-handle {
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: -11px;
  text-align: center;
  border-radius: var(--radius);
}

.ui-slider-horizontal .ui-slider-handle:after {
  font-size: 11px;
  content: "\e92d";
  font-family: "houzez-iconfont";
  top: -1px;
  left: -1px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ui-slider-horizontal .ui-slider-handle:hover {
  cursor: pointer;
}

@media (min-width: 992px) {
  .ui-slider-horizontal .ui-slider-handle:last-of-type {
    margin-left: -22px;
  }
}
.ui-slider-horizontal {
  height: 5px;
}

.ui-slider-horizontal .ui-slider-range {
  height: 3px;
  top: 0;
  border: 0;
}

.ui-widget.ui-widget-content {
  border: 1px solid var(--border-default);
}

@media (min-width: 992px) {
  .btn-search {
    border: var(--color-gray);
    background-color: var(--color-white);
    color: var(--color-heading);
  }
  .btn-search:hover, .btn-search:active, .btn-search:target, .btn-search:focus, .btn-search:not(:disabled):not(.disabled):active:focus, .btn-search:focus-visible, .btn-search:not(:disabled):not(:disabled):active {
    background-color: var(--color-gray);
    border: 1px solid var(--color-gray);
    color: var(--color-heading);
    box-shadow: none;
  }
  .primer-header-region-1 {
    border: 1px solid var(--color-white);
    width: 100%;
  }
}
.btn-secondary {
  color: var(--white-text);
  background-color: var(--color-button);
  border-color: var(--color-button);
  border-radius: var(--radius);
}

.btn-search {
  border: 1px solid var(--color-gray);
  background-color: var(--color-white);
  border-radius: var(--radius);
  color: var(--color-heading);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search .harant-icon {
  margin: 1px 6px 0 0;
}

@media (max-width: 992px) {
  #overlay-search-advanced-module .search-title {
    width: 50%;
  }
  #desktop-header-search {
    display: none;
  }
}
.sort-by .dropdown {
  z-index: 3;
}

/*start header/header-mobile.php*/
.header-mobile-right.with-notification {
  display: flex;
  flex-direction: row-reverse;
}

.header-mobile-right.with-notification .notification-wrap .notification-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: -6px;
  border: 1px solid var(--color-heading);
  color: var(--color-heading);
  border-radius: 11px;
  width: 17px;
  height: 17px;
  background-color: var(--color-white);
  font-size: 11px;
}

.header-mobile-right.with-notification a {
  position: relative;
  margin: auto;
  padding-top: 8px;
}

.header-mobile-right.with-notification .notification-wrap {
  font-size: 20px;
  margin: auto;
}

.header-mobile-right .img-fluid.avatar_lawyer {
  border: 1px solid black;
}

/*end header/header-mobile.php*/
/*looked slider*/
h2 {
  margin-bottom: 30px;
}

.best h2 {
  margin-bottom: 30px;
  margin-top: 120px;
  font-size: 30px;
  line-height: 28px;
  color: var(--color-heading);
  font-weight: 600;
}

#avatar-video .modal-dialog {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 670px;
}

#avatar-video .modal-content {
  background: none;
  border: none;
}

#avatar-video .modal-body {
  max-height: 390px;
  overflow: hidden;
  max-width: 100%;
}

#avatar-video .modal-body iframe {
  max-width: 100%;
  height: auto;
  min-height: 350px;
}

#avatar-video .modal-content .close {
  color: var(--white-text);
  opacity: 1;
  font-size: 33px;
  font-weight: 300;
  text-align: right;
  margin-right: 15px;
}

.slick-prev.slick-disabled, .slick-next.slick-disabled {
  display: none !important;
}

.carousel .card_jurist .b-circle-line.op_have_video {
  border: 2px solid #9b9b9b;
}

.carousel .card_jurist .b-circle-line {
  position: absolute;
  left: 1px;
  top: -5px;
  width: 90px;
  height: 90px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
}

.carousel {
  scrollbar-width: none;
  position: relative;
}

.carousel .slick-arrow {
  width: 35px;
  height: 35px;
  background-color: var(--color-bg-tint-purple);
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  z-index: 2;
}

.carousel .slick-arrow::before {
  display: none;
}

.carousel .slick-arrow:hover {
  background-color: #DCDDEA;
}

.carousel .slick-arrow.slick-prev {
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
}

.carousel .slick-arrow.slick-next {
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
}

.carousel .slick-arrow.slick-prev:before, .carousel .slick-arrow.slick-next:before {
  position: absolute;
  content: "";
  font-family: "harant-icons";
  top: -1px;
  bottom: 0;
  left: 15px;
  right: 0;
  font-size: 22px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel .slick-arrow.slick-prev:before {
  content: "\e906";
}

.carousel .slick-arrow.slick-next:before {
  content: "\e907";
}

.item_carousel {
  /*padding-bottom: 10px;*/
}

.carousel .slick-slide {
  margin: 0 5px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  flex-direction: column;
}

.carousel .card_jurist {
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 9px;
  padding: 16px 15px 106px;
  position: relative;
  height: auto;
  flex: 1 1 auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.carousel .head_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 5px;
  position: relative;
}

.carousel .bottom_card {
  width: 100%;
  padding: 0 16px 15px;
  position: absolute;
  left: 0;
  bottom: 0;
}

img.emoji {
  width: 20px;
  display: inline-block;
  padding: 0 5px;
}

.carousel .item-header.info_card {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 10px;
  position: unset;
}

.carousel .photo_card {
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 13px;
  border: 1px solid #d5d5d5;
  position: relative;
}

.carousel.carousel_articles .avatar-wrap__pub, .splide.publicationSplide .avatar-wrap__pub {
  width: 51px;
  position: relative;
  margin-right: 12px;
}

.carousel.carousel_articles .jurist_articles .photo_jurist, .splide.publicationSplide .avatar-pub {
  margin-right: 0;
  width: auto;
  height: auto;
}

.carousel.carousel_articles .photo_card, .splide.publicationSplide .photo_card {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 0;
  z-index: 2;
  position: relative;
}

.carousel.carousel_articles .photo_jurist .b-circle-line, .splide.publicationSplide .avatar-pub .b-circle-line {
  position: absolute;
  left: 0px;
  top: -5px;
  width: 51px;
  height: 51px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.carousel.carousel_articles .avatar-pub .b-circle-line {
  position: absolute;
  top: -3px;
  left: 1px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.splide.publicationSplide .avatar-pub .b-circle-line {
  top: -4px;
  width: 52px;
  height: 52px;
}

.carousel .photo_card img {
  display: block;
  object-fit: cover;
  min-height: 100%;
  width: 100%;
  border-radius: 50%;
}

.not_star {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 115%;
  color: var(--color-secondary);
  text-align: center;
  margin: 0px 3px;
}

.carousel .review_card {
  width: 92px;
  height: 24px;
  background: var(--color-warning-light);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-text-primary);
  text-align: center;
  padding: 0 3px;
  margin: 0 auto;
}

.carousel .rating_card {
  width: auto;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-white);
  position: absolute;
  top: -17px;
  right: -5px;
  z-index: 9;
}

.carousel .harant_market .rating_card {
  top: -18px;
}

.carousel .rating_card span {
  display: block;
  background: var(--color-success);
  color: var(--white-text);
  font-size: 16px;
  text-align: center;
  width: 36px;
  line-height: 42px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}

.carousel .review_card .review_star {
  position: relative;
  padding-left: 16px;
}

.carousel .review_card .review_star::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%2214%22%20fill%3D%22none%22%20viewBox%3D%220%200%2013%2014%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_919_240%29%22%3E%3Cpath%20fill%3D%22%23f2c94c%22%20d%3D%22M12.276%206.883a.802.802%200%200%200-.466-1.445l-3.25-.122a.08.08%200%200%201-.072-.055L7.365%202.228a.802.802%200%200%200-1.506%200L4.74%205.272a.08.08%200%200%201-.072.054l-3.25.123a.802.802%200%200%200-.465%201.445l2.55%202.004a.08.08%200%200%201%20.028.086l-.878%203.11a.802.802%200%200%200%201.221.884l2.694-1.805a.08.08%200%200%201%20.09%200l2.694%201.805a.795.795%200%200%200%201.208-.385.8.8%200%200%200%20.013-.481l-.885-3.12a.08.08%200%200%201%20.029-.087z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_919_240%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%20.823h13v13H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E") no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.item_carousel.carousel_butt, .card_articles.carousel_butt {
  max-width: 300px;
  padding: 0;
}

.carousel_butt > div {
  padding: 0 !important;
}

.carousel_butt a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.carousel_butt a:after {
  content: "\e907";
  width: 12px;
  height: 12px;
  font-family: "Harant-icons" !important;
  margin-left: 7px;
}

.card_articles.carousel_butt {
  display: flex;
}

@media (max-width: 768px) {
  .item_carousel.carousel_butt {
    max-width: 220px !important;
  }
}
body .review_card.grey_half {
  background: var(--color-blend);
}

body .review_card.golden_half .review_star::before {
  background: url(../img/golden-half-star.svg) no-repeat;
}

body .review_card.grey_half .review_star::before {
  background: url(../img/grey-half-star.svg) no-repeat;
}

.carousel .text_card {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.carousel .profession_card {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-ptag);
}

.carousel .name_card.item-title a {
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: var(--color-heading);
  background: var(--color-white);
  z-index: 1;
  position: relative;
  display: contents;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.carousel .name_card.item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: var(--color-heading);
  margin-bottom: 5px;
  text-decoration: none;
  position: relative;
  display: block;
  margin-right: 40px;
  overflow: visible;
}

.block_looked .carousel .name_card.item-title {
  padding-right: 20px;
}

.carousel .name_card .verification {
  padding-right: 20px;
  position: absolute;
  bottom: 0;
}

.carousel .info_verification {
  width: 176px;
  display: inline-block;
  position: absolute;
  background: var(--color-success);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-white);
  text-align: center;
  padding: 6px;
  bottom: 100%;
  right: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: fit-content;
  top: -45px;
}

.carousel .name_card .verification::after {
  content: "\e91a";
  width: 14px;
  height: 14px;
  font-family: "harant-icons";
  position: absolute;
  right: -6px;
  bottom: 4px;
  color: green;
  line-height: 1;
  font-size: 16px;
  background: none;
}

.carousel .name_card .verification.market::after {
  bottom: 1px;
}

.carousel .name_card .verification:hover .info_verification {
  opacity: 1;
  z-index: 5;
}

.carousel .tags_card {
  padding: 0;
  margin: 0;
  min-height: 70px;
}

.carousel .tags_card li {
  list-style-type: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 155%;
  color: var(--color-ptag);
  position: relative;
  padding-left: 20px;
  margin-bottom: 2px;
}

.carousel .tags_card li:before {
  font-family: "harant-icons";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0px;
  left: 0;
  color: #8B919F;
  font-weight: 100;
  font-size: 14px;
}

.carousel .tags_card .tag_city:before {
  content: "\e96c";
}

.carousel .tags_card .tag_experience:before {
  content: "\e932";
}

.carousel .tags_card .tag_work:before {
  content: "\e96f";
}

.carousel .description_card {
  font-size: 14px;
  line-height: 1.3em;
  color: var(--color-ptag);
  padding-bottom: 10px;
  overflow: hidden;
}

.carousel.carousel_looked .description_card {
  padding-bottom: 10px;
}

.carousel .bottom_card {
  width: 100%;
  padding: 0 16px 15px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.item-header.info_card div.info_reiting,
.item-header.info_card .info_reiting, .info_reiting {
  border: 1px solid var(--color-gray);
  border-radius: 9px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  color: var(--color-gray);
  opacity: 0;
  padding: 15px;
  width: 100%;
  z-index: 10;
  top: 35px;
  display: none;
  background-color: var(--color-white);
  position: absolute;
}

.carousel_looked .card_jurist .info_card div.info_reiting,
.carousel_looked .card_jurist .info_card .info_reiting {
  top: 30px;
}

.item-header.info_card .rating_card:hover ~ div.info_reiting,
.item-header.info_card .rating_card:hover ~ .info_reiting {
  display: block;
  opacity: 1;
}

.item-header.info_card div.info_reiting .tooltip_reiting_title,
.item-header.info_card .info_reiting .tooltip_reiting_title, .info_reiting .tooltip_reiting_title {
  color: var(--color-heading);
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}

.item-header.info_card div.info_reiting .rating-bars,
.item-header.info_card .info_reiting .rating-bars {
  margin: 10px 0;
}

.item-header.info_card div.info_reiting .rating-bars > div,
.item-header.info_card .info_reiting .rating-bars > div {
  border-radius: var(--radius);
}

.item-header.info_card div.info_reiting .rating-bars .rating-bar.bar_card,
.item-header.info_card .info_reiting .rating-bars .rating-bar.bar_card {
  background-color: var(--color-success);
}

.item-header.info_card div.info_reiting .rating-bars .rating-bar.bar_rel,
.item-header.info_card .info_reiting .rating-bars .rating-bar.bar_rel {
  background-color: #3B51FF;
}

.item-header.info_card div.info_reiting .rating-bars .rating-bar.bar_exp,
.item-header.info_card .info_reiting .rating-bars .rating-bar.bar_exp {
  background-color: var(--color-warning);
}

.item-header.info_card div.info_reiting .rating-bars .bar_card_back,
.item-header.info_card .info_reiting .rating-bars .bar_card_back {
  background-color: #C8FFC6;
}

.item-header.info_card div.info_reiting .rating-bars .bar_rel_back,
.item-header.info_card .info_reiting .rating-bars .bar_rel_back {
  background-color: #E7EDFF;
}

.item-header.info_card div.info_reiting .rating-bars .bar_exp_back,
.item-header.info_card .info_reiting .rating-bars .bar_exp_back {
  background-color: var(--color-warning-light);
}

.item-header.info_card div.info_reiting .rating-bars .rating-bar,
.item-header.info_card .info_reiting .rating-bars .rating-bar {
  border-radius: var(--radius);
  height: 20px;
}

.item-header.info_card div.info_reiting .rating-bars .ratig-bar-desc,
.item-header.info_card .info_reiting .rating-bars .ratig-bar-desc {
  color: var(--color-muted-alt);
  height: 30px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
}

.item-header.info_card div.info_reiting .rating-bars .ratig-bar-desc b,
.item-header.info_card .info_reiting .rating-bars .ratig-bar-desc b {
  color: var(--color-heading);
  margin-left: 5px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}

.info_reiting {
  max-width: 320px;
}

.rating-desc dt {
  color: var(--color-heading);
  font-weight: 300;
}

.rating-desc dd {
  color: var(--color-ptag);
  font-weight: 100;
  line-height: 1.2;
  font-size: 12px;
}

.splide__list .info_reiting .rating-desc {
  display: none;
}

.carousel .advan_card {
  padding: 0;
  margin: 0 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-height: 4.5em;
  overflow: hidden;
}

.carousel .advan_card li {
  list-style-type: none;
  font-size: 14px;
  line-height: 1.3em;
  color: var(--color-ptag);
  padding-left: 16px;
  margin-right: 13px;
  position: relative;
}

.carousel .advan_card li::before {
  content: "\e91a";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 4px;
  left: 0;
  font-family: "harant-icons";
  font-size: 12px;
  line-height: 1;
}

.carousel .buttons_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.carousel .buttons_card .btn {
  width: 115px;
  height: var(--but-card-height);
  line-height: 34px;
  margin-left: 0;
  margin-right: 5px;
  color: var(--white-text);
  border-color: var(--but-card-border-color);
  background: var(--color-button);
  border-radius: var(--but-card-radius);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.carousel .buttons_card .btn_whatsapp {
  margin-right: 5px;
}

.single-pub__content .carousel .buttons_card .btn {
  width: 115px;
}

.carousel .hide-on-click, .carousel .show-on-click a, .carousel .btn:focus .show-on-click a {
  color: var(--color-white);
  font-size: 14px;
}

.carousel .buttons_card .btn:not(.not_phone):hover {
  background: var(--but-card-hover-bg);
  color: var(--color-white);
}

.carousel .buttons_card .btn:not(.not_phone):focus, .carousel .buttons_card .btn:not(.not_phone):active {
  color: var(--color-white);
  background-color: var(--color-footerBg);
  border-color: var(--color-footerBg);
}

.carousel .btn.btn_light {
  border: 1px solid var(--color-gray);
  background: transparent !important;
  color: var(--color-footerBg) !important;
  line-height: 32px;
  padding: 0;
}

.carousel .btn.btn_light:hover {
  background: var(--color-gray) !important;
  color: var(--color-footerBg) !important;
  text-decoration: none;
}

.carousel .buttons_card .btn_whatsapp, .carousel .buttons_card .btn_site, .carousel .buttons_card .btn_teleg, .carousel .buttons_card .btn_vk {
  width: 38px;
  height: var(--but-card-height);
  border: 1px solid var(--color-gray);
  border-radius: var(--but-card-radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.carousel .buttons_card .btn_whatsapp:hover {
  background: var(--color-bg-success-light);
}

.carousel_looked .slick-list.draggable .slick-track, .breadcrumb li {
  display: flex;
}

@media only screen and (min-width: 991px) {
  .carousel_looked.not_three .slick-track {
    margin-left: unset;
  }
}
@media only screen and (max-width: 1366px) {
  .carousel .card_jurist .b-circle-line {
    left: 6px;
    width: 80px;
    height: 80px;
  }
  .form_callback .photo_form a {
    width: 54px;
    height: 54px;
  }
  .form_callback form button.btn {
    font-size: 14px;
    width: 144px;
    height: 44px;
    line-height: 44px;
  }
  .breadcrumbs,
  .breadcrumb {
    margin: 15px 0 20px;
    max-height: 20px;
    overflow: hidden;
  }
  .breadcrumbs li,
  .breadcrumb li {
    font-size: 14px;
  }
  .breadcrumbs li a, .breadcrumb li a {
    padding-right: 0px;
  }
  .breadcrumbs li a::after, .breadcrumb li a::after {
    width: 12px;
    height: 12px;
    background-size: 100%;
    top: 2px;
  }
  .publication {
    margin-bottom: 75px;
  }
  .publication h2 {
    margin-bottom: 20px;
  }
  .card_articles {
    border-width: 1px;
  }
  .text_articles {
    padding-top: 7px;
    padding-bottom: 15px;
  }
  .title_articles {
    font-size: 20px;
    line-height: 24px;
    height: 48px;
  }
  .jurist_articles {
    margin-bottom: 23px;
  }
  .jurist_articles .tag_jurist li {
    font-size: 12px;
    line-height: 14px;
    padding-right: 9px;
    margin-right: 6px;
  }
  .info_articles {
    font-size: 12px;
    line-height: 14px;
  }
  .info_articles > div {
    margin-right: 6px;
  }
  .nav_articles > div {
    margin-left: 10px;
  }
  .carousel .category_jurist {
    font-size: 14px;
    line-height: 17px;
  }
  .carousel .info_card {
    margin-right: 0;
  }
  .carousel .photo_card {
    width: 70px;
    height: 70px;
    margin-bottom: 21px;
  }
  .carousel .rating_card {
    width: 34px;
    height: 21px;
    line-height: 21px;
  }
  .carousel .profession_card {
    margin: 3px 0 5px;
  }
  .carousel .name_card.item-title {
    font-size: 16px;
    line-height: 19px;
    margin-right: 0;
  }
  .carousel .name_card .verification {
    padding-right: 16px;
  }
  .name_card .verification::after {
    bottom: 1px;
  }
  .carousel .description_card {
    font-size: 12px;
  }
  .carousel .advan_card {
    margin-bottom: 18px;
  }
  .carousel .advan_card li {
    font-size: 12px;
    padding-left: 12px;
  }
  .carousel .advan_card li::before {
    width: 10px;
    height: 10px;
  }
  .carousel .buttons_card .btn {
    margin-right: 3px;
  }
  .carousel .buttons_card .btn_whatsapp {
    margin-right: 3px;
  }
  .carousel .buttons_card .btn svg {
    width: 14px;
    height: 14px;
    margin-right: 2px;
  }
  .carousel .buttons_card .btn_whatsapp, .carousel .buttons_card .btn_site, .carousel .buttons_card .btn_teleg, .carousel .buttons_card .btn_vk {
    width: 34px;
  }
}
@media only screen and (max-width: 650px) {
  .carousel .buttons_card .btn {
    width: 102px;
  }
}
/*market labal*/
.verification.market .info_market {
  opacity: 0;
  z-index: -1;
  /*width: 0;*/
}

.verification.market:hover .info_market {
  opacity: 1;
  z-index: 99;
  /*width: 210px;*/
  visibility: visible !important;
}

body .name_card .verification.market .info_market, body .name-feed__wrap .verification.market .info_market {
  background: var(--color-white);
  box-shadow: -1px 2px 5px var(--color-border-muted);
  display: block;
  padding: 5px 10px;
  border-radius: 9px;
  border: 1px solid var(--color-gray);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
  transform: translate(20px, 0px);
  visibility: hidden;
  width: 210px;
  bottom: 0;
  white-space: normal;
  transform: translate(-200px, 20px);
}

body .name_card .verification.market .info_market .info_market_title, body .name-feed__wrap .verification.market .info_market .info_market_title {
  color: var(--color-success);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

body .name_card .verification.market .info_market .info_market_body, body .name-feed__wrap .verification.market .info_market .info_market_body {
  color: #9297A3;
  font-size: 12px;
  line-height: 1.3;
  display: inline-block;
  font-weight: 300;
}

body .name_card .verification.market .info_market .label_market_href, body .name-feed__wrap .verification.market .info_market .label_market_href {
  color: #007bff;
  font-size: 12px;
  line-height: 1.3;
  display: inline-block;
  font-weight: 700;
  cursor: pointer;
}

body .name_card .verification.market .info_market .label_market_href:hover, body .name-feed__wrap .verification.marke .info_market .label_market_href:hover {
  text-decoration: underline;
}

body .name_card .verification.market:after, body .name-feed__wrap .verification.mark:after {
  content: "\e915";
  width: 21px;
  height: 21px;
  right: -10px;
  padding-top: 1px;
  padding-right: 1px;
  padding-left: 4px;
  font-family: "harant-icons";
  line-height: 1;
  color: green;
  background: var(--color-bg-success-light);
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -1px;
  border-radius: var(--radius);
  font-weight: 500;
}

.box_before_avatar {
  position: absolute;
  top: calc(50% - 15px);
  left: 0px;
  z-index: -1;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 5px;
  padding: 0;
  /*display: none;*/
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.box_before_avatar span:hover {
  background-color: var(--color-bg-tint-blue) !important;
}

.other_jurist .box_before_avatar {
  z-index: 3;
}

.other_jurist .photo_card:hover + .box_before_avatar,
.other_jurist .box_before_avatar:hover,
.other_jurist .photo_card.active + .box_before_avatar,
.carousel .card_jurist .photo_card:hover + .box_before_avatar,
.carousel .card_jurist .box_before_avatar:hover,
.carousel .card_jurist .photo_card.active + .box_before_avatar {
  top: calc(50% - 15px);
  /*display: flex;*/
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* -webkit-animation: show_avatar .3s 1;
   animation: show_avatar .3s 1; */
  animation-fill-mode: forwards;
}

.other_jurist .box_before_avatar .look_img,
.carousel .card_jurist .look_img,
.other_jurist .card_jurist .look_video,
.carousel .card_jurist .look_video {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-blend);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  position: relative;
}

@keyframes show_avatar {
  0% {
    transform: translate3d(0px, -30px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
  }
}
.look_img:before, .look_video:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: "harant-icons";
  line-height: 1;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.look_img:before {
  content: "\e980";
}

.look_video:before {
  content: "\e900";
}

.block-reg-wrap {
  margin-top: 80px;
}

@media only screen and (max-width: 1100px) {
  .jurist_search .name_card .verification.market .info_market {
    transform: translate(-207px, 0px);
  }
  #propertyphone {
    padding: 10px;
  }
  #propertyphone .modal-dialog {
    margin: 0 auto;
  }
}
/*end market labal*/
@media (max-width: 540px) {
  .carousel .tags_card li {
    font-size: 12px;
  }
  .block_reg .block-reg__right .wrap-button-1 {
    margin-left: 0px;
    margin-top: 5px;
  }
  .block_reg_form .form-register-1 {
    gap: 12px;
  }
  .block-reg-wrap .container .block_reg {
    height: 270px;
  }
  #propertyphone .property-modal-message-title {
    line-height: 1.3;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .propertyphone a {
    font-size: 24px;
  }
  .propertyphone #propertycopy svg {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
  }
  #propertyphone .button-wrap .button-text {
    margin-top: 20px;
  }
  #propertyphone .button-inner-wrap > button {
    width: 96px;
    padding: 12px 0;
  }
  .propertyinfo span, #propertyphone .button-wrap .button-text {
    font-size: 14px;
    max-width: 215px;
  }
}
.cases_top {
  padding: 0;
  margin: 2px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  scrollbar-width: none;
}

.cases_top a,
.cases_top div {
  list-style-type: none;
  font-size: 14px;
  line-height: 160.9%;
  color: var(--color-text-primary);
  padding: 2px 15px;
  border-radius: 26px;
  margin-right: 6px;
  flex-shrink: 0;
  background: var(--color-blend);
}

.cases_top a:hover,
.cases_top div:hover, .cases_top div:hover a {
  background: #EAEBF6;
}

.cases_top div,
.cases_top a,
.cases_top div a {
  font-family: var(--font-family);
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

#wpdiscuz-loading-bar {
  z-index: 2;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (min-width: 960px) {
  .cases_top::-webkit-scrollbar {
    height: 0px;
    width: 7px;
  }
  .cases_top::-webkit-scrollbar-track {
    background: var(--color-blend);
  }
  .cases_top::-webkit-scrollbar-thumb {
    background-color: var(--color-footerBg);
  }
}
@media only screen and (max-width: 650px) {
  .cases_top {
    margin-top: 2px;
  }
  body h2, body .best h2, body .publication h2 {
    margin-bottom: 20px;
    margin-top: 50px;
    font-size: 21px;
    line-height: 25px;
  }
}
.hrf_my_questions_btn a {
  display: contents;
}

.hrf_my_questions_btn {
  position: fixed;
  height: 57px;
  bottom: 20px;
  right: 87px;
  display: flex;
  width: 120px;
  padding: 13px 15px 14px 15px;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  border-radius: 50px;
  background: var(--color-success);
  z-index: 10;
}

.hrf_my_questions_btn_icon {
  width: 26px;
  height: 26px;
  margin-bottom: 2px;
}

.hrf_my_questions_btn_text {
  color: var(--white-text);
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 110%;
}

@media (max-width: 768px) {
  .hrf_my_questions_btn.min-rigth {
    right: 20px;
  }
}
/* slide public blog */
.publications-carousel {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wrapper.publications-carousel {
  margin: 0 auto;
}

.publications-carousel p {
  margin-bottom: 0;
}

.publications-carousel .plide__title, .publications-carousel h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-family);
  margin-bottom: 30px;
  color: var(--color-hTag);
}

.publications-carousel .publications-carousel__inner {
  margin-top: 0px;
}

.publications-carousel .splide, .publications-carousel .splide__slide {
  position: relative;
  outline: none;
  visibility: visible;
}

.publications-carousel .publications-carousel__inner .splide__track {
  padding: 0px;
}

.splide .splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide .splide__list, .publications-carousel .splide.is-active .splide__list {
  display: flex;
  margin: 0px 0 !important;
  padding: 2px 0 !important;
  width: -webkit-max-content;
  width: max-content;
  will-change: transform;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide .splide__list .splide__slide:focus-visible, .splide .splide__list .splide__slide div:focus-visible {
  outline: none;
}

.publications-carousel .splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  user-select: none;
}

.publications-carousel .splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}

.splide__slide .item_carousel {
  max-width: 358px;
  height: 100%;
  min-width: 320px;
}

.publications-carousel .publication-carts__item {
  max-width: 358px;
  width: 100%;
  height: 400px;
  background: var(--color-white);
  box-shadow: none;
  border-radius: var(--radius);
  position: relative;
  margin-bottom: 2px;
  margin-top: 2px;
  min-width: 315px;
}

.publications-carousel .publication-carts__item__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid var(--color-gray);
  border-radius: 9px;
}

.publications-carousel .publication-carts__item__inner .short-title-wrap {
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 2px 9px;
  border-radius: var(--radius-sm);
  background: linear-gradient(265.88deg, #EEF7FB 0%, var(--color-blend) 100%);
}

.publications-carousel .publication-carts__item__inner .short-title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-hTag);
}

.publications-carousel .publication-carts__item__inner a {
  display: block;
  font-weight: 700;
  color: var(--color-heading);
}

.publications-carousel .publications-item__image {
  max-width: 445px;
  width: 100%;
  height: 187px;
}

.publications-carousel .splide__slide img {
  vertical-align: bottom;
}

.publications-carousel .publications-item__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.publications-carousel .publication-carts__item-content {
  padding: 15px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 85px;
}

.publications-carousel .publication-carts__item__inner a strong {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  color: var(--color-hTag);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  white-space: normal;
}

.publications-carousel .autor-pub {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.publications-carousel .avatar-pub {
  width: auto;
  height: 45px;
  border-radius: 50%;
}

.publications-carousel .splide__slide img {
  vertical-align: bottom;
  border-radius: 9px 9px 0 0;
}

.publications-carousel .avatar-pub img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.publications-carousel .autor-pub__name {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 2px;
  color: var(--color-secondary);
}

.publications-carousel .autor-pub__expirience-items {
  display: flex;
  align-items: center;
  gap: 7px;
}

/*looked slider*/
.harant_market .carousel .card_jurist, .harant_market.card_jurist, .harant_market .other_card .item-wrap.item-wrap-no-frame, .card_jurist.item-wrap.harant_market {
  border: 2px solid var(--color-success);
}

@media (max-width: 768px) {
  .publications-carousel .autor-pub__expirience-items {
    white-space: nowrap;
    overflow: hidden;
  }
  .publications-carousel .autor-pub__expirience-items .orange-single {
    min-width: 3px;
  }
}
@media only screen and (max-width: 991px) {
  .modal .modal-dialog {
    width: 100%;
  }
  .best {
    overflow: hidden;
  }
  .carousel.carousel_looked {
    width: calc(100% + 32px);
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    padding: 0 16px;
    margin: 0 -16px;
    overflow: -moz-scrollbars-none;
    scroll-snap-type: x mandatory;
  }
  .carousel .item_carousel {
    display: flex;
    width: 307px;
    max-width: 307px;
    white-space: normal;
    margin: 0 6px 0 0;
    overflow: hidden;
    flex: 0 0 auto;
    flex-direction: column;
    scroll-snap-align: start;
  }
  .item_carousel:last-child {
    margin-right: 0;
  }
}
.publications-carousel .autor-pub__expirience-items .autor-pub__expirience-item {
  font-size: 13px;
  color: var(--color-secondary);
}

.publications-carousel .autor-pub__expirience-items .orange-single {
  background-color: var(--color-secondary);
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

.publications-carousel .orange-single {
  width: 5px;
  height: 5px;
  background-color: #d1d1d1;
  border-radius: 50%;
}

.publications-carousel .orange-single, .single-pub__feed p a {
  color: var(--color-secondary);
}

.publications-carousel .autor-pub__expirience-items .autor-pub__expirience-item {
  font-size: 13px;
  color: var(--color-secondary);
}

.publications-carousel .publication-carts__reviews {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.publications-carousel .publication-carts__reviews-column {
  display: flex;
  align-items: center;
  gap: 34px;
}

.publications-carousel .feed-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.publications-carousel .viewed {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-secondary);
}

.publications-carousel .pub-date {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-secondary);
  padding-top: 3px;
}

.publications-carousel .publication-carts__reviews-column {
  display: flex;
  align-items: center;
  gap: 34px;
}

.publications-carousel .author-meta li:not(:last-child) {
  margin-right: 15px;
}

.publications-carousel .author-meta li:not(:last-child) {
  margin-right: 15px;
}

.publications-carousel .list-inline-item {
  font-size: 14px;
}

.publications-carousel .list-inline-item > div {
  margin-top: 0 !important;
}

.publications-carousel .mi13_like > span {
  font-size: 14px;
}

.publications-carousel .mi13_like > span {
  font-size: 14px;
}

.publications-carousel .list-inline-item {
  font-size: 14px;
}

@media (min-width: 1700px) {
  .publications-carousel .publication-carts__item {
    min-width: 358px;
  }
}
@media (max-width: 1600px) {
  .publications-carousel .publication-carts__item {
    max-width: 358px;
    height: 368px;
  }
  .publications-carousel .publications-item__image {
    max-width: 368px;
    height: 142px;
  }
  .publications-carousel .publications-item__image {
    max-width: 368px;
    height: 142px;
  }
  .publications-carousel .feed-wrap p {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .single-pub__head .single-pub__autor-cart {
    max-width: none;
  }
  .footnote-wrap {
    display: none;
  }
  .splide .splide__list {
    width: calc(100% + 0px);
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    padding: 0 16px;
    margin: 0 -16px;
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
    scroll-snap-type: x mandatory;
    transform: translateX(0px) !important;
  }
  body .splide .splide__slide {
    margin: 0 6px 0 0;
    padding-bottom: 2px;
    padding-top: 2px;
    scroll-snap-align: start;
    min-width: min-content;
  }
  .splide {
    visibility: visible;
  }
}
@media (max-width: 768px) {
  .publications-carousel .author-meta li:not(:last-child) {
    margin-right: 10px;
  }
  .breadcrumbs, .breadcrumb {
    margin: 6px 0 14px;
  }
}
@media (max-width: 450px) {
  .publications-carousel .publication-carts__reviews .publication-carts__reviews-column ul li,
  .publications-carousel .publication-carts__reviews .publication-carts__reviews-column ul {
    display: flex;
  }
  .publications-carousel .publication-carts__item {
    max-width: 100%;
    height: 361px;
  }
  .publications-carousel .autor-pub, .publications-carousel .publication-carts__reviews {
    margin-top: 15px;
  }
  .publications-carousel .publicationSplide .publication-carts__item, .publications-carousel .splide .publication-carts__item {
    max-width: 316px;
  }
  .publications-carousel .publication-carts__item__inner .short-title {
    font-size: 14px;
  }
  .publications-carousel .publications-item__image {
    max-width: 100%;
    height: 172px;
  }
  .publications-carousel .publications-item__image {
    max-width: 100%;
    height: 172px;
  }
  .publications-carousel .autor-pub__name {
    font-size: 13px;
  }
  .publications-carousel .publication-carts__reviews {
    gap: 15px;
  }
}
.carousel .splide__slide .card_jurist {
  height: 100%;
}

.splide .splide__arrow {
  width: 35px;
  height: 35px;
  background-color: var(--color-bg-tint-purple);
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.splide .splide__arrow:hover {
  background-color: #DCDDEA;
}

.splide .splide__arrow:disabled {
  display: none;
}

.splide .splide__arrow svg {
  width: 10px;
  height: 10px;
  top: -1px;
  position: relative;
  fill: var(--color-secondary);
}

.splide .splide__arrow--prev {
  left: -1rem;
  transform: scaleX(-1) translateY(-50%);
}

.splide .splide__arrow--next {
  right: -1rem;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .publicationSplide .splide__list, .splide.carousel .splide__list {
    transform: none !important;
  }
  .publicationSplide .splide__arrows, .splide.carousel .splide__arrows {
    display: none;
  }
}
.property-address-wrap .list-2-cols {
  display: flex;
  flex-wrap: wrap;
}

.property-address-wrap .list-2-cols .page-wrap {
  width: 50%;
}

#map_canvas {
  box-shadow: 0 0 10px var(--color-border-muted);
  height: 300px;
  width: 330px;
}

.property-address-wrap .list-2-cols dd {
  padding-left: 15px;
}

.small_text_grey_1 {
  display: flex;
  flex-wrap: wrap;
}

.small_text_grey_1 span {
  height: 20px;
}

.modified_time_1 {
  padding-right: 10px;
}

.robot_opisanie {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.robot_opisanie_add:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7%;
  right: 0;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.link_teg_1 {
  color: var(--color-link-alt) !important;
}

.link_teg_1:hover {
  color: #000 !important;
}

.parent_teg_1 {
  font-size: 14px;
  margin-top: 5px;
  text-transform: none !important;
  display: contents;
  text-transform: lowercase !important;
}

.detail-1 {
  display: flex;
  flex-direction: column;
}

.cat_dela_title {
  margin-left: 10px;
}

.cat_dela_wrap {
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column_parent {
  display: flex;
  flex-direction: column;
}

.parent_taxonomy_2 {
  text-transform: none;
  color: var(--color-link-alt) !important;
}

.child_taxonomy_2 {
  padding-left: 15px;
  text-transform: none !important;
  color: var(--color-link-alt) !important;
}

@media (max-width: 767.98px) {
  .property-address-wrap .list-2-cols dd {
    padding-left: 0px !important;
    padding-top: 10px;
  }
  .property-address-wrap .list-2-cols dd {
    display: flex;
    flex-direction: column;
  }
  .property-address-wrap .list-2-cols .page-wrap {
    width: 100%;
  }
  .robot_opisanie {
    -webkit-line-clamp: 21;
  }
  .grafik-tree ul {
    padding-left: 20px;
  }
  .listing-wrap .harakteristiki h2 {
    width: 100%;
  }
}
/* property-form-multiemail */
#priority-property-form-multiemail .modal-dialog {
  margin: 10% auto;
}

#need_consul_multiemail, #need_mess_multiemail, #need_price_multiemail {
  display: inline-block;
  margin-right: 5px;
  margin-top: 5px;
  color: #000;
  cursor: pointer;
  background: #e1e6ec;
  padding: 5px 7px;
  border-radius: var(--radius-lg);
}

.form_messages span {
  padding: 0;
}

.lab_mail_lawyers {
  line-height: 2.4;
  color: #a1a7a8;
  padding-bottom: 0;
  padding-left: 12px;
}

.list_mail_lawyers {
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#priority-property-form-multiemail .close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  padding: 5px;
}

.form-group.group_mail_lawyers {
  display: flex;
  justify-content: start;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
}

.form-group.mess_box_name, .form-group.mess_box_phone {
  max-width: 49%;
  width: 100%;
  display: inline-block;
}

.form-group.mess_box_phone {
  float: right;
}

.form-group.form-group-textarea {
  margin-top: 15px;
}

#priority-property-form-multiemail input.form-control {
  height: 38px;
}

.g_m_l_inp {
  align-items: center;
  display: flex;
  padding-left: 10px;
}

#box_list_user {
  position: absolute;
  box-shadow: 0 0 5px var(--color-border-muted);
  padding: 0px;
  top: 38px;
  left: 0;
  z-index: 99;
  background: var(--color-white);
  max-height: 265px;
  overflow-y: auto;
  overflow-x: hidden;
  width: auto;
  max-width: 100%;
}

.list_user_body p {
  margin-bottom: 0;
  line-height: 2;
  padding: 0 25px 0 5px;
  cursor: pointer;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_user_body p:hover {
  background: #f3f9ff;
}

.list_user_body p img {
  width: 32px;
  height: auto;
  border-radius: 50%;
  margin-right: 5px;
}

.cl_law {
  display: inline-block;
  margin-left: 2px;
  text-align: center;
  width: 14px;
  height: 14px;
  line-height: 11px;
  cursor: pointer;
  border-radius: 50%;
  color: #828282;
  font-size: 14px;
}

.list_mail_lawyers div {
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
  background: #E1E6EC;
  border-radius: var(--radius-lg);
  padding-right: 7px;
}

.list_mail_lawyers .out_m_l {
  min-width: 162px;
  margin-right: 5px;
}

#plus_list_user {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border-muted);
  border-radius: 50%;
  justify-content: center;
  text-align: center;
  color: #5e5e5e;
  cursor: pointer;
  margin-left: 5px;
  font-size: 16px;
  line-height: 1.1;
  background: var(--color-white);
  padding: 0;
  position: absolute;
  top: 9px;
  right: 5px;
}

.out_m_l_o {
  white-space: nowrap;
  background: #f0f0f0;
  border-radius: var(--radius-md);
  height: 17px;
  line-height: 1;
  padding: 0 3px;
}

.out_m_l_t {
  max-width: 100px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.out_m_l img {
  max-width: 30px;
  height: 30px;
  width: 100%;
  border-radius: 50%;
  margin-right: 3px;
  max-height: 30px;
  flex: 1 0 auto;
  object-fit: cover;
}

.loader-show {
  display: inline-block;
  margin-right: 10px;
}

.form_messages .close span {
  padding: 0 !important;
}

#add_l_l .update-captcha i {
  font-size: 23px;
}

#add_l_l .update-captcha {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 38px;
  max-width: 38px;
  flex: 0 0 28px;
  cursor: pointer;
  z-index: 9;
}

#add_l_l .col-6.captcha-img {
  text-align: right;
}

.property-form-multiemail {
  cursor: pointer;
}

/* propertyphone_mobile */
#propertyphone_mobile .close {
  max-width: min-content;
  right: 0;
  position: relative;
  align-self: end;
  z-index: 9;
  padding: 10px;
  min-height: 65px;
}

#propertyphone_mobile .close span {
  padding: 10px;
  font-size: 25px;
}

#propertyphone_mobile .modal-dialog {
  margin-left: auto;
  margin-right: auto;
  top: auto;
  bottom: -25px;
  outline: none;
  position: fixed;
  left: 0;
  right: 0;
  max-width: 350px;
  margin-bottom: 0;
  height: auto;
}

#propertyphone_mobile .button-inner-wrap button {
  width: 100%;
  max-width: 315px;
  height: 36px;
  border-radius: var(--radius-xs);
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}

#propertyphone_mobile .phone-modal-fback-no, #propertyphone_mobile .phone-modal-fback-off {
  border-color: var(--color-gray);
}

#propertyphone_mobile .phone-modal-fback-no:active, #propertyphone_mobile .phone-modal-fback-no:target,
#propertyphone_mobile .phone-modal-fback-off:active, #propertyphone_mobile .phone-modal-fback-off:target {
  color: var(--white-text);
}

#propertyphone_mobile .modal-body {
  padding-top: 0;
  margin-top: -12px;
  padding: 0;
}

#propertyphone_mobile .button-text {
  color: var(--color-heading);
  font-size: 20px;
  font-weight: 700;
  margin-top: -32px;
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 27px;
}

.logo_in_modal img {
  max-width: 104px;
}

/* end propertyphone_mobile */
.pagination .page-item.active a {
  cursor: default;
}

.slideout-open body {
  overflow: hidden;
}

.navbar-logged-in-wrap, .main-nav .nav-item, .header-mobile, .header-main-wrap, .logo img, .header-inner-wrap {
  position: relative;
}

body._lock {
  overflow: hidden !important;
}

.main-nav .dropdown-menu {
  display: block;
}

.login-register-nav li {
  display: inline;
}

.navbar-logged-in-wrap > a:after {
  display: none;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active {
  background-color: var(--color-white);
}

.main-nav .dropdown-menu, .main-nav .dropdown-toggle:after {
  border: 0;
}

.main-nav .dropdown-menu {
  border-radius: 0;
}

.main-nav .dropdown-menu, .login-register-nav {
  margin: 0;
}

.main-nav .dropdown-menu, .login-register-nav, .navbar, .dropdown-menu {
  padding: 0;
}

.main-nav .nav-item {
  display: flex;
  align-items: center;
  z-index: 2;
}

.main-nav .dropdown-menu, .dropdown-menu {
  -webkit-box-shadow: var(--shadow-sm);
  box-shadow: var(--shadow-sm);
}

.header-main-wrap .btn-create-listing {
  border-radius: var(--radius);
}

.main-nav .dropdown-menu, button, a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.logo a:hover {
  background-color: transparent !important;
}

@media (max-width: 991.98px) {
  .header-desktop {
    display: none;
  }
  main {
    overflow: hidden;
  }
}
.logo {
  margin-right: 33px;
}

.logo img {
  top: -5px;
}

.login-register {
  white-space: nowrap;
}

.login-register-nav a {
  padding: 10px 15px;
}

.login-register-nav a:hover {
  background-color: transparent !important;
}

.header-main-wrap {
  z-index: 10;
}

.header-main-wrap .login-register-nav a {
  padding: 10px 15px 10px 0;
}

.header-main-wrap .login-register-nav .btn-create-listing {
  padding: 0 15px;
}

.header-main-wrap .login-register-nav .login-link a:hover, .header-main-wrap .login-register-nav .login-link a:active {
  background-color: var(--color-footerBg) !important;
}

.header-mobile {
  text-align: center;
  height: 60px;
  padding: 0 10px;
}

@media (min-width: 992px) {
  .header-mobile {
    display: none !important;
  }
}
.header-mobile .logo {
  margin: 0 auto;
}

.header-mobile .toggle-button-left, .header-mobile .toggle-button-right {
  background-color: transparent;
  font-size: 20px;
}

.header-mobile .toggle-button-left:active, .header-mobile .toggle-button-left:focus, .header-mobile .toggle-button-right:active, .header-mobile .toggle-button-right:focus {
  outline: 0;
}

.header-mobile-right {
  min-width: 56px;
}

.main-nav .navbar-nav {
  padding-right: 15px;
}

.main-nav:not(.nav-city) .dropdown-toggle:after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  font-family: "houzez-iconfont";
  content: "\e910";
  vertical-align: unset;
  font-size: 10px;
  font-weight: 700;
}

.nav-mobile .main-nav .nav-item a,
html body .logged-in-nav a,
html body .btn.btn-create-listing {
  text-transform: initial;
}

.main-nav .dropdown-item {
  padding: 15px;
  line-height: 1.5;
  min-width: 250px;
}

.main-nav .navbar-nav .nav-item .nav-item a {
  text-transform: initial;
}

.main-nav .dropdown-item:after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-top: 3px;
}

.main-nav .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  text-transform: initial;
}

@media (min-width: 1200px) {
  .main-nav .nav-link {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }
}
.main-nav .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  top: 100%;
}

.main-nav.nav-city {
  text-transform: initial;
}

.on-hover-menu {
  background: 0 0;
  margin: 0;
  padding: 0;
  min-height: 20px;
}

@media only screen and (min-width: 991px) {
  .on-hover-menu ul li, .on-hover-menu ul ul li {
    position: relative;
  }
  .on-hover-menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  .on-hover-menu ul ul {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
  }
  .on-hover-menu ul ul {
    top: 100%;
    left: 0;
  }
}
.header-inner-wrap .login-register {
  line-height: 1;
}

#nav_fav_harant a {
  color: var(--color-heading);
  border: 0;
  margin-right: 7px;
}

#nav_fav_harant .fa {
  font-size: 24px;
}

#nav_fav_harant a {
  color: var(--color-heading);
  border: 0;
}

#nav_fav_harant a:hover {
  color: var(--color-primary);
}

#nav_fav_harant .btn-create-listing {
  transition: none;
}

#nav_fav_harant .btn-create-listing:hover {
  background: 0 0 !important;
  color: var(--white-text) !important;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

#nav_fav_harant .btn-create-listing:hover svg {
  color: var(--color-primary);
}

#nav_fav_harant .btn-create-listing:hover .fa-heart-o:before {
  color: var(--color-primary);
  content: "\f004";
}

#nav_fav_harant .btn-create-listing {
  padding: 0;
}

#nav_fav_harant .btn-create-listing.search-btn-nav {
  margin-top: -9px;
}

.upload-gallery-thumb-buttons button:not(:disabled):not(:disabled):active {
  color: #636363;
  background-color: transparent;
  border-color: transparent;
}

a:hover, a:active, a:focus, input:hover, input:active, input:focus, button:hover, button:active, button:focus {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dropdown-toggle::after {
  margin-left: 5px;
}

.info_card .photo_card {
  display: block;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1230px;
}

@media (min-width: 992px) {
  .btn-create-listing:hover {
    background: var(--color-primary) !important;
    color: var(--white-text) !important;
  }
  .header-v1 .login-link a:hover, .header-v1 .login-link a:active {
    color: var(--white-text) !important;
  }
  #header-section {
    padding-top: 10px;
  }
  .header-v1 #main-nav a:hover, .header-v1 #main-nav a:active {
    color: var(--color-heading);
  }
  body {
    background: var(--color-white) !important;
  }
}
@media (max-width: 767.98px) {
  .container {
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .logo img {
    height: auto;
    width: auto;
    max-height: 27px;
    max-width: 150px;
    margin-top: 8px;
  }
}
.btn {
  border-radius: 0;
}

.btn-create-listing {
  background-color: var(--color-white);
  color: #000;
  border: 1px solid var(--color-primary);
  padding: 0 15px;
}

.login-register {
  position: relative;
}

@media (max-width: 540px) {
  html, body {
    scrollbar-color: #458245 #714826;
  }
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .login-register-form .modal-header .login-register-tabs .nav-link, .login-register-form .modal-header .login-register-tabs .nav-link.active {
    padding: 15px 18px;
  }
}
.search-overlay {
  opacity: 0;
  pointer-events: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
  position: inherit;
}

.head-search {
  opacity: 0;
}

.head-search-wrap {
  position: absolute;
  z-index: 12;
  right: 0;
}

.search-btn {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  margin: 0;
  background: 0 0;
  margin-top: 6px;
}

.head-fast-search {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 36px 0 48px;
  border: 0;
  border-bottom: 1px solid #0b1f35;
  -webkit-appearance: none;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  color: #0b1f35;
  font-size: 16px;
  line-height: 20px;
  outline: 0;
}

.advanced-search-btn {
  border: 1px solid var(--color-heading) !important;
  background-color: var(--color-heading) !important;
  color: var(--white-text) !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

/* HEADER - nav mobile */
.nav-item.active a {
  font-weight: 600;
}

.nav-mobile .main-nav .nav-item .dropdown-menu, .nav-mobile .main-nav .nav-item {
  width: 100%;
}

.nav-mobile .logged-in-nav, .nav-mobile .main-nav .nav-item a, .main-nav .nav-item {
  position: relative;
}

.nav-mobile .main-nav .nav-item .dropdown-menu, .logged-in-nav {
  position: absolute;
}

.nav-mobile .main-nav .nav-item a, .logged-in-nav a, .logged-in-nav {
  display: block;
}

.nav-mobile .slideout-menu .dropdown-toggle {
  display: none;
}

.logged-in-nav {
  border: 0;
}

.logged-in-nav, .main-nav .dropdown-menu {
  margin: 0;
}

.logged-in-nav, .main-nav .dropdown-menu, .navbar {
  padding: 0;
}

.nav-mobile .main-nav .nav-item.dropdown > a:after {
  float: right;
}

.nav-mobile .main-nav .nav-item .dropdown-menu {
  left: 0;
}

.logged-in-nav {
  right: 0;
}

.nav-mobile .logged-in-nav {
  top: 0;
}

.nav-mobile .main-nav .nav-item a {
  z-index: 2;
}

.logged-in-nav {
  list-style: none;
}

.logged-in-nav {
  -webkit-box-shadow: var(--shadow-sm);
  box-shadow: var(--shadow-sm);
}

.logged-in-nav {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.logged-in-nav {
  left: auto;
  min-width: 200px;
  visibility: hidden;
  opacity: 0;
  top: 110%;
}

.logged-in__span:hover .logged-in-nav {
  visibility: visible;
  opacity: 1;
  top: 85%;
}

.logged-in-nav a {
  line-height: 1.5;
  padding: 15px;
  border-bottom: 1px solid;
}

.navbar-logged-in-wrap.show .logged-in-nav {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

@media (max-width: 991.98px) {
  .slideout-menu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 256px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: none;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .slideout-menu-left {
    left: 0;
  }
}
@media (max-width: 991.98px) {
  .slideout-menu-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile .main-nav .navbar-nav {
  padding-right: 0;
}

.nav-mobile .main-nav .nav-item {
  display: block;
}

.nav-mobile .main-nav .nav-item.dropdown > a:after {
  content: "\e910";
  font-family: "houzez-iconfont";
}

.nav-mobile .main-nav .nav-item .dropdown-menu {
  z-index: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nav-mobile .main-nav .nav-item .dropdown-menu .nav-item > a {
  padding: 15px 15px 15px 40px;
}

.nav-mobile .main-nav .nav-item a {
  border-bottom: 1px solid;
  padding: 15px;
}

.nav-mobile .logged-in-nav {
  visibility: visible;
  opacity: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 255px;
}

.nav-mobile .main-nav .nav-item .dropdown-menu.show {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  top: 0 !important;
  left: 0 !important;
}

/* HEADER - modalLocationSelection */
/* ------------------------------------------------------------------------ */
.modal-title {
  font-size: 1.5rem;
}

a:hover, a:active, a:focus, button:hover, button:active, button:focus {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.modal {
  z-index: 1080;
  width: 100vw;
  height: 100vh;
}

@media (min-width: 992px) {
  .modal-header .close {
    order: 1;
  }
  .modal-dialog .row {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  #modalLocationSelection .modal-footer a {
    white-space: normal;
  }
}
#modalLocationSelection .close {
  position: absolute;
  right: 20px;
}

@media (max-width: 992px) {
  #modalLocationSelection {
    min-height: 700px;
  }
  #modalLocationSelection .modal-footer {
    border-bottom-right-radius: 0;
    -webkit-border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0;
    -webkit-border-bottom-left-radius: 0 !important;
    max-height: 300px !important;
  }
  #modalLocationSelection .modal-content {
    min-height: 300px !important;
  }
  #modalLocationSelection .modal-footer a {
    -webkit-appearance: none !important;
  }
  #modalLocationSelection .modal-header {
    align-items: center !important;
    justify-content: center !important;
  }
  #modalLocationSelection .modal-header .close {
    top: 10px !important;
    right: 10px !important;
  }
}
/* HEADER - mobile-search-nav */
/* ------------------------------------------------------------------------ */
.search-icon {
  position: relative;
}

.search-icon:before {
  position: absolute;
}

.mobile-search-nav {
  display: none;
}

.advanced-search .form-group {
  margin: 0;
}

.search-icon:before {
  top: 0;
}

.search-icon:before {
  z-index: 1;
}

.advanced-search-nav .form-control {
  height: 43px;
  border-radius: var(--radius);
}

.form-control {
  height: 42px;
}

.form-control {
  font-weight: 400;
  border: 1px solid;
  border-color: var(--border-default);
}

.form-control:disabled {
  background-color: rgba(220, 224, 224, 0.4);
}

.flex-search {
  -ms-flex-preferred-size: 130px;
  flex-basis: 130px;
  padding: 0 10px 0 0;
}

@media (max-width: 767.98px) {
  .flex-search {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    padding: 5px;
  }
}
@media (max-width: 767.98px) {
  .flex-search:last-of-type {
    padding: 5px;
  }
}
.advanced-search-nav {
  padding: 10px 0;
}

@media (max-width: 991.98px) {
  .advanced-search-nav {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .advanced-search-nav .container {
    max-width: 100%;
    margin-top: 0;
  }
}
.search-icon:before {
  color: #a1a7a8;
  left: 15px;
  text-align: center;
}

.fa-cog {
  position: absolute;
  text-align: center;
  line-height: 42px;
  height: 42px;
  right: 15px;
  font-size: 26px;
  color: #a1a7a8;
}

.search-icon input {
  padding-left: 40px;
}

.mobile-search-nav {
  padding: 10px 0;
  margin-top: 1px;
}

@media (max-width: 767.98px) {
  .mobile-search-nav {
    display: block;
  }
}
@media (max-width: 991px) {
  .mobile-search-nav {
    display: block;
  }
}
input:hover, input:active, input:focus {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.form-control:focus, .btn-light:not(:disabled):not(.disabled).active:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fa-cog {
  color: var(--color-primary);
}

.mobile-search-nav {
  display: block;
}

@media (max-width: 767.98px) {
  .mobile-search-nav .container {
    margin: 0;
  }
  .mobile-search-nav .flex-search {
    padding: 0;
  }
  .mobile-search-nav {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 992px) {
  .advanced-search-v1 {
    position: relative;
  }
  .slideout-open .slideout-menu-right.open, .slideout-open .slideout-menu-left.open {
    display: block;
  }
  .hrnt_cookie_p #nav-mobile, .hrnt_cookie_p #navi-user {
    margin-top: 48px;
  }
}
/* HEADER - desktop-header-search */
.page-title-wrap .item-address, .property-title-price-wrap {
  position: relative;
}

.item-tool-share:after {
  display: none;
}

.breadcrumb, .item-tools {
  margin: 0;
}

.breadcrumb, .item-tools, .dropdown-menu {
  padding: 0;
}

.item-tools {
  z-index: 2;
}

.item-tools {
  list-style: none;
}

.item-tool > span {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

address {
  color: #636363;
}

.item-address {
  margin-bottom: 15px;
  color: #636363;
  font-size: 13px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb {
  font-size: 14px;
  background-color: transparent;
  line-height: 18.12px;
}

.breadcrumb li a {
  color: var(--color-ptag);
  font-size: 14px;
}

.breadcrumb-item a > span {
  color: var(--color-secondary);
}

.breadcrumb li a:hover, .breadcrumb-item a > span:hover {
  color: var(--color-heading);
}

.breadcrumb li span {
  /*line-height: normal;*/
}

@media (max-width: 767.98px) {
  .breadcrumb {
    font-size: 12px;
  }
}
.breadcrumb-item + .breadcrumb-item:before {
  content: "\e907";
  font-family: "harant-icons";
  line-height: 1;
  padding: 1px 3px 0px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: var(--color-secondary);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.page-title-wrap .item-address {
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 7px;
}

@media (max-width: 767.98px) {
  .page-title-wrap .item-address {
    font-size: 14px;
    top: -9px;
  }
}
.page-title-wrap .item-tool span {
  color: #000;
  border: 1px solid #000;
  background-color: transparent;
}

.page-title-wrap .item-tool span:hover {
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--white-text);
}

.page-title-wrap .mod .exclam {
  position: relative;
  top: 2px;
}

.item-tool-share .exclam:before {
  content: "!";
  font-size: 1.8em;
}

.item-tool-share .exclam:hover:before, .item-tool-share:hover .exclam:before {
  color: var(--white-text);
}

.item-tool-dropdown-menu.dropdown-menu {
  border-color: var(--color-gray);
  background-color: var(--color-white);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 5px;
}

.item-tool-dropdown-menu .dropdown-item {
  padding: 6px 8px;
  color: #000;
  cursor: pointer;
  border-radius: var(--radius-xs);
}

.item-tool-dropdown-menu .dropdown-item svg {
  width: 16px;
  height: 16px;
  margin-right: 0.45rem;
}

.share.fa {
  margin-right: 0.45rem;
  padding-left: 0.1rem;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.share.fa.fa-odnoklassniki {
  padding-left: 0.23rem;
  margin-right: 0.55rem;
}

.ui-slider-horizontal .ui-slider-handle:after, .range-text {
  position: relative;
}

.auto-complete {
  position: absolute;
}

.advanced-search .advanced-search-btn, .dropdown-menu {
  padding: 0;
  border-radius: var(--radius-xs);
}

.btn-no-right-padding {
  padding-right: 0 !important;
}

.advanced-search-filters {
  padding-top: 15px;
  margin-right: -10px;
}

.advanced-search-filters .d-flex {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.advanced-search-filters .flex-search-half {
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
}

.flex-search-half.online {
  margin-left: 2%;
}

.fields-width {
  width: 18%;
}

body.single-houzez_agency .advanced-search-v1 .d-flex .fields-width:nth-child(2) {
  display: none;
}

.bootstrap-select .dropdown-toggle:focus, .form-control:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (min-width: 992px) {
  .advanced-search-btn {
    border: 1px solid var(--color-heading) !important;
    background-color: var(--color-heading) !important;
    color: var(--white-text) !important;
  }
  .advanced-search-btn:hover {
    background-color: var(--color-footerBg) !important;
  }
}
.advanced-search-btn {
  border: 1px solid var(--color-heading) !important;
  background-color: var(--color-heading) !important;
  color: var(--white-text) !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.advanced-search-btn:hover {
  background-color: var(--color-footerBg) !important;
}

body.show-search .search-overlay {
  opacity: 1;
  position: fixed;
}

.show-search #nav_fav_harant .head-search {
  opacity: 1;
}

@media (max-width: 992px) {
  .flex-search:nth-child(2) {
    position: absolute;
    bottom: -50px;
    width: 50%;
    padding-right: 10px;
  }
  .flex-search:nth-child(3) {
    position: absolute;
    width: 50%;
    bottom: -50px;
    right: 0;
    padding-right: 0;
  }
  #advanced-search-filters {
    margin-top: 50px;
    margin-left: 10px;
  }
  .advanced-search-filters .flex-search-half {
    flex-basis: 100%;
    padding-right: 25px;
  }
}
/* выше перенастройка страницы */
.reiting-harant .not-exist-rating,
.harakteristiki .reiting_harant_spisok .not-exist-rating {
  max-width: 280px;
  /*height: 26px;*/
  /*margin-top: 8px;*/
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}

.reiting-harant .not-exist-rating {
  padding-left: 5px;
}

.reiting-harant .not-exist-rating__span,
.harakteristiki .reiting_harant_spisok .not-exist-rating__span {
  display: inline-block;
  text-align: center;
}

#add_comment_law,
#reg_comment_law {
  top: -18px;
  padding: 7px 15px;
  color: var(--color-heading);
  border: 1px solid var(--color-heading);
  transition: 0.3s;
  border-radius: var(--radius);
}

#add_comment_law:hover,
#reg_comment_law:hover {
  background: var(--color-primary);
  color: var(--white-text);
  border: 1px solid var(--color-primary);
}

/* попап - это Ваша карточка? */
.modalDialog .listing-wrap {
  padding: 30px !important;
}

.modalDialog .item-listing-wrap {
  margin-bottom: 20px !important;
}

.modalDialog .card-deck {
  margin: 0;
}

.modalDialog .card {
  margin-bottom: 0;
  box-shadow: none !important;
}

.modalDialog .card .item-wrap,
.modalDialog .card .item-body {
  padding: 0 !important;
}

.modalDialog .card .item-title {
  position: relative !important;
  height: auto;
  bottom: 0 !important;
  left: 0 !important;
  font-size: 18px;
}

.modalDialog .card .list_adress {
  margin: 5px 0;
}

.modalDialog .card .otziv_houzez_spisok:before {
  content: "";
  clear: both;
  display: block;
}

.modalDialog .register-form-wrap {
  border-radius: 0;
}

.modalDialog #id_login {
  line-height: 1;
  margin-top: 5px;
}

.modalDialog textarea {
  width: 100%;
  border-radius: var(--radius-xs);
}

.sort-by .overlay-search-module-close {
  z-index: 10;
}

.block_reg_form .form-group-field {
  border: none;
}

.block_reg_form .input-register-1 {
  border: none;
  border-radius: var(--radius);
  margin-top: 0;
}

.kratkoe_opisanie {
  clear: both;
  color: var(--color-hTag);
}

.login-register-form .modal-header .login-register-tabs .nav-link.active {
  background: var(--color-white);
}

.login-register-form .modal-header .login-register-tabs .nav-link.active:hover {
  background: var(--color-white) !important;
  color: var(--color-heading) !important;
}

.login-register-form .modal-header .login-register-tabs .nav-link:hover {
  background: var(--color-heading) !important;
  color: var(--white-text) !important;
}

.main-nav .navbar-nav .nav-item .dropdown-menu {
  background: var(--color-white) !important;
}

.dropdown-item.active, .dropdown-item:active {
  background: #DAE0E5;
}

.listing-tools-wrap {
  z-index: 20;
}

.card-deck {
  z-index: 2;
}

#mobile-property-form .modal-dialog {
  display: flex;
  align-items: center;
  height: 100%;
}

.dashboard-side-wrap {
  z-index: 10;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .logo {
    margin-right: 0;
  }
  .main-nav {
    flex-grow: 0 !important;
    margin-right: 0;
  }
  .main-nav .navbar-nav {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .home .container-2 .card_left_and_right {
    min-width: 300px;
  }
  .similar-agency-wrap .item-body {
    height: auto;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 992px) {
  .lable_reiting_harant_spisok:before {
    content: "";
    display: block;
    clear: both;
  }
  .modalDialog .item-listing-wrap {
    margin-bottom: 0 !important;
  }
  .modalDialog .modal__title {
    margin-bottom: 30px;
  }
  .reiting_harant_spisok {
    float: left !important;
  }
}
@media (max-width: 450px) {
  .modalDialog .form-register-1 {
    flex-wrap: wrap;
  }
  .modalDialog .input-register-1 {
    margin-right: 0 !important;
  }
  .modalDialog .form-group-field input {
    padding-left: 0;
    text-align: center;
  }
  .modalDialog .form-register-1 .wrap-button-1 {
    width: 100%;
  }
}
.btn.btn-search.btn-reset {
  color: #000;
  background: var(--color-white) !important;
  float: right;
}

.btn.btn-search.btn-reset:hover {
  color: #000 !important;
  background: var(--color-white) !important;
}

.btn.btn-search.btn-reset.btn-mob {
  margin-top: 25px;
  margin-right: 0;
}

/* modal_content_page */
#modal_content_page .modal-dialog {
  max-width: 810px;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: var(--color-white);
  width: 100%;
  max-height: max-content;
  margin: 8% auto;
}

#modal_content_page .modal-content {
  border: none;
}

#modal_content_page .modal-dialog {
  overflow-y: initial !important;
}

#modal_content_page .modal-body {
  height: 65vh;
  overflow-y: auto;
  padding: 5px 15px 15px;
  overflow-x: hidden;
}

#modal_content_page .page_agree {
  max-width: 135px;
  margin-top: 25px;
  margin-bottom: 15px;
  align-self: end;
  width: 100%;
  border-radius: var(--radius-xs);
  font-size: 16px;
  font-weight: 500;
}

#content_page_h {
  width: 90%;
  padding: 0 15px;
  font-size: 32px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 110%;
}

#modal_content_page {
  z-index: 999999999 !important;
}

#modal_content_page .modal-content .close {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 0;
}

#modal_content_page .modal-content .close svg {
  width: 15px;
  height: 15px;
}

#modal_html_content_page p {
  margin: 0 0 20px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 21px;
}

#modal_html_content_page h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  margin: 40px 0 30px;
  text-transform: uppercase;
}

#modal_html_content_page p b {
  font-weight: 600;
}

#modal_html_content_page ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 40px;
}

#modal_html_content_page ol li {
  list-style-type: none;
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  #modal_content_page {
    padding: 15px;
  }
  #content_page_h {
    font-size: 22px;
  }
  #modal_html_content_page h2 {
    font-size: 16px;
    margin: 20px 0 15px;
  }
  #modal_html_content_page p {
    margin: 0 0 15px;
  }
  #modal_content_page .modal-dialog {
    margin-left: 0;
    margin-right: 0;
  }
}
/* modal_content_page */
@media (max-width: 1200px) {
  .unit-box--quad {
    padding: 10px 0;
    overflow-x: scroll;
  }
  .unit-box--quad .unit {
    min-width: 370px;
  }
}
@media (max-width: 540px) {
  .unit__fullname {
    margin-top: 15px !important;
  }
  .breadcrumb .breadcrumb-item.active {
    display: none;
  }
  .login-register-form .modal-header .login-register-tabs .nav-link, .login-register-form .modal-header .login-register-tabs .nav-link.active {
    padding: 15px 15px;
  }
  .item-body.flex-grow-1 .unit__info-block .is_met {
    margin-top: 0;
  }
  .unit .item-wrap.item-wrap-no-frame {
    padding: 30px 10px 15px;
  }
  .unit-box--quad .unit {
    padding-left: 12px;
    padding-right: 12px;
    min-width: 345px;
  }
}
@media (max-width: 1024px) {
  .unit__feedback .wpd-custom-field {
    margin-left: 0px;
  }
}
.diskleimer {
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 10px;
  text-transform: uppercase;
  color: orange;
}

.diskleimer.dr_uristi {
  right: 15px;
  top: 0;
  left: auto;
}

/* propertyphone */
#propertyphone .modal-dialog {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 754px;
}

#propertyphone .property-modal-message-title, #propertyphone_mobile .property-modal-message-title {
  text-align: center;
  line-height: 1.4;
  font-size: 32px;
  margin-bottom: 18px;
}

#propertyphone .image-modal-card, #propertyphone_mobile .image-modal-card {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  background-size: cover;
  background-position: center top;
  border-radius: 50%;
  border: 1px solid #c4c4c4;
}

#propertyphone .property-modal-image, #propertyphone_mobile .property-modal-image {
  margin-top: 0px;
}

#propertyphone_mobile .property-modal-message-title {
  font-size: 16px;
  line-height: 1;
  padding: 0 30px;
}

#propertyphone_mobile .image-modal-card {
  margin-top: -10px;
}

.propertyphone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.propertyphone div {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  padding-bottom: 15px;
  padding-top: 15px;
  position: relative;
  left: 12px;
}

.propertyphone #propertycopy {
  position: relative;
  left: 24px;
  cursor: pointer;
}

.propertyphone.load {
  background-image: url(/wp-content/themes/houzez/img/loading-70.png);
  background-size: cover;
  transform: rotate(0deg);
  -webkit-animation: btn-loader 2s linear infinite;
  -moz-animation: btn-loader 2s linear infinite;
  -ms-animation: btn-loader 2s linear infinite;
  -o-animation: btn-loader 2s linear infinite;
  animation: btn-loader 2s linear infinite;
  width: 40px;
  height: 40px;
  margin: auto;
  margin-bottom: 15px;
  margin-top: 15px;
}

.propertyphone.load #propertycopy,
.propertyphone.load #phoneLawers {
  display: none;
}

#mescopyphone {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 100%;
  width: 100%;
  min-width: 150px;
  font-size: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-xs);
  text-align: center;
  font-weight: 700;
  color: var(--color-muted-alt);
  transform: translate(-100%, -45%);
}

.propertyinfo span, #propertyphone .button-wrap .button-text {
  font-size: 16px;
  color: var(--color-muted-alt);
  display: block;
  text-align: center;
  max-width: 255px;
  margin: 0 auto 5px;
  line-height: 130%;
}

#propertyphone .button-wrap .button-text {
  margin-top: 40px;
}

.property-form .button-wrap .button-inner-wrap button {
  background: white;
  padding: 12px;
  height: var(--but-card-height);
  line-height: 1px;
  margin-right: 11px;
  margin: 4px;
  border-radius: var(--but-card-radius);
  box-shadow: none;
  border: 1px solid var(--color-primary);
  color: var(--color-heading);
}

#propertyphone .button-inner-wrap > button {
  width: 110px;
}

.property-form .button-wrap .button-inner-wrap button.phone-modal-fback-yes {
  background: var(--color-primary);
  color: var(--white-text);
}

.property-form .button-wrap .button-inner-wrap button:hover, #propertyphone_mobile .button-inner-wrap button:hover {
  background: var(--color-heading) !important;
  color: white;
}

.property-form .button-wrap .button-inner-wrap {
  margin-top: 10px;
  margin-bottom: 20px;
}

.property-form .button-wrap {
  text-align: center;
}

.modal-content {
  border-radius: 9px;
}

.modal-content .close {
  font-size: 25px;
  font-weight: 100;
}

.modal-content .close {
  text-align: right;
  padding: 10px;
}

/* end propertyphone */
.property-modal-message-title {
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 36px;
  padding-right: 15px;
}

.listing-wrap.listing-v1 .col-lg-8.col-md-12.bt-content-wrap.wrap-order-first .listing-view.list-view.card-deck {
  margin-top: 26px;
}

.link_chapter_a {
  border: 1px solid var(--border-default);
  padding: 10px 15px;
  margin-right: 15px;
  color: #213772;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.link_chapter_a span {
  color: #888;
  font-weight: 500;
}

.link_chapter_a:hover {
  color: var(--color-button);
}

.link_chapter {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 50px;
  margin-top: 15px;
  padding-top: 5px;
}

@media (max-width: 1124px) {
  .link_chapter {
    height: 59px;
  }
}
.link_chapter::-webkit-scrollbar {
  width: 0;
}

/* ie 10+ */
.link_chapter {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
}

.link_chapter_m {
  background-color: var(--color-white);
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  padding-top: 5px;
}

.mobile-search-header {
  text-align: center;
  height: 50px;
  font-size: 24px;
}

.data_body__search {
  background: var(--color-white);
  box-shadow: 0 0 8px var(--color-border-muted);
  padding: 10px 0;
}

.data_body__search .title_item {
  padding: 0 10px;
  background: #fdfdfd;
  font-weight: 700;
}

.data_body__search .item {
  padding: 3px 10px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-size: 16px;
}

.data_body__search .item a {
  display: block;
  line-height: 35px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data_body__search .item:hover {
  background: #f8f8ff;
  cursor: pointer;
}

.search_status {
  margin-right: 10px;
}

.search_status .av_sr {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  object-fit: cover;
}

#auto_complete_ajax {
  width: 100%;
  min-width: 420px;
}

.search_cl {
  padding: 5px;
  float: right;
}

.item.not_res_search {
  background: #edf0ff;
}

.item.not_res_search a {
  color: #0070c0;
}

.a-style {
  color: var(--color-primary);
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}

#main-nav li.loc_us {
  display: flex;
  align-items: center;
}

#main-nav li.loc_us i.not_loc_wt {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
/* end slide public blog */
#propertyphone_mobile .modal-body.show-message div,
#priority-property-form-multiemail .modal-body.show-message div,
#propertyphone .modal-body.show-message div {
  display: none;
}

#propertyphone_mobile .modal-body.show-message .sucess-message,
#priority-property-form-multiemail .modal-body.show-message .sucess-message,
#propertyphone .modal-body.show-message .sucess-message {
  display: flex;
  align-items: center;
  font-size: 33px;
  font-weight: bold;
  justify-content: center;
}

#priority-property-form-multiemail .modal-body.show-message .sucess-message {
  font-size: 29px;
}

@media (max-width: 991px) {
  #priority-property-form-multiemail .modal-body.show-message .sucess-message {
    font-size: 23px;
  }
}
.h-modal-header {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.btn.btn_sh_how {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  height: 40px;
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xs);
  line-height: 37px;
}

.btn.btn_sh_close {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-text);
  line-height: 25px;
  margin-top: 15px;
  height: 30px;
  width: max-content;
}

#harant-photo-lawyers.show img {
  border-radius: 9px;
  margin: 0;
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}

.card_butoon.btn.fot_cont_url {
  font-size: 14px;
  width: 48.5%;
  height: var(--but-card-height);
  line-height: 34px;
  background: var(--color-button) !important;
  color: var(--color-white) !important;
  padding: 0 15px;
  border-radius: var(--but-card-radius);
  text-align: center;
  font-family: var(--font-family);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 20px auto 0;
}

.card_butoon.btn.fot_cont_url:hover {
  background: var(--but-card-hover-bg) !important;
  color: var(--color-white) !important;
}

.hrnt_photo_name {
  padding: 0;
  margin: 0 45px 20px 0;
  font-size: 28px;
  font-weight: 700;
  text-align: left;
}

.card_butoon.fot_cont_url.one_but {
  width: 100%;
}

#harant-photo-content {
  text-align: center;
  padding: 25px 20px 20px;
  margin: 0;
  line-height: 1;
}

#harant-photo-content .ph_box_but {
  display: flex;
  gap: 5px;
}

@media (max-width: 768px) {
  .card_butoon.btn.fot_cont_url {
    width: 48%;
  }
  .hrnt_photo_name {
    font-size: 22px;
  }
}
a.other_link_ {
  width: 120px;
  margin-right: 3px;
  border: 1px solid var(--color-gray);
  background: transparent !important;
  color: var(--color-heading) !important;
  line-height: 32px;
  padding: 0;
  position: relative;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 34px;
  margin-left: 0;
}

a.other_link_:after {
  font-family: "harant-icons";
  content: "\e909";
  background: none;
  line-height: 1;
  font-weight: 100;
  display: inline-block;
  position: absolute;
  right: 5px;
  top: calc(50% - 6px);
}

a.other_link_:hover {
  background: var(--color-gray) !important;
  color: var(--color-heading) !important;
  text-decoration: none;
}

.houzez-lazy-bg.houzez-lazyload {
  background-image: none !important;
}

.houzez-lazyload {
  border: 0 !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0) url(img/lazyloader-1.gif) no-repeat center !important;
  background-size: 16px auto !important;
}

.harant-cookie-policy {
  position: fixed;
  z-index: 1000;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.harant-cookie-policy .cookie-policy__container {
  position: relative;
  display: inline-flex;
  margin: 0px 15px 15px;
  padding: 8px 25px 8px 15px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.98);
  pointer-events: auto;
  box-shadow: 0px 0px 5px var(--color-border-muted);
  line-height: 2.2;
  align-items: center;
}

.harant-cookie-policy .cookie-policy__container a {
  font-size: 12px;
}

.harant-cookie-policy .cookie-policy__link {
  text-decoration: none;
  cursor: pointer;
  outline: currentcolor none medium;
  font-weight: 500;
  color: #3189cd;
}

.btn.cookie-policy__button {
  height: 34px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  background: var(--color-white);
  border-radius: var(--radius);
  color: var(--color-heading);
  text-decoration: none;
  border: 1px solid var(--color-gray);
  padding: 0px 20px;
  margin-left: 15px;
}

.btn.cookie-policy__button:hover {
  background-color: var(--color-gray);
  text-decoration: none;
  color: var(--color-heading);
}

.harant-cookie-policy .wrapper_inf b {
  cursor: pointer;
  color: var(--color-link-brand);
}

@media (max-width: 680px) {
  body .harant-cookie-policy {
    position: absolute !important;
    bottom: auto;
    top: 0;
    max-width: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
  }
  body .harant-cookie-policy:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background: var(--color-gray);
  }
  .harant-cookie-policy .cookie-policy__container {
    padding: 8px 25px 8px 25px;
    margin: 0;
    box-shadow: none;
  }
}
.buttons_card .btn_whatsapp:hover {
  background: var(--color-bg-success-light) !important;
}

.buttons_card .btn_site:hover {
  background: var(--color-warning-light) !important;
}

.buttons_card .btn_teleg:hover {
  background: #E7EDFF !important;
}

.buttons_card .btn_vk:hover {
  background: #E7EDFF !important;
}

.buttons_card .btn_whatsapp i, .buttons_card .btn_site i, .buttons_card .btn_teleg i, .buttons_card .btn_vk i {
  font-size: 22px;
  padding-left: 2px;
}

.buttons_card .btn_whatsapp i {
  color: var(--color-success) !important;
}

.buttons_card .btn_site i {
  color: #F3CC56 !important;
}

.buttons_card .btn_teleg i {
  color: #5B83CF !important;
}

.buttons_card .btn_vk i {
  color: #5B83CF !important;
}

body .buttons_card .btn.is_soc {
  padding: 0;
  background: var(--color-gray);
  border: none;
}

body .buttons_card .btn.is_soc a {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
}

/* popup city */
.nav-nemu__inner .country-landing, .nav_sidebar .country-landing.city_s {
  position: relative;
}

.popcity {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 20px 40px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  position: absolute;
  top: 35px;
  left: -25px;
  background-color: var(--color-white);
  z-index: 100;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 23px;
  color: #333;
  max-width: 310px;
  width: 310px;
  margin-left: 5px;
  cursor: default;
}

.popcity p {
  color: #333;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 0;
  margin-top: 0;
}

.city__city_title {
  margin-right: 5px;
  font-size: 18px;
}

.city__city_buttons {
  display: flex;
  justify-content: start;
  gap: 12px;
  flex-direction: row;
  margin-top: 16px;
}

.city__city_buttons button {
  height: 44px;
  box-sizing: border-box;
  align-items: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-family: inherit;
  line-height: 100%;
  justify-content: center;
  padding: 10px 19px;
  text-align: center;
  outline: none;
  position: relative;
  user-select: none;
}

.city__city_buttons .yes-b {
  color: var(--white-text);
  background-color: var(--color-button);
  font-weight: bold;
  border: none;
  border: 1px solid transparent;
}

.city__city_buttons .yes-b:hover {
  background-color: var(--color-purple);
}

.city__city_buttons .no-b {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
}

.city__city_buttons .no-b:hover {
  background-color: var(--color-gray);
}

.popcity.sticky_city {
  top: 112px;
}

@media (max-width: 814px) {
  .popcity {
    left: auto;
    right: -44px;
    position: absolute;
    top: 3px;
    transition: all 0.2s ease;
  }
}
/* end popup city */
@media only screen and (max-width: 1366px) {
  .content_404 .wrapper {
    padding: 110px 16px 177px !important;
  }
  .content_404 .wrapper:before {
    top: -80px;
    left: 32%;
  }
  .content_404 h1 {
    font-family: "Rubik-SemiBold", sans-serif;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 27px;
  }
}
@media only screen and (max-width: 990px) {
  .content_404 .wrapper:before {
    left: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .content_404 {
    padding-bottom: 150px !important;
  }
  .content_404 .wrapper:before {
    -webkit-transform: rotate(-31deg) scale(0.85);
    -ms-transform: rotate(-31deg) scale(0.85);
    transform: rotate(-31deg) scale(0.85);
    left: -236px;
    top: 125px;
  }
  .content_404 h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .content_404 {
    padding: 0 0 60px !important;
  }
  .content_404 .wrapper {
    padding: 57px 16px 172px !important;
  }
  .content_404 .wrapper:before {
    -webkit-transform: rotate(-31deg) scale(0.75);
    -ms-transform: rotate(-31deg) scale(0.75);
    transform: rotate(-31deg) scale(0.75);
    left: -275px;
    top: -30px;
  }
  .content_404 h1 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 22px;
  }
  .text_404 {
    margin-bottom: 22px;
  }
  .text_404 p {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 15px;
    width: 88%;
  }
  .buttons_404 .btn {
    width: 172px;
    height: 42px;
    line-height: 40px;
    border-radius: 9px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 580px) {
  .content_404 {
    padding: 0 0 60px !important;
  }
  .content_404 .wrapper {
    padding: 58px 16px 172px !important;
  }
  .content_404 .wrapper:before {
    -webkit-transform: rotate(-31deg) scale(0.65);
    -ms-transform: rotate(-31deg) scale(0.65);
    transform: rotate(-31deg) scale(0.65);
    left: -310px;
    top: -30px;
  }
  .buttons_404 .btn {
    margin-right: 7px;
  }
}
@font-face {
  font-family: "PT Sans";
  src: url("/wp-content/themes/houzez/css/fonts/PTSans-Regular1.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Sans";
  src: url("/wp-content/themes/houzez/css/fonts/PTSans-Bold1.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
header * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

body.lock {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1125px) {
  body.admin-bar #wp-admin-bar-customize,
  body.admin-bar #wp-admin-bar-wp-mail-smtp-menu,
  body.admin-bar #wp-admin-bar-houzez_options {
    display: none;
  }
}
@media (max-width: 1124px) {
  header .nav-nemu__inner {
    display: none !important;
  }
}
header button {
  background-color: transparent;
  border: none;
  outline: none;
}

header ul {
  list-style: none;
}

#auto_select_c {
  padding: 0 18px;
  cursor: pointer;
  color: #007aff;
}

@media (min-width: 991px) {
  .page-template-user_dashboard_properties header,
  .page-template-user_dashboard_reviews_about_colleague header,
  .page-template-user_dashboard_saved_search header,
  .page-template-user_dashboard_dobavit_dela header,
  .page-template-user_dashboard_add_cases header,
  .page-template-user_dashboard_profile header,
  .page-template-user_dashboard_submit header,
  .page-template-user_dashboard_favorites header,
  .page-template-user_dashboard_statistics header,
  .page-template-user_dashboard_recommendation header,
  .page-template-user_dashboard_crm header,
  .page-template-user_dashboard_mail_preferences header {
    display: none;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}
header.header-main-wrap.dashboard-header-main-wrap {
  height: initial;
  display: block;
}

html,
body {
  overflow-x: hidden;
}

body.lock,
.body.lock {
  overflow: hidden;
}

main {
  min-height: 100%;
}

input {
  outline: none;
  border: none;
}

header input::-webkit-search-decoration,
header input::-webkit-search-cancel-button,
header input::-webkit-search-results-button,
header input::-webkit-search-results-decoration {
  display: none;
}

header button {
  cursor: pointer;
  outline: none;
}

header h1,
header h2,
header h3,
header h4,
header h5,
header h6 {
  color: var(--color-heading);
}

header a {
  text-decoration: none;
  font-size: 16px;
  color: var(--color-Text);
  position: relative;
}

header .header_logo_desctop,
.header_logo_mobile {
  width: 132px;
  height: 47px;
  background: url("/wp-content/themes/houzez/img/logo-landing.svg") 0px 0px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.header_logo_mobile {
  max-width: 120px;
  height: 34px;
} /*header*/
header {
  height: 70px;
}

@media (max-width: 1100px) {
  header.show-cookie-block {
    height: 96px;
  }
}
header .logo-landing svg {
  max-width: 132px;
}

header .nav {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgb(255, 255, 255);
  z-index: 999;
  height: 64px;
  left: 0;
  padding: 10px;
  padding-top: 7px;
}

header .nav.navUser {
  position: fixed;
  width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 102;
  height: 64px;
  left: 0;
}

header .nav-nemu__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .nav.sticky {
  padding-bottom: 20px;
}

header .nav-menu__items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}

header .head-push {
  position: relative;
  width: 22px;
  height: 35px;
  display: block;
}

header .head-push .notification-circle {
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  height: 17px;
  width: 17px;
  color: var(--white-text);
  font-size: 9px;
  font-weight: 600;
  background-color: #e31010;
  border: 1px solid var(--color-white);
}

header .head-push .houzez-icon.icon-alarm-bell {
  transition: all 0.2s;
}

header .head-push .houzez-icon.icon-alarm-bell {
  font-size: 4px;
  color: var(--color-heading);
}

header .head-push .icon-alarm-bell:before {
  content: "";
}

header .head-push .dashboard-notification-wrap {
  display: block;
  position: relative;
  text-align: center;
  margin: auto;
  height: 34px;
  width: 34px;
  -webkit-appearance: none;
}

header .head-push .dashboard-notification-wrap,
.hrnt_mess_modal.mess_modal_top,
.top_verification_market {
  border-radius: 17px;
}

header .head-push .dashboard-notification-wrap:hover,
.hrnt_mess_modal.mess_modal_top:hover,
.top_verification_market:hover {
  transition: all 0.5s;
  background-color: var(--color-blend);
}

header .head-push:hover .dashboard-notification-wrap,
.hrnt_mess_modal.mess_modal_top:hover {
  background-color: var(--color-blend);
}

header .nav-nemu__inner .column:first-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .country-landing {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

header .country-landing a {
  transition: all 0.5s;
  border-radius: 9px;
}

header .country-landing .select-city:hover,
header .country-landing a:hover {
  background-color: var(--color-blend);
  transition: all 0.5s;
  border-radius: 9px;
  color: var(--color-heading);
}

header .nav-menu__item a,
header .nav-menu__item > span {
  color: var(--color-heading);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}

header .nav-menu__item a.region-head svg {
  display: none;
}

header .personal-area {
  padding: 6px 35px;
  color: var(--color-Text);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #65698f;
  border-radius: var(--radius);
  transition: all 0.5s;
}

header .personal-area:hover {
  transition: all 0.5s;
  color: var(--white-text);
  background-color: var(--color-Text);
}

header .btn-area-head {
  color: var(--color-heading);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

header .btn-area-head.btn-create-listing {
  border: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.8em 1em;
}

header .btn-area-head.btn-create-listing svg {
  margin-top: 3px;
}

.sub-menu__searchcity {
  border: 1px solid var(--color-gray);
  border-radius: 6px;
  padding: 0.7em 0.4em;
  height: 60px;
  border: none;
  background-color: var(--white-text);
  position: sticky;
  top: 0;
}

.sub-menu__searchcity input {
  border: 1px solid var(--color-gray);
  border-radius: 9px;
  padding-left: 7px;
  width: 100%;
  height: 100%;
  color: var(--color-heading);
}

header .region-head {
  color: var(--color-heading);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}

header .region-head > svg {
  width: 10px;
}

header .nav-nemu__inner .column:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

header .nav-nemu__inner .column:last-child .show-login-register-form svg {
  margin-left: 3px;
  margin-top: -2px;
}

header .nav-menu__item {
  position: relative;
  border-bottom: 1px solid transparent;
  z-index: 99;
  transition: all 0.2s;
}

header .nav-menu__item a svg {
  margin-top: 4px;
}

header .nav-menu__item:hover {
  background-color: var(--color-blend);
  transition: all 0.5s;
  border-radius: 9px;
}

header .sub-menu {
  position: absolute;
  top: 100%;
  width: 226px;
  transform: translateY(10%);
  opacity: 0;
  transition: all 0.2s;
  z-index: -2;
  background-color: var(--color-white);
  left: 0;
  padding: 11px;
  border-radius: 9px;
  border: 1px solid var(--color-gray);
  max-height: 80vh;
  visibility: hidden;
  pointer-events: none;
}

header .wrap-button-header-area .sub-menu {
  left: initial;
  right: 0;
  width: 307px;
}

header .sub-menu-laywer-cart {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .sub-menu-laywerCart__link {
  position: relative;
  display: block;
  background-color: var(--color-blend);
  border-radius: 9px;
}

header .verify-mark {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

header .sub-menu-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

header .sub-menu-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

header .submenu-contact-info {
  max-width: 150px;
}

header .sub-menu-name {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-heading);
}

header .sub-menu-email {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-heading);
  margin-top: 7px;
}

header .submenu-title {
  margin-bottom: 0px;
  font-size: 12px;
  color: var(--color-secondary);
  margin-left: 9px;
}

header .submenu-title-sec {
  margin-top: 14px;
}

header .wrap-button-header-area .prop-user-name svg {
  transform: rotate(90deg);
}

header .wrap-button-header-area .prop-name {
  margin-left: 9px;
  margin-right: 3px;
  font-size: 14px;
}

header .nav-menu__item .prop-user-name svg {
  margin-top: 1px;
}

header .wrap-button-header-area {
  margin-left: 26px;
}

header .wrap-button-header-area .sub-menu .sub-menu-item a {
  padding: 7px 8px;
}

header #cityDropdown {
  max-height: initial;
  overflow: auto;
  max-height: 500px;
  width: 245px;
  left: 0;
  padding: 0;
}

#modalLocationSelect .sub-menu__ul,
header #cityDropdown .sub-menu__ul {
  overflow: initial;
  max-height: initial;
  padding-left: 10px;
  padding-right: 10px;
}

#modalLocationSelect .sub-menu__ul {
  list-style: none;
}

header .sub-menu .menu-item {
  border-color: rgba(255, 255, 255, 0.15);
}

header .sub-menu .menu-item a::before {
  content: "";
}

header .sub-menu .menu-item:first-child {
  border: 0;
}

header .nav-menu__item:hover .sub-menu,
header .nav-menu__item.active .sub-menu {
  opacity: 1;
  z-index: 11;
  transition: all 0.2s;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

header .nav-menu__item .select-city,
header .nav-menu__item .select-cityd,
header .nav-menu__item a,
header .nav-menu__item > span {
  display: flex;
  text-decoration: none;
  height: 100%;
  width: 100%;
  padding: 0.8em 1em;
  align-items: center;
  gap: 6px;
}

#modalLocationSelect .sub-menu-item .select-city,
#modalLocationSelect .sub-menu-item a,
header .sub-menu-item a {
  padding: 0.7em 1em;
}

#modalLocationSelect .sub-menu-item .select-city:hover,
#modalLocationSelect .sub-menu-item a:hover,
header .sub-menu-item .select-city:hover,
header .sub-menu-item .select-cityd:hover,
header .sub-menu-item a:hover {
  background-color: var(--color-blend);
  transition: all 0.2s;
  color: var(--color-heading);
  border-radius: 9px;
  cursor: pointer;
}

header .sub-menu-item a:hover .verify-mark svg {
  transition: all 0.2s;
  transform: translateX(5px);
}

header .sub-menu-item a:hover .verify-mark svg > path {
  fill: var(--color-success);
  transition: all 0.2s;
}

header .button-search-wrap {
  position: relative;
  transition: all 0.5s;
  display: flex;
}

header .s-icon.removed {
  display: none;
}

header .close-wrap__srch {
  display: none;
}

header .head-search.active .close-wrap__srch {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

header .close-search-desktop {
  width: 14px;
  height: 14px;
}

header .head-s-input__wrap .search-icon {
  display: flex;
  align-items: center;
  padding-left: 15px;
}

header .button-search-wrap.desktop .form-search-public {
  margin-top: 0;
}

header .button-search-wrap.desktop .form-search-public .flex-search {
  padding-right: 0;
}

header .head-s-input__wrap {
  position: absolute;
  min-width: 0;
  opacity: 0;
  transition: all 0.5s;
  background: var(--color-white);
  top: -3px;
  right: -3px;
  height: 40px;
  transform-origin: right;
  transition: all 0.5s;
}

header .head-s-input__wrap-mobile {
  top: -100%;
  min-width: auto;
  padding: 13px;
  position: absolute;
  min-width: 0;
  opacity: 0;
  transition: all 0.5s;
  left: 25px;
}

header .head-s-input__wrap-mobile .search-icon:before {
  display: none;
}

header .head-s-input__wrap-mobile .form-group {
  margin-bottom: 0;
}

header .head-s-input__wrap-mobile .btn-no-right-padding {
  display: none;
}

header .head-s-input__wrap-mobile .houzez-search-form-js {
  width: 100%;
  margin-top: 0;
}

header .button-search-wrap .head-s-input__wrap {
  border: 1px solid;
  border-color: var(--color-gray);
  border-radius: 6px;
}

header .button-search-wrap .head-s-input__wrap.active {
  position: absolute;
  background: var(--color-white);
  z-index: 2;
  top: -3px;
  right: -3px;
  height: 40px;
  min-width: 768px; /* height: 40px; */
  transform-origin: right;
  transition: all 0.5s;
  opacity: 1;
}

header .popover.bs-popover-bottom {
  border: 1px solid var(--color-gray);
  border-radius: 9px;
  padding: 5px;
  max-width: 246px;
  width: 100%;
}

header .popover-header {
  background-color: var(--white-text);
  color: var(--color-secondary);
  border-bottom: 0;
}

header .popover-body .btn-default {
  border: 1px solid var(--color-gray);
  border-radius: var(--radius);
  margin-left: 11px;
}

header .popover-body .btn {
  font-size: 13px;
  line-height: 32px;
}

header .popover {
  padding-bottom: 0;
}

header .navUser .button-search-wrap .head-s-input__wrap.active {
  min-width: 715px;
}

header .head-s-input__wrap-mobile.active {
  position: absolute;
  background: var(--color-white);
  z-index: 2;
  top: -14px;
  right: -10px;
  border: 1px solid;
  border-color: #dce0e0;
  min-width: 700px;
  height: 48px;
  transform-origin: right;
  transition: all 0.5s;
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  z-index: 9999;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
}

header .head-s-input__wrap input {
  width: 0;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  opacity: 0;
}

header .head-s-input__wrap.active input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  opacity: 1;
}

header .head-s-input__wrap-mobile input {
  width: 0;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  opacity: 0;
}

header .head-s-input__wrap-mobile.active input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  opacity: 1;
  padding-left: 0;
  background: linear-gradient(269.59deg, #f0f7fa 0.97%, #f7f7f8 100.67%);
  border-radius: var(--radius);
  height: 45px;
  padding-left: 20px;
}

header .close-search-mobile {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .head-search {
  position: relative;
  z-index: 3;
  opacity: 1;
  display: flex;
  transition: all 0.5s;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}

header .head-search__mobile {
  margin-top: 1px;
}

.wraper_quest_open_h {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  border-radius: 9px;
  background: var(--color-blend);
  align-items: center;
  padding: 0.87em 10px;
  cursor: pointer;
  min-width: max-content;
  transition: all 0.5s ease-out;
  margin-left: 10px;
}

.butt_quest_open_h {
  transition: all 0.3s ease-out;
}

.wraper_quest_open_h:hover {
  background: var(--color-gray);
}

.wraper_quest_open_h:before {
  content: "\e91d";
  display: inline-block;
  width: 18px;
  height: 18px;
  font-family: "harant-icons";
  margin-right: 3px;
  font-size: 18px;
  line-height: 1;
  font-weight: 100;
}

.wraper_quest_open_h.search_law:before {
  content: "\e901";
}

.wraper_quest_open_h {
  transition: all 1s ease-out;
}

@media (max-width: 560px) {
  .butt_quest_open_h span {
    display: none;
  }
}
header .liked {
  position: relative;
  z-index: 3;
  opacity: 1;
  display: flex;
  transition: all 0.5s;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

header nav .btn-create-listing {
  border: none;
  border-radius: 9px;
  color: var(--color-heading);
  padding: 0.2em 1em;
}

header nav .btn-create-listing:hover {
  background-color: var(--color-blend) !important;
  color: var(--color-heading) !important;
}

header .head-search:hover {
  transition: all 0.5s;
  background-color: var(--color-blend);
}

header .liked:hover {
  transition: all 0.5s;
  background-color: var(--color-blend);
}

header .notify-icon-mobile {
  position: relative;
  display: none;
}

header .area-image-wrap {
  width: 25px;
  height: 25px;
}

header .area-image-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid grey;
}

.area-image-wrap.green img {
  border: 1px solid var(--color-success);
}

header .head-push.top_verification_market {
  align-items: center;
  display: flex;
  width: 34px;
  height: 34px;
  justify-content: center;
}

.top_verification_market span:after {
  content: "\e915";
  width: 26px;
  height: 26px;
  padding-top: 1px;
  padding-right: 0px;
  padding-left: 5px;
  font-family: "harant-icons";
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 23px;
}

header .nav-menu__mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .menu-personal-area {
  display: none;
}

header .head-s-input__wrap .btn-no-right-padding {
  display: none;
}

header .head-s-input__wrap .houzez-search-form-js,
header .head-s-input__wrap .advanced-search-v1,
header .head-s-input__wrap .d-flex,
header .head-s-input__wrap .form-group,
header .head-s-input__wrap .search-icon {
  width: 100%;
  height: 100%;
}

header .head-s-input__wrap .search-icon:before {
  display: none;
}

header .nav.nav-tabs {
  position: relative;
  padding-top: initial;
  height: initial;
  padding: initial;
  background-color: initial;
}

.hrnt_mess_modal {
  position: absolute;
  top: 0;
  right: 28px;
  cursor: pointer;
}

.hrnt_mess_modal.mess_modal_top {
  float: right;
  width: 34px;
  height: 34px;
  margin: auto;
  vertical-align: middle;
  text-align: center;
  position: relative;
  display: inline-block;
  right: auto;
}

.hrnt_mess_modal.mess_modal_top svg {
  margin-top: 5px;
}

header .mobile-logo svg {
  width: 100%;
  height: 45px;
}

@media (max-width: 768px) {
  header .mobile-logo svg {
    height: 34px;
  }
  .nav-nemu__inner .nav-menu__items,
  .btn.btn-create-listing.show-login-register-form {
    display: none;
  }
}
header .save-password-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: var(--color-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
} /*modalLocationSelect*/
#modalLocationSelect.modal {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
}

#modalLocationSelect .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  margin-top: 25%;
}

#modalLocationSelect .close-selectloc-modal {
  position: absolute;
  right: 3px;
  top: -2px;
  font-size: 26px;
  z-index: 10;
  background-color: transparent;
  border: none;
}

#modalLocationSelect .sub-menu {
  position: relative;
  transform: rotateX(0deg);
  border: none;
}

#modalLocationSelect .modal-body {
  padding: 21px 25px 10px;
  overflow: scroll;
} /*modalLocationSelect*/
header .nav-menu__mobile .icon-alarm-bell:before {
  content: "";
  width: 0;
  height: 0;
  font-size: 0;
}

@media (max-width: 1600px) {
  header .button-search-wrap .head-s-input__wrap.active {
    min-width: 768px;
  }
  header .navUser .button-search-wrap .head-s-input__wrap.active {
    min-width: 768px;
  }
  header .nav-menu__items {
    gap: 15px;
  }
  header .country-landing {
    margin-right: 0;
  }
}
header .burger-menu_nav {
  display: none;
}

body.admin-bar header .nav.navUser {
  top: 32px;
}

body.admin-bar header .nav.navUser.sticky {
  top: 32px;
}

@media (max-width: 1124px) {
  .dashboard-notification-wrap svg > path {
    fill: #050505;
  }
  header .navUser .liked-item {
    display: none;
  }
  header .ask-lawyer__inner .column:first-child {
    width: 100%;
  }
  header .nav .nav-nemu__inner .wraper_quest_open_h {
    display: none;
  }
  header .nav {
    padding: 13px;
  }
  header .nav-menu__mobile {
    display: flex;
  }
  header .burger-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .burger-menu_button {
    position: relative;
    height: 34px;
    width: 34px;
    display: inline-block;
    align-items: center;
    margin-left: 5px;
  } /*!*top_head_elemets*!TODO top_head_elemets 1124*/
  header .burger-menu_nav {
    top: 0px;
  }
  header .menu-personal-area {
    top: 0px;
  }
  header.show-cookie-block .header-nav.nav:not(.sticky) {
    top: 47px;
  }
  body.admin-bar header .nav.navUser {
    top: 46px;
  }
  body.admin-bar header .nav.navUser.sticky {
    top: 0px;
  } /*top_head_elemets*/ /*burger_btn TODO burger_btn 1124*/
  .mobile-logo {
    display: flex;
    align-items: center;
    max-width: 120px;
  }
  .burger-menu-col {
    display: flex;
    align-items: center;
    max-width: 72px;
    width: 100%;
    justify-self: flex-end;
    justify-content: space-between;
    gap: 15px;
  }
  .navUser .burger-menu-col {
    max-width: 68px;
  }
  header .burger-menu-col .show-login-register-form {
    margin-top: -4px;
  }
  .burger-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .burger-menu_button:before {
    font-family: "harant-icons";
    content: "\e903";
    width: 34px;
    height: 34px;
    display: block;
    margin: auto;
    font-size: 30px;
    padding-top: 5px;
    font-weight: 100;
    color: var(--color-heading);
  }
  .menu-personal-area.active .burger-menu_button:before,
  .burger-menu_nav .burger-menu_button:before {
    font-family: "harant-icons";
    content: "\e902";
  } /*burger_btn*/ /*burger-menu_nav TODO burger-menu_nav 1124*/
  header .burger-menu_nav {
    display: none;
  }
  header .burger-menu_nav {
    position: absolute;
    flex-direction: column;
    right: -100%;
    width: 50%;
    background-color: var(--color-white);
    z-index: 1001;
    height: 100vh;
    transition: all 0.5s;
    opacity: 1;
  }
  header .burger-menu-col .button-burger-wrap {
    width: 20px;
    height: 20px;
  }
  header .burger-menu_nav.active {
    right: 0;
    transition: all 0.6s;
    overflow-y: scroll;
    display: flex;
  }
  header .burger-menu_nav .nav-menu__items_mobile .country-landing {
    margin-left: 15px;
    width: 100%;
  }
  header .burger-menu_nav .nav-menu__items_mobile .country-landing {
    margin-left: 0;
  }
  header .burger_mobile_wrap {
    height: 64px;
    padding: 13px;
    display: flex;
    justify-content: flex-end;
  } /*burger-menu_nav*/
  header .mobile-logo {
    display: flex;
    align-items: center;
    max-width: 120px;
  }
  header .burger-menu-col {
    display: inline-block;
    align-items: center;
    max-width: initial;
    width: 100%; /*justify-self: flex-end;*/
    justify-content: flex-end;
    gap: 13px;
    max-width: max-content;
  }
  header .burger-menu-col .user-dashboard,
  header .burger-menu-col .button-search-wrap,
  header .burger-menu-col .button-head__push,
  header .burger-menu-col .show-login-register-form,
  header .burger-menu-col .button-burger-wrap {
    float: right;
    width: 34px;
    height: 34px;
    margin: auto;
    vertical-align: middle;
    text-align: center;
    position: relative;
    display: inline-block;
  }
  header .navUser .burger-menu-col {
    max-width: 100%;
    margin-right: 10px;
  }
  header .navUser .burger-menu_nav .burger-menu-col {
    max-width: 100%;
  }
  header .navUser .nav-menu__mobile .burger-menu-col {
    max-width: 172px;
  }
  header .nav.navUser {
    align-items: center;
  }
  header .nav.sticky .container {
    padding-left: 0;
    padding-right: 0;
  }
  header .nav .container {
    padding: 0;
  }
  header .nav-menu__item a {
    padding: 0.7em 1em;
  }
  header .country-landing a,
  header .nav-menu__items_mobile .show_location_select_modal {
    padding: 1em 1em;
    color: var(--color-heading);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    width: 100%;
  }
  header .menu-personal-area {
    position: absolute;
    right: -100%;
    display: none;
    flex-direction: column;
    background-color: var(--white-text);
    height: 100vh;
    width: 55%;
    z-index: 25;
    transition: all 0.5s;
  }
  header .menu-personal-area.active {
    right: 0;
    transition: all 0.5s;
    overflow-y: scroll;
    display: flex;
  }
  header .menu-personal-area .nav-menu__items_mobile {
    width: 100%;
  }
  header .nav.cookies {
    position: relative;
  }
  header .nav.sticky {
    padding: 13px;
    position: fixed;
  }
  header .nav.sticky.navUser {
    padding: 13px;
    height: 57px;
    top: 0;
  }
  header .burger-menu-col .notification-circle {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    font-weight: 600;
    height: 18px;
    width: 18px;
    color: var(--white-text);
    font-size: 9px;
    font-weight: 600;
    background-color: #e31010;
    border: 1px solid var(--color-white);
  }
  header .button-search-wrap__mobile .houzez-icon {
    font-size: 18px;
    color: var(--color-heading);
  }
  header .nav.navUser .head-search__mobile {
    display: none;
  }
  header .nav-menu__mobile .icon-alarm-bell:before {
    content: "";
    width: 0;
    height: 0;
    font-size: 0;
  }
  header .burger_mobile_wrap .dashboard-notification-wrap,
  header .nav-menu__mobile .dashboard-notification-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 34px;
    height: 34px;
    margin-top: 1px;
  }
  header .nav-menu__mobile .button-search-wrap__mobile .houzez-icon svg {
    margin-top: 4px;
  }
  #modalLocationSelect .modal-body {
    height: 43vh;
    padding: 0;
    border-radius: 9px;
  }
  #modalLocationSelect .modal-content {
    border-radius: 9px;
    overflow: hidden;
    padding: 5px;
    border: none !important;
  }
  #modalLocationSelect .modal-dialog {
    width: 90%;
    border-radius: 9px;
  }
  #modalLocationSelect .sub-menu {
    padding-left: 0;
    max-height: 100%;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    border-radius: 9px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  #modalLocationSelect.modal .row {
    margin-left: 0;
    margin-right: 0;
  }
  #modalLocationSelect .close-selectloc-modal {
    right: 10px;
    top: 5px;
  }
  .sub-menu__searchcity {
    position: sticky;
    top: 0;
    background-color: var(--white-text);
    border: none;
    padding: 0.7em 0.5em;
    height: 90px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    padding-top: 30px;
  }
  .cityDropdownMobile .sub-menu-item {
    border-radius: 9px;
  }
  .sub-menu__searchcity input {
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gray);
    border-radius: 9px;
    padding-left: 7px;
    color: var(--color-heading);
  }
  #cityDropdownMobile .sub-menu__ul {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 9px;
  }
  #cityDropdownMobile .sub-menu__ul .sub-menu-item .select-city,
  #cityDropdownMobile .sub-menu__ul .sub-menu-item a {
    display: block;
    width: 100%;
    height: 100%;
  }
  header .nav {
    padding: 13px;
  }
}
header .submenu-title.submenu-title-sec span {
  padding: 0px;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  header,
  header .nav {
    height: 57px;
  }
  header .nav {
    padding: 11px 13px 13px 13px;
  }
  header .nav.sticky {
    height: 57px;
    padding: 11px 13px 13px 13px;
  }
  header .nav.sticky .container {
    padding-left: 0;
    padding-right: 0;
  }
  header .nav .container {
    padding: 0;
    margin-top: 0;
  }
  header .submenu-title {
    padding-left: 10px; /*margin-top: 15px;*/
  }
  header .submenu-title-sec {
    padding-left: 10px;
  }
  header .menu-personal-area .nav-menu__items_mobile {
    padding-left: 12px;
  }
  .wraper_quest_open_h {
    padding: 0.5em 10px;
    height: 37px;
  }
}
@media (max-width: 450px) {
  header .burger_mobile_wrap {
    height: 57px;
  }
  header .nav-menu__item:hover {
    border: none;
  }
  header .nav.sticky .container {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }
  header .nav .container {
    padding: 0;
    min-height: 37px;
  }
  header .nav {
    height: 57px;
  }
  header .menu-personal-area.active .nav-menu__item {
    max-width: 266px;
  }
  header .sub-menu-avatar {
    width: 40px;
    height: 40px;
  }
  header .nav-menu__items_mobile {
    width: 95%;
    padding-left: 10px;
    margin-bottom: 200px;
  }
}
@media (max-width: 390px) {
  header .menu-personal-area.active .nav-menu__item {
    max-width: 247px;
  }
}
@media (max-width: 375px) {
  header .menu-personal-area.active .nav-menu__item {
    max-width: 239px;
  }
}
@media (max-width: 360px) {
  header .menu-personal-area.active .nav-menu__item {
    max-width: 231px;
  }
}
@media (max-width: 320px) {
  header .menu-personal-area.active .nav-menu__item {
    max-width: 209px;
  }
  header .menu-personal-area .nav-menu__items_mobile {
    padding-left: 7px;
  }
}
header .overlay-header {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 22;
  left: 0;
  top: 0;
  background: rgba(30, 33, 57, 0.4);
  transition: visibility 0.3s linear 0.6s, opacity 0.6s linear;
  visibility: hidden;
}

body.admin-bar header .nav.navUser {
  position: absolute;
}

body.admin-bar header .nav.navUser.sticky {
  position: fixed;
}

header .overlay-header.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

@media (max-width: 1124px) {
  .home .advanced-search-nav {
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  .main-header.down-header {
    height: 150px;
  }
  .main-header.down-header .header-nav.nav {
    margin-top: 98px;
  }
  header .nav.sticky {
    border-bottom: 1px solid #ebebeb;
  }
}
@media (max-width: 778px) {
  #main-wrap.down-main-wrap {
    margin-top: 14px;
  }
  .main-header.down-header .header-nav.nav {
    margin-top: 116px;
  }
} /*children menu*/
.menu__children_search {
  position: absolute;
  background: var(--color-white);
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  left: 0;
  top: 42px;
  visibility: hidden;
  z-index: 999;
}

header li.nav-menu__item:hover .menu__children_search {
  visibility: visible;
}

.menu__children_search:hover {
  box-shadow: none;
}

li.menu__children_link:hover .menuitem__cont_content_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.15);
  z-index: -2;
}

.menu__children_search li {
  padding: 8px;
}

.menuitem__cont_title {
  width: 170px;
  font-size: 16px;
  cursor: pointer;
}

.menuitem__cont_title > div,
.menu__children_link .menuitem__cont_title > div a {
  position: relative;
  padding: 5px 20px 5px 10px;
  line-height: 1.2;
  min-height: 48px;
}

.menu__children_link .menuitem__cont_title > div {
  padding: 0;
}

.menu__children_link .menuitem__cont_title > div a:after,
.menuitem__show_all:after {
  content: "\e907";
  display: inline-block;
  line-height: 1;
  font-family: "harant-icons";
  position: absolute;
  right: 5px;
  top: calc(50% - 8px);
}

.menu__children_link .menuitem__cont_title > div:after {
  width: 0px;
  height: 0px;
  content: "";
}

.menu__children_link .menuitem__cont_title > div a:after,
.menuitem__show_all:after {
  font-family: "harant-icons";
  content: "\e909";
  background: none;
  line-height: 1;
  font-weight: 100;
}

.menuitem__show_all:after {
  right: -18px;
  top: calc(50% - 6px);
}

.menuitem__show_all:hover {
  color: #5c83cf;
}

.menu__children_search li:hover .menuitem__cont_title {
  background: var(--color-blend);
  border-radius: 8px;
  font-weight: 700;
}

.menu__children_search li:hover .menuitem__cont_title a {
  font-weight: 700;
}

.menuitem__cont_content {
  visibility: hidden;
}

.menu__children_search li:hover .menuitem__cont_content {
  visibility: visible;
}

.menuitem__cont_box_list {
  background-color: var(--color-white);
  display: block;
  left: 0;
  top: 0;
  padding-left: 192px;
  position: absolute;
  transition: none;
  z-index: -1;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  width: 60vw;
  max-height: 87vh;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 940px;
  height: auto;
}

.menu__children_que .menuitem__cont_box_list {
  width: 54vw;
  max-width: 840px;
}

.menu__children_blog .menuitem__cont_box_list {
  width: 45vw;
  max-width: 702px;
}

.menu__children_que .menuitem__cont_box_list ul {
  -moz-column-width: 145px;
  column-width: 145px;
}

.menu__children_blog .menuitem__cont_box_list ul {
  -moz-column-width: 150px;
  column-width: 150px;
}

.menuitem__cont_box_list ul {
  max-height: 258px !important;
  -moz-column-width: 150px;
  column-width: 140px;
  overflow: hidden;
  max-height: 220px;
  -webkit-transition: max-height 0.3s ease-in-out;
  -moz-transition: max-height 0.3s ease-in-out;
  -ms-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  height: 100%;
  display: block;
}

.menu__type__box .menuitem__cont_box_list ul {
  column-width: 170px;
}

.menu__type__box .menuitem__cont_box_list ul li a {
  max-width: 185px;
}

.menuitem__cont_box_list ul li {
  color: #3d4658;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  padding: 0;
  white-space: nowrap;
}

.menuitem__cont_box_list ul li a {
  padding: 7px 10px;
  border-radius: 9px;
  color: #3d4658;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 97%;
  display: block;
  margin-bottom: 2px;
}

.menu__children_search a {
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.menuitem__cont_box_list ul li a:hover {
  background: var(--color-blend);
  font-weight: 700;
  color: var(--color-heading);
}

.menuitem__cont_wraper {
  padding: 15px 15px 25px;
  border-left: 1px solid #eaeaea;
  z-index: 999;
  position: relative;
  min-height: 208px;
}

.menuitem__cont_box_list .menuitem__cont_wraper.active ul {
  max-height: max-content;
  margin-bottom: 15px;
  -webkit-transition: max-height 0.3s ease-in-out;
  -moz-transition: max-height 0.3s ease-in-out;
  -ms-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  height: 100%;
}

.menuitem__cont_box_title {
  color: #3d4658;
  font-size: 16px;
  font-weight: 700;
  padding: 0 10px 5px;
}

html a.menuitem__show_all {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #3d4658;
  padding-right: 25px;
  cursor: pointer;
  margin-left: 10px;
  padding: 0px;
  margin-top: 13px;
  max-width: max-content;
}

@media (max-width: 1124px) {
  html a.menuitem__show_all {
    margin-top: 0px;
  }
} /*mobile menu*/
.slider_menu_mob,
.nav-menu__items_mobile .nav-menu__item > a {
  min-height: 28px;
  position: relative;
  padding: 5px 20px 5px 15px;
  min-height: 48px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.slider_menu_mob svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  margin-left: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}

.slider_menu_mob.active svg,
.menuitem__container.active .menuitem__cont_title svg {
  transform: rotate(180deg);
  -webkit-transition: 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}

.slider_menu_mob.active {
  background: var(--color-blend);
  border-radius: 8px;
  font-weight: 700;
}

.mobile__child_menu .menuitem__container.active .menuitem__cont_title > div::after {
  transform: rotate(180deg);
  -webkit-transition: 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}

.mobile__child_menu.menu__children_search li {
  padding: 8px 0;
}

.mobile__child_menu .menuitem__show_all {
  margin-left: 0px;
  font-size: 14px;
  margin: 7px 15px;
  font-size: 14px;
}

.mobile__child_menu.menu__children_search {
  top: 0;
  box-shadow: none;
}

header li.nav-menu__item:hover .mobile__child_menu.menu__children_search,
.mobile__child_menu.menu__children_search li:hover .menuitem__cont_content {
  visibility: hidden;
}

.mobile__child_menu.menu__children_search .menuitem__container.active .menuitem__cont_content {
  visibility: visible;
  overflow: auto;
}

.mobile__child_menu .menuitem__cont_title {
  width: 100%;
  position: relative;
}

.mobile__child_menu .menuitem__cont_title > div,
.mobile__child_menu .menu__children_link .menuitem__cont_title > div a {
  align-items: center;
  display: flex;
  padding: 5px 30px 5px 10px;
  margin-left: 15px;
  position: unset;
  justify-content: space-between;
}

.mobile__child_menu .menuitem__cont_title > div {
  padding: 5px 24px 5px 10px;
}

.mobile__child_menu .menuitem__cont_title > div svg {
  width: 11px;
  height: 11px;
  margin-left: 10px;
}

.mobile__child_menu .menuitem__container.active .menuitem__cont_title > div,
.mobile__child_menu .menu__children_link .menuitem__container.active .menuitem__cont_title > div a {
  background: var(--color-blend);
  border-radius: 8px;
  font-weight: 700;
  color: var(--color-heading);
}

.mobile__child_menu .menu__children_link .menuitem__cont_title > div {
  padding: 0;
  margin-left: 0px;
}

.mobile__child_menu .menuitem__cont_title > div::after {
  -webkit-transition: 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}

.mobile__child_menu .menuitem__cont_box_list {
  padding-left: 0;
  box-shadow: none;
  width: 100%;
  z-index: 9;
  max-height: 51vh;
}

.mobile__child_menu .menuitem__cont_box_list ul li a {
  padding-left: 15px;
}

.mobile__child_menu .menuitem__container.active .menuitem__cont_box_list {
  position: relative;
}

.menuitem__container.active .menuitem__cont_content {
  visibility: visible;
}

.mobile__child_menu .menuitem__cont_box_list ul li {
  padding: 0;
}

.mobile__child_menu .menuitem__cont_wraper {
  border: none;
  padding: 5px 10px 0px;
}

.mobile__child_menu .menuitem__cont_box_list ul {
  -moz-column-width: auto;
  column-width: auto;
  max-height: 336px;
  overflow-y: auto;
}

header .nav-menu__items_mobile .nav-menu__item:hover,
.mobile__child_menu.menu__children_search li:hover .menuitem__cont_title,
.mobile__child_menu.menu__children_search .menuitem__cont_box_list ul li a:hover,
header .nav-menu__items_mobile .country-landing a:hover {
  border: none;
  background: none;
}

header .country-landing .region-head {
  padding-right: 8px;
  padding-left: 28px;
}

header .nav-menu__item > span,
header .nav-menu__item.link_catalog > a {
  padding-right: 25px;
}

header .nav-menu__items_mobile .show_location_select_modal {
  position: relative;
  padding-left: 27px;
  margin-left: 5px;
}

header .country-landing .region-head:before,
header .nav-menu__items_mobile .show_location_select_modal:before {
  content: "\e96c";
  display: inline-block;
  width: 13px;
  height: 14px;
  font-family: "harant-icons";
  background-size: 100%;
  position: absolute;
  left: 10px;
  top: calc(50% - 9px);
  font-size: 14px;
}

header .nav-menu__item > span:after,
header .nav-menu__item.link_catalog > a:after {
  content: "\e905";
  display: inline-block;
  width: 12px;
  height: 12px;
  font-family: "harant-icons";
  position: absolute;
  right: 6px;
  top: calc(50% - 8px);
  border: none;
  line-height: 1;
  font-size: 18px;
}

header .nav-menu__item.link_catalog.not_arrow > a:after,
.slider_menu_mob.not_arrow:after {
  content: "";
}

header .nav-menu__item > span.region-head:after,
header .nav-menu__item > a.region-head:after {
  background: none;
  width: 0;
  height: 0px;
  display: none;
}

#cityDropdown .sub-menu__ul .select-city,
#cityDropdown .sub-menu__ul .select-cityd {
  padding: 7px 8px;
  line-height: 16px;
}

@media (max-width: 540px) {
  header .burger-menu_nav.active {
    width: 70%;
    display: flex;
  }
}