@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap');

::-webkit-scrollbar {
    width: 0px;
}

body {
    font-family: 'Quicksand', sans-serif;
    padding: 0;
    margin: 0;
    text-align: center;
    color: white;
    background-color: #28282c;
}

.header {
    padding:10px;
}

.main-logo {
    width:50px;
    position:absolute;
    margin-top:-14px;
    margin-left:10px;
}
/*
.sequencer {
    background-color: #28282c;
    height: 500px;
}
*/

.kick,
.snare,
.hihat,
.clap,
.shake,
.fing,
.rim,
.tom {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.kick > input,
.snare > input,
.hihat > input,
.clap > input,
.shake > input,
.fing > input,
.rim > input,
.tom > input {
    margin: 22px;
}

.kick input::before,
.snare input::after,
.hihat input::after,
.clap input::after,
.shake input::after,
.fing input::after,
.rim input::after,
.tom input::after {
    cursor: pointer;
    content: "";
    position: absolute;
    height: 50px;
    width: 50px;
}

.kick input::before {
    top: -10%;
    margin-left: -17px;
    background: #36363c;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.snare input::after,
.hihat input::after,
.clap input::after,
.shake input::after,
.fing input::after,
.rim input::after,
.tom input::after {
    top: -10%;
    margin-left: -17px;
    background: #36363c;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.kick input[type="checkbox"]:checked::before {
    background: #0087ff;
    box-shadow: 0 0 12px 0 rgba(0, 135, 255, 0.8);
}

.snare input[type="checkbox"]:checked::after,
.hihat input[type="checkbox"]:checked::after,
.clap input[type="checkbox"]:checked::after,
.shake input[type="checkbox"]:checked::after,
.fing input[type="checkbox"]:checked::after,
.rim input[type="checkbox"]:checked::after,
.tom input[type="checkbox"]:checked::after {
    background: #0087ff;
    box-shadow: 0 0 12px 0 rgba(0, 135, 255, 0.8);
}

.control-button {
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #36363c;
    color: white;
    font-size: 16px;
    padding: 15px;
    margin: 5px;
    border-radius: 6px;
    outline-style: none;
    transition: 0.3s;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.control-button:hover {
    border: 2px solid #111;
    transition: 0.3s;
}

.control-button:focus {
    border: 2px solid #111;
    transition: 0.3s;
}

.control-bpm {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    width: 40px;
    border: 2px solid transparent;
    background-color: #36363c;
    color: #0087ff;
    font-size: 16px;
    padding: 15px;
    margin: 5px;
    border-radius: 6px;
    outline-style: none;
    transition: 0.3s;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.control-bpm:hover {
    border: 2px solid #111;
    transition: 0.3s;
}

.control-bpm:focus {
    border: 2px solid #111;
    transition: 0.3s;
}

/* Styling Labels */

.label-box-1{
    position:relative;
    width:100%;
    height:0px;
    pointer-events: none;
    z-index:10;
    border:0px solid white;
}
.labels {
    font-size:12px;
    margin-left:-850px;
    line-height: 45px;
}

.label-box-2 {
    border: 0px solid white;
    position: fixed;
    height: auto;
    top: 60px;
    left: 50px;
    z-index: 10;
    margin-bottom: -500px;
    pointer-events: none;
    font-size: 12px;
}