
div.search-results-window p {
  border: 1px solid rgb(64,32,0);

  color: black;
  font-size: 1em;
  font-weight: bold;

  padding: 0px 10px;
  margin: 10px 0px;

  border-radius: 5px;

  min-width: 100px;

  background-color: gray;
}

div.search-results-window {

  background-color: #203200;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: absolute;
  left: 20%;
  top: 25vh;
  min-width: 40%;
  min-height: 50%;
  z-index: 100;

  visibility: hidden;

  border-radius: 5px;
  border: 2px solid; black;

  resize: both;
  overflow: auto;
}

div.note {
  visibility: hidden;

  background-color: #303200;
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 80%;
  padding: 10px;

  border-color: beige;
  border-radius: 10px;
  border-width: thin;
  border-style: solid;

  font-size: 1em;
  color: beige;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}


div.note p {
  color: orange;
}

div.note  a {
  margin: 10px;
  max-width: 300px;
  align-self: center;
}

.contents {
  background-color: beige;
  /* border: 2px solid black; */

  height: 100%;
  width: 100%;

  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: scroll;

}

#description {
	width: 100%;
}

.description {
  color: orange;
  background-color: rgb(64,32,0);

  height: auto;
  width: auto;
  margin: 10px;
}

.description a {
  color: orange;
  text-decoration: none;
}

#road {
  background-color: lavender;
  font-weight: bold;
  width: 100%;
  height: 30px;
}

#CR348_Name {
  font-size: .67em;
  color: gray;
  position: relative;
  left: 25%;
  top: 0%;
}

.yard {
  display: grid;
  width: 100%;
  grid-template-areas:
    "fence-1 fence-1 drive"
    "the-plots-section-S1 the-plots-section-S1 drive"
    "the-plots-section-S1 the-plots-section-S1 drive"
    "pavilion pavilion drive"
    "fence-2 fence-2 drive"
    "the-plots-section-S2 the-plots-section-S2 drive"
    ;

}

#the-drive {
  background-color: rgb(64,32,0,.7);
  /* background-color: rgb(128,64,16); */
  height: 140vh;
  grid-area: drive;
}

#gate {
  background-color: orange;
  height: auto;
  width: 100%;
  align-content: center;
}

#the-plots-section-S1 {
  background: #203200;
  color: black;
  /* height: 100vh; */

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  grid-area: the-plots-section-S1
}

#the-plots-section-S2 {
  background: #203200;
  color: black;
  /* height: 100vh; */

  display: flex;
  flex-direction: column;
  justify-content: space-around;

  grid-area: the-plots-section-S2
}


.plot-row {
  background: #203200;
  color: black;

  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}

.plot-group {
  background: rgb(64,32,0);
  color: black;

  display: flex;
  flex-direction: column;

  justify-content: space-around;

  border-radius: 5px;
  border: 1px solid black;

  font-family: 'Marcellus SC';
  font-size: medium;
  width: auto;
  padding: 2px;
}

[class|="plot-label"] {
  padding: 0 .2em;
  margin: 0 0.2em;
  text-align: center;
}

.plot-label-empty {
  font-size: .67em;
  position: relative;
  /* margin: 0px 2px; */
  width:auto;

  border: 1px solid black;
  background-color: gray;

  color: black;
  font-style: italic;

}

.plot-label-left {
  position: relative;

  background-color: black;
  color: beige;

  border-radius: 5px;
	border: 1px solid beige;

  width: auto;

}

.plot-label-center {
  position: relative;

  width:auto;

  background-color: #38460e;
  color: beige;
  border-radius: 5px;

}

.plot-label-right {
  position: relative;

  background-color: beige;
  /* background-color: #58462e; */
  color: black;

  border-radius: 5px;
	border: 1px solid black;

  width: auto;
}

#pavilion-area {
  display: flex;
  align-items: center;
  background-color: #203200;
  height: 100%;
  overflow-y: hidden;
  grid-area: pavilion
}

#pavilion {
  background-color: beige;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 80%;
  padding: 3%;
  margin: 5%;
  left: 5vw;
  font-size: 2em;
  font-weight: bold;
}

#section-1-fence {
  grid-area: fence-1
}

#section-2-fence {
  grid-area: fence-2
}

.fence-area {
  display: flex;
  align-items: center;
  overflow-y: hidden;
  background-color: beige;
}

.fence {
  background-color: beige;
  width: 95%;
  text-align: right;
  font-size: 1em;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {

  .yard {
    width: 100%;
  }

  [class|="plot-label"] {
    font-size: 1em;
    min-width: 1em;
    padding: 0;
    margin: 0;
  }

  [class|="plot-label"]::first-letter {
    /* display: none; */
    font-size: 1em;
    min-width: 1em;
  }

  .plot-label-empty {
    font-size: 0.67em;
  }

  .plot-group {
    min-width: 4vw;
    min-height: 0;
  }
}

@media screen and (max-width: 900px) {
  #CR348_Name {
    top: 0px;
    left: 0px;
    font-size: medium;
  }

  [class|="plot-label"] {
    font-size: 0px;
    min-width: 1em;
    margin: 0;
    padding: 0;
  }

  [class|="plot-label"]::first-letter {
    font-size: small;
    min-width: 1em;
  }

}

@media screen and (max-width: 600px) {
  .description {
    height: auto;
    font-size: small;
    margin: 0;
  }

  #the-plots {
    width: 100%;
  }

  #the-drive {
    width: 0px;
    display: None;
  }

  .yard {
  display: grid;
  width: 100%;
  grid-template-areas:
    "fence-1 fence-1"
    "fence-1 fence-1"
    "the-plots-section-S1 the-plots-section-S1"
    "the-plots-section-S1 the-plots-section-S1"
    "the-plots-section-S1 the-plots-section-S1"
    "the-plots-section-S1 the-plots-section-S1"
    "pavilion pavilion"
    "pavilion pavilion"
    "fence-2 fence-2"
    "fence-2 fence-2"
    "the-plots-section-S2 the-plots-section-S2"
    "the-plots-section-S2 the-plots-section-S2"
    ;

}

  #pavilion-area {
    width: 100%;
    /* height: 20vh; */
  }

  #pavilion {
    font-size: 1em;
    font-weight: bold;
  }

  div.search-results-window p {
    font-size: medium;
  }

  div.search-results-window {
      min-width: auto;
      min-height: auto;
      padding: 2px;
      margin: 5px;
      left: auto;
  }
}
