.accordion {
  margin: 50px auto 50px auto;
  max-width: 900px;
}

/* Style the buttons that are used to open and close the accordion panel */

.accordion-item {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #222;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  outline: none;
  padding: 20px;
  position: relative;
  text-align: left;
  transition: background-color 0.4s ease-out;
  width: 100%;
}

.accordion-item:after {
    content: ' \2795';
    color: transparent;
    text-shadow: 0 0 0 rgb(40 55 74);
    font-size: 20px;
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    top: 50%;
}

.accordion-item.active:after {
    content: ' \2796'; 
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion-item:hover {
  background-color: #f1f1f1;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  background-color: #fff;
  display: none;
  overflow: hidden;
  padding: 20px;
}