.accordions input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

/* Accordion styles */
.accordions {
  overflow: hidden;
}

.accordion {
  width: 100%;
  color: #23282d;
  overflow: hidden;
  display: grid;
  border-style: solid;
  border-width: 1px;
  border-color: #E7EBF0;
  border-radius: 10px;
  margin-bottom: 10px;
}

.accordion-label {
  display: flex;
  justify-content: flex-start;
  padding: 1em;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  line-height: 30px;
  align-items: center;
    /* Icon */;
}

.accordion-label .dates-tag-container {
    margin: 2px 2px 2px auto;
}

.accordion-label:hover {
  background: #e6e6e6;
}

.accordion-label::before {
  content: "\002B";
/*  content: ' ';
  background-image: url('../images/africa.svg');*/
  /*background-size: 28px 28px;  */
/*  width: 20px;
  height: 20px;
  text-align: center;
  transition: all .35s;
  margin-right: 10px;
  font-weight: '100';*/


    content: "\002B";
    width: 28px;
    height: 28px;
    text-align: center;
    transition: all .35s;
    font-weight: 100;
    font-size: 24px;
    margin-right: 5px;  
}

.accordion-content {
  max-height: 0;
  padding: 0 1em;
  color: #23282d;
  background: #fff;
  transition: all .35s;
}

.accordion-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #fff;
  cursor: pointer;
  display:-webkit-flex;
}

.accordion-close:hover {
  background: #e6e6e6;
}

input:checked + .accordion-label {
  background: #e6e6e6;
}

input:checked + .accordion-label::before {
  transform: rotate(135deg);
}

input:checked ~ .accordion-content {
  max-height: 100%;
  padding: 1em;
}