@font-face {
  font-family: 'TruenoBD';
  src: url('./fonts/TruenoBd.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

.mapWidgetContainer {
  width: 100rem;
  height: 46rem;
  margin: 0 auto;
  background-color: black;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  position: relative;
}

.mapControls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}

.mapControls input {
  border-radius: 0.4375rem;
  border: 2px solid #D9D9D9 !important;
  background: #FFF;
  box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.30) inset;
  width: 30rem;
  font-family: roboto;
}

.postcodeInput {
  border-radius: 0.4375rem;
  border: 2px solid #D9D9D9 !important;
  background: #FFF;
  box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.30) inset;
  font-family: roboto;
  padding-left: 1rem;
  font-size: 1rem;
}

.mapControls button {
  padding: 0.5rem 1rem;
  background: #34B61F;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-family: roboto;
}

.infoContainer {
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.14);
  margin: 1rem;
  width: 85%;
  padding: 2rem;
  margin-bottom: 1.5rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  width: 30rem;
}

.mapContainer {
  width: 100%;
  height: 39rem;
  border-radius: 6px;
  overflow: hidden;
  width: 60rem;
}

.figure {
  color: #3D6936;
  font-family: 'TruenoBD';
  font-size: 5rem;
  font-style: normal;
  font-weight: 1000;
  line-height: normal;
}

.figureSmall {
  font-size: 1.3rem;
  color: #3D6936;
  font-family: 'TruenoBD';
  font-weight: 1000;
}

.figureLabel {
  font-size: 1.3rem;
  color: #000;
  font-family: Roboto;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0rem;
}

.figures {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: space-evenly;
  align-items: flex-end;
}

.figures2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.infoLabel {
  color: #414141;
  text-shadow: 0px 0px 1px #000;
  font-family: Roboto;
  font-size: 1.3rem;
}

.infoLabelGreen1 {
  color: #3D6936;
  text-shadow: 0px 0px 1px #000;
  font-family: Roboto;
  font-size: 1.3rem;
  margin-bottom: -0.05rem;
}

.infoLabelGreen {
  color: #3D6936;
  text-shadow: 0px 0px 1px #000;
  font-family: Roboto;
  font-size: 1.3rem;
  margin-bottom: -0.05rem;
}

.bottomInfo {
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: 0.875rem;
}

.mapMeta {
  font-size: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 35rem;
  height: 32.5rem;
  margin-left: 2rem;
  border-radius: 0.4375rem;
  background: #F2F2F2;
}

.zoneItem {
  border-radius: 4px;
  transition: 0.2s ease;
  border: #34B61F solid 1px;
}

.zoneItem:hover {
  background: #979696;
}

.landTypeBtn {
  height: 3rem;
  border-radius: 1.87013rem;
  cursor: pointer;
  color: white;
  border: 0.2rem solid #555;
  width: 20rem;
}

.landTypeBtn.selected {
  background-color: #555;
  color: white;
}

.landTypeBtn:not(.selected) {
  background-color: black;
  color: #555;
}

