/* CSS Document */
 .player {
 	margin-left: 10px;
	width: 150px;
	height: 30px;
}
/* Contenedor principal con botón + barra en fila */
.playerControls {
    display: flex;
	align-items: center;
}
.playerBoton {
    border: 0;
    background: none;
    color: red;
    font-size: 14px;
    cursor: pointer;
}
.playerBoton:hover {
    color: darkred;
}
.playerProgressContainder {
    background: lightgray;
    border: 1px solid red;
    border-radius: 3px;
    cursor: pointer;
    height: 6px;
    flex: 1; /* ocupa todo el espacio sobrante */
    position: relative;
}
.playerProgress {
    background: red;
    border: 1px solid red;
    border-radius: 3px;
    height: 6px;
    width: 0%;
}
.progressTime {
    font-family: 'Montserrat', sans-serif;
	font-size: small;
    color: red;
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 0px 25px;
}
