#jobs {
  min-height: 69vh;
  max-height: max-content;
}
#jobs #map {
  min-height: 69vh;
  height: fit-content;
  width: 100%;
  max-height: max-content;
  z-index: 0;
}
#jobs #mapCover {
  background-color: rgba(0, 0, 0, 0.7);
  height: fit-content;
  width: 100%;
  z-index: 1;
  top: 15vh;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
#jobs #mapCover #listButton {
  display: block;
}
#jobs #mapCover #jobMissionsList {
  color: white;
  text-align: center;
  transition: height ease-in-out 0.5s;
}
#jobs #mapCover #jobMissionsList .jobMissions {
  margin: 1vh auto;
  opacity: 0;
  margin-top: -10px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
#jobs #mapCover #jobMissionsList .jobMissions.show {
  opacity: 1;
  margin-top: 10px;
  max-height: 50px; /* enough to contain one line */
}
#jobs #mapCover h2 {
  text-decoration: underline;
  text-align: center;
  margin: auto;
  color: white;
}
#jobs #blogPostContainer {
  overflow-y: auto;
}
#jobs .blogPost {
  box-shadow: 0 0 1vh black;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  background-color: #598300;
  height: fit-content;
  width: 35vh;
  margin: 3vh auto;
}
#jobs .blogPostImg {
  object-position: center;
  object-fit: cover;
  box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  height: 35vh;
  display: flex;
}
#jobs .blogPostImg img {
  border-radius: 16px;
  margin: auto auto auto 0;
  height: 35vh;
  width: 35vh;
}
#jobs .blogPostContent {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: max-content;
  margin: 1vh auto;
}
#jobs .blogPostTitle {
  box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  width: 100%;
  padding: 8px 16px;
  background-color: white;
  text-align: center;
  margin: auto auto auto 0;
}
#jobs .blogPostText {
  box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  width: 100%;
  background-color: white;
  padding: 1vh 2vh;
  text-align: center;
  margin: 1vh auto;
}
#jobs .blogPostLocation {
  box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  width: fit-content;
  background-color: white;
  padding: 1vh 2vh;
  text-align: center;
  margin: auto 0 auto auto;
}

@media (min-width: 800px) {
  #blogPostContainer {
    top: 0 !important;
    height: fit-content;
  }
  .blogPost {
    box-shadow: 0 0 1vh black;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    flex-direction: row !important;
    background-color: #598300;
    height: 60vh !important;
    width: 90% !important;
    margin: 3vh auto !important;
  }
  .blogPostImg {
    object-position: center;
    object-fit: cover;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    display: flex;
    height: 100% !important;
    width: 60vh !important;
  }
  .blogPostImg img {
    border-radius: 16px;
    margin: auto auto auto 0 !important;
    height: 60vh !important;
    width: 600vh !important;
  }
  .blogPostContent {
    display: flex;
    flex-direction: column;
    width: 60% !important;
    margin: auto !important;
  }
  .blogPostTitle {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: fit-content !important;
    padding: 8px 16px;
    background-color: white;
    text-align: center;
    margin: auto auto auto 0 !important;
  }
  .blogPostText {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: 100% !important;
    background-color: white;
    padding: 8px 16px;
    text-align: center;
    margin: 2vh auto !important;
  }
  .blogPostLocation {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: fit-content;
    background-color: white;
    padding: 1vh 2vh;
    text-align: center;
    margin: auto 0 auto auto !important;
  }
}
@media (min-width: 1100px) {
  #jobs {
    max-height: fit-content;
    overflow-y: auto;
    width: 80%;
  }
  #jobs #map {
    top: 0;
    min-height: 69vh !important;
    max-height: fit-content !important;
    width: 100% !important;
    z-index: 0;
  }
  #jobs #map #blogPostContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 69vh;
    max-height: fit-content !important;
  }
  #jobs #mapCover {
    visibility: visible;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    height: 69vh;
    width: 20%;
    z-index: 1;
    top: 15vh;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 1vh;
  }
  #jobs #mapCover #listButton {
    display: none;
  }
  #jobs #mapCover #jobMissionsList {
    max-height: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  #jobs #mapCover #jobMissionsList .jobMissions {
    font-size: 0.9rem;
    text-align: center;
    color: white !important;
    margin: 3vh auto;
    width: 100%;
    height: 2vh;
    opacity: 1 !important;
    margin-top: 10px;
    max-height: 50px;
    overflow: visible !important;
  }
  #jobs #mapCover h2 {
    text-decoration: underline;
    text-align: center;
    margin: 2vh auto;
    color: white;
  }
  #blogPostContainer {
    top: 0 !important;
    overflow-y: auto;
    height: 69vh;
  }
  .blogPost {
    box-shadow: 0 0 1vh black;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    flex-direction: row !important;
    background-color: #598300;
    height: 28vh !important;
    width: 75% !important;
    margin: 3vh auto !important;
  }
  .blogPostImg {
    object-position: center;
    object-fit: cover;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    display: flex;
    height: 100% !important;
    width: 28vh !important;
  }
  .blogPostImg img {
    border-radius: 16px;
    margin: auto auto auto 0 !important;
    height: 28vh !important;
    max-height: 30vh !important;
    max-width: 28vh !important;
  }
  .blogPostContent {
    display: flex;
    flex-direction: column;
    width: 60% !important;
    margin: auto !important;
  }
  .blogPostTitle {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: fit-content !important;
    padding: 8px 16px;
    background-color: white;
    text-align: center;
    margin: auto auto auto 0 !important;
  }
  .blogPostText {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: 100% !important;
    background-color: white;
    padding: 8px 16px;
    text-align: center;
    margin: 2vh auto !important;
  }
  .blogPostLocation {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: fit-content;
    background-color: white;
    padding: 1vh 2vh;
    text-align: center;
    margin: auto 0 auto auto !important;
  }
}

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