.file-upload-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 24px;
  text-align: center;
  background: #fafbfc;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  transition-property: border-color, background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.file-upload-card:hover {
  background: #f0f7ff;
  border-color: #377dff;
}
.file-upload-card:hover .file-upload-icon {
  color: #377dff;
}
.file-upload-card.has-file {
  background: #f0fff4;
  border-color: #28a745;
  border-style: solid;
}
.file-upload-card.has-file .file-upload-icon {
  color: #28a745;
}
.file-upload-card.has-error {
  border-color: #dc3545;
  background: #fff5f5;
}
.file-upload-card.has-error .file-upload-icon {
  color: #dc3545;
}

.file-upload-icon {
  margin-bottom: 12px;
  font-size: 36px;
  color: #8c98a4;
}

.file-upload-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #1e2022;
}

.file-upload-subtitle {
  font-size: 12px;
  color: #8c98a4;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-name {
  margin-top: 12px;
  font-size: 12px;
  color: #28a745;
  word-break: break-all;
  max-width: 100%;
}

.file-upload-current {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 11px;
  color: #8c98a4;
  background: #e7eaf3;
  border-radius: 4px;
  word-break: break-all;
  max-width: 100%;
}

.list-search__input {
  width: 180px;
}

.modal-upload .modal-header {
  justify-content: center;
  border-bottom: none;
  padding-bottom: 0;
}
.modal-upload .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.modal-upload .modal-body {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.modal-upload .spinner-border {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
}
.modal-upload .modal-upload-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.modal-upload .modal-upload-subtitle {
  font-size: 0.9375rem;
}

.project-form__status-bar {
  transition: all 0.2s ease;
}
.project-form__progress {
  height: 8px;
}
.project-form__progress-bar {
  transition: width 0.2s ease, background-color 0.2s ease;
  width: 0;
}
.project-form__participant {
  transition: all 0.2s ease;
}
.project-form__participant:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.input-group-separated .form-control {
  border-radius: 8px !important;
}
.input-group-separated .input-group-append {
  margin-left: 12px;
}
.input-group-separated .input-group-text {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  background-color: #e7eaf3;
}

.table tbody tr {
  transition: background-color 0.15s ease-in-out;
}
.table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.table .buttons {
  white-space: nowrap;
}
.table .buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-left: 4px;
  border-radius: 4px;
  transition: background-color 0.15s ease-in-out;
}
.table .buttons a:first-child {
  margin-left: 0;
}
.table .buttons a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.table .buttons a i {
  font-size: 1.25rem;
}

[data-tooltip] {
  position: relative;
}
[data-tooltip]::before, [data-tooltip]::after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  pointer-events: none;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: 6px 10px;
  background-color: #1e2022;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
[data-tooltip]::before {
  content: "";
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-8px + 5px));
  border: 5px solid transparent;
  border-top-color: #1e2022;
}
[data-tooltip]:hover::before, [data-tooltip]:hover::after {
  visibility: visible;
  opacity: 1;
}
[data-tooltip]:hover::after {
  transform: translateX(-50%) translateY(calc(-8px - 2px));
}
[data-tooltip]:hover::before {
  transform: translateX(-50%) translateY(calc(-8px + 5px - 2px));
}

.w-40 {
  width: 40px;
}

.w-100px {
  width: 100px;
}

.w-115 {
  width: 115px;
}

.w-120 {
  width: 120px;
}

.w-150 {
  width: 150px;
}

.w-230 {
  width: 230px;
}

.w-250 {
  width: 250px;
}

.h-25 {
  height: 25px;
}

.fs-2rem {
  font-size: 2rem;
}

.fs-4rem {
  font-size: 4rem;
}

.progress-bar--initial {
  width: 0;
}

.card {
  position: relative;
  z-index: 0;
}

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