/* CSS Document */

.dropdown-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
/*  padding-left: 0;*/
  border-top: solid 2px #EBEBEB;
  width: 100%;
  text-decoration: underline;
}
.dropdown-title:hover, .dropdown-info > .dropdown-wrap .dropdown-title {
  background-color: #f8f8fa;
}
.dropdown-title > p {
  font-size: 14.4px;
  padding: 0;
}
.dropdown-input {
  display: none;
}

.dropdown-input:not(checked) + label > .dropdown-content {
  display: none;
}
.dropdown-input:checked + label > .dropdown-content {
  display: flex;
  padding: 1em;
/*  background-color: #f8f8fa;*/
  font-size: 17px;
  border: solid 2px #EBEBEB;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.dropdown-input:checked + label > .dropdown-content ul {
  margin-top: 0;
}
.dropdown-input + label > .dropdown-title {
  border-radius: 5px;
}
.dropdown-input:checked + label > .dropdown-title {
  background-color: #f8f8fa;
  border: none;
}
/*
.dropdown-input:checked + label > .dropdown-title p, .dropdown-input:checked + label > .dropdown-title svg path {
  color: white;
  stroke: white;
}
*/
.dropdown-input:checked + label > .dropdown-title svg {
  transform: rotate(180deg);
}
.dropdown-content {
  display: flex;
  flex-direction: column;
}