@charset "UTF-8";
/* ----------------------------------------------------
Template Name: BransonBNB
Author: Masud Rana
URL: https://masudrana.me/
Version: 1.0;
------------------------------------------------------- */
/*  -------------------------------
CSS Table of Content

  01. Base style
  02. Typography style
  03. Button style
  04. Header style
 ---------------------------------- */
:root {
  --bodyFont: "Open Sans", sans-serif;
  --headingFont: "Open Sans", sans-serif;
  --themeColor: #30b9e7;
  --themeSecondary: #e61d54;
  --themeSecondarySolid: #ce073c;
  --bodyTextColor: #5f5f5f;
  --headingTextColor: #222222;
  --borderColor: #e5e5e5;
  --white: white;
  --black: black;
  --sectionGray: #f4f6f8;
  --darkFooter: #0a1420;
  --borderGray: #e5e5e5;
}

/* --------------------------
   01. Base style
 ----------------------------- */
html {
  font-size: 10px;
}

/* @include media-breakpoint-down(lg) {
    html {
        font-size: 10px;
    }
} */
a,
button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a,
button,
img,
input,
span,
::before,
::after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

img {
  max-width: 100%;
}

*:focus {
  outline: none;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--themeColor);
}

button,
input[type="submit"] {
  cursor: pointer;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.mr-section {
  padding: 90px 0;
}

.section-gray {
  background: var(--sectionGray);
}

@media (max-width: 991.98px) {
  .mr-section {
    padding: 60px 0;
  }
}

@media (min-width: 1200px) {
  .mr-home-section .container {
    max-width: 1600px;
  }
}

/* --------------------------
   02. Typography style
 ----------------------------- */
body {
  font-family: var(--bodyFont);
  color: var(--bodyTextColor);
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-style: normal;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headingFont);
  color: var(--headingTextColor);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.6rem;
}

.h1,
h1 {
  font-size: 4rem;
}

.h2,
h2 {
  font-size: 3.2rem;
}

.h3,
h3 {
  font-size: 2.8rem;
}

.h4,
h4 {
  font-size: 2.4rem;
}

.h5,
h5 {
  font-size: 2rem;
}

.h6,
h6 {
  font-size: 1.6rem;
}

.header-area {
  padding: 0 60px;
  position: fixed;
  z-index: 1;
  background: var(--white);
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 1.4rem 0;
}

.is_sticky {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.is_sticky .navbar-brand {
  padding: 0.9rem 0;
}

.is_sticky .mr-main-menu li {
  padding: 0;
}

.mr-main-menu > li {
  margin-left: 5rem;
  padding: 3.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mr-main-menu > li .dropdown-menu {
  border-radius: 0;
  border: none;
  border-top: 2px solid var(--themeSecondary);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease-in 0s;
  transition: 0.3s ease-in 0s;
  margin: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  width: 220px;
  z-index: 2;
  left: 0;
  top: 100%;
  position: absolute;
}
.mr-main-menu > li .dropdown-menu li:not(:last-child) {
  margin-bottom: 2px;
  border-bottom: 1px solid var(--borderGray);
}
.mr-main-menu > li .dropdown-menu li a {
  font-size: 16px;
  padding: 5px 20px;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: 0;
}
.mr-main-menu > li .dropdown-menu li a:hover {
  color: var(--themeSecondary);
}
.mr-main-menu > li.dropdown a::before {
  display: none;
}
.mr-main-menu > li:hover > a {
  color: var(--headingTextColor);
}
.mr-main-menu > li:hover > a::before {
  -webkit-transform: translate(-50%) scale(1);
          transform: translate(-50%) scale(1);
  opacity: 1;
}
.mr-main-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.mr-main-menu a {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: none;
  color: var(--headingTextColor);
}
.mr-main-menu a:not(.mr-button):hover {
  color: var(--themeSecondary);
}

.dropdown-menu {
  width: 250px;
  padding: 0;
}

.mr-dropdown-list li a {
  padding: 5px 20px;
}

.navbar-toggler {
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .mr-main-menu > li {
    margin-left: 0;
    padding: 0.8rem 0;
  }
}
@media (max-width: 575.98px) {
  .header-area {
    padding: 0;
  }

  .navbar-brand {
    width: 250px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header-area {
    padding: 0;
  }
}
.is_sticky .mr-main-menu > li > a:not(.mr-button) {
    padding: 7px 0;
}
.mr-section-title {
  border-bottom: 1px dashed var(--borderColor);
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.section-gray .mr-section-title {
  border-color: #c3c5c6;
}

.banner-section {
  margin-top: 90px;
  background-image: url(../images/banner/ozarks2.webp);
  background-size: cover;
  height: 300px;
  background-position: center top;
  text-align: center;
  position: relative;
}

.banner-section.banner-wave {
  height: 600px;
}

.banner-section.banner-wave::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/banner/bg-shape.png);
  background-size: calc(100% + 70px) auto;
  background-position: -70px bottom;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
}

.hidden-object {
  opacity: 0;
  visibility: hidden;
}

.mr-ifream-form {
  height: 1200px;
}

@media (max-width: 575.98px) {
  .banner-section {
    height: 150px;
  }
  .banner-section.banner-wave {
    height: 300px;
  }
  .banner-section.banner-wave::after {
    background-size: cover;
    background-position: 0 bottom;
  }
}

.mr-home-section {
  margin-top: -250px;
  padding: 0 150px;
}

@media (max-width: 575.98px) {
  .mr-home-section {
    margin-top: -150px;
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mr-home-section {
    margin-top: -170px;
  }
}

.mr-button {
  height: 45px;
  line-height: 43px;
  padding: 0 16px;
  display: inline-block;
  border: 1px solid var(--borderColor);
  border-radius: 3px;
  background: var(--themeSecondary);
  color: var(--white);
  border-color: transparent;
}

.mr-button:hover {
  color: var(--white);
  background: var(--themeSecondarySolid);
}

.mr-button + .mr-button {
  margin: 0 10px;
}

.mr-button-bordered {
  border: 1px solid var(--borderColor);
  background: transparent;
  color: var(--headingFont);
}

.widget-property-link {
  font-weight: 600;
  color: var(--themeColor);
}

.single-widget {
  border-bottom: 1px solid var(--borderGray);
  padding: 30px 0;
}

.single-widget p:last-child {
  margin-bottom: 0;
}

.about-widget {
  padding-bottom: 30px;
}

.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-widget {
  padding: 30px 0;
}

.testimonial-widget .testimonial-author-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.testimonial-widget .testimonial-author-image img {
  border-radius: 50%;
}

.testimonial-widget .testimonial-author-desc {
  padding-left: 30px;
}

.testimonial-widget .t-author-name {
  font-weight: bold;
}

.bookmark-widget {
  margin-bottom: 60px;
  padding: 30px 0;
  border-bottom: none;
}

.social-bookmark-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-bookmark-list li {
  margin-right: 30px;
}

.more-review-widget {
  padding: 20px 0;
  color: var(--themeColor);
  font-weight: 600;
}

.widget-title {
  margin-bottom: 10px;
}

.mr-accordion-wrapper .card-header {
  padding: 0;
  background: transparent;
}

.mr-accordion-wrapper .btn {
  font-size: 1.6rem;
  color: inherit;
  font-weight: 600;
  background: transparent;
  padding: 10px 0;
  position: relative;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.mr-accordion-wrapper .btn:hover {
  text-decoration: none;
  color: var(--themeColor);
}

.mr-accordion-wrapper .btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mr-accordion-wrapper .btn::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  right: 100%;
  top: 50%;
}

.mr-accordion-wrapper .btn.collapsed::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.mr-accordion-wrapper .card-header {
  border: none;
}

.mr-accordion-wrapper .card {
  border: none;
  border-bottom: 1px solid var(--borderColor);
}

.mr-accordion-wrapper .card:last-child {
  border-bottom: none;
}

.mr-accordion-wrapper .card-body {
  padding: 10px 0 15px 0;
}

.author-image {
  border-radius: 50%;
}

.author-information-list li {
  margin-bottom: 7px;
}

.author-information-list li i {
  color: green;
  margin-right: 10px;
}

.single-widget.author-widget {
  padding-top: 0;
}

.listing-area-wrapper {
  margin-top: 60px;
}

.listing-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--borderColor);
}

.listing-menu li {
  margin-right: 30px;
}

.listing-menu a {
  font-weight: 600;
  font-size: 1.6rem;
  position: relative;
  color: #222;
}

.listing-menu a::before {
  color: rgba(0, 0, 0, 0);
  content: "•";
  font-size: 14px;
  left: 0;
  top: -10px;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  line-height: 1;
}

.listing-menu a:hover {
  color: var(--themeSecondarySolid);
}

.listing-menu li:hover > a::before,
.listing-menu li.active > a::before,
.listing-menu li a:focus::before {
  color: var(--themeSecondarySolid);
  text-shadow: 7px 0 var(--themeSecondarySolid), 14px 0 var(--themeSecondarySolid);
}

.sort-label i {
  font-size: 14px;
  margin-right: 6px;
  color: var(--themeSecondarySolid);
}

.sort-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #7b7b7b;
}

.listing-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

.listing-grid > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-bottom: 30px;
  padding: 0 15px;
}

.listing-grid.grid-3-column > li {
  width: 33.3334%;
  float: left;
}

.listing-title i {
  font-size: 11px;
  margin-right: 5px;
  color: var(--themeColor);
}

.listing-title-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px 0;
}

.listing-title {
  font-size: 14px;
  padding: 0 0 0 10px;
  margin-bottom: 0;
}

.listing-title-price > p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #484848;
}

.review-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.listing-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review-star i {
  font-size: 10px;
  line-height: 1;
  color: var(--themeColor);
}

.review-number {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1;
  padding-left: 10px;
  font-weight: 600;
}

.single-property-image {
  line-height: 1;
}

.single-property-page .mr-section {
  padding: 0;
  background: #d6d6d6;
}

.single-property-page .mr-section .container {
  background: var(--white);
  padding: 60px 30px;
  -webkit-box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.05);
}

.property-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.property-title-and-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sp-availability-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 20px;
  border: 1px solid var(--borderColor);
  border-radius: 15px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.availability-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.av-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.availability-button .mr-button {
  display: block;
  text-align: center;
}

.av-price {
  margin: 0;
}

.av-price span {
  font-size: 16px;
}

.av-rating p {
  margin: 0;
  line-height: 1;
  font-weight: 600;
}

.av-rating p span {
  color: #a7a4a4;
}

.av-rating i {
  color: var(--themeColor);
  font-size: 12px;
  margin-right: 5px;
}

.availability-content {
  margin-bottom: 30px;
}

@media (max-width: 575.98px) {
  .mr-home-section {
    margin-top: -100px;
  }
  .listing-grid > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .listing-grid.grid-3-column > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .sp-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .property-title-and-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sp-availability-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 20px 0;
  }
  .status-number {
    margin-bottom: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .property-status {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.status-list-item {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #222;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .listing-grid > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .listing-grid.grid-3-column > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .mr-home-section {
    margin-top: -70px;
    padding: 0;
  }
  .listing-grid > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .listing-grid.grid-3-column > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .sp-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .property-title-and-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sp-availability-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 20px 0;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .mr-home-section {
    margin-top: -170px;
    padding: 0;
  }
}

.scroller-status {
  display: none;
  /* hidden by default */
  padding-top: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
  color: #777;
}

.loader-ellips {
  font-size: 20px;
  /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555;
  /* change color here */
  position: absolute;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}

.loader-ellips__dot:nth-child(3) {
  left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
  left: 3em;
}

@-webkit-keyframes reveal {
  from {
    -webkit-transform: scale(0.001);
            transform: scale(0.001);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes reveal {
  from {
    -webkit-transform: scale(0.001);
            transform: scale(0.001);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes slide {
  to {
    -webkit-transform: translateX(1.5em);
            transform: translateX(1.5em);
  }
}

@keyframes slide {
  to {
    -webkit-transform: translateX(1.5em);
            transform: translateX(1.5em);
  }
}

.loader-ellips__dot:nth-child(1) {
  -webkit-animation-name: reveal;
          animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  -webkit-animation-name: slide;
          animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  -webkit-animation-name: reveal;
          animation-name: reveal;
  animation-direction: reverse;
}

.listing-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 30px;
}

.listing-button-group .button {
  border: none;
  background: transparent;
  margin-right: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #222222;
}

.listing-button-group .button:focus {
  border: none;
  outline: none;
}

.listing-button-group .button:hover {
  color: var(--themeSecondarySolid);
}

.grid.are-images-unloaded {
  opacity: 0;
}

.listing-items-wrapper {
  margin: 0 -15px;
}

.listing__grid__item {
  width: 33.3334%;
  padding: 0 15px;
}
.product-listing-area .listing__grid__item {
    width: 25%;
    padding: 0 15px;
}

/* hide by default */
.listing__grid.are-images-unloaded .image__grid__item {
  opacity: 0;
}

.listing__grid__item {
  margin-bottom: 20px;
  float: left;
}

.listing__grid__item img {
  display: block;
  max-width: 100%;
}

.page-load-status {
  display: none;
  /* hidden by default */
  padding-top: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
  color: #777;
  margin-bottom: 50px;
}

.numberOfBedrooms,
.numberOfBathrooms,
.sqFeet {
  display: none;
}

@media (max-width: 575.98px) {
  .listing__grid__item {
    width: 100%;
    padding: 0 15px;
  }
  .listing-button-group .button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 0;
  }
  .listing-button-group .sort-label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .listing-area-wrapper {
    margin-top: 0;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .listing__grid__item {
    width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .listing__grid__item {
    width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .listing__grid__item {
    width: 50%;
    padding: 0 15px;
  }
}

.footer-dark {
  background: var(--darkFooter);
  padding: 20px 0;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-menu a {
  color: #c7c7c7;
  font-size: 14px;
}

.footer-menu a:hover {
  color: var(--themeSecondarySolid);
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: #c7c7c7;
}

@media (max-width: 575.98px) {
  .footer-copyright {
    text-align: center;
  }
  .footer-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 992px) and (max-width: 1440px) {
  .mr-home-section {
    margin-top: -180px;
    padding: 0 50px;
  }
}
.listing-button-group .button.is-checked {
  color: var(--themeSecondarySolid);
}
/*# sourceMappingURL=style.css.map */

.single-property-page .mr-section .container {
    padding: 0 15px;
    background: transparent;
    box-shadow: none;
}
.single-property-page .mr-section {
    padding: 0;
    background: #EFF1F0;
}
@media (min-width: 768px) {
    .single-property-page .calendly-inline-widget {
        margin-top: -46px;
    }
}
.single-property-page .availability-content {
    margin-bottom: 0;
}

.sp-availability-card {
    border: none;
}
.property-single-page {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    margin: 40px 0;
}
.property-status {
    justify-content: center;
    align-items: center;
}

.slider-control-next,
.slider-control-prev {
    border: none;
    width: 40px;
    height: 40px;
    line-height: 47px;
    font-size: 14px;
    border-radius: 3px;
    margin: 0 40px;
    transition: all .4s ease;
}
.slider-control-prev:hover,
.slider-control-next:hover {
    background: var(--themeSecondarySolid);
}
.slider-control-wrapper {
    position: absolute;
    width: 100%;
    top: calc(50% + 44px);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .property-single-page .sp-availability-card {
        border: none;
        background: transparent;
        box-shadow: none;
    }
    .single-property-image img {
        height: 250px;
        object-fit: cover;
    }
    #suite_image_slider {
        margin-top: 88px;
    }
    .slider-control-wrapper {
        top: 50%;
    }
}