﻿.player {
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    padding: 1em 0 1em 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 230px;
}

    .player button {
        background-color: transparent;
        border: 0;
    }

    .player label {
        width: 25px;
        margin: 0;
    }

    .player progress {
        width: 68%;
        margin-left: 8px;
        margin-right: 8px;
    }

.player-article {
    margin: 2em 0 3em 0;
}

@media all and (max-width: 360px) {
    .player {
        border-bottom: 1px solid lightgray;
        padding: 1em 0 1em 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
    }

        .player button {
            background-color: transparent;
            border: 0;
        }

        .player label {
            width: 25px;
            margin: 0;
            font-size: 10px;
        }

        .player progress {
            margin-left: 5px;
            margin-right: 5px;
        }

    .player-article {
        margin: 0;
    }
}
