body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-image: url("img/background.jpg");
    background-repeat: no-repeat;
    background-size: unset;
    background-position: center;
    overflow:hidden;
    margin:0;
}
@media (max-width: 768px) { 
    body {
      background-size: unset;
    }
}
  
@media (min-width: 769px) { 
    body {
      background-size: cover;
    }
}
html {
    height: 100%;
}
.tracktoggle {
    width: 60px;
    height: 60px;
    margin-top: 55%;
    margin-bottom: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
    outline: none !important;
}
.tracktoggle:hover {
    opacity: 0.7;
    cursor: pointer;
}

#tracks {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 25%;
}

.track {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: 0 0px; */
}

input[type=range] {
    width: 100px;
    margin: 3.45px 0;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    transition: opacity 0.3s ease;
    opacity: 0.5;
    top: 40%;
    transform: rotate(270deg);
}

input[type=range]:hover{
    opacity:0.7;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    background: rgba(189, 191, 191, 0.4);
    border: 1px solid rgba(24, 26, 28, 0.4);
    border-radius: 25px;
    width: 100%;
    height: 11.1px;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    margin-top: -4.45px;
    width: 18px;
    height: 18px;
    background: #ece9eb;
    border: 3px solid rgba(34, 30, 24, 0.1);
    border-radius: 14px;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(189, 191, 191, 0.4);
}

input[type=range]::-moz-range-track {
    background: rgba(189, 191, 191, 0.4);
    border: 1px solid rgba(24, 26, 28, 0.4);
    border-radius: 25px;
    width: 100%;
    height: 11.1px;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ece9eb;
    border: 3px solid rgba(34, 30, 24, 0.1);
    border-radius: 14px;
    cursor: pointer;
}

input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 5.45px 0;
    color: transparent;
    width: 100%;
    height: 11.1px;
    cursor: pointer;
}

input[type=range]::-ms-fill-lower {
    background: #3e3f3f;
    border: 1px solid rgba(24, 26, 28, 0.4);
    border-radius: 50px;
}

input[type=range]::-ms-fill-upper {
    background: rgba(189, 191, 191, 0.4);
    border: 1px solid rgba(24, 26, 28, 0.4);
    border-radius: 50px;
}

input[type=range]::-ms-thumb {
    width: 18px;
    height: 18px;
    background: #ece9eb;
    border: 3px solid rgba(34, 30, 24, 0.1);
    border-radius: 14px;
    cursor: pointer;
    margin-top: 0px;
}

input[type=range]:focus::-ms-fill-lower {
    background: rgba(189, 191, 191, 0.4);
}

input[type=range]:focus::-ms-fill-upper {
    background: rgba(189, 191, 191, 0.4);
}


@supports (-ms-ime-align:auto) {
    input[type=range] {
        margin: 0;
    }
}
