/* css/color-schemes.css */

/* default color scheme (applied by default or if data attribute is missing/invalid) */
:root {
  --color-primary: #214E34;
  --color-active: #143020;
  --color-cta-labels-card-bg: #FFFFFF;
  --color-background: #EBEEF3;
  --color-pale-text: #364156;
  --color-headlines-text-footer: #011638;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-headlines-text-footer);
}

img {
  vertical-align: middle;
  border-style: none;
}

ul {
  list-style-type: none;
  padding-left: 0;
}
ul.list_type {
  margin-top: 0;
  list-style-type: disc;
  padding-left: 30px;
}

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1150px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1230px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}
@media (max-width: 767.98px) {
  .container-md-none {
    max-width: none;
  }
}

.container_min {
  max-width: 300px;
}

body, html {
  font-family: "Inter", sans-serif;
  color: var(--color-headlines-text-footer);
  font-size: 16px;
  line-height: 1.5;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.col-sm-6,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-xl-4 {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  flex: 0 0 auto;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .text-lg-end {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .col-xl-4 {
    width: 33.33333333%;
  }
}
.d-flex {
  display: flex;
}

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

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

tbody::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-track {
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--color-primary);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
}

h1, .h1 {
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.32px;
}
@media (max-width: 1200px) {
  h1, .h1 {
    font-size: 28px;
  }
}
@media (max-width: 991.98px) {
  h1, .h1 {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  h1, .h1 {
    font-size: 20px;
  }
}

h2, .h2 {
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.32px;
}
@media (max-width: 1200px) {
  h2, .h2 {
    font-size: 26px;
  }
}
@media (max-width: 991.98px) {
  h2, .h2 {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  h2, .h2 {
    font-size: 20px;
  }
}

h3, .h3 {
  font-size: 24px;
  line-height: 133.333%;
  letter-spacing: -0.048px;
  font-weight: 600;
}
@media (max-width: 1200px) {
  h3, .h3 {
    font-size: 22px;
  }
}
@media (max-width: 991.98px) {
  h3, .h3 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  h3, .h3 {
    font-size: 16px;
  }
}

h4, .h4 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  h4, .h4 {
    font-size: 18px;
  }
}
@media (max-width: 574.98px) {
  h4, .h4 {
    font-size: 16px;
  }
}

.text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.text-min {
  font-size: 12px;
  line-height: 133.333%;
}

a {
  color: var(--color-primary);
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  color: var(--color-active);
}

.italic {
  font-style: italic;
}

.color_white {
  color: #ffffff !important;
}

.color_black {
  color: var(--color-headlines-text-footer) !important;
}

.color_blue {
  color: var(--color-primary) !important;
}

.color_dark_gray {
  color: var(--color-pale-text);
}

.color_light_grey {
  color: #F5F5DC;
}

.color_red {
  color: #F94700;
}

.color_orchard {
  color: #8B4513;
}

.w-100 {
  width: 100% !important;
}

.d-none {
  display: none;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
}

.gap-04 {
  gap: 4px;
}

.ms-08 {
  margin-left: 8px;
}

.me-08 {
  margin-right: 8px;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-08 {
  margin-bottom: 8px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px !important;
}
@media (max-width: 767.98px) {
  .mb-24 {
    margin-bottom: 16px !important;
  }
}

.space_48 {
  padding-bottom: 48px;
}

.space_56 {
  margin-bottom: 56px;
}
@media (max-width: 767.98px) {
  .space_56 {
    margin-bottom: 32px;
  }
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

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

.ms-auto {
  margin-left: auto;
}

.me-auto {
  margin-right: auto;
}

.navbar-dop {
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 767.98px) {
  .navbar-dop {
    border-bottom: 1px solid #E1E1E1;
  }
}

.logo-language-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wrapper_logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo_header {
  width: 40px;
  height: 40px;
  display: none;
}

.logo_text {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}
@media (max-width: 991.98px) {
  .logo-language-block {
    justify-content: center;
    margin-bottom: 8px;
  }
}

.search-container {
  position: relative;
  max-width: 360px;
}
.search-container .search-icon {
  position: absolute;
  cursor: pointer;
  right: 8px;
  top: 6px;
}

.search-input {
  border-radius: 8px;
  border: 1px solid #9ca3af;
  padding: 4px 8px;
  width: 360px;
  max-width: 100%;
}

.wrapper-navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .wrapper-navbar-nav {
    margin-bottom: 16px;
  }
}
.wrapper-navbar-nav .navbar-nav {
  border-right: 1px solid #9CA3AF;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .wrapper-navbar-nav .navbar-nav {
    border-right: none;
    padding-right: 0;
  }
}

.language-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 2;
}

.selected-language {
  display: flex;
  align-items: center;
  border-radius: 50px;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primary);
}
.selected-language img {
  width: 32px;
  height: 32px;
}

.language-options {
  position: absolute;
  border-radius: 12px;
  top: 40px;
  padding: 8px 0px;
  background: #fff;
  width: 114px;
  right: 0;
  display: none;
}
.language-options img {
  width: 24px;
  height: 24px;
}

.item-language {
  color: #556B2F;
  font-size: 18px;
  font-weight: 600;
  line-height: 133.333%;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
}
.item-language.active, .item-language:hover {
  background: var(--color-background);
}
.item-language.active span, .item-language:hover span {
  color: var(--color-primary);
}

.nav_block {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .nav_block {
    display: flex;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .navbar-nav {
    gap: 24px;
  }
}
@media (max-width: 991.98px) {
  .navbar-nav {
    justify-content: center;
  }
}
.navbar-nav .nav-item .nav-link {
  color: var(--color-primary);
  font-size: 16px;
  line-height: 156.25%;
}
.navbar-nav .nav-item .nav-link:hover, .navbar-nav .nav-item .nav-link.active {
  color: var(--color-active);
}

.bg_light_gray {
  background: var(--color-background);
  position: relative;
}

.section_top {
  padding-top: 280px;
  padding-bottom: 48px;
  position: relative;
  background-image: url("../img/hero-orchard.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .section_top {
    padding-top: 180px;
    padding-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .section_top {
    padding-top: 80px;
    padding-bottom: 16px;
  }
}

.services-block {
  border-radius: 16px;
  background: #FFF;
  padding: 16px 24px 48px;
  max-width: 922px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .services-block {
    padding: 16px 16px 24px;
  }
}

.wrapper-find-services {
  display: flex;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .wrapper-find-services {
    flex-direction: column;
  }
}

.form-control {
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-pale-text);
  background-color: var(--color-cta-labels-card-bg);
}
.form-control::placeholder {
  color: #9ca3af;
}
.form-control:focus {
  border-color: #8FBC8F;
  box-shadow: 0px 0px 4px 0px #8FBC8F;
  outline: none;
}

.search-location {
  position: relative;
  width: 100%;
}
.search-location .distance-input {
  border-radius: 8px;
  border: 1px solid #DFE4EA;
  padding: 12px 16px 12px 54px;
  height: 48px;
  width: 100%;
}
.search-location .distance-icon {
  position: absolute;
  left: 20px;
  top: 11px;
}

.dropdown-menu {
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.25);
  padding-top: 8px;
  padding-bottom: 8px;
  max-height: 240px;
  overflow: auto;
  margin-top: 8px;
}

.dropdown-item {
  display: flex;
  gap: 16px;
  padding: 8px 18px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
@media (max-width: 767.98px) {
  .dropdown-item {
    gap: 8px;
    padding: 6px 10px;
  }
}
@media (max-width: 767.98px) {
  .dropdown-item .text {
    font-size: 14px;
  }
}
.dropdown-item:hover, .dropdown-item.active {
  border-color: #8B4513;
  background: #F5F5DC;
}
.dropdown-item:hover .text, .dropdown-item.active .text {
  color: #8B4513;
}

.city-image {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .city-image {
    min-width: 32px;
    width: 32px;
    height: 32px;
  }
}

.distance-min {
  width: 16px;
}

.section_locations {
  padding-top: 48px;
}
@media (max-width: 767.98px) {
  .section_locations {
    padding-top: 32px;
  }
}

.section_producers {
  padding-top: 56px;
}
@media (max-width: 767.98px) {
  .section_producers {
    padding-top: 48px;
  }
}

.producers_block {
  padding-top: 64px;
}
@media (max-width: 767.98px) {
  .producers_block {
    padding-top: 16px;
  }
}

.item_producer {
  display: flex;
  border-radius: 8px;
  background: #FFF;
  padding: 8px;
  gap: 16px;
  margin-bottom: 8px;
  color: #2F4F2F;
}
@media (max-width: 767.98px) {
  .item_producer {
    align-items: flex-start;
    gap: 8px;
  }
}

.img-region {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .img-region {
    width: 32px;
  }
}

.section_service_type {
  padding-top: 32px;
}

.item_service_type {
  padding-top: 8px;
  padding-bottom: 8px;
  display: inline-block;
  color: #2F4F2F;
}
@media (max-width: 767.98px) {
  .item_service_type {
    margin-bottom: 0 !important;
  }
}

.section_choices {
  padding-top: 32px;
}

.item_choices {
  display: flex;
  border-radius: 16px;
  border: 1px solid #DBDEE5;
  background: #FFF;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .item_choices {
    flex-direction: column;
  }
}
.item_choices_image {
  width: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px 0px 0px 16px;
}
@media (max-width: 991.98px) {
  .item_choices_image {
    width: 100%;
    border-radius: 16px 16px 0px 0px;
    height: 232px;
  }
}
.item_choices_info {
  width: 60%;
  padding: 16px;
}
@media (max-width: 991.98px) {
  .item_choices_info {
    width: 100%;
  }
}

.star-min {
  width: 20px;
}

.wrapper-reviews {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .wrapper-reviews {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767.98px) {
  .wrapper-reviews .text {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .city_block {
    margin-bottom: 4px;
  }
}

.arrow {
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 5px;
}

.btn-open:hover .arrow {
  transform: translateX(5px);
}

.section_sort {
  padding-top: 8px;
  padding-bottom: 24px;
}

.section-card {
  position: relative;
  transition: all 0.3s ease;
}

.wrapper_listing {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.logo_block {
  width: 15%;
  padding-left: 12px;
  padding-right: 12px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .logo_block {
    display: none;
  }
}

.info_block {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-left: 48px;
  padding-right: 12px;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .info_block {
    width: 52%;
    flex: 0 0 auto;
    display: block;
  }
}
@media (max-width: 767.98px) {
  .info_block {
    width: 100%;
    flex: 0 0 auto;
    display: block;
  }
}
.info_block .text.color_dark_gray {
  font-size: 12px;
}

.info_block_container {
  max-width: 540px;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .info_block_container {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .info_block_container {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.map_block {
  width: 35%;
  padding-left: 12px;
  padding-right: 12px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .map_block {
    width: 48%;
    margin-left: auto;
  }
}
@media (max-width: 767.98px) {
  .map_block {
    width: 100%;
    margin-left: 0;
  }
}

.section_listing {
  padding-top: 16px;
}

.item_logo_block {
  border-radius: 8px;
  border: 1px solid #9CA3AF;
  background: #FFF;
  padding: 14px;
}

.image_block {
  background-color: #D2B48C;
  border-radius: 8px;
  height: 336px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.item-list {
  display: flex;
  width: 50%;
  align-items: flex-start;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .item-list {
    width: 100%;
  }
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.btn:focus {
  outline: none !important;
  box-shadow: none;
}

.btn {
  font-size: 16px;
  line-height: 156.25%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 32px;
  border: 1px solid transparent;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .btn {
    font-size: 18px;
  }
}
.btn_blue {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.btn_blue:hover {
  border-color: var(--color-primary);
  background: var(--color-cta-labels-card-bg);
  color: var(--color-primary);
}
.btn_big {
  border-radius: 8px;
  padding: 10px 24px;
  height: 48px;
  width: 260px;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .btn_big {
    width: 100%;
  }
}

.swiper-container-dop {
  margin-left: -12px;
  margin-right: -12px;
}
@media (max-width: 767.98px) {
  .swiper-container-dop {
    margin-left: -7px;
    margin-right: -7px;
  }
}

@media (max-width: 767.98px) {
  .swiper-wrapper {
    padding-bottom: 20px;
  }
}

.wrapper_img_slider img {
  display: block;
}

@media (min-width: 768px) {
  .swiper-wrapper {
    flex-wrap: wrap;
    width: 100%;
  }
}
.swiper-slide {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 767.98px) {
  .swiper-slide {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (min-width: 768px) {
  .swiper-slide {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .swiper-slide {
    width: 33.3333333333%;
  }
}
@media (min-width: 1200px) {
  .swiper-slide {
    width: 25%;
  }
}

.swiper-pagination {
  display: block;
  bottom: -6px !important;
}

@media (min-width: 768px) {
  .swiper-pagination {
    display: none;
  }
}
.location-block {
  margin-bottom: 20px;
  width: 100%;
  color: #2F4F2F;
}
.location-block:hover .location-image:before {
  background-color: rgba(3, 7, 18, 0.25);
  opacity: 1;
}

.location-image {
  background-color: #D2B48C;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 316px;
  border-radius: 16px;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 767.98px) {
  .location-image {
    height: 272px;
  }
}
.location-image:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 16px;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.footer {
  padding-top: 24px;
  padding-bottom: 35px;
  background-color: var(--color-primary);
}
.footer .navbar-nav .nav-item .nav-link {
  color: #F5F5DC;
}
.footer .navbar-nav .nav-item .nav-link:hover {
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .footer .nav_block {
    text-align: center;
  }
}
.footer .nav_block .wrapper_logo {
  display: inline-block;
}

.footer .logo_text {
  color: #F5F5DC !important;
}
@media (max-width: 767.98px) {
  .footer .nav_block .wrapper_logo {
    padding-bottom: 16px;
  }
}

.wrapper-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 48px;
}
@media (max-width: 767.98px) {
  .wrapper-copyright {
    padding-top: 20px;
    flex-direction: column-reverse;
  }
}

.footer_links {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .footer_links {
    margin-bottom: 24px;
  }
}

.footer_link {
  color: #F5F5DC;
  font-size: 12px;
  font-weight: 400;
  line-height: 133.333%;
  transition: all 0.3s;
}
.footer_link:hover {
  color: #ffffff;
}

.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  right: 15px;
  bottom: 15px;
  z-index: 300;
  opacity: 0.8;
}
.back-to-top:hover {
  opacity: 1;
}
.back-to-top .navigate {
  width: 40px;
  transform: rotate(180deg);
}

.toggle-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.toggle-switch input {
  display: none;
}

.label-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 156.25%;
  color: var(--color-headlines-text-footer);
}

.toggle-switch .slider {
  width: 50px;
  height: 26px;
  background-color: #D2B48C;
  border-radius: 26px;
  position: relative;
  transition: background 0.3s;
  margin-left: 8px;
}
.toggle-switch .slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .slider {
  background-color: var(--color-primary);
}

.toggle-switch input:checked + .slider::before {
  transform: translateX(24px);
}

.mobile-map-toggle {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

@media (max-width: 768px) {
  .toggle-switch {
    display: none;
  }
  .mobile-map-toggle {
    display: block;
  }
}
.mobile-map-toggle .btn.active {
  background-color: #fff;
  color: #8B4513;
  border-color: #4212ef;
}

.wrapper-custom-select {
  position: relative;
  display: inline-block;
}

.custom-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-cta-labels-card-bg);
  padding: 4px 10px;
  border-radius: 8px;
  outline: none !important;
  cursor: pointer;
  font-size: 32px;
  line-height: 1.25;
}
@media (max-width: 991.98px) {
  .custom-select {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .custom-select {
    padding: 4px;
    font-size: 20px;
  }
}
.custom-select:after {
  content: "";
  background-image: url("../img/svg/chevron_forward.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 10px;
  transition: all 0.3s;
}
.custom-select-min {
  color: #2F4F2F;
  font-size: 16px;
  font-weight: 600;
  line-height: 156.25%;
  border-radius: 8px;
  border: 1px solid #9CA3AF;
  background: #FFF;
}
.custom-select-min:after {
  content: "";
  background-image: url("../img/svg/chevron_forward_black.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 10px;
  transition: all 0.3s;
}
.custom-select-transparent {
  background: transparent;
  border: none;
}

.select-dropdown {
  display: none;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select-dropdown div {
  padding: 10px;
  cursor: pointer;
  color: #000;
}

.select-dropdown div:hover {
  background: #f0f0f0;
}

.custom-select.active + .select-dropdown {
  display: block;
}

.custom-select.active::after {
  transform: rotate(180deg);
}

.wrapper-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991.98px) {
  .wrapper-sort {
    flex-direction: column;
  }
}
.wrapper-sort .d-flex {
  gap: 8px;
}

.sorting-block {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
}

.map-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50%;
  width: 50%;
  background: white;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.map-container.active {
  right: 0;
  display: block;
}

.section-card.map-active .container .row {
  width: 50%;
  transition: width 0.3s ease;
}

.section-card.map-active .container .col-md-6,
.section-card.map-active .container .col-md-12 {
  width: 100%;
  transition: width 0.3s ease;
  padding-right: 0;
}

@media (max-width: 768px) {
  .map-container {
    width: 100%;
    right: -100%;
  }
  .map-container.active {
    right: 0;
  }
  .section-card.map-active .container {
    width: 100%;
  }
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.item_map_block {
  border-radius: 16px;
  border: 1px solid #DBDEE5;
  background: #FFF;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio-half {
  --bs-aspect-ratio: 50%;
}

.ratio::before {
  display: block;
  padding-top: 50%;
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px 16px 0px 0px;
}

.map-info {
  background-color: #fff;
  padding: 16px 16px 24px;
  border-radius: 0px 0px 16px 16px;
}

.item-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}/*# sourceMappingURL=styles.css.map */