.sign-up-form p {
  margin-bottom: 5px;
}

.sign-up-form .form-group {
  align-items: center;
}

.sign-up-form .wpcf7-form-control-wrap {
  display: block;
}

.sign-up-form select {
  margin-bottom: 0.625rem;
  padding: 10px 20px;
  border: none;
  outline: none;
}

.trainee-form .sign-up-form select {
  border: 1px solid rgba(0,0,0,.15);
  padding: 5px 20px;
}

.btn-column p {
  display: flex;
  align-items: center;
}

.dashboard .save-button,
.sign-up-form .wpcf7-submit,
.save-schedule-form .btn-submit,
a.btn-add {
  float: none;
  color: #ffffff;
  border-width: 0;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.857rem 1.429rem;
  font-size: 1rem;
  height: auto;
  background: var(--ewm-color-secondary);
  background: linear-gradient(to right, #c79e53 0%, #664a32 100%);;
  border-radius: 40px;
}

a.btn-add {
  text-decoration: none;
}

.dashboard #nav-dashboard {
  border: 0;
}

.dashboard .nav-item {
  min-width: 200px;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-bottom: 5px;
}

.dashboard .nav-item a {
  color: #ffffff;
}

.dashboard .tab-content {
  flex-grow: 1;
  padding: 20px;
  background: #f9f6ef;
  color: #000;
  min-height: 300px;
  border-radius: 5px;
  max-width: 100%;
  overflow-y: auto;
}

.dashboard h1,
.dashboard h2,
.dashboard h3,
.dashboard h4 {
  color: inherit;
}

.dashboard input {
  padding: 5px 10px;
  outline: none;
}

.dashboard table {
  overflow-x: auto;
  border: 1px solid #c3c4c7;
}

.dashboard table thead th,
.dashboard table tfoot th {
  font-weight: 500;
  background-color: #ffffff;
  border-bottom: 1px solid #c3c4c7;
}

.dashboard table tfoot th {
  border-top: 1px solid #c3c4c7;
}

.dashboard table thead th,
.dashboard table tfoot th,
.dashboard table tbody td {
  white-space: nowrap;
}

.dashboard table tbody tr {
  background-color: #ffffff;
}

.dashboard table tbody tr.alternate {
  background-color: #f0f0f1;
}

.fotos .preview {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: none;
  display: block;
}

.fotos img {
  visibility: hidden;
  opacity: 0;
  max-width: 100%;
  min-height: 300px;
}

.fotos span {
  text-align: center;
  display: block;
}

.save-schedule-form label {
  font-weight: 500;
}

.loading-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 10px;
  margin: 0 24px;
  position: relative;
}

.loading-spinner-wrapper.show .loading-spinner {
  visibility: visible;
}

.loading-spinner::before {
  content: '';
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.alert.notice-message {
  display: none;
}