#popupSettings .popupInner {
    width: 600px;

    flex-direction: column;
    justify-content: flex-start;
}

#settingsOptions {
    background: #f1f1f1;
}

#popupSettings  .labelTitle{
    margin: 0 auto 20px;
}

.settingsSlider {
    display: block;
    margin: 20px 5%;
}
.sliderTitle {
    width: 100%;
}
.settingsSlider .sliderContainer {
    width: 100%;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.settingsSlider input {
    accent-color: #87D3D6;
}
.settingsSlider input[type=range] {
    flex-grow: 1;
}
.settingsSlider .valueSpan {
    width: 40px;
    text-align: right;
}

.sliderContainer.qualContainer {
    display: block;
}
#qualitySlider {
    width: 100%;
}
.labelsCont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.qualLabel {
    display: block;
    width: 33%;
    position:relative;
    font-weight: normal;
    font-size: 12px;
}
.qualIndicator {
    position: absolute;
    width: 4px;
    height: 20px;
    background: #87D3D6;
    pointer-events: none;
    /* border: 1px solid black; */
    border-radius: 8px;
    top: -18px;
    left: 50%;
    z-index: 0;
}
.qualIndicator.leftIndicator {
    left: 6%;
    margin-left: 1px;
}
.qualIndicator.rightIndicator {
    left: 93%;
    margin-left: 1px;
}
#qualitySlider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: transparent;
    opacity: 1;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
    outline: 1px solid #87D3D6;
}