body {
    height: 100vh;
    overflow-y: hidden;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 550px;
    justify-content: center;
    transition: 2s all ease;
}

.flex-item {
    background: #e43f5a;
    width: 10px;
    margin: 0 1px;
    transition: 0.1s all ease;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
}

.center {
    display: flex;
    justify-content: center;
}

#sorting {
    transform: rotate(180deg) scaleX(-1);
}

.range-input {
    box-sizing: border-box;
    align-items: center;
    border-radius: 10px;
    line-height: 50px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
}

.range-input input {
    width: 200px;
    height: 2px;
    background-color: salmon;
}

.range-input input,
.range-input input::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.range-input input::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 1px solid;
    border-radius: 50%;
    outline: none;
}

.range-input .label {
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 35px;
    line-height: 35px;
}

button:hover {
    border: 1px solid;
}
