/*** Add shortcuts for media queries based on the bootstrap screen sizes  ****/
/** Can be called like this:
  +media-xs
    background-color: yellow
  +media-sm
    background-color: blue
  +media-md
    background-color: red
  +media-lg
    background-color: green
**/
/**************************
	transition mixins
**************************/
/**********************
	flex mixins 
**********************/
/**********************
	navbar
**********************/
/** container - holds map and detail pane **/
.page-template-openlayers-page .nav.navbar-default, .page-template-openlayers-page nav.navbar-flex, .page-template-openlayers-page nav.navbar {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

body {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

.eMap {
  height: 100%;
  width: 100%;
}

/** controls **/
.eMapControl {
  color: whitesmoke;
  font-size: 13px;
  font-family: Arial;
}

.eMapControl ul {
  list-style-type: none;
  color: whitesmoke;
  margin: 0;
  padding: 0;
}

/**
  native openlayers controls
  */
.eMap .ol-zoom {
  top: 10px;
}

.eMap .ol-zoom .ol-zoom-out {
  margin-top: 150px;
}

.eMap .ol-zoomslider {
  background-color: transparent;
  top: 39px !important;
  height: 146px;
}

.eMap .ol-touch .ol-zoomslider {
  top: 47px !important;
}

.eMap .ol-zoomslider-thumb {
  background: rgba(0, 0, 0, 0.85);
}

.eMap .ol-control button {
  background: rgba(0, 0, 0, 0.85);
}

.eMap .ol-control {
  background: rgba(255, 255, 255, 0.6);
}

.eMap .ol-touch .ol-rotate {
  display: none;
}

/**
	media queries
	*/
/** mobile devices (not tablets) **/
@media only screen and (max-device-width: 480px) {
  .eMap .ol-zoom, .eMap .ol-zoomslider, .eMap .ol-attribution, .eMap .ol-rotate {
    display: none;
  }
}
.pictureGallery {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0px;
  padding: 0px;
  background-color: rgba(0, 0, 0, 0.85);
  border-right: 1px solid whitesmoke;
  z-index: 99999;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.pictureGalleryWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.pictureGalleryImages {
  height: 100%;
  min-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}

.pictureGalleryImage {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100vw;
  border-bottom: 1px solid whitesmoke;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pictureGalleryNavigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
  padding: 10px;
}

.pictureGalleryWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.pictureGalleryThumbnails {
  height: 100%;
  min-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}

.pictureGalleryThumbnail {
  height: 75px;
  width: 75px;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
}

.pictureGalleryThumbnail.selected {
  border: 1px solid whitesmoke;
  opacity: 1;
}

.pictureGalleryThumbnail:hover {
  border: 1px solid yellow;
  cursor: pointer;
  opacity: 1;
}

.pictureGalleryThumbnail.touch:hover {
  border: 1px solid transparent;
}

.pictureGalleryThumbnail.touch.selected {
  border: 1px solid whitesmoke;
}

.pictureGalleryNext {
  height: 87px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0.5;
}

.pictureGalleryNext:hover {
  cursor: pointer;
  opacity: 1;
}

@media (hover: none) {
  .pictureGalleryThumbnail {
    border: 1px solid transparent;
  }
}
.pictureGalleryNext img {
  width: 50px;
  height: 50px;
}

.pictureGalleryBack {
  height: 87px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0.5;
}

.pictureGalleryBack:hover {
  cursor: pointer;
  opacity: 1;
}

.pictureGalleryBack img {
  width: 50px;
  height: 50px;
}

.pictureGalleryClose {
  right: 10px;
  top: 0px;
  position: absolute;
  color: white;
  text-align: center;
  padding: 3px;
  width: 20px;
  font-family: arial;
  font-weight: bold;
  font-size: 22px;
  opacity: 0.75;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pictureGalleryClose:before {
  content: "X";
}

.pictureGalleryClose:hover {
  color: yellow;
  cursor: pointer;
}

/**
	panel
	*/
.panelContainer {
  border-radius: 0px;
  max-width: 320px;
  height: 100%;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  color: whitesmoke;
  overflow-x: hidden;
  color: whitesmoke;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: max-width 0.5s ease-in-out, max-height 0.5s ease-in-out;
  transition: max-width 0.5s ease-in-out, max-height 0.5s ease-in-out;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panelContainer.closed {
  max-width: 0px;
}

.panelWrapper {
  width: 320px;
  height: 100%;
  overflow: hidden;
}

.panelWrapper .panels {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

.panelWrapper .panels.nodelay {
  -webkit-transition: none;
  transition: none;
}

/** inidivual panel styling **/
.panelContainer .panel {
  border-radius: 0px;
  width: 320px;
  height: 100%;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 13px;
  font-family: Arial;
}

.panelContainer .panel .panelHeader {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid whitesmoke;
  padding: 7px 10px;
}

.panelContainer .panel .panelHeader .panelTitle {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.panelContainer .panel .panelHeader .panelBack {
  font-weight: normal;
  text-align: left;
  font-size: 13px;
}

.panelContainer .panel .panelHeader .panelBack:before {
  content: "< Back";
}

.panelContainer .panel .panelHeader .panelBack:hover {
  cursor: pointer;
  color: yellow;
  border-color: yellow;
}

.panelContainer .panel .panelHeader .panelClose {
  font-weight: normal;
  font-size: 13px;
  text-align: right;
  padding: 2px 5px;
  margin-left: 20px;
}

.panelContainer .panel .panelHeader .panelClose:before {
  content: "Close";
}

.panelContainer .panel .panelHeader .panelClose:hover {
  cursor: pointer;
  color: yellow;
  border-color: yellow;
}

.panelContainer .panel .panelElement {
  position: relative;
  /* -webkit-overflow-scrolling:touch; */
  overflow-y: scroll;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/** mobile devices (not tablets) **/
@media only screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }

  .panelContainer {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .panelContainer.closed {
    max-height: 0px;
    max-width: 100%;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
  }

  .panelContainer .panelWrapper {
    width: 100%;
  }

  .panelContainer .panelWrapper .panel {
    width: 100%;
  }
}
.ol-control .fa {
  font-size: 1.5em;
  display: block;
  text-align: center;
}
.ol-control.ol-zoomslider {
  width: 28px !important;
  left: 0.6em;
}
.ol-control .ol-zoomslider-thumb {
  width: 100%;
  margin-left: 0px;
  height: 12px;
}
.ol-control .ol-zoom-out, .ol-control .ol-zoom-in {
  font-size: 1.4em;
  height: 1.2em;
}

.panelContainer .panel ul.detail {
  width: 100%;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  position: relative;
}

.panelContainer .panel ul.detail li {
  padding: 0px 15px;
  margin: 0;
  position: relative;
  list-style-type: none;
}

.panelContainer .panel ul.detail li.gallery {
  margin-top: 10px;
}

.panelContainer .panel ul.detail li:nth-child(3) {
  margin-top: 3px;
}

.panelContainer .panel ul.detail li:nth-child(n+3) {
  padding: 1px 15px;
}

/* the summary row container */
.panelContainer .panel ul.detail li.summary {
  border-bottom: 1px solid whitesmoke;
  padding: 5px 15px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.panelContainer .panel ul.detail li.virtual-tour {
  border-bottom: 1px solid whitesmoke;
  padding: 5px 15px 7px 15px;
  text-align: center;
  color: cornflowerblue;
}

.panelContainer .panel ul.detail li.summary div {
  margin-bottom: 3px;
}

.panelContainer .panel ul.detail li.summary div:only-child {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.panelContainer .panel ul.detail li.summary div.street1 {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 14px;
  width: 60%;
}

.panelContainer .panel ul.detail li.summary div.price_view {
  text-align: right;
  font-weight: bold;
  color: yellow;
  font-size: 14px;
  width: 40%;
}

.panelContainer .panel ul.detail li.summary div.neighborhood {
  width: 40%;
}

.panelContainer .panel ul.detail li.summary div.builder {
  white-space: nowrap;
  text-align: right;
  width: 60%;
}

.panelContainer .panel ul.detail img {
  width: 100%;
}

.panelContainer .panel ul.detail .thumbnail {
  text-align: center;
}

.panelContainer .panel ul.detail .thumbnail:hover {
  cursor: pointer;
}

.panelContainer .panel ul.detail .thumbnail:hover div {
  text-decoration: underline;
}

.panelContainer .panel ul.detail label {
  font-weight: bold;
  margin-right: 5px;
}

.eMapControl.fullscreen {
  position: static;
}

/**
	gallery
	*/
.panelContainer .panel ul.detail li.gallery {
  padding: 0px;
}

.panelContainer .panel div.gallery div.galleryNav {
  position: absolute;
  width: 32px;
  text-align: center;
  z-index: 10;
  top: 70px;
  margin-top: 0px;
  opacity: 0.5;
  border-radius: 16px;
  padding: 5px;
}

.panelContainer .panel div.gallery .galleryNav:hover {
  background-color: black;
  opacity: 0.55;
}

.panelContainer .panel div.gallery .galleryNav.galleryBack {
  left: 0;
  margin-left: 0px;
}

.panelContainer .panel div.gallery .galleryNav.galleryNext {
  right: 0;
  margin-right: 0px;
}

.panelContainer .panel div.gallery .galleryNav:hover {
  cursor: pointer;
  background: rgba(255, 0, 0, 0.5);
}

.panelContainer .panel div.gallery .galleryWrapper {
  overflow: hidden;
  min-width: 0px;
  width: auto;
  height: auto;
  margin-left: 20px;
  margin-right: 20px;
}

.panelContainer .panel ul.detail div.gallery .galleryLabel {
  font-size: 13px;
  color: white;
  position: absolute;
  width: 100%;
  margin-top: -20px;
}

.panelContainer .panel ul.detail div.gallery .galleryLabel .galleryCounter {
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 5px;
  width: auto;
  margin: 0 auto;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.panelContainer .panel div.gallery .galleryLabel .galleryCounter:hover {
  text-decoration: underline;
  cursor: pointer;
}

.panelContainer .panel div.gallery {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.panelContainer .panel div.gallery .galleryThumbnails {
  height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -ms-transition: -ms-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

.panelContainer .panel div.gallery .galleryThumbnails.nodelay {
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
}

.panelContainer .panel div.gallery .galleryThumbnails.halfdelay {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  -ms-transition: -ms-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}

.panelContainer .panel div.gallery .galleryThumbnails .galleryThumbnail {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.panelContainer .panel ul.galleryList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.panelContainer .panel ul.galleryList li {
  margin: 0;
  padding: 10px 20px;
}

.panelContainer .panel ul.galleryList li:hover {
  cursor: pointer;
}

.panelContainer .panel ul.galleryList li.selected {
  background-color: rgba(255, 0, 0, 0.5);
}

.panelContainer .panel ul.galleryList li img {
  width: 100%;
}

.eMapControl.help {
  position: static;
}

.eMap.mobile .ol-touch .eMapControl.help {
  margin-left: 2px;
}

.eMap.mobile .ol-touch .eMapControl.help button {
  height: 32px;
  width: 32px;
}

.eMap.mobile .ol-touch .eMapControl.help img {
  width: 26px;
  height: 26px;
}

.eMapControl.home {
  position: static;
}

.eMap.mobile .ol-touch .eMapControl.home {
  margin-left: 2px;
}

.eMap.mobile .ol-touch .eMapControl.home button {
  height: 32px;
  width: 32px;
}

.eMap.mobile .ol-touch .eMapControl.home img {
  width: 26px;
  height: 26px;
}

/**
	legend
	*/
.eMapControl.legend {
  text-align: left;
  line-height: 17px;
  position: absolute;
  bottom: 0.5em;
  left: 0.5em;
  color: whitesmoke;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding-right: 5px;
  font: 13px/15px Arial, Helvetica, sans-serif;
  z-index: 2;
}

.eMapControl.navigation ul.legend {
  left: auto;
  top: auto;
  bottom: auto;
}

.eMapControl.legend {
  padding: 6px 10px;
}

.legend li {
  padding: 3px;
}

.legend li:hover div {
  cursor: pointer;
  text-decoration: underline;
}

.legend div.row {
  width: 100%;
  display: block;
  padding: 2px;
}

.legend div.item {
  width: 18px;
  height: 18px;
  border: 1px solid whitesmoke;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: -4px;
  opacity: 0.7;
}

.legend div.description {
  display: inline-block;
}

/** mobile devices (not tablets) **/
@media only screen and (max-device-width: 767px) {
  .ol-touch .eMapControl ul.legend {
    bottom: auto;
    padding: 7px;
  }

  .ol-touch .eMapControl ul.legend li {
    height: 22px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .eMapControl.legend {
    bottom: 2em;
  }
}
/**
	list
	*/
.panelContainer .panel ul.list {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.panelContainer .panel ul.list li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 7px;
}

.panelContainer .panel ul.list li:hover {
  background: rgba(255, 0, 0, 0.5);
  cursor: pointer;
}

.panelContainer .panel ul.list li div.preview {
  width: 110px;
  text-align: center;
}

.panelContainer .panel ul.list li div.content {
  width: 175px;
  height: auto;
}

.panelContainer .panel ul.list li img {
  max-width: 80px;
  vertical-align: top;
}

.panelContainer .panel ul.list li h3 {
  padding: 0px;
  margin: 0px;
  font-size: 13px;
}

.eMapControl.loading {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.eMapControl.loading div {
  padding: 50px;
  font-weight: bold;
  font-size: 22px;
  color: white;
  opacity: 0.75;
  background-color: black;
  border-radius: 20px;
  text-align: center;
}

.eMapControl.locate {
  position: static;
}

.eMap .locatorOrientation {
  width: 0px;
  height: 0px;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 50px solid rgba(0, 0, 255, 0.15);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.eMap .accuracy {
  background-color: rgba(0, 0, 255, 0.25);
  border: 1px solid rgba(0, 0, 255, 0.5);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
}

.eMap .locator img {
  vertical-align: middle;
  margin: auto;
}

/**
	navigation
	*/
.eMapControl.navigation {
  position: absolute;
  top: 224px;
  left: 0.5em;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}

.ol-touch .eMapControl.navigation {
  top: 240px;
}

.eMapControl.navigation ul {
  background-color: rgba(0, 0, 0, 0.85);
  margin: 4px;
  border-radius: 2px;
}

.eMapControl.navigation li {
  background-color: transparent;
  border-bottom: 1px solid white;
  padding: 3px;
  border-radius: 0px;
}

.eMapControl.navigation li:last-child {
  border-bottom: 0px;
}

.ol-touch .eMapControl.navigation ul li .fa {
  font-size: 1.4em;
}

/** mobile devices **/
.eMap.mobile .eMapControl.navigation {
  position: absolute;
  top: 0;
  left: 0em;
  width: 100%;
}

.eMap.mobile .eMapControl.navigation ul {
  border-radius: 0px;
  padding-left: 5px;
  padding-right: 10px;
  background: rgba(0, 0, 0, 0.85);
  margin: 0px;
  top: 2.6em;
  left: 2.6em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.eMap.mobile .eMapControl.navigation ul li {
  padding: 0px 12px;
  height: 36px;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  font-weight: bold;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
}

.eMap.mobile .eMapControl.navigation ul li.spacer {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.eMap.mobile .eMapControl.navigation ul li img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.eMap.mobile .eMapControl.navigation ul li:hover {
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0.5);
}

/* submenu for navs */
.eMap.mobile .eMapControl.navigation ul li ul {
  margin: 0;
  padding: 0;
  margin-bottom: 0px;
  height: auto;
  display: none;
  position: absolute;
}

.eMap.mobile .eMapControl.navigation ul li ul li {
  padding: 3px 12px;
}

.eMap.mobile .eMapControl.navigation ul li ul li:hover {
  cursor: pointer;
  text-decoration: underline;
}

.eMapControl.plot {
  padding: 10px;
  text-align: left;
  line-height: 17px;
  position: absolute;
  bottom: 208px;
  left: 0.5em;
  color: whitesmoke;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.eMapControl.plot h3 {
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.eMapControl.plot button {
  background-color: whitesmoke;
  padding: 3px;
}

.eMapControl.plot button.selected {
  background: red;
  color: whitesmoke;
}

.eMapControl.preview {
  position: absolute;
  color: whitesmoke;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font: 13px/15px Arial, Helvetica, sans-serif;
  padding: 6px 8px;
  white-space: nowrap;
  margin-left: 7px;
}

.eMapControl.preview:hover {
  cursor: default;
}

/**
	navigation
	*/
.eMapControl.sources {
  position: absolute;
  top: 0.5em;
  left: 0em;
  display: none;
}

.eMapControl.sources ul {
  border-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(0, 0, 0, 0.85);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.eMapControl.sources ul li {
  padding: 0px 7px;
  height: 36px;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  font-weight: bold;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
}

.eMapControl.sources ul li div.title {
  margin: 0;
  padding: 8px 5px;
  vertical-align: middle;
}

.eMapControl.sources ul li div.clear {
  padding: 8px 5px;
  display: none;
}

.eMapControl.sources ul li img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.eMapControl.sources ul li:hover {
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0.5);
}

.eMapControl.sources ul li img:hover {
  cursor: pointer;
  text-decoration: underline;
}

.eMapControl.sources ul li div.clear:hover {
  cursor: pointer;
}

.eMapControl.sources ul li.selected {
  background-color: whitesmoke;
  color: red;
  border-bottom: 1px solid rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(0, 0, 0, 0.85);
}

.eMapControl.sources ul li.selected div.clear {
  display: inline-block;
}

.eMapControl.sources ul li.selected img {
  display: none;
}

/** mobile **/
.eMapControl.navigation li.sources {
  display: none;
}

.eMapControl.navigation ul.sources li div.title {
  margin: 0;
  padding: 8px 5px;
  vertical-align: middle;
}

.eMapControl.navigation ul.sources li div.clear {
  display: none;
}

.eMapControl.navigation ul.sources li.selected {
  background-color: whitesmoke;
  color: red;
  border-bottom: 1px solid rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(0, 0, 0, 0.85);
}

.eMapControl.navigation ul.sources li.selected div.clear {
  display: inline-block;
}

.eMapControl.navigation ul.sources li.selected img {
  display: none;
}

/**
	media queries
	*/
/* 1320 and over */
@media only screen and (min-width: 1320px) {
  .eMapControl.sources ul li {
    padding: 0px 10px;
  }
}
/* 1320 to 1024 screen */
@media only screen and (max-width: 1319px) and (min-width: 1025px) {
  .eMapControl.sources ul li div.icon {
    display: none;
  }
}
/* 1024px and under desktop screen */
@media only screen and (max-width: 1024px) and (min-width: 481px) {
  .eMapControl.sources ul li {
    padding: 0px 10px;
  }

  .eMapControl.sources ul li div.icon {
    display: block;
  }

  .eMapControl.sources ul li div.title {
    display: none;
  }

  .eMapControl.sources ul li.selected div.icon {
    display: none;
  }

  .eMapControl.sources ul li.selected div.title {
    display: block;
  }
}
/** mobile devices (not tablets) **/
@media only screen and (max-device-width: 767px) {
  .eMapControl.sources ul {
    top: 0em;
    width: 100%;
    border-radius: 0px;
  }

  .eMapControl.sources ul li img {
    display: inline-block;
  }

  .eMapControl.sources ul li ul {
    background: rgba(0, 0, 0, 0.85);
  }
}
.instructions-overlay {
  z-index: 99999;
  background-color: black;
  opacity: 0.85;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: white;
  display: none;
}
.instructions-overlay > button {
  float: right;
  display: block;
  color: white;
  margin: 15px;
  background: transparent;
}
.instructions-overlay > button:hover {
  color: whitesmoke;
  background: transparent;
  border: 1px solid transparent;
}
.instructions-overlay > button:active {
  color: lightgray;
  background: transparent;
  border: 1px solid transparent;
}
.instructions-overlay .instructions-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .instructions-overlay .instructions-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.instructions-overlay .instructions-container ul {
  list-style-type: none;
}
.instructions-overlay .instructions-container ul li {
  padding-bottom: 8px;
  font-size: 18px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  align-content: center;
}
.instructions-overlay .instructions-container ul li > div {
  margin-right: 12px;
}
.instructions-overlay .instructions-container ul li > div:first-child {
  text-align: center;
}
@media (max-width: 767px) {
  .instructions-overlay .instructions-container ul li.desktop-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .instructions-overlay .instructions-container ul li.mobile-only {
    display: none;
  }
}
.instructions-overlay .instructions-container ul img {
  width: 25px;
  height: 25px;
}
.instructions-overlay .instructions-container ul .fa {
  width: 25px;
  text-align: center;
  font-size: 24px;
  margin-bottom: -8px;
}
.instructions-overlay .instructions-container > button {
  display: block;
  color: white;
  border: 1px solid white;
  margin-top: 16px;
  height: 48px;
  width: 220px;
  margin: auto;
  background: transparent;
}
.instructions-overlay .instructions-container > button:hover {
  background: rgba(245, 245, 245, 0.2);
}
.instructions-overlay .instructions-container > button:active {
  background: rgba(245, 245, 245, 0.1);
}
.instructions-overlay .instructions-container .opportunities {
  margin: auto;
  margin-top: 50px;
  font-size: 24px;
  text-align: center;
}

.eMapControl.opportunities {
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  padding: 3px;
  border-radius: 2px;
}
.eMapControl.opportunities .opportunities-container {
  background-color: black;
  color: white;
  border-radius: 2px;
  padding: 5px 8px;
  font-size: 20px;
}

/*# sourceMappingURL=styles.css.map */
