.drop-con { box-shadow: 0 0 10px 0 rgba(0,0,0,0.15); }
.dropdown {
  cursor: pointer;
  display: grid;
  grid-template-columns: 90% 10%;
  padding: 10px 6% 10px 9%;
  align-items: center;
  margin-top: 20px;
  background-color: white
}
.dropdown h3 { margin: 1rem 0 }
.dropdown > div { text-align: right }
.dropdown svg { transform: rotate(0deg); height: 15px; text-align: center; transition: .2s ease-out }
.drop-content {
  margin: 0;
  background-color: white;
  padding: 0 9%;
  overflow: hidden;
  transition: max-height .2s ease-out 0s, padding .2s ease-out 0s;
  max-height: 0
}
