.extselectors{
    background-color: rgb(21, 21, 21);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 6px;
}
.extselectors.itemwrapper.inactive,
.extselectors.itemwrapper.loaded.inactive{display:none !important}
.fwtitle {
    min-width: 100%;
    padding: 6px;
    font-weight: 600
}
.extselectors .item {
    background: #2d2d2d;
    cursor: default;
    font-size: 13px;
    margin: 2px;
    overflow: hidden;
    padding: 5px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    flex: 1 1 20%;
    max-width: calc(20% - 4px);
}
.extselectors[data-type="episodes"] .item {
    padding: 5px 2px;
    flex: 1 1 10%;
    max-width: calc(10% - 4px);
    box-sizing: inherit;
    justify-content: center;
    text-align: center;
}
@media (max-width: 1220px){
    .extselectors .item {
        flex: 1 1 25%;
        max-width: calc(25% - 4px);
    }

    .extselectors[data-type="episodes"] .item {
        flex: 1 1 20%;
        max-width: calc(20% - 4px);
    }

}
.extselectors .item.active,
.extselectors .item.selected {
    background: #5d5d5d;
}
.extselectors .item:hover{ background: #858484;}
.extselectors .item.clicked {
    background: linear-gradient(110deg,#00a0b0,#042a2d,#00a0b0);
    background-size: 200% 100%;
    animation: gradientMove 2s ease-in-out infinite;
}
@keyframes gradientMove {
    0% {
        background-position: 100% 50%;
    }
    50% {

        background-position: 0% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}