.App {
  min-height: 100vh;
}

input,
select,
textarea {
  outline: none;
}

.uppercase {
  text-transform: uppercase;
}

.full-width {
  width: 100%;
}

.active {
  &:before {
    width: 100% !important;
  }
}

.truncate_text_1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  display: box !important;
  -moz-box-orient: vertical;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.4;
}

.table-layout {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

a:active,
a:focus {
  outline: none;
}
