.fv-map-embed-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: clamp(300px, 100vh, 1000px);
  background: var(--fv-map-background-color, #fafafa) !important;
  color: var(--fv-map-text-color, #000000) !important;
  box-sizing: border-box;
}

.fv-map-embed-wrapper *,
.fv-map-embed-wrapper *:before,
.fv-map-embed-wrapper *:after {
  box-sizing: border-box;
}

.fv-map-container {
  padding-block: 30px;
  width: 100%;
  max-width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
}

.fv-map-wrapper-outer {
  display: flex;
  flex: 1;
  position: relative;
}

.fv-map-sidebar {
  width: 240px;
  position: absolute;
  z-index: 10;
  overflow: auto;
  top: 30px;
  left: 30px;
  bottom: 30px;
  background: var(--fv-map-background-color-2, #fafafa);
  border-radius: 18px;
  padding: 20px;
}

.fv-map-wrapper {
  flex: 1;
}

.fv-map-wrapper .gm-style-iw-chr {
  display: none;
}

.fv-map-wrapper .gm-style-iw.gm-style-iw-c {
  padding: 0;
}

.fv-map-wrapper .gm-style .gm-style-iw-d {
  padding: 0;
  overflow: auto !important;
}

.fv-place-popup {
  color: #000000;
  width: 270px;
  max-width: 100%;
  padding: 15px;
}

.fv-categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fv-categories-filter .fv-category {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.fv-categories-filter .fv-category.off {
  cursor: not-allowed;
  opacity: .55;
}

.fv-categories-filter .fv-category .fv-category-icon {
  display: block;
  text-align: center;
  width: 16px;
  font-size: 0;
}

.fv-categories-filter .fv-category .fv-icon-check {
  display: inline;
}

.fv-categories-filter .fv-category .fv-icon-plus {
  display: none;
  transform: rotate(45deg);
}

.fv-categories-filter .fv-category.off .fv-icon-check {
  display: none;
}

.fv-categories-filter .fv-category.off .fv-icon-plus {
  display: inline;
}

.fv-directions-button {
  padding-top: 10px;
}

.fv-directions-button a {
  color: blue;
  text-decoration: underline;
}

.fv-circle-pin {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  font-weight: bold;
}

.fv-circle-pin.hover {
  transform: scale(1.15);
}

.fv-sidebar-category {
  margin-bottom: 20px;
}

.fv-sidebar-category:last-child {
  margin-bottom: 0;
}

.fv-sidebar-category .fv-sidebar-category-name {
  margin: 0 0 10px;
  padding: 0;
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  color: inherit !important;
}

.fv-sidebar-category .fv-sidebar-category-name .fv-category-circle {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.fv-places-list {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.fv-places-list a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  opacity: .75;
  color: inherit !important;
}

.fv-places-list a:hover {
  opacity: 1;
}

.fv-places-list a.on {
  opacity: 1;
  font-weight: bold;
}

.fv-place-thumbnail {
  margin-bottom: 15px;
}

.fv-place-thumbnail img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border-radius: 10px;
}

.fv-place-name {
  font-size: 14px;
  font-weight: bold;
}

.fv-additional-info {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  color: #8e8e8e;
  margin-top: 10px;
}

.fv-additional-info-column {
  display: flex;
  align-items: center;
  gap: 5px;
}

.fv-mobile-control {
  display: none;
}

.fv-map-title {
  color: inherit !important;
}

@media (max-width: 767px) {
  .fv-map-embed-wrapper {
    height: auto;
  }

  .fv-map-wrapper-outer {
    display: block;
  }

  .fv-map-sidebar {
    height: 260px;
    position: relative;
    inset: 0;
    width: auto;
    margin-inline: 20px;
    margin-bottom: 20px;
  }

  .fv-map-wrapper {
    height: 100vh;
    min-height: 400px;
  }

  .fv-mobile-control {
    display: block;
  }
}