.accordion-trigger {
    background-color: #F2F2E9;
    color: #452828;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
	border-radius: 10px 10px 0 0;
	font-weight: 600;
  }
  
  .active, .accordion-trigger:hover {
    background-color:  rgba(242,242,233, .6);
  }
  
  .accordion-trigger:after {
    content: '\002B';
    color: #452828;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .panel {
    padding: 10px 15px 20px 15px;
    background-color: rgba(242,242,233, .6)!important;
    display: none;
	color: #452828 !important;
	margin-bottom: 10px;
  }

  .panel ul {
    list-style-type:none;
	margin-bottom: 0;
	padding-bottom: 0;
  }