.ts-backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1em;
  top: 0;
  left: 0;
  z-index: 1000;
}

.ts-dialog-ex {
  display: block;
  background-color: #fff;
  min-width: 50%;
  max-width: 900px;
  margin: 0px auto;
  border-radius: 0.3em;
  color: #666;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  transform: translateY(-120%);
  transition: transform 0.5s ease;
  max-height: 100%;
  overflow: auto;
}
.ts-dialog-ex.on {
  transform: translateY(0%);
}
.ts-dialog-ex.mini-input {
  width: 50%;
  max-width: 300px;
  min-width: auto;
  font-size: 20px;
}

.ts-dialog-ex > .header {
  background-color: #fff;
  color: #096cf7;
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
  height: 1.7em;
  text-align: right;
  padding: 0.4em;
  padding-right: 1em;
  padding-left: 1em;
}

.ts-dialog-ex > .content {
  padding: 1em;
  padding-top: 0;
  text-align: right;
}

.ts-dialog-ex.centered > .content {
  text-align: center;
}

.ts-dialog-ex > .content textarea {
  width: 100%;
  min-height: 6em;
  font-size: 1em;
  padding: 0.5em;
  font-family: inherit;
}

.ts-dialog-ex > .buttons {
  padding-bottom: 1em;
  text-align: center;
  padding-top: 0.5em;
}

.ts-dialog-ex > .buttons button {
  background-color: #fff;
  border: 1px solid #096cf7;
  color: #096cf7;
  box-shadow: 0px 0px;
  border-radius: 0.3em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  outline: 0;
  padding: 0.3em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  min-width: 3.5em;
  font-size: 1em;
  cursor: pointer;
}
.ts-dialog-ex > .buttons button.red-btn {
  border: 1px solid #afafaf;
  color: #fff;
  background-color: #ff4747;
}

.ts-dialog-ex > .buttons button:focus {
  border: 1px solid #979ba5;
}
.ts-dialog-ex > .buttons button:focus.red-btn {
  border: 1px solid #000;
}

.ts-dialog-ex > .buttons button:active {
  background-color: #096cf7;
  border: 1px solid #fff;
  color: #fff;
}
.ts-dialog-ex > .buttons button:active.red-btn {
  border: 1px solid #afafaf;
  color: #ff4747;
  background-color: #fff;
}

.ts-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow-y: auto;
}
.ts-modal .ts-modal-dialog {
  display: block;
  background-color: #fff;
  color: #333;
  z-index: 1001;
  position: relative;
  margin: 1em auto;
  max-width: 80%;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.ts-modal .ts-modal-dialog .ts-modal-header {
  font-size: 1em;
  padding: 0.5em 0.5em;
  color: #289aff;
}
.ts-modal .ts-modal-dialog .ts-modal-header h4 {
  font-size: 1em;
}
.ts-modal .ts-modal-dialog .ts-modal-header .ts-close {
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: none;
  background: transparent;
  border-color: transparent;
}
.ts-modal .ts-modal-dialog .ts-modal-body {
  padding: 0em 0.5em;
}
.ts-modal .ts-modal-dialog .ts-modal-footer {
  padding: 0.3em 0.5em;
  text-align: left;
}
.ts-modal.on {
  display: block;
  opacity: 0;
}
.ts-modal.active {
  opacity: 1;
}

.ts-floating-menu {
  position: absolute;
  top: 0;
  right: 170px;
  background-color: #fff;
  color: #0d0d0d;
  direction: rtl;
  padding: 0.5em 1em;
  font-size: 1.2rem;
  border-radius: 0.5em;
}
.ts-floating-menu > div {
  cursor: pointer;
}
.ts-floating-menu > div:hover {
  opacity: 0.7;
  color: #2a2aa0;
}
.ts-floating-menu > hr {
  margin: 0.5em 0;
}

/*# sourceMappingURL=dialog-utils.css.map */
