@import url("./fonts/index.css");

:root {
  --primary-goodman-green-color: #55be00;
  --primary-neon-green-color: #50ff00;
  --primary-pale-green-color: #d3ffbf;
  --primary-neon-purple-color: #6e50ff;
  --primary-white-color: #ffffff;
  --primary-ink-color: #140c39;
  --secondary-access-goodman-green-color: #41aa00;
  --secondary-dark-green-color: #003b29;
  --secondary-purple-color: #3d3778;
  --secondary-red-color: #db4139;
  --secondary-yellow-color: #fdb91d;
  --secondary-blue-color: #00a8b5;
  --tints-purple-50-color: #908dae;
  --tints-ink-15-color: #c2c0cb;
  --tints-ink-2-color: #f5f5fd;
  --tints-neon-20-color: #e2dcff;
  --tints-ink-80-color: #362f51;
  --tints-yellow-10-color: rgba(253, 185, 29, 0.1);
  --tints-yellow-10-access: #e8e1d2;
  --tints-neon-green: #EAFFE0;
}

html,
body,
#viewDiv {
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: founders-grotesk-text-regular, sans-serif;
  overflow: hidden;
  outline: none;
}

#viewDiv {
  border: 8px solid var(--tints-neon-green, #EAFFE0);
}
/* Sidebar is hidden until the map loads successfully */
/* New version does not need the transition */
/* #sidebar-wrapper {
  display: none;
} */

/** Goodman Color Start **/

.bgInk {
  background-color: var(--primary-ink-color, #140c39);
  -webkit-print-color-adjust: exact;
}

.bgWhite {
  background-color: var(--primary-white-color, #ffffff);
  -webkit-print-color-adjust: exact;
}

.goodmanGreen {
  color: var(--primary-goodman-green-color, #55be00);
}

.neonGreen {
  color: var(--primary-neon-green-color, #50ff00);
}

/** TODO: To be removed **/
.bgGreen {
  background-color: #55be00;
  color: #fff;
  -webkit-print-color-adjust: exact;
}

.bgGrey {
  background-color: #5b5b5b;
  color: #fff;
  -webkit-print-color-adjust: exact;
}
/** TODO: To be removed **/

/** Goodman Color End **/

/** Goodman Utility Start **/

.hide {
  display: none !important;
}

/** Goodman Utility End **/

/** Goodman Icons Start **/
.goodman-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.goodman-icon {
  width: 24px;
  height: 24px;
  background-repeat:no-repeat;
  background-size: cover;
  cursor: pointer;
  display: block;
}

.goodman-close-icon {
  background-image: url("../images/Close_Icon.svg");
}

.goodman-download-icon {
  background-image: url("../images/Download_Icon.png");
}

.goodman-print-icon {
  background-image: url("../images/Print_Icon.png");
}

/** Goodman Icons End **/

/** Goodman Checkbox Start **/

.goodman-checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.goodman-checkbox-container label {
  margin-bottom: 0;
  font-family: founders-grotesk-text-regular, sans-serif;
  color: #908dae;
}

.goodman-checkbox-container .goodman-checkbox-input-container {
  position: relative;
  margin-right: 15px;
  height: 20px;
  width: 20px;
}

.goodman-checkbox-container .goodman-checkbox-input-container input[type="checkbox"] {
  opacity: 0;
}

.goodman-checkbox-container .goodman-checkbox-input-container label {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  border: 1px solid #908dae;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.goodman-checkbox-container .goodman-checkbox-input-container label:after {
  content: '';
  position: absolute;
  opacity: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: transparent;
  background-color: #908dae;
  border-top: none;
  border-right: none;
}

.goodman-checkbox-container .goodman-checkbox-input-container label:hover::after {
  opacity: 0.5;
}

.goodman-checkbox-container .goodman-checkbox-input-container input[type=checkbox]:checked+label:after {
  opacity: 1;
}

.goodman-checkbox-container label.goodman-checkbox-label {
  font-family: founders-grotesk-text-regular, sans-serif;
  color: #908dae;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
}

/** Goodman Checkbox End **/ 

/** Goodman Button Start **/

.goodman-button {
  text-align: center;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: founders-grotesk-text-regular, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  cursor: pointer;
  border: none;
} 

.goodman-button-primary {
  background-color: #6e50ff;
  color: #fff;
}

.goodman-button-secondary {
  border: 1px solid #6e50ff;
  background-color: #fff;
  color: #6e50ff;
}

.goodman-button-secondary:focus {
  color: #3d3778;
  border: 1px solid #3d3778;
}

/** Goodman Button End **/

/** Goodman Input Start **/
.goodman-input {
  height: 42px;
  padding: 8px 8px 8px 10px;
  background-color: var(--tints-ink-2-color, #f5f5fd);
  font-family: founders-grotesk-text-regular, sans-serif;
  color: var(--primary-ink-color, #140c39);
}

.goodman-input:focus {
  color: var(--primary-ink-color, #140c39);
  background-color: var(--tints-ink-2-color, #f5f5fd);
  border:none;
  outline: 0;
  box-shadow: none;
}

input[type=text].goodman-input {
  border-radius: 6px;
}

/** Goodman Input End**/

/** Goodman Boostrap Modal Counter Start **/
.modal-header {
  display: none;
}

.modal-dialog {
  width: 297.5mm;
  height: 220.5mm;
  padding: 0;
}

.modal-body {
  padding: 0;
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(20, 12, 57, 0.5);
}

.modal-backdrop.show {
  opacity: 1;
}
/** Goodman Boostrap Modal Counter End **/

/** Goodman custom select start **/

/* Overwrite the standard Select dropdown with Craig's image */
/* .custom-select {
  border: none !important;
  background-size: 84px;
  background-image: url(../images/Dropdown_single.png);
  background-position: 73px;
} */

.goodman-select {
  position: relative;
}

.goodman-select::after {
  content: url("../images/Caret_Icon.svg");
  position: absolute;
  right: 8px;
  top: 9px;
  width: 24px;
  height: 24px;
	pointer-events: none;
}

.goodman-select select {
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;
  min-width: 140px;
  height: 42px;
  padding: 8px 26px 8px 10px;
  border-radius: 6px;
  background-color: var(--tints-ink-2-color, #6e50ff);
  color: var(--primary-ink-color, #fff);
  border: none;
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: left;
}

.goodman-select select:focus {
  outline: none;
}

/** Goodman custom select end **/

/** Goodman Report Start **/
.report-modal .modal-content {
  border-radius: 12px;
  box-shadow: 0 4px 80px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--primary-ink-color,  #140c39);
}

.report-container {
  display: grid;
  grid-template-columns: 1.5fr 2px 2.5fr;
  color: var(--primary-white-color, #fff);
  border-radius: 12px;
}

.report-general-statistic {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.report-section-breaker {
  background-color: var(--secondary-purple-color, #6e50ff);
}

.report-detail-statistic {
  display: grid;
  grid-template-rows: 1fr 2px 1fr
}

.report-property-name {
  text-transform: uppercase;
  font-family: founders-grotesk-text-regular;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  margin-bottom: 8px;
}

.report-property-address {
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: var(--primary-neon-green-color);
  margin-bottom: 48px;
  /* Fixed lines too long issue */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.report-stats-title {
  font-family: founders-grotesk-web-regular;
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.87;
  letter-spacing: normal;
  color: var(--primary-white-color);
  margin-bottom: 8px;
}

.report-stats-label {
  font-family: founders-grotesk-text-medium;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: var(--primary-white-color);
  margin-bottom: 8px;
  text-transform: lowercase;
}

.report-stats-label-noti {
  font-family: founders-grotesk-text-regular;
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: var(--primary-white-color);
  margin-bottom: 8px;
}

.report-stats-label-noti > i {
  margin-right: 8px;
}

/* The live interactive population chart */
.report-population-card-container {
  background-color: var(--secondary-purple-color, #6e50ff);
  padding: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.report-population-card-container .report-population-card-title {
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: left;
  color: var(--tints-ink-2-color, #908dae);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.report-population-card-container .report-population-chart {
  width: 100%;
  /* height: 65mm; */
  height: 215px;
  margin-bottom: -32px;
}

/* The static screenshot version of the population chart */
.report-population-card-container .report-population-chart-img {
  margin-bottom: -32px;
}

.report-mini-map {
  height: 196px;
  width: 100%;
  margin-bottom: 22px;
}

.report-mini-map-screenshot {
  display: none;
  text-align: center;
  margin-bottom: 22px;
}

.report-mini-map-screenshot-image {
  width: 100%;
}

.report-detail-statistic-content {
  padding: 25px 36px;
}

.report-detail-statistic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  height: 32px;
}

.report-detail-statistic-header h5 {
  font-family: founders-grotesk-web-regular;
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: normal;
  color: var(--primary-neon-green-color);
}

.report-detail-statistic-header .report-detail-statistic-cta,
.report-selectors-container {
  display: flex;
}

.report-selectors-container .goodman-select select {
  background-color: var(--secondary-purple-color, #6e50ff);
  color: var(--primary-white-color, #fff);
  min-width: 100px;
}

.report-detail-statistic-header .report-selectors-container .goodman-select {
  margin-right: 16px;
}

.report-detail-statistic-header .report-selectors-container .goodman-select select {
  height: 42px;
}

.report-detail-statistic-header .report-selectors-container .goodman-select::after {
  top: 9px;
}

.report-detail-statistic-header .report-detail-statistic-cta .goodman-icon {
  margin-left: 32px;
}

.report-detail-statistic-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.report-card {
  color: #fff;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 135px;
}

.report-card-img {
  max-height: 23mm;
  max-width: 23mm;
  margin-bottom: 4px;
}

.report-card-title {
  font-family: founders-grotesk-text-medium;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: var(--primary-pale-green-color);
  margin-bottom: 8px;
  text-transform: uppercase;

}

.report-card-text {
  font-family: founders-grotesk-web-regular;
  font-size: 28px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.87;
  letter-spacing: normal;
  text-align: center;
  color: var(--primary-neon-green-color);
  margin: 0
}

.report-container--mini {
  grid-template-columns: 2fr 2px 1fr;
}

.report-container--mini .report-selectors-container {
  margin-bottom: 42px;
}

.report-container--mini .report-selectors-container .goodman-select select {
  min-width: 140px;
}
.report-container--mini .report-general-statistic {
  justify-content: space-between;
  padding: 40px 32px 48px 58px;;
}

.report-container--mini .report-locAdd-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 72px;
}
.report-container--mini .report-property-address {
  margin-bottom: 0;
}

.report-container--mini .report-general-statistic .report-stats-title {
  margin-bottom: 16px;
}

.report-container--mini .report-general-statistic .report-stats-title {
  font-size: 30px;
}

.report-container--mini .report-general-statistic .report-stats-label {
  font-size: 15px;
}

.report-container--mini .report-mini-map {
  margin-top: 8px;
  height: 390px;
}

.report-container--mini .report-mini-map-screenshot {
  margin-top: 8px;
}

.report-container--mini  .report-detail-statistic {
  grid-template-rows: 1fr;
}

.report-container--mini .report-detail-statistic-content {
  padding: 32px 32px 80px 32px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
} 

.report-container--mini  .report-detail-statistic-info {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  justify-content: end;
}

.report-container--mini  .report-detail-statistic-header {
  justify-content: flex-end;
  height: 42px;
}

.report-container--mini .report-card-img {
  max-height: 25mm;
  max-width: 25mm;
}

.report-container--mini .report-card-title {
  margin-bottom: 12px;
}

.report-container--mini .report-card-text{
  font-size: 30px;
}
/** Goodman Report End **/


/**Sidebar**/
input:focus, select:focus {
  /* border: 1px solid var(--secondary-access-goodman-green-color, #41aa00) !important; */
  box-shadow: none !important;
}

.row {
  margin: 0;
  margin-bottom: 24px;
  gap: 16px;
}

.label-row {
  gap: 0;
  align-items: center;
}

.row span {
  margin: 0;
}

.col {
  padding: 0;
}

#sidebar-header {
  display: flex;
  flex-direction: column;
  background-color: var(--tints-neon-green, #EAFFE0);
  padding: 32px 32px 24px;
}

#sidebar-content {
  padding: 32px;
  /* temporary */
  max-height: calc(100% - 255px - 87px);
  overflow-y: auto;
}

#sidebar-footer {
  height: 87px;
  padding: 24px 32px 24px;
  border-top: 2px solid var(--tints-ink-15-color);
}

.title-text {
  font-family: founders-grotesk-web-regular;  
  font-size: 50px;
  line-height: 0.88;
  color: var(--primary-ink-color, #140c39);
  display: flex;
  margin-bottom: 16px;
}

.input-icon{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-icon input {
  height: 42px;
  outline: none;
  padding: 8px 12px;
  width: calc(100% - 60px);
}

input#txtSearch {
  background-color: var(--tints-neon-green, #EAFFE0);
  font-family: founders-grotesk-text-regular !important;
  font-size: 15px;
  line-height: 1.13;
  color:var(--primary-ink-color, #140c39);
  padding-left: 0;
}

input#txtSearch::-moz-placeholder {
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  line-height: 1.13;
  color:var(--primary-ink-color, #140c39);
}

input#txtSearch::placeholder {
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  line-height: 1.13;
  color:var(--primary-ink-color, #140c39);
}


#btnSearch {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.btm-line {
  height: 1px;
  align-self: stretch;
  flex-grow: 0;
  background-color: var(--primary-ink-color, #140c39);
}

.btn-clear {
  background-color: transparent;
  color: var(--primary-neon-purple-color, #6e50ff);
  border: 1px solid var(--primary-neon-purple-color, #6e50ff) !important;
  border-radius: 6px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  height: 38px;
  cursor: pointer;
}


.btn-blue {
  background-color: var(--primary-neon-purple-color, #6e50ff);
  border-radius: 6px;
  height: 38px;
  color: var(--primary-white-color, #ffffff);
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.btn-blue:disabled {
  background-color: var(--tints-purple-50-color, #908dae);
  cursor: no-drop;
}

.btn-clear:disabled {
  color: var(--tints-purple-50-color, #908dae) !important;
  border: 1px solid var(--tints-purple-50-color, #908dae) !important;
  cursor: no-drop;
}
.btn-clear.active {
  background: var(--primary-ink-color, #140c39);
  color: var(--primary-white-color, #ffffff);
  border: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
  margin: 0;
}

.form-group select {
  width: 100%;
  height: 42px;
  font-size: 15px;
  color: var(--primary-ink-color, #140c39);
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

.form-group select option {
  /* padding: 8px; */
  background-color: var(--primary-white-color, #ffffff);
  /* box-shadow: 0 4px 80px 0 rgba(0, 0, 0, 0.2); */
}
.form-group label {
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  line-height: 1.13;
  color: var(--primary-ink-color, #140c39);
}

.form-group select:focus, .form-group input:focus {
  background-color: var(--tints-ink-2-color, #f5f5fd);
}

.form-group input {
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  color: var(--primary-ink-color, #140c39);
  border-radius: 0;
  background-color: var(--tints-ink-2-color, #f5f5fd);
  border: 0;
  border-radius: 6px;
  text-align: left !important;
}

.select-wrapper {
  position: relative;
  height: 42px;
  width: 140px;
  background-color: var(--tints-ink-2-color, #f5f5fd);
  border-radius: 6px;
}

.select-wrapper:after {
    content: '>';
    position: absolute;
    right: 8px;
    top: 8px;
    width: 24px;
    height: 24px;
    text-align: center;
    color: var(--tints-ink-80-color, #362f51);
    pointer-events: none;
    font-size: 15px;
    transform:rotate(90deg) scale(1.0, 1.5);

}

.form-group select:focus, .form-group input:focus {
    background-color: var(--tints-ink-2-color, #f5f5fd);
    border: none;
}


strong {
  font-weight: 500;
}


/* Custom search widget */
/* .input-group-text {
  width: 45px;
  margin-left: -10px;
}

#txtSearch {
  font-size: 14px;
  width: 325px;
  margin-right: 7px;
}

.noBorderRadius {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#imgSearch {
  height: 50px;
  margin-left: -26px;
  cursor: pointer;
  z-index: 1000;
} */

/* #content-wrapper { */
  /* position: absolute; */
  /* top: 25px;
  left: 10px;
  padding-right: 10px;
} */

#error {
  display: none;
}

.errorCard {
  padding: 50px;
}

#btnTour {
  cursor: pointer;
}

#loading {
  display: none;
  margin: 0;
  position: absolute;
  bottom: 30px;
  right: 10px;
  width: 40px;
}

.disabled {
  opacity: 0.35 !important;
}

#areaTabContent {
  background-color: #fff;
  /*padding: 10px;*/
  margin-left: 1px;
}

/* #drivetime-tab, #ring-tab {
  color: var(--secondary-purple-color, #3d3778);
} */

#drivetime-tab.disabled {
  /* background: #727272 !important; */
  cursor: no-drop;
}

.btn-primary {
  background-color: #00afeb;
  border-color: #00afeb;
}

.btn-primary:hover {
  color: #535b51;
  background-color: #00afeb;
  border-color: #535b51;
}

.btn-secondary {
  background-color: #fff;
  border: none;
  color: #727272;
  opacity: 0.2;
}

.btn-secondary.active {
  color: #41aa00 !important;
  background-color: #fff !important;
  border: none;
  opacity: 1.0;
  box-shadow: none !important;
}

/* #btnDistanceMode {
  display: inline-block;
} */

/* Style the right-hand panel */
span.circled {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 30px;
  background-color: #41aa00;
  color: white;
  text-align: center;
  font-size: 20px;
  margin-right: 10px;
}

.nav-tabs {
  border-bottom: none !important;
  gap: 16px;
}

.nav-halfbutton:first-child {
  margin-right: 10px;
}

.nav-link {
  /* background-color: #535b51;
  color: white !important;
  border: none !important; */
  height: 38px;
  background-color: transparent;
  color: var(--secondary-purple-color, #3d3778);
  border: 1px solid var(--secondary-purple-color, #3d3778) !important;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  /*opacity: 0.4;*/
}
.nav-link.active {
  /* background-color: #77ad1c !important; */
  opacity: 1.0;
  /* background: var(--primary-ink-color, #140c39) !important; */
  background-color: var(--secondary-purple-color, #3d3778) !important;
  color: var(--primary-white-color, #ffffff) !important;
  border: none !important;
}

.nav-link:focus {
  outline: none;
}

.nav-link:hover {
  cursor: pointer;
  color: var(--secondary-purple-color, #3d3778);
}


/* Modal */
#header {
  padding-top: 5px;
  height: 10mm;
  width: 100%;
}

.btnClose {
  width: 25px;
  position: absolute;
  right: 9px;
  top: 8px;
}

.headerImage {
  max-width: 65px;
  margin-top: -5px;
}


.miniMapLarge {
  height: 535px;
  width: 100%;
}

.ht90 {
  height: 90mm;
}

.ht50 {
  height: 50mm;
}

.ht45 {
  height: 45mm;
}

.img {
  max-height: 25mm;
  max-width: 25mm;
}

.imgLarge {
  max-height: 30mm;
  max-width: 30mm;
}

.card {
  color: #fff;
  border: none;
  -webkit-print-color-adjust: exact;
  /*margin-top: 15px;*/
  padding-top: 15px;
}

.card-body {
  flex: 1 1 auto;
  padding: 0.25rem 0 0 0;
}

.card-title {
  margin-top: 0.25rem;
  margin-bottom: 0rem;
  height: 10mm;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
}

.card-text {
  font-weight: 500;
  font-size: 30px;
}

small {
  font-family: founders-grotesk-text-medium;
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.92;
  letter-spacing: normal;
  text-align: left;
  color: var(--tints-ink-15-color);
}

.bigText {
  font-size: 45px;
}


/* map popups - copied from https://www.goodman.com/property/global-property-portfolio */

/* Property Map - Popup */
 .property_map_popup_thumb_container {
   cursor: pointer;
   /*max-width: 400px;*/
    margin-bottom: 24px;
}
 .property_map_popup_thumb_container .thumb {
   background: center center no-repeat;
   background-size: cover;
   width: 100%;
   height: 150px;
}
 .property_map_popup_description_container {
   cursor: pointer;
   margin-top: 20px;
}
 .property_map_popup_type {
   padding-bottom: 3px;
   color: #41aa00;
   font-size: 13px;
}
 .property_map_popup_title {
  /* color: #77ad1c;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase; */
  font-size: 22px !important;
  font-family: founders-grotesk-web-regular;
	 font-weight: normal !important;
  line-height: 1.18;
  color: var(--secondary-access-goodman-green-color, #41aa00);
  margin: 0 0 8px !important;    
  text-transform: uppercase;
}
 .property_map_popup_address {
   font-size: 15px !important;
   font-family: founders-grotesk-text-regular;
   /* line-height: 1.13; removed scrolling on the side */
   color: var(--tints-ink-80-color, #362f51);
   margin: 0 !important;
}
 .property_map_container .esriPopup .sizer {
   z-index: auto;
}
 .property_map_container .esriPopup .esriPopupWrapper, .property_map_container .esriPopup .titlePane, .property_map_container .esriPopup .actionsPane {
   background: #fff;
   border-radius: 0;
}
 .property_map_container .esriPopup .titlePane {
   padding-right: 60px;
   color: #41aa00;
   height: 10px;
   z-index: 2;
}
 .property_map_container .esriPopup .title {
   display: inline-block;
   background: #fff;
   z-index: 2;
   position: relative;
   padding-right: 8px;
   line-height: 20px;
}
 .property_map_container .esriPopup .titleButton.prev, .property_map_container .esriPopup .titleButton.next, .property_map_container .esriPopup .titleButton.close {
   background: #fff;
   width: 20px;
   height: 20px;
   text-align: center;
   z-index: 2;
}
 .property_map_container .esriPopup .titleButton.prev::before, .property_map_container .esriPopup .titleButton.next::before, .property_map_container .esriPopup .titleButton.close::before {
   content: '\E5CD';
   line-height: 19px;
   font-size: 15px;
}
 .property_map_container .esriPopup .titleButton.prev {
   right: 40px;
}
 .property_map_container .esriPopup .titleButton.prev::before {
   content: '\E5CB';
}
 .property_map_container .esriPopup .titleButton.next {
   right: 20px;
}
 .property_map_container .esriPopup .titleButton.next::before {
   content: '\E5CC';
}
 .property_map_container .esriPopup .titleButton.close {
   right: 0;
}
 .property_map_container .esriPopup .titleButton.close::before {
   content: '\E5CD';
}
 .property_map_container .esriPopup .titleButton.maximize {
   display: none;
}
 .property_map_container .esriPopup .contentPane {
   padding: 0 10px;
   max-height: none;
   background: #fff;
   z-index: 1;
}

 .property_map_container .esriPopup .actionsPane {
   padding: 0 20px 10px 20px;
   z-index: 1;
}
 .property_map_container .esriPopup .actionsPane a {
   color: #41aa00;
}

.esri-popup__button {
  /* display: none; */
  position: absolute;
  top: -45px;
  right: 0px;
  /* color: var(--secondary-access-goodman-green-color, #41aa00); */
  color: #000;
  background-color: var(--primary-white-color, #ffffff);
  opacity: 0.75;
  padding: 4px;
  margin: 0;
  border-radius: 0;
}

/* .esri-popup__button:hover {
  background-color: var(--primary-white-color, #ffffff);
  opacity: 0.75;
} */

.esri-popup__feature-menu-button, .esri-popup__pagination-previous, .esri-popup__pagination-next {
  top: 0px;
}

.esri-popup__pointer-direction{
  /* transform: scale(0.75, 2) rotate(45deg); */
  transform: scale(1.5, 2) rotate(45deg) !important;
  top: -10px !important;
}

.esri-popup__navigation {
/*  background-color: #fff !important;
  margin: -5px auto -15px auto;*/
  display: none;
}

.esri-popup__footer {
  border: none;
  border-bottom: none !important;
}


.esri-popup__content {
  margin: 0px;
}
.esri-popup__header-title {
	margin: 0;
	padding: 0;
}
.esri-popup__header-title:hover {
	background-color: inherit;
}
/* .esri-popup__header-container--button:hover {
	background-color: inherit;

} */

.esri-popup__header-buttons {
  position: absolute;
  right: 0;
  top: 45px;
}

.esri-icon-close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.esri-square, .esri-square:hover {
  border-radius: 5px;
}

.esri-circle, .esri-circle:hover {
  border-radius: 20px;
}

a.zoomTo {
  color: #41aa00 !important;
  text-decoration: underline !important;
}

/* Craig's design tweaks */

.form-control {
  border: none !important;
}

.input-group-text {
  border: none !important;
}

/*https://stackoverflow.com/a/14218448/906814*/
.styled-select {
  width: 100px;
  height: 17px;
  overflow: hidden;
  overflow: -moz-hidden-unscrollable;
  background: url(images/downarrow_blue.png) no-repeat right white;
  border: 2px double red;
  display: inline-block;
  position: relative;
}

.styled-select select {
  background: transparent;
  -webkit-appearance: none;
  width: 100px;
  font-size: 11px;
  border: 0;
  height: 17px;
  position: absolute;
  left: 0;
  top: 0;
}


.instructions {
  font-size: 15px;
  line-height: 1.13;
  color: var(--tints-ink-80-color, #362f51);
  /*margin-top: 5px;*/
  margin-top: 0;
}

.second-line {
  margin-left: 16px !important;
}

/* .esri-input, .esri-search__submit-button, .esri-search__sources-button, .esri-search__clear-button, .numberField, .distanceChooser, #calculateButtonDiv, #txtSearch, .input-group-text, .saveToSmartSpace {
  background-color: #e9e9e9 !important;
} */

.numberField {
  width: 56px;
  height: 42px;
  border: none;
  /* text-align: center; */
  font-size: 15px;
  line-height: 1.13;
}

.numberField, .distanceChooser {
  font-weight: 400;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}


/* custom checkbox https://stackoverflow.com/a/10271065/906814 */
.traffic_checkbox {
  cursor: pointer;
  /* position: absolute; */
  flex-grow: 0;
  width: 20px;
  height: 20px;
  padding: 3px;
  top: 0;
  left: 0;
  border-radius: 6px;
  margin-right: 16px;
  border: 1px solid var(--tints-ink-80-color, #362f51);
}

.traffic_checkbox:after {
  border: none;
  display: flex;
  align-items: center;
  opacity: 0;
  content: '';
  /* position: absolute; */
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: transparent;
  flex-grow: 0;
  background-color: var(--tints-ink-80-color, #362f51);
}

.traffic_checkbox.checked:after{
  opacity: 1;
}

/*#spanUseTraffic {
  opacity: 0.35;
}*/

/*#spanUseTraffic.checked {
  opacity: 1;
}*/

/* .trafficChooser {
  width: 128px;
  height: 40px;
  border-radius: 2px;
  font-size: 14px;
  background-color: #e9e9e9 !important;
  font-weight: 400;
} */

/* #cboDayOfWeek {
  width: 148px;
  border: none !important;
  background-size: 84px;
  background-image: url(../images/Dropdown_single.png);
  background-position: 94px;
  background-repeat: no-repeat;
} */

/* end custom checkbox*/

.goodmanBtn {
  height: 38px;
}

.distanceChooser {
  width: 128px !important;
  height: 40px;
  border-radius: 2px;
  font-size: 14px;
  margin-top: -4px;
}

/* #imgDistanceMode {
  width: 80px;
} */

#imgInformation {
  height: 24px;
  width: 24px;
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--tints-ink-80-color);
  border-radius: 12px;
  font-weight: bold;
}

.esri-expand {
  background: transparent !important;
  box-shadow: none !important;
}

.esri-widget--button, .esri-widget--button:hover {
  display: none;
  /* background: transparent; */
  height: 40px;
  width: 40px;
  padding: 8px;
  background-color: var(--primary-ink-color, #140c39) !important;
}

/* .esri-widget--button:hover {
  background-color: transparent !important;
} */

.esri-widget {
	font-family: founders-grotesk-web-regular !important;
}

.esri-popup__main-container {
  /* background-color: #fff;
  max-width: 270px !important; */
  padding: 24px !important;
  box-shadow: 0 4px 80px 0 rgba(0, 0, 0, 0.2);
  max-width: 336px;
  max-height: -webkit-max-content !important;
  max-height: -moz-max-content !important;
  max-height: max-content !important;
}

.esri-component {
  box-shadow: none !important;
  margin-bottom: 16px !important;
  background: transparent;
}

.esri-basemap-gallery {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 80px;
  max-height: 100% !important;
  padding: 16px 0;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.8);
}
.esri-basemap-gallery__item {
  padding: 8px 16px;
  gap: 16px;
}

.esri-basemap-gallery__item--selected {
  border: none;
  background-color: var(--primary-pale-green-color) !important;
}

.esri-basemap-gallery__item-title {
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  line-height: 1.13;
  color: var(--tints-ink-80-color);
}

.esri-basemap-gallery__item--selected .esri-basemap-gallery__item-title {
  font-family: founders-grotesk-text-medium;
  font-weight: 500;
}
/* Paint tool */

#paintExpand {
  position: fixed;
  top: 0;
  left: 80px;
  height: 100%;
  width: 300px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.8);
  transition: 250ms ease-in-out;
  /* overflow-y: auto; */
}

#paintExpand > label{
  font-family: founders-grotesk-text-medium;
  font-weight: 500;
  line-height: 1.13;
  color: var(--tints-ink-80-color);
  padding: 32px 24px 24px;
  margin: 0;
}

.top > label, .bottom > label {
  font-size: 15px;
  line-height: 1.13;
  color: var(--tints-ink-80-color);
  padding: 0 24px 16px;
  margin: 0;
}

.top {
  margin-bottom: 32px;
}

.bottom {
  border-top: 2px solid var(--tints-ink-15-color);
  padding-top: 32px;
}

.row-area {
  display: flex;
  gap: 8px;
  /* margin-bottom: 8px; */
  margin: 0 24px 8px;
}

.row-marker {
  display: flex;
  gap: 4px;
  padding: 8px 16px;
}

.btnPaintPolygon {
  cursor: pointer;
  padding: 7px;
  border-radius: 10px;
}

.btnPaintPolygon.active, .btnPaintPolygon:hover {
  outline: 1px solid var(--tints-purple-50-color);
}


/* .imgPaintPolygon {
  width: 100%;
} */

.btnPaintMarker {
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.btnPaintMarker.active, .btnPaintMarker:hover {
  outline: 1px solid var(--tints-purple-50-color);
}

.imgPaintMarker {
  height: 24px;
  width: 24px;
  /* margin-top: 5px; */
}

/* .imgPaintPolygon.active, .imgPaintMarker.active {
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
} */

/* Typeahead */
.tt-input,
.tt-hint {
  width: 334px;
  padding: 8px 12px;
  border-radius: 5px;
  outline: none;
}

/* .tt-input {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
} */

.tt-input, .tt-hint {
    color: var(--primary-ink-color, #140c39);
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    border-radius: 5px;
    outline: none;
}

.tt-menu {
  width: 391px;
  margin-top: 1px;
  /* padding: 8px 0; */
  background-color: var(--primary-white-color, #ffffff);
  box-shadow: 0 4px 80px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 16px 0;
}

.tt-suggestion {
  min-height: 38px;
  font-family: founders-grotesk-text-regular;
  font-size: 15px;
  color: var(--tints-ink-80-color, #362f51);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 345px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  margin: 0;
}

.tt-suggestion.tt-is-under-cursor {
  color: var(--primary-white-color, #ffffff);
  background-color: #0097cf;
}

.tt-suggestion p {
  margin: 0;
}

/* images in the geocode results - pin or plus icons */
.geocodeImagePin {
  width: 16px;
  height: 16px;
  margin-right: 16px;
}

.geocodeImagePlus {
  width: 16px;
  height: 16px;
  margin-right: 16px;
}

.twitter-typeahead {
  display: flex !important;
  width: 100%;
}

.close {
  opacity: 1 !important;
}

/* Report tweaks */
#reportLabel {
  width: 750px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.boundingBox {
  margin-top: 20px;
  margin-right: 15px;
  margin-left: 15px;
  height: 185mm;
  overflow: hidden;
  /*border: 1px dashed orange;*/
}

.tightText {
  margin-top: -20px;
  padding-bottom: 20px;
}

.neatLine {
  border: 0.1mm solid #e9e9e9;
  opacity: 0.5;
}

.horizontalTrim {
  margin-left: 15px;
  margin-right: 0;
  margin-top: 1px;
  margin-bottom: 0;
}

.horizontalTrimLarge {
  margin-left: -56px;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 235px;
  height: 1px;
}

.topLine {
  height: 315px;
  position: absolute;
  left: 389px;
  top: 68px;
}

.bottomLine {
  height: 343px;
  position: absolute;
  left: 389px;
  top: 414px;
}

.topLineLarge {
  position: absolute;
  left: 848px;
  top: 200px;
  z-index: 1000;
  height: 537px;
}

.embiggen {
  max-height: 28mm;
  max-width: 28mm;
}

.nudgeUp {
  padding-top: 5px;
}

#growls-tl {
  top: 10px;
  left: 55px;
}

input[type=text] {
  border-radius: 0;
  font-size: 14px;
}

.saveToSmartSpaceInstructions {
    color: #212529;
    /*font-size: 15px;*/
    margin-left: 5px;
}

/** Tour Related CSS **/

.tour-steps-indicator-container {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.tour-steps-indicator-container > span {
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: 2.8px;
  color: #6e50ff;
  margin-right: 23px;
}

.tour-steps-indicator-container .tour-steps-arrow {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.tour-tour, .popover-header {
  background-color: #fff;
  color: #362f51;
  border-bottom: none;
  border-radius: 0;
}

.popover.tour-tour {
  max-width: none;
  width: 450px;
}

.tour-tour {
  box-shadow: 0px 0px 10px 2px #727272;
  border: none;
}

h3.popover-header {
  font-family: founders-grotesk-web-regular;
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.87;
  letter-spacing: normal;
  text-align: left;
  color: #140c39;
}

.popover-body {
  color: #362f51;
  font-family: founders-grotesk-text-regular, sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: left;
  color: #362f51;
  margin-bottom: 8px;
}

.popover.arrow {
  display: none;
}

.bs-popover-left .arrow::after {
  border-left-color: #fff;
}

.bs-popover-right .arrow::after {
  border-right-color: #fff;
}

#step-4, #step-5 {
  left: 25px !important;
}

.link, .link:visited {
  color: #362f51;
  font-family: founders-grotesk-text-medium, sans-serif;
}

.link:hover {
  color: #6e50ff;
}

/** Goodman modal start **/
.goodman-modal {
  width: 613px;
  height: auto;
}

.goodman-modal .modal-content {
  min-height: 419px;
  background-color: #ffffff;
  padding: 16px 24px 35px 16px;
  border-radius: 0;
}

.goodman-modal .goodman-modal-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.goodman-modal .goodman-modal-header .goodman-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 0px;
}

.goodman-modal .goodman-modal-header .goodman-close-icon {
  margin-top: 8px;
}

.goodman-modal .goodman-modal-content,
.goodman-modal .goodman-modal-footer {
  padding: 0 70px 0 86px;
}

.goodman-modal .goodman-modal-content {
  margin-bottom: 40px;
}

.goodman-modal .goodman-modal-content h4,
.goodman-modal .goodman-modal-content p {
  margin: 0;
}

.goodman-modal .goodman-modal-content h4 {
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.87;
  letter-spacing: normal;
  text-align: left;
  color: #140c39;
  margin-bottom: 32px;
  font-family: founders-grotesk-web-regular, sans-serif;
}

.goodman-modal .goodman-modal-content p {
  font-family: founders-grotesk-text-regular, sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: left;
  color: #362f51;
  margin-bottom: 16px;
}

/** Goodman modal end **/

/** Tour Style Start **/

.tour-popup-navigation {
  display: flex;
  justify-content: flex-end;
}

.tour-popup-navigation > .tour-steps-indicator-container > span {
  font-size: 20px;
}

.tour-popup-navigation > .tour-steps-indicator-container .tour-steps-arrow {
  width: 24px;
  height: 24px;
}

.tour-popup-cta-container {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0.75rem 0 0.75rem;
}

.tour-popup-cta-container > .goodman-close-icon {
  height: 24px;
}

.tour-splash-modal .goodman-modal-footer {
  display: flex;
  justify-content: space-between;
}

/** Tour Style End **/

/** Save To SmartSpace Modal start **/

.save-to-smartspace-modal h6 {
  font-family: founders-grotesk-text-medium, sans-serif;
  font-size: 15px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: var(--tints-ink-80-color);
  margin-bottom: 18px;
}

/** Save To SmartSpace Modal end **/

/** Polygon Color Start **/

.polygon-color {
  width: 64px;
  height: 64px;
  border-radius: 32px;
}

.polygon-color--goodmanGreen {
  background-color: var(--primary-goodman-green-color, #55be00);
}

.polygon-color--neonGreen {
  /* background-color: var(--primary-neon-green-color); */
  background-color: var(--primary-goodman-green-color, #55be00);
}

.polygon-color--darkGreen {
  background-color: var(--secondary-dark-green-color, #003b29);
}

.polygon-color--purple {
  background-color: var(--secondary-purple-color, #3d3778);
}

.polygon-color--red {
  background-color: var(--secondary-red-color, #db4139);
}

.polygon-color--yellow {
  background-color: var(--secondary-yellow-color, #fdb91d);
}

.polygon-color--blue {
  background-color: var(--secondary-blue-color, #00a8b5);
}

/** Polygon Color End **/

/** Save to SmartSpace Dialog - Start **/
.save-to-smartsave-modal {
  width: 613px;
  height: auto;
}

/** Save to SmartSpace Dialog - End **/

/** Media Queries Style Start **/

/* Printing https://stackoverflow.com/questions/12181760/twitter-bootstrap-print-content-of-modal-window */
@media screen {
  #printSection, #populationChartImg {
    display: none;
  }
}

@media print {
  body * {
    visibility:hidden;
  }
  .modal-footer {
    visibility: hidden;
  }
  #printSection, #printSection * {
    visibility:visible;
  }
  #printSection {
    position:absolute;
    left:0;
    top:0;
  }

  .noPrint, .noPrint *{
    display: none !important;
  }

  .includePrint {
    display: block !important;
  }

  #populationChartImg {
    display: block;
  }

  .report-container {
    border-radius: 0px;
  }
}

@media (min-width: 576px) {
  /* Make the modal full-screen https://stackoverflow.com/a/48879012/906814 */
  .modal-dialog { max-width: none; }
}

/** Media Queries Style End **/

/*# sourceMappingURL=sourcemaps/styles.css.map */
