﻿.custom-accordion {  
   position: relative;
    width: 100%;
    margin-bottom: 3px;
    padding: 15px 55px;
    border: 0;
    background: #fdd10a;
    color: #373534;
font-weight: bold;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-size: 16px;
    padding-left: 10%;
}


.custom-accordion-trigger::after {
    box-sizing: inherit;
    position: absolute;
    top: 40%;
    right: 25px;
    width: 15px;
    height: 15px;
transform: translateY(-50%);
    font-family: FontAwesome;
    content: "";
}


.custom-accordion-active::after {
    font-family: FontAwesome;
    content: "";
}

.custom-accordion-active, .custom-accordion:hover {
   *background-color: #ccc;    
}

.custom-accordion-panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}