.accordion button.section:focus {
    outline: 5px auto #f05266;
}

.accordion .section {
    color: #f05266;
    cursor: pointer;
    padding: 18px;
    width: 100%;
	border: none;
    border-bottom: 1px solid #f05266;
    text-align: left;
    outline: none;
    font-size:1.5rem;
    font-weight: 400;
    transition: 0.4s;
  }
  
 .accordion .active, .section:hover {
    color: #f05266;
  }
  
  .accordion .section:before {
    content: '\002B';
    color: white;
    background: #f05266;
    padding: 0 0.6rem;
    padding-bottom: 0.3rem;
    border-radius: 50%;
    font-weight: bold;
    float: left;
    margin-right: 1rem;
  }
.accordion .section.active:before {
    padding-bottom: .35rem;
}
  
  .accordion .section.active:before {
    content: "\2212";
  }
  
  .accordion .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
.accordion h3 {
	margin-top:.5rem;
}