/********** Template CSS **********/
/* Import the Montserrat font */
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

/* Import the Montserrat font */
@import url('https://fonts.googleapis.com/css?family=Montserrat');

/* Import the Montserrat font */
@import url('https://fonts.googleapis.com/css?family=Montserrat');

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

:root {
  --primary: #015FC9;
  --secondary: #0DD3F1;
  --light: #F6F7FC;
  --dark: #15233C;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

#input-grid-container {
  padding-top: 10px;
  width: 75%;
  margin: auto;
}


/*** Button ***/
.btn {
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #FFFFFF;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: unset;
}


/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 10px 0;
  color: #696E77;
  font-weight: 600;;
  outline: none;
  cursor: pointer;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: inherit;
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 50px;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: url(../img/carousel-1.png) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 600;;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + .75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}

.container.facts .facts-text {
  background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.png) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.png) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../impng) center center no-repeat;
  background-size: cover;
}


/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
  transition: .5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}


/*** Footer ***/
.footer {
  color: #A7A8B4;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #A7A8B4;
  font-weight: unset;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: inherit;
  font-weight: 900;
  color: #A7A8B4;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #A7A8B4;
  border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #FFFFFF;
}

/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/

/* Full-width input fields */
/* Set a style for all buttons */
button {
  background-color: #1654e5;
  color: white;
  padding: 7px 10px;
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  position: relative;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: left;
  padding-top: 5px;
}

span.acc {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* padding-top: 60px; */

}

/* Modal Content/Box */
.property-content {
  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;
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* The Subject Image Container */
#subjectImg {
  width: 45%;
  /*padding: 10px 5px 5px 10px;*/
  border-right: solid black;
}

#subjectInfo {
  width: 55%;
  overflow-y: scroll;
}


/* The Subject Info Container */


/* Add Zoom Animation */
.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)
  }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }

  .cancelbtn {
    width: 100%;
  }
}


/*MY CODE*/

.hide {
  display: none !important;
  /*background-color: rgba(175, 163, 163, 0.438)*/
}

.selectionFilter  {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

#toggleMap {
  margin-left: 50%;
  margin-bottom: 10px;
}

#basicFormValidate3 {
  display: grid;
  grid-template-columns: 40% 60%;
  /*grid-template-rows: 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px;*/
  grid-template-rows:35px 35px 35px 35px 35px 35px 35px;
  /*width: fit-content;*/
  width: 78%;
  padding: 5px;
  gap: 10px 5px;
  margin: auto;
}
.InputLabels {
  color: black;
  font-family: inherit;
  justify-self: start;
}

.cost_input {
  width: 60%;
  border-radius: 4px;
  color: black;
  font-family: inherit;
  justify-self: end;
}
.InputEntries {
  width: 60%;
  border-radius: 4px;
  color: black;
  font-family: inherit;
  justify-self: end;
}
.InputEntries:hover {
  box-shadow: 2px 2px 2px 0px #1654e54f;
  border: 1px solid #004cff;
}
.InputEntries:focus {
  box-shadow: 0px 0px 2px 3px #0751ff82;
  border: 1px solid #004cff;
}
.income-grid-item:hover {
  box-shadow: 2px 2px 2px 0px #1654e54f;
  border: 1px solid #004cff;
}
.income-grid-item:focus {
  box-shadow: 0px 0px 2px 3px #0751ff82;
  border: 1px solid #004cff;
}
#propertyDetailsContainer{
  color: black;
  font-family: inherit;
}

/*Google maps------------------------------------------------------------*/
#marketMap {
  height: 700px;
  width: 100%;
  float: left;
  overflow: hidden;

}

#mapwrap {
  position: relative;
  overflow: hidden;
}

#mapwrapRealMap {
  position: relative;
  width: 100%;
  transition: width .5s;
  -moz-transition: width .5s;
  /* Firefox 4 */
  -webkit-transition: width .5s;
  /* Safari and Chrome */
  -o-transition: width .5s;
  /* Opera */
}

#overmap {
  z-index: 99;
  /*background-color: #15233C;*/
  background-color: white;
  width: 0%;
  /* height: 700px; */
  color: white;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  padding-top: 7px;
}

#toplistsubject {
  padding: 5px;
  font-family: inherit;
  font-weight: 600;;
  font-size: small;
  /*border: #FF0000 2px solid;*/
  width: 95%;
  margin: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5px;
  margin-top: 0px;
}

#toplistcomp {
  color: black;
  /* padding: 15px; */
  font-family: inherit;
  font-weight: 600;;
  font-size: small;
  /* border: #cfcfcf 2px solid; */
  width: 100%;
  /* margin: auto; */
  display: flex;
  flex-direction: column;
  /* margin-top: 3.5px; */
  /* margin-bottom: 3.5px; */
  /* height: 150px;*/
  pointer-events:none;
}

#bottomlistcomp {
  color: black;
  /* padding: 15px; */
  font-family: inherit;
  font-weight: 600;;
  font-size: small;
  /* border: #cfcfcf 2px solid; */
  width: 100%;
  /* margin: auto; */
  display: flex;
  flex-direction: column;
  /* margin-top: 3.5px; */
  /* margin-bottom: 3.5px; */
  /* height: 150px;*/
  pointer-events: none;
}

#morecompsdiv {
  padding: 6px;
  font-family: inherit;
  font-weight: 600;;
  font-size: large;
  margin: auto;
  margin-top: 3.5px;
  background-color: #63789f;
  color: black;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

#morecompsdivhide {
  background-color: #63789f;
}

/*market tab image stuff*/
#subDivPictureWrapper {
  display: flex;
  cursor: pointer;
  color: black;
  box-shadow: 0 6px 8px 0px rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

#subDivPictureWrapper:hover {
  outline: 3px solid #ff0000;
  outline-offset: -3px;
}

.propertyImage {
  width: 200px;
  height: 150px;
}

.compImage {
  object-fit: cover;
  width: 200px;
  height: 150px;
  pointer-events: none;
}

/*
#toplistcomp:after {
  content: '▼';
  position: absolute;
  opacity: 0;  
  top: 14px;
  right: -20px;
  transition: 0.5s;
}
*/
/*
#toplistcomp:hover{
  padding-right: 24px;
  padding-left:8px;
}

#toplistcomp:hover:after {
  opacity: 1;
  right: 10px;
}
*/
.viewMore {
  margin: 0px !important;
}

.additionalPropertyCard {
  margin: 0 !important
}

.propertyCard {
  margin: 0 !important
}

.subjectPropertyCard {
  margin: 0 !important
}

.disable-scrollbars::-webkit-scrollbar {
  background: transparent;
  /* Chrome/Safari/Webkit */
  width: 0px;
}

.disable-scrollbars {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.sb-title {
  position: relative;
  top: -12px;
  font-family: inherit;
  font-weight: 600;;
}

.sb-title-icon {
  position: relative;
  top: -5px;
}

.card-container {
  display: flex;
  width: 75%;
}

.panel {
  /*background: white;
    width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;*/
  margin: auto;
  width: 260px;
  height: 40px;
}

.half-input-container {
  display: flex;
  justify-content: space-between;
}

.half-input {
  max-width: 120px;
}

.map {
  width: 100%;
}

h2 {
  margin: 0;
  font-family: inherit;
}


#map {
  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%
}

.align-items-center {
  margin: auto;
  padding: 10px 5px;
  place-content: center;
}

input:read-only {
  background-color: rgb(145 145 145 / 17%);
  border-radius: 3px;
}

.errorTxt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: red;
  /*min-height: 50px;*/
}

select.error,
textarea.error,
input.error {
  color: #FF0000;
  border-color: #FF0000;
}


/*Income styling*/

#income-grid-container,
#all-grid-income-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px;
  width: fit-content;
  padding: 5px;
  gap: 10px 5px;
  margin: auto;
  padding-top: 10px;
  color: black;
  font-family: inherit;
}


/*Cost styling*/

#cost-grid-container,
#all-grid-cost-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px 35px;
  width: fit-content;
  padding: 5px;
  gap: 10px 5px;
  margin: auto;
  padding-top: 10px;
  color: black;
  font-family: inherit;
  margin: auto;
}

/*Market*/
#market-grid-container,
#all-grid-market-container {
  /*display: grid;*/
  display: none;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px;
  width: fit-content;
  padding: 5px;
  gap: 10px 5px;
  margin: auto;
  padding-top: 10px;
  color: black;
  font-family: inherit;
}

#marketFormValidate {
  gap: 10px 5px;

}
#market-table-container{
  margin-top: 25px;
}

/*REGRESSION ANALYSIS STYLING-----------------------------------------------------------------------------------------------------------*/

#analysis-grid-container {
  display: flex;
  flex-direction: column;
  margin: auto;
}

#topLeft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px 35px;
  width: fit-content;
  padding: 5px;
  padding-bottom: 15px;
  gap: 10px 5px;
  margin: auto;
}

#bottomContainer {
  display: flex;
  text-align: right;
}

#botleft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px;
  width: auto;
  padding: 5px;
  gap: 10px 1px;
  margin: auto;
}

#botmid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px;
  width: auto;
  padding: 5px;
  gap: 10px 1px;
  margin: auto;
}

#botright {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px;
  width: auto;
  padding: 5px;
  gap: 10px 1px;
  margin: auto;
}

#ratioStudy {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px;
  width: auto;
  padding: 5px;
  gap: 10px 1px;
  margin: auto;
}

#RegLblID {
  text-align: center;
}

#OrigLblID {
  text-align: center;
}




/* REGRESSION TABLE -------------------------------------------------------------*/

.independentSelectionButton {
  padding-right: 10px;
}

.dependentSelectionButton {
  padding-right: 10px;
}

.xspanDep {
  position: relative;
  right: 9px;
  top: -25%;
  font-weight: bold;
  font-size: 9pt;
}

.xspan {
  position: relative;
  right: 9px;
  top: -25%;
  font-weight: bold;
  font-size: 9pt;
}

#independentSelection {
  display: flex;
  margin: auto;
  width: fit-content;
  height: 30px;
  padding: 5px;
}

#dependentSelection {
  display: flex;
  margin: auto;
  width: fit-content;
  height: 30px;
  padding: 5px;
}

#runRegressionButtonID {
  display: flex;
  margin: auto;
  width: fit-content;
  padding: 5px;
}


.IndependentLabel {
  width: fit-content;
}

.DependentLabel {
  width: fit-content;
}

#tablecontainer {
  margin: auto;
  padding-top: 20px;
  width: 85%;
}

#regressionTable {
  border: 1px solid;
  border-collapse: collapse;
  width: 100%;
}



#tableRowHeaders {
  border-bottom: 1px solid;
  border-right: 1px solid;
  width: fit-content;
  text-align: center;
  padding: 3px;
}



#chart_div {
  margin: auto;
}

#buttonDiv {
  margin: auto;
}

#newChartSelect {
  width: 110%;
}

#summary-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px 35px;
  width: fit-content;
  padding: 5px;
  gap: 10px 5px;
  margin: auto;
  padding-top: 10px;
  color: black;
  font-family: inherit;
}


/*CapRate Builder -------------------------------------------------------------*/


.slider {
  -webkit-appearance: none;
  width: 300px;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #000000;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #000000;
  cursor: pointer;
}


#CapRateDiv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px 35px;
  width: 100%;
  padding: 5px;
  gap: 70px 10px;
  margin: auto;
}

/*
  #CapRateDiv{
    display: flex;
    flex-direction: column;
    margin: auto;
  }*/
.slider-wrap {
  margin: auto;
  position: relative;
  width: 300px;
}

.bubble {
  background: #d3d3d3;
  color: black;
  padding: 4px 12px;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.bubble::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  top: -1px;
  left: 50%;
}

#CapRateDivBottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 35px 35px 35px 35px 35px 35px;
  width: 60%;
  padding: 5px;
  gap: 10px 10px;
  margin: auto;
}

#CapRateWrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
}


#chart_div {
  padding-top: 10px;
}

#percentageOfPGIID {
  text-align: center;
}


#marketTable {
  font-family: inherit;
  color: black;
  width: 90%;
  margin: auto;
}


#toggleProperty {
  margin-left: 50%;
  margin-bottom: 10px;
}

#propertyDetailsContainer {
  padding: 7px 7px 13px 7px;
}

#propertyDetailsTableID {
  width: 95%;
  margin: auto;
}

.propertyDetailsTableID {
  text-align: left;
}


/*Mass Appraisal  -------------------------------------------------------------*/
#mass-app-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 35px 35px 35px;
  width: fit-content;
  padding: 15px;
  gap: 10px 5px;
  margin: auto;
}

#massAppTable {
  width: 90%;
  margin: auto;
  margin-top: 20px;
}

#CODTable {
  border-top: 1px solid black;
  width: 90%;
  margin: auto;
  margin-top: 5px;
}

#missingPropertiesTable {
  border-top: 1px solid black;
  width: 90%;
  margin: auto;
  margin-top: 5px;
}

#file-selection-mass-app {
  background-color: white;
  cursor: pointer;
}

#file-selection-mass-app input,
button {
  background-color: #1654e5;
  color: white;
  border: none;
  cursor: pointer;
}

#file-upload-button input,
button,
::file-selector-button {
  background-color: #1654e5;
  border: none;
  padding: 7px 10px;
  color: white;
}



#commercialChoice,
#residentialChoice {
  display: none
}

#appraisalField {
  display: flex;
  place-content: space-around;
}

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;
}







/*
 * This is the most important part of this whole file, if you understand what's happening here
 * you can really make this in so many different ways.
 * 
 * We start by selecting the input inside of the label, with "label input". From there we use the 
 * ":checked" selector to *only* select the input when it is checked. We then use the immediate sibling 
 * selector(+) to select the span, and then it's pseudo element :after(What we are using to mark the button)
 * Because we already styled the :after, all we have to do is set the opacity to 1, making it fade in.
 */
label input:checked+span:after {
  opacity: 1;
}

/*Pause Screen  -------------------------------------------------------------*/
#pauseScreen {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1021;
  width: 100%;
  height: 100%;
  background-color: #ffffffcc;
  position: absolute;
}

#loadingspinner {
  width: 100px;
  height: 100px;
}



.navbar {
  display: block !important;
  float: right;
}

#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;
}

#location-input {
  font-family: inherit;
  z-index: 199;
  margin: 7px;
}


#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;

}
.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;
}

#weightedCapRateID {
  width: 60%;
  font-family: inherit;
}
#weightedCapRateID:hover {
  width: 60%;
  box-shadow: 2px 2px 2px 0px #1654e54f;
  border: 1px solid #004cff;
}
#yourCapRateEntryID {
  width: 60%;
}

.SubmitButton {
  width: 60%;
}

.selectionFilter {
  font-family: inherit;
  margin: 7px;
  width: 150px;
  height: 40px;
  border-radius: 3px;
  transition: 2s;
}

#toplist {
  display: flex;
  flex-direction: column;
}

.toplistcomp {
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  box-shadow: 0 6px 8px 0px rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.toplistcomp:hover {
  outline: 3px solid #8ac7db;
  outline-offset: -3px
}


.bottomlistcomp {
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  box-shadow: 0 6px 8px 0px rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.comp {
  color: black;
  padding: 5px;
  font-family: inherit;
  font-weight: 600;;
  font-size: small;
  /* border: #FF0000 2px solid; */
  width: 95%;
  margin: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5px;
  margin-top: 0px;
  pointer-events: none;
}

#subject-modal {
  border-radius: 0px !important;
  overflow-y:auto;
  display: block !important;

}


/*----------------------Login Popup----------------------------*/
#login_hidden_popup {
  height: 85%;
}
#filter_hidden_popup {
  overflow-y: scroll;
  height: 85%;
}

#login_container {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 30px;
  width: 50%;
}


#cancel_container {
  background-color: white;
  margin: auto;
}





/*------------------Product Page----------------------------*/
#productHeaderWrapper {
  padding: 20px 0px 0px 0px;
  height: 15vh;
  display: flex;
  flex-direction: column;
}

#productWrapper {
  padding: 10px;
  /* height: 70vh; */
  display: flex;
  justify-content: space-around;
  width: 90%;
  margin: auto;
}

#freeTrial {
  display: flex;
  padding-top: 30px;
}


.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;
}



/*--------------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;
  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;
}


/*-----------DashBoard------------*/
.dashboardwrap {
  background-color: rgba(255, 255, 255, 0.877);
  display: flex;
  flex-direction: column;
  /*border: 1px solid black;
  box-shadow: 10px 10px 20px 0px rgb(0 0 0);
  */
  box-shadow: 0px 0px 7px 1px rgb(195 195 195);
  width: 30%;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: .1s;
  transition: .1s;
}

.dashboardwrap:hover {
  /*border: 1px solid #1654e5;
  box-shadow: 10px 10px 20px 0px #6080ca4f;
  */
  box-shadow: 2px 2px 9px 1px #6080ca4f;
  border: 1px solid #84a4ee5b;
  outline: 2px solid #84a4ee5b;
  border-radius: 3px;
  background-color: white;
  -webkit-transition: .1s;
  transition: .1s;
}

.dashboardwrapbad {
  background-color: rgba(255, 255, 255, 0.877);
  /*
  border: 1px solid black;
  box-shadow: 10px 10px 20px 0px rgb(0 0 0);
  */
  box-shadow: 0px 0px 7px 1px rgb(195 195 195);
  display: flex;
  flex-direction: column;
  width: 30%;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: .1s;
  transition: .1s;
}

.dashboardwrapbad:hover {
  border: 1px solid #ff0000c4;
  outline: 2px solid #ff000065;
  box-shadow: 2px 2px 9px 1px #e516164f;
  border-radius: 3px;
  background-color: white;
  -webkit-transition: .1s;
  transition: .1s;
}

.dashboardTitle {
  border-bottom: 1px solid #00000038;
  padding-top: 10px;
  display: flex;
  justify-content: space-around;
  color: #15233C
}

#dashboardWrapper {
  /*background-color: #e6eef545;*/
  border-radius: 8px;
  height: 33vh;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  width: 90%;
  margin: auto;
}

.center_me {
  margin: auto;
}

.locked {
  width: 46%;
  padding-top: 30px;
  height: auto;
  margin: auto;
  margin-top: 0px;
  filter: opacity(0.5);
}

a.filldiv {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}


/*--------------Rental and caprate data--------------------*/

#caprate_page{
  display: flex;
  margin: auto;
}
#filter_columns{
  font-family: inherit;
  padding:5px;
  width: 20%;
  align-items: stretch;
  justify-content: space-around;
  margin-right:5px;
  overflow: scroll;


}
#caprate_chart_area{
  display:flex;
  flex-direction: column;
  border-right: 2px solid rgba(133, 133, 133, 0.151);
  width: 77%;
  overflow: scroll;
  overflow-y: hidden;
  margin: auto;
  height: 100%;
  margin-top:10px;
}
#capratefirst_filter{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px;
}
#capratefirst_filter input, select{
  border-radius: 4px;
  height:35px;
}
#capratesecond_filter{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px;
  border-top: 2px dashed;
}
#capratesecond_filter input, select{
  border-radius: 4px;
  height:35px;
}
.caprate_filters{
  /*outline: 2px solid rgba(51, 51, 51, 0.507);*/
  display:flex;
  flex-direction: column;
  padding:5px;
  align-items: center;
}

.button_class_mods {
  border-radius: 25px;
}

#Cap_Rate_Tables{
  height: 100%;
}

.chartBox {
  width: 100%;
  height: 100%;
  min-height: auto;
}

#caprate_buttons{
  margin-top: 12px;
  height: 80px;
  width: 100%;
  border-radius: 3px;
  display: flex;
  overflow-x: scroll;
  overflow-y: none;
}
.propertyTypeSelection button{
  background-color: rgba(163, 163, 163, 0.28);
  color:black;
  border-radius: 2px;
  margin-left:5px;
}

.width-98{
  width: 98% !important;
}
#close_filters{
  background-color: rgba(163, 163, 163, 0.28);
  width: 20px;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  outline: 1px solid #00000024;
}
#pinthemiddle{
  color: black;
  position: relative;
  top: 49%;
  font-weight: 900;
  left: 6px;
  cursor: pointer;
}
#rentalSpan{
  display:flex;
  flex-direction: column;
}



/*
-------------------------------------FOR SALE LISTING STYLES-------------------------------------
*/
.no_pointer_events{
  pointer-events: none;
}

#top_header{
  overflow: hidden;
}
.forsaleheaders{
  display: flex;
  justify-content: center;
}
.forleaseheaders{
  display: flex;
  justify-content: center;
}
.next_button_class{
  margin-left: auto;
  display: flex;
  width: 15%;
  flex-direction: row;
  justify-content: center;

}
.flexcolumn{
  display: flex;
  flex-direction: column;
}
.flexrow{
  display: flex;
  /*flex-direction: column;*/
  justify-content: space-between;
}

.optionpadding{
  padding: 10px
}

#for_sale_listing_div{
  display: flex;
  flex-direction: column;
  padding: 8px;
  font-family: 'Montserrat';
}
.forsaletabcontent{
  display: flex;
  justify-content: space-around;
  background-color: white;
  margin: auto;
  width: 90%;
  padding: 20px;
  overflow-y: scroll;
  border: 1px solid #00000042;
  margin-top: 5px;
  margin-bottom: 20px;
  color: black;
  
}

.forsaletabcontentinside{
  display: flex;
  justify-content: space-around;
  background-color: white;
  margin: auto;
  width: 90%;
  padding: 20px;
  overflow-y: scroll;
  margin-top: 5px;
  margin-bottom: 10px;
  color: black;
}
.forleasetabcontent{
  display: flex;
  justify-content: space-around;
  background-color: white;
  margin: auto;
  width: 90%;
  padding: 20px;
  overflow-y: scroll;
  border: 1px solid #00000042;
  margin-top: 5px;
  margin-bottom: 20px;
  color: black;
  
}

.forleasetabcontentinside{
  display: flex;
  justify-content: space-around;
  background-color: white;
  margin: auto;
  width: 90%;
  padding: 20px;
  overflow-y: scroll;
  margin-top: 5px;
  margin-bottom: 10px;
  color: black;
}
#mytabs{
  z-index: 100;
  padding: 5px;
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  overflow: auto;
  background-color: white;
}

.forsalenav{
  margin: auto;
  padding: 10px;
}
.forleasenav{
  margin: auto;
  padding: 10px;
}

.activetab{
  /*
  box-shadow: 3px 0px 0px 0px black;
  box-shadow: 2px 0px 2px 0px #2f6eff;
  background-color: #1654e505;
  border-right: 5px solid #1654e586;
  */
  /*
  outline: 3px solid #1654e5d3;
  background-color: rgba(22, 229, 22, 0.274);
  border-right: 5px solid rgb(0, 155, 0);
  outline: 3px solid rgba(22, 229, 22, 0.274);
  */
  /*
  background-color: #7b9eee93;
  border-right: 3px solid #1654e5;
  outline: 3px solid #7b9eee93;
  */
  border-radius: 0px 10px 10px 0px;
  z-index: 5;
}
.activetab h5{
  margin: 0;
  color:#2971ee;
}
.next_button_class{
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.forsale_location_error_label_class{
  color:red;
}
.forsale_listing_error_label_class{
  color:red;
}
.forsale_property_error_label_class{
  color:red;
}
.forsale_financial_error_label_class{
  color:red;
}
.forlease_location_error_label_class{
  color:red;
}
.forlease_listing_error_label_class{
  color:red;
}
.forlease_property_error_label_class{
  color:red;
}



.forsaletab{
  padding: 0px 10px;
}

#forsale_header{
  margin: auto;
  padding: 5px;
}
.forleasetab{
  padding: 0px 10px;
}

#forlease_header{
  margin: auto;
  padding: 5px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

/*For background-image*/
#dashboard_background{
  position: relative;
  /* z-index:1;  This option broke safari support???*/
  overflow:hidden; /*if you want to crop the image*/
}

#dashboard_background:before{
  z-index:-1;
  position:absolute;
  left:0;
  top:10;
  content: url('/static/img/image.jpg');
  opacity:0.15;
  filter: saturate(.2);
}
#listing_page{
  position: relative;
  z-index:1;
  overflow:hidden;
}
#listing_page:before{
  z-index:-1;
  position:absolute;
  left:0;
  top:10;
  content: url('/static/img/image_stretched.jpg');
  opacity:0.15;
  filter: saturate(.2);
}


#topBar{
  background-color: rgba(255, 255, 255, 0.815);
}

#small_screen{
  display:none;
}


#emptyPlaceholder{
  display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Phone View */
@media (max-width: 991.98px) {
  body{
    width: 100%;
  }
  #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;
  }
  #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;
}
}
/* @media (max-width: 991.98px) {

  #showmap{
    display:none;
  }
  #searchBar{
    display:none !important;
  }
  #basic_listing_footer{
    display:none;
  }


  #dashboard_background{
    display:none;
  }
  #dashboard_footer{
    display:none;
  }
  #topBar{
    display:none;
  }
  #small_screen{
    width: 50%;
    margin: 5px;
    display: flex;
    flex-direction: column;
  }

  #productWrapper{
    height: auto;
    flex-direction: column;

  }

  .productwrap{
    width:100%;
    margin-top:50px
  }

  #productDescriptions{
    text-align: center;
  }
  #login_before{
    text-align: center;
  }


} */


#dashboardButton:hover{
  box-shadow: inset 0 0 14px 0px rgb(114 170 237);
}
#forgot_pwdButton:hover{
  box-shadow: inset 0 0 14px 0px rgb(114 170 237);
}
#loginButton:hover{
  box-shadow: inset 0 0 14px 0px rgb(114 170 237);
}
#termsButton:hover{
  box-shadow: inset 0 0 14px 0px rgb(114 170 237);
}




/* User_info styles */

#user_info_page{
  display: flex;
}
#user_info_nav{
  border-right: 1px solid black;
  width: 25%;
}
#user_info_Details{
  width: 75%;
}
#user_info_details{
  width: 100%;
  margin: auto;
  color: black;
  overflow-y: scroll;
}
#user_info_options{
  color:black;
}
/* .user_info_nav_item{
  border-bottom: 1px solid black;
} */
#user_info_Wrapper{
  font-family: inherit;
  padding: 10px 0px 10px 0px;
  width: 60%;
  margin: auto;
  margin-bottom: 15px;
}
#user_info_Wrapper input {
  font-family: inherit;
  padding: 5px;
  background-color: white;
  border-radius: 4px;
}
.user_info_active{
  border-bottom: 1px solid black;
  box-shadow: inset 0px -10px 0px 0px rgb(184 201 231);
  text-decoration: underline;
}

#user_info_listings{
  width: 75%;
}


/* start of listings within user_info */

.user_info_forsalenav{
  margin: auto;
  padding: 10px;
}


.user_info_listingtab{
  padding: 0px 10px;
}
#user_info_for_sale_listing_div{
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}


.listing_tab_active{
  color: #15233c;
  box-shadow: inset 0px -10px 0px 0px rgb(184 201 231);
}

#editMode:hover{
  box-shadow: 0px 0px 8px 3px rgb(231,184,184);
}

.forsaletabcontent:hover{
  box-shadow: 0px 0px 10px 2px rgb(184 201 231);
}
.forleasetabcontent:hover{
  box-shadow: 0px 0px 10px 2px rgb(184 201 231);
}

.listing_form_item:hover {
  box-shadow: 2px 2px 2px 0px #3770f5;
  outline: 1px solid #004cff;
}
.listing_form_item:focus {
  box-shadow: 2px 2px 2px 0px #3770f5;
  outline: 1px solid #004cff;
}

/*  */
.checkbox-label {
    display: inline-flex;
    /* width: 200px; */
    /* float: left; */
    /* margin-right: 20px; */
}
.text_box_main_description_class{
    width: 200px;
}
.highlight_text_box_description_class{
width: 100%;
}
.marketing_title_class{
    width: 550px;
}.forsale_financial_error_label_class_class{
    width: 200px;
    height: 100px;
}
#highlights_description_div{
  width: 100%;
}
#main_property_description_input{
 width: 50%; 
}

.modified{
  outline : 3px solid rgb(184 201 231);
}



/* basic listings */

.toplistcomplistings {
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  box-shadow: 0 6px 8px 0px rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.toplistcomplistings:hover {
  outline: 3px solid #8ac7db;
  outline-offset: -3px
}

#toplistcomplistings {
  color: black;
  /* padding: 15px; */
  font-family: inherit;
  font-weight: 600;;
  font-size: small;
  /* border: #cfcfcf 2px solid; */
  width: 100%;
  /* margin: auto; */
  display: flex;
  flex-direction: column;
  /* margin-top: 3.5px; */
  /* margin-bottom: 3.5px; */
  /* height: 150px;*/
}
#subjectCardColumn{
  display: flex;
  flex-direction: column;
  width: 100%;

}
#subjectTop{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-bottom: solid black;
}
#subjectUnder{
  display: flex;
  flex-direction: column;
  height: 50%;
  width: 100%;
  overflow-y: scroll;
}
#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;
}
.bigSize{
  font-weight: bold;
  color: black;
  font-size: 25pt;
}
.mediumSize{
  font-weight: bold;
  color: black;
  font-size: 15pt;
  padding-left: 7%;
  display: flex;
  align-items: baseline;
}
#cardCharts{
  height: 100%;
}
#appChart{
  width: 50%;
}
#capChart{
  width: 50%;
}
.ignoreBold{
  font-weight: unset;
  color: #00000085;
  font-size: 10pt;
}
#topSplitHorizontal_one{
  display: flex;
  justify-content: space-between;
  height: 100%;
  overflow-y: hidden;
  /* border-bottom: 1px solid black; */
}
#topSplitHorizontal_two{
  height: 45%;
}
#topSplitVertical_one{
  width: 50%;
}
#topSplitVertical_two{
  width: 50%;
  height: 100%;
  margin-top: 1.5%;
}
#subDesc{
  border-radius: 5px;
  outline: 1px solid #474e5424;
  resize: none;
  width: 100%;
  border-top: none;
  border-bottom: none;
  border-right: none;
  padding: 8px;
  border-left: none;
  /* background-color: #a7cef647; */
  border-radius: 8px;
  cursor:pointer;
  box-sizing: border-box;
}
#subDesc:hover{
  outline: 1px solid #93c4f4;
  box-shadow: 0 0 6px rgb(44 90 137);
}


#subDesc:focus-visible{
  border:none;
  outline:none;
}
/* #subDesc:hover::-webkit-scrollbar {
  width: 10px;
} */

/* Track */
#subDesc::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
} 
 
/* Handle */
#subDesc::-webkit-scrollbar-thumb {
  background: #8bbff3e6; 
  border-radius: 10px;
}

/* Handle on hover */
#subDesc::-webkit-scrollbar-thumb:hover {
  background: #6da8e4;
  cursor:pointer;
  
}



#subDesc::-webkit-scrollbar{
  background: transparent;
  /* Chrome/Safari/Webkit */
}

#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; */
}





/* 
 */
 /* 
  */

#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;
}






#dropzone {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
}

#dropzone p {
  font-size: 16px;
  font-weight: bold;
}

#dropzone.highlight {
  border-color: #2196f3;
}

#preview {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#preview .image-preview {
  width: 200px;
  height: 200px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
  cursor: pointer;
}

#preview .image-preview:last-child {
  margin-right: 0;
}

#preview .image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#preview:hover{
  box-shadow: 0px 0px 7px 2px #3770f5;
}



.previewoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.previewoverlay:hover {
  display: flex;
}

.previewclose {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

#upload_details{
  margin-bottom: 10px;
}


#spinner {
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #09f;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.gm-style-iw {
  padding: 0 !important;
}

/* Hide the close button on the InfoWindow */
/* .gm-style-iw-t::before {
  content: none !important;
} */

.gm-style-iw button:focus {
  outline: 0;
}

.underline{
  text-decoration: underline;
}

.info_flexrow{
  display: flex;
}

#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;
}


h1, h2, h3, h4, h5, h6, p, textarea {
  font-family: inherit;
}

#valueInput{
  margin: 2% 0px;
  padding: 5px;
}
#valueIncome{
  margin: 2% 0px;
  padding: 5px;
}
#valueCost{
  margin: 2% 0px;
  padding: 5px;
}


#amenities-container {
  display: flex;
  flex-wrap: wrap;
  height: 15%;
  margin-bottom: 15px;
  /* padding-bottom: 15px; */
  overflow-y: scroll;
  outline: 1px solid #00000036;
  padding: 3px;
  border-radius: 2px;

}

#selected-amenities {
  display: flex;
  flex-wrap: wrap;
  /* height: 11%; */
  margin-bottom: 15px;
  /* padding-bottom: 15px; */
  overflow-y: scroll;
  /* outline: 1px solid black; */
}

.amenityOption {
  user-select: none;
  font-weight: 500;
  padding: 5px;
  /* outline: 1px solid black;
*/
  box-shadow: 0px 0px 4px 1px rgb(174 187 225);
  margin: 5px;
  background-color: #167ce508;
  height: 33px;
  cursor: pointer;
  border-radius: 5px;
}

.amenityOption:hover {
  user-select: none;
  box-shadow: 0px 0px 4px 1px rgb(22 84 229);
}



.info-popup {
  position: relative;
  display: inline-block;
}


.info-icon-error {
  display: inline-block;
  width: 20px;
  padding-right: 1px;
  height: 21px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  background-color: #ff0000b0;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  font-size:20px
}

.info-icon {
  display: inline-block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  background-color: #1654e5b0;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  font-size: 15pt;
}

.info-content {
  position: absolute;
  top: 30px;
  left: -10px;
  width: 200px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ccc;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.info-popup:hover .info-content {
  display: block;
}

.next {
  padding: 7px;
  font-size: 25px;
  font-weight: 500;
  box-shadow: 0px 0px 4px 1px rgb(174 187 225);
  background-color: #167ce508;
  color: #666666;
  width: fit-content;
  float: right;
}

.detailsTableHeader{
  text-align: left;
  padding: 10px;
  font-weight: normal;
}

.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); */
}

.participantTableRow:hover{
  color: #77b9fb;
  cursor: pointer;
  /* text-decoration: underline; */
  box-shadow: 0 0 3px 0px rgb(167 206 246);
}

.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;
}

#advanced_filters_toggle{
  cursor: pointer;
}


.databasesearchbutton:hover{
  background-color: #1654e5;
  color: white;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold;
}
.databasesearchbutton{
  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;
}



/* 
.ownerOptions {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  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;
} */

.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;
}

.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;
}







#properties_selection{
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  text-align: center;
}

#properties_selection {
  display: flex;
  flex-wrap: wrap;
}

#properties_selection a {
  width: 33.33%; /* Two columns by default */
}

@media screen and (max-width: 600px) {
  #properties_selection a {
    width: 50%; /* Three columns on smaller screens */
  }
}
@media screen and (max-width: 750px) {
  .popup-content {
      width: 95%;
      .button-container{
        display: flex;
        flex-direction: column;
      }
    }
}

@media screen and (max-width: 400px) {
  #properties_selection a {
    width: 100%; /* One column for very narrow screens */
  }
}


.reportFilter{
  cursor: pointer;
  border-color: black;
  color: black;
  padding: 3px;
  margin: 3px;
}

.buyerReportTableTR{
  background-color: #a7cef661;
}
.buyerReportTableHeader{
  border-bottom: 2px solid black;
  font-weight: bold;
  text-align: center;
}
.buyerReportTableHeader{
  border-bottom: 2px solid black;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  color: black;
  cursor: pointer;
  user-select: none;
}

.buyersasc::after {
  color: #a7cef6;
  content: " ▲"; /* Space before the arrow for better readability */
}

.buyersdesc::after {
  color: #a7cef6;
  content: " ▼"; /* Space before the arrow for better readability */
}



.buyersInput{
  border-radius: 4px;
  color: black;
  font-family: inherit;
  border: 1px solid black;
}
.buyersInput:hover{
  box-shadow: 2px 2px 2px 0px #1654e54f;
  border: 1px solid #a7cef6;
}
.buyersInput:focus{
  box-shadow: 0px 0px 2px 3px #0751ff82;
  border: none;
  outline: 1px solid #a7cef6;
}

#buyersAdvancedFilters{
  display: flex;
  position: absolute;
  background-color: white;
  border: 1px solid black;
  margin-left: 50%;
  /* margin:auto; */
  flex-direction: column;
  width:50%;
  box-shadow: 1px 1px 2px 1px #0000004f;
  padding: 25px;
  border-radius: 7px;
}
#showBuyersInfo{
  display: flex;
  margin: 1% auto;
  border-radius: 6px;
  width: 50%;
  flex-direction: column;
  /* box-shadow: 1px 1px 2px 1px #0000004f; */
}

.noUi-touch-area{
  cursor: pointer !important;
}
.noUi-handle{
  cursor: pointer !important;
}

#showBuyersFilters:hover{
  box-shadow: 2px 2px 4px 2px #1654e54f;
  color: #a7cef6;
}

#buyerbutton{
  background-color: #0000ff00;
  color: black;
  border: 2px solid #a7cef6;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: bold;
}
#buyerbutton:hover{
  background-color: #a7cef6;
  color: black;
  font-size: 11pt;
  border-radius: 3px;
  font-weight: none;
}
.countyOptions{
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 350px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
}
.countyOptions li{
  padding: 8px;
  cursor: pointer;
}

.underline_p{
  text-decoration: none;
  color: #3f89d5;
}
.underline_p:hover{
  text-decoration: underline;
  cursor: pointer;
}

.removeProperty{
  color: red;
  font-weight: bold;
  font-size: 30px;
  line-height: 20px;
  cursor: pointer;
  position: relative;
  top: 2px;
  left: -4px;
  height: fit-content;
}

#extratools{
  cursor: pointer;
}



/* 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%); }
}



@media (max-width: 991.98px) {
  #subjectInfoListing{
    display: none !important;
  }
}

