.modo-range {}

.modo-range input {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background: transparent;
    align-self: center;
    position: relative;
    z-index: 5;
    appearance: none;
    -webkit-appearance: none;
}

.modo-range__markers {
    width: 100%;
    display: grid;
    grid-template-columns: 27.66% 1fr 1fr;
}

.modo-range__markers div {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #ccc;
    text-align: center;
}

.modo-range__markers div:first-child {
    text-align: left;
}

.modo-range__markers div:last-child {
    text-align: right;
}

.modo-range input::-webkit-slider-thumb {
    display: block;
    position: relative;
    height: 32px;
    width: 32px;
    cursor: pointer;
    border: none;
    aspect-ratio: 1/1;
    transition: all 0.2s ease-in-out;
    background-color: #3faf04;
    border-radius: 4px;
    transform: translate(-4px, -14px) rotate(45deg);
    transform-origin: 50% 50%;
    -webkit-appearance: none;
}

.modo-range input::-webkit-slider-thumb::after {
    color: #fff;
    content: '< >';
    transform: rotate(-45deg);
}

.modo-range input::-moz-range-thumb {
    display: block;
    position: relative;
    height: 32px;
    width: 32px;
    cursor: pointer;
    border: none;
    aspect-ratio: 1/1;
    transition: all 0.2s ease-in-out;
    background-color: #3faf04;
    border-radius: 4px;
    transform: rotate(45deg);
    -webkit-appearance: none;
}

.modo-range input::-ms-thumb {
    display: block;
    position: relative;
    height: 32px;
    width: 32px;
    cursor: pointer;
    border: none;
    aspect-ratio: 1/1;
    transition: all 0.2s ease-in-out;
    background-color: #3faf04;
    border-radius: 4px;
    transform: rotate(45deg);
    -webkit-appearance: none;
}

.modo-range input::-webkit-slider-runnable-track {
    height: 8px;
    cursor: pointer;
    border-radius: 4px;
    background: #ddd;
    border-color: transparent;
    color: transparent;
    margin-bottom: 24px;
}

.modo-range inputt::-moz-range-track {
    width: 100%;
    height: 16px;
    cursor: pointer;
    border-radius: 4px;
    background: #ddd;
    border-color: transparent;
    color: transparent;
}

.modo-range input::-ms-track {
    width: 100%;
    height: 16px;
    cursor: pointer;
    border-radius: 4px;
    background: #ddd;
    border-color: transparent;
    color: transparent;
}

.modo-range input::-ms-tooltip {
    display: none;
}