html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

.app {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  min-height: 100%;
}

.header {
  display: flex;
  background-color: #f8f9fa;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0.75rem;
  height: 45px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.header * {
  display: flex;
}
.header .logo,
.header .name {
  width: 100px;
  align-items: center;
}
.header .name {
  justify-content: right;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

.card {
  max-width: 800px;
  margin: 0.75rem;
  flex: 1;
  margin-top: 2rem;
  border-radius: 10px;
  padding: 0 2rem 2rem 2rem;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.card .sub-card {
  margin: 0.75rem;
  flex: 1;
  margin-top: 2rem;
  border-radius: 10px;
  padding: 0 2rem 2rem 2rem;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.card .title {
  text-align: center;
  text-transform: uppercase;
  padding: 2rem;
  font-weight: bold;
}

footer {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: thin solid rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-top: 10px;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.append .input {
  flex: 1;
  width: auto;
}
.append .input.right {
  border-end-end-radius: 0px;
  border-top-right-radius: 0px;
}
.append .input.left {
  border-top-left-radius: 0px;
  border-end-start-radius: 0px;
}
.append button.right {
  border-end-end-radius: 0px;
  border-top-right-radius: 0px;
}
.append button.left {
  border-top-left-radius: 0px;
  border-end-start-radius: 0px;
}

select.input {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.754rem center;
  background-size: 8px 10px;
}

.input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.input:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.input:disabled,
.input :read-only {
  background-color: #e9ecef;
  opacity: 1;
}

.ml {
  margin-left: 0.75rem;
}

button {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
}
button:hover {
  opacity: 0.7;
}
button.primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
button.success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
button.danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
button.btn-alert {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.row {
  padding-top: 0.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.row.left {
  justify-content: end;
}
.row.center {
  justify-content: center;
}
.row.right {
  justify-content: end;
}

.f1 {
  flex: 1;
}

.alert {
  margin-top: 0.75rem;
  opacity: 0.8;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert.success {
  color: #FFF;
  background-color: #198754;
}
.alert.danger {
  color: #FFF;
  background-color: #dc3545;
}
.alert.danger-light {
  color: #2f2f2f;
  border: #dc3545 1px solid;
  padding: 5px;
}

.invisible {
  display: none;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #c6538c;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.w-100 {
  width: 100%;
}

.d-flex {
  display: flex !important;
}
/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 6rem auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
}

th {
  text-align: inherit;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
#file-input {
  width: 100%;
  height: 44px;
  border-radius: 4px;
  margin: 10px auto;
  font-size: 15px;
}

#file-input {
  padding: 0;
  border: 1px solid #ddd;
  line-height: 44px;
  text-align: left;
  display: block;
  cursor: pointer;
}

#bar,
#prgbar {
  width: 100%;
  border-radius: 10px;
}

#bar {
  background-color: #0d6efd;
  width: 0%;
  height: 10px;
}