@charset "UTF-8";
/* © DialogueTrainer */
/* © DialogueTrainer */
/* © DialogueTrainer */
/* © DialogueTrainer */
/* © DialogueTrainer */
/* © DialogueTrainer */
@media screen and (max-width: 600px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__container {
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  max-height: 90vh;
  background-color: #FFF;
  border-radius: 12px;
  box-sizing: border-box;
}
@media screen and (max-width: 1264px) {
  .modal__container {
    margin: 12px;
  }
}
.modal__container.medium {
  max-width: 600px;
}
.modal__container.medium .modal__content {
  min-width: 300px;
}
.modal__container.large {
  width: 100%;
  max-width: 1024px;
}
.modal__container.large .modal__content {
  min-width: 420px;
}
.modal__container.huge {
  width: 100%;
  max-width: 1200px;
}
.modal__container.huge .modal__content {
  min-width: 600px;
}
.modal__container.nearTop {
  align-self: flex-start;
  position: relative;
  top: 25vw;
}
@media screen and (max-width: 600px) {
  .modal__container.medium .modal__content, .modal__container.large .modal__content, .modal__container.huge .modal__content {
    min-width: auto;
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 12px 32px;
}
@media screen and (max-width: 1264px) {
  .modal__header {
    padding: 12px 12px 4px 12px;
  }
}

.modal__title {
  min-height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal__title .icon {
  fill: currentColor;
  vertical-align: middle;
}
.error .modal__title {
  color: #FF5252;
}
.warning .modal__title {
  color: rgb(191.5, 151.3952879581, 0);
}
.info .modal__title {
  color: #3892FF;
}

.modal__close {
  outline: none;
  padding: 5px;
  background: transparent;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  cursor: pointer;
}
.modal__close:not(:active):focus {
  outline: none;
  box-shadow: 0 0 0 2px rgb(var(--accent-color-lighten));
}
.modal__close:hover, .modal__close:active {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.modal__close::before {
  content: "✕";
}

.modal__content {
  min-width: 250px;
  overflow-x: auto;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  padding: 12px 32px;
}
@media screen and (max-width: 1264px) {
  .modal__content {
    padding: 4px 12px;
  }
}
.modal__content form table {
  width: 100%;
  margin: 0 -8px;
  border-spacing: 8px;
  border-collapse: separate;
}
.modal__content form table:not(.dataTable) td {
  vertical-align: top;
  border: 1px solid transparent;
}
.modal__content form table:not(.dataTable) td:first-child:not(:only-child) {
  padding-inline-end: 20px;
}
.modal__content form table:not(.dataTable) td:first-child:not(:only-child).wrap {
  width: 50%;
}
.modal__content form table:not(.dataTable) td:first-child:not(:only-child):not(.wrap) {
  white-space: nowrap;
}
.modal__content form table:not(.dataTable) td > *,
.modal__content form table:not(.dataTable) td > .select2 .select2-selection {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.modal__content form table:not(.dataTable) td > input[type=number] {
  box-sizing: border-box;
}
.modal__content > .inline {
  display: flex;
}
.modal__content > .inline > * {
  flex: 1 1 100%;
  width: 0;
}
.modal__content .nowrap {
  white-space: nowrap;
}
.modal__content > input, .modal__content > select {
  width: calc(100% - 4px);
  margin: 8px 2px;
}
.modal__content p:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1264px) {
  .modal__content {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
  }
}

.modal__footer {
  font-size: 0;
  text-align: end;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 12px 32px 32px 32px;
}
@media screen and (max-width: 1264px) {
  .modal__footer {
    padding: 4px 12px 12px 12px;
  }
}
.modal__footer:empty {
  padding-top: 0;
}
.modal__footer .button {
  margin-left: 8px;
}
.modal__footer input[type=submit] {
  display: inline-flex;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}/*# sourceMappingURL=micromodal.css.map */
