/* player */
.player {
    position: absolute;
    display: flex;
    flex-flow: column wrap;
    align-items: end;
    top: 50%;
    right: 0;
}

.player marquee {
    width: 195px;
    top: -105px;
    right: -35px;
    position: relative;
    font-size: 0.75rem;
    text-align: center;
    transform: rotate(-90deg);
}

.player-controls {
    display: flex;
    flex-flow: column nowrap;
    margin-right: 15px;
    gap: 5px;
}

.player button,
.player select {
    width: 30px;
    height: 30px;
    padding: 3px;
    transition: 0.1s;
    border: none;
    animation: box-shadow-blur 3.1s infinite;
    background-color: transparent;
}

.player select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.player button:hover,
.player select:hover {
    color: #ffffff;
}

.player button:active {
    transform: scale(1.1);
}

/* viewports */
@media (max-width: 991px) {
    .player {
        top: 40%;
    }

    .player p {
        display: none;
    }
}