.atom-input {
    width: auto !important;
    height: auto !important;
    background-color: white;
    border-radius: 3px;
    font-weight: 400;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.atom-input-icon {
    height: 13px;
    filter: invert(72%) sepia(13%) saturate(1%) hue-rotate(314deg) brightness(89%) contrast(87%);
    padding-bottom: 0.3em;
    padding-left: 0.3em;
}

.atom-input-fields {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.atom-input-label {
    background-color: transparent;
    border: none !important;
    border-radius: 3px;
    padding: 0.3em;
    cursor: text;
    font-size: 14px;
}

.atom-input-label:focus-visible {
    outline: none !important;
}

.atom-input-input {
    border: none !important;
    border-radius: 3px;
    padding: 0.3em;
    margin-left: 8px;
    text-align: right;
    cursor: pointer;
}

input.atom-input-input {
    background: inherit;
    color: inherit;
}

.atom-input-input:focus-visible {
    outline: none !important;
}

.atom-input-input[type=range] {
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 110px; /* Specific width is required for Firefox. */
    background: transparent; /* Otherwise white in Chrome */
}

.atom-input-input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.atom-input-input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

.atom-input-input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1.6px solid var(--background);
    height: 13px;
    width: 13px;
    border-radius: 13px;
    background: var(--color);
    margin-top: -3px;
}

.atom-input-input[type=range]::-webkit-slider-container {
    background-size: inherit;
}

.atom-input-input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 7.5px;
    background-color: rgb(0, 0, 0, 15%);
    background-image: linear-gradient(90deg, var(--color), var(--color));
    background-repeat: no-repeat;
    border-radius: 7.5px;
    background-size: inherit;
}

.atom-input-input[type=checkbox] {
    appearance: none;
    width: 24px;
    height: 24px;
    display: grid;
    place-content: center;
    background-color: transparent;
    border: 1px solid var(--color) !important;
    border-radius: 2.5px;
}

.atom-input-input[type=checkbox]:checked::before {
    content: "";
    width: 20px;
    height: 20px;
    position: relative;
    margin-top: -1px;
    clip-path: polygon(25% 49%, 16% 59%, 45% 84%, 82% 38%, 71% 28%, 43% 64%);

    box-shadow: inset 10em 10em var(--color);
}

.atom-input-input[type=number]::-webkit-inner-spin-button {
    margin-left: 10px;
}

.atom-input-input[type=range][value="50"]::-webkit-slider-runnable-track {
    background-color: red;
}