/* player for popup on leaflet map */

.player {
    display: flex;
    align-items: center;
}

.player input[type=range] {
    flex: 1;
    margin: 4px;
}

.player button {
    height: 0.7cm;
    width: 0.7cm;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    color: white;
    text-align: right;
    /*
    _box-shadow: 0px 0px 4px black;
    _border-radius: 0.5cm;
    cursor: pointer;
    margin-right: 0.3cm;
    outline: none;
    */
}

.player button.play {
    _background-image: url(image/pause.png);
}
.player button.paused {
    _background-image: url(image/play.png);
}
.player button.fullscreen {
    background-image: url(image/fullscreen.png);
}

.player button:focus {
    outline: none;
}
.player button:active {
    opacity: 0.5;
}


