/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 02 2018 | 12:40:48 */
.jy-accordion {
    background-color: #eee;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-top: 8px;
    border: 1px solid #eee;
  font-weight: 700;
}

.jy-accordion::before {
    content: '+';
    color: #ccc;
    font-weight: 900;
    font-size: 22px;
    position: relative;
    top: 2px;
    display: inline-block;
    padding-right: 5px;
    margin-left: -5px;
}

.active, .jy-accordion:hover {
    background-color: #e3e3e3; 
}

.jy-panel {
    padding: 20px 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}