* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

button,
.btn {
  border: none;
  background-color: transparent;
  color: black;
  padding: 0.8rem 2rem;
  transition: 0.4s;
  text-decoration: none;
  font-size: 12px;
}

.btn {
  width: fit-content;
}

button:hover,
.btn:hover {
  cursor: pointer;
  opacity: 0.7;
}

.dlt-btn {
  background-color: #940051;
  color: #fff;
}

.gray-btn {
  background-color: #fafafa;
  color: black;
  border: 1px solid #777;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 4px;
}
.gray-btn * {
  padding: 0.2rem 0rem;
}

.large-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: none;
}
.large-table tr {
  transition: 0.4s;
}
.large-table tr th {
  color: #ccc;
  font-weight: 500;
}
.large-table tr .img-container {
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.large-table tr .img-container img {
  width: 6rem;
}
.large-table tr th,
.large-table tr td {
  text-align: left;
  padding: 0.5rem;
}
.large-table tr th .row,
.large-table tr td .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.large-table tr th .row span,
.large-table tr td .row span {
  margin-right: 1rem;
}
.large-table thead th {
  padding-bottom: 2rem;
}
.large-table tbody tr:hover {
  cursor: pointer;
  background-color: #fafafa;
}

.display-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: none;
}
.display-table tr {
  transition: 0.4s;
  border-bottom: 1px solid #CCCCCC;
}
.display-table tr th {
  color: #fff;
  font-weight: 500;
}
.display-table tr th,
.display-table tr td {
  text-align: left;
  padding: 1rem;
  font-size: 13px;
}
.display-table tr th .row,
.display-table tr td .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.display-table tr th .row span,
.display-table tr td .row span {
  margin-right: 1rem;
}
.display-table thead {
  background-color: #444444;
}
.display-table tbody tr:hover {
  cursor: pointer;
  background-color: #eeeeee;
}

.circle-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #000;
  border-radius: 100px;
  font-size: 16px;
  color: white;
}

.bar-loading {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.438);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}
.bar-loading > div {
  width: 300px;
  max-width: 80%;
}

.hidden-loading {
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ccc;
  padding: 0.5rem;
  border-radius: 4px;
}
.form-group input[type=file] {
  display: none;
}
.form-group label {
  font-weight: 500;
  color: #777;
  font-size: 14px;
}
.form-group .other {
  display: flex;
  justify-content: flex-end;
}
.form-group a {
  font-size: 11px;
  text-align: right;
  padding-top: 0.5rem;
  color: #777;
}
.form-group .input-icon {
  text-decoration: none;
  position: relative;
  bottom: 2.2rem;
  right: 1rem;
  font-size: 1rem;
  transition: 0.4s;
}
.form-group .hide .fa-eye {
  display: none;
}
.form-group .show .fa-eye-slash {
  display: none;
}

.file-form label {
  display: inline-block;
  color: white;
}

textarea {
  resize: none;
}

.cuf {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  flex-wrap: wrap;
}
.cuf .panel {
  width: 100%;
  max-width: 100vw;
  flex: 50%;
  padding: 1rem;
}
.cuf .panel .form-group {
  width: 100%;
}
.cuf .panel .panel-content {
  padding: 0.5rem;
  box-shadow: 1px 0.5px 10px #00000025;
}
.cuf .title {
  text-align: start;
  width: 100%;
  font-size: 12px;
  color: #007190;
  font-weight: bold;
}
.cuf .cuf-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  align-items: flex-start;
  padding: 1rem;
}
.cuf .cuf-content .form-group {
  max-width: 100%;
  margin-right: 1rem;
}
.cuf .cuf-content .fg-area {
  width: 100%;
}
.cuf .cuf-footer {
  padding: 0.5rem;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  position: fixed;
  bottom: 0px;
  right: 0px;
  border-top: 1px solid #ccc;
  background-color: white;
  z-index: 4;
}
.cuf .cuf-footer > * {
  margin-left: 0.5rem;
}

.cuf-display {
  flex: 1;
  padding: 2rem;
}
.cuf-display .cuf-content .form-group {
  width: 200px;
}
.cuf-display .cuf-content .form-group input,
.cuf-display .cuf-content .form-group select {
  border: none;
  padding-left: 0;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000000000000002000000;
  width: 100vw;
  height: 100vh;
  display: none;
}

.show-modal {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
}
.show-modal .modal-content {
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 400px;
  max-width: 100%;
}

.text-h1 {
  font-size: 18px;
}

.text-p {
  font-size: 13px;
}

.text-small {
  font-size: 13px;
}

.text-h2 {
  font-size: 15px;
}

.special-table {
  width: 100%;
}
.special-table td, .special-table th {
  text-align: left;
}
.special-table td a, .special-table th a {
  color: dodgerblue;
  font-size: 12px;
}

/*# sourceMappingURL=style.css.map */
