.deoc-fold-group {
    margin-bottom: 10px;
}

.deoc-fold-title {
    background-color: #efefef;
    padding: 10px;
    border: solid #888 1px;
    border-radius: 10px;
    transition: background-color .5s, border-radius .5s;
    
}

.deoc-fold-title:hover {
    background-color: #cecece;
    cursor: pointer;
    transition: background-color .5s, border-radius .5s;
}

.deoc-fold-active {
    background-color: #ffd200;
    border-radius: 0px;
    transition: background-color .5s, border-radius .5s;
}

.deoc-fold-active:hover {
    background-color: #ffd200;
    transition: background-color .5s, border-radius .5s;
}

.deoc-fold-content-group {
    padding: 0px 10px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 1s, padding 1s;
}

.deoc-fold-padding {
    padding: 10px;
}