:root {
  --color-interactive-green: hsl(154, 85%, 28%);
  --color-theme: #3a4f5f;
  --sub-header-bg-color: color-mix(in oklab, var(--main-header-bg-color), black 5%);
  --focus-border-color: #80bdff;
  --hover-shadow-color: rgba(0, 0, 0, 0.5);
  --text-accent-color: var(--subheading-text-color);
  --subtle-focus-box-shadow: 0 4px 2px -2px rgba(0, 123, 255, 0.25);
}
:root .nav-tabs .nav-link.active {
  --bs-nav-tabs-link-active-bg: rgba(255, 255, 255, 0.6);
}

[data-theme=default] {
  --sub-header-bg-color: var(--accent-color);
}

[data-theme=dusk],
[data-theme=beach],
[data-theme=greys] {
  --text-accent-color: var(--heading-text-color);
}

[data-theme=forest] {
  --sub-header-bg-color: color-mix(in oklab, var(--main-header-bg-color), black 10%);
}

[data-theme=dark] {
  --sub-header-bg-color: color-mix(in oklab, var(--main-header-bg-color), blue 10%);
  --subtle-focus-box-shadow: 0 6px 6px -3px rgba(0, 123, 255, 0.5);
  --text-accent-color: color-mix(in oklab, #1a3d70, white 40%);
  --hover-shadow-color: rgba(100 100 155 / 1);
  --color-interactive-green: #115c39;
}
[data-theme=dark] .userweb-card .bg-light {
  --bs-bg-opacity: 0.1;
}

[data-theme=plum] {
  --sub-header-bg-color: color-mix(in oklab, var(--main-header-bg-color), white 10%);
}

.main-content {
  row-gap: var(--intra-section-gap);
}

.top-section {
  row-gap: calc(var(--intra-section-gap) / 2);
}

.main-content-link {
  background-color: var(--dark);
  color: white;
  text-align: center;
  border-radius: 0 0 5px 5px;
}

.main-content-link:focus {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5em 1em;
  color: white;
  outline: none;
  z-index: 10;
}

/* region header css */
#main {
  padding-bottom: env(safe-area-inset-bottom);
}

.page--userweb #main {
  padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
}

/* For browsers that support focus-visible */
:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(255, 123, 0, 0.5);
  outline: none;
}

.header-bottom-border {
  border-bottom: 3px solid;
}

/* Expand past padding from parent */
.navbar-collapse {
  margin: 0 -1rem;
}

/* Match header's padding */
.navbar-nav {
  padding: 0.5rem 1rem 1rem;
}

.rentals__tablist {
  align-self: flex-start;
  position: relative;
  z-index: 10;
}

/* endregion header css */
/* region tab and filter css */
div.tab-filter-header {
  grid-column: full;
  background-color: var(--sub-header-bg-color);
  justify-content: center;
}

.tab-filter-header .nav-tabs .nav-link {
  color: #fff;
  padding: 0.2rem 0.4rem 0.3rem;
  border-radius: 50px;
  margin-right: 0.5rem;
}
.tab-filter-header .nav-tabs .nav-link, .tab-filter-header .nav-tabs .nav-link.active, .tab-filter-header .nav-tabs .nav-link:hover {
  --bs-nav-tabs-link-active-border-color: #dee2e6;
}
[data-theme=default] .tab-filter-header .nav-tabs .nav-link {
  color: white;
}

.tab-filter-header .nav-tabs .nav-link.active {
  color: #000;
  border-radius: 20px;
}

.filters {
  overflow: hidden;
}

.filters__toggle {
  position: relative;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.13);
  text-decoration: none;
}

.filters__toggle::after {
  transition: transform 500ms;
  transform: rotate(-90deg);
}

.filters__toggle.is-open::after {
  transform: rotate(0);
}

.filters__container {
  position: relative;
  z-index: 100;
}

.filters__actions {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.filters__copy.copied {
  position: relative;
  overflow: hidden;
}

.filters__copy.copied::before {
  content: "Copied!";
  position: absolute;
  inset: 0;
  background-color: var(--bs-btn-hover-bg);
  color: var(--bs-btn-hover-color);
  animation: scaleUpAndFadeOut 1.15s linear forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}
@keyframes scaleUpAndFadeOut {
  from {
    opacity: 0;
    scale: 1.6;
  }
  15%, 90% {
    scale: 1;
    opacity: 1;
    translate: 0 0;
  }
  to {
    opacity: 0;
    scale: 1.6;
  }
}

.filters.has-js .filters__submit {
  display: none;
}

.force-left {
  order: -100;
}

.filters__status {
  margin: auto;
  text-align: center;
}

.status__icon {
  display: none;
  font-style: normal;
  animation: 0.5s infinite alternate forwards fade-in;
}

.status__icon--active {
  color: grey;
}

.status__icon--error {
  color: red;
}

.status__icon--complete {
  color: green;
  animation-iteration-count: 1;
}

.t-active .status__icon--active,
.t-error .status__icon--error,
.t-complete .status__icon--complete {
  display: initial;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .tab-filter-header .nav-link.active {
    view-transition-name: active-filter-tab;
  }
}
@supports (padding-bottom: max(0px, 1px)) {
  .filters__footer {
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  }
}
.filters__reset {
  display: none;
}

.filters__shade {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: color-mix(in oklab, var(--background-color), transparent 10%) url(/assets/image/loading.gif) no-repeat scroll center 150px;
  display: none;
}

/* endregion tab and filter css */
.listings__listing {
  /* Fix content sticking out past rounded corners */
  overflow: hidden;
}

.dropdown-menu-form.show {
  display: block !important;
}

/* region property list details section */
.property-details--counter .details-counter-blocks {
  border-right: 1px solid var(--border-color);
  text-align: center;
}

.property-details--counter .details-counter-blocks:last-child {
  border: none;
}

.property-name-heading {
  line-height: 1.4;
  color: var(--heading-text-color);
}
.listings__listing .property-name-heading {
  font-size: 1.4rem;
}

.property-list--details-text {
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  position: relative;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.property-details--pricing__height {
  height: calc(100% - 52px);
}

.property-details__description p:last-child {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .property-details__description p:last-child {
    margin-bottom: 0;
  }
}
/* endregion property list details section */
/* region property detail */
.property-details {
  display: grid;
  gap: 1rem;
}
@media (min-width: 675px) {
  .property-details {
    grid-template-columns: 5fr 3fr;
  }
}
@media (min-width: 992px) {
  .property-details {
    gap: 2rem;
  }
}

/*******************************************************************************
 * Forms
 ******************************************************************************/
.form-control, .form-control:focus {
  color: var(--font-color);
}

option {
  color: black;
  text-indent: 0.5em !important;
  padding: 1rem !important;
  appearance: none;
}

.form-control.t-subtle {
  border-radius: 0;
  border: 1px var(--border-color);
  border-style: none none solid none;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  --arrow-size: 8px;
  --arrow-color: currentColor;
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  pointer-events: none;
  border-left: var(--arrow-size) solid transparent;
  border-right: var(--arrow-size) solid transparent;
  border-top: var(--arrow-size) solid var(--arrow-color);
  translate: -150% -50%;
}
.select-wrapper:focus-within::after {
  border-top-color: var(--focus-border-color);
}

select.t-subtle {
  appearance: none;
}

.t-subtle[disabled] {
  background-color: var(--light);
  padding-inline: 0.5rem;
  cursor: not-allowed;
}

.form-control.t-subtle.is-invalid {
  border-color: #dc3545;
}

.form-control.t-subtle:focus {
  border-color: var(--focus-border-color);
  box-shadow: var(--subtle-focus-box-shadow);
}

/* custom classes for buttons, text, background form */
.button__green {
  color: #fff;
  transition: box-shadow 0.1s;
}
.button__green, .button__green:hover, .button__green:focus, .button__green:not(:disabled):active {
  background: var(--color-interactive-green);
}
.button__green:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in oklab, var(--color-interactive-green), transparent 50%);
}

.button__green:not(:disabled):hover {
  color: white;
  box-shadow: 0 0 0 0.25rem color-mix(in oklab, var(--color-interactive-green), transparent 50%);
}

.button__green.outline {
  border: 1px solid var(--color-interactive-green);
  color: var(--color-interactive-green);
  background: #fff;
}
[data-theme=dark] .button__green.outline {
  color: gray;
  background: transparent;
}

.button__green.outline:not(:disabled):hover {
  color: var(--color-interactive-green);
}
[data-theme=dark] .button__green.outline:not(:disabled):hover {
  color: white;
  background: var(--color-interactive-green);
}

.button__grey {
  background: #ccc;
  color: #000000;
  transition: box-shadow 0.1s;
  border: solid 1px #ccc;
}

.button__grey:not(:disabled):hover {
  box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem var(--hover-shadow-color);
}

.button__grey.outline {
  border: 1px solid var(--color-interactive-green);
  color: var(--color-interactive-green);
}

.button__grey.outline:not(:disabled):hover {
  color: #ccc;
}

.text-accent {
  color: var(--text-accent-color);
}

.rounded-capsule {
  border-radius: 80px;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.3rem rgba(0, 0, 0, 0.085) !important;
}

.custom-checkbox .custom-control-label::before {
  background: #fff;
  border: 2px solid #a4a4a4;
  border-radius: 3px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #fff;
  border: 2px solid var(--color-interactive-green);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background: none;
  content: "\f00c";
  font-family: "fontawesome";
  top: 3px;
  left: 2px;
  color: var(--color-interactive-green);
  font-size: 13px;
}

/* end of custom classes for buttons, text, background */
/* stepbar widget */
.stepbar-form .nav-link i {
  font-size: 1.2rem;
}

.stepbar-form .nav-link.active i {
  color: #1a3d70 !important;
}

/* end of stepbar widget */
.navbar-brand > img {
  max-width: 150px;
}

#colorbox:focus {
  box-shadow: none;
}

.filter-btn,
.filter-btn:disabled {
  border-color: transparent;
}

.filter-btn {
  --bs-btn-color: var(--naked-btn-color);
  --bs-btn-bg: transparent;
  --bs-btn-hover-color: var(--naked-btn-hover-color);
  --bs-btn-hover-bg: var(--naked-btn-hover-bg);
}

.filter-btn:disabled {
  --bs-btn-disabled-color: var(--font-color);
}

@media (min-width: 375px) {
  .filters__reset {
    display: initial;
  }
}
@media (max-width: 575px) {
  .tab-filter-header .nav-tabs .nav-link {
    margin: 0.3rem 0;
  }
  .full-width-sm {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .login-btn {
    margin: 0 0 0 0.5rem;
  }
  .navbar-nav {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
  .navbar-brand > img {
    max-width: none;
    max-height: 86px;
  }
}
@media (min-width: 992px) {
  .property-list--details-text {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    position: relative;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .property-details--counter .details-counter-blocks {
    border-bottom: 1px solid var(--border-color);
    border-right: none;
    text-align: left;
  }
  .property-details--counter .details-counter-blocks:last-child {
    border: none;
  }
  .stepbar-form .nav-item::before {
    position: absolute;
    content: "";
    border-bottom: 1px solid #ccc;
    left: 10px;
    width: 85%;
    top: 49%;
    z-index: -1;
  }
  .stepbar-form .nav-link {
    display: inline-block;
    background: #fbfbfb;
  }
}

/*# sourceMappingURL=rentals.css.map */
