.marker_container {
    position: absolute;

    transform: translate(-50%, -50%) scale(0.5);
}

.container {
    display: flex;
    align-items: center;

    width: 210px;
    padding: 16px;

    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(95, 105, 131, 0.1), 0 4px 24px 0 rgba(95, 105, 131, 0.04);
    gap: 12px;
}

.text {
    font-size: 14px;
    font-style: normal;
    line-height: 16px;

    color: #050d33;
}

.button {
    width: 120px;
    height: 40px;
    margin: 0 auto;

    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;

    border: none;
    border-radius: 12px;
    background-color: #fff;
}

input[type='range'] {
    width: 100%;
    height: 2px;

    cursor: pointer;

    outline: none;
    background: linear-gradient(to right, #122db2 50%, #f5f6f7 50%);
    -webkit-appearance: none;
    appearance: none;
}

input[type='range']::-webkit-slider-thumb {
    width: 16px;
    height: 16px;

    cursor: pointer;

    border: 2px solid #122db2;
    border-radius: 50%;
    background-color: #fff;
    -webkit-appearance: none;
    appearance: none;
}
