.player-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.players-view-top .col-infos .player-name-row h2 {
    min-width: 0;
}

.player-audio-trigger {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #40c0da;
    box-shadow: 0 5px 14px rgba(42, 75, 154, .18);
    color: #fff;
    cursor: pointer;
    transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.player-audio-trigger:hover,
.player-audio-trigger:focus-visible {
    background: #2a4b9a;
    box-shadow: 0 7px 18px rgba(42, 75, 154, .28);
    outline: none;
    transform: translateY(-1px);
}

.player-audio-trigger.is-playing {
    background: #db3137;
}

.player-audio-trigger .material-icons {
    font-size: 23px;
    line-height: 1;
}

@media only screen and (max-width: 660px), only screen and (max-device-width: 660px) {
    .player-name-row {
        gap: 9px;
    }

    .player-audio-trigger {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .player-audio-trigger .material-icons {
        font-size: 20px;
    }
}
