.input-container {
    padding-top: 8rem;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 400;
    padding-bottom: 10vh;
}

.input-container p {
    height: auto;
    width: auto;
    margin: 0;
}

.input-inner-container {
    display: flex;
    align-items: center;
}

.input-inner-container p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 2rem;
}



/* HORIZONTAL, RIGHT → LEFT SLIDER */
input[type='range'] {
    position: relative;
    width: 20vh;              /* horizontal */
    height: .5rem;             /* track thickness */

    direction: ltr;           /* value increases right → left */

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* border: #fdfdfd 2px solid; */
    border-radius: 1rem;
    overflow: hidden;

    background-color: #e9e9e9;           /* grey track */
    box-shadow: inset -4px 4px 8px #e2e2e2;
    transition: .15s linear;
    cursor: pointer;

    z-index: 6;
}

input[type='range']:hover {
    box-shadow: inset 0 4px 8px #dbdbdb;
}

/* ---------- Chrome / Chromium / Safari ---------- */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range']::-webkit-slider-runnable-track {
        height: 100%;
        background: transparent;
    }

    input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 0rem;
        height: 1rem;
        border-radius: .5rem;
        background: transparent;
        box-shadow: -1000px 0 0 1000px rgb(105,160,255);
    }
}

/* ---------- Firefox ---------- */
input[type='range']::-moz-range-track {
  background: transparent;
  border: 0;
}

input[type='range']::-moz-range-progress {
  background: transparent;
}

input[type='range']::-moz-range-thumb {
  width: 0.1rem;
  height: 1rem;
  border: 0;
  border-radius: .5rem;
  background: transparent;
  box-shadow: -1000px 0 0 1000px rgb(105,160,255);
}

/* remove Firefox outline-artifact */
input[type='range']::-moz-focus-outer {
  border: 0;
}

/* ---------- IE / old Edge ---------- */
input[type='range']::-ms-track {
  height: 100%;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type='range']::-ms-fill-lower,
input[type='range']::-ms-fill-upper {
  background: transparent;
}

input[type='range']::-ms-thumb {
  width: 0rem;
  height: 0rem;
  border: 0;
  border-radius: 0rem;
  background: transparent;
  box-shadow: -1000px 0 0 1000px rgb(105,160,255);
}

#omegaTargetSlider, #displacementTargetSlider {
    width: 40vw;
    /* border: #275d96 2px solid; */
}

#omegaContainer {
    bottom: 15vh;
    position: fixed;
}

#displacementContainer {
    bottom: 30vh;
    position: fixed;
}

#omegaContainer p, #displacementContainer p {
    color: #fdfdfd;
    font-size: small;
}

#omegaIndicator, #displacementIndicator, #automaticActionBtn {
    margin-top: 0;
    pointer-events: none;
}

#automaticActionBtn {
    position: fixed;
    bottom: 5vh;
    width: 6rem;
    left: calc(50vw - 3rem);
    z-index: 400;
    cursor: pointer;
    border: none;
    border-bottom: 4px solid #e9e9e9;
    transition: .25s cubic-bezier(0.075, 0.82, 0.165, 1);
    font-size: medium;
    font-weight: 600;
    background: none;
    color: #e9e9e9;
}

#automaticActionBtn:hover {
    border-bottom: 9px dashed #e9e9e9;
}