/* single places */

.single-places #content {
  width: 100% !important;
  max-width: 1320px;
  float: none;
}

.single-places .post-container {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.post__links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#place-t360 {
  height: 25vw;
  min-height: 600px;
}

.place__container {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.place__gallery .fusion-slider-sc:not(.fusion-has-margin) .flexslider {
  margin-bottom: 12px;
}

.place__content h1 {
  font-size: 35px;
}

.place__hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100px;
  animation: fadeInEffect 1s;
}

.place__amenities,
.place__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.place__amenities .amenity,
.place__socials .social-icons a {
  width: 30px;
}

.place__amenities .amenity svg,
.place__socials .social-icons a svg,
.place__contact a svg {
  width: 100%;
  height: auto;
  fill: var(--link_color);
}

.place__amenities .amenity svg {
  fill: var(--amenities-icon-color);
}

.place__socials h4 {
  font-size: 1.15rem;
  font-weight: bolder;
  margin: 0px;
}

.place__socials .social-icons {
  display: flex;
  gap: 10px;
}

.place__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  column-gap: 25px;
  margin-bottom: 25px;
}

.place__contact a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.place__contact a svg {
  max-width: 50px;
}

@media screen and (min-width: 768px) {
  .place__container {
    flex-direction: row;
    column-gap: 50px;
  }

  .place__image {
    width: 47%;
  }

  .place__content {
    flex: 1;
  }

  .place__hero {
    height: 250px;
  }
}

@media screen and (min-width: 1400px) {
  .single-places #content {
    margin: auto;
    margin-top: 0px;
    margin-bottom: 50px;
  }
}

@keyframes fadeInEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* add to plan button */

.vw-api-button {
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border-radius: 0px;
  font-size: var(--body_typography-font-size);
  font-family: var(--body_typography-font-family);
  text-transform: unset !important;
  font-weight: 400;
  padding: 8px 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--add-to-plan-button-background-color);
  color: var(--add-to-plan-button-text-color);
  margin: var(--add-to-plan-margin);
  border-color: var(--add-to-plan-button-background-color);
}

.vw-api-button svg {
  fill: var(--add-to-plan-button-text-color);
  width: 20px;
  transition: fill 0.2s;
}

.vw-api-button:hover {
  background-color: var(--add-to-plan-button-background-color-hover);
  color: var(--add-to-plan-button-text-color-hover);
  border-color: var(--add-to-plan-button-text-color-hover);
}

.vw-api-button:hover svg {
  fill: var(--add-to-plan-button-text-color-hover);
}

/* tooltip */

.vw-tooltip {
  position: relative;
  display: inline-block;
}

.vw-tooltip .vw-tooltip-text {
  visibility: hidden;
  width: max-content;
  background-color: rgba(33, 33, 33, .97);
  color: #d1d1d2;
  text-align: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;

  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 50%;
  transform: translate(-50%);

  opacity: 0;
  transition: opacity 0.3s;
}

.vw-tooltip .vw-tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(33, 33, 33, .97) transparent transparent transparent;
}

.vw-tooltip:hover .vw-tooltip-text {
  visibility: visible;
  opacity: 1;
}