#title-container {
	text-align: center;
	font-family: Arial;
	color: #505050;
}

#full {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#crop-selector {
	display: flex;
	flex-direction: row;
	height: 200px;
	overflow: auto;
}

#map-container {
	float: left;
	height: 600px;
	width: 67%;
	display: flex;
	flex-direction: column;
}
#crop-info-container{
	float: left;
	display:flex;
	width: 33%;
	height: 800px;
	flex-wrap: nowrap;
	flex-direction: column;
	overflow: auto;
  text-align: center;
  vertical-align: middle;
	margin-right: 100px;
}

#button-container {
	text-align: center;
  height: 50px;
}

#title {
  font-family: Arial;
  text-align: center;
}

#topProducts{
  font-family: Arial;
  text-align: center;
  vertical-align: middle;
}

/*images*/
img {
	width: 160px;
	height: 160px;
	border: 5px solid white;
}

.image_wrap {
  position: relative;
  height: 170px;
  width: 170px;

}

.image_description {
	width: 100%;
  position: absolute;
	font-size: 30px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	background: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity .2s, visibility .2s;
}

.image_wrap:hover .image_description {
  visibility: visible;
  opacity: 1;
}


/*slider*/

#slider-container {
	width: 100%;
	height: 100px;
	position: relative;
	display: inline-block;
}

.ticks {
  font: 16px sans-serif;
}

.track,
.track-inset,
.track-overlay {
  stroke-linecap: round;
}

.track {
  stroke: #000;
  stroke-opacity: 0.3;
  stroke-width: 10px;
}

.track-inset {
  stroke: #ddd;
  stroke-width: 8px;
}

.track-overlay {
  pointer-events: stroke;
  stroke-width: 50px;
  stroke: transparent;
  cursor: crosshair;
}

.handle {
  fill: #fff;
  stroke: #000;
  stroke-opacity: 0.5;
  stroke-width: 1.25px;
}
