@charset "utf-8";
/* CSS Document */
.headContainer {
  background-image: linear-gradient(to right, #EAEEE8, #F5F7F4);
  font-weight: bolder;
  margin: 10px;
  padding-top: 10px;
  padding-left: 30px;
  margin-top: -10px;
}
.search {
  text-align: left;
}
.searchContainer {
  padding: 10px;
  padding-left: 30px;
  text-align: center;
  color: #1A5B1D;
}
.topicsContainer {
  font-size: 16px;
  padding-left: 30px;
  background-image: linear-gradient(to right, #EAEEE8, #F5F7F4);
  font-weight: bold;
  margin: 10px;
  padding-top: 10px;
}
.content {
  background: none;
  box-shadow: none;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
}
.tabs label {
  order: 1;
  display: flex;
  padding: 1rem 1rem;
  cursor: pointer;
  background: white;
  font-weight: bold;
  transition: background ease 0.2s;
  border-top: 1px solid #A7A8A6;
  border-left: 1px solid #A7A8A6;
  border-bottom: 1px solid #A7A8A6;
  z-index: 1;
}
.tabs label:hover {
  background: lightgrey;
}
.tabs > label:last-of-type {
  border-right: 1px solid #A7A8A6; 
}
.tabs .tab {
  position: relative;
  order: 99; 
  width: 100%;
  display: none;
  padding: 1rem;
  background: #fff;
  border: 1px solid #A7A8A6;
  top: -1px;
}
.tabs input[type="radio"] {
  display: none;
}
.tabs input[type="radio"]:checked + label {
  background: #fff;
  border-bottom: 1px solid white;
}
.tabs input[type="radio"]:checked + label + .tab {
  display: flex;
  flex-direction: column;
}
/* vertical alignement*/
@media (max-width: 45em) {
  .tabs .tab, .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    border: 1px solid grey;
  }
  .tabs input[type="radio"]:checked + label {
    background-color: whitesmoke;
    border-bottom: 1px solid grey;
  }
}
.accordion {
  background-color: #EAEEE8;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid #EAEEE8;
  text-align: left;
  outline: none;
  transition: all 0.5s;
  margin: 5px;
}
.accordion:hover, .active {
  background-color: #D8DDD7;
}

.panel {
    padding: 0 20px;
    margin-left: 10px;
    background-color: #F7F7F7;
    max-height: 0;
    transition: max-height 0.5s;
    overflow: hidden;

}

.secondUl {
    font-size: 14px;
}

