.info-window {
    padding: 8px 12px 8px 40px;
    border-radius: 12px;
    background-color: #313133;
    background-image: url('./info-icon.svg');
    background-position: 10px 8px;
    background-repeat: no-repeat;
    color: #f2f5fa;
    font-size: 14px;
    line-height: 20px;
    min-width: max-content;
}

.container {
    height: 396px;
    padding: 8px 4px;
    width: 40px;
    text-align: center;
    box-sizing: border-box;
}

.control-text {
    font-size: 10px;
    color: #c8c9cc;
}

.slider__value {
    position: relative;
    background-color: #ffffff;
    font-size: 10px;
    top: -137px;
}

input[type='range'] {
    height: 332px;
    width: 2px;
    -webkit-appearance: none;
    writing-mode: vertical-lr;
    direction: rtl;
    margin: 4px 16px;
    background: linear-gradient(to top, var(--slider-color-track) 25%, #f6f6f6 25%);
}

input[type='range']:focus {
    outline: none;
}

input[type='range']::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: transparent;
    border-radius: 50px;
}

input[type='range']::-webkit-slider-thumb {
    border: 2px solid var(--slider-color-track);
    height: 16px;
    width: 16px;
    border-radius: 25px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    position: relative;
    left: -7px;
}

input[type='range']:focus::-webkit-slider-runnable-track {
    background: transparent;
}

input[type='range']::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: transparent;
    border-radius: 50px;
}

input[type='range']::-moz-range-thumb {
    border: 2px solid var(--slider-color-track);
    height: 16px;
    width: 16px;
    border-radius: 25px;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    left: -7px;
}

input[type='range']::-ms-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type='range']::-ms-thumb {
    margin-top: 1px;
    border: 2px solid var(--slider-color-track);
    height: 16px;
    width: 16px;
    border-radius: 25px;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    left: -7px;
}
