:root {
  --error-color: #ff3860;
  --spacing-small: 0.5rem;
  --utils-action-color: #aaa;
}

.loading {
    display: none;
}

.loading.is-active {
    display: block;
}

.error-message {
    color: var(--error-color);
    display: none;
    margin-top: var(--spacing-small);
}

.error-message.is-active {
    display: block;
}

.clear-input-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 0%;
    height: 100%;
}

.clear-input-button {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--utils-action-color);
    background: none;
    border: none;
    padding: 0;    
    display: none;
} 