/* Booking popup */

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

.booking-popup img {
  display: block;
  max-width: 100%;
}

.booking-popup button {
  font-family: inherit;
}

.booking-popup {
  --booking-accent: #d7b594;
  --booking-text: #000000;
  --booking-muted: #555555;
  --booking-border: rgba(215, 181, 148, 0.65);
  --booking-radius: 8px;
  --booking-transition: 0.35s ease;

  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--booking-transition), visibility var(--booking-transition);
}

.booking-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.booking-popup-open {
  overflow: hidden;
}

.booking-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.booking-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px 28px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--booking-text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--booking-transition);
}

.booking-popup.is-open .booking-popup__dialog {
  transform: translateY(0) scale(1);
}

.booking-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aaaaaa;
  cursor: pointer;
  transition: color 0.2s ease;
}

.booking-popup__close:hover {
  color: var(--booking-text);
}

/* Header */

.booking-popup__header {
  padding-right: 40px;
  margin-bottom: 28px;
}

.booking-popup__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.booking-popup__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.booking-popup__brand-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-popup__title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  font-family: 'eksell' !important;
}

/* Views / fade */

.booking-popup__views {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.booking-popup__view {
  grid-area: 1 / 1;
  display: none;
  opacity: 0;
  transition: opacity var(--booking-transition);
  pointer-events: none;
  min-width: 0;
}

.booking-popup__view.is-active,
.booking-popup__view.is-leaving {
  display: block;
}

.booking-popup__view.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.booking-popup__view.is-leaving {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Options menu */

.booking-popup__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style:none;
}

.booking-popup .booking-popup__option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius) !important;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  font: inherit;
  color: inherit;
  text-decoration: none;
}

.booking-popup__options li{list-style:none !important}

.booking-popup__option:hover {
  border-color: var(--booking-accent);
  background: rgba(215, 181, 148, 0.06);
}

.booking-popup__option-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.booking-popup__option-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: transparent;
}

.booking-popup__option-icon.gm-icon svg {
  display: block;
  width: 35px;
  height: 35px;
}

.booking-popup__option-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.booking-popup__option-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--booking-text);
}

.booking-popup__option-desc {
  font-size: 18px;
  line-height: 1.45;
  color: var(--booking-muted);
}

/* Back button */

.booking-popup__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--booking-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.booking-popup__back:hover {
  color: var(--booking-text);
}

/* Form placeholder (replace with GF shortcode etc.) */

.booking-popup__form-placeholder {
  padding: 0;
  text-align: center;
  font-size: 15px;
  color: var(--booking-muted);
}

/* Forms */

.booking-popup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-popup__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-popup__field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--booking-text);
}

.booking-popup__field input,
.booking-popup__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--booking-radius);
  font: inherit;
  font-size: 15px;
  color: var(--booking-text);
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.booking-popup__field input:focus,
.booking-popup__field textarea:focus {
  outline: none;
  border-color: var(--booking-accent);
}

.booking-popup__field textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-popup__submit {
  align-self: flex-start;
  margin-top: 4px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--booking-radius);
  background: var(--booking-accent);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.booking-popup__submit:hover {
  opacity: 0.88;
}

/* Footer */

.booking-popup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--booking-border);
}

.booking-popup__footer-title {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
  font-family: 'eksell' !important;
}

.booking-popup__footer-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--booking-muted);
  max-width: 320px;
}

.booking-popup__footer-icon {
  flex-shrink: 0;
}

.booking-popup__footer-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Responsive */

@media (max-width: 480px) {
  .booking-popup__dialog {
    padding: 24px 20px 20px;
  }

  .booking-popup__option {
    padding: 14px 16px;
    gap: 12px;
  }

  .booking-popup__option-icon {
    width: 40px;
    height: 40px;
  }

  .booking-popup__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-popup__footer-icon {
    align-self: flex-end;
  }
}
.select2-container{z-index:20000 !important}
body div.wpforms-container-full .iti--inline-dropdown .iti__dropdown-content{z-index:30000 !important}
.wpforms-field-row {
  display: flex;
  margin: 0 -6px 13px;
}
.wpforms-field-large {
  min-width: 100%;
}

.wpforms-field-row .wpforms-one-half {
  flex-basis: 50%;
}
.wpforms-field-row .wpforms-field-row-block {
  padding: 0 6px;
}
.wpforms-field-row-block label{display:none !important}

.wpforms-field-email.wpforms-one-half{width:100% !important}
.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field{padding-top:0 !important;}
.hidden {
  display: none !important;
  visibility: hidden;
}

.wpforms-submit-container button[type="submit"] {
  width: 100%;
  height: 42px;
  line-height: 42px !important;
  border: 0;
  outline: 0;
  border-radius: 5px;
  background-color: #af9179 !important;
  background-image: url(../img/ruh.svg) !important;
  background-repeat: no-repeat !important;
  background-position: 15px 50% !important;
}

body[data-fancy-form-rcs="1"] .fancy-select-wrap {
  padding-top:0;
}

body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single {
  padding-top: 10px;
  padding-bottom: 15px;
}

.orbit-wrapper .slider-nav .right, .orbit-wrapper .slider-nav .left, .progress li span, .nectar-progress-bar span, #footer-outer #footer-widgets .col .tagcloud a:hover, #sidebar .widget .tagcloud a:hover, #fp-nav.tooltip ul li .fp-tooltip .tooltip-inner, #pagination .next a:hover, #pagination .prev a:hover, .comment-list .reply a:hover, .comment-list .reply a:focus, .icon-normal, .bar_graph li span, .nectar-button[data-color-override="false"].regular-button, .nectar-button.tilt.accent-color, body .swiper-slide .button.transparent_2 .primary-color:hover, #footer-outer #footer-widgets .col input[type="submit"], .blog-recent .more-link span:hover, .post-tags a:hover, #to-top:hover, #to-top.dark:hover, body[data-button-style*="rounded"] #to-top::after, #pagination a.page-numbers:hover, #pagination span.page-numbers.current, .portfolio-items .col[data-default-color="true"] .work-item:not(.style-3) .work-info-bg, .portfolio-items .col[data-default-color="true"] .bottom-meta, .portfolio-items .col.nectar-new-item .inner-wrap::before, .portfolio-filters-inline[data-color-scheme="accent-color-underline"] a::after, .portfolio-filters a, .portfolio-filters #sort-portfolio, .project-attrs li span, .portfolio-filters, .portfolio-filters-inline[data-color-scheme="accent-color"], .bottom_controls #portfolio-nav .controls li a i::after, .bottom_controls #portfolio-nav ul:first-child li#all-items a:hover i, .single-portfolio .facebook-share a:hover, .single-portfolio .twitter-share a:hover, .single-portfolio .pinterest-share a:hover, .single-post .facebook-share a:hover, .single-post .twitter-share a:hover, .single-post .pinterest-share a:hover, .mejs-controls .mejs-time-rail .mejs-time-current, .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .post.quote .content-inner .quote-inner .whole-link, .masonry.classic_enhanced .post.quote.wide_tall .post-content a:hover .quote-inner, .masonry.classic_enhanced .post.link.wide_tall .post-content a:hover .link-inner, .iosSlider .prev_slide:hover, .iosSlider .next_slide:hover, #header-outer .widget_shopping_cart a.button, #header-outer a.cart-contents .cart-wrap span, #header-outer #mobile-cart-link .cart-wrap span, #top nav ul .slide-out-widget-area-toggle a:hover .lines, #top nav ul .slide-out-widget-area-toggle a:hover .lines::after, #top nav ul .slide-out-widget-area-toggle a:hover .lines::before, #top nav ul .slide-out-widget-area-toggle a:hover .lines-button::after, #header-outer .widget_shopping_cart a.button, body[data-header-format="left-header"] #header-outer[data-lhe="animated_underline"] #top nav ul li:not([class*="button_"]) > a span::after, #buddypress a.button:focus, .swiper-slide .button.solid_color a, .swiper-slide .button.solid_color_2 a, .select2-container .select2-choice:hover, .select2-dropdown-open .select2-choice, body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single:hover, body[data-fancy-form-rcs="1"] .select2-container--default.select2-container--open .select2-selection--single, #top nav > ul > .button_solid_color > a::before, #header-outer.transparent #top nav > ul > .button_solid_color > a::before, .twentytwenty-handle, .twentytwenty-horizontal .twentytwenty-handle::before, .twentytwenty-horizontal .twentytwenty-handle::after, .twentytwenty-vertical .twentytwenty-handle::before, .twentytwenty-vertical .twentytwenty-handle::after, .masonry.classic_enhanced .posts-container article .meta-category a:hover, .blog-recent[data-style*="classic_enhanced"] .meta-category a:hover, .masonry.classic_enhanced .posts-container article .video-play-button, .masonry.material .masonry-blog-item .meta-category a::before, .material.masonry .masonry-blog-item .video-play-button, .masonry.material .quote-inner::before, .masonry.material .link-inner::before, .nectar-recent-posts-slider .container .strong span::before, #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a:hover, #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a:focus, .single .heading-title[data-header-style="default_minimal"] .meta-category a:hover, .single .heading-title[data-header-style="default_minimal"] .meta-category a:focus, .nectar-fancy-box::after, .divider-small-border[data-color="accent-color"], .divider-border[data-color="accent-color"], .nectar-animated-title[data-color="accent-color"] .nectar-animated-title-inner::after, #fp-nav:not(.light-controls).tooltip_alt ul li a span::after, #fp-nav.tooltip_alt ul li a span::after, .nectar-video-box[data-color="default-accent-color"] .nectar_video_lightbox, body .nectar-video-box[data-color="default-accent-color"][data-hover="zoom_button"] .nectar_video_lightbox::after, .nectar_video_lightbox.play_button_with_text[data-color="default-accent-color"]:not([data-style="small"]) .play > .inner-wrap::before, .span_12.dark .owl-theme .owl-dots .owl-dot.active span, .span_12.dark .owl-theme .owl-dots .owl-dot:hover span, .nectar-recent-posts-single_featured .strong a, .post-area.standard-minimal .post .more-link span::before, .nectar-slide-in-cart .widget_shopping_cart a.button, .related-posts[data-style="material"] .meta-category a::before, .post-area.featured_img_left .meta-category a::before, body.material #page-header-bg.fullscreen-header .inner-wrap > a, .nectar-hor-list-item[data-color="accent-color"]::before, .material #sidebar .widget .tagcloud a::before, .single .post-area .content-inner > .post-tags a::before, .auto_meta_overlaid_spaced .post.quote .n-post-bg::after, .auto_meta_overlaid_spaced .post.link .n-post-bg::after, .post-area.featured_img_left .posts-container .article-content-wrap .video-play-button, .post-area.featured_img_left .post .quote-inner::before, .post-area.featured_img_left .link-inner::before, .nectar-recent-posts-single_featured.multiple_featured .controls li::after, .nectar-recent-posts-single_featured.multiple_featured .controls .active::before, .nectar-fancy-box[data-color="accent-color"]:not([data-style="default"]) .box-bg::after, body.material[data-button-style^="rounded"] .nectar-button.see-through.accent-color[data-color-override="false"] i, body.material .nectar-video-box[data-color="default-accent-color"] .nectar_video_lightbox::before, .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close::before, .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close::after, .fancybox-navigation button:hover::before, button[type="submit"]:hover, button[type="submit"]:focus, body[data-form-submit="see-through"] input[type="submit"]:hover, body[data-form-submit="see-through"].woocommerce #respond input#submit:hover, html body[data-form-submit="see-through"] button[type="submit"]:hover, body[data-form-submit="see-through"] .container-wrap .span_12.light input[type="submit"]:hover, body[data-form-submit="see-through"] .container-wrap .span_12.light button[type="submit"]:hover, body.original .bypostauthor .comment-body::before, .widget_layered_nav ul.yith-wcan-label li a:hover, .widget_layered_nav ul.yith-wcan-label .chosen a, .nectar-next-section-wrap.bounce a::before, body .nectar-button.see-through-2[data-hover-color-override="false"]:hover{
	background-color:#af9179 !important;
}
.wpforms-form em.wpforms-error{font-family: Public Sans !important;}

.wpforms-field.wpforms-field-email{width:50%}
.wpforms-field.wpforms-field-email input{width:100%:}

#wpforms-9839 .wpforms-field-container{
	display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}

#wpforms-9839.wpforms-container .wpforms-field{width:100%}
#wpforms-9839-field_19-container,#wpforms-9839-field_20-container{width:50% !important}

#wpforms-9839 .wpforms-pcafe-smart-phone-field{
	width: calc(100% - 12px);
  	margin-left: 12px;
}

#wpforms-9839 .wpforms-pcafe-smart-phone-field input{
	width:100% !important;
    max-width:100% !important;
}
#wpforms-9839-field_19{
	width: calc(100% - 12px) !important;
  	max-width: 100%;
}

#wpforms-9839-field_18-container{
	width:calc(50% - 12px) !important;
}
#wpforms-9839-field_23-container{
	width:calc(50% - 12px) !important;
}

.select2-container--default .select2-selection--single:hover,
body[data-fancy-form-rcs="1"] .select2-container--default.select2-container--open .select2-selection--single,body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single:hover{
	border-color:#af9179 !important;
}

#wpforms-9839 input:focus,
#wpforms-9841 input:focus{
	border-color:#af9179 !important;
    box-shadow:none !important;
}

.booking-popup__form-placeholder h3,.booking-popup__form-placeholder p{text-align:left;}
.booking-popup__form-placeholder h3{
	font-family: 'eksell' !important;
}

@media all and (max-width:500px){
	.wpforms-container .wpforms-field .wpforms-field-row .wpforms-one-half{
    	width:100% !important;
        padding-left:0 !important;
        padding-right:0 !important;
    }
    #wpforms-9839-field_19-container, #wpforms-9839-field_20-container{
    	width:100% !important;
    }
    #wpforms-9841 .wpforms-first.wpforms-one-half{padding-right:5px !important;padding-left:0 !important}
    #wpforms-9841 .wpforms-one-half{padding-left:5px !important;}
    #wpforms-9839 .wpforms-pcafe-smart-phone-field,
#wpforms-9839-field_19{margin-left:0 !important;margin-right:0 !important;width:100% !important;}
#wpforms-9839-field_3-container .wpforms-field-row{
	display:block !important;
}
#wpforms-9839-field_3-container .wpforms-field-row-block.wpforms-first.wpforms-one-half{margin-bottom:14px;}
#wpforms-9839-field_18-container,#wpforms-9839-field_23-container{width:100% !important;}
}