.list_page {
  position: relative;
}

.list_page:before {
  content: "";
  position: absolute;
  background: #fafaff;
  width: 100%;
  left: 0;
  height: 80px;
}

.list_page .top-heading {
  max-width: 1136px;
  margin: 0 auto;
  position: relative;
  padding: 13px 35px;
}

.list_page .top-heading h1 {
  font-weight: 400;
  font-size: 14px;
  color: #5673B1;
}

@media (max-width: 767px) {
  .list_page .top-heading {
    text-align: center;
  }
}

.list_page .filter_btn {
  position: fixed;
  bottom: 20px;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff100;
  border: none;
  padding: 15px 35px;
  border-radius: 55px;
  font-weight: 800;
  font-size: 17px;
  line-height: 17px;
  cursor: pointer;
  color: #0B2766;
  transition-property: color;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.list_page .filter_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b2766;
  border-radius: 100%;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.list_page .filter_btn:hover {
  color: #fff;
}

.list_page .filter_btn:hover:before {
  background: #0b2766;
  transform: scale(2);
}

.list_haed {
  background: #FFFFFF;
  border: 1px solid #E0E6F2;
  box-sizing: border-box;
  box-shadow: 0px 6px 15px rgba(31, 68, 150, 0.1);
  border-radius: 20px;
  max-width: 1136px;
  margin: 0 auto;
  padding: 25px 35px;
  z-index: 9;
  position: relative;
}

.list_haed .search_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list_haed .search_header .search_box {
  position: relative;
  width: 100%;
}

.list_haed .search_header .search_box input {
  background-image: url("/images/search_icon_list.svg");
  border: none;
  background-repeat: no-repeat;
  padding: 10px 10px 10px 35px;
  background-position: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: #C5D0E8;
}

@media (max-width: 767px) {
  .list_haed .search_header .search_box input {
    background-image: url("/images/search_icon_list_dark.svg");
  }
}

.list_haed .search_header .search_box input::-moz-placeholder {
  color: #C5D0E8;
}

.list_haed .search_header .search_box input:-ms-input-placeholder {
  color: #C5D0E8;
}

.list_haed .search_header .search_box input::placeholder {
  color: #C5D0E8;
}

@media (max-width: 767px) {
  .list_haed .search_header .search_box input::-moz-placeholder {
    color: #2A4279;
  }
  .list_haed .search_header .search_box input:-ms-input-placeholder {
    color: #2A4279;
  }
  .list_haed .search_header .search_box input::placeholder {
    color: #2A4279;
  }
}

.list_haed .search_header .search_box input:focus {
  outline: none;
}

.list_haed .search_header .search_box .dropdown_wrap {
  position: absolute;
  background: #fff;
  width: 100%;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 15px rgba(31, 68, 150, 0.1);
  top: 100%;
  overflow: hidden;
  display: none;
  z-index: 1;
  max-height: 200px;
  overflow-y: auto;
}

.list_haed .search_header .search_box .dropdown_wrap ul li {
  padding: 10px;
  display: inline-block;
  width: 100%;
  font-size: 12px;
  line-height: 100%;
  color: #5673B1;
  cursor: pointer;
  text-transform: capitalize;
}

.list_haed .search_header .search_box .dropdown_wrap ul li.hidden {
  display: none;
}

.list_haed .search_header .search_box .dropdown_wrap ul li.filtered {
  display: none;
}

.list_haed .search_header .search_box .dropdown_wrap ul li.active {
  background: #eeeeee;
}

.list_haed .search_header .search_box .dropdown_wrap.visible {
  display: block;
}

.list_haed .search_header .btn_grid .add_btn {
  background: #F8F9FD;
  border-radius: 10px;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  line-height: 17px;
  color: #1F4496;
}

.list_haed .search_header .btn_grid .enter_btn {
  font-size: 14px;
  line-height: 170%;
  color: #0B2766;
  background: none;
  border: none;
  margin: 0 0 0 10px;
  cursor: pointer;
}

.list_haed .search_header .btn_grid .enter_btn span {
  font-weight: bold;
}

.list_haed .search_result .search_result_inner ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.list_haed .search_result .search_result_inner ul li {
  background: #F8F9FD;
  border-radius: 100px;
  font-size: 14px;
  line-height: 170%;
  color: #5673B1;
  padding: 3px 30px 3px 10px;
  position: relative;
  margin: 0 8px 8px 0;
}

.list_haed .search_result .search_result_inner ul li span {
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
  width: 10px;
  height: 10px;
  background-image: url(/images/cross_icon.png);
  background-repeat: no-repeat;
}

.list_haed .dropdown_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 33px 0 0;
}

.list_haed .dropdown_list input:focus,
.list_haed .dropdown_list input:focus-visible {
  outline: none;
}

.list_haed .dropdown_list .Furniture_btn {
  width: 11%;
  padding-left: 20px;
}

.list_haed .dropdown_list .Furniture_btn.hide {
  display: none;
}

.list_haed .dropdown_list .Furniture_btn label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 150%;
  color: #5673B1;
  cursor: pointer;
}

.list_haed .dropdown_list .Furniture_btn label input {
  display: none;
}

.list_haed .dropdown_list .Furniture_btn label input:checked + span {
  background: #fff100;
  border-color: #fff100;
}

.list_haed .dropdown_list .Furniture_btn label input:checked + span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border-left: 2px solid #0B2766;
  border-bottom: 2px solid #0B2766;
  transform: rotate(-45deg);
  left: 2px;
  top: 4px;
}

.list_haed .dropdown_list .Furniture_btn label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #C5D0E8;
  box-sizing: border-box;
  border-radius: 3px;
  margin: 0 7px 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .ajouter-btn-grp {
    width: 100%;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 389px) {
  .list_haed .dropdown_list .ajouter-btn-grp {
    flex-direction: column;
    justify-content: center;
  }
}

.list_haed .dropdown_list .ajouter-btn-grp .zero_btn {
  display: none;
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .ajouter-btn-grp .zero_btn {
    margin: 20px 0 0;
    background: #F5F5FF;
    padding: 16px 20px;
    border-radius: 55px;
    border: none;
    font-weight: 800;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    color: #0B2766;
    transition-property: color;
    transition: all 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-align: center;
    display: block;
  }

  .list_haed .dropdown_list .ajouter-btn-grp .zero_btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e0e0ec;
    border-radius: 100%;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
  }
}

.list_haed .dropdown_list .ajouter-btn-grp .zero_btn:hover:before {
  transform: scale(2);
}

.list_haed .dropdown_list .ajouter-btn-grp .continue_btn {
  margin: 20px 0 0;
}

.list_haed .dropdown_list .drop_block {
  padding: 5px 32px 0;
  border-right: 1px solid rgba(129, 146, 184, 0.2);
}

.list_haed .dropdown_list .drop_block:first-child {
  width: 15%;
  padding-left: 0;
}

@media (min-width: 768px) {
  .list_haed .dropdown_list .drop_block:first-child.for-sale {
    width: 17%;
  }
}

.list_haed .dropdown_list .drop_block:nth-child(2) {
  width: 20%;
}

@media (min-width: 768px) {
  .list_haed .dropdown_list .drop_block:nth-child(2).for-sale {
    width: 23%;
  }
}

.list_haed .dropdown_list .drop_block:nth-child(3) {
  width: 27%;
}

@media (min-width: 768px) {
  .list_haed .dropdown_list .drop_block:nth-child(3).for-sale {
    width: 32%;
  }
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .drop_block:nth-child(3) label {
    display: none;
  }
}

.list_haed .dropdown_list .drop_block:nth-child(4) {
  width: 27%;
}

@media (min-width: 768px) {
  .list_haed .dropdown_list .drop_block:nth-child(4).for-sale {
    width: 31%;
    border-right: none;
    padding-right: 0;
  }
}

.list_haed .dropdown_list .drop_block label {
  width: 100%;
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: #0B2766;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list_haed .dropdown_list .drop_block .double_dropdown {
  display: flex;
}

.list_haed .dropdown_list .drop_block .double_dropdown .label-heading {
  width: 50%;
  padding: 0px 10px 5px 0px;
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .drop_block .double_dropdown .label-heading {
    width: 100%;
    border: 1px solid #E0E6F2;
    padding: 10px 0px;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0px 3px 5px rgba(31, 68, 150, 0.1);
  }
}

.list_haed .dropdown_list .drop_block .double_dropdown .label-heading .chamber-room {
  width: 100%;
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: #0B2766;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .list_haed .dropdown_list .drop_block .double_dropdown .label-heading .chamber-room {
    display: none;
  }
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .drop_block .double_dropdown .label-heading .chamber-room {
    padding: 0px 25px;
  }
}

.list_haed .dropdown_list .drop_block .double_dropdown .dropdown_wrap {
  position: relative;
  width: 100%;
}

.list_haed .dropdown_list .drop_block .double_dropdown .dropdown_wrap:first-child p:before {
  right: 15px;
}

.list_haed .dropdown_list .drop_block .list_double {
  display: flex;
  justify-content: space-between;
}

.list_haed .dropdown_list .drop_block .list_double .box {
  width: 50%;
}

.list_haed .dropdown_list .drop_block .list_double .box:first-child .dropdown_wrap p:before {
  right: 15px;
}

.list_haed .dropdown_list .drop_block .list_double.for_sale.hide {
  display: none;
}

.list_haed .dropdown_list .drop_block .list_double.for_sale.show {
  display: flex;
}

.list_haed .dropdown_list .drop_block .list_double.for_rent.hide {
  display: none;
}

.list_haed .dropdown_list .drop_block .list_double.for_rent.show {
  display: flex;
}

.list_haed .dropdown_list .drop_block .dropdown_wrap {
  position: relative;
  /*&:hover {
      ul {
          display: block;
      }
  }*/
}

.list_haed .dropdown_list .drop_block .dropdown_wrap p {
  font-size: 14px;
  line-height: 150%;
  color: #5673B1;
  cursor: pointer;
  padding: 0 10px 5px 0;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .drop_block .dropdown_wrap p {
    margin: 0px 25px;
  }
}

.list_haed .dropdown_list .drop_block .dropdown_wrap p:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #C5D0E8;
  border-radius: 2px;
  right: 0;
  top: 9px;
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .drop_block .dropdown_wrap p:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #C5D0E8;
    top: 0;
  }
}

.list_haed .dropdown_list .drop_block .dropdown_wrap ul {
  display: none;
  position: absolute;
  background: #fff;
  width: 100%;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 15px rgba(31, 68, 150, 0.1);
  top: 100%;
  overflow: hidden;
  z-index: 99;
  max-height: 180px;
  overflow-y: auto;
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .drop_block .dropdown_wrap ul {
    border: 1px solid #e0e6f2;
    max-height: 170px;
  }
}

.list_haed .dropdown_list .drop_block .dropdown_wrap ul li {
  padding: 10px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  font-size: 12px;
  line-height: 100%;
  color: #5673B1;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 767px) {
  .list_haed .dropdown_list .drop_block .dropdown_wrap ul li {
    padding: 10px 25px;
  }
}

.list_haed .dropdown_list .drop_block .dropdown_wrap ul li:hover {
  background: #eeeeee;
  border-color: #0a2c71;
}

.list_haed .dropdown_list .drop_block .dropdown_wrap ul input + label {
  padding: 0 0 0 7px;
}

.list_haed .dropdown_list .drop_block .dropdown_wrap ul.active {
  display: block;
}

.list_haed .dropdown_list .drop_block .dropdown_wrap ul.visible {
  display: block;
}

.list_wrapper {
  padding: 60px 0 0;
}

.list_wrapper .card_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.list_wrapper .card_head .left {
  width: 50%;
  display: inline-flex;
  align-items: center;
}

.list_wrapper .card_head .left .card_search {
  position: relative;
}

.list_wrapper .card_head .left .card_search:before {
  content: "";
  position: absolute;
  background-image: url(/images/card_search.svg);
  background-position: 0px 0;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  left: 10px;
  top: 7px;
  z-index: 1;
}

.list_wrapper .card_head .left .card_search input {
  background: #1C3F8D;
  box-shadow: 0px 6px 15px rgba(31, 68, 150, 0.1);
  border-radius: 5px;
  padding: 6px 10px 6px 35px;
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  border: none;
  color: #fff;
  width: 190px;
}

.list_wrapper .card_head .left .card_search input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.list_wrapper .card_head .left .card_search input::-moz-placeholder {
  color: #FFFFFF;
}

.list_wrapper .card_head .left .card_search input:-ms-input-placeholder {
  color: #FFFFFF;
}

.list_wrapper .card_head .left .card_search input::placeholder {
  color: #FFFFFF;
}

.list_wrapper .card_head .left .card_search input:focus {
  outline: none;
}

.list_wrapper .card_head .left p {
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #5673B1;
  padding: 0 0 0 20px;
  cursor: pointer;
}

.list_wrapper .card_head .right {
  width: 50%;
  display: inline-flex;
  justify-content: flex-end;
}

.list_wrapper .card_head .right .txt {
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: #0B2766;
  margin: 0 15px 0 0;
}

.list_wrapper .card_head .right .dropdown_wrap {
  position: relative;
  min-width: 100px;
  /*&:hover {
      ul {
          display: block;

      }
  }*/
}

.list_wrapper .card_head .right .dropdown_wrap#estate ul {
  right: 0;
  min-width: 150px;
}

.list_wrapper .card_head .right .dropdown_wrap p {
  font-size: 14px;
  line-height: 150%;
  color: #5673B1;
  position: relative;
  padding: 0 17px 0 0;
  cursor: pointer;
}

.list_wrapper .card_head .right .dropdown_wrap p:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #C5D0E8;
  border-radius: 2px;
  right: 0;
  top: 9px;
}

.list_wrapper .card_head .right .dropdown_wrap ul {
  display: none;
  position: absolute;
  background: #fff;
  width: 100%;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 15px rgba(31, 68, 150, 0.1);
  top: 100%;
  overflow: hidden;
  z-index: 8;
  text-align: left;
}

.list_wrapper .card_head .right .dropdown_wrap ul li {
  padding: 10px;
  display: inline-block;
  width: 100%;
  font-size: 12px;
  line-height: 100%;
  color: #5673B1;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all 0.5s ease-in-out;
}

.list_wrapper .card_head .right .dropdown_wrap ul li:hover {
  background: #eeeeee;
  border-color: #0a2c71;
}

.list_wrapper .card_head .right .dropdown_wrap ul.active {
  display: block;
}

.list_wrapper .card_head .right .dropdown_wrap:last-child {
  margin: 0 0 0 30px;
}

.list_wrapper .estimation_card,
.list_wrapper .contact_card,
.list_wrapper .new-tag {
  display: none;
}

.list_wrapper .list_block_box {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  padding: 15px 0 0;
}

.list_wrapper .list_block_box .box_success {
  width: 33.3%;
  margin: 0 0 40px;
  position: relative;
}

.list_wrapper .list_block_box .box_success .card__Box {
  display: flex;
  width: calc(100% - 20px);
  align-items: center;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
}

.list_wrapper .list_block_box .box_success .card__Box:hover {
  box-shadow: 0px 6px 15px rgba(31, 68, 150, 0.18);
}

.list_wrapper .list_block_box .box_success .card__Box.color_card {
  background: linear-gradient(180deg, #1F4496 0%, #0B2766 100%), #0B2766;
  box-shadow: 0px 6px 15px rgba(31, 68, 150, 0.1), 0px 6px 15px rgba(31, 68, 150, 0.1);
  border-radius: 10px;
  height: 100%;
}

.list_wrapper .list_block_box .box_success .card__Box.no_link {
  cursor: initial;
}

.list_wrapper .list_block_box .box_success figure {
  border-radius: 10px;
  overflow: hidden;
  /*cursor: pointer;*/
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  width: 100%;
}

.list_wrapper .list_block_box .box_success figure .img {
  position: relative;
  display: inline-grid;
}

.list_wrapper .list_block_box .box_success figure .img.loaded:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #00000054;
}

.list_wrapper .list_block_box .box_success figure .img .main_img {
  display: flex;
}

.list_wrapper .list_block_box .box_success figure .img .icon {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 16px;
  width: 68px;
}

.list_wrapper .list_block_box .box_success figure .img .img_main {
  min-height: 190px;
  max-height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.list_wrapper .list_block_box .box_success figure .img .side_bar {
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  text-align: right;
  color: #0B2766;
  background: rgba(255, 241, 0, 0.8);
  border-radius: 40px 0px 0px 40px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 24px;
  padding: 6px 17px 6px 20px;
}

.list_wrapper .list_block_box .box_success figure .img .new {
  font-weight: 800;
  text-align: left;
  border-radius: 0 40px 40px 0;
  left: 0;
  right: auto;
  top: 24px;
  padding: 6px 20px 6px 17px;
}

.list_wrapper .list_block_box .box_success figure figcaption {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px 20px;
  border: 1px solid #E0E6F2;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
  background: #fff;
}

.list_wrapper .list_block_box .box_success figure figcaption ul {
  width: 100%;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li {
  display: flex;
  justify-content: space-between;
  padding: 0 0 6px;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li:first-child {
  padding: 0px 0 17px;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li:last-child {
  padding: 0;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li h2 {
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: #0B2766;
  /*white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;*/
  width: 69%;
  min-height: 42px;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li h2:last-child {
  text-align: right;
  width: 29%;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li p {
  font-size: 14px;
  line-height: 150%;
  color: #5673B1;
  width: 49%;
  min-height: 21px;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li p:last-child {
  text-align: right;
}

.list_wrapper .list_block_box .box_success figure figcaption ul li p:first-child {
  text-align: left;
}

.list_wrapper .list_block_box .box_success .hover_box {
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  padding: 32px 15px;
  flex-direction: column;
}

.list_wrapper .list_block_box .box_success .hover_box h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  text-align: center;
  max-width: 220px;
}

.list_wrapper .list_block_box .box_success .hover_box h2 span {
  color: #FFF100;
}

.list_wrapper .list_block_box .box_success .hover_box p {
  font-size: 16px;
  line-height: 170%;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}

.list_wrapper .list_block_box .box_success .hover_box .btn_block {
  margin: 32px 0;
}

.list_wrapper .list_block_box .box_success .hover_box .btn_block:before {
  background: #f0dc00;
}

.loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 90px;
  flex-direction: column;
}

.loader .result-empty {
  color: red;
  display: none;
  width: 100%;
}

.loader .result-empty.no_result {
  color: #0B2766;
  font-size: 25px;
  line-height: 27.5px;
  font-weight: 800;
  padding: 124px 35px 0px;
}

@media (max-width: 389px) {
  .loader .result-empty.no_result {
    padding: 25px 35px 0px;
  }
}

.loader .result-empty.whise-error {
  position: absolute;
  top: 10px;
}

.loader .result-empty .sub-text {
  padding-top: 12px;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 500;
}

.loader .result-empty .vous {
  background: #fff100;
  border: none;
  padding: 16px 20px;
  border-radius: 55px;
  font-weight: 800;
  font-size: 14px;
  line-height: 16.8px;
  cursor: pointer;
  color: #0B2766;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.loader .result-empty .vous:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f0dc00;
  border-radius: 100%;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.loader .result-empty .vous:hover:before {
  transform: scale(2);
}

.loader .result-empty a {
  color: #0B2766;
}

.loader .result-empty.empty {
  display: block;
}

.loader .loader_img {
  max-width: 32px;
}

.loader .loader_img.hide {
  display: none;
}

.loader .btn_block {
  position: absolute;
  right: 40px;
  background: #F8F9FD;
  color: #1F4496;
  overflow: hidden;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader .btn_block:before {
  background: #fff100;
}

.loader .btn_block:hover {
  color: #1F4496;
}

.loader .btn_block img {
  max-width: 12px;
}

@media (max-width: 719px) {
  .list_wrapper .list_block_box .box_success figure figcaption ul li h2 {
    min-height: inherit;
    width: 68%;
  }

  .list_wrapper .list_block_box .box_success figure figcaption ul li h2:last-child {
    width: 30%;
  }
}

@media (max-width: 767.5px) {
  .list_page:before {
    display: none;
  }

  .list_wrapper {
    padding: 20px 0 0;
  }

  .list_wrapper .card_head {
    flex-wrap: wrap;
  }

  .list_wrapper .card_head .left {
    width: 100%;
    display: inline-flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .list_wrapper .card_head .left .card_search input {
    font-size: 12px;
    width: 170px;
  }

  .list_wrapper .card_head .left p {
    font-size: 14px;
    padding: 10px 10px 10px;
  }

  .list_wrapper .card_head .right {
    width: 100%;
    display: inline-flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .list_wrapper .card_head .right .dropdown_wrap {
    margin: 0 0 10px;
  }

  .list_wrapper .card_head .right .dropdown_wrap:last-child {
    margin: 0 0 10px 10px;
  }

  .list_wrapper .card_head .right .txt {
    margin: 0 15px 10px 0;
  }

  .list_wrapper .list_block_box {
    justify-content: center;
  }

  .list_wrapper .list_block_box .box_success {
    width: 100%;
    margin: 0 0 20px;
  }

  .list_wrapper .list_block_box .box_success .card__Box {
    padding: 0;
  }

  .list_wrapper .list_block_box .box_success figure .img .img_main {
    min-height: 100%;
    max-height: 100%;
  }

  .list_wrapper .list_block_box .box_success figure figcaption {
    padding: 14px 10px 20px;
  }

  .list_haed {
    box-shadow: none;
    border-radius: 0;
    padding: 40px 20px;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -500px;
    max-width: 500px;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    overflow-y: auto;
  }

  .list_haed .close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    border: 2px solid #0B2766;
    top: 10px;
    cursor: pointer;
    border-radius: 15px;
  }

  .list_haed .close:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 10px;
    background: #0B2766;
    transform: rotate(45deg);
    left: 7px;
    top: 3px;
  }

  .list_haed .close:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 10px;
    background: #0B2766;
    transform: rotate(-45deg);
    left: 7px;
    top: 3px;
  }

  .list_haed.active {
    left: 0;
  }

  .list_haed .search_header {
    flex-wrap: wrap;
    padding: 0 0 10px;
  }

  .list_haed .search_header .search_box input {
    padding: 10px 10px 10px 31px;
    font-size: 15px;
    border-bottom: 2px solid #0B2766;
    width: 100%;
    color: #0B2766;
  }

  .list_haed .search_header .btn_grid .add_btn {
    padding: 10px 15px;
  }

  .list_haed .search_result .search_result_inner ul {
    flex-wrap: wrap;
  }

  .list_haed .search_result .search_result_inner ul li {
    font-size: 12px;
    padding: 3px 25px 3px 10px;
    margin: 0 8px 5px 0;
  }

  .list_haed .search_result .search_result_inner ul li span {
    right: 9px;
    top: 8px;
  }

  .list_haed .dropdown_list {
    flex-wrap: wrap;
    flex-direction: column;
    padding: 15px 0 0;
  }

  .list_haed .dropdown_list .drop_block:first-child,
  .list_haed .dropdown_list .drop_block:nth-child(2),
  .list_haed .dropdown_list .drop_block:nth-child(3),
  .list_haed .dropdown_list .drop_block:nth-child(4) {
    width: 100%;
    padding: 5px 0 0;
    max-width: 458px;
    border: none;
  }
}

@media (max-width: 767.5px) and (max-width: 767px) {
  .list_haed .dropdown_list .drop_block:first-child,
  .list_haed .dropdown_list .drop_block:nth-child(2),
  .list_haed .dropdown_list .drop_block:nth-child(3),
  .list_haed .dropdown_list .drop_block:nth-child(4) {
    padding: 0px 0px 0px;
  }
}

@media (max-width: 767.5px) and (max-width: 767px) {
  .list_haed .dropdown_list .drop_block:first-child.border,
  .list_haed .dropdown_list .drop_block:nth-child(2).border,
  .list_haed .dropdown_list .drop_block:nth-child(3).border,
  .list_haed .dropdown_list .drop_block:nth-child(4).border {
    border: 1px solid #E0E6F2;
    padding: 10px 0px;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0px 3px 5px rgba(31, 68, 150, 0.1);
  }
}

@media (max-width: 767.5px) and (max-width: 767px) {
  .list_haed .dropdown_list .drop_block:first-child.border label,
  .list_haed .dropdown_list .drop_block:nth-child(2).border label,
  .list_haed .dropdown_list .drop_block:nth-child(3).border label,
  .list_haed .dropdown_list .drop_block:nth-child(4).border label {
    padding: 0px 25px;
  }
}

@media (max-width: 767.5px) {
  .list_haed .dropdown_list .drop_block .double_dropdown {
    flex-direction: column;
  }

  .list_haed .dropdown_list .drop_block .double_dropdown .dropdown_wrap {
    width: 100%;
  }

  .list_haed .dropdown_list .drop_block .double_dropdown .dropdown_wrap:first-child p:before {
    right: 0;
  }
}

@media (max-width: 767.5px) {
  .list_haed .dropdown_list .drop_block .list_double {
    flex-direction: column;
  }

  .list_haed .dropdown_list .drop_block .list_double .box {
    width: 100%;
    border: 1px solid #E0E6F2;
    padding: 10px 0px;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0px 3px 5px rgba(31, 68, 150, 0.1);
  }

  .list_haed .dropdown_list .drop_block .list_double .box:first-child .dropdown_wrap p:before {
    right: 0;
  }
}

@media (max-width: 767.5px) and (max-width: 767px) {
  .list_haed .dropdown_list .drop_block .list_double .box label {
    padding: 0px 25px;
  }
}

@media (max-width: 767.5px) {
  .list_haed .dropdown_list .Furniture_btn {
    width: 100%;
    padding-left: 0;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 767.5px) {
  .loader {
    padding: 40px 0 50px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .loader .btn_block {
    position: inherit;
    right: initial;
    left: 0;
    margin: 180px 0 0;
  }

  .loader .btn_block img {
    position: relative;
    top: -2px;
  }
}

@media (min-width: 768px) and (max-width: 991.5px) {
  .list_haed {
    padding: 20px 20px;
    width: 95%;
  }

  .list_haed .search_header .search_box input {
    font-size: 15px;
  }

  .list_haed .search_header .btn_grid .add_btn {
    padding: 10px 20px;
  }

  .list_haed .search_result {
    padding: 10px 0 0;
  }

  .list_haed .search_result .search_result_inner ul li {
    font-size: 12px;
    padding: 3px 25px 3px 10px;
  }

  .list_haed .search_result .search_result_inner ul li span {
    right: 9px;
    top: 8px;
  }

  .list_haed .dropdown_list .drop_block {
    padding: 5px 14px 0;
  }

  .list_haed .dropdown_list .drop_block.for-rent label {
    font-size: 10px;
  }

  .list_haed .dropdown_list .drop_block.for-rent .dropdown_wrap p {
    font-size: 10px;
  }

  .list_haed .dropdown_list .drop_block.for-rent .dropdown_wrap p:before {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #C5D0E8;
    top: 8px;
  }

  .list_haed .dropdown_list .drop_block .dropdown_wrap p:before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #C5D0E8;
    top: 8px;
  }

  .list_haed .dropdown_list .drop_block .dropdown_wrap ul li {
    padding: 10px;
    font-size: 10px;
  }

  .list_haed .dropdown_list .Furniture_btn {
    padding-left: 8px;
  }

  .list_haed .dropdown_list .Furniture_btn label {
    font-size: 10px;
    word-break: break-word;
  }

  .list_haed .dropdown_list .Furniture_btn label span {
    width: 20px;
    height: 15px;
  }

  .list_wrapper .card_head .left p {
    font-size: 12px;
    padding: 0 0 0 10px;
  }

  .list_wrapper .card_head .right .dropdown_wrap:last-child {
    margin: 0 0 0 20px;
  }

  .list_wrapper .list_block_box .box_success figure .img .img_main {
    min-height: 150px;
    max-height: 150px;
  }

  .list_wrapper .list_block_box .box_success figure .img .icon {
    left: 10px;
    bottom: 10px;
  }

  .list_wrapper .list_block_box .box_success figure figcaption {
    padding: 14px 10px 20px;
  }

  .list_wrapper .list_block_box .box_success figure figcaption ul li h2 {
    font-size: 12px;
    min-height: 36px;
  }

  .list_wrapper .list_block_box .box_success figure figcaption ul li p {
    font-size: 12px;
    min-height: 18px;
  }

  .list_wrapper .list_block_box .box_success .hover_box h2 {
    font-size: 15px;
    line-height: 120%;
  }

  .list_wrapper .list_block_box .box_success .hover_box p {
    font-size: 14px;
    line-height: 120%;
  }
}

@media (min-width: 992px) and (max-width: 1199.5px) {
  .list_haed {
    padding: 20px 20px;
    width: 95%;
  }

  .list_haed .dropdown_list .drop_block {
    padding: 5px 20px 0;
  }

  .list_haed .dropdown_list .Furniture_btn {
    padding-left: 10px;
  }

  .list_haed .dropdown_list .Furniture_btn label {
    font-size: 12px;
  }

  .list_haed .dropdown_list .Furniture_btn label span {
    margin: 0 5px 0 0;
  }

  .list_wrapper .list_block_box .box_success figure figcaption {
    padding: 14px 15px 20px;
  }

  .list_wrapper .list_block_box .box_success figure figcaption ul li p {
    min-height: 22px;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .list_page .filter_btn {
    display: none;
  }

  .list_haed .close {
    display: none;
  }

  .list_haed .dropdown_list .continue_btn {
    display: none;
  }

  .list_wrapper .list_block_box .box_success .hover_box .btn_block {
    margin: 30px 0;
  }
}

@media (max-width: 479px) {
  .list_wrapper .list_block_box .box_success .card__Box {
    min-height: initial;
    width: 100%;
  }
}

