#mobileBar {
  width: 100%;
  height: 75px;
  background-color: orange;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s;
}
#mobileBar ul {
  display: flex;
  height: 100%;
  width: 100%;
  text-align: center;
}
#mobileBar ul li {
  flex: 1;
  background-color: #FF7F00;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  height: 100%;
  list-style-type: none;
  width: 100%;
  transition: 0.5s;
}
#mobileBar ul li:hover {
  background-color: #fff;
  color: #FF7F00;
}
#mobileBar ul li a {
  display: block;
  height: 100%;
  width: 100%;
  color: white;
  padding-top: 10px;
  transition: 0.5s;
}
#mobileBar ul li a .cls-1,
#mobileBar ul li a .cls-2 {
  transition: 0.5s;
  fill: white;
}
#mobileBar ul li a:hover {
  background-color: #fff;
  color: #FF7F00;
}
#mobileBar ul li a:hover .cls-1,
#mobileBar ul li a:hover .cls-2 {
  fill: #FF7F00;
}
#mobileBar ul li a svg {
  max-width: 35px;
  fill: white;
}

.clicked-link {
  background-color: #fff;
  color: #FF7F00 !important;
}
.clicked-link .cls-1,
.clicked-link .cls-2 {
  fill: #FF7F00 !important;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10;
  transition: 0.5s;
  display: none;
}

#navigation {
  background-color: white;
  width: 100vw;
  position: fixed;
  bottom: -750px;
  left: 0;
  z-index: 2;
  overflow-y: scroll;
  overflow-x: none;
  transition: 0.5s;
}
#navigation .nav-header {
  background-color: #FF7F00;
  color: white;
  padding: 15px;
}
#navigation .nav-header h3 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
#navigation .nav-header #address {
  display: none;
}
#navigation .nav-list #navActions {
  display: none;
}
#navigation .nav-list li {
  height: 50px;
  border-bottom: 0.1px solid #eeeeee;
}
#navigation .nav-list li:last-of-type {
  border-bottom: none;
}
#navigation .nav-list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  transition: 0.5s;
}
#navigation .nav-list li a img,
#navigation .nav-list li a svg {
  max-width: 25px;
  margin-right: 10px;
  vertical-align: middle;
}
#navigation .nav-list li a img .cls-1,
#navigation .nav-list li a svg .cls-1 {
  fill: #FF7F00;
}
#navigation .nav-list li a:hover {
  background-color: #eeeeee;
}
#navigation .nav-list li a .active {
  background-color: #eeeeee;
}

.show-nav {
  bottom: 75px !important;
  z-index: 1001 !important;
}

@media screen and (min-width: 1000px) {
  #overlay {
    display: none !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #eeeeee;
}

a {
  text-decoration: none;
  color: #707070;
}

p {
  font-size: 15px;
}

#page-display {
  padding-bottom: 100px;
}

.page {
  background-color: white;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.page-cont {
  padding: 25px;
}

.page-header {
  background-color: #5C5C5C;
  color: white;
  font-size: 30px;
}

.header-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  padding: 25px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.bigger-header-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  padding: 50px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  text-align: center;
}

.thin {
  font-weight: 300;
}

.gradient-border {
  height: 15px;
  background: linear-gradient(to right, #FF7F00, #FFC400);
}

.orange-border {
  height: 10px;
  background: #FF7F00;
  width: 150px;
  margin-bottom: 25px;
}

.greybox {
  border: 0.25px solid #e0e0e0;
  background-color: #eeeeee;
  color: #5C5C5C;
  text-align: center;
  padding: 25px;
}
.greybox h1 {
  padding-bottom: 0 !important;
}
.greybox h2 {
  color: #FF7F00;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.subheader {
  padding: 10px;
  background: linear-gradient(to right, #FF7F00, #FFC400);
  text-align: center;
  color: white;
  margin-top: 25px;
}
.subheader:nth-of-type(1) {
  margin-top: 0;
}

.title-block,
.title-inline {
  font-weight: 900;
  color: #FF7F00;
}

.title-block,
.p-block,
.title-inline,
.p-inline {
  display: block;
  line-height: 25px;
}

.p-inline::after {
  content: " ";
  display: block;
}

.p-inline,
.p-block {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 5px;
  padding-bottom: 8px;
}
.p-inline:last-of-type,
.p-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.third {
  border-top: 1px solid #e0e0e0;
  padding-top: 5px;
}
.third:nth-of-type(1) {
  border-top: none;
}

@media screen and (min-width: 768px) {
  .flex {
    display: flex;
  }

  .flex-item {
    flex: 1;
  }

  .third {
    text-align: left;
    border-left: 1px solid #707070;
    border-top: none;
    padding-left: 25px;
    padding-top: 0;
  }
  .third:nth-of-type(1) {
    border: none;
    padding: 0;
  }

  .title-inline,
.p-inline {
    display: inline;
  }

  .p-inline,
.p-block {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .title-block,
.p-block {
    text-align: left;
  }
}
@media screen and (min-width: 1000px) {
  body {
    display: grid;
    grid-template-columns: minmax(350px, 30%);
    grid-template-areas: "nav page-display";
    height: 100%;
    overflow: hidden;
  }

  #mobileBar {
    display: none !important;
  }

  #navigation {
    grid-area: nav;
    display: block;
    position: relative !important;
    width: 100% !important;
    height: 100vh;
    top: 0;
    left: 0;
  }

  #navigation .nav-header #apn {
    margin-bottom: 5px;
  }

  #navigation .nav-header #address {
    display: block;
    margin-left: 10px;
  }

  #page-display {
    grid-area: page-display;
    overflow-y: scroll;
    height: 100vh;
    padding: 25px;
    padding-top: 0;
  }

  #navActions {
    display: flex !important;
    flex-wrap: wrap;
    position: absolute !important;
    bottom: 50px !important;
    width: 100%;
  }
  #navActions .action-link {
    width: 25% !important;
    flex: 1 1 0px;
    padding: 0 !important;
    text-align: center !important;
    box-sizing: border-box !important;
    height: 100px !important;
    padding-top: 15px !important;
  }
  #navActions img,
  #navActions svg {
    max-height: 50px !important;
    max-width: 95% !important;
    margin-right: 0 !important;
  }
}
.cover-header {
  background-image: url("../../img/cover-header.jpg");
  background-size: cover;
  background-position: center;
}
.cover-header h1 {
  color: white !important;
  font-size: 35px;
}

.cover-cont {
  padding: 25px;
}
.cover-cont h1 {
  color: #707070;
  padding-bottom: 15px;
}
.cover-cont .greybox {
  margin: 25px auto;
}

.cover-disclaimer {
  background-color: #5C5C5C;
  color: white;
  text-align: center;
}
.cover-disclaimer p {
  font-size: 10px;
}

#packageHighlights {
  display: none;
}
#packageHighlights .flex {
  display: flex;
}
#packageHighlights .half {
  padding: 10px;
  text-align: left;
  flex: 1;
}
#packageHighlights .half p {
  margin: 10px auto;
}
#packageHighlights img,
#packageHighlights svg {
  max-width: 25px;
  margin-right: 10px;
  vertical-align: middle;
  fill: #FF7F00;
}

.company-logo img {
  max-width: 200px;
  max-height: 100px;
}

@media screen and (min-width: 768px) {
  #prop-address,
#apn {
    flex: 1;
    margin: 10px;
  }

  .company-logo,
.repInfo {
    flex: 1;
    margin: 10px;
  }

  .repInfo {
    border-left: 1px solid #707070;
  }

  .page {
    margin: 25px auto;
    max-width: 1063px;
  }
}
.profile-header {
  background-image: url("../../img/property-profile-back2.jpg");
  background-size: cover;
  background-position: center;
}

.prop-data2 {
  border-top: 1px solid #e0e0e0;
  padding-top: 5px;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .prop-data2 {
    text-align: left;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .prop-data1 {
    flex: 1;
  }

  .prop-data2 {
    flex: 2;
    padding-left: 25px;
    border-left: 1px solid #707070;
  }
}
.sComp-header,
.sComp-count {
  color: #707070;
  padding: 25px;
  font-size: 35px;
  display: inline-block;
  padding-bottom: 0;
}

.sComp-header {
  width: 70%;
}

.sComp-count {
  width: 29%;
  text-align: right;
  color: #FF7F00;
}
.sComp-count span {
  font-size: 25px;
  color: #707070;
}

@media screen and (min-width: 768px) {
  .two-part-subheader {
    display: flex;
  }
  .two-part-subheader h4:first-of-type {
    flex: 2;
    text-align: left;
  }
  .two-part-subheader h4:last-of-type {
    flex: 1;
    text-align: right;
  }
}
#compMapCanvas {
  background-color: #eeeeee;
  height: 480px;
  width: 700px;
  margin: auto;
}

.sComp-table {
  width: 100%;
  text-align: center;
  background: #eeeeee;
  border-collapse: collapse;
  color: #707070;
  font-size: 15px;
  margin-bottom: 50px;
}
.sComp-table th,
.sComp-table td {
  padding: 10px;
  border: 1px solid #e0e0e0;
}
.sComp-table tbody {
  display: table;
  width: 100%;
}

.th-orange {
  color: #FF7F00;
}

@media screen and (max-width: 768px) {
  .sComp-table {
    display: block;
  }
  .sComp-table th, .sComp-table td, .sComp-table tr, .sComp-table tbody {
    display: block;
    width: 100%;
  }
  .sComp-table .tHead {
    display: none;
  }
  .sComp-table td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  .sComp-table td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  .sComp-table #assessedLow:before,
.sComp-table #transferLow:before,
.sComp-table #sqftLow:before,
.sComp-table #costSqftLow:before,
.sComp-table #bedLow:before,
.sComp-table #bathLow:before,
.sComp-table #yearLow:before,
.sComp-table #lotLow:before {
    content: "Low";
  }
  .sComp-table #assessedAve:before,
.sComp-table #transferAve:before,
.sComp-table #sqftAve:before,
.sComp-table #costSqftAve:before,
.sComp-table #bedAve:before,
.sComp-table #bathAve:before,
.sComp-table #yearAve:before,
.sComp-table #lotAve:before {
    content: "Average";
  }
  .sComp-table #assessedHigh:before,
.sComp-table #transferHigh:before,
.sComp-table #sqftHigh:before,
.sComp-table #costSqftHigh:before,
.sComp-table #bedHigh:before,
.sComp-table #bathHigh:before,
.sComp-table #yearHigh:before,
.sComp-table #lotHigh:before {
    content: "High";
  }

  #compMapHeader,
  #compMapCanvas {display: none;}
}

.nearby-header {
  background-image: url("../../img/neighborhood.jpg");
  background-size: cover;
  background-position: center;
}
.nearby-header .bigger-header-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.nearby-cont .greybox {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .nearby-cont {
    display: flex;
    flex-wrap: wrap;
  }
  .nearby-cont .greybox {
    width: 48%;
    margin: 1%;
    text-align: left;
  }
  .nearby-cont .greybox h2 {
    font-size: 15px;
    font-weight: 900;
  }
}
.plat-page {
  min-height: 500px;
  background-image: url("../../img/platmap.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}
.plat-page .page-cont {
  position: relative;
  text-align: center;
}
.plat-page .page-cont h1 {
  font-size: 35px;
  padding: 50px;
}
.plat-page .page-cont .greybox {
  width: 90%;
  margin: 0px auto 50px auto;
}
.plat-page .page-cont .greybox img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  max-height: 750px;
}

.full-page-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.aerial-header {
  background-image: url("../../img/aerial.jpg");
  background-size: cover;
  background-position: center;
}
.aerial-header .bigger-header-overlay {
  background-color: rgba(26, 7, 0, 0.6);
}
.aerial-header .bigger-header-overlay h1 {
  border-bottom: 3px solid #FF7F00;
  width: initial;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.street-header {
  background-image: url("../../img/street.jpg");
  background-size: cover;
  background-position: center;
}
.street-header .bigger-header-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.street-header .bigger-header-overlay h1 {
  border-bottom: 3px solid #FF7F00;
  width: initial;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

#aerialMapCanvas,
#streetViewMapCanvas {
  width: 100%;
  min-height: 600px;
  background-color: #e0e0e0;
}

.history-data .half .title-inline {
  color: #707070;
}

.inline-with-doc {
  border-top: 1px solid #e0e0e0;
  margin-top: 5px;
  padding-top: 10px;
}
.inline-with-doc .title-inline,
.inline-with-doc .p-inline,
.inline-with-doc .view-doc-btn {
  display: inline;
}
.inline-with-doc .p-inline::after {
  content: "";
  display: none;
}
.inline-with-doc .view-doc-btn {
  font-size: 13px;
  background-color: #e0e0e0;
  padding: 1px 10px;
  border-radius: 50px;
  transition: 0.5s;
  margin-left: 25px;
}
.inline-with-doc .view-doc-btn:hover {
  background-color: #FF7F00;
  color: white;
}

@media screen and (min-width: 768px) {
  .history-data .half {
    flex: 1;
    text-align: left;
  }
  .history-data .half:nth-of-type(2) {
    border-left: 1px solid #707070;
    padding-left: 15px;
  }

  .inline-with-doc {
    border-top: none;
    margin-top: 0px;
    padding-top: 0px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 50px;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  text-align: center;
}
.modal-content form {
  text-align: left;
}
.modal-content form .print-check {
  margin-right: 10px;
}
.modal-content h1 {
  color: #FF7F00;
}
.modal-content h2 {
  color: #707070;
}
.modal-content button {
  background-color: white;
  width: 100px;
  border: 1px solid #FF7F00;
  outline: none;
  color: #FF7F00;
  padding: 10px;
  cursor: pointer;
  margin: 25px auto;
  transition: 0.5s;
  border-radius: 10px;
}
.modal-content button:hover {
  background-color: #2e76f6;
  color: white;
  border: 1px solid #2e76f6;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.close {
  color: #FF7F00;
  float: right;
  font-size: 28px;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: right;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-btn-cont {
  text-align: center;
}
.modal-btn-cont button {
  background-color: #FF7F00;
  color: white;
  border: none;
  transition: 0.5s;
  border-radius: 10px;
}
.modal-btn-cont button:hover {
  background-color: #2e76f6;
  border: none;
}

#langdropdown {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #FF7F00;
  margin: 25px auto;
}
#langdropdown:active, #langdropdown:focus {
  border: 1px solid #2e76f6;
}

@media print {
  body {background-color: #ffffff;}

  .hist-cont .subheader {
    margin-top: 10px;
  }

  @page {
    margin: 0;
  }
  p,
a,
th,
td,
.p-inline,
.title-inline,
.p-block,
.title-block {
    font-size: 12px !important;
    line-height: 13px !important;
  }

  .flex {
    display: flex;
  }

  .flex-item {
    flex: 1;
  }

  .third {
    text-align: left;
    border-left: 1px solid #707070;
    border-top: none;
    padding-left: 25px;
    padding-top: 0;
  }
  .third:nth-of-type(1) {
    border: none;
    padding: 0;
  }

  .title-inline,
.p-inline {
    display: inline;
  }

  .p-inline,
.p-block {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .title-block,
.p-block {
    text-align: left;
  }

  #prop-address,
#apn {
    flex: 1;
    margin: 10px;
  }

  .page {
    margin: 25px auto;
    max-width: 1063px;
  }

  .history-data .half {
    flex: 1;
    text-align: left;
  }
  .history-data .half:nth-of-type(2) {
    border-left: 1px solid #707070;
    padding-left: 15px;
  }

  .inline-with-doc {
    border-top: none;
    margin-top: 0px;
    padding-top: 0px;
  }

  .nearby-cont {
    display: flex;
    flex-wrap: wrap;
  }
  .nearby-cont .greybox {
    width: 48%;
    margin: 1%;
    text-align: left;
  }
  .nearby-cont .greybox h2 {
    font-size: 15px;
    font-weight: 900;
  }

  .prop-data2 {
    text-align: left;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .prop-data1 {
    flex: 1;
  }

  .prop-data2 {
    flex: 2;
    padding-left: 25px;
    border-left: 1px solid #707070;
  }

  .two-part-subheader {
    display: flex;
  }
  .two-part-subheader h4:first-of-type {
    flex: 2;
    text-align: left;
  }
  .two-part-subheader h4:last-of-type {
    flex: 1;
    text-align: right;
  }

  #navigation,
#mobileBar {
    display: none !important;
  }

  #packageHighlights {
    display: block;
  }

  .page {
    page-break-after: always;
    page-break-inside: avoid;
    margin: 0;
    box-shadow: none;
    height: 1055px;
  }

  .page:last-child {
    page-break-after: auto;
  }

  .greybox {
    padding: 10px;
  }

  #page-display {
    padding-bottom: 0px !important;
  }

  .cover-disclaimer {
    position: absolute;
    bottom: 0;
  }

  .page-cont {
    padding: 25px 50px 50px 50px;
  }

  #salesComp .subheader {
    margin-top: 15px;
  }

  .printhide,
.modal {
    display: none !important;
  }

  .company-logo,
.repInfo {
    display: inline-block;
    width: 49%;
  }

  .print-break {
    page-break-before: always;
  }

  .print-break::after{
    content: " break ";
    height: 40px;
    background: white;
    color: white;
  }
}

/*# sourceMappingURL=stylesheet.css.map */
