.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;

    box-sizing: border-box;
    width: 160px;
    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: 8px;
}

.item {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 32px;
    gap: 10px;
}

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

    color: var(--color-text-primary);
}

.suffix {
    position: absolute;
    right: 4px;

    font: inherit;
    user-select: none;
    text-align: right;

    color: #555;
}

.item-input {
    box-sizing: border-box;
    max-width: 60px;
    height: 32px;
    padding-left: 8px;

    font-size: 16px;

    color: var(--color-text-primary);
    border: none;
    border-radius: 8px;
    outline: none;
    background: rgba(92, 94, 102, 0.06);

    transition: border-color 0.2s ease;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;

    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}
