/*-------------------------------------------------*/
/*----------Extendable Section Customs-------------*/
/*-------------------------------------------------*/
.EXSGenres{
    margin: 15px 0px;
    width: 280px;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    color: #ffffff;
    align-self: flex-start;
    border-radius: 10px !important;
    background-color: #4d4d4d;
    transition: width 0.7s ease 0s, height 0.7s ease 0s;
}
.EXSGenres:hover{
    height: 450px;
}
.EXSGenres div{
    text-align: left;
    line-height: 30px;
    padding: 10px 15px;
    vertical-align: middle;
    cursor: pointer;
}
.EXSGenres div:nth-of-type(1){
    background-color: #000000;
    border-radius: 10px;
    border-style: solid;
    border-color: #000000;
    border-width: 2px;
    height: 30px;
    margin: 2px;
    width: 242px;
    line-height: 28px;
    padding: 6px 15px;
}
.EXSGenres div img{
    float: right;
    width: 30px;
    height: 30px;
    margin: 0;
}
.EXSGenres div:nth-of-type(1) > img{
    width: 30px;
    height: 30px
}
.EXSGenres div:hover{
    background-color: #000000;
    color: #ffffff;
}
/*selected Styles*/
.EXSGenresClicked{
    height: 50px !important;
    transition: none !important;
}
@media screen and (max-width: 900px) {
    .EXSGenres{
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
}
@media screen and (max-width: 600px) {
    .EXSGenres{
        position: absolute;
        top: 120%;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
}
/*Controls*/
.ClassicsListControls{
    position: relative;
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin: 0 0 70px 0;
    justify-content: space-between;
    z-index: 100;
}
/*Sort*/
.ClassicsListControlsSort{
    margin: 18.5px 0px;
    width: 280px;
    display: inline;
}
.ClassicsListControlsSort input{
    display: none;
}
.ClassicsListControlsSort label{
    display: inline-block;
    width: 100px;
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    border-color: #4d4d4d;
    background-color: #000000;
    color: #ffffff;
    height: 33px;
    line-height: 33px;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 700;
    padding: 0 10px;
    text-align: center;
	cursor: pointer;
}
.ClassicsListControlsSort label:hover{
    border-color: white;
}
.ClassicsListControlsSort > label:nth-of-type(1){
    margin: 0 10px 0 0;
}
.ClassicsListControlsSort input:checked + label {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #000000;
}
/*Search*/
.ClassicsListControlsSearch{
    margin: 18.5px 0px;
    position: relative;
    width: 280px;
}
.ClassicsListControlsSearchText{
    position: relative;
    width: 233px;
    background-color: #ffffff;
    height: 29px;
    line-height: 28px;
    font-size: 16px;
    padding: 3px 35px 3px 10px;
    border-radius: 4px;
    border-style: solid;
    border-color: #ffffff;
    border-width: 1px;
    color: #000000;
}
.ClassicsListControlsSearchImage{
    position: absolute;
    margin: 3.5px 3px 3.5px 0;
    height: 26px;
    width: 26px;
    right: 1px;
    background-color: #000000;
    border-style: solid;
    border-color: #000000;
    border-width: 2px;
    border-radius: 3px;
    cursor: pointer;
}