/* =========================================================
   VOXLY CHANNEL DELETE v0.14.1
   ========================================================= */

.voxly-channel-row {
    display: flex;
    align-items: center;

    width: 100%;
}

.voxly-channel-row .channel {
    flex: 1;
    min-width: 0;
}

.voxly-channel-delete {
    flex: 0 0 26px;

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 3px;

    border: 0;
    border-radius: 5px;

    background:
        transparent;

    color:
        var(--muted);

    font-size: 17px;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
}

.voxly-channel-row:hover
.voxly-channel-delete,
.voxly-channel-delete:focus-visible {
    opacity: 1;
}

.voxly-channel-delete:hover {
    color:
        #ff6b6b;

    background:
        rgba(255,80,80,0.09);
}

@media (hover: none) {

    .voxly-channel-delete {
        opacity: 1;
    }
}
