/*
* SPDX-FileCopyrightText: 2024 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
:host {
  display: flex;
  position: relative;
  flex-direction: column;
}
:host .slot-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
}
:host .field-bottom,
:host .field-top {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-between;
  gap: 1rem;
  width: -moz-min-content;
  width: min-content;
  min-width: 100%;
}
:host .field-bottom .bottom-right {
  margin-left: auto;
  margin-right: 0px;
}
:host .bottom-text {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25rem;
  margin-right: 0.25rem;
}
:host .text-icon {
  margin: 0.125rem;
}
:host .text-icon.invalid {
  color: var(--theme-helper-icon--color--invalid);
}
:host .text-icon.info {
  color: var(--theme-helper-icon--color--info);
}
:host .text-icon.warning {
  color: var(--theme-helper-icon--color--warning);
}
:host .text-icon.valid {
  color: var(--theme-helper-icon--color--valid);
}
:host .bottom-text {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}