
/* Custom Dropdown for Desktop */
.playcz-dropdown {
    position: relative;
    display: none;
    flex: 1;
}
.playcz-dropdown.active .fa-chevron-down{
    transform: rotate(180deg);
}

.playcz-dropdown-btn {
    position: relative;
    min-width: 200px;
    width: 100%;
    height: 38px;
    padding: 0 20px;
    padding-left: 52px;
    padding-right: 40px;
    line-height: 1;
    text-align: left;
    color: #fff;
    border-radius: 19px;
    border: 1px solid transparent;
    background: #36373a;
    transition: .15s;
}
/*
.playcz-dropdown-btn::before{
    content: '';
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    top: 50%;
    margin-top: -13px;
    left: 15px;
    background: var(--main-nav-primary-color);
    background-size: contain;
}
*/
.playcz-dropdown-btn:hover{
    background: #474747;
    color: #fff;
}

.playcz-dropdown-icon{
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    top: 50%;
    margin-top: -13px;
    left: 15px;
    background: url(images/icon_radio_w.svg) center center no-repeat;
    background-size: contain;
}

.playcz-radio-genre .playcz-dropdown-icon{
    margin-top: -11px;
    background: url(images/icon_note_w.svg) center center no-repeat;
}

.playcz-dropdown-btn .fa-chevron-down{
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -7px;
    color: #ccc;
    transition: .15s;
}

.playcz-dropdown-list {
    display: none;
    position: absolute;    
    width: 300px;
    max-height: 300px;
    top: 100%;
    right: 0;
    margin: 0;
    padding: 5px 0;
    list-style: none;
    overflow-y: auto;
    background: var(--main-nav-background);
    border: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.playcz-dropdown-list.show {
    display: block;
}

.playcz-dropdown-list li {
    line-height: 1;
    background: none;
    padding: 10px 20px;
    cursor: pointer;
    color: #fff;
    transition: .15s;
}

.playcz-dropdown-list li:hover {
    color: var(--main-nav-primary-color);
}

/* Show select box only on mobile */
.playcz-mobile-dropdown {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

/* Hide custom dropdown on mobile */
@media (min-width: 768px) {
    .playcz-dropdown {
        display: block;
    }

    .playcz-mobile-dropdown {
        display: none;
    }
}