#metronome-modal {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

#metronome {
    position: absolute;
    top: calc((100% - 700px)/2);
    left: calc((100% - 500px)/2);
    background-color: #1e2227;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 500px; /* 100%; */
    height: 700px; /* 100%; */

    font-family: Arial, sans-serif;
    color: #e9e9e9;
}

#play-button {
    width: 150px !important;
    height: 150px !important;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.title {
    font-size: 30px;
    text-align: center;
}

#tempo {
    font-size: 40px;
}

.bpm {
    font-size: 12px;
    text-align: center;
}

.tempo-controls {
    margin-top: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row;
}

.tempo-container {
    margin: 0 15px;
}

.pan-control {
    margin-top: 30px;
}

#metronome-modal button {
    padding: 6px;
    border: none;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    margin: 5px;
    background-color: #2a4949;
    color: #e9e9e9;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.created-by {
    margin-top: 40px;
}

#metronome a {
    color: #e9e9e9;
}

#metronome a:hover {
    color: #356161;
}

.play {
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 50px solid #e9e9e9;
    margin-left: 15px;
}

.pause {
    width: 50px;
    height: 60px;
    border: none;
    border-left: 15px solid #e9e9e9;
    border-right: 15px solid #e9e9e9;
}

#metronome-close {
  margin-top: 60px;  
}