button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color: #ddd;
    border: none;
    color: #444;
}

button.accordion:after {
    content: '\02795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796";
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;

}

div.panel.show {
    opacity: 1;
    max-height: initial;
}
.recently-played-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px;
    background-color: #f8931d;
}
.recently-played-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 16px;
    position: relative;
    z-index: 1;
}
.recently-played-nav a {
    color: #fff;
    line-height: 0;
}
.recently-played-prev {
    /*margin-right: auto;*/
}
.recently-played-prev svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.recently-played-nav svg {
    width: 24px;
    height: 24px;
}
svg:not(:root) {
    overflow: hidden;
}
.dark-theme .svg-icon {
    fill: #fff;
}
.recently-played-header h1, .recently-played-header h4 {
    padding: 0;
    margin: 0;
}
.recently-played-header h4 {
    font-weight: 300;
    text-align: right;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding:0px !important;
}
nav h3 {
	padding-left: 20px;
    	padding-right: 20px;
   	padding-bottom: 12px;
}
//*.fl-page h3 {
        
        color: #f8931d !important;
}*/

/*====== responsive ======*/
@media (max-width: 767px){
    .recently-played-header {flex-wrap: wrap;justify-content: center;}
    .fl-page .recently-played-header h1 {font-size: 45px;margin-bottom: 15px;width:100%;text-align:center;}
}