/* Accordion styles */
.list {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
.eduItem {
  width: 100%;
  color: black;
/*  overflow: hidden;*/
}
.eduItem label {
  display: block;
  justify-content: space-between;
  padding: 1em;
  background: white;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.eduItem label:hover {
  background: #f5f5f5;
}
/*.eduItem label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.5s;
}*/
.eduItem .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: black;
  background: white;
  margin-bottom: 0px;
  transition: all 0.5s;
  overflow: hidden;
}
input:checked + .education-wrapper {
  background: #f5f5f5;
}
/*input:checked + .education-wrapper::after {
  transform: rotate(90deg);
}*/
input:checked ~ .tab-content {
  max-height: 1000vh;
  margin-bottom: 20px;
}

input[type="checkbox"] {
  display: none;
}

.education-wrapper .date-wrapper {
  font-weight: normal !important;
}

.eduItem:hover .date-wrapper, .education-wrapper:hover .date-wrapper {
  font-weight: bold !important;
}