* { margin: 0; padding: 0; box-sizing: border-box; }
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  html, body {  
    font-family: "Poppins", sans-serif;
    font-weight: 400;
  }

  body{
    overflow-x: hidden;
  }

  .main_container {
    padding: 0 30px;
    height: 100vh;
  }

  .floor_select_column {
    height: 100%;
    position: relative;
    padding: 0;
    text-align: center;
    display: flex;
    transition: all 0.5s ease 0s;
    left: auto;
    top: auto;
    background: transparent;
    z-index: 9;
    border-radius: 10px;
    align-items: center;
  }

.floorplan_svg_url {
  font-size: 18px;
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  margin: 3px;
  border: 2px solid;
  line-height: 36px;
  font-weight: 700;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
}

  .floorplan_svg_floors {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .floorplan_svg_url.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* .floorplan_svg_url:hover, .floorplan_svg_url.active {
    color: #fff;
    background: #262659;
  } */

  .floorplan_svg_url{
    display: none;
  }

  .sitemap_section {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
  }

  .filter_container{
    display: flex;
    padding-top: 15px;
    z-index: 99;
    position: relative;
    gap: 10px;
    margin-bottom: 20px;
    flex-direction: column;
  }

  .unit_section_column{
    display: inline-block;
    width: 20%;
    height: calc(100vh - 100px);
    border-radius: 10px 0 10px 10px;
    position: relative;
    transition: all .5s ease 0s;
    z-index: 9;
    border-radius: 10px;
  }

  .map_column{
    display: inline-block;
    vertical-align: top;
    width: 80%;
    height: calc(100vh - 140px);
    overflow: hidden;
    position: relative;
    transition: all .5s ease 0s;
  }

  .units_section{
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .units-breadcrumb {
    padding: 20px;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    font-size: 20px;
  }

  .floor-reset {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
  }

  span.back-to-floors {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #707070;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    margin-right: 5px;
  }

  span.back-to-floors:after, span.back-to-floors:before {
    content: "";
    width: 15px;
    height: 2px;
    background: #707070;
    transform: rotate(45deg);
    position: absolute;
    top: 5px;
    left: -3px;
  }

  span.back-to-floors:before {
    transform: rotate(-45deg);
    top: -5px;
  }

  .units-breadcrumb span.dark {
    display: inline-block;
    vertical-align: middle;
  }

  .units-count {
    padding: 20px;
    border-bottom: 2px solid #ddd;
  }

  .units-count h2 {
    font-size: 21px;
    margin: 0;
  }

  h3.floor-desc {
    font-size: 33px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 50px;
  }

  .overlay-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    overflow: visible !important;
  }

  .overlay-container{
    width: 100%;
    position: relative;
  }

  .floorplates-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  .floorplate-base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  svg.floorplate {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
  }

  .zoom-controls {
    font-size: 20px;
    position: absolute;
    bottom: 30px;
    right: 0;
    z-index: 99;
  }
  .zoom-controls button {
    background: #fff;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background 0.2s;
  }  
  
  .zoom-controls button:hover { 
    background: #f0f0f0; 
  }

  .phase_dropdown_menu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 5px 0;
    margin-top: 5px;
    z-index: 1000;
    width: 200px;
  }
  .phase_dropdown_menu .phase {
      padding: 8px 12px;
      cursor: pointer;
  }
  .phase_dropdown_menu {
      background-color: #f0f0f0;
  }
  .phase_dropdown_trigger {
    padding: 10px 15px;
    /* background: #262659;
    color: #fff; */
    /* border: 1px solid #ccc; */
    cursor: pointer;
    display: inline-block;
    width: 140px;
    box-sizing: border-box;
    height: 40px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
  }
  .hide-phase{
    display:none;
  }

  .phase {
    /* border: 2px solid #262659;
    color: #262659;
    background: #fff; */
    display: inline-block;
    padding: 15px 40px;
    margin: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
  }
  g.interactive text{
    pointer-events:none;
  }
  .phase.active {
    color: #fff;
    background: #262659;
  }
  
  .hide-phase .phase {
    display: none;
  }
  
  .tools_row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .zoom-controls button {
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid;
    text-align: center;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    transition: all .5s ease 0s;
  }

.overlay-wrapper-building {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

img.background-image {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  position: relative;
}

#svg-container svg {
  display: none;
}
#svg-container svg.active_svg {
  display: block;
}

.sitemap-floor-picker svg {
  display: none;
}
.sitemap-floor-picker svg.active_svg {
  display: block;
}

.sitemap-floor-picker {
  padding: 0;
  height: 100%;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  display: flex;
  position: absolute;
  width: 100%;
  transition: all 0.5s ease 0s;
  left: 0;
  top: 0;
  background: #F4F4F4;
  z-index: 9;
  border-radius: 10px;
  overflow: hidden;
}

.sitemap-floor-picker img.floor-picker-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.5s ease 0s;
  position: absolute;
  object-fit: contain;
  object-position: center center;
}
.floor-picker-image {
  display: none;
}
    
   

/* Loader Container */
#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  display: none;
}

/* Spinner Animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Keyframes for Rotation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* Container for floor selection (Column Layout) */
/* Individual floor box */

.select_floor_heading{
  /* color: #251f52; */
  font-weight: 400; 
  margin-bottom: 10px;
}

/* Default Shape Style */
.default_shape_style{
  fill: grey;
  fill-opacity: 1;
  stroke: black;
  stroke-width: 1px;
}

.unit_block_shape{
  fill: white;
  fill-opacity: 1;
  stroke: black;
  stroke-width: 1px;
  cursor: pointer !important;
}

.non-interactive-shape {
  fill: rgb(142 147 175);
  fill-opacity: 1;
  stroke: black;
  stroke-width: 1px;
  cursor: move;
}

/*Available Unit Section*/
.unit_block {
  padding: 5px;
  display: flex;
  flex-flow: nowrap;
  flex-direction: row;
  cursor: pointer;
  transition: all .5s ease 0s;
  height: 150px;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
  -webkit-box-shadow: 3px 3px 7px 0px rgb(106 93 93 / 69%);
  box-shadow: 3px 3px 7px 0px rgb(106 93 93 / 69%);
}

.hide_unit_block{
  display: none !important;
}

.unit_data{
  color: #262659;
  line-height: 1.5em;
}
.unit_data .unit_title{
  font-weight: 800;
}

.unit_data h3{
  font-weight: 500;
  margin-bottom: 8px;
}

.unit_data .unit_price {
  font-weight: 700;
}

.unit_block:hover{
  border: 1px solid; 
}

.unit_block .floorplan_title{
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
}


.map_tooltip {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  border-radius: 3px;
}

div#map_tooltip_inner_section {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tippy-box {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  color: #000;
}

.tippy-box input {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  color: #000;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgb(0 0 0 / 11%);
}

/* Filter CSS */
.filter_buttons_set {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
  flex-direction: column;
}
.desktop-filters-wrapper button, .filter_container button {
  /* background-color: #262659;
  color: white; */
  font-size: 14px;
  padding: 12px 18px;
  border: none;
  border-radius: 20px;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}

.desktop-filters-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.filter_container button i {
  margin-left: 10px;
}

.filter-bed-container, .filter-floorplan_type-container, .filter-floor-container, .filter-floorplans-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #262659;
  font-size: 16px;
}

label.filter_checkboxes {
  padding: 10px;
}

.back_to_property_image{
  display: none;
  cursor: pointer;
  padding: 10px 20px;
}

.close-filter {
  display: none !important;
}
.filter-button {
  display: block;
  margin: 10px;
  padding: 10px 15px;
  font-size: 16px;
  /* background: #262659;
  color: #fff; */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 130px;
}
.filter_value {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  height: 28px;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  background: #f0f0f0;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
}

.filter-tag .remove-filter {
  margin-left: 6px;
  cursor: pointer;
  color: red;
}

.filter-tag .remove-filter {
  margin-left: 6px;
  cursor: pointer;
  color: red;
}

.filter_container {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 95%;
  max-width: 30vw;
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  overflow-y: auto;
  transition: right 0.3s ease;
}

.filter_buttons_set {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.filter_container.active {
  right: 0;
  display: block;
}

button.close-filter {
  display: block !important;
  float: right;
  /* background-color: white;
  color: black; */
  border: 1px solid;
  font-size: 14px;
  display: block;
}
.filter_container button {
  margin-bottom: 15px !important;
}
button.close-filter i{
  margin-left: 0px !important;
}
.filter_container {
  background-color: white !important;
  color: #000 !important;
}

/*Kiosk Ad Space*/
.kiosk_ad_space_column {
  text-align: center;
  display: flex;
  background: transparent;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.kiosk-ad-space {
  width: 100%;
}

.kiosk-ad-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.kiosk_ad_space_image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.kiosk-ad-content {
  margin-top: 15px;
  padding: 0 10px;
}

.kiosk_ad_title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 10px 0 5px;
  font-weight: 700;
  color: #222;
}

.kiosk_ad_sub_title {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin: 0 0 10px;
  font-weight: 500;
  color: #555;
}

.kiosk_ad_content {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
  color: #666;
}
/* === Mobile-safe Tippy and Sliders === */
/* Responsive Flatpickr inside Tippy */
.calendar-modal {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
}

.calendar-modal-content {
  position: relative;
  background: #fff;
  width: 97%;
  max-width: 320px;
  padding-top: 32px;
  border-radius: 10px;
  z-index: 2;
}

#flatpickrMobile {
  margin-top: 10px;
}

#closeCalendarModal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .irs-grid-text,
  .irs-grid-pol {
    display: none !important;
  }
}

/*responsive*/
@media (max-width: 1235px) {
  .unit_section_column{
    width: 25%;
  }
  .map_column{
    width: 75%;
  }
}

@media (max-width: 1020px) {
  .filter_container{
    max-width: 95vw;
  }
  .unit_block{
    justify-content: flex-start;
  }
  .floorplan_img img{
    width: 100px !important;
    height: auto !important;
  }
  .sitemap_section{
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .unit_section_column{
    width: 100%;
    order: 2;
  }
  .units_section{
    width: 100%;
  }
  .map_column{
    width: 100%;
    padding: 5px;
    order:1;
  }
  .units_section{
    position: unset;
  }
  h3.floor-desc{
    font-size: 22px;
    left: 0;
    top: 0;
  }
  .zoom-controls {
    gap: 10px;
    bottom: 0px;
    right: 0;
    display: flex;
  }
  .floor_select_column{
    width: 100%;
    justify-content: center;
  }
  .tools_row {
    gap: 5px;
  }
}

@media (max-width: 1130px) {  
  .unit_section_column{
    position: unset;
  }
}

@media (max-width: 700px) {
  .map_column {
    height: calc(100vh - 500px);
  }
}

@media (max-width: 480px) {
 
    .map_column {
      height: calc(100vh - 500px);
    }
  
  .tippy-box {
    max-width: 95vw;
    overflow-x: auto;
    word-break: break-word;
  }
  
  .tippy-box .tippy-content {
    max-width: 100%;
    padding: 0;
  }
  
  .irs, .irs-with-grid {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .flatpickr-calendar {
    max-width: 100% !important;
    font-size: 14px;
  }
  .phase_row{
    flex-direction: column;
  } 
  .phase{
    padding: 10px 30px;
    font-size: 14px;
  }
  .floorplan_svg_url {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  
}

/* Screensaver */
#screensaver {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 2147483647;
  overflow: hidden;
  cursor: none; /* Hide mouse pointer */
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide-img.active {
  opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  #screensaver {
    background: rgba(0, 0, 0, 0.85);
  }
}

@media (max-width: 480px) {
  #screensaver {
    background: rgba(0, 0, 0, 0.75);
  }
}

/*Filters*/
.filter_container .duplicated-on-desktop {
  display: none;
}

@media (min-width: 1150px) {
 #mobile-filter-toggle{
    display:none;
  }
}

@media (max-width: 1150px) {
  
  #mobile-filter-toggle{
    display:block;
  }
  .duplicated-on-desktop {
    display: none !important;
  }
  .filter_container .duplicated-on-desktop {
    display: block !important;
  }
}

/* Unit Slide In */

.sitemap-slide-in {
    position: fixed;
    z-index: -1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
}
.unit-slide {
    position: absolute;
    background: #fff;
    width: 60%;
    height: 100%;
    min-width: 700px;
}
.sitemap-slide-in.active {
    opacity: 1;
    left: 0;
    z-index: 9999;
    visibility: visible;
}
.sitemap-slide-in:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(0,0,0,0.35);
    transition: all 0.5s ease 0s;
}
.sitemap-slide-in.active:before {
    left: 0;
}
.unit-slide-header {
    background: #F8F8F8;
    height: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
}
.unit-slide-close {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.1);
        cursor: pointer;
    background: #a0a0a0;
}
.unit-slide-close span {
    font-size: 40px;
    color: #ffffff;
    transform: rotate(45deg);
    display: block;
    line-height: 54px;
}
.unit-slide-close:hover span {
    color: #000;
}
.unit-images {
    width: 60%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.unit-slide-body {
    display: flex;
    flex-flow: wrap;
    height: calc(100% - 60px);
    overflow: auto;
    padding: 0 40px;
    position: relative;
}
.leasing-iframe {
    position: absolute;
    width: 100%;
    height: calc(100vh - 60px);
    top: 0;
    overflow: auto;
    background: #fff;
    left: -100%;
    transition: all 0.5s ease 0s;
    padding: 0;
    z-index: 999;
}
.leasing-iframe.active {
    left: 0;
}
.back-to-slide-in {
    display: inline-block;
    line-height: 40px;
    cursor: pointer;
    padding: 0 20px;
}
iframe.leasing-iframe-wrapper {
    display: block;
    border: none;
    width: 100%;
    height: calc(100% - 40px);
    overflow: auto;
/*    background-image: url(/wp-includes/js/thickbox/loadingAnimation.gif);*/
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.leasing-iframe .socket {
    transform: scale(1);
    z-index: auto;
    display: block;
}
.postid--101 section.leasing-template {
    padding: 0;
}
.single-unit-image {
    padding: 20px;
    display: none !important
}
.single-unit-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: calc(100vh - 170px);
    object-fit: contain;

}
.single-unit-image.current {
    display: block !important;
}   
.unit-img-toggle-inner {
    display: inline-block;
    width: auto;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    font-size: 0;
    background: #fff;
}
.unit-img-toggles {
    text-align: center;
    padding: 0 0 25px;
    position: relative;
}
.img-switcher {
    font-size: 14px;
    line-height: 40px;
    padding: 0 10px;
    min-width: 40px;
    text-align: center;
    display: inline-block;
    font-weight: 700;
    cursor: pointer;
}
.img-switcher.current, .img-switcher:hover {
    background: #535353;
    color: #fff;
}
.unit-slide-body .unit-info {
    width: 40%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
a.unit-apply-lightbox {
    margin: 0;
    float: none;
    margin-top: 10px;
    vertical-align: top;
}
.unit-slide-content h2.unit-title {
    font-size: 30px;
    margin: 0 0 10px;
}
.unit-slide-content span.unit-flp {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 20px;
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.slide-unit-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    font-size: 18px;
    gap: 10px;
}
.unit-slide-content a.vr-tour {
    display: inline-block;
    text-transform: uppercase;
    padding: 13.5px 18px;
    float: left;
    border: 1px solid #9d9d9d;
    cursor: pointer;
    vertical-align: top;
    margin-top: 6px;
    margin-right: 20px;
}
/* a.unit-apply-link, a.unit-apply-lightbox {
    float: right;
} */
.img-switcher.inactive {
    display: none;
}
.unit-slide-content a.vr-tour:hover {
    background: #000;
    color: #fff;
}
body.no-scroll {
    overflow: hidden;
}

.unit-apply-link{
    font-size: 1.125rem;
    display: inline-block;
    text-transform: capitalize;
    line-height: 1;
    border-radius: 0;
    position: relative;
    transition: all .5s ease 0s;
    margin: 5px;
    position: relative;
    min-width: 150px;
    text-align: center;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 15px 25px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
}

.panzoom-buttons {
  font-size: 20px;
  position: absolute;
  bottom: 30px;
  z-index: 99;
  left: 10px;
}   
.panzoom-buttons span {
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid;
    text-align: center;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    transition: all 0.5s ease 0s;
}

/*VR Box*/
.single-virtual-tour,
.single-gallery-video a {
  display: flex;
  flex-flow: wrap;
  padding: 50px 0;
  border-bottom: 1px solid #cdcdcd;
}
.single-gallery-video a {
  border-bottom: 0;
  padding: 0;
  width: 100%;
}
.vt_img {
  width: 30%;
}
.vt_img img {
  width: 100%;
  height: auto;
}
.vt-flp-info {
  width: 40%;
  padding: 0 60px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.vt-flp-info h2 {
  width: 100%;
  max-width: 300px;
  text-align: left;
  margin: 0 0 10px;
}
.attached-flp-info {
  width: 100%;
  max-width: 300px;
  margin: 10px 0 0;
}
.attached-flp-info span {
  display: block;
  line-height: 2;
}
.virtual-tour-btns {
  width: 30%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.vt-tour-section {
  padding-bottom: 100px;
}
.vr-tour-popup {
  background-color: #000;
  width: 90%;
}
iframe.special-vr-iframe {
  width: 100% !important;
  min-height: 300px;
}
.leaflet-popup-content h1 {
  font-size: 1.25rem;
}
.vr-tour-wrapper{
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease 0s;
  opacity: 0;
}
.vr-tour-popup {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 1200px;
    max-height: 95vh;
    height: 100%;
    width: 100%;
}

.vr-close {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    right: 0;
    top: 0;
    z-index: 99;
}
iframe.special-vr-iframe {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}
.vr-tour-popup {
    background-color: #000;
    width: 90%;
}

.vr-tour-wrapper.active {
  z-index: 9999;
}
.vr-tour-wrapper.active{
  opacity: 1;
}
.vr-close span {
  transform: rotate(45deg);
  display: block;
  position: relative;
  left: 2px;
  top: -1px;
}
span#slide-img-reset {
    font-size: 12px;
}

p span.unit-attr {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
    border-right: 1px solid;
    line-height: 1;
}
p span.unit-attr:first-child {
    padding-left: 0;
}
p span.unit-attr:last-child {
    border: none;
}

@media screen and (max-width: 992px) {
    .unit-slide {
        width: 100% !important;
        min-width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 1440px) {
    .unit-slide-body {
        padding: 0 15px;
    }
}
@media screen and (max-width: 992px) {
    .unit-images {
        width: 100%;
        flex-flow: wrap;
    }
}
@media screen and (max-width: 992px) {
    .unit-slide-body .unit-info {
        width: 100%;
        margin-top: 25px;
        padding-bottom: 25px;
    }
}
@media screen and (max-width: 992px) {
    .unit-slide-content {
        padding: 0;
    }
}

