@charset "UTF-8";
/* ==========================================================================
GLOBAL STYLES
========================================================================== */
:root {
  --brand-color-primary: #78b3e1;
  --color-arsenic: #393e46;
  --color-arsenic-rgb: 57, 62, 70;
  --color-bright-grey: #eee;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --text: #000;
  --background: #fff;
  --background-variant: #f1f6fc;
  --background-variant-white: var(--color-white);
  --background-variant-grey: #f6f6f6;
  --background-variant-grey-soft: #ddd;
  --animation-speed: 0.2s;
  --box-shadow: 0px 1px 8px 3px rgba(17, 0, 0, 0.3);
  --border-radius: 10px;
  /* Dark Mode Icons */
  --dark-mode-toggle-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='orange' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' class='feather feather-sun' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cpath d='M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42'/%3E%3C/svg%3E");
  --dark-mode-toggle-light-system: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Icons' x='0' y='0' style='enable-background:new 0 0 32 32' version='1.1' viewBox='0 0 32 32'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D%3C/style%3E%3Cpath d='M16 23c-3.87 0-7-3.13-7-7s3.13-7 7-7M6.81 6.81l2.12 2.12M3 16h3M6.81 25.19l2.12-2.12' class='st0' style='stroke:orange'/%3E%3Cpath d='M16 12.55A6.992 6.992 0 0 1 22.09 9c.16 0 .31.01.47.02a5.25 5.25 0 0 0 2.45 9.89c1.6 0 3.03-.72 3.99-1.85-.52 3.37-3.41 5.94-6.91 5.94-2.61 0-4.89-1.43-6.09-3.55M16 3v26' class='st0' style='stroke:black'/%3E%3C/svg%3E");
  --dark-mode-toggle-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' class='feather feather-moon' viewBox='0 0 24 24'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
  --dark-mode-toggle-dark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' class='feather feather-moon' viewBox='0 0 24 24'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
  --dark-mode-toggle-dark-system: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Icons' x='0' y='0' style='enable-background:new 0 0 32 32' version='1.1' viewBox='0 0 32 32'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D%3C/style%3E%3Cpath d='M16 23c-3.87 0-7-3.13-7-7s3.13-7 7-7M6.81 6.81l2.12 2.12M3 16h3M6.81 25.19l2.12-2.12' class='st0' style='stroke:orange'/%3E%3Cpath d='M16 12.55A6.992 6.992 0 0 1 22.09 9c.16 0 .31.01.47.02a5.25 5.25 0 0 0 2.45 9.89c1.6 0 3.03-.72 3.99-1.85-.52 3.37-3.41 5.94-6.91 5.94-2.61 0-4.89-1.43-6.09-3.55M16 3v26' class='st0' style='stroke:%23fff'/%3E%3C/svg%3E");
  --dark-mode-toggle-system: var(--dark-mode-toggle-dark-light);
}

/* Dark Mode*/
:root[theme=dark] {
  --text: #fff;
  --background: #222831;
  --background-variant: #393e46;
  --background-variant-white: var(--background-variant);
  --background-variant-grey: var(--background-variant);
  --background-variant-grey-soft: #515863;
  --dark-mode-toggle: var(--dark-mode-toggle-dark);
  --dark-mode-toggle-system: var(--dark-mode-toggle-dark-system);
}

/* Light Mode*/
:root[theme=light] {
  --dark-mode-toggle: var(--dark-mode-toggle-light);
  --dark-mode-toggle-system: var(--dark-mode-toggle-light-system);
}

@media (prefers-color-scheme: dark) {
  :root[theme=system] {
    --text: #fff;
    --background: #222831;
    --background-variant: #393e46;
    --background-variant-white: var(--background-variant);
    --background-variant-grey: var(--background-variant);
    --background-variant-grey-soft: #515863;
    --dark-mode-toggle: var(--dark-mode-toggle-dark-system);
    --dark-mode-toggle-system: var(--dark-mode-toggle-dark-system);
  }
  :root[theme=light] {
    --dark-mode-toggle-dark: var(--dark-mode-toggle-dark-light);
    --dark-mode-toggle-system: var(--dark-mode-toggle-light-system);
  }
}
@media (prefers-color-scheme: light) {
  :root[theme=system] {
    --dark-mode-toggle: var(--dark-mode-toggle-light-system);
    --dark-mode-toggle-system: var(--dark-mode-toggle-light-system);
    --dark-mode-toggle-dark: var(--dark-mode-toggle-dark-light);
  }
  :root[theme=light] {
    --dark-mode-toggle-dark: var(--dark-mode-toggle-dark-light);
  }
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--background);
  font-family: "Roboto", sans-serif;
  color: var(--text);
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-animation-name: initial;
  display: flex;
  flex-direction: column;
}
body.mobile-menu-open {
  overflow-x: hidden;
  overflow-y: auto;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 26px;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
}
a {
  transition: var(--animation-speed);
  color: var(--brand-color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--text);
}

button {
  transition: var(--animation-speed);
}

p {
  margin-bottom: 20px;
}
p.lead {
  font-weight: 400;
}

hr {
  border-color: var(--background-variant-grey-soft);
}
hr.hr__spacer {
  margin: 60px 0;
}

pre {
  background: var(--background-variant);
  color: var(--text);
}

legend {
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}

.text-muted {
  color: var(--text);
}

.btn__primary {
  color: var(--color-white);
  background: var(--brand-color-primary);
}
.btn__primary:hover, .btn__primary:focus {
  background: var(--color-black);
  color: var(--color-white);
}
.btn__underline {
  padding: 6px 0;
  font-weight: 700;
  border: 0;
  background: none;
  border-radius: 0;
  outline: none;
  box-shadow: none !important;
  position: relative;
  color: inherit;
  text-transform: uppercase;
}
.btn__underline:after {
  transition: var(--animation-speed);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
}
.btn__underline:hover {
  color: var(--brand-color-primary);
}
.btn__underline:hover:after {
  background: var(--brand-color-primary);
}
.btn__underline--primary {
  color: var(--brand-color-primary);
}
.btn__underline--primary:after {
  background: var(--brand-color-primary);
}
.btn__underline--primary:hover:after {
  background: var(--color-black);
}
.btn__underline--white {
  color: var(--color-white);
}
.btn__underline--white:after {
  background: var(--color-white);
}
.btn__underline--white:hover, .btn__underline--white:focus {
  color: var(--brand-color-primary);
}
.btn__underline--white:hover:after, .btn__underline--white:focus:after {
  background: var(--brand-color-primary);
}
.btn__outline {
  background: none;
}
.btn__outline--primary {
  color: var(--brand-color-primary);
  border-color: var(--brand-color-primary);
}
.btn__outline--primary:after {
  background: var(--brand-color-primary);
}
.btn__outline--primary:hover:after {
  background: var(--color-black);
}
.btn__lineafter {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  background: none;
  color: inherit;
}
.btn__lineafter:hover:after {
  width: 60px;
}
.btn__lineafter:after {
  content: " ";
  border-top: 2px solid var(--text);
  width: 36px;
  height: 7px;
  display: inline-block;
  margin-left: 20px;
  transition: var(--animation-speed);
}
.btn__lineafter--black:hover, .btn__lineafter--black:focus {
  color: var(--brand-color-primary);
}
.btn__lineafter--black:hover:after, .btn__lineafter--black:focus:after {
  border-color: var(--brand-color-primary);
}
.btn__lineafter--white:after {
  border-color: var(--color-white);
}
.btn__lineafter--white:hover, .btn__lineafter--white:focus {
  color: var(--color-white);
}

.flex {
  display: flex;
}
.flex__center {
  display: flex;
  align-items: center;
}
.flex__center--center {
  justify-content: center;
}

.wrap-side {
  position: relative;
}

/* Video Embed */
.fluid-video {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16/9 format */
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.fluid-video iframe,
.fluid-video embed,
.fluid-video object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.fluid-video-fullscreen {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.fluid-video-fullscreen iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container-fluid__fixed {
  max-width: 1170px;
}
.container-fluid__extended {
  max-width: 1500px;
}
.container-fluid__max {
  max-width: 80%;
}
.container-fluid__edge-space {
  margin-left: 3%;
  margin-right: 3%;
}
@media only screen and (max-width: 992px) {
  .container-fluid__edge-space {
    margin-left: 0;
    margin-right: 0;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 98;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  overflow: auto;
  transition: var(--animation-speed);
  padding: 15px;
  opacity: 0;
  background: var(--background);
}
.mobile-menu:before {
  position: absolute;
  inset: 0;
  background: var(--background);
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mobile-menu .header__action {
  justify-content: flex-start;
}
.mobile-menu__open {
  transform: translateY(0);
  transition: 0.3s;
  display: block;
  opacity: 1;
}
.mobile-menu__item {
  margin-bottom: 15px;
}
.mobile-menu__menu {
  position: relative;
  background: var(--brand-color-primary);
  padding: 0px;
  border-radius: 4px;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
}
.mobile-menu__profile button.theme-toggle {
  position: relative;
  padding: 0 8px;
}
.mobile-menu__profile button.theme-toggle:after {
  height: 22px;
  width: 22px;
}
.mobile-menu__btn {
  width: 35px;
}
.mobile-menu__btn.open:before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu__btn.open:after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.mobile-menu__btn.open:before, .mobile-menu__btn.open:after {
  background: var(--brand-color-primary);
}
.mobile-menu__btn.open .bar {
  opacity: 0;
  height: 0;
  width: 0;
  background: var(--brand-color-primary);
}
.mobile-menu__btn:before {
  top: 25%;
  content: "";
}
.mobile-menu__btn:after {
  top: 70%;
  content: "";
}
.mobile-menu__btn .bar {
  top: 50%;
  transform: translate(0, -50%);
}
.mobile-menu__btn .bar, .mobile-menu__btn:before, .mobile-menu__btn:after {
  position: absolute;
  left: 10px;
  right: 0;
  height: 2px;
  background: var(--text);
  transition: var(--animation-speed);
}

.header {
  position: relative;
  background: var(--background);
  z-index: 99;
}
@media only screen and (max-width: 992px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    height: 50px;
  }
}
.header__wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
}
.header__contact {
  display: flex;
  padding: 10px 0;
  font-size: 14px;
  background: var(--background-variant);
}
@media only screen and (max-width: 992px) {
  .header__contact {
    display: none;
  }
}
.header__contact .container-fluid {
  width: 100%;
}
.header__contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.header__contact ul li {
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.header__contact ul li:first-child {
  margin-right: auto;
}
.header__contact ul li:last-child {
  margin-right: 0;
}
.header__contact ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.header__contact ul li a:hover {
  color: var(--brand-color-primary);
}
.header__contact ul li svg {
  display: inline-block;
  height: 16px;
  width: 16px;
  fill: var(--brand-color-primary);
  transition: var(--animation-speed);
  stroke: var(--brand-color-primary);
  stroke-width: 6;
  margin-right: 10px;
}
.header__logo {
  position: relative;
  padding: 10px 0;
  margin-right: 60px;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}
@media only screen and (max-width: 992px) {
  .header__logo {
    padding: 5px 0;
    margin-right: 0;
  }
}
.header__logo img,
.header__logo svg {
  height: 60px;
}
@media only screen and (max-width: 992px) {
  .header__logo img,
  .header__logo svg {
    height: 40px;
  }
}
.header__logo a {
  color: var(--text);
  display: flex;
}
.header__nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.header__action {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex: 0 0 auto;
}
@media only screen and (max-width: 992px) {
  .header__action {
    margin-left: auto;
  }
}
.header__action ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline;
}
.header__action ul li {
  display: inline-block;
}
.header__action ul li.admin, .header__action ul li.theme-toggle {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header__action ul li.admin, .header__action ul li.theme-toggle {
    display: inline-block;
  }
}
.header__action ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 8px;
  position: relative;
  font-weight: 500;
}
.header__action ul li a:hover {
  color: var(--color-white);
}
.header__action ul li a:hover svg {
  fill: var(--brand-color-primary);
}
.header__action ul li a svg {
  display: inline-block;
  height: 22px;
  width: 22px;
  fill: var(--text);
  transition: var(--animation-speed);
}
.header__action ul li a span {
  display: none;
}
.header__action ul li a .total {
  position: absolute;
  top: -3px;
  left: 26px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  background-color: var(--brand-color-primary);
  color: var(--color-white);
}
.header__action ul li svg {
  fill: var(--color-white);
}
.header__buttons {
  margin-left: 20px;
}
@media only screen and (max-width: 992px) {
  .header__buttons {
    margin-left: 0;
  }
}
.header__buttons ul {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.header__buttons ul li {
  display: inline;
}
.header__buttons ul li a {
  padding: 10px 16px;
  line-height: inherit;
  color: var(--color-black);
  min-width: 26px;
}
.header__buttons ul li a.btn {
  color: var(--color-white);
}
.header__buttons ul li a.btn:hover {
  color: var(--color-white);
}
@media only screen and (max-width: 992px) {
  .header__buttons ul li a {
    padding: 5px 0 5px 10px;
  }
}
.header__buttons ul li a:hover {
  color: var(--brand-color-primary);
}
.header__buttons ul li a:hover svg {
  fill: var(--brand-color-primary);
}
.header__buttons ul li a svg {
  display: inline-block;
  height: 22px;
  width: 22px;
  fill: var(--text);
  transition: var(--animation-speed);
  stroke-width: 6;
  margin-right: 5px;
}
@media only screen and (max-width: 992px) {
  .header__buttons ul li a svg {
    fill: var(--text);
    stroke-width: inherit;
    height: 25px;
    width: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .header__buttons ul li a svg {
    margin-right: 0;
  }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
.sm {
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sm,
.sm ul,
.sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
}

.sm-rtl,
.sm-rtl ul,
.sm-rtl li {
  direction: rtl;
  text-align: right;
}

.sm > li > h1,
.sm > li > h2,
.sm > li > h3,
.sm > li > h4,
.sm > li > h5,
.sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm li,
.sm a {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: default;
}

.sm::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}

.sm *,
.sm *::before,
.sm *::after {
  box-sizing: inherit;
}

@media (min-width: 993px) {
  .sm-clean ul {
    position: absolute;
    width: 12em;
  }
  .sm-clean li {
    float: left;
  }
  .sm-clean.sm-rtl li {
    float: right;
  }
  .sm-clean ul li,
  .sm-clean.sm-rtl ul li,
  .sm-clean.sm-vertical li {
    float: none;
  }
  .sm-clean a {
    white-space: nowrap;
  }
  .sm-clean ul a,
  .sm-clean.sm-vertical a {
    white-space: normal;
  }
  .sm-clean .sm-nowrap > li > a,
  .sm-clean .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }
}
@media (min-width: 993px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  .sm-clean ul a.disabled {
    background: #fff;
    color: #ccc;
  }
  .sm-clean .scroll-up,
  .sm-clean .scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #fff;
    height: 20px;
  }
  .sm-clean .scroll-up:hover,
  .sm-clean .scroll-down:hover {
    background: #eee;
  }
  .sm-clean .scroll-up:hover .scroll-up-arrow {
    border-color: transparent transparent var(--brand-color-primary);
  }
  .sm-clean .scroll-down:hover .scroll-down-arrow {
    border-color: var(--brand-color-primary) transparent transparent;
  }
  .sm-clean .scroll-up-arrow,
  .sm-clean .scroll-down-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 6px;
    border-style: dashed dashed solid;
    border-color: transparent transparent #555;
  }
  .sm-clean .scroll-down-arrow {
    top: 8px;
    border-style: solid dashed dashed;
    border-color: #555 transparent transparent;
  }
  .sm-clean {
    float: right;
  }
  .sm-clean .sub-arrow {
    position: absolute;
    right: 5px;
    margin-left: 5px;
    text-align: center;
  }
  .sm-clean .sub-arrow:after {
    font-family: FontAwesome;
    content: "\f107";
  }
  .sm-clean li {
    position: relative;
    display: block;
    float: left;
  }
  .sm-clean li a {
    padding: 4px 15px;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
  }
  .sm-clean li a:hover {
    color: var(--brand-color-primary);
  }
  .sm-clean li a:hover .sub-arrow:after {
    content: "\f106";
  }
  .sm-clean li a:not(:only-child) {
    padding-right: 20px;
  }
  .sm-clean > li:hover > a {
    color: var(--brand-color-primary);
  }
  .sm-clean > li:hover > a .sub-arrow:after {
    content: "\f106";
  }
  .sm-clean ul {
    position: absolute;
    z-index: 999;
    width: 12em;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
    *zoom: 1;
    background: var(--brand-color-primary);
    padding: 15px;
    border-radius: 4px;
  }
  .sm-clean ul:before, .sm-clean ul:after {
    content: " ";
    display: table;
  }
  .sm-clean ul:after {
    clear: both;
  }
  .sm-clean ul li {
    float: none;
  }
  .sm-clean ul li a {
    padding: 8px 14px;
    color: var(--color-white);
  }
  .sm-clean ul li a:hover {
    color: var(--color-white);
    background: rgba(var(--color-white-rgb), 0.15);
    border-radius: 4px;
  }
  .sm-clean ul > li > a {
    position: relative;
  }
  .sm-clean ul > li > a .sub-arrow:after {
    content: "\f105";
  }
  .sm-clean ul > li:last-of-type > a:before {
    display: none;
  }
  .sm-clean ul > li:hover > a {
    background: rgba(var(--color-white-rgb), 0.15);
    border-radius: 4px;
  }
  .sm-clean ul > li:hover > a .sub-arrow:after {
    content: "\f104";
  }
}
@media only screen and (max-width: 992px) {
  .sm-clean ul {
    background: rgba(var(--color-white-rgb), 0.15);
  }
  .sm-clean li {
    float: none;
  }
  .sm-clean li a {
    text-decoration: none;
    padding: 14px 20px;
    border-bottom: 1px dashed rgba(var(--color-white-rgb), 0.15);
    color: var(--color-white);
    font-weight: 700;
  }
  .sm-clean li a:hover {
    background: rgba(var(--color-white-rgb), 0.15);
  }
  .sm-clean li a .sub-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-size: 20px;
    text-align: center;
    width: 45px;
    color: var(--color-white);
    top: 0;
    right: 0;
    bottom: 0;
  }
  .sm-clean li a .sub-arrow:after {
    font-family: FontAwesome;
    content: "\f107";
  }
  .sm-clean li a.highlighted {
    background: rgba(var(--color-white-rgb), 0.15);
  }
  .sm-clean li a.highlighted .sub-arrow:after {
    content: "\f106";
  }
}
.hero {
  position: relative;
}
.hero .slick-dots {
  position: absolute;
  margin: 0;
  padding: 0;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  list-style: none;
  display: flex;
}
.hero .slick-dots li {
  margin-left: 4px;
}
.hero .slick-dots .slick-active button {
  opacity: 0.9;
  width: 35px;
}
.hero .slick-dots button {
  padding: 0;
  overflow: hidden;
  text-indent: -999px;
  height: 10px;
  width: 20px;
  background: var(--color-white);
  border: 0;
  border-radius: 50px;
  opacity: 0.6;
}
.hero .collection__slider-arrows {
  top: auto;
  bottom: 0;
  left: auto;
  transform: none;
  display: flex;
}
.hero .collection__slider-arrows .slick-arrow {
  flex-direction: row;
  position: relative;
  box-shadow: none;
  border-radius: 0;
  left: auto;
  right: auto;
  background: var(--background-variant);
}
.hero .collection__slider-arrows .slick-arrow:hover {
  background: var(--brand-color-primary);
}
.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-black);
}
@media only screen and (max-width: 992px) {
  .hero__media {
    padding-top: 0;
  }
}
.hero__media__slider {
  overflow: hidden;
  height: 100%;
}
.hero__media__slider .slick-slider,
.hero__media__slider .slick-list,
.hero__media__slider .slick-track {
  height: 100%;
}
.hero__media__slider .item {
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.hero__media__slider:after {
  background-color: rgba(17, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.hero__media__video {
  background-size: cover;
  background-position: top center;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.hero__media__video:after {
  background-color: rgba(17, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.hero__media__video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__media__video .inline-YTPlayer {
  height: 100% !important;
  max-width: 100% !important;
}
.hero__media__video .mb_YTPlayer {
  position: static !important;
}
.hero__content {
  padding: 60px 0;
  position: relative;
  height: 70vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .hero__content {
    height: auto;
    min-height: 450px;
  }
}
.hero__content div[class*=container-] {
  width: 100%;
}
.hero__content__text {
  color: var(--color-white);
  margin: 0 0 60px 0;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}
.hero__content__text h3 {
  margin-top: 0;
  font-size: 60px;
}
@media only screen and (max-width: 767px) {
  .hero__content__text h3 {
    font-size: 30px;
  }
}
.hero__content__text span {
  color: var(--brand-color-primary);
}
.hero__content__text p {
  font-size: 28px;
}
@media only screen and (max-width: 767px) {
  .hero__content__text p {
    font-size: 20px;
  }
}
.hero__quicksearch {
  margin: 0;
}
.hero__quicksearch .nav-tablist {
  border: 0;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .hero__quicksearch .nav-tablist {
    margin-bottom: 10px;
    margin-left: 0;
  }
}
.hero__quicksearch .nav-tablist li {
  display: inline-block;
  float: none;
  margin: 0 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .hero__quicksearch .nav-tablist li {
    margin-right: 0;
  }
}
.hero__quicksearch .nav-tablist li.active a {
  background: var(--brand-color-primary) !important;
}
.hero__quicksearch .nav-tablist li.active a:before {
  border-color: var(--brand-color-primary) transparent transparent;
}
.hero__quicksearch .nav-tablist li a {
  background: var(--color-arsenic);
  border: 0;
  color: var(--color-white);
  border-radius: 4px;
  padding: 10px 16px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  outline: none;
}
.hero__quicksearch .nav-tablist li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-color: transparent;
  border-width: 9px;
  border-style: solid;
}
@media only screen and (max-width: 767px) {
  .hero__quicksearch .nav-tablist li a {
    padding: 4px 10px;
  }
}
.hero__quicksearch .nav-tablist li a:hover {
  background: var(--brand-color-primary) !important;
}
.hero__quicksearch .tab-pane > div {
  padding: 5px;
  background: var(--color-white);
  border-radius: var(--border-radius);
}
.hero__quicksearch__guided {
  max-width: 800px;
  padding: 10px !important;
}
.hero__quicksearch__suggest {
  width: 100%;
  max-width: 800px;
}
.hero__quicksearch__suggest__wrap {
  display: flex;
}
.hero__quicksearch__suggest form {
  position: relative;
}
.hero__quicksearch__suggest form .form-group {
  position: relative;
  margin: 5px;
  width: calc(100% - 60px);
  border-radius: 4px;
  background: var(--color-bright-grey);
}
@media only screen and (max-width: 767px) {
  .hero__quicksearch__suggest form .form-group {
    margin: 0;
  }
}
.hero__quicksearch__suggest form #mls-search-btn {
  text-align: center;
  width: 60px;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .hero__quicksearch__suggest form #mls-search-btn {
    margin: 0 0 0 5px;
  }
}
.hero__quicksearch__suggest form #mls-search-btn svg {
  height: 20px;
  width: 20px;
  fill: var(--color-white);
  transition: var(--animation-speed);
}
.hero__quicksearch__suggest form [id^=qs_suggest] {
  padding: 6px 12px;
  border: 0;
  background: none;
  box-shadow: none;
}
.hero__quicksearch__suggest form .searchSuggestLoading {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(72, 72, 72, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-black);
  animation: loading 1s ease-in-out infinite;
}
@keyframes loading {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.hero__quicksearch__suggest form .ms-ctn input {
  margin: 0;
  background: none;
}
.hero__quicksearch__suggest form .ms-ctn .ms-helper {
  top: 2px;
  right: 10px;
  color: red;
  font-size: 12px;
  font-weight: 700;
}
.hero__quicksearch__suggest form .ms-ctn .ms-sel-ctn {
  height: auto;
  margin-left: 0;
}
.hero__quicksearch__suggest form .ms-ctn .ms-sel-ctn input {
  height: 38px;
  min-width: 20%;
  font-size: 16px;
  font-weight: 500;
}
.hero__quicksearch__suggest form .ms-ctn .ms-sel-item {
  position: relative;
  margin: 1px 2px 1px 0;
  padding: 8px 35px 5px 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 30%;
  border-radius: 4px;
  background: #ddd;
  font-weight: 700;
  height: 36px;
  color: var(--color-black);
}
@media only screen and (max-width: 767px) {
  .hero__quicksearch__suggest form .ms-ctn .ms-sel-item {
    max-width: 70%;
  }
}
.hero__quicksearch__suggest form .ms-ctn .ms-sel-item:hover {
  border: 1px solid var(--color-arsenic);
}
.hero__quicksearch__suggest form .ms-ctn .ms-close-btn {
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  background: none;
  width: 26px;
}
.hero__quicksearch__suggest form .ms-ctn .ms-close-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "✕";
}
.hero__quicksearch__suggest form .ms-ctn .ms-res-ctn.dropdown-menu {
  box-shadow: 0 4px 5px rgba(17, 0, 0, 0.15);
  border: 0;
  padding: 0;
  margin: -3px 0 0 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media only screen and (max-width: 992px) {
  .hero__quicksearch__suggest form .ms-ctn .ms-res-ctn .ms-res-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.hero__quicksearch__suggest form .ms-ctn .ms-res-ctn div[class*=col-] {
  width: 100%;
}
.hero__quicksearch__suggest form .ms-ctn .ms-res-ctn em {
  background: none;
  color: var(--brand-color-primary);
}

/* ==========================================================================
   Quick Search
   ========================================================================== */
.form-quicksearch {
  position: relative;
  margin: 0 auto;
  font-size: 16px;
}
.form-quicksearch__wrap {
  display: flex;
  flex-direction: column;
}
.form-quicksearch .custom-menu {
  display: none;
}
.form-quicksearch__search-fields .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -3px;
  margin-left: -3px;
}
.form-quicksearch__search-fields div[class*=col-] {
  padding-right: 3px;
  padding-left: 3px;
  margin-bottom: 6px;
}
.form-quicksearch__search-fields .form-group {
  position: relative;
  margin: 0;
  border-radius: 4px;
  background: var(--color-bright-grey);
  transition: var(--animation-speed);
}
.form-quicksearch__search-fields .form-group.inactive-field {
  opacity: 0.4;
}
.form-quicksearch__search-fields .form-group > label {
  position: absolute;
  top: 5px;
  font-size: 13px;
  padding: 0 12px;
  font-weight: 500;
  color: var(--color-black);
  margin: 0;
}
.form-quicksearch__search-fields .form-group.form-select .form-control, .form-quicksearch__search-fields .form-group.form-input .form-control {
  padding-top: 23px;
}
.form-quicksearch__search-fields .form-group.form-select:after {
  position: absolute;
  right: 12px;
  top: calc(50% - 15px);
  transform: translate(0, calc(-50% + 15px));
  font-family: FontAwesome;
  content: "\f107";
  font-size: 16px;
  color: var(--color-black);
}
.form-quicksearch__search-fields .form-group .form-control {
  position: relative;
  color: var(--color-black);
  background: none;
  height: 50px;
  font-weight: 500;
  font-size: 16px;
}
.form-quicksearch__search-fields input,
.form-quicksearch__search-fields select {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
}
.form-quicksearch__search-fields input:focus,
.form-quicksearch__search-fields select:focus {
  box-shadow: none;
}
.form-quicksearch__search-fields select::-ms-expand {
  display: none;
}
.form-quicksearch__search-fields .select2-container.select2-container--open .select2-selection__arrow b:after {
  content: "\f106";
}
.form-quicksearch__search-fields .select2-container .select2-selection--single {
  border: 0;
  background: none;
  box-shadow: none;
  padding: 0 12px;
  padding-top: 23px;
  height: auto;
  min-height: 50px;
  font-size: 16px;
}
.form-quicksearch__search-fields .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--color-black);
  font-weight: 500;
}
.form-quicksearch__search-fields .select2-container .select2-selection__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-quicksearch__search-fields .select2-container .select2-selection__arrow b {
  border: 0;
  height: auto;
  width: auto;
  position: static;
  font-weight: normal;
}
.form-quicksearch__search-fields .select2-container .select2-selection__arrow b:after {
  font-size: 16px;
  transform: translate(0, -50%);
  border: 0;
  margin: 0 !important;
  font-family: FontAwesome;
  content: "\f107";
}
.form-quicksearch__search-fields .qs-single-select .selectize-input {
  position: relative;
  border: 0;
  padding: 0 12px;
  background: none !important;
  box-shadow: none;
  min-height: 50px;
}
.form-quicksearch__search-fields .qs-single-select .selectize-input input {
  position: absolute;
  color: var(--color-black);
  top: calc(50% + 10px);
  transform: translate(0, -50%);
  display: none !important;
}
.form-quicksearch__search-fields .qs-single-select .selectize-input.input-active:after {
  content: "\f106";
}
.form-quicksearch__search-fields .qs-single-select .selectize-input:after {
  top: 50%;
  right: 22px;
  font-size: 16px;
  transform: translate(0, -50%);
  height: auto;
  border: 0;
  margin: 0 !important;
  font-family: FontAwesome;
  content: "\f107";
}
.form-quicksearch__search-fields .qs-single-select .selectize-dropdown,
.form-quicksearch__search-fields .qs-single-select .selectize-dropdown.form-control {
  margin: 0;
  border: 0;
  height: auto;
  width: 100% !important;
  top: -8px !important;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.form-quicksearch__search-fields .qs-single-select .selectize-dropdown-content {
  background: var(--color-white);
  border-radius: 0 0 5px 5px;
  font-size: 14px;
}
.form-quicksearch__search-fields .qs-single-select .selectize-dropdown-content .option {
  background: none;
  color: var(--color-black);
  padding: 4px 12px;
}
.form-quicksearch__search-fields .qs-single-select .selectize-dropdown-content .option:hover {
  color: var(--brand-color-primary);
}
.form-quicksearch__search-fields .multi-select.ms-parent {
  border: 4px;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
}
.form-quicksearch__search-fields .multi-select.ms-parent .ms-choice {
  position: relative;
  background: none;
  padding: 0 12px;
  border: 0;
}
.form-quicksearch__search-fields .multi-select.ms-parent .ms-choice span {
  padding: 0;
  top: calc(50% + 10px);
  transform: translate(0, -50%);
  left: 12px;
  right: 26px;
}
.form-quicksearch__search-fields .multi-select.ms-parent .ms-choice span.placeholder {
  color: var(--color-black);
}
.form-quicksearch__search-fields .multi-select.ms-parent .ms-choice > div {
  right: 22px;
  bottom: 0;
  height: 100%;
  width: auto;
  color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-quicksearch__search-fields .multi-select.ms-parent .ms-choice > div.open .caret:after {
  content: "\f106";
}
.form-quicksearch__search-fields .multi-select.ms-parent .ms-choice .caret {
  margin: 0;
  border: 0;
  font-weight: 500;
}
.form-quicksearch__search-fields .multi-select.ms-parent .ms-choice .caret:after {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translate(0, -50%);
  font-family: FontAwesome;
  content: "\f107";
  font-size: 16px;
}
.form-quicksearch__search-fields .multi-select .ms-drop {
  width: 100%;
  border-radius: 0;
  background-color: var(--color-white);
  border: 0;
  padding: 5px 0;
  border-radius: 0 0 5px 5px;
  margin-top: -3px;
  font-size: 14px;
}
.form-quicksearch__search-fields .multi-select .ms-drop ul li {
  padding: 0 12px;
}
.form-quicksearch__search-fields .multi-select .ms-drop ul li:hover {
  background: none;
}
.form-quicksearch__search-fields .multi-select .ms-drop ul li:hover label {
  color: var(--brand-color-primary);
}
.form-quicksearch__search-fields .multi-select .ms-drop label {
  white-space: pre-wrap;
  padding: 4px 0;
  cursor: pointer;
  color: var(--color-black);
  outline: none;
  font-weight: 500;
  display: flex;
}
.form-quicksearch__search-fields .multi-select .ms-drop label span {
  padding-left: 3px;
}
.form-quicksearch__search-fields .multi-select .ms-drop label.disabled input {
  display: none;
}
.form-quicksearch__search-fields .multi-select .ms-drop label.disabled span {
  color: #999 !important;
  cursor: default;
}
.form-quicksearch__search-fields .multi-select .ms-drop input[type=checkbox] {
  cursor: pointer;
  outline: none;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 9px;
  top: 1px;
  background: var(--color-bright-grey);
  width: 18px;
  height: 18px;
  border-radius: 4px;
  margin-right: 3px;
  overflow: hidden;
  display: flex;
}
.form-quicksearch__search-fields .multi-select .ms-drop input[type=checkbox]:checked {
  background: var(--brand-color-primary);
}
.form-quicksearch__search-fields .multi-select .ms-drop input[type=checkbox]:checked:after {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: fontAwesome;
  width: 100%;
  text-align: center;
  content: "\f00c";
  font-size: 12px;
  color: var(--color-white);
}
.form-quicksearch__search-fields .selectize-control {
  min-height: 50px;
  font-weight: 500;
  font-size: 16px;
}
.form-quicksearch__search-fields .selectize-control .selectize-input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
  padding: 23px 12px 0 12px !important;
}
.form-quicksearch__search-fields .selectize-control .selectize-input .item {
  margin: 0;
  padding: 0 3px;
}
.form-quicksearch__search-fields .selectize-control .selectize-input .item.active {
  background: none;
}
.form-quicksearch__search-fields .selectize-control .selectize-input .item:after {
  content: ",";
}
.form-quicksearch__search-fields .selectize-control .selectize-input .item:last-of-type:after {
  content: "";
}
.form-quicksearch__submit {
  display: flex;
  gap: 6px;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .form-quicksearch__submit {
    flex-direction: row;
    max-width: 100%;
    margin: 0;
  }
}
.form-quicksearch__submit .btn {
  text-align: center;
  height: 40px;
  width: 100%;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .form-quicksearch__submit .btn {
    max-width: 100%;
  }
}
.form-quicksearch__submit .btn svg {
  height: 20px;
  width: 20px;
  transition: var(--animation-speed);
  fill: var(--color-white);
  margin-right: 10px;
}
.form-quicksearch__submit #resetForm {
  color: var(--color-white);
  background: var(--color-arsenic);
  text-align: center;
}
.form-quicksearch__submit #resetForm:hover {
  background: var(--color-black);
}

.select2-dropdown {
  border: 0;
  margin-top: -2px;
}

.select2-results__options[id*=select2-qs_] {
  background: var(--color-white);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 500;
}
.select2-results__options[id*=select2-qs_] li {
  padding: 4px 12px;
  background: none !important;
  color: var(--color-black);
}
.select2-results__options[id*=select2-qs_] li[aria-selected=true] {
  color: var(--brand-color-primary) !important;
}
.select2-results__options[id*=select2-qs_] li:hover {
  color: var(--brand-color-primary);
}

/* ==========================================================================
   Section
   ========================================================================== */
.content {
  position: relative;
}

.section {
  position: relative;
}
.section .container-fluid {
  position: relative;
}
.section__round {
  margin: 15px;
  border-radius: 26px;
}
.section__spacer {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .section__spacer {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section__spacer {
    padding: 40px 0;
  }
}
.section__spacer--bottom {
  padding: 0 0 120px 0;
}
@media only screen and (max-width: 767px) {
  .section__spacer--bottom {
    padding: 0 0 40px 0;
  }
}
.section__spacer--main {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .section__spacer--main {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .section__spacer--main {
    padding: 40px 0;
  }
}
.section__center {
  text-align: center;
}
.section__background-image {
  background-size: cover;
  background-position: center;
  background-color: var(--background);
  position: relative;
}
.section__background-image:before {
  background-color: rgba(var(--color-arsenic-rgb), 0.2);
  position: absolute;
  inset: 0;
  content: "";
}
.section__background-color {
  background-color: var(--background-variant);
}
.section__title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .section__title {
    margin-bottom: 20px;
  }
}
.section__title__link {
  float: right;
  margin-left: 5px;
}
.section__title--sub {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-color-primary);
}
.section__title h2 {
  margin-top: 0;
}
.section__sub {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .section__sub {
    margin-top: 20px;
  }
}

.banner__background {
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
  color: var(--color-white);
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner__background {
    min-height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__background {
    min-height: 200px;
  }
}
.banner__background .banner__title {
  margin: 0;
  padding: 0;
}
.banner__background h1 {
  margin: 0;
  color: var(--color-white);
}
.banner__title {
  padding: 60px 0 0 0;
  margin-bottom: -60px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner__title {
    padding-top: 40px;
    margin-bottom: -40px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__title {
    padding-top: 30px;
    margin-bottom: -30px;
  }
}

.collection__wrap {
  display: none;
}
.collection__wrap.slick-initialized {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.collection__slider {
  position: relative;
}
.collection__slider .slick-slide {
  outline: none;
  opacity: 0.5;
  transition: var(--animation-speed);
}
.collection__slider .slick-active,
.collection__slider .slick-center {
  opacity: 1;
}
.collection__slider-arrows {
  position: absolute;
  z-index: 1;
  top: calc(50% - 50px);
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 767px) {
  .collection__slider-arrows {
    top: calc(50% - 40px);
  }
}
.collection__slider-arrows .slick-arrow {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
  border: 0;
  width: 60px;
  height: 60px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  font-size: 26px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .collection__slider-arrows .slick-arrow {
    height: 40px;
    width: 40px;
    padding: 0;
  }
}
.collection__slider-arrows .slick-arrow.slick-disabled {
  opacity: 0;
  transform: scale(0);
}
.collection__slider-arrows .slick-arrow svg {
  height: 24px;
  width: 24px;
  fill: var(--color-black);
  transition: var(--animation-speed);
}
@media only screen and (max-width: 767px) {
  .collection__slider-arrows .slick-arrow svg {
    height: 14px;
    width: 14px;
  }
}
.collection__slider-arrows .slick-arrow:hover {
  background: var(--brand-color-primary);
}
.collection__slider-arrows .slick-arrow:hover svg {
  fill: var(--color-white);
}
.collection__slider-arrows .slick-prev {
  position: absolute;
  left: 15px;
}
@media only screen and (max-width: 767px) {
  .collection__slider-arrows .slick-prev {
    left: -15px;
  }
}
.collection__slider-arrows .slick-next {
  position: absolute;
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .collection__slider-arrows .slick-next {
    right: -15px;
  }
}
.collection__box {
  outline: none;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .collection__box {
    padding-left: 0;
    padding-right: 0;
  }
}
.collection__box a {
  display: block;
}
.collection__box a:hover .collection__preview {
  transform: scale(1.02);
}
@media only screen and (max-width: 992px) {
  .collection__box a:hover .collection__preview {
    transform: scale(1);
  }
}
.collection__preview {
  transition: var(--animation-speed);
  color: var(--color-white);
  padding-bottom: 75%;
  position: relative;
}
.collection__preview a {
  color: var(--color-white);
}
.collection__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .collection__background {
    border-radius: 0;
  }
}
.collection__background:before {
  font-weight: 700;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 50px;
  height: 50px;
  border: 3px solid rgba(72, 72, 72, 0.3);
  border-radius: 50%;
  border-top-color: var(--text);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
  }
}
.collection__pic {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.collection__pic:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0.5) 100%);
}
.collection__pic img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.collection__content {
  text-align: left;
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 20px;
  text-shadow: 1px 1px 1px rgba(17, 0, 0, 0.1);
  font-size: 14px;
}
.collection__content__top, .collection__content__bottom {
  position: absolute;
  left: 20px;
  right: 20px;
}
.collection__content__top {
  font-weight: 700;
}
.collection__content__bottom {
  bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.collection__content--wrap {
  align-self: flex-end;
  align-content: flex-end;
}
.collection__daymls {
  text-align: right;
}
.collection__address {
  line-height: 18px;
}
.collection__price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.collection__gen span {
  text-shadow: none;
  border-radius: 4px;
  background: var(--color-arsenic);
  display: inline-block;
  padding: 2px 8px;
  margin: 0 2px 2px 0;
}
.collection__gen span.status {
  background: var(--color-arsenic);
}
.collection__gen span.status-1 {
  background: green;
}
.collection__gen span.status-5, .collection__gen span.status-6, .collection__gen span.status-7, .collection__gen span.status-13 {
  background: orange;
}
.collection__gen span.sold {
  background: red;
}
.collection__specs {
  padding: 15px 20px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.collection__specs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.collection__specs ul li {
  color: var(--text);
  display: flex;
}
.collection__specs ul li a {
  color: var(--text);
}
.collection__specs ul li a:hover {
  color: var(--brand-color-primary);
}
.collection__specs ul li strong {
  margin-right: 5px;
}
.collection__specs ul li svg {
  height: 20px;
  width: 20px;
  fill: var(--text);
  margin-right: 10px;
}

.featured_options .flex {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .featured_options .flex {
    display: block;
  }
}
.featured_options__wrap {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .featured_options__wrap .row {
    margin: 0 -5px;
  }
  .featured_options__wrap .row div[class*=col-] {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  .featured_options div[class*=col-] {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .featured_options div[class*=col-] {
    margin-bottom: 30px;
  }
}
.featured_options__box {
  overflow: hidden;
  background: var(--background-variant);
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--animation-speed);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.featured_options__box .h4 {
  margin: 0 0 20px 0;
  font-size: 22px;
}
.featured_options__image {
  display: none;
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  background-size: cover;
  background-position: center;
}
.featured_options__icon {
  margin-bottom: 20px;
}
.featured_options__icon svg {
  fill: var(--brand-color-primary);
  height: 50px;
  width: 50px;
}
.featured_options__wrap-inner {
  padding: 40px;
}
.featured_options__info {
  flex: 1 0 auto;
  margin-bottom: 10px;
}

.agent__wrap {
  display: none;
}
@media only screen and (max-width: 767px) {
  .agent__wrap {
    margin: 0 -10px;
  }
}
.agent__wrap.slick-initialized {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.agent__slider {
  position: relative;
}
.agent__slider .slick-track {
  display: flex;
}
.agent__slider .slick-slide {
  height: auto;
  outline: none;
  opacity: 0.5;
  transition: var(--animation-speed);
}
.agent__slider .slick-active,
.agent__slider .slick-center {
  opacity: 1;
}
.agent__background {
  position: relative;
  overflow: hidden;
  padding-bottom: 125%;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  transition: var(--animation-speed);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
}
.agent__background:hover {
  transform: scale(1.02);
}
@media only screen and (max-width: 992px) {
  .agent__background:hover {
    transform: scale(1);
  }
}
.agent__pic {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.agent__pic img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  height: 100%;
  width: 100%;
}
.agent__box {
  outline: none;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .agent__box {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.agent__box a {
  color: inherit;
}
.agent__box a:hover {
  color: var(--brand-color-primary);
}
.agent__container {
  position: relative;
  display: block;
}
.agent__content {
  z-index: 2;
  overflow: hidden;
  text-align: center;
}
.agent__content .h4 {
  margin: 0;
}
.agent__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.agent__content ul li {
  font-size: 14px;
}
.agent__content ul li a {
  color: inherit;
}
.agent__content ul li a:hover {
  color: var(--brand-color-primary);
}

.communities__wrap {
  position: relative;
}
.communities__pic {
  position: relative;
  overflow: hidden;
  background-color: var(--background);
  width: 100%;
  border-radius: var(--border-radius);
  transition: var(--animation-speed);
  padding-bottom: 70%;
}
.communities__pic img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.communities__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: var(--border-radius);
}
.communities__info .h4 {
  margin: 0;
}
.communities__info svg {
  transition: var(--animation-speed);
  fill: var(--text);
  height: 22px;
  width: 22px;
  right: 0;
}
.communities__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 0 0;
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 992px) {
  .communities__list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
.communities__item:not(.has-image) a {
  background: var(--background);
}
.communities__item.has-image .communities__pic {
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
}
.communities__item a {
  display: block;
  border-radius: var(--border-radius);
  color: var(--text);
}
.communities__item a:hover {
  background: --background;
  color: var(--brand-color-primary);
}
.communities__item a:hover .communities__pic {
  transform: scale(1.02);
}
@media only screen and (max-width: 992px) {
  .communities__item a:hover .communities__pic {
    transform: scale(1);
  }
}
.communities__item a:hover svg {
  fill: var(--brand-color-primary);
}

.new-listings {
  color: var(--color-white);
}
.new-listings__date-selector {
  border: 0;
}
.new-listings__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .new-listings__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .new-listings__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.new-listings__list li {
  display: flex;
}
.new-listings__list li:first-child a {
  border-color: var(--color-white);
  background: var(--color-white);
}
.new-listings__list li:first-child a span {
  color: var(--color-black);
}
.new-listings__list li:first-child a .h4 {
  color: var(--color-black);
}
.new-listings__list li:first-child a svg {
  fill: var(--color-black);
}
.new-listings__list li a {
  position: relative;
  color: var(--color-black);
  display: block;
  border: 2px solid transparent;
  padding: 15px;
  border-radius: var(--border-radius);
}
.new-listings__list li a:hover {
  border-color: var(--color-white);
}
.new-listings__list li a .h4 {
  margin-top: 0;
  transition: var(--animation-speed);
  color: var(--color-white);
}
.new-listings__list li a span {
  transition: var(--animation-speed);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
}
.new-listings__list li a svg {
  height: 15px;
  width: 15px;
  fill: var(--color-white);
}

.agent-testimonials {
  position: relative;
}
.agent-testimonials__wrap {
  position: relative;
  z-index: 1;
}
.agent-testimonials__slider {
  display: none;
}
.agent-testimonials__slider.slick-initialized {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.agent-testimonials__slider .slick-slide {
  outline: none;
  opacity: 0.5;
  transition: var(--animation-speed);
}
.agent-testimonials__slider .slick-active,
.agent-testimonials__slider .slick-center {
  opacity: 1;
}
.agent-testimonials .slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 20px 0 0 0;
  padding: 0;
}
.agent-testimonials .slick-dots .slick-active button {
  width: 35px;
  opacity: 1;
}
.agent-testimonials .slick-dots button {
  margin: 3px;
  border: 0;
  height: 10px;
  width: 20px;
  border-radius: 50px;
  background: var(--brand-color-primary);
  opacity: 0.5;
  overflow: hidden;
  text-indent: -999px;
}
.agent-testimonials__slider-arrows {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
}
.agent-testimonials__slider-arrows button {
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 60px;
  height: 60px;
  width: 60px;
  padding: 1px;
  margin-left: 6px;
}
@media only screen and (max-width: 767px) {
  .agent-testimonials__slider-arrows button {
    height: 40px;
    width: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .agent-testimonials__slider-arrows button {
    height: 50px;
    width: 50px;
  }
}
.agent-testimonials__slider-arrows button:hover {
  color: var(--brand-color-primary);
}
.agent-testimonials__slider-arrows button:hover svg {
  fill: var(--brand-color-primary);
}
.agent-testimonials__slider-arrows button svg {
  fill: var(--color-black);
  height: 24px;
  width: 24px;
  transition: var(--animation-speed);
}
@media only screen and (max-width: 767px) {
  .agent-testimonials__slider-arrows button svg {
    height: 18px;
    width: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .agent-testimonials__slider-arrows button svg {
    height: 20px;
    width: 20px;
  }
}
.agent-testimonials__name {
  margin-top: 30px;
  padding-top: 30px;
}
.agent-testimonials__name a {
  color: var(--text);
  font-size: 16px;
}
.agent-testimonials__name a:hover {
  color: var(--brand-color-primary);
}
.agent-testimonials__inner {
  position: relative;
  background: var(--background);
  padding: 100px 40px 40px 40px;
  border-radius: var(--border-radius);
}
.agent-testimonials__inner:after {
  position: absolute;
  top: 30px;
  left: 40px;
  content: "“";
  font-size: 120px;
  line-height: 120px;
  color: var(--text);
  opacity: 0.3;
}
.agent-testimonials blockquote {
  border: 0;
  margin: 0;
  padding: 15px;
}

.recent-posts__slider {
  display: none;
}
.recent-posts__slider.slick-initialized {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.recent-posts__slider .slick-slide {
  outline: none;
  opacity: 0.5;
  transition: var(--animation-speed);
}
.recent-posts__slider .slick-active,
.recent-posts__slider .slick-center {
  opacity: 1;
}
.recent-posts__item {
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .recent-posts__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.recent-posts__slider-arrows {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -10px;
}
.recent-posts__slider-arrows button {
  height: 40px;
  width: 40px;
  padding: 1px;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  border: 0;
  background: var(--color-bright-grey);
  transform: scale(1);
  transition: var(--animation-speed);
}
.recent-posts__slider-arrows button:hover {
  background: var(--brand-color-primary);
}
.recent-posts__slider-arrows button:hover svg {
  fill: var(--color-white);
}
.recent-posts__slider-arrows button svg {
  fill: var(--color-black);
  height: 20px;
  width: 20px;
  transition: var(--animation-speed);
}
.recent-posts__slider-arrows button.slick-disabled {
  opacity: 0;
  transform: scale(0);
  width: 0;
}
.recent-posts__background {
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  transition: var(--animation-speed);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .recent-posts__background {
    border-radius: 0;
  }
}
.recent-posts__background:hover {
  transform: scale(1.02);
}
@media only screen and (max-width: 992px) {
  .recent-posts__background:hover {
    transform: scale(1);
  }
}
.recent-posts__background .recent-posts__category {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media only screen and (max-width: 767px) {
  .recent-posts__background .recent-posts__category {
    padding: 0;
  }
}
.recent-posts__pic {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.recent-posts__pic img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .recent-posts__content {
    padding: 0 15px;
  }
}
.recent-posts__title {
  margin-top: 0;
}
.recent-posts__title a {
  color: inherit;
}
.recent-posts__title a:hover {
  color: var(--brand-color-primary);
}
.recent-posts__category {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .recent-posts__category {
    padding: 0 15px;
  }
}
.recent-posts__category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-posts__category ul li {
  background: var(--color-arsenic);
  display: inline-block;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--color-white);
}
.recent-posts__meta {
  margin-top: 10px;
}
.recent-posts__meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-posts__meta ul li {
  display: inline-block;
  font-size: 14px;
}
.recent-posts__meta ul li:after {
  content: "·";
  margin: 0 3px 0 6px;
}
.recent-posts__meta ul li:last-child:after {
  display: none;
}
.recent-posts__meta ul li a {
  color: inherit;
}
.recent-posts__meta ul li a:hover {
  color: var(--brand-color-primary);
}

.listings-average {
  padding: 20px;
  background: var(--background-variant-grey);
  border-radius: var(--border-radius);
  text-align: center;
}
.listings-average h3 {
  margin-top: 0;
}
.listings-average p:last-of-type {
  margin-bottom: 10px;
}
.listings-average table {
  text-align: left;
  font-size: 14px;
  margin: 0;
}
.listings-average table > thead > tr > th {
  border-bottom: 0;
}
.listings-average table > tbody > tr {
  transition: var(--animation-speed);
}
.listings-average table > tbody > tr:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.listings-average table > tbody > tr > td {
  border-top: 0;
  border-bottom: 1px solid var(--background-variant-grey-soft);
}
.listings-average table > tbody > tr:last-of-type > td {
  border: 0;
}
.listings-average table thead td {
  border: 0;
}
.listings-average table thead span {
  display: inline-block;
  border-bottom: 2px solid var(--text);
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar img {
  margin-bottom: 10px;
  max-width: 100%;
  border-radius: var(--border-radius);
}
.sidebar .slick-arrow {
  opacity: 0;
  height: 40px;
  width: 40px;
  padding: 0;
}
.sidebar .slick-arrow svg {
  height: 14px;
  width: 14px;
}
.sidebar__widget {
  margin-bottom: 30px;
}
.sidebar__widget--background {
  padding: 20px;
  background: var(--background-variant);
  border-radius: var(--border-radius);
}
.sidebar__widget--background .h4 {
  margin-top: 0;
}
.sidebar__widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__widget:hover .slick-arrow {
  opacity: 1;
}
.sidebar__list ul li a {
  color: var(--text);
  text-decoration: none;
}
.sidebar__list ul li a:hover {
  color: var(--brand-color-primary);
}
.sidebar__list ul li a:before {
  content: "\f105";
  font-family: fontAwesome;
  margin-right: 10px;
  color: var(--brand-color-primary);
}
.sidebar__featured-listing .collection__preview {
  padding-bottom: 125%;
}
.sidebar__featured-listing .collection__content__bottom {
  display: block;
}
.sidebar__featured-listing .collection__daymls {
  display: none;
}
.sidebar__featured-listing .collection__specs ul li svg {
  display: none;
}
.sidebar__top-blogs ul {
  counter-reset: step-counter;
}
.sidebar__top-blogs ul li {
  counter-increment: step-counter;
}
.sidebar__top-blogs ul li a {
  display: block;
  position: relative;
  padding: 5px 0;
  color: var(--text);
  display: flex;
  align-items: center;
}
.sidebar__top-blogs ul li a:hover {
  color: var(--brand-color-primary);
}
.sidebar__top-blogs ul li a:hover:before {
  color: var(--brand-color-primary);
}
.sidebar__top-blogs ul li a:before {
  content: counter(step-counter);
  color: var(--brand-color-primary);
  font-size: 28px;
  line-height: 28px;
  margin-right: 15px;
  font-weight: 700;
}
.sidebar__new-listings ul li a {
  display: block;
}
.sidebar__new-listings ul li a .badge {
  transition: var(--animation-speed);
  border-radius: 4px;
  background-color: var(--brand-color-primary);
}
.sidebar__new-listings ul li a:hover .badge {
  background-color: var(--color-black);
}
.sidebar__agent-portal .agent-slider .agent-wrap {
  margin-bottom: 0;
  box-shadow: none;
}
.sidebar__agent-portal .agent-slider .slider-wrap {
  display: block;
}
.sidebar__agent-portal .agent-slider .agent-content {
  background: var(--color-arsenic);
  font-size: 14px;
}
.sidebar__agent-portal .agent-slider .agent-content ul li img,
.sidebar__agent-portal .agent-slider .agent-content ul li svg {
  height: 16px;
  width: 16px;
  margin-right: 6px;
}
.sidebar__agent-portal .agent-slider .agent-content .btn {
  padding: 4px 10px;
  font-size: 12px;
}
.sidebar__agents {
  margin-bottom: 0;
}
.sidebar__menu-box {
  background: var(--brand-color-primary);
  background-image: var(--brand-color-primary);
  padding: 20px 20px 0 20px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
}
.sidebar__menu-box .h4 {
  position: relative;
  display: block;
  color: var(--color-white);
  margin: 0;
  padding-bottom: 15px;
}
.sidebar__multilevel .sm-vertical-list {
  z-index: 1;
  margin-left: -20px;
  margin-right: -20px;
  background: var(--background);
  border-bottom: 1px dashed rgba(200, 200, 200, 0.3);
}
.sidebar__multilevel .sm-vertical-list ul {
  background: rgba(var(--color-white-rgb), 0.05);
}
.sidebar__multilevel .sm-vertical-list li {
  float: none;
  border-style: dashed;
  border-color: rgba(200, 200, 200, 0.3);
  border-width: 1px 1px 0px 1px;
}
.sidebar__multilevel .sm-vertical-list li a {
  text-decoration: none;
  padding: 14px 20px;
  color: var(--text);
  outline: none;
}
.sidebar__multilevel .sm-vertical-list li a.has-submenu {
  padding: 14px 40px 14px 20px;
}
.sidebar__multilevel .sm-vertical-list li a:hover {
  background: rgba(200, 200, 200, 0.3);
}
.sidebar__multilevel .sm-vertical-list li a .sub-arrow {
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  transform: translate(0, -50%);
  text-align: center;
  padding: 0 20px;
}
.sidebar__multilevel .sm-vertical-list li a .sub-arrow:after {
  font-family: FontAwesome;
  content: "\f107";
}
.sidebar__multilevel .sm-vertical-list li a.highlighted {
  background: rgba(200, 200, 200, 0.3);
}
.sidebar__multilevel .sm-vertical-list li a.highlighted .sub-arrow:after {
  content: "\f106";
}
.sidebar__multilevel .sm-vertical-list li li {
  border-bottom: 0 !important;
}
.sidebar__multilevel .sm-vertical-list li li a {
  font-size: 14px;
  line-height: 22px;
}
.sidebar__multilevel .sm-vertical-list li li a .sub-arrow {
  font-size: 18px;
}
.sidebar__multilevelmenus-list {
  overflow: hidden;
}
.sidebar__multilevelmenus-list .panel-group {
  margin: 0;
}
.sidebar__multilevelmenus-list .panel {
  border: 0;
  background: none;
  box-shadow: none;
  margin: 0 -20px !important;
  border-radius: 0;
  border: 0;
}
.sidebar__multilevelmenus-list .panel:last-of-type .panel-heading .panel-title {
  border-bottom: 1px dashed rgba(var(--color-white-rgb), 0.15);
}
.sidebar__multilevelmenus-list .panel .panel-heading {
  border-radius: 0;
  border: 0;
  background: none;
  padding: 0;
}
.sidebar__multilevelmenus-list .panel .panel-heading .panel-title {
  border: 0;
  padding: 0;
  font-size: inherit;
  padding: 0;
  margin: 0;
  border-top: 1px dashed rgba(var(--color-white-rgb), 0.15);
}
.sidebar__multilevelmenus-list .panel .panel-heading .panel-title a {
  position: relative;
  padding: 14px 20px;
  display: block;
  color: var(--color-white);
  text-decoration: none;
}
.sidebar__multilevelmenus-list .panel .panel-heading .panel-title a:hover {
  background: rgba(var(--color-white-rgb), 0.15);
}
.sidebar__multilevelmenus-list .panel .panel-heading .panel-title a[data-toggle=collapse]:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px;
  font-family: FontAwesome;
  content: "\f106";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.sidebar__multilevelmenus-list .panel .panel-heading .panel-title a[data-toggle=collapse][aria-expanded=true] {
  background: rgba(var(--color-white-rgb), 0.15);
}
.sidebar__multilevelmenus-list .panel .panel-heading .panel-title a[data-toggle=collapse][aria-expanded=false]:after {
  content: "\f107";
}
.sidebar__multilevelmenus-list .panel .panel-body {
  border: 0 !important;
  padding: 0;
  background: rgba(var(--color-white-rgb), 0.15);
  padding: 0 20px;
}
.sidebar__multilevelmenus-list .panel .panel-body li a {
  font-size: 14px;
  line-height: 22px;
}
.sidebar__multilevelmenus-list .panel .panel-body li a .sub-arrow {
  font-size: 18px;
  line-height: 34px;
}
.sidebar__no-title {
  padding: 0 20px;
}
.sidebar__no-title.sidebar__multilevelmenus-list .panel:first-of-type .panel-heading .panel-title {
  border-top: 0;
}
.sidebar__quicksearch .form-quicksearch__wrap {
  display: block;
}
.sidebar__quicksearch .form-quicksearch__search-fields {
  width: 100%;
}
.sidebar__quicksearch .form-quicksearch__search-fields .extra-search {
  display: block;
}
.sidebar__quicksearch .form-quicksearch__search-fields .row {
  margin-right: -3px;
  margin-left: -3px;
  display: block;
}
.sidebar__quicksearch .form-quicksearch__search-fields div[class*=col-] {
  padding-right: 3px;
  padding-left: 3px;
  width: 100%;
  margin-bottom: 6px;
}
.sidebar__quicksearch .form-quicksearch__search-fields div[class*=col-xs-6] {
  width: 50%;
}
.sidebar__quicksearch .form-quicksearch__search-fields .form-group {
  margin: 0;
}
.sidebar__quicksearch .form-quicksearch__submit {
  width: 100%;
  margin: 0;
  flex-direction: row;
}
.sidebar__quicksearch .form-quicksearch__submit .btn {
  position: relative;
  padding: 10px 16px;
  height: 40px;
  width: 100%;
}
.sidebar__quicksearch .form-quicksearch__submit .btn span {
  display: block;
}
.sidebar__quicksearch .form-quicksearch__submit .btn svg {
  margin-right: 10px;
}
.sidebar__quicksearch .form-quicksearch__submit a#resetForm {
  margin-top: 0;
  height: 40px;
  margin-left: 5px;
  width: 30%;
}

/* Single Property */
.single-property-message {
  padding: 5px 50px 5px 15px;
  position: relative;
  display: none;
  text-align: center;
  background-color: #2590fa;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.single-property-message a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}
.single-property-message a:hover {
  color: #fff;
  opacity: 0.7;
}
.single-property-message__dismiss {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 15px;
  transition: 0.2s;
  display: flex;
  align-items: center;
}
.single-property-message__dismiss:hover {
  opacity: 0.7;
}
.single-property-message__dismiss svg {
  display: block;
  height: 14px;
  width: 14px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 15;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  margin-top: auto;
}
.footer a {
  color: var(--text);
}
.footer a:hover {
  color: var(--brand-color-primary);
}
.footer .h4 {
  margin-bottom: 30px;
}
.footer__box {
  margin-bottom: 30px;
}
.footer .ftr-portal-pic-wrap {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer .ftr-portal-pic-wrap {
    text-align: left;
  }
}
.footer .ftr-portal-pic-wrap img {
  max-height: 200px;
  border-radius: var(--border-radius);
}
.footer__top ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.footer__top ul li {
  margin: 3px 0;
}
.footer__logo {
  margin-bottom: 30px;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}
.footer__logo img,
.footer__logo svg {
  height: 100px;
}
.footer__social {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer__social {
    margin: 0 auto;
  }
}
.footer__social ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}
.footer__social ul li a {
  color: var(--color-white);
  display: block;
  width: 38px;
  height: 38px;
  font-size: 0;
  padding: 0;
  background: var(--brand-color-primary);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__social ul li a:after {
  content: "";
  height: 18px;
  width: 18px;
  display: inline-block;
  background-size: cover;
  background-position: center;
}
.footer__social ul li a svg {
  height: 18px;
  width: 18px;
  fill: var(--color-white);
}
.footer__social ul li a[href*="facebook.com"] {
  background: #4267b2;
}
.footer__social ul li a[href*="facebook.com"]:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 512 512"><path d="m374.244 285.825 14.105-91.961h-88.233v-59.677c0-25.159 12.325-49.682 51.845-49.682h40.116V6.214S355.67 0 320.864 0c-72.67 0-120.165 44.042-120.165 123.775v70.089h-80.777v91.961h80.777v222.31A320.565 320.565 0 0 0 250.408 512c16.911 0 33.511-1.324 49.708-3.865v-222.31h74.128Z" /></svg>');
}
.footer__social ul li a[href*="twitter.com"], .footer__social ul li a[href*="x.com"] {
  background: #000;
}
.footer__social ul li a[href*="twitter.com"]:after, .footer__social ul li a[href*="x.com"]:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M14.095 10.316 22.286 1h-1.94L13.23 9.088 7.551 1H1l8.59 12.231L1 23h1.94l7.51-8.543L16.45 23H23l-8.905-12.684zm-2.658 3.022-.872-1.218L3.64 2.432h2.98l5.59 7.821.869 1.219 7.265 10.166h-2.982l-5.926-8.3z" /></svg>');
}
.footer__social ul li a[href*="linkedin.com"] {
  background: #007bb6;
}
.footer__social ul li a[href*="linkedin.com"]:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" width="256" height="256" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M20 20h-4v-6.999c0-1.92-.847-2.991-2.366-2.991-1.653 0-2.634 1.116-2.634 2.991V20H7V7h4v1.462s1.255-2.202 4.083-2.202C17.912 6.26 20 7.986 20 11.558V20ZM2.442 4.921A2.451 2.451 0 0 1 0 2.46 2.451 2.451 0 0 1 2.442 0a2.451 2.451 0 0 1 2.441 2.46 2.45 2.45 0 0 1-2.441 2.461ZM0 20h5V7H0v13Z"/></svg>');
}
.footer__social ul li a[href*="instagram.com"] {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.footer__social ul li a[href*="instagram.com"]:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 256 256"><path d="M128 23.064c34.177 0 38.225.13 51.722.745 12.48.57 19.258 2.655 23.769 4.408 5.974 2.322 10.238 5.096 14.717 9.575 4.48 4.479 7.253 8.743 9.575 14.717 1.753 4.511 3.838 11.289 4.408 23.768.615 13.498.745 17.546.745 51.723 0 34.178-.13 38.226-.745 51.723-.57 12.48-2.655 19.257-4.408 23.768-2.322 5.974-5.096 10.239-9.575 14.718-4.479 4.479-8.743 7.253-14.717 9.574-4.511 1.753-11.289 3.839-23.769 4.408-13.495.616-17.543.746-51.722.746-34.18 0-38.228-.13-51.723-.746-12.48-.57-19.257-2.655-23.768-4.408-5.974-2.321-10.239-5.095-14.718-9.574-4.479-4.48-7.253-8.744-9.574-14.718-1.753-4.51-3.839-11.288-4.408-23.768-.616-13.497-.746-17.545-.746-51.723 0-34.177.13-38.225.746-51.722.57-12.48 2.655-19.258 4.408-23.769 2.321-5.974 5.095-10.238 9.574-14.717 4.48-4.48 8.744-7.253 14.718-9.575 4.51-1.753 11.288-3.838 23.768-4.408 13.497-.615 17.545-.745 51.723-.745M128 0C93.237 0 88.878.147 75.226.77c-13.625.622-22.93 2.786-31.071 5.95-8.418 3.271-15.556 7.648-22.672 14.764C14.367 28.6 9.991 35.738 6.72 44.155 3.555 52.297 1.392 61.602.77 75.226.147 88.878 0 93.237 0 128c0 34.763.147 39.122.77 52.774.622 13.625 2.785 22.93 5.95 31.071 3.27 8.417 7.647 15.556 14.763 22.672 7.116 7.116 14.254 11.492 22.672 14.763 8.142 3.165 17.446 5.328 31.07 5.95 13.653.623 18.012.77 52.775.77s39.122-.147 52.774-.77c13.624-.622 22.929-2.785 31.07-5.95 8.418-3.27 15.556-7.647 22.672-14.763 7.116-7.116 11.493-14.254 14.764-22.672 3.164-8.142 5.328-17.446 5.95-31.07.623-13.653.77-18.012.77-52.775s-.147-39.122-.77-52.774c-.622-13.624-2.786-22.929-5.95-31.07-3.271-8.418-7.648-15.556-14.764-22.672C227.4 14.368 220.262 9.99 211.845 6.72c-8.142-3.164-17.447-5.328-31.071-5.95C167.122.147 162.763 0 128 0Zm0 62.27C91.698 62.27 62.27 91.7 62.27 128c0 36.302 29.428 65.73 65.73 65.73 36.301 0 65.73-29.428 65.73-65.73 0-36.301-29.429-65.73-65.73-65.73Zm0 108.397c-23.564 0-42.667-19.103-42.667-42.667S104.436 85.333 128 85.333s42.667 19.103 42.667 42.667-19.103 42.667-42.667 42.667Zm83.686-110.994c0 8.484-6.876 15.36-15.36 15.36-8.483 0-15.36-6.876-15.36-15.36 0-8.483 6.877-15.36 15.36-15.36 8.484 0 15.36 6.877 15.36 15.36Z" /></svg>');
}
.footer__social ul li a[href*="pinterest.com"] {
  background: #e60023;
}
.footer__social ul li a[href*="pinterest.com"]:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" width="256" height="256" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M9.876 0C4.399 0 0 4.435 0 9.959c0 4.1 2.407 7.53 5.893 9.12 0-1.867-.013-1.626 1.41-7.699-.782-1.578-.174-4.183 1.577-4.183 2.43 0 .779 3.603.498 5.02-.249 1.088.581 1.925 1.577 1.925 1.909 0 3.153-2.427 3.153-5.271 0-2.176-1.493-3.767-4.066-3.767-4.575 0-5.735 5.096-4.149 6.695.399.604 0 .632 0 1.423-.277.836-2.49-.38-2.49-3.514 0-2.846 2.324-6.193 7.054-6.193 3.734 0 6.224 2.761 6.224 5.69 0 3.933-2.158 6.779-5.311 6.779-1.079 0-2.075-.586-2.407-1.256-.603 2.346-.725 3.535-1.66 4.854.913.25 1.826.418 2.822.418C15.602 20 20 15.565 20 10.042 19.752 4.435 15.353 0 9.876 0"/></svg> ');
}
.footer__social ul li a[href*="youtube.com"] {
  background: #bb0000;
}
.footer__social ul li a[href*="youtube.com"]:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 512 512"><path d="M501.303 132.765c-5.887-22.03-23.235-39.377-45.265-45.265C416.106 76.8 256 76.8 256 76.8s-160.107 0-200.039 10.7c-22.026 5.888-39.377 23.235-45.264 45.265C0 172.693 0 256.003 0 256.003s0 83.308 10.697 123.232c5.887 22.03 23.238 39.382 45.264 45.269C95.893 435.2 256 435.2 256 435.2s160.106 0 200.038-10.696c22.03-5.887 39.378-23.239 45.265-45.269 10.696-39.924 10.696-123.232 10.696-123.232s0-83.31-10.696-123.238ZM204.797 332.804V179.201l133.019 76.802-133.019 76.801Z" /></svg>');
}
.footer__social ul li a[href*="vimeo.com"] {
  background: #17d5ff;
}
.footer__social ul li a[href*="vimeo.com"]:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" width="256" height="256" viewBox="0 -1.5 20 20"><path fill-rule="evenodd" d="M19.99 3.933c-.09 1.912-1.449 4.532-4.079 7.858C13.192 15.264 10.891 17 9.009 17c-1.166 0-2.152-1.06-2.958-3.178L4.437 7.995c-.598-2.12-1.24-3.18-1.927-3.18-.15 0-.673.31-1.569.928L0 4.551a262.93 262.93 0 0 0 2.913-2.56C4.228.87 5.214.282 5.871.223c1.554-.146 2.51.898 2.869 3.134.388 2.415.657 3.915.807 4.504.448 2.001.941 3.002 1.479 3.002.418 0 1.046-.647 1.882-1.943.837-1.295 1.285-2.28 1.345-2.957.119-1.12-.329-1.678-1.345-1.678-.478 0-.971.103-1.479.309.986-3.15 2.869-4.68 5.648-4.591 2.061.059 3.033 1.368 2.913 3.929Z" /></svg>');
}
.footer__social ul li a:hover {
  opacity: 0.7;
}
.footer hr {
  border-color: var(--background-variant);
  border-style: dashed;
}
.footer__copyright {
  font-size: 14px;
}
.footer__copyright .right {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer__copyright .right {
    text-align: left;
    margin-top: 10px;
  }
}
.footer__copyright .dev {
  font-size: 12px;
}
.footer__copyright ul {
  list-style: none;
  margin: 0 0 5px 0;
  padding: 0;
  *zoom: 1;
}
.footer__copyright ul:before, .footer__copyright ul:after {
  content: " ";
  display: table;
}
.footer__copyright ul:after {
  clear: both;
}
.footer__copyright ul li {
  display: inline-block;
}
.footer__copyright ul li:after {
  content: "·";
  margin: 0 3px 0 6px;
}
.footer__copyright ul li:last-child:after {
  display: none;
}
.footer .mls-icons {
  margin: 0;
  display: flex;
  justify-content: right;
}
@media only screen and (max-width: 767px) {
  .footer .mls-icons {
    justify-content: flex-start;
  }
}
.footer .mls-icons li {
  display: inline-block;
  margin-right: 15px;
}
.footer .mls-icons li:after {
  display: none;
}
.footer .mls-icons li:last-child {
  margin-right: 0;
}
.footer .mls-icons li svg {
  fill: var(--text);
  height: 30px;
}

/* ==========================================================================
   Dynamic IDX
   ========================================================================== */
/* Login/Register Modal */
#login-modal .modal-dialog {
  max-width: 600px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #login-modal .modal-dialog {
    max-width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  #login-modal .modal-dialog {
    margin-top: 50px;
  }
}
#login-modal .modal-content {
  border: 0;
  background: var(--background);
  color: var(--text);
}
@media only screen and (max-width: 767px) {
  #login-modal .modal-content div[class*=col-] {
    width: 100% !important;
  }
}
#login-modal .modal-content .modal-header {
  background: none;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  overflow: hidden;
}
#login-modal .modal-content .modal-header .close {
  display: none;
  position: absolute;
  top: -35px;
  width: 100%;
  margin: 0;
  text-shadow: none;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  opacity: 1;
  color: var(--color-white);
}
#login-modal .modal-content .modal-header .close:after {
  content: "Close";
  margin-left: 3px;
}
@media only screen and (max-width: 992px) {
  #login-modal .modal-content .modal-header .close {
    display: block;
  }
}
#login-modal .modal-content .modal-header h4 {
  display: block;
  float: left;
  width: 50%;
  font-size: 16px;
  background: none;
  line-height: 50px;
}
#login-modal .modal-content .modal-header h4.active a {
  background: var(--background);
  color: var(--text);
}
#login-modal .modal-content .modal-header h4 a {
  padding: 0;
  background: var(--brand-color-primary);
  border: 0;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--color-white);
}
#login-modal .modal-content .modal-header h4 a .fa {
  display: none;
}
#login-modal .modal-content .modal-body {
  padding: 20px 20px 5px 20px;
}
#login-modal .modal-content .modal-body .row {
  margin-left: -5px;
  margin-right: -5px;
}
#login-modal .modal-content .modal-body .row div[class*=col-] {
  padding-left: 5px;
  padding-right: 5px;
}
#login-modal .modal-content .modal-footer {
  padding: 0px 20px 10px 20px;
  border: 0;
  text-align: center;
  position: relative;
}
#login-modal .modal-content .modal-footer .btn {
  padding: 0;
  border: 0;
}
#login-modal .modal-content .modal-footer .btn[data-dismiss=modal] {
  background: none;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 16px 0 8px 0;
  margin: 0 auto;
  color: var(--color-white);
}
@media only screen and (max-width: 992px) {
  #login-modal .modal-content .modal-footer .btn[data-dismiss=modal] {
    display: none;
  }
}
#login-modal .modal-content .modal-footer #login-reg-btns {
  width: 100%;
  float: none;
}
#login-modal .modal-content .modal-footer #login-reg-btns button {
  padding: 12px 20px;
  padding-top: 11px;
  padding-bottom: 11px;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  margin-bottom: 5px;
  border-color: var(--brand-color-primary);
  background: var(--brand-color-primary);
}
#login-modal .modal-content .modal-footer #login-reg-btns button:hover, #login-modal .modal-content .modal-footer #login-reg-btns button:focus {
  opacity: 0.7;
}
#login-modal .modal-content .modal-footer #login-reg-btns a {
  background: none;
  float: none !important;
  margin-left: 0;
  padding: 6px 12px;
  color: var(--text);
  font-size: 12px;
}
#login-modal .modal-content .modal-footer #login-reg-btns a:hover {
  text-decoration: underline;
}
#login-modal .modal-content .modal-footer #login-reg-btns #loginSubmit .fa {
  display: none;
}
#login-modal .modal-content .col-btn {
  float: left;
  display: block;
  width: 50% !important;
}
#login-modal .modal-content .btn-social {
  position: relative;
  z-index: 1;
  text-align: center;
  border: 0;
  padding: 12px 20px;
}
#login-modal .modal-content .btn-social span {
  position: static;
  width: auto;
  border: 0;
  font-size: inherit;
  line-height: inherit;
  margin-right: 10px;
}
#login-modal .modal-content .social-splitter span {
  font-weight: 400;
  color: #999;
  font-size: 14px;
}
#login-modal .modal-content .input-group {
  border-radius: 4px !important;
  width: 100%;
  margin-bottom: 15px;
}
#login-modal .modal-content .input-group .input-group-addon {
  display: none;
  border: 0;
}
#login-modal .modal-content input[type=text],
#login-modal .modal-content input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--color-arsenic);
  border-radius: 4px !important;
  box-shadow: none;
  height: 44px;
  font-size: 16px;
  color: var(--text) !important;
}
#login-modal .modal-content select {
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--color-arsenic);
  height: 44px;
  font-size: 16px;
}
#login-modal .modal-content #UserRegisterForm input[type=text],
#login-modal .modal-content #UserRegisterForm input[type=password] {
  border-radius: 4px !important;
  width: 100%;
  margin-bottom: 15px;
}
#login-modal .modal-content label.checkbox-inline {
  padding: 0;
}
#login-modal .modal-content label.checkbox-inline input {
  outline: none;
  position: relative;
  top: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0 5px 0 0;
  background: var(--background);
  border: 2px solid var(--color-arsenic);
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
#login-modal .modal-content label.checkbox-inline input:checked {
  border-color: var(--brand-color-primary);
}
#login-modal .modal-content label.checkbox-inline input:checked:after {
  font-family: fontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  text-align: center;
  content: "\f00c";
  font-size: 10px;
  line-height: 16px;
  color: var(--brand-color-primary);
}
#login-modal .modal-content .control-label {
  font-weight: 600;
  font-size: 14px;
}
#login-modal .modal-content legend {
  display: none;
  border: 0;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
#login-modal .modal-content p {
  font-size: 14px;
  line-height: 20px;
}

/* Highlight Search Options */
#property_search input:not(:-moz-placeholder-shown), #qs_form input:not(:-moz-placeholder-shown) {
  color: var(--brand-color-primary);
  font-weight: bold;
}
#property_search .ms-choice span:not([class=placeholder]),
#property_search .selectize-input .item[data-value]:not([data-value=""]),
#property_search .select2-container .select2-selection__rendered[title]:not([title*=Any]):not([title="No Preference"]),
#property_search .multiselect.dropdown-toggle[title]:not([title="None selected"]),
#property_search input:not(:placeholder-shown),
#qs_form .ms-choice span:not([class=placeholder]),
#qs_form .selectize-input .item[data-value]:not([data-value=""]),
#qs_form .select2-container .select2-selection__rendered[title]:not([title*=Any]):not([title="No Preference"]),
#qs_form .multiselect.dropdown-toggle[title]:not([title="None selected"]),
#qs_form input:not(:placeholder-shown) {
  color: var(--brand-color-primary);
  font-weight: bold;
}

/* Map Search */
.dynidx-map-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 0 !important;
}
.dynidx-map-fullscreen .dynidx-map-container {
  flex: 1;
  min-height: 1px;
  flex: 1;
}
.dynidx-map-fullscreen .dynidx-map-container .list-view {
  background: var(--background);
}
.dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-list-block {
  background: var(--background-variant-white);
  box-shadow: none;
}
.dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-list-block a.btn {
  color: inherit;
}
.dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-results {
  background: var(--background);
}
.dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-results .dynidx-map-summary {
  border-color: var(--background);
  background: var(--background);
}
.dynidx-map-fullscreen .dynidx-map-container .map-view {
  width: calc(100% - 375px);
}
.dynidx-map-fullscreen .dynidx-map-container .map-view .blockUI.blockOverlay {
  display: none !important;
}
.dynidx-map-fullscreen .dynidx-map-container .list-view {
  width: 375px;
}
@media only screen and (max-width: 767px) {
  .dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-summary .marker-summary {
    margin-top: 30%;
  }
}
.dynidx-map-fullscreen .dynidx-map-container .list-view .br-logo {
  height: 14px;
}
.dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-results .well {
  margin-left: 5px;
}
.dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-results .well .fa {
  font-size: inherit;
}
@media only screen and (min-width: 1680px) {
  .dynidx-map-fullscreen .dynidx-map-container .map-view {
    width: 65%;
  }
  .dynidx-map-fullscreen .dynidx-map-container .list-view {
    width: 35%;
  }
  .dynidx-map-fullscreen .dynidx-map-container .list-view .dynidx-map-summary {
    width: 50%;
    float: left;
  }
}
.dynidx-map-fullscreen .dynidxmap-mobile-bar {
  background: var(--background-variant-white);
  color: inherit;
}
.dynidx-map-fullscreen .dynidxmap-mobile-bar .btn-default {
  color: inherit;
}
.dynidx-map-fullscreen #mapFilterModal .border-between {
  border-color: var(--background-variant-grey-soft);
}
.dynidx-map-fullscreen #mapFilterModal .border-between > [class*=col-]:after,
.dynidx-map-fullscreen #mapFilterModal .border-between > [class*=col-]:before {
  background: var(--background-variant-grey-soft);
}
.dynidx-map-fullscreen #mapFilterModal .modal-footer {
  background: var(--background);
  border-color: var(--background-variant-grey-soft);
}
.dynidx-map-fullscreen .ms-res-item {
  border-right-color: var(--background-variant-grey-soft);
  border-bottom-color: var(--background-variant-grey-soft);
  color: var(--text);
}
.dynidx-map-fullscreen .ms-ctn .ms-sel-ctn input {
  background: var(--background);
}
.dynidx-map-fullscreen .ms-res-ctn .ms-res-item-active {
  background: var(--background-variant-grey-soft);
}
.dynidx-map-fullscreen .dropdown-menu {
  background: var(--background-variant-white);
}
.dynidx-map-fullscreen .school-box {
  background: var(--background);
  color: var(--text);
}
.dynidx-map-fullscreen .ms-choice {
  background: var(--background);
  color: var(--text);
}
.dynidx-map-fullscreen .ms-choice > span.placeholder {
  color: var(--text);
}
.dynidx-map-fullscreen .ms-drop {
  background: var(--background-variant-white);
  color: var(--text);
  border-color: var(--background-variant-grey-soft);
}
.dynidx-map-fullscreen .ms-drop ul > li:hover {
  background: var(--background-variant-grey-soft);
}
.dynidx-map-fullscreen .ms-ctn .ms-trigger {
  border-left: 0;
}
.dynidx-map-fullscreen .ms-ctn .ms-trigger:hover {
  background: var(--background-variant-grey-soft);
  right: 0;
}
.dynidx-map-fullscreen .ms-ctn .ms-trigger .ms-trigger-ico {
  border-top-color: var(--text);
}
.dynidx-map-fullscreen #prop_display {
  padding: 0;
}
.dynidx-map-fullscreen .header {
  position: sticky;
}

/************ Dark Mode ************/
.panel {
  color: var(--color-black);
}
.panel[class*=panelfav_], .panel.panel-savedsearch {
  background: var(--background);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
.panel[class*=panelfav_] .panel-heading, .panel.panel-savedsearch .panel-heading {
  background: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
.panel.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: var(--background);
}
.panel .search-criteria {
  color: inherit;
}
.panel .search-criteria h5 {
  color: inherit;
}
.panel .search-criteria .btn-link {
  color: var(--brand-color-primary);
}
.panel .search-criteria .criteria-item strong,
.panel .search-criteria .criteria-item span {
  color: inherit;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background: var(--background-variant-grey);
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border-color: var(--background-variant-grey-soft);
}

.well {
  background: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
}

.modal {
  color: var(--color-black);
}

body:has([name*=real-estate-listings]) .well {
  background: none;
  box-shadow: none;
  border: 0;
  padding: 0;
}

body:has(div[class*=search-criteria]) .panel {
  color: var(--text);
  background: var(--background-variant-white);
  border-color: var(--background-variant-grey-soft);
}

/* Navigation Tabs */
.nav-tabs {
  border-color: var(--background-variant-grey-soft);
}
.nav-tabs li.active a {
  background: var(--background-variant-white);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
.nav-tabs li a {
  border-bottom: none !important;
}
.nav-tabs li a:hover {
  background: var(--background-variant-white);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}

/* Forms */
.form-control {
  background-color: var(--background);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}

.input-group-addon {
  background-color: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}

/* Blog Pager */
.pager li a:hover, .pager li a:focus {
  color: var(--color-black);
}

.popover {
  color: var(--color-black);
}

/* Modal Pop-out */
.modal {
  color: var(--text);
}
.modal .modal-header .close {
  color: var(--text);
  opacity: 1;
}
.modal .modal-header h4 {
  color: var(--text);
  font-weight: 700;
}
.modal .modal-header,
.modal .modal-footer {
  border-color: var(--background-variant-grey-soft);
}
.modal .modal-content {
  background: var(--background);
}

/* Page Comments */
.comment {
  border-color: var(--background-variant-grey-soft);
}
.comment .whowhen {
  border-color: var(--background-variant-grey-soft) !important;
}

#property_search .panel {
  background: none;
  border-color: var(--background-variant-grey-soft);
}
#property_search .panel .panel-heading {
  background-color: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
}
#property_search .panel .panel-title {
  color: var(--text);
}
#property_search .input-group-addon,
#property_search .select2-selection {
  background-color: var(--background);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
#property_search .input-group-addon {
  position: relative;
  left: -1px;
}
#property_search .selectize-dropdown {
  background-color: var(--background-variant-white);
}
#property_search .selectize-dropdown .active {
  background-color: var(--background-variant-grey-soft);
  color: var(--text);
}
#property_search .select2-selection__rendered {
  color: var(--text);
}
#property_search *::-moz-placeholder {
  color: var(--text);
}
#property_search *::placeholder {
  color: var(--text);
}
#property_search .selectize-control.single .selectize-input.input-active,
#property_search .selectize-input {
  background-color: var(--background);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
  caret-color: var(--text);
}
#property_search .selectize-control {
  border-radius: 4px;
}
#property_search .selectize-control.single .selectize-input:after {
  border-color: var(--text) transparent transparent transparent;
}
#property_search .btn-group label {
  color: var(--text);
}
#property_search .btn-group .btn {
  background-color: var(--background);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
#property_search .btn-group .btn.btn-primary {
  background-color: var(--brand-color-primary);
}
#property_search .btn-group .dropdown-menu {
  background-color: var(--background-variant-white);
}
#property_search .btn-group .dropdown-menu > .active > a {
  background-color: var(--background-variant-grey-soft);
}
#property_search .btn-group .dropdown-menu > .active > a:focus, #property_search .btn-group .dropdown-menu > .active > a:hover {
  background-color: var(--background-variant-grey);
}
#property_search .btn-group .dropdown-menu a:focus, #property_search .btn-group .dropdown-menu a:hover {
  background-color: var(--background-variant-grey-soft);
}
#property_search .form-group label {
  color: var(--text);
}
#property_search .has-error .help-block,
#property_search .has-error .help-inline {
  color: red;
}
#property_search .ms-res-item {
  border-right-color: var(--background-variant-grey-soft);
  border-bottom-color: var(--background-variant-grey-soft);
  color: var(--text);
}
#property_search .ms-ctn .ms-sel-ctn input {
  background: var(--background);
}
#property_search .ms-res-ctn .ms-res-item-active {
  background: var(--background-variant-grey-soft);
}
#property_search .dropdown-menu {
  background: var(--background-variant-white);
}
#property_search .school-box {
  background: var(--background);
  color: var(--text);
}
#property_search .ms-choice {
  background: var(--background);
  color: var(--text);
}
#property_search .ms-choice > span.placeholder {
  color: var(--text);
}
#property_search .ms-drop {
  background: var(--background-variant-white);
  color: var(--text);
  border-color: var(--background-variant-grey-soft);
}
#property_search .ms-drop ul > li:hover {
  background: var(--background-variant-grey-soft);
}
#property_search .ms-ctn .ms-trigger {
  border-left: 0;
}
#property_search .ms-ctn .ms-trigger:hover {
  background: var(--background-variant-grey-soft);
  right: 0;
}
#property_search .ms-ctn .ms-trigger .ms-trigger-ico {
  border-top-color: var(--text);
}

#property_search .select2-dropdown {
  background: var(--background-variant-grey);
}
#property_search .select2-results__option {
  color: var(--text);
}
#property_search .select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
  color: var(--text);
}
#property_search .select2-container--bootstrap .select2-results__group {
  color: var(--text);
}
#property_search .select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  background: var(--background-variant);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
#property_search .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-color: var(--text) transparent transparent transparent;
}
#property_search .select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent var(--text) transparent;
}
.select2-container--bootstrap .select2-dropdown {
  border-color: var(--background-variant-grey-soft);
  background: var(--background);
}
.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  background: var(--background-variant-grey-soft);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}

.select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background: var(--background-variant-grey-soft);
  color: var(--text);
}

/* Custom Drop */
.customdrop {
  background: var(--background-variant-grey);
}
.customdrop .select2-results__option {
  color: var(--text);
}
.customdrop .select2-selection--single .select2-selection__placeholder {
  color: var(--text);
}
.customdrop .select2-results__group {
  color: var(--text);
}
.customdrop .select2-search--dropdown .select2-search__field {
  background: var(--background-variant);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
.customdrop .select2-selection--single .select2-selection__arrow b {
  border-color: var(--text) transparent transparent transparent;
}


/* Search Pages Search Box */
.searchPages {
  color: var(--color-black);
}
.searchPages a {
  color: var(--color-black);
  transition: 0s;
}
.searchPages a:hover {
  color: var(--color-white);
}
.searchPages .select2-results__option {
  color: var(--color-black);
  transition: 0s;
  margin-left: 0 !important;
  padding: 0 !important;
}
.searchPages .result_title,
.searchPages small {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 6px 12px;
}
.searchPages .select2-results__option--highlighted {
  background: inherit !important;
  color: inherit !important;
}
.searchPages .select2-results__option--highlighted:hover {
  background: #337ab7 !important;
  color: var(--color-white) !important;
}
.searchPages .select2-results__group {
  padding: 0 !important;
}
.searchPages .select2-results__group a {
  padding: 6px 12px;
}
.searchPages .select2-results__group a:hover {
  background: #337ab7;
  color: var(--color-white);
}
.searchPages .select2-results__option[aria-selected] {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.searchPages .select2-results__option[aria-selected]:hover {
  background: #337ab7 !important;
  color: var(--color-white) !important;
}
.searchPages .select2-results__option[role=treeitem] {
  padding: 0;
}
.searchPages .select2-results__options--nested {
  margin-left: 12px;
}
.searchPages .select2-results ul ul {
  border-left: 1px dotted var(--color-black);
}

@media only screen and (max-width: 767px) {
  .nav-tabs-small-stack {
    border-width: 0 1px 1px 0;
  }
  .nav-tabs-small-stack li a {
    border-width: 1px 0 0 1px !important;
    border-color: var(--background-variant-grey-soft);
  }
  .nav-tabs-small-stack li.active a {
    background: var(--background-variant-grey);
  }
}
.datepicker {
  color: var(--color-black);
}

#listings .panel {
  background: var(--background-variant-white);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
#listings .listings-count {
  color: inherit;
}
#listings .myrsol-listing-btns {
  background: none;
  padding: 5px 0;
}
#listings #mapWrap {
  background: none;
  border: 0;
}
#listings .listings-wrap.row {
  margin-left: -10px;
  margin-right: -10px;
}
#listings .listings-wrap.row > div[class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}
#listings .myrsol-idx-summary {
  background: none;
  color: inherit;
  margin-bottom: 20px;
}
#listings .myrsol-idx-summary .summary-top {
  background: var(--background-variant-white);
  color: inherit;
  border-radius: 4px;
  border-color: var(--background-variant-grey-soft);
}
#listings .myrsol-idx-summary .fav-block {
  border-color: transparent transparent var(--background-variant-grey-soft) transparent;
}
#listings .myrsol-idx-summary .summary-img {
  background: none;
  border: 0;
}
#listings .myrsol-idx-summary h3 a {
  color: var(--text) !important;
}
#listings .myrsol-idx-summary h3 a:hover {
  color: var(--brand-color-primary) !important;
}
#listings .myrsol-idx-summary h3 small {
  color: var(--text);
}
#listings .myrsol-idx-summary .summary-details {
  color: inherit;
}
#listings .myrsol-idx-summary .text-info {
  color: var(--text);
  font-weight: 700;
}
#listings .myrsol-idx-summary .summary-price-wrapper .s-price {
  color: inherit;
}

.btm-pagination {
  background: none;
}

.didx-listing__gallery {
  background: var(--background);
}
.didx-listing__details ul li {
  background: var(--background-variant-grey);
}
.didx-listing__favorite .fav-prop {
  color: var(--text);
}
.didx-listing__favorite .fav-prop--remove {
  color: red;
}

.listings_view .remarks p {
  color: var(--text);
}
.listings_view p.agent-office {
  border-color: var(--background-variant-grey-soft);
}
.listings_view .share-btn-group span {
  background: var(--color-white);
  color: var(--color-black);
}
.listings_view .details-onecol-grouped {
  margin-bottom: 10px;
}
.listings_view .details-onecol-grouped h4,
.listings_view .details-onecol-grouped p,
.listings_view .details-onecol-grouped p strong {
  color: inherit;
  border-color: inherit;
}
.listings_view .details-onecol-grouped h4 {
  border-bottom: 2px solid var(--text);
  display: inline-block;
  margin-bottom: 10px;
}
.listings_view .details-onecol-grouped p {
  font-weight: 700;
}
.listings_view .details-onecol-grouped p:last-of-type {
  border-bottom: 0;
}
.listings_view .details-onecol-grouped p strong {
  font-weight: normal;
  margin-right: 5px;
}
.listings_view .mortgage-embed h4.mortgage-title {
  border-bottom: 0;
}
.listings_view .mortgage-embed .mortgage-results {
  background: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
  border-radius: var(--border-radius);
}
.listings_view .mortgage-embed .mortgage-results .mortgage-monthly {
  border: 0;
  color: var(--brand-color-primary);
}
.listings_view #g-map #mapDirections {
  background: var(--background-variant-grey);
}
.listings_view #g-map #directionsPanel .adp,
.listings_view #g-map #directionsPanel .adp table,
.listings_view #g-map #directionsPanel .adp button {
  color: var(--text);
}
.listings_view #g-map #directionsPanel .adp-listsel {
  background: var(--background-variant-grey);
}
.listings_view #g-map #directionsPanel .adp-placemark {
  background: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
}
.listings_view #g-map #directionsPanel img.adp-marker2 {
  height: 18px;
  margin: 5px;
}
.listings_view #g-map #directionsPanel .adp-step,
.listings_view #g-map #directionsPanel .adp-substep {
  border-color: var(--background-variant-grey-soft);
}
.listings_view #g-map #directionsPanel .adp-substep .adp-stepicon .adp-maneuver {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(297deg) brightness(100%) contrast(30%);
}
.listings_view .listings_tabs .text-danger {
  color: red;
}
.listings_view .listings_tabs .tab-content {
  background: none;
  border: 0;
  padding: 0;
  margin-top: 20px;
}
.listings_view .myrsol-property-history .panel {
  background: none;
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
.listings_view .myrsol-property-history .panel .panel-heading {
  background-color: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
}
.listings_view .myrsol-property-history .panel .panel-title {
  color: var(--text);
}
.listings_view .myrsol-property-history .panel .table {
  border-top-color: var(--background-variant-grey-soft);
}
.listings_view .myrsol-property-history .panel .table th,
.listings_view .myrsol-property-history .panel .table td {
  border-color: var(--background-variant-grey-soft);
}
.listings_view .related-listings .panel,
.listings_view .nearby-listings .panel {
  background: none;
  border: 0;
  box-shadow: none;
}
.listings_view .related-listings .panel .panel-heading,
.listings_view .nearby-listings .panel .panel-heading {
  padding: 10px 0;
  border: 0;
  background: none;
  color: var(--text);
}
.listings_view .related-listings .panel .panel-body,
.listings_view .nearby-listings .panel .panel-body {
  padding: 0;
}
.listings_view .related-listings .row,
.listings_view .nearby-listings .row {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.listings_view .related-listings .row:before, .listings_view .related-listings .row:after,
.listings_view .nearby-listings .row:before,
.listings_view .nearby-listings .row:after {
  display: none;
}
.listings_view .related-listings .row div[class*=col-],
.listings_view .nearby-listings .row div[class*=col-] {
  display: flex;
  padding: 0 5px;
  box-sizing: border-box;
}
.listings_view .related-listings .related-container,
.listings_view .nearby-listings .related-container {
  position: relative;
  color: var(--text);
  border-color: var(--background-variant-grey-soft);
  background: var(--background-variant-grey);
  margin: 0 0 10px 0;
}
.listings_view .related-listings .related-container .text-info,
.listings_view .related-listings .related-container .text-primary,
.listings_view .nearby-listings .related-container .text-info,
.listings_view .nearby-listings .related-container .text-primary {
  color: var(--text);
}
.listings_view .related-listings .related-container .related-disclaimer-block,
.listings_view .nearby-listings .related-container .related-disclaimer-block {
  display: block;
  padding: 0px 8px 8px 12px;
  margin-left: 100px;
  margin-right: 40px;
}
.listings_view .related-listings .related-container .related-disclaimer-block .related-disclaimer,
.listings_view .nearby-listings .related-container .related-disclaimer-block .related-disclaimer {
  color: var(--text);
  padding: 0;
  clear: none;
}
.listings_view .related-listings .related-container .nearby-price,
.listings_view .nearby-listings .related-container .nearby-price {
  font-size: 15px;
}
.listings_view .related-listings .related-container .related-link,
.listings_view .nearby-listings .related-container .related-link {
  padding: 0;
  height: 100%;
}
.listings_view .related-listings .related-container .related-link img,
.listings_view .nearby-listings .related-container .related-link img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%; /* Ensures responsiveness */
  height: 100%;
}
.listings_view .related-listings .related-container .media-body,
.listings_view .nearby-listings .related-container .media-body {
  position: static;
  color: inherit;
  padding: 8px 8px 0 12px;
}
.listings_view .related-listings .related-container .related-details,
.listings_view .nearby-listings .related-container .related-details {
  border-color: transparent transparent var(--background-variant-grey-soft);
}
.listings_view .related-listings .related-container .related-details i,
.listings_view .nearby-listings .related-container .related-details i {
  color: inherit;
}
.listings_view .related-listings .related-container .related-disclaimer,
.listings_view .nearby-listings .related-container .related-disclaimer {
  background: var(--background-variant-grey);
}
.listings_view .myrsol-idx-details,
.listings_view .myrsol-idx-details .myrsol-idx-stat,
.listings_view ul.myrsol-view-list-a,
.listings_view ul.myrsol-view-list-a li {
  border-color: var(--background-variant-grey-soft);
}
/* Royal Slider */
.rsDefaultInv, .rsDefaultInv .rsOverflow, .rsDefaultInv .rsSlide, .rsDefaultInv .rsThumbs, .rsDefaultInv .rsVideoFrameHolder {
  background: var(--background);
}
/* Agents */
.agent-block {
  background: var(--background-variant-white);
  border-color: var(--background-variant-grey-soft);
  color: var(--text);
  border-radius: 4px;
}
.agent-block:hover {
  background: var(--background-variant-white);
}
.agent-block .agent-email {
  color: inherit !important;
}
.agent-block .agent-group-heading {
  border-color: var(--background-variant-grey-soft);
}

#agentView .agent-view-summary .summary-top {
  background: none;
}
#agentView .agent-view-summary .summary-top .summary-img a {
  background: var(--background-variant-grey);
  color: inherit;
}

#blogs_index .blog-info {
  font-size: 14px;
  line-height: inherit;
}
#blogs_index .blog-info .blog-date {
  background: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  color: inherit;
  line-height: inherit;
  font-size: 13px;
  padding: 10px 0 5px 0;
}
#blogs_index .blog-info .blog-date span {
  color: inherit;
  font-size: 18px;
  padding: 0;
}
#blogs_index .blog-info .blog-time {
  background: var(--background-variant-grey);
  border-color: var(--background-variant-grey-soft);
  border-radius: 0 0 10px 10px;
  color: inherit;
  font-size: inherit;
  padding: 5px 0 10px 0;
}
#blogs_index .blog-body h2 {
  color: var(--text);
}
#blogs_index .socialbtm a {
  color: var(--text);
}
#blogs_index .socialbtm a:hover, #blogs_index .socialbtm a:focus {
  color: var(--brand-color-primary);
}

.alert-info {
  background-color: var(--background-variant);
  border-color: var(--background-variant);
  color: var(--text);
}
.alert-info hr {
  border-color: var(--background-variant);
}
.alert-info.alert-link {
  color: var(--brand-color-primary);
}

.help-block,
.help-inline {
  color: var(--text);
}

.btn-link {
  color: var(--brand-color-primary);
}

/* Misc */
.social-splitter span {
  background: var(--background);
}

.br-logo,
.vmid {
  height: 14px;
  background: var(--color-white);
}

.panel-default {
  border-color: var(--background-variant-grey);
}

.panel-default > .panel-heading {
  background-color: var(--background-variant-grey);
  border-color: var(--background);
  color: var(--text);
}

.panel {
  background-color: var(--background);
  color: var(--text);
}

.table-hover > tbody > tr:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.breadcrumb {
  background: var(--background-variant-grey);
}
.breadcrumb > .active {
  color: var(--text);
}


/* Dark Mode */
.darkmode__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  padding: 6px 12px;
  background: none;
  color: var(--text);
  font-size: 16px;
  border-radius: 4px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-color: var(--background-variant-grey-soft);
}
.darkmode__toggle:focus {
  border-color: var(--text);
}
.darkmode__toggle:before {
  content: "";
  background-image: var(--dark-mode-toggle);
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  margin-right: 3px;
}
.darkmode__dropdown {
  position: relative;
}
.darkmode__dropdown .darkmode__toggle {
  height: auto;
  width: auto;
}
.darkmode__dropdown .darkmode__toggle:hover {
  background: var(--background-variant);
}
.darkmode__dropdown--menu {
  position: absolute;
  z-index: 9999;
  display: none;
  margin: 5px 0 0 0;
  padding: 10px;
  list-style: none;
  background: var(--background);
  border-radius: 4px;
  width: -moz-max-content;
  width: max-content;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  border: 1px solid var(--background-variant-grey-soft);
}
.darkmode__dropdown--menu button {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  padding: 6px 12px;
  background: none;
  color: var(--text);
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}
.darkmode__dropdown--menu button.active {
  border-color: var(--text);
  background: var(--background);
}
.darkmode__dropdown--menu button:hover {
  background: var(--background-variant-grey);
}
.darkmode__dropdown--menu button.darkmode-light:before {
  background-image: var(--dark-mode-toggle-light);
}
.darkmode__dropdown--menu button.darkmode-dark:before {
  background-image: var(--dark-mode-toggle-dark);
}
.darkmode__dropdown--menu button.darkmode-system:before {
  background-image: var(--dark-mode-toggle-system);
}
.darkmode__dropdown--menu button:before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  margin-right: 3px;
}
.darkmode--open {
  display: block;
}


/* ==========================================================================
   Plugins
   ========================================================================== */
/* Slick Slider JS */
.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}


/* Content Blocks */
.content-blocks {
  margin: 15px 0;
}

.content-blocks [class*=col-] {
  display: flex;
  margin: 15px 0;
}

.content-blocks [class*=col-]:first-child {
  margin-bottom: 5px;
}

.content-blocks__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.content-blocks__image img {
  width: 100%;
  height: auto;
}

.content-blocks__image--rounded img {
  border-radius: var(--border-radius);
}
.content-blocks__image--shadow img {
  box-shadow: var(--box-shadow);
}

.content-blocks__flex {
  display: flex;
  flex-wrap: wrap;
}

.content-blocks__flex--top {
  justify-content: flex-start !important;
}

@media only screen and (max-width: 767px) {
  .content-blocks__flex--mobile-reverse {
    flex-direction: column-reverse;
  }
}
.content-blocks__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Listing Tags */
.didx-listing__remarks .enhanced-title {
  display: none;
}
.didx-listing__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.didx-listing__tags li {
  border-radius: var(--border-radius);
  padding: 2px 8px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--background-variant);
  color: var(--text);
}




/* Referral System */
#PartnerFilter + .select2-container--bootstrap .select2-selection {
  background: none;
}
#PartnerFilter + .select2-container--bootstrap .select2-selection--single .select2-selection__placeholder,
#PartnerFilter + .select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: var(--text);
}

/* Referral Listings */
.referral-carousel {
  background: var(--background-variant-grey) !important;
  border: 1px solid var(--background-variant-grey-soft) !important;
  border-radius: var(--border-radius);
  text-align: center;
  overflow: hidden;
}
.referral-carousel img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 10px;
}
.referral-carousel h4 {
  background: var(--background-variant-grey-soft);
  padding: 15px 0;
  margin: 0 0 20px 0;
}
.referral-carousel .referral-caption > strong {
  display: block;
}
.referral-carousel .carousel-control {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 1;
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .referral-carousel .carousel-control {
    width: auto;
  }
}
.referral-carousel .carousel-control svg {
  background: var(--color-white);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  height: 60px;
  width: 60px;
  padding: 18px;
  border-radius: 50%;
  fill: var(--color-black);
  transition: var(--animation-speed);
}
@media only screen and (max-width: 767px) {
  .referral-carousel .carousel-control svg {
    width: 40px;
    height: 40px;
    padding: 15px;
  }
}
.referral-carousel .carousel-control svg:hover {
  fill: var(--color-white);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  background: var(--brand-color-primary);
}
.referral-carousel .glyphicon:before {
  display: none;
}