html {
  --primary-color: #ebebeb;
  --secondary-color: #d0d0d0;
  --tertiary-color: #cbcbcb;
  --primary-color-background: #3c3c3b;
  --primary-contrast-color: #606060;
  --box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  --box-shadow-btn-focus: 2px 4px 3px rgb(0 0 0 / 55%);
  --border-radius: 0;
  --border-radius-modal: 4px;
  --progress-bar-background-color: #99ff00;
  --progress-bar-color: #ebebeb;
  --background-gradient-invert: linear-gradient(
    180deg,
    #f0f0f0 0%,
    #ebebeb 100%
  );
  --background-gradient: linear-gradient(
    0deg,
    #f0f0f0 0%,
    var(--primary-color) 100%
  );
}

body {
  /* font-family: 'Noto Sans', sans-serif !important; */
  padding-bottom: 150px;
  background: var(--background-gradient);
}

.css-form-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 150px;
  align-items: center;
}

.css-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.7em 1.1em;
  width: 100%;
  height: auto;
  padding: 1em 1em;
  background: var(--background-gradient-invert);
  box-shadow: var(--box-shadow);
  justify-content: center;
}

.css-form-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.7em 1.1em;
}

.css-btn.css-modal-button {
  padding: 0.6em 1em !important;
}

.supplier-overview {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--background-gradient);
}

.master-detail-btn-to-inputs-container {
  display: flex;
  flex-direction: row;
  gap: 1em;
  flex-grow: 1;
  flex-wrap: wrap;
}

.css-select {
  width: 100%;
  display: inline-block;
  border: 1px solid var(--primary-color-background);
  background-color: #fff;
  color: black;
  border-radius: var(--border-radius);
  box-sizing: border-box;
  padding: 0.5em;
}

.css-select:focus {
  outline: 1px solid #f05f4094;
  outline-style: auto;
}

.css-logout-btn-large {
  visibility: hidden;
  bottom: 74px;
  position: fixed;
  right: 0px;
  width: 150px !important;
}

.css-logout-btn-small {
  bottom: 148px;
  position: fixed;
  right: 0px;
  width: 42px !important;
}

.css-form app-spinner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 480px) {
  .css-form {
    flex-direction: row;
    max-width: 950px;
    padding: 2em 1.5em;
  }

  .css-logout-btn-large {
    visibility: visible;
  }

  .css-logout-btn-small {
    visibility: hidden;
  }
}

@media (min-width: 600px) {
  .css-form {
    padding: 2em 3em;
  }
}

@media (min-width: 655px) {
  .css-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 80px;
  }
}

@media (min-width: 1100px) {
  .css-form {
    gap: 0.7em 6em;
  }
}
