body {
    margin: 0;
    background: #ffe1f9;
    padding: 5px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}
#message-banner {
    width: 100%;
    color: white;
    color: #ffaaaa;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    display: none;
}
.three-box {
    display: inline-block;

}
.lfo-box {
    font-family: 'Noto Sans', sans-serif;
    font-size: 30px;
    color: #333333;
    padding: 10px 20px;
    border-radius: 2px;
    display: inline-block;
    margin: 5px;
    text-align: left;
    border-radius: 5%;
}
.dim {
    opacity: .3;
}
.blue {
    background: #78c2f7;
}
.green {
    background: #00d269;
}
.white {
    background: #ffffff;
}
.orange {
    background: #ff6d17;
}
.top {
    white-space: nowrap;
}
.cc-label {
    cursor: default;
}
.on-off {
    float: right;
    cursor: pointer;
    color: red;
}
.canvas-wrapper {
    min-width: 300px;
}
.wave {
    clear: both;
    font-size: 15px;
}
.template {
    display: none;
}
#midi-connect-wrapper{
    margin:auto;
    width:50%;
    font-size:20px;
    color: red;
    font-weight:bold;
}
#midi-ports {
    border:5px solid #78c2f7;
    border-radius: 5px;
    color:black;
    width: 80%;
    margin: auto;
    padding:0;
}
#midi-ports li {
    list-style-type: none;
    font-family:'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
}

li:nth-child(odd) {
    background:#ffe1f9;
}
li:nth-child(even) {
    background:white;
}

#midi-ports .active {
    background: #78c2f7;
}
.wave-select {
    border: 1px solid black;
    background: none;
    border: none;
    border-radius: 0px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    color: #333333;
    margin: 0;
    padding: 0;
    text-align: center;
    outline: none;
    width: 50px;
    cursor: pointer;
}
.control-box {
    margin: 10px 0;
}
.control-wrapper {
    display:inline;
    float: right;
}
label {
    font-size: 15px;
    display: inline-block;
}
.input {
    font-size: 15px;
    width: 40px;
    vertical-align: middle;
    border: none;
    background: none;
    text-align: right;
    color: #333333;
    border-bottom: 3px dashed #333333;
    outline: none;
}
.headfoot {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: bolder;
    color: #78c2f7;
    margin: 15px 0;
}
.headfoot a {
    color: #8ba2d6;
}
.title {
    font-size: 30px;
    text-shadow: 1px 1px #ff0000;
}
.slidecontainer {
    width: 100%;
}
/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #ff8195; /* Handle color */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #ffc7f3; /* Handle color */
  cursor: pointer; /* Cursor on hover */
}
