@import url('https://fonts.googleapis.com/css?family=Lato|Open+Sans:300,400,600');

/******************************************************************************** a comment/
* This is the main CSS file for the Planting Calendar application.**/
.content-wrapper {
  position: relative;
  padding: 20px;
  margin: 0px auto;
  width: 100%;
  max-width: 1366px;
  min-width: 320px;
  min-height: 100vh;
  display: block;
  overflow: hidden;
  /* background-image: url('../images/Leafy.png') no-repeat center center fixed; */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}



.accordion-wrapper {
  background-color: lightskyblue;
  /* padding: 40px;
  margin-bottom: 20px;
  margin-top: 75px;
  opacity: 0.7; */
}

.crop-grid {
  position: relative;
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-gap: 1%;
  margin: auto;
  padding: 0;
  justify-content: space-evenly;
  align-items: flex-end;
  width: 98%;
  flex-direction: row;
  flex-wrap: nowrap;
}

/* .example-img {
  width: 100%;
  height: auto;
  margin: 0px auto;
} */

.example-img {
  width: 100%;
  /* position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  margin: auto;
  max-width: 100%;
  height: auto; */
  object-fit: contain;
}

.overlay {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0%;
  right: 0%;
  left: 0%;
  bottom: 0%;
  z-index: 999;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}



.accordion.open {
  background: #d6fade;
  color: #273328;
}

.accordion:hover {
  background: #c4fce5;
}

.accordion span.toggle-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  transform: translate(-2px, 3px);
  font-size: 1em;
  margin: auto;
}

.fa-solid.fa-seedling {
  color: darkgreen;
  font-size: 40px;
}

.fa-solid.fa-circle {
  color: #8FEE8F;
  background-color: #8FEE8F;
}

.row-of-icons {
  font-size: 20px;
  padding: 10px;
  margin: auto;
}

.one {
  background-color: #fff;
}

.two {
  background-color: #d1fcab;
}

.three {
  background-color: #fef471;
}

.four {
  background-color: #fcd7b2;
}

li.accordion-section {
  width: 98%;
  margin: auto;
}

li.season-section {
  width: 100%;
  margin: 0px auto;
  padding: 0px auto;
  text-align: center;
}

p.season-description {
  font-size: 1rem;
  margin: auto;
  font-family: inherit;
  letter-spacing: 0.5px;
  line-height: 25px;
  color: white;
  word-wrap: break-word;
  padding: 0em 1em 0.5em 1em;
  word-wrap: break-word;
}

p.planting-subTitle {
  margin: 1em auto 2.25em;
  padding: 0px 10px 0px 18px;
  font-weight: 500;
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  letter-spacing: 2px;
  text-align: center;
  color: #000;
}

h1.planting-title {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 2.5em;
  padding: 0px 10px 0px 14px;
  text-align: center;
}

h2.season-title {
  font-weight: 500;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
}

h3.crop-family-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  text-align: center;
  margin: auto;
}

ul {
  list-style: none;
  padding: 0;
}


.example-img-wrapper {
  width: 100%;
  height: 500px;
  margin: auto;
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.example-img-caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

li.crop-box {
  display: flex;
  padding: 30px 10px 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  flex-direction: column;
  background-color: #00000047;
}


.bullets {
  list-style: initial;
  font-size: 18px;
  padding: 0;
  padding: 0;
  margin: auto 1em;
  text-align: left;
  color: #fff;
  list-style-type: none;
}



.inner {
  display: none;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  padding-bottom: 0.3em;
  overflow: hidden;
}



/***** styling for main panels and toggle icon *****/
.accordion {
  position: relative;
  display: block;
  color: #000;
  /* border-bottom: 3px solid gray; */
  padding: 20px 40px;
  border-radius: 0.15em;
  font-weight: 500;
  font-size: 23px;
  cursor: pointer;
  background-color: aliceblue;
  transition: background-color 0.3s ease;
  border-right: 2px outset #ebe8e85e;
  border-bottom: 3px outset #fbf9f945;
  border-left: 2px outset #adacac85;
}

/* .accordion:hover {
  color: green;
  font-weight: 500;
} */

/* .accordion:after {
  content: "\2192";
  font-weight: bold;
  float: left;
  margin-right: 24px;
  color: #000;
} */

/* .accordion.active:after {
  content: "\25be";
} */

span.season-icon {
  float: right;
  color: #000;
}


/********************************************/
/* media query for mobile */
@media (max-width: 767px) {
  header {
    width: auto;
  }

  .content-wrapper {
    width: 100%;
    padding: 0px;
    margin: 0px auto;
    background: white;
    min-width: 320px;
    min-height: 100vh;
  }

  .inner {
    padding: 10px 0;
    /* overflow: inherit; */
  }
}

/* to adjust the google icons to fit correctly on the smaller screens */
@media only screen and (max-width: 375px) {
  .accordion {
    letter-spacing: 4px;
  }
}