.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: text;
    width: 100%;
    overflow: hidden;
}

.row {
    display: flex;
    align-items: baseline;
    max-width: 100%;
}

.input {
    composes: inputXl from "../../../styles/typography.module.css";
    color: var(--ta-color-text);
    border: none;
    outline: none;
    background: none;
    padding: 0;
    text-align: right;
    min-width: 24px;
    max-width: 100%;
    box-sizing: content-box;
}

.input::placeholder {
    color: var(--ta-color-text-secondary);
    opacity: 1;
}

.ticker {
    composes: inputXlSymbol from "../../../styles/typography.module.css";
    color: var(--ta-color-text-secondary);
    white-space: nowrap;
    user-select: none;
    margin-left: 0.2em;
}

.symbol {
    composes: inputXl from "../../../styles/typography.module.css";
    color: var(--ta-color-text-tertiary);
    white-space: nowrap;
    user-select: none;
}

.mirror {
    composes: inputXl from "../../../styles/typography.module.css";
    position: absolute;
    visibility: hidden;
    white-space: nowrap;
    pointer-events: none;
}

.measureRow {
    display: flex;
    align-items: baseline;
    position: absolute;
    visibility: hidden;
    white-space: nowrap;
    pointer-events: none;
}

.measureText {
    composes: inputXl from "../../../styles/typography.module.css";
}
