.filter-values {
    max-height: 300px !important;
}

.slick-track {
    margin-left: unset;
}

.streamer-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 0.5rem;
}

.streamer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: calc((100% - 2.5rem) / 6);
    height: 200px;
    border-radius: 4px;
}

.streamer .stream-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #eb0400;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.streamer .streamer-box {
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    background-color: rgba(0, 0, 0, .6);
    text-align: center;
    -webkit-box-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    width: 100% !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    overflow: hidden !important;
}

.streamer .streamer-box img {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    margin-bottom: 5px;
}

.streamer .streamer-box span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #fff !important;
    font-weight: 600 !important;
}

.streamer .streamer-box a:hover {
    text-decoration: underline;
    color: #772ce8;
}

.streamer .playing {
    color: #ccc;
}

.donate-button {
    background-color: var(--var-streamer-primary-color);
    color: #fff !important;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 13px;
    height: 40px;
    margin-top: 10px;
    transition: background-color 0.1s;
    cursor: pointer;
    border: 0;
    outline: 0;
}

.donate-button:hover {
    background-color: #772ce8;
    color: #fff;
}

.donate-button .donate-flex {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex-grow: 1;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 8px;
    padding-right: 8px;
}

.donate-button .donate-flex i {
    margin-right: 8px;
}

.apply-stream {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .streamer-list {
        gap: 0px;
    }

    .streamer {
        width: 47.5%;
        margin: 1.2%;
    }

    .filter-tool {
        background-color: #dbdbdb !important;
    }
}

