* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

svg {
    width: 100%;
    height: 100%;
}

.input-range__slider {
    appearance: none;
    background: white;
    border: 1px solid white;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.65rem;
    outline: none;
    position: absolute;
    top: 50%;
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
    width: 1rem;
}

.input-range__slider:active {
    transform: scale(1.3);
}

.input-range__slider:focus {
    box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2);
}

.input-range--disabled .input-range__slider {
    background: #cccccc;
    border: 1px solid #cccccc;
    box-shadow: none;
    transform: none;
}

.input-range__slider-container {
    transition: left 200ms ease-in-out;
}

.input-range__label {
    color: #aaaaaa;
    font-family: 'Helvetica Neue', san-serif;
    font-size: 0.8rem;
    transform: translateZ(0);
    white-space: nowrap;
}

.input-range__label--min,
.input-range__label--max {
    top: 1.7rem;
    position: absolute;
}

.input-range__label--min {
    left: 0;
}

.input-range__label--max {
    right: 0;
}

.input-range__label--value {
    position: absolute;
    top: 1rem;
}

.input-range__label-container {
    left: -50%;
    position: relative;
}

.input-range__label--max .input-range__label-container {
    left: 50%;
}

.input-range__track {
    background: #afafaf;
    border-radius: 0.2rem;
    cursor: pointer;
    display: block;
    height: 0.2rem;
    position: relative;
    transition: left 200ms ease-in-out, 200ms ease-in-out;
}

.input-range--disabled .input-range__track {
    background: #eeeeee;
}

.input-range__track--background {
    left: 0;
    margin-top: -0.15rem;
    position: absolute;
    right: 0;
    top: 50%;
}

.input-range__track--active {
    background: white;
    height: 0.3rem;
}

.input-range {
    height: 1rem;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.tox-notifications-container {
    display: none;
}

.ReactModal__Overlay {
    z-index: 390;
}
