.UpdScheduler .custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.UpdScheduler .custom-alert .alert-background {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.UpdScheduler .custom-alert .alert-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.UpdScheduler .custom-alert .alert-wrapper .alert-content {
  position: relative;
  background-color: white;
  width: 100%;
  max-width: 30rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #dfdfdf;
}
.UpdScheduler .custom-alert .alert-wrapper .alert-content .input-field {
  margin-top: 1rem;
}
.UpdScheduler .custom-alert .alert-wrapper .alert-content .controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.UpdScheduler .custom-alert .alert-wrapper .alert-content .controls button {
  cursor: pointer;
}
.UpdScheduler .custom-alert .alert-wrapper .alert-content .controls button.confirm {
  display: none;
}
.UpdScheduler .custom-alert .alert-wrapper .alert-content h2,
.UpdScheduler .custom-alert .alert-wrapper .alert-content p {
  margin: 0;
  font-size: 18px;
}
.UpdScheduler .custom-alert .alert-wrapper .alert-content .close {
  position: absolute;
  top: -1.6rem;
  right: -1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
}
.UpdScheduler .custom-alert.confirm .alert-wrapper .alert-content .controls button.confirm,
.UpdScheduler .custom-alert.dialog .alert-wrapper .alert-content .controls button.confirm {
  display: block;
}
.upd-scheduler-wrapper {
  position: relative;
  min-height: calc(100vh - 350px);
}
.UpdScheduler .button {
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  background-color: #3cb796;
  color: #fff;
}
.UpdScheduler .button:hover {
  background-color: #e83561;
}
.UpdScheduler .button.icon::before {
  margin-right: 5px;
  filter: invert(1);
}
.UpdScheduler .button.square {
  border-radius: 0;
  width: 30px;
  height: 30px;
  padding: 0 !important;
  border: 1px solid #676767;
}
.UpdScheduler .button.square.before-input {
  padding: 0 !important;
  border-right: none;
}
.UpdScheduler .button.square::before {
  margin-right: 0;
  filter: none;
}
.form-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000000;
}
.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-wrapper form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  flex-grow: 0;
  width: 100%;
  max-width: 300px;
}
.form-wrapper form .form-group.row {
  flex-direction: row;
}
.form-wrapper form .flexed-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
  flex-grow: 0;
  width: 100%;
}
.form-wrapper form .error {
  display: none;
  color: red;
}
.UpdScheduler .task-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 20px 4fr 1fr 2fr 1fr 2fr 2fr 2fr;
  grid-gap: 10px;
}
.UpdScheduler .task-list ul.header {
  font-weight: bold;
  background-color: #c5c5c5;
}
.UpdScheduler .task-list ul.header li.center {
  text-align: center;
}
.UpdScheduler .task-list ul.body {
  min-height: 60px;
  border-bottom: 1px solid #cecece;
}
.UpdScheduler .task-list ul.body li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.UpdScheduler .task-list ul.body li:nth-child(2) {
  justify-content: flex-start;
}
.UpdScheduler .task-list ul.body li .bold {
  font-weight: bold;
}
.UpdScheduler .task-list ul.body li .badge {
  font-size: 12px;
}
.UpdScheduler .task-list ul.body li span.button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.UpdScheduler .task-list ul li {
  padding: 5px;
}
@keyframes rotate-center {
  from {
    transform: rotate(0deg);
    /* Start at 0 degrees */
  }
  to {
    transform: rotate(360deg);
    /* Rotate a full circle */
  }
}
#upd-fm-modal-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}
#upd-fm-modal-loader.show {
  display: flex;
}
#upd-fm-modal-loader svg {
  animation: rotate-center 2s linear infinite;
  color: #fff;
}
/*# sourceMappingURL=UpdScheduler.css.map */