body, html{
    padding: 0;
    margin: 0;
    position: fixed;
    background-color: #2c3e50;
    width: 100vw;
    height: 100vh;
    user-select: none;
}
.soundNames{
    font-family: 'Balsamiq Sans', cursive;
    color: #ecf0f1;
    position: absolute;
    width: 150px;
    left: 2.5%;
    top: 9.5%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 95vh;
    text-align: right
}
.soundNames h3{
    margin: 0;
    padding: 0;
}
.logo{
    margin-left: 20px;
    width: 200px;
    height: 100px;
}
.globalControllers{
    top: -1.5%;
    left: 25%;
    position: absolute;
    height: 100px;
    width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}
.bpm{
    width: 42px;
    background-color: #8e44ad;
    color: white;
    outline: none;
    border-color: white;
    border-width: thin;
    padding: 0;
    margin: 0;
    font-size: 16px;
}
.bpmInput{
    font-family: 'Avenir', sans-serif;
    color: white;
    background-color: #8e44ad;
    padding: 5px;
    border-radius: 10px;
}
.sound{
    width: 66px;
    height: 66px;
    border-radius: 10px;
    margin: 3px;
    background-color: rgb(24, 26, 27);
    display: inline-block;
    overflow: hidden;
}
.sound:hover{
    filter: brightness(180%);
}
.soundContainer{
    width: 99.1%;
    height: 100%;
    margin: 0 auto;
}
.kit{
    margin: 0;
    padding: 0;
    position: fixed;
    background-color: #34495e;
    width: 85%;
    height: 85%;
    left: 56%;
    top: 57%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}
.soundContainer{
}
.dots{
    margin: 0;
    padding: 0;
    position: relative;
    left: 72%;
    top: 12%;
    opacity: 0.6;
}
/*MENU EDITOR*/
.menu{
    width: 60%;
    height: 50%;
    margin: 0 auto;
    background-color: #2d3436;
    left: 50%;
    top: 50%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 10;
    box-shadow: 0px 6px 5px 2px rgba(0,0,0,0.39);
    visibility: hidden;
}
.soundBox{
    width: 124px;
    height: 124px;
    border-radius: 10px;
    background-color: white;
    position: absolute;
    top: 5%;
    left: 5%;
}
.soundName{
    font-family: 'Avenir', sans-serif;
    position: absolute;
    font-size: 40px;
    top: 8%;
    left: 25%;
}
.controllers input{
    display: block;
    margin-bottom: 50px;
}
.controllers label{
    display: block;
    line-height: 30px;
    color: #dfe6e9;
    font-size: 20px;
}
.controllers{
    top: 8%;
    left: 65%;
    width: 180%;
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: space-between;
}
.saveButton{
    font-family: 'Avenir', sans-serif;
    color: white;
    position: absolute;
    width: fit-content;
    padding: 5px;
    font-size: 25px;
    text-align: center;
    border-radius: 10px;
    background-color: #8e44ad;
    left: 5%;
    top: 70%;
}
.crash .selected{
    background-color: #d35400;
    transition: background-color 200ms linear;
}
.snare .selected{
    background-color: #2980b9;
    transition: background-color 200ms linear;
}
.openhihat .selected{
    background-color: #c0392b;
    transition: background-color 200ms linear;
}
.kick .selected{
    background-color: #8e44ad;
    transition: background-color 200ms linear;
}
.hightom .selected{
    background-color: #27ae60;
    transition: background-color 200ms linear;
}
.mediumtom .selected{
    background-color: #192a56;
    transition: background-color 200ms linear;
}
.lowtom .selected{
    background-color: #6D214F;
    transition: background-color 200ms linear;
}
.closedhihat .selected{
    background-color: #58B19F;
    transition: background-color 200ms linear;
}
.soundBox{
    font-size: 16px;
    font-family: 'Avenir', sans-serif;
    text-align: center;
}
.linePlayer{
    height: 100%;
    margin: 0;
    padding: 0;
    width: 2px;
    background-color: #8e44ad;
    border-radius: 10px;
    position: absolute;
    left: 0px;
    z-index: 100;
    transition: left 30ms linear;
}
nav{
    margin: 0;
    width: 100vw;
    height: 12%;
    background-color: rgb(15, 72, 103);
    display: flex;
    align-items: flex-end;
}
/*PRESET MENU*/
#presetMenu, #presetMenu ul{
    padding:0;
    margin:0;
    list-style:none;
    text-align:center;
}
#presetMenu li{
    display:inline-block;
    position:relative;
    border-radius:8px 8px 8px 8px;
}
#presetMenu li:hover{
    border-radius:8px 8px 0px 0px;
}
#presetMenu ul li{
    display:inherit;
    border-radius:0;
}
#presetMenu ul li:hover{
    border-radius:0;
}
#presetMenu ul li:last-child{
    border-radius:0 0 8px 8px;
}
#presetMenu ul{
    position:absolute;
    z-index: 1000;
    max-height:0;
    left: 0;
    right: 0;
    overflow:hidden;
    transition: .4s all .3s;
}
#presetMenu li:hover ul{
    max-height:15em;
}
#presetMenu li{
    background: #8e44ad;
}
#presetMenu li li:hover{
    background:#e699ff;
}
#presetMenu a{
    text-decoration:none;
    display:block;
    padding:8px 32px;
    color:#fff;
    font-family:'Avenir', sans-serif;
}
#presetMenu ul a{
    padding:8px 0;
}
/*Input Range Styling*/
input[type='range'] {
    background: linear-gradient(to right, #8e44ad 0%, #8e44ad 50%, #fff 50%, #fff 100%);
    border: solid 1px #8e44ad;
    border-radius: 8px;
    height: 7px;
    width: 180px;
    outline: none;
    transition: background 450ms ease-in;
    appearance: none;
}
/*Used for the Stereo controller Only.*/
.stereo[type='range'] {
    background: #fff;
    border: solid 1px #8e44ad;
    border-radius: 8px;
    height: 7px;
    width: 180px;
    outline: none;
    transition: background 450ms ease-in;
    appearance: none;
}
.masterVolumeLabel{
    font-family: 'Avenir', sans-serif;
}
.button{
    width: fit-content;
    padding: 5px;
    height: 15px;
    font-family: 'Avenir', sans-serif;
    color: white;
    border-radius: 10px;
    background-color: #8e44ad;
    text-align: center;
}
@font-face {
    font-family: 'Avenir';
    src: url('./fonts/AvenirLTStd-Roman.woff2') format('woff2'), url('./fonts/AvenirLTStd-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
