body {
    background-color: black;
    color: white;
    font-family: 'Mohave', sans-serif;
}
.d-flex {
    display: flex;
    align-items: center;
}
select {
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.drums {
    margin: auto;
    margin-top: 5px;
    width: 80vw;
    display: flex;
    justify-content: start;
}

.drum {
    margin-right: 5px;
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 5px;
}
.selected {
    box-shadow: inset 0px 0px 12px 9px #ffdd00;
}
.line-1 {
    background-color: rgba(123, 215, 198, 0.3);;
}
.active-1 {
    box-shadow: 0 0 40px 20px #0ff;
    background-color: #7bd7c6;
}

.line-2 {
    background-color: rgba(245, 109, 207, 0.3);
}
.active-2 {
    box-shadow: 0 0 40px 20px #ff19c0;
    background-color: #f56dcf;
}

.line-3 {
    background-color: rgba(240, 245, 109, 0.3);
}
.active-3 {
    box-shadow: 0 0 40px 20px #ffdd00;
    background-color: #f0f56d;
}
.line-4 {
    background-color: rgba(255, 0, 0, 0.3);
}
.active-4 {
    box-shadow: 0 0 40px 20px #f85555;
    background-color: #ff0000;
}

.line-5 {
    background-color: rgba(135, 255, 19, 0.3);
}
.active-5 {
    box-shadow: 0 0 40px 20px #bbf87e;
    background-color: #87ff13;
}

.line-6 {
    background-color: rgba(123, 215, 198, 0.3);
}

.active-6 {
    box-shadow: 0 0 40px 20px #0ff;
    background-color: #7bd7c6;
}

.line-7 {
    background-color: rgba(245, 109, 207, 0.3);
}
.active-7 {
    box-shadow: 0 0 40px 20px #ff19c0;
    background-color: #f56dcf;
}

.line-8 {
    background-color: rgba(240, 245, 109, 0.3);
}
.active-8 {
    box-shadow: 0 0 40px 20px #ffdd00;
    background-color: #f0f56d;
}

.line-9 {
    background-color: rgba(255, 0, 0, 0.3);
}
.active-9 {
    box-shadow: 0 0 40px 20px #f85555;
    background-color: #ff0000;
}

.line-10 {
    background-color: rgba(135, 255, 19, 0.3);
}
.active-10 {
    box-shadow: 0 0 40px 20px #bbf87e;
    background-color: #87ff13;
}
.border-white {
    border: 1px solid #dcdada;
}
.control-icon {
    color: #2cff00;
    cursor: pointer;
}
.control-block {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bpm {
    width: 65px;
    height: 30px;
    border: 1px solid black;
    margin-left: 10px;
    background-color: black;
    font-size: 27px;
    color: white;
}
.bpm-label {
    font-size: 27px;
}
.mobile {
    display: none;
}
@media screen and (max-width: 600px) {
    .d-none {
        display: none;
    }
    .mobile {
        display: block;
    }
}
