.metronome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Lato', sans-serif;
    color: #046AAE;
    font-size: 22px;
    user-select: none;
    margin-top: -15px;
}
.metronome {
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 400px;
    justify-content: space-between;
}
.bpm-display {
    width: 100%;
    text-align: center;
    color: #046AAE;
    font-weight: bold;
}
.bpm-display .tempo {
    font-size: 4em;
}
.tempo-text {
    font-size: .8em;
    font-style: italic;
    text-align: center;
}

.tempo-settings {
    display: flex;
    justify-content: space-between;
}

.tempo-settings .adjust-tempo-button {
    width: 40px;
    height: 40px;
    font-size: 40px;
    border-radius: 50%;
    border: 1px solid #046AAE;
    cursor: pointer;
}
.tempo-settings .adjust-tempo-button:hover {
    background: #046AAE;
    color: #fff;
}
.tempo-settings .decrease-tempo {
    line-height: 40px;
    text-align: center;
}
.tempo-settings .increase-tempo {
    line-height: 40px;
    text-align: center;
}


input[type=range] {
    -webkit-appearance: none;
    background-color: transparent;
    width: 65%;
}
/*Slider styling for Webkit browsers*/
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #046AAE;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: -8px;/*because the track is high up*/
}
/*Slider styling for Firefox browser*/
input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    background-color: #BAC8D9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}


/*Styling for the slider track*/
/*Webkit slider track*/
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 1.5px;
    background-color: #7B89A6;
    cursor: pointer;
}
/*Firefox slider track*/
input[type=range]::-moz-range-track {
    width: 100%;
    height: 1.5px;
    background-color: #7B89A6;
    cursor: pointer;
}


input[type=range]:focus {
    outline: none;
}


.start-stop {
    width: 75px;
    height: 75px;
    font-size: .9em;
    text-align: center;
    background: #046AAE;
    border-radius: 50%;
    color: #fff;
    line-height: 75px;
    margin: 0 auto;
}
.start-stop:hover {
    background: #02406a;
    cursor: pointer;
}

.measures {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.measures .stepper {
    width: 20px;
    height: 20px;
    font-size: 20px;
    border-radius: 50%;
    border: 1px solid #046AAE;
    cursor: pointer;
    text-align: center;
    line-height: 20px;
    margin: 0 5px;
}
.measures .stepper:hover {
    background: #02406a;
    color: #fff;
}
.measures .measure-count {
    font-size: .9em;
}
.beats-per-measure-text {
    text-align: center;
    font-style: italic;
    font-size: 0.6em;
}