.accordion {
  background-color: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  color: #55636F;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  max-width: 220px;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 4px;
  transition: 0.2s;
  transition-timing-function: ease-in;
}

/* 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) */


/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  transition: 0.4s;
  transition-timing-function: ease-in;
}

.accordion svg {
  height: 16px;
  fill: #2d2d2d;
  display: inline-block;
  top: 3px;
  padding: 0 10px;
  position: relative;
  -webkit-animation: mymove 2s infinite; /* Safari 4.0 - 8.0 */
  animation: mymove 2s infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
  from {left: 0px;}
  to {left: 10px;}
}

@keyframes mymove {
  from {left: 0px;}
  to {left: 10px;}
}

.accordion svg:hover {
    fill: #fff;
}


