html,
body {
  margin: 0;
  padding: 0;
  font: 400 14px/16px "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  scroll-behavior: smooth;
}

body.hiddenOverflow {
  overflow: hidden;
}

.header {
  padding: 8px 16px 0;
}

.header-breadcrumbs {
  display: flex;
  font-weight: 600;
  line-height: 32px;
  font-size: 14px;
  padding-bottom: 16px;
  color: rgba(0, 0, 0, 0.56);
  align-items: center;
}

.header-breadcrumbs a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.56);
}

.vendor-name {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: fit-content;
}

.vendor-info {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 24px;
}

.vendor-info-left {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  color: rgba(0, 0, 0, 0.56);
  column-gap: 12px;
}

.vendor-reviews {
  display: flex;
  align-items: center;
}

.review-star {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

.reviewCount {
  text-decoration: underline;
}

.vendor-capacity {
  display: none;
  align-items: center;
}
.vendor-capacity-dot {
  display: none;
}

.capacity-icon {
  margin-right: 4px;
}

.capacity-text {
  color: black;
}

.vendor-location {
  text-decoration: underline;
}

.vendor-location-extended {
  display: none;
}

.vendor-info-right {
  display: flex;
  column-gap: 24px;
}

.vendor-info-right #favourite-button, .vendor-info-right #share-button, .vendor-info-right #share-button-mobile {
  display: flex;
  align-items: center;
  column-gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: black;
  cursor: pointer;
}

.share-button-container {
  display: none !important;
}

@media (min-width: 901px) {
  #share-button-mobile {
    display: none !important;
  }
  .share-button-container {
    display: flex !important;
  }
}

#favourite-button.contact-pending, #favourite-button.contact-opened, #favourite-button.booked, #favourite-button.email-sent {
  display: none;
}

.vendor-share-icon-empty.liked {
  display: none;
}

.vendor-share-icon-filled {
  display: none;
}

.vendor-share-icon-filled.liked {
  display: flex;
}

/* .vendor-info-right a:not(:first-child):hover {
  color: black;
}

.vendor-info-right a:not(:first-child):visited {
  color: black;
} */

.gallery {
  --gap: 16px;
  --num-cols: 2;
  --row-height: 200px;

  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  position: relative;

  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.gallery-main {
  grid-column: span 2;
}

.galleries-item {
  display: none;
}

.gallery-view {
  position: absolute;
  bottom: 12px;
  right: 12px;
  border-radius: 8px;
  background-color: white;
  padding: 8px 12px;
  border: none;
  font-weight: 600;
  line-height: 24px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.5s;
}

.gallery-view:hover {
  color: #5b9da8;
}

.vendor-about-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 12px;
}

.vendor-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 32px;
  color: #000000B8;
}

.vendor-contacts-wrapper {
  width: -webkit-fill-available;
}

.vendor-contacts-wrapper h2 {
  margin: 0
}

.vendor-contact-heading {
  width: calc(50% - 12px);
}

.vendor-contacts {
  display: none;
}

.vendor-contacts.show {
  display: flex;
  gap: 24px;
}

.vendor-heading-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width:700px) {
  .vendor-contacts {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .vendor-contacts.show {
    gap: 12px;
  }

  .vendor-contact-heading {
    width: 100%;
  }
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  height: 48px;
  border-radius: 8px;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  transition-duration: 0.4s;
  transition-property: color, background;
}

.white-button-cta {
  width: 100%;
  background-color: white;
  color: #007B90 !important;
}

.blue-button-cta {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), linear-gradient(0deg, #007B90, #007B90);
  color: white;
}

.white-button-cta:hover {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), linear-gradient(0deg, #007B90, #007B90) !important;
  color: white !important;
}

.blue-button-cta:hover {
  background: white !important;
  color: #007B90 !important;
}

.details-item-icon {
  margin-right: 16px;
}

.content-separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  /* margin-bottom: 40px; */
  margin-top: 48px;
}

.content-separator.reduced-margin {
  margin-top: 28px;
}

.vendor-features-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 16px;
}

.vendor-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vendor-feature {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 4px 12px;
  background: #ECF4F4;
  border-radius: 8px;
}

.faq-heading, .reviews-heading, .weddings-heading, .videos-heading, .packages-heading, .available-days-heading, .location-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 32px;
}

.review {
  grid-gap: 0 16px;
  display: grid;
  grid-template-areas:
    "avatar info"
    "avatar ratingAction"
    "content content";
  grid-template-columns: 56px 1fr;
  margin-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

.review-avatar {
  grid-area: avatar;
  height: 56px;
  margin-bottom: 1.5rem;
  width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  font-size: 24px;
}

.review-author {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  grid-area: info;
}

.review-ratings {
  cursor: pointer;
  grid-area: ratingAction;
  margin-bottom: 0.5rem;
  line-height: 26px;
}

.review-text {
  grid-area: content;
  line-height: 24px;
  font-size: 16px;
  word-break: break-word;
}

.review-source {
  margin-top: 8px;
  font-size: 14px;
}

.weddings-container {
  position: relative;
  margin-left: -4px;
}

.weddings {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex: none;
  flex-flow: row nowrap;
  margin-bottom: -1rem;
  overflow: -moz-scrollbars-none;
  overflow-x: scroll;
  overflow-y: hidden;
  overscroll-behavior-x: none;
  padding-bottom: 1rem;
  position: relative;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.weddings.hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
}

.wedding {
  margin-left: calc(16px - 10px);
  padding: 5px;
  width: calc(100% - 64px);

  box-sizing: content-box;
  flex: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.wedding-card {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
  flex-direction: column;
}

.wedding-main-image {
  cursor: pointer;
}

.wedding-main-image img {
  width: 100%;
  height: 192px;
  object-fit: cover;
}

.wedding-thumbnails {
  display: flex;
  gap: 1px;
  padding-top: 1px;
}

.wedding-thumbnail {
  height: 62px;
  width: 100%;
  background-color: gainsboro;
  cursor: pointer;
}

.wedding-thumbnail img {
  height: 100%;
  object-fit: cover;
}

.wedding-description {
  padding: 12px 16px 16px;
}

.wedding-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
}

.wedding-photos-date {
  font-size: 16px;
  line-height: 24px;
  color: #0000008F;
}

.inquiry-phoneInput, .inquiry-dateInputFlex, .inquiry-budgetInput, .inquiry-guestsInput, .inquiry-emailInput, .inquiry-nameInput {
  height: 44px !important;
  text-align: start !important;
  border-radius: 8px !important;
}



@media (max-width: 900px) {
  .weddings {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    right: 50%;
    scroll-padding: 16px;
    width: 100vw;
  }

  .wedding {
    margin-left: 16px;
  }
}

@media (min-width: 480px) {
  .wedding {
    width: 350px;
  }
}

@media (min-width: 768px) {
  .wedding {
    width: 284px;
  }
}

@media (min-width: 901px) {
  .header {
    padding: 24px 24px 48px;
    max-width: 1278px;
    margin: auto;
  }

  .vendor-capacity, .vendor-capacity-dot {
    display: flex;
  }

  .vendor-location-extended {
    display: inline-flex;
  }

  .vendor-name {
    font-size: 32px;
    margin-bottom: 0;
    min-width: fit-content;
  }

  .gallery-main {
    grid-row: span 2;
  }

  .galleries-item {
    display: flex;
  }

  .gallery {
    --num-cols: 4;
    --row-height: 166px;
  }

  .review {
    grid-gap: 0 28px;
    grid-template-areas:
      "avatar info"
      "avatar ratingAction"
      "avatar content";
    grid-template-columns: 60px minmax(0,1fr);
  }

  .review-avatar {
    width: 60px;
    height: 60px;
  }

  .wedding {
    width: calc(50% + 8px - 24px);
  }

  .hint-heading, .hint-subtext {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 1200px) {
  .wedding {
    width: calc(33.33% + 4px - 24px);
  }
}






.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  position: relative;
}

.header-description {
  height: 100%;
  width: 40%;
  order: 1;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.header-description .wrapper {
  background-color: #f6f7f8;
  height: 100%;
  margin-right: 16px;
  padding: 24px 24px 48px;
}

.header-image {
  order: 2;
  width: 100%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  max-height: 100%;
}

.header-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.header-image a {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  width: auto;
  text-transform: unset;
  padding: 5px 10px;
}

.breadcrumbs-container {
  /* margin: 0;
  display: flex;
  align-items: center; */
}

.breadcrumbs-container a {
  /* text-transform: uppercase !important;
  display: inline-block !important;
  font-family: "Josefin Sans", "Lucida Sans Unicode", "Lucida Grande",
    sans-serif !important;
  font-weight: 500 !important;
  font-size: 10px !important;
  line-height: 16px !important;
  letter-spacing: normal !important;
  word-wrap: break-word !important;
  color: #484848 !important;
  margin: 0 3px !important;
  opacity: 0.95 !important; */
}

/* .vendor-name {
  width: 100%;
  -ms-flex: 1;
  flex: 1;
  font-size: 32px;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-weight: 700 !important;
  word-wrap: break-word;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  letter-spacing: normal;
  line-height: 36px;
  color: #484848;
  font: 400 24px/32px "Open Sans", "Lucida Sans Unicode", "Lucida Grande",
    sans-serif;
  margin: 0 0 16px;
} */

/* @media (min-width: 1200px) {
  .vendor-name {
    font-size: 42px;
    line-height: 46px;
  }
} */

.save-for-later {
  text-decoration: underline;
  margin-left: 5px;
  cursor:pointer;
}

.content {
  margin-bottom: 50px;
}

.content .content-wrapper {
  max-width: 1278px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
}

.content .content-main {
  width: 100%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-right: 48px;
}

.details-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.details-wrapper .details-item {
  display: flex;
  align-items: center;
  width: 50%;
  flex-grow: 1;
  margin-bottom: 20px;
}
.details-wrapper .details-item .guests {
  display: block;
}
.details-wrapper .details-item.tags {
  width: 100%;
}
.details-wrapper .details-item svg {
  width: 25px;
  min-width: 25px;
}
.details-wrapper .details-item .details-item-value {
  /* margin-left: 16px; */
  /* word-wrap: break-word; */
  /* letter-spacing: normal; */
  /* white-space: pre-line; */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* overflow-wrap: break-word; */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75em;
  color: #000000A3;
  text-align: justify;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}

.details-wrapper .details-item .details-item-value span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 4px;
  color: #007B90;
}

.details-wrapper .details-item .details-item-value p {
  margin: 0;
  color: #000000B8;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;

}

.galleries-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.galleries-wrapper .galleries-item p {
  margin: 0;
}
.galleries-wrapper .galleries-item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 250px;
}






.videos-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.videos-wrapper .videos-item {
  position: relative;
  display: flex;
  width: 50%;
  flex-direction: column;
  padding: 10px;

  /* word-wrap: break-word; */
  /* letter-spacing: normal; */
  /* white-space: pre-line; */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* overflow-wrap: break-word; */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75em;
  color: #000000A3;
  text-align: justify;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}




@media only screen and (max-width: 900px) {
  .videos-wrapper .videos-item {
    width: 100%;
  }
}

.videos-wrapper .videos-item iframe {
  border: none;
  min-height: 250px;
  max-height: 250px;
}

.videos-wrapper .videos-item p {
  margin: 0;
}
.videos-wrapper .videos-item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 250px;
}


.maps-wrapper {
}


#map {
  width: 100%;
  height: 300px;
}

.reviews-wrapper {
  display: flex;
  flex-wrap: wrap;

  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* overflow-wrap: break-word; */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75em;
  color: #000000A3;
  text-align: justify;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}
.reviews-wrapper .reviews-item {
  display: flex;
  width: 50%;
  flex-direction: column;
  padding: 10px 15px 0 0;
}

.reviews-wrapper .reviews-item p {
  margin: 0 0 0 5px;
}

.reviews-wrapper .reviews-item .review-source {
  margin: 5px 0 0 5px;
  font-size: 12px;
}

.reviews-wrapper .reviews-item .item-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content-side {
  width: 40%;
  /* left: 60%; */
  position: relative;
  top: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.content-side .content-side-wrapper {
  margin: 0 0 0 30px;
  padding-top: 16px;
  border: 1px solid #5998A5;
  border-radius: 8px;
  background: #D1EBF1;
  position: sticky;
  top: 20px;
}

.galleryTiles-content .content-side-wrapper {
  top: 10px;
  padding-top: 10px;
}

.content-side .content-side-wrapper .content-side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px 10px 24px;
}

.content-side .content-side-wrapper .content-side-header img {
  /* border-radius: 50%; */
}

.galleryTiles-content .content-side-wrapper .content-side-header {
  padding: 0 24px 4px 24px;
  justify-content: space-between;
}

[class^="vendor-status-"] {
  display: none;
}

.content-side .content-side-wrapper .vendor-status {
  display: none;
  padding: 24px;
  border-radius: 8px;
  margin: 10px 24px 24px;
}
.galleryTiles-content .content-side .content-side-wrapper .vendor-status {
  margin: 4px 24px 6px;
}

.content-side .content-side-wrapper .vendor-status.liked {
  display: block;
  background-color: #F22470;
  color: #fff;
  border-color: #F22470;
}
.vendor-status.liked .vendor-status-liked {
  display: block;
}
/* .content .content-side .content-side-wrapper .vendor-status.disliked {
  display: block;
  background-color: #8b0000;
  color: #fff;
  border-color: #8b0000;
}
.vendor-status.disliked .vendor-status-disliked {
  display: block;
} */
.content-side .content-side-wrapper .vendor-status.contact-pending {
  display: block;
  background-color: #F0B516;
  color: #fff;
  border-color: #52939f;
}
.galleryTiles-content .content-side .content-side-wrapper .vendor-status.contact-pending {
  margin: 4px 24px 16px;
}
.vendor-status.contact-pending .vendor-status-contact-pending {
  display: block;
}
.content-side .content-side-wrapper .vendor-status.contact-opened {
  display: block;
  background-color: #375FB2;
  color: #fff;
  border-color: #375FB2;
}
.vendor-status.contact-opened .vendor-status-contact-opened {
  display: block;
}
.content-side .content-side-wrapper .vendor-status.booked {
  display: block;
  background-color: #27C250;
  color: #fff;
  border-color: #27C250;
}
.vendor-status.booked .vendor-status-booked {
  display: block;
}
.content-side .content-side-wrapper .vendor-status.email-sent {
  display: block;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), linear-gradient(0deg, #007B90, #007B90);
  color: #fff;
  border-color: #375FB2;
}
.vendor-status.email-sent .vendor-status-email-sent {
  display: block;
}
.content-side
.content-side-wrapper
.content-side-header
.content-side-header-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  margin: 0;
  /* margin-left: 10px;
  margin-right: 20px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  max-width: 250px;
  color: #2d353c !important; */
}

.content-side .content-side-form {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}


.content-side .content-side-form .content-side-form-field {
  padding: 6px 0;
}

.content-side .content-side-form .content-side-form-field label {
  color: #000000A3;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}

.content-side .content-side-form input {
  -webkit-appearance: none;
  /* margin: 5px 0 0 0; */
  outline: none;
  resize: vertical;
  font-size: 1em;
  box-sizing: border-box;
  height: 48px;
  padding: 13px;
  width: 100%;
  /* border-radius: 5px 5px 5px 5px; */
  border: 1px solid #E5E5E5;
  background: #fff;
  color:#000000A3;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}


.wp-sidebar-vendor  {
  text-decoration: none;
}

.wp-vendor-rate {
}

.wp-vendor-rate.bottom {
  position: absolute;
  bottom: 25px;
}

.wp-vendor-holder {
  width: 300px;
  margin-right: 5px;
}

.wp-vendor-holder .wp-vendor-background {
  padding-top: 75%;
}

.wp-vendor-holder .wp-vendor-content {
  background-color: #fff;
}

.wp-vendor-holder .wp-vendor-content .wp-vendor-titles {
  height: 80px;
  overflow: hidden;
}

.wp-vendor-holder .wp-vendor-content .wp-vendor-titles span {
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-swiper-container .wp-vendor-holder .wp-vendor-content .wp-vendor-titles span {
  display: inline;
}

.wp-vendor-holder .wp-vendor-content .text-blue {
  font-weight: 700;
}

.wp-vendor-holder {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

@media (min-width: 64em) {
  .wp-vendor-holder .wp-large-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.wp-vendor-holder .wp-large-holder .wp-vendor-background {
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
  padding-top: 0;
}

@media (max-width: 63.99em) {
  .wp-vendor-holder .wp-large-holder .wp-vendor-background {
    min-height: 200px;
  }
}

.wp-vendor-holder .wp-large-holder .wp-vendor-info {
  padding: 0 16px 10px;
}

.wp-vendor-holder .wp-large-holder .wp-vendor-content {
  -ms-flex-preferred-size: calc(100% - 250px);
  flex-basis: calc(100% - 250px);
  border-width: 1px 1px 1px 0;
}

.wp-vendor-holder .wp-large-holder .wp-vendor-titles {
  min-height: 120px;
}

.wp-vendor-holder .wp-large-holder .wp-vendor-titles .wp-vendor-title {
  font-size: 15px;
  line-height: normal;
}

.wp-vendor-holder .wp-vendor-background {
  padding-top: 70%;
  background-size: cover;
  background-position: center center;
  border-radius: 4px 4px 0 0;
}

.wp-vendor-holder .wp-vendor-background--square {
  padding-top: 100%;
  border-radius: 4px 0 0 4px;
}

.wp-vendor-holder .wp-vendor-content {
  padding-top: 14px;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #e4e7eb;
  border-radius: 0 0 4px 4px;
}

.wp-vendor-holder .wp-vendor-info,
.wp-vendor-holder .wp-vendor-titles {
  padding: 0 10px 4px;
}

.footer-swiper-container .wp-vendor-holder .wp-vendor-info,
.footer-swiper-container .wp-vendor-holder .wp-vendor-rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.wp-vendor-holder .wp-vendor-info svg,
.wp-vendor-holder .wp-vendor-info span {
  vertical-align: middle;
}

.wp-vendor-holder .wp-vendor-info span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #737e88;
}

.wp-vendor-holder .wp-vendor-titles {
  line-height: normal;
}

.wp-vendor-holder .wp-vendor-titles span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
}

.wp-vendor-holder .wp-vendor-rate {
  padding: 10px 16px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #e4e7eb;
}

.wp-vendor-holder .wp-vendor-rate .wp-vendor-star-rate,
.wp-vendor-holder .wp-vendor-rate a {
  font-size: 12px;
}

.wp-vendor-likes {
  position: relative;
  padding-right: 18px;
}

.wp-vendor-likes img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.wp-vendor-dotted-headlines {
  font-size: 12px;
  color: #737e88;
}

.wp-vendor-dotted-headlines--has-dot:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 4px;
  border-radius: 100%;
  background-color: #737e88;
  vertical-align: middle;
}

.wp-vendor-star-container {
  display: flex;
  align-items: center;
}

.modal .wp-vendor-star-container {
  margin-top: 10px;
}

.wp-vendor-star {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
  width: 15px;
  height: 15px;
}
.wp-vendor-star-rate {
  margin-left: 5px;
}

.likes {
  margin-left: 10px;
}
.likes span {
  color: #5194a0;
}

.wp-vendor-star img {
  width: 100%;
  display: inherit;
}

.alsoRequest-header-link {
  margin: 0 0 10px;
}

.alsoRequest-subheader-link {
  margin-bottom: 15px !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.64);
}

.alsoRequest-vendors {
  display: flex;
  gap: 20px;
  position: relative;
}

.alsoRequest-vendors .wp-vendor-holder {
  flex: 1 0 30%;
  width: 30%;
  position: relative;
  margin: 0 !important;
}

.alsoRequest-vendors .swiper-pagination-bullet-active {
  background: #6eaeb8;
}

.alsoRequest-vendors .swiper-button-next,.alsoRequest-vendors .swiper-button-prev {
  top: 60%;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid;
  border-color: #6eaeb8;
  border-radius: 50%;
}

.alsoRequest-vendors .swiper-button-next::after,.alsoRequest-vendors .swiper-button-prev::after {
  color: #6eaeb8;
  font-size: 16px !important;
}

.alsoRequest-vendors .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-width: 2px;
  border-color: #6eaeb8;
}

.alsoRequest-vendors .swiper-pagination-bullet-active{
  background: #fff;
}

@media only screen and (max-width: 700px) {
  .alsoRequest-vendors {
    display: block;
  }

  .alsoRequest-vendors .wp-vendor-holder {
    flex: 1 0 100%;
    width: 100%;
    position: relative;
    margin: 0 !important;
  }

  .alsoRequest-vendors .swiper-button-next,.alsoRequest-vendors .swiper-button-prev {
    top: 50%;
    width: 40px;
    height: 40px;
  }

  .alsoRequest-vendors .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}

.alsoRequest-vendors .wp-vendor-holder .wp-sidebar-vendor {
  position: relative;
  display: block;
}

.alsoRequest-vendors .wp-vendor-holder .wp-sidebar-vendor .wp-vendor-rate {
  border: none;
}


.alsoRequest-vendors .wp-vendor-holder .wp-sidebar-vendor .wp-vendor-titles {
  height: 48px;
}

.alsoRequest-vendors .wp-vendor-holder .wp-sidebar-vendor .wp-vendor-title {
  font-size: 12px;
}

.alsoRequestChbx {
  visibility: hidden;
  position: absolute;
}

.alsoRequestChbx + label:before,
.alsoRequestChbx + label:after {
  content: '';
  display: block;
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
}

.alsoRequestChbx + label:before {
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #6eaeb8;
  background: #fff;
}

.alsoRequestChbx + label:after {
  opacity: 0;
  top: 18px;
  right: 15px;
  width: 12px;
  height: 6px;
  transform: rotate(-45deg);
  border-width: 0 0 2px 2px;
  border-style: solid;
  border-color: #107B8F;
}

.alsoRequestChbx:checked + label:after {
  opacity: 1;
}

.accordion-description {
  padding: 4px 30px;
  word-wrap: break-word;
  letter-spacing: normal;
  white-space: pre-line;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
}

.rates-wrapper .rates-accordion {
  padding: 10px 0;
}

.rates-wrapper .rates-accordion label {
  flex-wrap: nowrap;
  gap: 6px;
  height: auto;
  line-height: 20px;
}

.rates-wrapper .rates-accordion .rates-accordion-price {
  white-space: nowrap;
}

/* General */
.Accordion {
  width: 100%;

  color: #000000A3;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}
/* Input */
.Accordion > ul > li > input {
  display: none;
}
/* List */
.Accordion > ul {
  overflow: hidden;
  border-radius: 5px;
  margin: 0;
  padding: 0px;
}
.Accordion > ul > li {
  border-bottom: 1px solid #ccc;
  display: block;
}
.Accordion > ul > li:last-child {
  border-bottom: none;
}
.Accordion > ul > li > div {
  display: none;
  overflow: hidden;
  box-sizing: border-box;
}
/* Content */
.Accordion > ul > li > label {
  background-color: #fff;
  align-items: center;
  font-weight: 600;
  position: relative;
  flex-wrap: wrap;
  display: flex;
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
  padding: 0px 4em 0 2em;
  height: 4rem;
  line-height: 4rem;
  margin: 0px;
}
.Accordion > ul > li > label > i {
  font-style: normal;
  align-self: initial;
  font-weight: normal;
  margin-left: 15px;
  color: #aaa;
  font-size: 0.8em;
}
.Accordion > ul > li:last-chil > p {
  border-bottom: none;
}
.Accordion > ul > li > label > span {
  text-overflow: ellipsis;
  color: #aaa;
  margin-left: 10px;
  line-height: 30px;
  font-size: 12px;
}
/* Selection */
.Accordion > ul > li > label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Arrow */
.Accordion > ul > li > label:after {
  content: "";
  transform: rotate(45deg);
  height: 10px;
  width: 2px;
  background: #666;
  right: 26px;
  border-radius: 2px;
  top: 50%;
  text-align: center;
  line-height: 30px;
  margin-top: -5px;
  display: block;
  position: absolute;
  text-align: center;
}
.Accordion > ul > li > label:before {
  content: "";
  transform: rotate(-45deg);
  height: 10px;
  width: 2px;
  background: #666;
  right: 32px;
  border-radius: 2px;
  top: 50%;
  text-align: center;
  line-height: 30px;
  margin-top: -5px;
  display: block;
  position: absolute;
  text-align: center;
}
.Accordion > ul > li > input:checked + label:after {
  transform: rotate(-45deg);
}
.Accordion > ul > li > input:checked + label:before {
  transform: rotate(45deg);
}
/* Move */
.Accordion > ul > li > label:after,
.Accordion > ul > li > label:before {
  -webkit-transition: top 200ms ease-in-out;
  -moz-transition: top 200ms ease-in-out;
  -o-transition: top 200ms ease-in-out;
  transition: top 200ms ease-in-out;
  -ms-transition: top 200ms ease-in-out;
}
/* Link */
.Accordion > ul > li > label > a {
  margin-left: auto;
  text-transform: uppercase;
  line-height: 3em;
  height: 3em;
  background: rgba(0, 0, 0, 0.04);
  letter-spacing: 1px;
  color: #000;
  padding: 0px 15px;
  font-size: 10px;
  border-radius: 1000px;
  text-decoration: none;
}
.Accordion > ul > li > label > a:hover {
  background: #eee;
}
.Accordion > ul > li.active > label > i {
  transform: rotate(180deg);
}
/* Hover */
.Accordion > ul > li > label:hover {
  background: rgb(250, 250, 250);
}
/* Active */
.Accordion > ul > li > input:checked + label + div {
  display: block;
}
/* Print */
@media print {
  .Accordion > ul {
    border: none;
  }
  .Accordion > ul > li > p > a {
    display: none;
  }
  .Accordion > ul > li > p:after {
    display: none;
  }
  .Accordion > ul > li > div {
    display: block;
  }
}

.c-footer {
  background-color: #f6f7f8;
}

.vendorsfeed-footer {
  display: flex;
}

.vendorsfeed-footer-header-link {
  text-align: center;
}

.c-more-weddyplace {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;

  color: #2d353c !important;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}

.c-more-weddyplace h4 {
  margin-top: 0;
}

.c-more-weddyplace h4 a {
  color: #335d65;
}

.c-more-weddyplace ul li a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-stretch: 100%;
  line-height: 18px;
  font-weight: 400;
  color: #767676;
  overflow-wrap: break-word;
  margin: 10px;
}

.list-unstyled {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.c-footer .footer-swiper-container {
  width: 100%;
  height: 550px;
  position: relative;
  overflow: hidden;
}

.c-footer .footer-swiper-container .vendorsfeed-footer-header-link {
  margin-left: 50px;
  text-align: center;
  font-weight: 700 !important;
  font: 400 16px/28px "Open Sans", "Lucida Sans Unicode", "Lucida Grande",
    sans-serif;
  color: #2d353c !important;
}

.c-footer .footer-swiper-container .vendorsfeed-footer-link {
  font-family: "Playfair Display";
}

.c-footer .footer-swiper-container .vendorsfeed-footer {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
  width: 100%;
  overflow: auto;
  margin-bottom: 30px;
  scroll-snap-type: x mandatory;
}

.c-footer .footer-swiper-container .vendorsfeed-footer .wp-vendor-holder {
  margin-right: 5px;
  margin-bottom: 10px;
  width: 33%;
  flex-basis: 33%;
  min-width: 350px;
  display: block;
  scroll-snap-align: start;
}

.c-footer .footer-swiper-container
  .vendorsfeed-footer .wp-vendor-holder
  .wp-vendor-background {
  padding-top: 75%;
}

.c-footer
  .footer-swiper-container
  .vendorsfeed-footer
  .wp-vendor-holder
  .wp-vendor-content {
  background-color: #fff;
}

.c-footer
  .footer-swiper-container
  .vendorsfeed-footer
  .wp-vendor-holder
  .wp-vendor-content
  .wp-vendor-titles {
  height: 100px;
  overflow: hidden;
}

.c-footer
  .footer-swiper-container
  .vendorsfeed-footer
  .wp-vendor-holder
  .wp-vendor-content
  .wp-vendor-titles
  strong {
  font-size: 18px;
  line-height: 1.5em;
  height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-footer
  .footer-swiper-container
  .vendorsfeed-footer
  .wp-vendor-holder
  .wp-vendor-content
  .text-blue {
  font-weight: 700;
}

.c-footer .footer-swiper-container .swiper-button-next,
.c-footer .footer-swiper-container .swiper-button-prev {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #8c8c8c;
  width: var(--swiper-navigation-size);
}

.footer-swiper-button-next,
.footer-swiper-button-prev,
.swiper-button-next,
.swiper-button-prev {
  outline: 0;
}

.footer-swiper-button-next:after,
.footer-swiper-button-prev:after,
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: #737e88;
}

.swiper-wrapper.display-block {
  display: block !important;
}

.swiper-slide {
  background-position: center center;
  background-size: cover;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-width: 1px;
  border-style: solid;
  border-color: #454d54;
  background-color: transparent;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background-color: #454d54;
}

.slider-holder {
  display: block;
  width: 100%;
}

.text-blue {
  color: #335d65;
}

.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 1em;
  max-width: 350px;
  width: calc(100% - 2em);
  vertical-align: top;
}

.input__field {
  position: relative;
  display: block;
  float: right;
  padding: 0.8em;
  width: 60%;
  border: none;
  border-radius: 0;
  background: #f0f0f0;
  color: #aaa;
  font-weight: 400;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
  outline: none;
}

.input__label {
  display: inline-block;
  float: right;
  padding: 0 1em;
  width: 40%;
  color: #696969;
  font-weight: bold;
  font-size: 70.25%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input__label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%;
}

.graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
}

.icon {
  color: #E5E5E5;
  font-size: 150%;
}

/* General */
.Dropdown {
  position: relative;
  margin: 20px 10px;
  border-radius: 5px;
  border: 1px solid #aaa;
}
.Dropdown:hover {
  box-shadow: 0px 0px 0px 3px #eee;
}
/* Apperture */
.Dropdown > label {
  color: #000000A3;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
  display: block;
  font-size: 1em;
  padding: 0.4rem 0.8rem;
  line-height: 1.6;
  position: relative;
}
.Dropdown > label:after {
  font-weight: 900;
  border: 1px solid #aaa;
  border-left: none;
  border-bottom: none;
  z-index: 3;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
  font-size: 0.9em;
  transform: rotate(135deg);
  height: 10px;
  width: 10px;
  top: 50%;
  content: "";
  display: inline-block;
}
.Dropdown > input:checked ~ label {
  background: rgb(238, 238, 238);
  border-radius: 5px 5px 0px 0px;
}
.Dropdown > input:checked ~ label:after {
  transform: rotate(-45deg);
  margin-top: -2px;
}
.Dropdown > input {
  display: none;
}
/* List */
.Dropdown > ul {
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.Dropdown > ul li {
  font-size: 0.9em;
  border-top: 1px solid #E5E5E5;
  display: block;
  margin: 0;
}
/* .Dropdown > ul li input{  display:none} */
/* Close */
.Dropdown > input ~ ul li input[type="radio"] {
  display: none;
}
.Dropdown > input ~ ul li label[type="radio"] {
  display: none;
}
.Dropdown > input ~ ul input[type="radio"] + label:after {
  z-index: 2;
  border-radius: 4px 4px 0px 0px;
  background: #fff;
}
.Dropdown > input:checked ~ ul input[type="radio"] + label:after {
  background: rgb(248, 249, 255);
}
/* Open */
.Dropdown > input:checked ~ ul {
  overflow: auto;
  position: static;
  height: auto;
}
.Dropdown > input:checked ~ ul li input[type="radio"] {
  display: block;
}
.Dropdown > input:checked ~ ul li label[type="radio"] {
  display: block;
}
/* Divisor */
.Dropdown > ul li:empty {
  height: 10px;
  background: #eee;
  padding: 0;
  position: relative;
}
/* Checkboxs */
.Dropdown label:last-child {
  height: 40px;
  font-weight: normal;
  display: block;
  line-height: 40px;
  font-size: 1em;
  box-sizing: border-box;
  padding: 0 1rem;
}
.Dropdown input[type="radio"]:checked {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: green;
  width: 20px;
  height: 20px;
}
.Dropdown input[type="radio"]:checked + label:after {
  position: absolute;
  left: 0;
  top: 0;
  content: attr(data-title);
}
.Dropdown input[type="radio"]:checked + label:after {
  display: block;
  padding: 0.4rem 0.8rem;
  line-height: 1.6;
  right: 0;
  pointer-events: none;
}
.Dropdown input[type="radio"] {
  position: absolute;
  width: 20px;
  margin: 10px;
}
.Dropdown input[type="radio"]:after {
  border-top: none;
  border-left: none;
  position: absolute;
  content: "";
  border-radius: 20px;
  background: #fff;
  display: block;
  width: 10px;
  height: 10px;
  left: 4px;
  opacity: 0;
  top: 4px;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transform: scale(0.5) rotate(50deg);
  transform: scale(0.5) rotate(50deg);
  -webkit-transition: opacity 0.3s,
    -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  transition: opacity 0.3s,
    -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s;
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s,
    -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
.Dropdown input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 20px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  border: 1px solid #000;
  background: #fff;
  border-radius: 24px;
  -webkit-transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}
/* Disabled */
.Dropdown input[type="radio"]:disabled {
  opacity: 0.8;
}
/* Focus */
.Dropdown input[type="radio"]:focus {
  box-shadow: 0 0 0 2px rgba(157, 157, 157, 0.5);
}
.Dropdown input[type="radio"]:checked {
  background: #444;
}
.Dropdown input[type="radio"]:checked:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(45deg);
  transform: rotate(1) rotate(45deg);
}
.Dropdown input[type="radio"] + label {
  font-size: 1em;
  line-height: 40px;
  display: block;
  margin-left: 25px;
  vertical-align: top;
  cursor: pointer;
}
/* Input Text */
.Dropdown label:first-child {
  height: 40px;
  font-weight: normal;
  display: block;
  width: 20%;
  text-align: right;
  line-height: 40px;
  font-size: 0.7em;
  box-sizing: border-box;
  background: rgb(252, 252, 252);
  border-right: 1px solid #E5E5E5;
  padding: 0 1rem;
  position: absolute;
}
.Dropdown input[type="text"] {
  height: 40px;
  font-weight: normal;
  background: none;
  font-size: 1em;
  box-sizing: border-box;
  line-height: 40px;
  font-size: 1em;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 1rem;
}
.Dropdown label + input[type="text"] {
  height: 40px;
  margin-left: 20%;
  width: 80%;
  background: transparent;
}
/* Links */
.Dropdown > ul > li > a {
  text-decoration: none;
  color: #555;
  padding: 0 0.8rem;
  line-height: 3;
  display: block;
  position: relative;
}
.Dropdown > ul > li > a:hover {
  background: #eee;
  cursor: pointer;
}
.Dropdown > ul > li > a:after {
  font-weight: 900;
  border: 1px solid #aaa;
  border-left: none;
  border-bottom: none;
  z-index: 3;
  position: absolute;
  right: 23px;
  top: 50%;
  margin-top: -5px;
  font-size: 0.9em;
  transform: rotate(45deg);
  height: 10px;
  width: 10px;
  top: 50%;
  content: "";
  display: inline-block;
}

.Input {
  position: relative;
}

.Input.hidden {
  display: none;
}

.Input input {
  /* margin-top: 5px!important; */
}

.Input input[type=date] {
  resize: none;
  height: 48px;
}

.Input input {
  height: 48px;
}

.Number input {
  height: 48px;
}

input[type="tel"] {
  width: 100px;
}

input + i {
  padding-right: 30px;
  position: absolute;
  right: 15px;
  top: 18px;
}

input:invalid + i:after {
  position: absolute;
  content: "✖";
  padding-left: 5px;
  color: #8b0000;
}

input:valid + i:after {
  position: absolute;
  content: "✓";
  padding-left: 5px;
  color: #009000;
}

.validation-error {
  display: none;
  font-size: 12px;
  color: #890500;
}

.validation-error.budget, .validation-error.telephone, .validation-error.email, .validation-error.name {
  padding-top: 5px;
}

.validation-error.show {
  display: block;
}

/* Disable Appearance */
.Number input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.Number input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.Number input[type="number"]:focus {
  border: 1px solid #007B90;
  color: #000000A3;
}
/* Input */
.Number {
  display: inline-flex;
  width: 100%;
}
.Number input {
  text-align: center;
  -webkit-appearance: none;
  margin: 0;
  outline: none;
  resize: vertical;
  font-size: 0.9em;
  box-sizing: border-box;
  padding: 4px 15px;
  width: 80px;
  border-radius: 0px;
  border: 1px solid #E5E5E5;
  flex-grow: 1;
}
/* Buttons */
.Number * {
  box-sizing: border-box;
}
.Number button {
  border: 1px solid #E5E5E5;
  outline: 0;
  -webkit-appearance: none;
  background-color: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  width: 50px;
  /* height: 2rem; */
  cursor: pointer;
  margin: 0;
  position: relative;
  font-size: 16px;
  touch-action: manipulation;
}
.Number button:active {
  background: rgb(233, 233, 233);
}
.Number button:after,
.Number button:before {
  display: inline-block;
  position: absolute;
  content: "";
  width: 0.7rem;
  height: 2px;
  background-color: #212121;
  transform: translate(-50%, -50%);
  font-size: 16px;
}
.Number button:first-child {
  border-radius: 8px 0px 0px 8px;
  border-right: none;
}
.Number button:last-child {
  border-radius: 0px 8px 8px 0px;
  border-left: none;
}
.Number button:last-child:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.Radio {
  padding: 0px;
}
.Radio span {
  margin: 5% 2%;
  display: inline-block;
  white-space: nowrap;
}
.Radio *,
.Radio *:before,
.Radio *:after {
  box-sizing: inherit;
}
.Radio input[type="radio"] + label {
  margin-right: 5px;
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
  cursor: pointer;
}
.Radio input[type="radio"]:after {
  border-top: none;
  border-left: none;
  position: absolute;
  content: "";
  border-radius: 20px;
  background: #fff;
  display: block;
  width: 10px;
  height: 10px;
  left: 2px;
  opacity: 0;
  top: 2px;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transform: scale(0.5) rotate(50deg);
  transform: scale(0.5) rotate(50deg);
  -webkit-transition: opacity 0.3s,
    -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  transition: opacity 0.3s,
    -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s;
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s,
    -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
.Radio input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid #52939f;
  background: #fff;
  border-radius: 24px;
  -webkit-transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}
/* Disabled */
.Radio input[type="radio"]:disabled {
  opacity: 0.8;
}
/* Focus */
.Radio input[type="radio"]:focus {
  box-shadow: 0 0 0 2px rgba(157, 157, 157, 0.5);
}
.Radio input[type="radio"]:checked{
  background: #52939f;
}
.Radio input[type="radio"]:checked:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(45deg);
  transform: rotate(1) rotate(45deg);
}

.form-flexible {
  display: flex;
  padding: 6px 24px 0;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  color: black;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}

.submit-container {
  padding: 0 24px;
}

.dot-pulse {
  position: relative;
  opacity: 0;
  left: -9982px;
  width: 4px;
  height: 4px;
  border-radius: 5px;
  background-color: white;
  color: white;
  box-shadow: 9999px 0 0 -5px white;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: .25s;
  display: inline-flex;
}

.dot-pulse::before, .dot-pulse::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 5px;
  background-color: white;
  color: white;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px white;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10004px 0 0 -5px white;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: .5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px white;
  }
  30% {
    box-shadow: 9984px 0 0 2px white;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px white;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9994px 0 0 -5px white;
  }
  30% {
    box-shadow: 9994px 0 0 2px white;
  }
  60%,
  100% {
    box-shadow: 9994px 0 0 -5px white;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10004px 0 0 -5px white;
  }
  30% {
    box-shadow: 10004px 0 0 2px white;
  }
  60%,
  100% {
    box-shadow: 10004px 0 0 -5px white;
  }
}

.btnInquire:disabled .dot-pulse {
  opacity: 1;
}

.submit-container button {
  /* margin: 0 10px; */
  border-radius: 8px;
  background-color: #007B90 !important;
  border-color: #007B90 !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  padding: 11px 0 !important;
  line-height: 24px;
  letter-spacing: 0;
}
.submit-container button:disabled {
  opacity: 0.5;
}
.Button {
  vertical-align: middle;
  outline: none;
  display: inline-block;
  width: 100%;
  padding: 15px;
  border-radius: 0.3rem;
  border: 1px rgba(204, 204, 204, 0.4) solid;
  background: rgba(235, 235, 235, 0.4);
  text-align: center;
  font-family: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Focus */
.Button:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
/* Icons */
.Button:before {
  vertical-align: middle;
  line-height: 0.9;
  font-size: 1.2em;
  margin-right: 0.6rem;
}
.Button:after {
  vertical-align: middle;
  line-height: 0.9;
  font-size: 1.2em;
  margin-left: 0.6rem;
}
/* Types */
/* Success */
button.success,a.success,.Button.success {
  border-color: #325a61;
  color: #fff;
  background: #325a61;
  padding: 15px;
}
/* button.success:before{  content:""; border-left:2px solid #fff; width: 10px; height: 5px; display: inline-block; margin-right: 10px; transform: translateY(-3px) rotate(-45deg); border-bottom: 2px solid #fff;} */

.hint {
  background: #ECF4F4;
  margin-top: 24px !important;
  padding: 16px 24px 20px;
  display: flex;
  align-items: center;
  /* text-align: center;
  color: #484848;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important; */
}
.hint-icon {
  margin-right: 20px;
}
.hint-heading {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: #007B90;
  margin-bottom: 4px;
}
.hint-subtext {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}
.inquiry-phoneInput:focus, .inquiry-dateInputFlex:focus, .inquiry-commentInput:focus {
  border: 1px solid #007B90 !important;
  color: #000000A3;
}
/**************************\
  Basic Modal Styles
\**************************/

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
    helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;

  position: fixed;
  z-index: 999;
}

.modal p {
  margin: 0;
}

.modal hr {
  margin: 5px 0;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container.inquiry {
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  width: 90%;
  max-width: 720px;
  max-height: 90%;
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
}
.modal__container.inquiry-mobile {
  min-width: 100%;
  background-color: #fff;
  /* padding: 30px; */
  border-radius: 8px 8px 0 0;
  overflow-y: auto;
  box-sizing: border-box;
  max-height: 90%;
  width: 100%;
}
.modal__container.inquiry .modal__close-container {
  display: none !important;
}
#modal-inquire-content {
  overflow: hidden;
}
@media (max-width: 540px) {
  #modal-inquire-content {
    max-width: calc(100vw - 19px);
  }
}



.modal__container.contacts {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  width: 90%;
  height: 250px;
  max-width: 720px;
  max-height: 90%;
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
}
.modal__container.contacts-mobile {
  min-width: 100%;
  background-color: #fff;
  /* padding: 30px; */
  border-radius: 8px 8px 0 0;
  overflow-y: auto;
  box-sizing: border-box;
  max-height: 90%;
  width: 100%;
}

.modal__container.contacts .modal__close-container {
  position: absolute;
  top: 24px;
  right: 24px;
}
#modal-vendor-contacts-content {
  overflow: hidden;
}
@media (max-width: 540px) {
  #modal-vendor-contacts-content {
    max-width: calc(100vw - 19px);
  }

  .modal__container.contacts {
  }
}


.multisteps-inquiryform__form {
  display: flex;
  width: 200%;
  transition: transform 0.3s ease;
}

.multisteps-inquiryform__form.register {
  transform: translateX(-50%);
}

.multisteps-inquiryform__form.inquiry {
  transform: translateX(0%);
}



.multisteps-inquiryform__panel{
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
}


.step-container{
  height: 100%;
  flex-grow: 1;
}

.step-actions {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 10px;
  font-size: 16px;
  line-height: 24px;
}

.modal__header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;

  font: 600 16px/28px "Open Sans", "Lucida Sans Unicode", "Lucida Grande",
    sans-serif;
  color: #717171;
}

.name-header {
  display: flex;
}

.name-header .form-logo {
  object-fit: contain;
}

.name-header .images-container {
  margin: 10px 0;
}

.name-header .image-container img {
  border-radius: 50%;
  max-width: none;
}

.name-header .flex-box {
  margin-left: 20px;
}

.button-row {
  display: flex;
}

.modal-vendor-name {
  font-weight: 600 !important;
  margin-bottom: 0;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__close-container {
  display: flex;
  justify-content: end;
}

.modal__close-container .modal__close:before {
  content: "\2715";
}

.modal__content {
  /* margin-top: 0 !important;
  margin-bottom: 0;
  line-height: 1.5; */
  /* color: rgba(0, 0, 0, 0.8); */
}

.modal__content .c-content,
.modal__content .content {
  margin-top: 0;
  margin-bottom: 0;
}

.modal__btn {
  float: right;
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #73b1c2;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}


@keyframes mmslideInQu {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0%);
  }
}

@keyframes mmslideOutQu {
  from {
    transform: translateY(20%);
  }
  to {
    transform: translateY(35%);
  }
}



.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideInQu 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOutQu 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  /* will-change: transform; */
}

.modal h3,
.modal textarea {
  font: 400 16px/28px "Open Sans", "Lucida Sans Unicode", "Lucida Grande",
    sans-serif;
  margin: 0 0 16px;
  color: #717171;
  font-size: 14px;
  padding: 15px 0;
}

.detailContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.detailContainer .paint-stroke {
  height: 65px;
}
.detailContainer .detailHolder {
  display: -ms-flexbox;
  display: flex;
}

.detailContainer .detailHolder .detailIcon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.detailContainer .detailHolder .detailTitle {
  display: -ms-flexbox;
  display: flex;
  color: #6d6d6d;
  margin-bottom: 0;
  font-size: 12px;
}
.detailContainer .detailHolder .detailTitle .inquiry-dateFlexLabel {
  color: green;
  font-size: 11px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}
.detailContainer .detailHolder .detailTitle .inquiry-dateFlexLabel.hide {
  display: none;
}
.detailContainer .detailHolder .detailTitle mat-icon {
  margin-left: 5px;
  font-size: 14px;
  width: 14px;
  height: 14px;
}
.detailContainer .detailHolder .detailValue {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}
.comment-label {
  color: #000000A3;
  padding-top: 10px;
}
textarea.cdk-textarea-autosize {
  max-height: 990px;
  height: 111px;
  resize: vertical;
  border-radius: 8px;
  margin-bottom: 6px;
  margin-top: 6px;
  border: 1px solid #E5E5E5;
  padding: 13px;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}


.inquiry-container {
  overflow: hidden;
}

.register-container .step-container {
  padding: 0 32px 16px;
}

.detailContainer .register-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  margin: 0;
  color: #000000;
}

.detailContainer .register-subheading {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 18px;
  color: #000000A3;
}

.register-subtext {
  color: black;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 32px;
}

.register-already-registered {
  line-height: 24px;
  font-size: 16px;
}

.register-privacy-policy {
  color: #007B90;
  text-decoration: none;
}

.register-privacy-policy:hover {
  text-decoration: underline;
}

.register-login {
  color: #007B90;
  font-weight: 600;
  text-decoration: none;
}

.register-container .detailContainer {
  justify-content: center;
  padding: 0;
}
.register-container .name-header {
  height: 60px;
  padding: 20px;
}
.register-container .detailContainer h3 {
  text-align: center;
  line-height: 1;
}
.register-container .detailContainer .Input {
  padding: 6px 0;

}
.register-container .detailContainer .Input input {
  border-radius: 8px;
  height: 48px;
}
.register-container .detailContainer p {
  text-align: center;
}
.register-container .detailContainer button {
  margin-top: 18px;
  border-radius: 8px;
  background-color: #007B90;
  border: none;
  height: 48px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: none;
  padding: 0;
  letter-spacing: 0;
}
.inquirySignup-errors {
  display: none;
  flex-direction: column;
  padding: 6px 24px;
  color: #890500;
}

.inquirySignup-errors.show {
  display: flex;
}



.calendar-wrapper {
  padding: 0 20px;
}

#calendar-wrapper {
  width: 100%;
  display: grid;
  grid-template-rows: 2.5em 1fr;
  font-family: "Open Sans", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  font-size: inherit;
}

#calendar-wrapper header {
  grid-row: 1/2;
  font-size: 2em;
  box-sizing: inherit;
}

#calendar-wrapper header h4 {
  padding: 0;
  margin: 0;
}

#calendar {
  display: grid;
  grid-template-columns: 1fr 4em;
  grid-template-rows: 3em 1fr;
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

#calendar #calendar-days,
#calendar #calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  padding: 0 1em;
  box-sizing: inherit;
  margin: 0;
}

#calendar #calendar-days {
  justify-items: center;
  grid-row: 1/2;
  grid-column: 1/2;
}

#calendar #calendar-grid {
  grid-template-rows: repeat(6, 1fr);
  justify-items: flex-start;
  grid-row: 2/-1;
  grid-column: 1/2;
  width: 100%;
}

#calendar #calendar-grid > time {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0.4em auto;
  padding: 1em 0.2em;
  /* width: 90%; */
  background-color: rgba(108, 108, 108, 0.02);
  border-radius: 50%;
  border: 2px solid transparent;
  transition: box-shadow 200ms, border 100ms;
  box-shadow: 1px 1px rgba(0, 0, 0, 0);
  box-sizing: inherit;
}


#calendar #calendar-grid time.selected,
#calendar #calendar-grid time.selected:focus {
  outline: none;
  border: 2px solid #5194a0;
  box-sizing: inherit;
}

#calendar #calendar-grid time.disabled,
#calendar #calendar-grid time.disabled:focus {
  outline: none;
  border: 2px solid transparent;
  box-sizing: inherit;
  cursor: not-allowed;
  background-color: rgba(30, 39, 51, 0.2);
  box-shadow: 1px 1px rgba(0, 0, 0, 0);
}

#calendar #calendar-grid > *:hover {
  border: 2px solid rgba(72, 72, 72, 0.5);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  box-sizing: inherit;
}

#calendar #navigation-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  grid-row: 2/-1;
  grid-column: 2/-1;
  box-sizing: inherit;
  padding: 1em 0 3.5em;
  margin: 0;
}

#calendar #navigation-wrapper button {
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 3em;
  width: 1.6em;
  box-sizing: inherit;
  padding: 0.1em;
  margin: 0;
}

#calendar #navigation-wrapper button:hover {
  opacity: 0.75;
}

#calendar #navigation-wrapper button svg {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 0.6em;
  display: block;
  box-sizing: inherit;
}

#calendar #navigation-wrapper button svg path {
  fill: #5194a0;
}

#calendar #navigation-wrapper button:first-of-type {
  transform: rotate(180deg);
}

.mobile-inquiry-drawer {
  display: none;
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 16px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 15px 20px 15px 20px;
  justify-content: center;
  z-index: 1;
}
.mobile-inquiry-drawer button {
  width: auto;
  background-color: #007B90;
  border-radius: 8px;
  border: none;
  letter-spacing: 0;
  text-transform: none;
}
.mobile-inquiry-drawer.hide{
  display: none;
}

.cupertino-pane{
  display: none;
}
.cupertino-pane .draggable{
  display: none;
}

.cupertino-pane .content-header {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.cupertino-pane .content-info {
  display: flex;
  flex-direction: column;
  /* padding: 0 20px; */
}
.cupertino-pane .content-header button{
  width: auto;
}


.cupertino-pane .content-bottom-form-field {
  padding: 6px 24px;
}
.cupertino-pane .content-bottom-form-field .Number{
}





.preview-mode-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}












@media only screen and (max-width: 900px) {

  .mobile-inquiry-drawer {
    display: flex;
  }

  .cupertino-pane{
    display: block;
  }

  /* .header {
    padding: 0;
    height: auto;
  } */
  .header-wrapper {
    flex-direction: row;
  }

  .header-description {
    height: auto;
    min-height: 230px;
    order: 2;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .header-description .wrapper {
    margin-right: 0;
  }

  .wp-vendor-rate.bottom {
    position: relative;
    bottom: unset;
  }

  .header-image {
    position: relative;
    order: 1;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    height: 300px;
    max-height: 300px;
  }


  .header-image a {

  }


  .content .content-wrapper {
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .content-side {
    display: none;
  }

  .content .content-main {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
  }


  .galleries-wrapper .galleries-item p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .Accordion {
    padding: 0;
  }

  .calendar-wrapper {
    padding: 0;
  }

  #calendar {
    grid-template-columns: none;
  }
  #calendar-wrapper {
    font-size: 10px;
  }

  #calendar #calendar-grid > time {
    width: 40px;
  }

  #calendar-days span {
    margin: 0 2px;
  }

  #calendar #navigation-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-row: 3;
    grid-column: 1;
    box-sizing: inherit;
    padding: 1em 0 3.5em;
    margin: 0;
}
#calendar #navigation-wrapper button:first-of-type {
  transform: rotate(90deg);
}

#calendar #navigation-wrapper button:last-of-type {
  transform: rotate(270deg);
}






  #map {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }

  .reviews-wrapper .reviews-item {
    width: 100%;
  }

  .c-footer .footer-swiper-container .vendorsfeed-footer-header-link {
    width: 100%;
    margin-left: 0;
  }
  .c-more-weddyplace {
    padding: 15px;
  }
  .c-more-weddyplace h2 {
    font-size: 18px;
  }

  .modal {
    color: #2d353c;
    font: 400 15px/24px "Open Sans", "Lucida Sans Unicode", "Lucida Grande",
      sans-serif;
  }
  .modal__container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    max-height: 100%;
    max-width: 100%;
  }
  .modal__container.inquiry {
    width: 100%;
    padding: 15px;
    border-radius: 0;
  }
  .modal__container.inquiry-mobile {
    /* padding: 15px; */
    width: 100%;
    height: auto;
    min-height: auto;
    position: fixed;
    bottom: 0;
  }

  .overflow-hidden{
    overflow: unset!important;
  }

  .name-header .flex-box {
    margin-left: 10px;
  }


  .name-header {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .name-header .image-container img {
    width: 75px;
    height: 75px;
  }

  .modal-vendor-name {
    margin-top: 0;
    font-size: 18px;
  }


  .detailContainer {
    padding: 0;
  }

  .detailContainer .detailHolder {
    min-width: 145px;
    padding: 10px;
  }

  .wp-vendor-star-container {
    margin-top: 0px;
  }


  .preview-mode-header .normal-tab {
    display: none!important;
  }
}



.inquiry-errors {
  display: flex;
  flex-direction: column;
  color: red;
  width: 100%;
}



.loading-indicator {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d0d0d0bd;
}

.loading-indicator.show{
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.lds-heart {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  transform-origin: 40px 40px;
}
.lds-heart div {
  top: 32px;
  left: 32px;
  position: absolute;
  width: 32px;
  height: 32px;
  background: #5194a0;
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background: #5194a0;
}
.lds-heart div:before {
  left: -24px;
  border-radius: 50% 0 0 50%;
}
.lds-heart div:after {
  top: -24px;
  border-radius: 50% 50% 0 0;
}
@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}

.form-info, .mobile-form-info {
  cursor: help;
}

.form-info-container:hover .form-tooltip {
  display: flex;
}

.mobile-form-info-container:hover .mobile-form-tooltip {
  display: flex;
}

.form-tooltip {
  display: none;
  position: absolute;
  right: 10px;
  transform: translateY(8px);
  width: 240px;
  line-height: 22px;
  font-size: 16px;
  background: #007b90;
  color: white;
  padding: 8px;
  border-radius: 8px;
  z-index: 1;
}

.form-tooltip:before {
  content: '';
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #007b90;
  position: absolute;
  right: 14px;
  top: -8px;
}

.mobile-form-info-container {
  display: flex;
  position: relative;
}

.mobile-form-tooltip {
  display: none;
  position: absolute;
  right: 10px;
  transform: translate(70%, 30px);
  width: 240px;
  line-height: 22px;
  font-size: 16px;
  background: #007b90;
  color: white;
  padding: 8px;
  border-radius: 8px;
  z-index: 1;
}

.mobile-form-tooltip:before {
  content: '';
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #007b90;
  position: absolute;
  left: 62px;
  top: -8px;
}

.share-button-container {
  display: flex;
  align-items: center;
  column-gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: black;
  cursor: pointer;
}

.share-button-contents {
  display: none;
  position: absolute;
  transform: translate(-86px, 45px);
  line-height: 22px;
  font-size: 16px;
  background: white;
  border: 1px solid gray;
  padding: 8px 8px 6px 8px;
  border-radius: 8px;
  z-index: 1;
  column-gap: 4px;
  align-items: center;
}

.share-button-contents::before {
  content: '';
  width: 0px;
  height: 0px;
  height: 10px;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 100%;
}

.share-button-container:hover .share-button-contents {
  display: flex;
}

.ssk-group {
  display: flex;
  column-gap: 4px;
}

.galleryTiles-modal {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: white;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translate(0px, 100%);
  transition: all 0.4s;
}

@media only screen and (max-width: 900px) {
  .galleryTiles-modal {
    z-index: 0;
  }
}

.galleryTiles-modal.opened {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media only screen and (min-width: 1081px) {
  .galleryTiles-modal.opened.isPreview {
    top: 80px;
  }
}

.galleryTiles-topbar {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  align-items: center;
  height: 60px;
}

.galleryTiles-topbar-back {
  height: 32px;
  width: 32px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;

}
.galleryTiles-topbar-back:hover {
  background-color: whitesmoke;
}

.galleryTiles-topbar-back svg {
  transform: rotate(180deg);
  width: 24px;
  height: 24px;
}

.galleryTiles-content-wrapper {
  background-color: white;
  overflow-y: auto;
  height: calc(100% - 60px);
}

.galleryTiles-content {
  max-width: 1278px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 72px;
}

.galleryTiles-grid {
  width: 100%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-right: 48px;
}

@media only screen and (max-width: 900px) {
  .galleryTiles-topbar {
    padding: 0 20px 0px 10px;
  }

  .galleryTiles-content {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 150px;
  }

  .galleryTiles-grid {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
  }

  .galleryTiles-project-header {
    font-size: 20px;
  }
}

.galleryTiles-images {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}

.galleryTiles-images.headerImage {
  padding-top: 10px;
}

.galleryTiles-images .galleryTiles-image-wrapper {
  width: calc(50% - 4px);;
}
.galleryTiles-images .galleryTiles-image-wrapper:nth-child(3n+1) {
  width: 100%;
}

.galleryTiles-image {
  display: block;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 67% 0 0 0;
  cursor: pointer;
}

.galleryTiles-image img {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.galleryTiles-content .mobileTileViewHide {
  display: none;
}
.galleryTiles-content textarea.cdk-textarea-autosize {
  height: 60px;
}
.galleryTiles-content .form-flexible {
  margin-bottom: 10px;
}
.galleryTiles-content .hint {
  margin-top: 14px !important;
  padding: 10px 24px 14px
}

.toolbar-app-banner {
  transition: opacity 0.4s;
}
.toolbar-app-banner.hide-app-banner {
  opacity: none;
  user-select: none;
}
