/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* CODESTITCH STYLES, RESET, HEADER/NAVIGATION AND FOOTER */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0rem) {
  button{
    background-color: #1654e5;
    border: none;
    padding: 7px 10px;
    color: white;
    font-family: inherit;
  }
  :root {
    --primary: #00bdff;
    --primaryLight: #67d6ff;
    --secondary: #001f3f;
    --secondaryLight: #001f3f;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  .cs-topper {
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--primary);
    text-align: inherit;
  }
  .cs-title {
    position: relative;
    margin: 0 0 1rem 0;
    max-width: 43.75rem;
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
    text-align: inherit;
  }
  .cs-text {
    margin: 0;
    max-width: 40.625rem;
    width: 100%;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    text-align: inherit;
  }
  .cs-button-solid {
    border-radius: 8px;
    z-index: 1;
    position: relative;
    display: inline-block;
    background-color: var(--primary);
    width: auto;
    padding: 0 1.875rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 3.125em;
    font-weight: bold;
    color: #000;
    transition: color 0.3s;
    transition-delay: 0.1s;
    text-align: center;
  }
  .cs-button-solid:hover {
    color: #fff;
  }
  .cs-button-solid:hover:before {
    width: 100%;
  }
  .cs-button-solid:before {
    border-radius: 8px;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background-color: #000;
    height: 100%;
    width: 0;
    transition: width 0.3s;
  }
  .cs-hide-on-mobile {
    display: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .cs-hide-on-mobile {
    display: block;
  }
  .cs-hide-on-desktop {
    display: none;
  }
}
/* Fonts and general styles */
@media only screen and (min-width: 0rem) {
  body{
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 100%;
    color: var(--bodyTextColor);
  }
  html {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 100%;
    color: var(--bodyTextColor);
  }
  *,
  *:before,
  *:after {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  body {
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  .container {
    position: relative;
    margin: auto;
    width: 92%;
  }

  h3{
    font-size: 1.75rem;
    margin: 0;
    
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--headerColor);
    font-weight: bold;
    unicode-bidi: isolate;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  h1,
  h2,
  h4,
  h5,
  h6 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: var(--headerColor);
  }
  p,
  li,
  a {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5em;
  }
  p,
  li {
    color: #353535;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .skip {
    z-index: -1111111;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
}
  
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    margin: 0;
    padding: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 3000px) {
  body,
  html {
    font-size: 0.55vw;
  }
}
/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
    opacity: 0;
    transform: translate(-50%, -150%);
    fill: #fff;
  }
  #dark-mode-toggle {
    z-index: 1000;
    position: absolute;
    top: 0.625rem;
    right: 4.375rem;
    display: block;
    border: none;
    background: transparent;
    height: 3rem;
    width: 3rem;
    overflow: hidden;
    padding: 0;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1.25rem;
    width: 1.25rem;
    pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
  }
  #dark-mode-toggle .cs-sun {
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, 100%);
    transition: transform 0.3s, opacity 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #dark-mode-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0;
  }
  #dark-mode-toggle:hover {
    cursor: pointer;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: #fff;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem calc(16 / 16 * 1rem);
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: "Montserrat", sans-serif;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  #cs-navigation .cs-logo {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0 0;
    height: 100%;
    max-width: 9.125rem;
    width: 40%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
    /* places the image to the left edge of the parent */
    object-position: left;
  }
  #cs-navigation .cs-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0.25rem;
    margin: 0 0 0 auto;
    background-color: transparent;
    height: clamp(2.75rem, 6vw, 3rem);
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    position: relative;
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
  }
  #cs-navigation .cs-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: #1a1a1a;
    height: 2px;
    width: 100%;
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    z-index: -1;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    transition: transform 0.4s, opacity 0.3s;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transform-origin: top right;
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    height: 65vh;
    min-width: 40%;
    width: auto;
    overflow: scroll;
    /* 28px - 40px */
    padding: 3rem clamp(1.75rem, 3vw, 2.5rem) calc(32 / 16 * 1rem) calc(70 / 16 * 1rem);
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    opacity: 0;
    /* transition from these values */
    transform: translateX(calc(-40 / 16 * 1rem));
    margin-right: 0;
    width: 100%;
    list-style: none;
    transition: transform 0.6s, opacity 0.9s;
    text-align: right;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    color: var(--headerColor);
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: calc(-2 / 16 * 1rem);
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: none;
    background: currentColor;
    height: 1px;
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-button-solid {
    border-radius: 8px;
    display: none;
  }
  #cs-navigation:before {
    z-index: -11;
    position: absolute;
    top: 100%;
    right: 0;
    /* black blurred overlay */
    content: "";
    opacity: 0;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 0%;
    transition: width 0.5s, opacity 0.3s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
    transition-delay: 0.2s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateX(0);
  }
  #cs-navigation.cs-active:before {
    opacity: 1;
    width: 100%;
  }
}
/* Dark Mode */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it white */
    filter: invert(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-line {
    background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-ul-wrapper {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    margin: 0.75rem 0 0 0;
    height: auto;
    padding: 1.5rem;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    position: absolute;
    top: 50%;
    right: calc(-20 / 16 * 1rem);
    transform: translateY(-50%);
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    background-color: var(--primary);
    height: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 1.5rem 0 calc(24 / 16 * 1rem);
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, transform 0.3s, visibility 0.3s;
    gap: 0.75rem;
    transform-origin: top right;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    text-align: inherit;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active,
  #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul,
  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li,
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    display: inline-block;
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    z-index: -100;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    border-bottom: 5px solid var(--primary);
    margin: 0;
    background-color: #fff;
    min-width: 12.5rem;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    opacity: 0;
    transform: translateY(calc(-10 / 16 * 1rem));
    display: block;
    height: auto;
    width: 100%;
    list-style: none;
    text-decoration: none;
    font-size: 1rem;
    color: var(--bodyTextColor);
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    display: block;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link.cs-drop-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cs-navigation .cs-drop-ul {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-drop-icon {
    /* turns it white */
    filter: invert(1) brightness(1000%);
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: #fff;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: "Montserrat", sans-serif;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    height: 4.0625rem;
    max-width: 21.875rem;
    width: 18.4%;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 0;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    padding: 2rem 0;
    list-style: none;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: block;
    margin: 0;
    text-decoration: none;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: 0rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 2px;
    width: 0%;
    transition: width 0.3s;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 64rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it turn white */
    filter: invert(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link:before {
    background-color: var(--primaryLight);
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #int-hero {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding-top: 3.125rem;
  }
  #int-hero picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    position: relative;
    margin: 0 auto;
    margin-top: 4.375rem;
    margin-bottom: 1.875rem;
    max-width: 31.25rem;
    width: 96%;
    font-size: 2.13333333rem;
    color: #fff;
    text-align: center;
  }
  #int-hero p {
    display: block;
    margin: auto;
    margin-bottom: 1.875rem;
    max-width: 25rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #int-hero:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #int-hero {
    font-size: 100%;
  }
  #int-hero h1 {
    font-size: 4rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #int-hero {
    background-attachment: fixed;
    min-height: 18.75rem;
    height: auto;
    padding-top: 11.25rem;
    font-size: inherit;
    padding-block-end: 6.25rem;
  }
}
/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #cta {
    position: relative;
    padding: 3.125rem 0;
  }
  #cta .container {
    text-align: center;
  }
  #cta picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #cta picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #cta .title {
    position: relative;
    margin-bottom: 2.25rem;
    font-size: min(9vw, 3rem);
    line-height: 1.20833333em;
    font-weight: 900;
    color: #fff;
    text-align: center;
  }
  #cta p {
    opacity: 1;
    margin: auto;
    margin-bottom: 2.25rem;
    max-width: 37.375rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #cta:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #cta {
    padding: 10.5rem 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25rem;
  }
  #cta .container {
    margin: auto;
    width: 90.0625%;
  }
  #cta picture {
    left: 50%;
    transform: translateX(-50%);
    width: 90.0625%;
  }
  #cta picture:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
  #cta:before {
    display: none;
  }
  #cta:after {
    z-index: -3;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    opacity: 1;
    transform: translateX(-50%);
    display: block;
    background: url("/assets/svgs/cta-squares.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 69.25rem;
    width: 125rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cta:after {
    display: none;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #footer {
    background: #1c1c1c;
    padding: 5.25rem 0 calc(20 / 16 * 1rem);
    font-size: min(4vw, 1.2em);
  }
  #footer .left-section {
    margin: auto;
    margin-bottom: 3.125rem;
    text-align: center;
  }
  #footer .left-section .logo {
    display: inline-block;
    margin: auto;
    margin-bottom: 1.875em;
    height: 4.5rem;
    width: auto;
    text-align: center;
  }
  #footer .left-section .logo img {
    display: block;
    height: 100%;
    width: auto;
  }
  #footer .left-section p {
    opacity: 0.9;
    margin: auto;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.92857143rem;
    color: #fff;
    text-align: center;
  }
  #footer .right-section {
    margin: auto;
    max-width: 25.4375rem;
    width: 96%;
  }
  #footer .right-section .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    max-width: 19.1875rem;
    width: 96%;
  }
  #footer .right-section .lists ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }
  #footer .right-section .lists ul li {
    opacity: 0.9;
    margin-bottom: 0.75rem;
    list-style: none;
    font-size: 1.125rem;
    color: #fff;
  }
  #footer .right-section .lists ul li a {
    text-decoration: none;
    line-height: 1.16666667em;
    color: #fff;
    transition: color 0.3s;
  }
  #footer .right-section .lists ul li a:hover {
    color: var(--primary);
  }
  #footer .right-section .lists ul h2 {
    position: relative;
    margin-bottom: 2.3125rem;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.16666667em;
    font-weight: bold;
    color: #fff;
  }
  #footer .right-section .lists ul h2:before {
    position: absolute;
    bottom: calc(-16 / 16 * 1rem);
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 0.125rem;
    width: 6.0625rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 3.125rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:last-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .buttons {
    display: flex;
    justify-content: center;
  }
  #footer .right-section .cs-button-solid {
    border-radius: 8px;
    margin: 0;
    height: 3.3125rem;
    width: 15.625rem;
    padding-top: 0.1875rem;
  }
  #footer .credit {
    margin: auto;
    margin-top: 6.25rem;
    width: 96%;
    font-size: 1rem;
    line-height: 2.25rem;
    color: #fff;
    text-align: center;
  }
  #footer .credit a {
    text-decoration: none;
    font-size: 1rem;
    color: var(--primary);
  }
  #footer .credit a:hover {
    text-decoration: underline;
  }
  #footer .credit .copyright {
    display: block;
    font-size: 1rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #footer {
    font-size: min(1.2vw, 1em);
  }
  #footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: auto;
    max-width: 82.5rem;
    width: 96%;
    padding: 0;
  }
  #footer .left-section {
    margin: 0;
    width: 25.5625rem;
    text-align: left;
  }
  #footer .left-section .logo {
    margin-left: 0;
    height: 5.5rem;
    text-align: left;
  }
  #footer .left-section p {
    margin-left: 0;
    text-align: left;
  }
  #footer .right-section {
    margin: 0;
    max-width: none;
    width: 38.0625rem;
  }
  #footer .right-section .lists {
    margin: 0;
    max-width: 48.0625rem;
    width: 96%;
  }
  #footer .right-section .lists ul li a {
    position: relative;
  }
  #footer .right-section .lists ul li a:before {
    position: absolute;
    bottom: calc(-3 / 16 * 1rem);
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 0.125rem;
    width: 0%;
    transition: width 0.3s;
  }
  #footer .right-section .lists ul li a:hover:before {
    width: 100%;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 0;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:first-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .buttons {
    justify-content: flex-start;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #footer {
    background: var(--dark);
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1304 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 10;
  }
  #services-1304 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1304 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #services-1304 .cs-title {
    max-width: 20ch;
  }
  #services-1304 .cs-card-group {
    width: 100%;
    max-width: 80rem;
    margin: 0;
    padding: 0 1rem;
    /* prevents padding and border from affecting height and width */
    background-color: #fff;
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
    z-index: 15;
  }
  #services-1304 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    box-sizing: border-box;
    grid-column: span 12;
    transition: background-color 0.3s, border-color 0.3s;
  }
  #services-1304 .cs-item:last-of-type {
    border-bottom: none;
  }
  #services-1304 .cs-link {
    text-decoration: none;
    /* 24px - 60px top & Bottom */
    /* 24px - 16px top & Bottom */
    padding: clamp(1.5rem, 5.3vw, 3.75rem) clamp(1rem, 2.7vw, 2.5rem);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  #services-1304 .cs-icon {
    /* 32px - 40px */
    height: clamp(2rem, 4vw, 2.5rem);
    width: auto;
    margin: 0 0 1rem 0;
  }
  #services-1304 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    text-align: inherit;
    line-height: 1.2em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #services-1304 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s, opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1304 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
  #services-1304 .cs-title {
    margin: 0;
  }
  #services-1304 .cs-flex-group {
    width: 50%;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #services-1304 .cs-item {
    grid-column: span 6;
  }
  #services-1304 .cs-item:nth-of-type(4),
  #services-1304 .cs-item:nth-of-type(8) {
    border-right: none;
  }
  #services-1304 .cs-item:nth-of-type(7),
  #services-1304 .cs-item:nth-of-type(8) {
    border-bottom: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-1304 .cs-card-group {
    padding: 0;
  }
  #services-1304 .cs-item {
    grid-column: span 3;
    border-right: 1px solid #e8e8e8;
  }
  #services-1304 .cs-item:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
  }
  #services-1304 .cs-item:hover .cs-h3,
  #services-1304 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  #services-1304 .cs-item:hover .cs-item-text {
    opacity: 0.8;
  }
  #services-1304 .cs-item:hover .cs-icon {
    filter: invert(1);
  }
  #services-1304 .cs-item:nth-of-type(5),
  #services-1304 .cs-item:nth-of-type(6),
  #services-1304 .cs-item:nth-of-type(7),
  #services-1304 .cs-item:nth-of-type(8) {
    border-bottom: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-1304 .cs-title,
  body.dark-mode #services-1304 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services-1304 .cs-text {
    opacity: 0.8;
  }
  body.dark-mode #services-1304 .cs-card-group {
    background-color: rgba(0, 0, 0, 0.3);
  }
  body.dark-mode #services-1304 .cs-item {
    border-color: rgba(255, 255, 255, 0.1);
  }
  body.dark-mode #services-1304 .cs-item:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.6);
  }
  body.dark-mode #services-1304 .cs-h3,
  body.dark-mode #services-1304 .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services-1304 .cs-item-text {
    opacity: 0.8;
  }
  body.dark-mode #services-1304 .cs-icon {
    filter: invert(1);
  }
}



/* Add this as it's own dark.css file and linked on all pages */
/*-- -------------------------- -->
<---      Core Dark Styles      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  :root {
    --dark: #121212;
    --medium: #282828;
    --accent: #404040;
    --bodyTextColorWhite: #fafbfc;
  }
  body.dark-mode {
    background-color: var(--dark);
  }
  body.dark-mode p,
  body.dark-mode li,
  body.dark-mode h1,
  body.dark-mode h2,
  body.dark-mode h3,
  body.dark-mode h4,
  body.dark-mode h5,
  body.dark-mode h6,
  body.dark-mode .cs-title,
  body.dark-mode .cs-text,
  body.dark-mode .cs-li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode .light {
    display: none;
  }
  body.dark-mode .dark {
    display: block !important;
  }
  .dark {
    /* class used to hide elements that only need to be seen when dark mode is enabled */
    display: none;
  }
}
/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
    transform: translate(-50%, -150%);
    opacity: 0;
  }
  #dark-mode-toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3.75rem;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    overflow: hidden;
    padding: 0;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5625rem;
    height: 1.5625rem;
    pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s, fill 0.3s;
    fill: #000;
  }
  #dark-mode-toggle .cs-sun {
    z-index: 1;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
  }
}
/* Desktop */
@media only screen and (min-width: 64rem) {
  #dark-mode-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-left: 1.875rem;
    margin-bottom: 0rem;
  }

}

#topBar {
  font-family: 'Montserrat';
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 75px;
  width: fit-content;
  padding: 5px;
  gap: 10px 5px;
  margin: auto;
  padding-left: 15px;
  padding: 5px;
  width: 100%;
  border-bottom: 1px solid black;
  background-color: rgba(255, 255, 255, 0.815);
}
.home_user{
  position:absolute;
  right: 1%;
  top: 6rem;
  z-index: 99;
}
@media only screen and (max-width: 1000px) {
  #subject-modal{
    overflow-x: hidden !important;
    margin: 0px;
    width: 100% !important;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */ 
  }
  #subject-modal::-webkit-scrollbar{
    background: transparent;
    /* Chrome/Safari/Webkit */
    width: 0px;
  }
  #searchModal {
    background: #fff;
    width: 95%;
    /* max-width: 1200px; */
    height: 95% !important;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    z-index: 100001;
  }

  .home_user{
    display: flex;
    position: relative;
    right: 1%;
    top: 2%;
  }
  #filter-bar-inline {
    justify-content: center !important;
  }
  #emptyPlaceholder{
    display: none;
  }
  #assessor{
    display: none;
  }
  #collapsedNav{
    display: none;
  }
  #topBar {
    font-family: 'Montserrat';
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 1em;
    gap: 10px 15px;
    margin: auto;
    padding-left: 15px;
    width: 100%;
    border-bottom: 1px solid black;
    background-color: rgba(255, 255, 255, 0.815);
  }
  .nav_icon {
    max-width: 30px !important; 
  }
}
.nav_icon {
  max-width: 40px; 
}


.nav_icon:hover {
  transform: scale(1.15); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.databasesearchbutton:hover{
  background-color: #1654e5;
  color: white;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold;
  img{
    filter: invert(1);
  }
}
.databasesearchbutton{
  font-family: "Montserrat", sans-serif;
  display: flex;
  text-align: center;
  border-radius: 3px;
  font-weight: 500px;
  justify-content: center;
  background-color: #0000ff00;
  color: black;
  border: 2px solid #1654e5;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold;
  height: 35px;
  margin-left: 5px;
  align-items: center;
  padding: 0px 10px;
}
#single_property{
  height: 35px;
  width: 22em;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
#single_property:hover{
  border: 1px solid #83a4f0bb;
}


/*============================ -->*/
/*                  Timetable                  -->*/
/*============================================ -->*/

                  /*-- -------------------------- -->
            <---         Timetable          -->
            <--- -------------------------- -*/
                  /* Mobile - 360px */
    @media only screen and (max-width: 48rem) {
      #mortgageTable{
        display: none;
      }
      #miscImprTable{
        display: none;
      }
      #outbuildingTable{
        display: none;
      }
      #landTable{
        display: none;
      }
      #taxinfoTable{
        display: none;
      }
      #salesHistoryTable{
        display: none;
      }
      #ownersTable{
        display: none;
      }
      .singleOptions {
        position: absolute;
        /* top: 102px; */
        left: 7px;
        width: fit-content;
        z-index: 1000;
      }

      #detailsdiv {
        display: none !important;
      }

      /* #legaldiv {
        display: none !important;
      } */

      /* #taxInfoNav {
        display: none !important;
      } */
      .timetable-1774 .cs-table{
        width: 100%;
      }
      .timetable-1774 #owner_name{
        width: 100% !important;
      }
    }

    @media only screen and (min-width: 0rem) {

      .timetable-1774 #owner_name{
        width: 350px;
      }
      .timetable-1774 {
        /* padding: var(--sectionPadding); */
        /* background-color: #222222; */
        position: relative;
        /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
        .cs-container{
          .cs-table-list{
            .cs-table{
              tbody{
                tr{
                  td{
                    select,input{
                      padding: 3px;
                      height: 1.75rem;
                      font-family: "Montserrat", sans-serif;
                    }
                    button{
                      background-color: #1654e5;
                      border: none;
                      padding: 7px 10px;
                      color: white;
                      font-family: "Montserrat", sans-serif;
                      font-size: 14pt;
                    }
                  }
                }
              }
            }
          }
        }
      }

      .timetable-1774 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
      }

      .timetable-1774 .cs-content {
        /* set text align to center if content needs to be centrally aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* aligns content to the left, set to center to centrally align */
        align-items: flex-start;
      }

      .timetable-1774 .cs-title {
        color: var(--headerColor);
      }

      .timetable-1774 .cs-button-solid {
        font-size: 1rem;
        font-weight: 700;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-align: center;
        text-decoration: none;
        min-width: 9.375rem;
        max-height: 2.875rem;
        margin: 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        background-color: #e8e8e8;
        overflow: hidden;
        cursor: pointer;
        color: #fff;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .timetable-1774 .cs-button-solid span {
        height: 100%;
        padding: 0 1.5rem;
        background-color: var(--primary);
        display: block;
      }

      .timetable-1774 .cs-button-solid img {
        box-sizing: content-box;
        padding: 0.75rem;
        transition: filter 0.3s, transform 0.3s 0.15s;
      }

      .timetable-1774 .cs-button-solid:before {
        content: "";
        width: 0%;
        height: 100%;
        background-color: var(--primary);
        opacity: 1;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.5s;
      }

      .timetable-1774 .cs-button-solid:hover img {
        filter: brightness(0) invert(1);
        transform: translateX(0.25rem) translateY(-0.25rem);
      }

      .timetable-1774 .cs-button-solid:hover:before {
        width: 100%;
      }

      .timetable-1774 .cs-table-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 3vw, 1.25rem);
      }

      .timetable-1774 .cs-table {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
      }

      .timetable-1774 .cs-table thead {
        padding: 1.25rem;
        background-color: rgb(204 227 250 / 55%);
        /* background-color: rgba(0, 0, 0, 0.6); */
        transition: background-color 0.3s;
      }

      .timetable-1774 .cs-table thead th {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 4vw, 1.5625rem);
        font-weight: 700;
        line-height: 1.2em;
        /* color: var(--bodyTextColorWhite); */
        transition: color 0.3s;
      }

      .timetable-1774 .cs-table tbody {
        padding: 1.25rem;
        background-color: rgb(220 220 220 / 30%);
        ;
        /* background-color: rgba(0, 0, 0, 0.3); */
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .timetable-1774 .cs-table tbody tr {
        display: flex;
        justify-content: space-between;
      }

      .timetable-1774 .cs-table tbody th,
      .timetable-1774 .cs-table tbody td {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5em;
        /* color: var(--bodyTextColorWhite); */
      }

      .timetable-1774 .cs-table:hover thead {
        background-color: (204 227 250 / 55%);
        /* background-color: var(--primary); */
      }

      .timetable-1774 .cs-table:hover thead th {
        color: black;
        /* color: #fff; */

      }
    }

    @media only screen and (max-width: 991.98px) {
      .singleOptions {
        position: absolute;
        /* top: 102px !important; */
        left: 7px;
        width: fit-content;
        z-index: 1000;
      }
    }


    /* Tablet - 768px */
    @media only screen and (min-width: 48rem) {
      .singleOptions {
        position: absolute;
        /* top: 134px; */
        left: 7px;
        width: fit-content;
        z-index: 1000;
      }

      .timetable-1774 {
        display: flex;
        margin-top: 2rem;
      }

      .timetable-1774 .cs-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .timetable-1774 .cs-table-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Small Desktop - 1024px */
    @media only screen and (min-width: 64rem) {
      .singleOptions {
        position: absolute;
        top: 134px;
        left: 7px;
        width: fit-content;
        z-index: 1000;
      }

      .timetable-1774 .cs-table-list {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /* my styles */


    #container {
      display: flex;
      height: 100vh;
      /*margin-top: var(--nav-height, 0); /* in case you're dynamically adjusting */
    }
  
    #listing-view {
      width: 50%;
      overflow-y: auto;
      padding: 10px;
      box-sizing: border-box;
      background-color: #f9f9f9;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
    }

  
    #map {
      width: 50%;
      height: 100%;
    }
  
    .listing-card {
      background: white;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      overflow: visible;
      /* Remove height: 100% or add a max-height */
      /*max-height: 500px; /* Or whatever looks good on mobile */
      transition: box-shadow 0.2s ease, transform 0.1s ease;
      cursor: pointer;
      max-height: 19em;
    }
    @media (max-width: 1200px) {
    .listing-card {
      margin-bottom: 1rem;
    }
  }
    
    .listing-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transform: translateY(-2px);
    }


    .listing-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      position: relative;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
    }

    .listing-info {
      padding: 12px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

  
    .listing-title {
      font-weight: bold;
      font-size: 16px;
    }
  
    .listing-sub {
      font-size: 14px;
      color: #666;
    }



    #container.layout {
  display: flex;
  height: 100vh;
}

#listing-view {
  overflow-y: auto;
  padding: 10px;
  background: #f9f9f9;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  /* width: 35%; */
  width: 100%;
}
#leftcontainer {
  width: 35%;
  display: flex;
  flex-direction: column;
}

#map-container {
  position: relative;
  width: 65%;
}

#map {
  width: 100%;
  height: 100%;
}


/* Mobile: Only one view at a time */
@media (max-width: 1200px) {
  #leftcontainer {
    width: 100%;
    height: calc(100vh - 80px); /* Adjust if you have nav */
  }

}
@media (max-width: 1200px) {
  #container.layout {
    flex-direction: column;
  }

  #listing-view,
  #map-container {
    width: 100%;
    height: calc(100vh - 80px); /* Adjust if you have nav */
    display: none;
  }

  #container.layout.show-list #listing-view {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #container.layout.show-map #map-container {
    display: block;
  }
}

#toggle-view {
  display: none;
}

@media (max-width: 1200px) {
  #toggle-view {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #003f7d;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 999;
  }
}

/* Mobile: Only one view at a time */
@media (max-width: 768px) {
  #container.layout {
    flex-direction: column;
  }

  #listing-view,
  #map-container {
    width: 100%;
    height: calc(100vh - 80px); /* Adjust if you have nav */
    display: none;
  }

  #container.layout.show-list #listing-view {
    display: block;
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  #container.layout.show-map #map-container {
    display: block;
  }
}

/* #toggle-view {
  display: none;
} */

@media (max-width: 768px) {
  #toggle-view {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #003f7d;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 999;
  }
}

/* @media (min-width: 769px) {
  #toggle-view {
    display: none !important;
  }
} */

.image-wrapper {
  position: relative;
}

.status-x {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #ffffff;
  outline: 1px solid red;
  color: red;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
  z-index: 10;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
.status-x:hover {
  outline: 2px solid red;
  color: red;
  transform: translateY(2px);
}
.status-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #003f7d;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.status-badge { background-color: #6c757d; }
.status-badge.sale { background-color: #e63946; }
.status-badge.lease { background-color: #0077b6; }
.status-badge.closed { background-color: #6c757d; }
.status-badge.listing { background-color: #cb5ce3; }
.status-badge.under_contract {
  background-color: #6c757d; /* Same as closed */
}



#sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: white;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  z-index: 1000;
}

#sort-bar #results-count {
  color: #333;
}

#sort-bar .dropdown {
  position: relative;
}

.dropdown-toggle {
  background: white;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  width: 220px;
  display: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1001;
}

.dropdown-menu li {
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}
#filter-bar-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 24px;
  background: white;
  border-bottom: 1px solid #ddd;
  width: 100%;
  z-index: 15;
  position: relative;
  /*margin-top: 110px; /* <- adjust this to match your header height */
}

#filter-bar-inline select {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  /* width: 180px; */
  width: fit-content;
}

.filter-group {
  position: relative;
}

.multi-select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  width: 180px;
}

.multi-options {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ccc;
  width: 180px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.filter-group:hover .multi-options {
  display: block;
  z-index: 15;
}

.multi-options label {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
}

.btn {
  background-color: #002c54;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 8px 16px;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}


.hover-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  color: #333;
  padding: 12px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: 5;
}

.listing-card {
  position: relative;
  transition: all 0.3s ease;
}

.listing-card:hover {
  background: white;
}

.listing-card:hover .hover-details {
  opacity: 1;
  visibility: visible;
}



#modalOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
/* the modal box */
#searchModal {
  background: #fff;
  width: 95%;
  /* max-width: 1200px; */
  height: 85%;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}
/* close “×” button */
#searchModal .modal-close {
  position: absolute;
  top: 8px; right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}
/* content area: scroll if needed */
#searchModal .modal-content {
  padding: 16px;
  overflow: auto;
  flex: 1;
}


/* Styles for the Settings Cog Dropdown */

.settings-cog-container {
  position: relative;
  display: inline-block;
}

.settings-cog {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.settings-cog:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.settings-cog svg {
  color: #333;
}

.settings-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 180px;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}

.settings-dropdown.hidden {
  display: none;
}

.dropdown-section {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.dropdown-section:last-child {
  border-bottom: none;
}

.dropdown-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  font-weight: 500;
}

.dropdown-select {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}

/* Animation for the dropdown */
.settings-dropdown {
  transform-origin: top right;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* Optional: Triangle indicator pointing up at the settings cog */
.settings-dropdown:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  width: 12px;
  height: 12px;
  background-color: white;
  transform: rotate(45deg);
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}


/* --- hamburger navigation --- */


.action-buttons { display: flex; }
/* hide small‑screen hamburger by default */
.action-hamburger { position: relative; display: inline-block; }
.hamburger-icon-small {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
  cursor: pointer;
  /* margin-left: 8px; */
}
.hamburger-icon-small span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: #333;
}

/* small dropdown */
.dropdown-menu-small {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin-top: 6px;
  z-index: 50;
  min-width: 140px;
  padding: 4px 0;
}
.dropdown-menu-small.show { display: block; }
.dropdown-menu-small button {
  width: 100%;
  text-align: left;
  padding: 6px 12px;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
.dropdown-menu-small button:hover { background: #f5f5f5; }

/* responsive toggle at <1000px */
@media (max-width: 1000px) {
  #filterDropdown{
    width: 12rem;
  }
  .action-buttons { display: none; }
  .hamburger-icon-small { display: flex; }
  .action-hamburger{
    
    border: 1px solid #bdbdbd;
    padding: 0.50rem;
    border-radius: 8px;
  }
  .hamburger-icon-small {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .hamburger-icon-small span {
    display: block;
    height: 2px;
    border-radius: 1px;
    background: #333;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  
  /* When .open is added, animate into an X */
  .hamburger-icon-small.open span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }
  .hamburger-icon-small.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-icon-small.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}




/* <!-- From Uiverse.io by KSAplay --> */
  .heart_path_list{
    /* stroke: #00000070; */
    stroke: #ffffffe8;
    fill: #00000024;
  }
  /* From Uiverse.io by KSAplay */ 
  #heart_span_list{
    position: absolute;
    top: 20px;
    right: 8px;
  }
.heart_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.heart_container {
  display: block;
  position: relative;
  top:-13px;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  transition: 100ms;
}

.checkmark {
  top: 0;
  left: 0;
  height: 1.25em;
  width: 1.25em;
  transition: 100ms;
  animation: dislike_effect 400ms ease;
}

.heart_container input:checked ~ .checkmark path {
  fill: #ef71c5;
  stroke: #92415c;
  /* stroke-width: 0; */
}

.heart_container input:checked ~ .checkmark {
  animation: like_effect 400ms ease;
}

.other_container:hover {
  transform: scale(1.1);
}
.heart_container:hover {
  transform: scale(1.1);
}

@keyframes like_effect {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes dislike_effect {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.gm-style-iw .gm-ui-hover-effect {
  display: none !important;
}



/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* padding-top: 60px; */

}

#subject-modal::-webkit-scrollbar-track {
  background: #f0f0f0; 
  box-shadow: inset 0 0 5px rgb(212, 212, 212);
} 
 
/* Handle */
#subject-modal::-webkit-scrollbar-thumb {
  background: #b6b6b6;
  box-shadow: inset 0 0 3px 0px rgb(0, 0, 0);
}

/* Handle on hover */
#subject-modal::-webkit-scrollbar-thumb:hover {
  background: #818181;
  cursor: pointer;
}

#subject-modal::-webkit-scrollbar {
  background: transparent;
  /* Chrome/Safari/Webkit */
}

#subject-modal {
  border-radius: 0px !important;
  overflow-y:auto;
  display: block !important;
  overflow: auto;

}
.modal-content{
  position: relative
}

/* Modal Content/Box */
.property-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  /* auto */
  border: 1px solid #888;
  width: 90% !important;
  /* Could be more or less, depending on screen size */
  height: 100% !important;
  /* Could be more or less, depending on screen size */
  flex-direction: row !important;
  border: none !important;
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }

  
}

#subjectCardColumn{
  display: flex;
  flex-direction: column;
  width: 100%;

}


@media (max-width: 1200px) {
  body{
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 991.98px) {
  body{
    width: 100%;
    overflow: hidden;
  }
  #topBar{
    height: 55px;
    width: fit-content !important;
  }
  #emptyPlaceholder{
    display: none;
  }
  #collapsedNav nav{
    padding-left: 0px !important;
  }
  #filter1{
    display: none;
  }
  #filter2button{
    display:none;
  }
  #location-input{
    margin: 1% !important;
  }
  #cpdlogo{
    display: none;
  }
  /* property card */
  #subjectCardHeader{
    display: none !important;
  }
  #subjectImgListing{
    width: 100% !important;
    border: none;
  }
  #subjectInfoListing{
    width: 0% !important;
    display: none;
  }
  #subjectlistingInfoNav{
    position: unset;
  }
  #subjectDescription{
    padding: 0px !important;
    flex-direction: column;
  }
  #subject-modal{
    margin: 0px;
    width: 100% !important;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */ 
  }
  #subject-modal::-webkit-scrollbar{
    background: transparent;
    /* Chrome/Safari/Webkit */
    width: 0px;
  }
  #closeModal{
    background-color: #ffffff6b;
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    right: 7px;
  }
  /* #copyToClipboardButton{
    display: none;
  } */
  #subjectlistingInfoNav{
    display: none !important;
  }
  #subject-modal{
    overflow-x: hidden !important;
  }
  #rentalAvmResults{
    display: none;
  }
  #equityResults{
    display: none;
  }
  #taxInfoNav2{
    display: none;
  }
  #subDesc{
    width: fit-content !important;
  }
  #basic_listing_footer{
    display: none;
  }
  #accountWrapper{
    width: 100%;
  }
  .accountNameWrap{
    flex-direction: column;
  }
  #login_container{
    width: 100%;
  }
  /* dashboard */
  #dashboardWrapper{
    flex-direction: column;
    align-items: center;
  }
  .dashboardwrap{
    width: 70%;
  }
  .dashboardwrapbad{
    width: 70%;
  }
  .dashboardwrapbad img{
    display: none;
  }
  .dashboardwrap img{
    display: none;
  }
  #crosspointlogo{
    display: none;
  }
  #dashboard_background:before{
    display: none;
  }
  .hidemobile{
    display: none;
  }
  #legaldiv{
    width: 100% !important;
  }
  #legaldiv span{
    justify-content:center !important;
  }

/* products */
#productWrapper{
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.productwrap{
  width: 100%;
  margin: 6%;
}
#productDescriptions{
  text-align: center;
}
#login_before{
  text-align: center;
}
#monthyearselect{
  padding-top: 20px;
}
}



#subjectCardHeader{
  font-family: 'Montserrat';
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 75px;
  width: fit-content;
  padding: 5px;
  gap: 10px 5px;
  margin: auto;
  padding-left: 15px;
  padding: 5px;
  width: 100%;
  border-bottom: solid black;
  width: 100%;
  /* height: 69px; */
  height: 130px;
  align-content: center;
  /* 
   */
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 9999;
}

#cpdlogodiv{
  align-items: center;
  display: flex;
  justify-content: center;
}

#lblBrokerEntry{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#price_sqf_yrb{
  align-items: center;
}

#subjectDescription{
  display: flex;
  padding: 10px;
  justify-content: space-around;
}




#ownerTable{
  margin: auto;
  border-collapse: separate;
  border-spacing: 10px;
  padding: 2px;
  color: black;
}


.ownerTableInfoRow{
  border-bottom: 1px solid black;
  align-items: center;
  align-content: center;
  text-align: center;
} 


/* The Subject Image Container */
#subjectImgListing {
  height: 100%;
  width: 55%;
  /*padding: 10px 5px 5px 10px;*/
  border-right: solid black;
}

#subjectInfoListing {
  width: 45%;
  overflow-y: hidden;
  /* overflow-y: scroll; */
  position: unset !important;
  margin: 0 !important;
  padding: 16px !important;
  
}





/* 
 */
 /* 
  */

#listingInfoGrid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 50% 50%;
  height: 100%;
}

.list_details{
  color: black;
  font-weight: bold;
}

.center_container{
  height: 100%;
}

.list_detail_card{
  /* background-color: #e0ebf59e; */
  border-radius: 5px;
  margin: 2%;
  outline: 1px solid #474e5424;
}
.list_detail_card:hover{
  outline: 1px solid #93c4f4;
  box-shadow: 0 0 6px rgb(44 90 137);
}
#caprate_chart{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#rentalrate_chart{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#value_forcast{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app_rates{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.chart_desc{
  font-weight: 600;
  position: absolute;
  color: black;
}





/* 
 */
/* */ 

#mortgageTable{
  margin: auto;
  border-collapse: collapse;
  border-spacing: 20px;
  border-bottom: 1px dashed black;
  padding: 2px;
  color: black;
}


.mortgageTableInfoRow{
  border-bottom: 1px solid black;
  align-items: center;
  align-content: center;
  text-align: center;
} 


h5.subjectHeaders {
  color: #464646;
  font-weight: 500;
  padding: 5px;
}
h5.subjectDetailsContent {
  font-weight: bold;
  padding: 5px;
}

.subjectDetailsGridcolumn{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: fit-content;
  gap: 10px 10px;
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
}

/* Track */
#subjectUnder::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
} 
 
/* Handle */
#subjectUnder::-webkit-scrollbar-thumb {
  background: #a7cef6; 
  border-radius: 10px;
}

/* Handle on hover */
#subjectUnder::-webkit-scrollbar-thumb:hover {
  background: #6da8e4;
  cursor: pointer;
}

#subjectUnder::-webkit-scrollbar {
  background: transparent;
  /* Chrome/Safari/Webkit */
}

#subjectUnder {
  overflow: auto;
}
/*  */
/*  */
/*  */
/*  */
/* Track */
#subject-modal::-webkit-scrollbar-track {
  background: #f0f0f0; 
  box-shadow: inset 0 0 5px rgb(212, 212, 212);
} 
 
/* Handle */
#subject-modal::-webkit-scrollbar-thumb {
  background: #b6b6b6;
  box-shadow: inset 0 0 3px 0px rgb(0, 0, 0);
}

/* Handle on hover */
#subject-modal::-webkit-scrollbar-thumb:hover {
  background: #818181;
  cursor: pointer;
}

#subject-modal::-webkit-scrollbar {
  background: transparent;
  /* Chrome/Safari/Webkit */
}

#subject-modal {
  overflow: auto;
}




.colormegreen{
  /* color: #1f9f1f */
  font-weight: bold;
}



#lblAddressEntry {
  display: flex;
  margin: auto;
}


.flexrow{
  display: flex;
  justify-content: space-between;
}


#subjectImportantDetails{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  width: fit-content;
  height: 100%;
  margin: auto;
}
#subjectImportantDetails2{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: fit-content;
  height: 100%;
  margin: auto;
}

.hide {
  display: none !important;
  /*background-color: rgba(175, 163, 163, 0.438)*/
}


#file_online{
  border-radius: 8px;
  background-color: #1654e5;
  border: none;
  padding: 7px 10px;
  color: white;
  font-family: 'Montserrat';
}


#subjectInfoNav {
  display: flex;
  padding: 5px;
  width: 75%;
  margin: auto;
  /* background-color: #ebebeb; */
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  border-left: 1px solid black;
  position: sticky;
  top: 177px;
  background-color: white;
}
.subjectInfoNavItem {
  padding: 10px;
  cursor: pointer;
  margin: auto;
  color: #15233c;
  padding: 5px;
}
#subjectlistingInfoNav {
  display: flex;
  padding: 5px;
  width: 100%;
  /* background-color: #ebebeb; */
  border-bottom: 1px solid black;
  /* border-radius: 15px; */
  position: sticky;
  top: 130px;
  background-color: white;
  z-index: 2;
}

.subjectlistingInfoNavItem {
  padding: 10px;
  cursor: pointer;
  margin: auto;
  color: #15233c;
  padding: 5px;
  font-size: 16pt;

}
.subjectInfoNavItem:hover {
  color: #0095ff;
  box-shadow: inset 0px -15px 0px #1980e762;
}
.active {
  color: #15233c;
  box-shadow: inset 0px -15px 0px #1980e762;
}

#lblAddressEntry {
  margin: auto;
  display: flex;
  /*
  align-items: baseline; */
  /* border-bottom: 1px solid black; */
}

#lblAddressh3{
  color: black;
  margin: auto;
  font-weight: bold;
  width: 100%;
  padding: 10px;
}

#view_all_images_btn{
  background-color: #1654e5;
  border: none;
  padding: 7px 10px;
  color: white;
  font-family: 'Montserrat';
}



#taxInfoNav{
  width: 95%;
  margin: 20px auto
}
#taxInfoNav2{
  width: 90%;
  margin: 20px auto
}

#taxinfoTable{
  border-collapse: collapse;
  width: 100%;
}
.taxinfoTable{
  border-collapse: collapse;
  width: 100%;
}
.taxinfoTableHeader{
  border-bottom: 2px solid black;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  color: black;
}

.taxinfoTableContent{
  padding: 10px;
  border-bottom: 1px solid lightgray;
  text-align: center;
}




.detailsTableContent{    
  color: black;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.detailsicon{
  padding-right: 5px;
  padding-bottom: 2px;
  max-width: 25px;
  /* filter: invert(1) sepia(80) saturate(10) brightness(.55) hue-rotate(138deg); */
}


@media (max-width: 991.98px) {
  #subjectInfoListing{
    display: none !important;
  }
}


#mortgageTable{
  margin: auto;
  border-collapse: collapse;
  border-spacing: 20px;
  border-bottom: 1px dashed black;
  padding: 2px;
  color: black;
}


.mortgageTableInfoRow{
  border-bottom: 1px solid black;
  align-items: center;
  align-content: center;
  text-align: center;
} 


h5.subjectHeaders {
  color: #464646;
  font-weight: 500;
  padding: 5px;
}
h5.subjectDetailsContent {
  font-weight: bold;
  padding: 5px;
}

.subjectDetailsGridcolumn{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: fit-content;
  gap: 10px 10px;
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
}

/* Track */
#subjectUnder::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
} 
 
/* Handle */
#subjectUnder::-webkit-scrollbar-thumb {
  background: #a7cef6; 
  border-radius: 10px;
}

/* Handle on hover */
#subjectUnder::-webkit-scrollbar-thumb:hover {
  background: #6da8e4;
  cursor: pointer;
}

#subjectUnder::-webkit-scrollbar {
  background: transparent;
  /* Chrome/Safari/Webkit */
}

#subjectUnder {
  overflow: auto;
}



.productwrap {
  display: flex;
  flex-direction: column;
  border: 1px solid black;
  /* width: 30%; */
  width: 45%;
  border-radius: 3px;
  box-shadow: 10px 10px 20px 0px rgb(0 0 0);
  overflow: hidden;
  -webkit-transition: .1s;
  transition: .1s;
  height: inherit;
}

.productwrap:hover {
  border: 1px solid #1654e5;
  outline: 3px solid #1654e5c0;
  box-shadow: 10px 10px 20px 0px #1654e54f;
  border-radius: 3px;
  background-color: white;
  -webkit-transition: .1s;
  transition: .1s;
}



.productTitle {
  border-bottom: 1px solid #00000038;
  padding-top: 10px;
  display: flex;
  justify-content: space-around;
  color: #15233C
}

.pricing {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px 20%;
  color: black;
}

.pricingnumber {
  font-size: 30pt;
  font-weight: bold;
}

.productInfo {
  display: flex;
  flex-direction: column;
  padding: 25px;
  color: black;
  height: 100%;
  justify-content: space-between;
}

#monthyearselect {
  margin: auto;
  display: flex;
  width: fit-content;
  align-content: baseline;
  padding-bottom: 20px;
}
#monthyearselectval {
  margin: auto;
  display: flex;
  width: fit-content;
  align-content: baseline;
  padding-bottom: 20px;
}

.specialswitch {
  margin: 0px 20px;
}

#standardbutton {
  background-color: #0000ff00;
  color: #1654e5;
  border: 2px solid #1654e5;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold
}

#basicbutton {
  font-size: 11pt;
  border-radius: 3px;
  border: 2px solid #1654e500;
  font-weight: bold
}

#probutton {
  background-color: #0000ff00;
  color: #1654e5;
  border: 2px solid #1654e5;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold
}

#standardbutton:hover {
  background-color: #1654e5;
  color: white;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: none;
}

#basicbutton:hover {
  background-color: #0000ff00;
  color: #1654e5;
  border: 2px solid #1654e5;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold
}

#probutton:hover {
  background-color: #1654e5;
  color: white;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold
}

#yeartext,
#monthtext {
  padding-top: 5px
}

.checkmark {
  text-shadow: 1px 1px 3px black;
  color: #004cff;
  font-size: 35px;
  padding-right: 10px;
}

.productinfotext {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.productinfotext p {
  margin: unset !important;
}


/* The switch - the box around the slider */
.specialswitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.specialswitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.specialslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.specialslider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.specialslider {
  background-color: #2196F3;
}

input:focus+.specialslider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.specialslider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.specialslider.round {
  border-radius: 34px;
}

.specialslider.round:before {
  border-radius: 50%;
}

.specialslider.round:after {
  display: none;
}


/* The Close Button (x) */
.close {
  position: absolute;
  right: 7%;
  z-index: 9;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}


.singleOptions {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  /* width: 350px; */
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* display: none; */
}

.singleOptions li {
  padding: 8px;
  cursor: pointer;
}

.singleOptions li:hover {
  background-color: #f5f5f5;
}
@media only screen and (min-width: 48rem) {
.singleOptions {
  position: absolute;
  top: 41px;
  left: 7px;
  width: fit-content;
  z-index: 1000;
}
}





#modalOverlay_login {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
/* the modal box */
#loginModal {
  background: #fff;
  width: 95%;
  /* max-width: 1200px; */
  height: 85%;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}
/* close “×” button */
#loginModal .modal-close {
  position: absolute;
  top: 8px; right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}
/* content area: scroll if needed */
#loginModal .modal-content {
  padding: 16px;
  overflow: auto;
  flex: 1;
}


/*--------------Account Page-----------------------*/
#accountHeaderWrapper {
  padding: 10px 0px 0px 0px;
  height: 5vh;
  display: flex;
  flex-direction: column;
}

#accountWrapper {
  font-family: inherit;
  padding: 10px 0px 10px 0px;
  width: 500px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: auto;
}

#accountWrapper input {
  font-family: inherit;
  padding: 5px;
  background-color: white;
  border-radius: 4px;
}

.accountwrap {
  overflow-y: scroll;
  -webkit-transition: .1s;
  transition: .1s;
  width: 100%
}

.accountInfo {
  font-family: inherit;
  padding: 25px;
  color: black;
  justify-content: space-between;
}


.accountName {
  display: flex;
  flex-direction: column;
}

.accountNameWrap {
  display: flex;
  padding: 5px 0px;
  justify-content: space-between;
}

.accountEmailWrap {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
}

#accountPhone{
  color: gray;
}
.accountPhoneWrap {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
}

.accountPasswordWrap {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
}

.accountButtons {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: baseline;
}

.accountNameTitle {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 5px;
  color: black;
}


.accountButton{
    display: flex;
    margin: auto;
    background-color: #ffffff;
    color: black;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom: none;
    border-color: black;
    border: 1px solid transparent;
    font-weight: 400;
    text-decoration: none;
    padding: .375rem .75rem;
    font-size: 1rem;
}
.accountButton:hover{
  box-shadow: inset 0 0 14px 0px rgb(114 170 237);
}

.disable-scrollbars::-webkit-scrollbar {
  background: transparent;
  /* Chrome/Safari/Webkit */
  width: 0px;
}

.disable-scrollbars {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}


.ownerOptions {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  /* width: 350px; */
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
}

.ownerOptions li {
  padding: 8px;
  cursor: pointer;
}

.ownerOptions li:hover {
  background-color: #f5f5f5;
}


.filter-modal-content{
  /* position: relative;
  top: 140px;
  left: 18px; */
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 10px;
  outline: 0;
}


label {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
}


label span {
  position: relative;
  line-height: 22px;
  padding-left: 5px;
}

label span:before,
label span:after {
  content: '';
}

label span:before {
  border: 1px solid #222021;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}

label span:after {
  background: #222021;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 1px;
  left: 8px;
  transition: 300ms;
  opacity: 0;
}
  /* From Uiverse.io by kennyotsu */
  .card {
    --bg-color: #212121;
    background-color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 1.25rem;
  }
  .loader {
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 25px;
    box-sizing: content-box;
    height: 40px;
    display: flex;
    border-radius: 8px;
  }

  .words {
    overflow: hidden;
    position: relative;
  }
  .words::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 20;
  }

  .word {
    display: block;
    height: 100%;
    padding-left: 6px;
    color: #956afa;
    animation: spin_4991 4s infinite;
  }

  @keyframes spin_4991 {
    10% { transform: translateY(-102%); }
    25% { transform: translateY(-100%); }
    35% { transform: translateY(-202%); }
    50% { transform: translateY(-200%); }
    60% { transform: translateY(-302%); }
    75% { transform: translateY(-300%); }
    85% { transform: translateY(-402%); }
    100% { transform: translateY(-400%); }
  }


.popup {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .popup-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fff;
      margin: auto;
      margin-top: 8rem;
      padding: 20px;
      border: 1px solid #888;
      width: 85%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.3s;
      position: relative;
    }

    #acceptBtn{
      margin: 1rem;
      border-radius: 8px;
    }
    #declineBtn{
      margin: 1rem;
      border-radius: 8px;
    }