.streamers {
    position: fixed;
    z-index: 99999;
    bottom: 20px;
    display: none;
    right: 0;
    flex-direction: row-reverse;
}

.streamers__container {
    display: flex;
}

.streamers__online {
    display: flex;
    padding: 10px;
    background: #f1e0c6;
}

.streamers__title {
    background: #0c1411;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    text-transform: uppercase;
    border: 1px solid #f1e0c6;
}

.streamers__streamer {
    margin-right: 10px;
    position: relative;
    border: 2px solid #f1e0c6;
}

.streamers__streamer:hover {
    border-color: #fff;
}

.streamers__streamer-name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    background: #0c1411;
    padding: 2px;
    text-align: center;
    z-index: 2;
}

.streamers__streamer-thumb {
    position: relative;
}

.streamers__streamer-thumb-user {
    position: absolute;
    bottom: 0;
    left: 0;
}

.streamers__streamer:last-child {
    margin-right: 0;
}