.no--select {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

html {
  height: 100%;
  background-color: #18181B;
}

.preloader {
  background-image: url(../img/branded-loader-dm.gif);
}

.preloader {
  background-repeat: no-repeat;
  width: 75px;
  height: 75px;
  position: absolute;
  background-size: contain;
  top: calc(50% - 4em);
  left: calc(50% - 2.5em);
  transition: display 0.2s;
  display: block;
}

.loader-hide {
  display: none;
}

.app-show {
  display: block !important;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  height: 100%;
  line-height: 1.43;
}

#main {
  height: 100%;
  overflow: auto;
  display: none;
}

sup {
  font-size: 60%;
}

::-webkit-resizer {
  display: none;
}

.emoji-mart-preview {
  display: none;
}

:focus {
  outline: none;
}

b,
strong {
  font-weight: 900;
}

em {
  font-weight: 400;
  /* font-style: oblique; */
  font-variation-settings: 'slnt' -8;
}

/* MarkDown styles */

.ASufo h1 {
  font-weight: normal;
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 10px !important;
}

.ASufo h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 8px !important;
  font-weight: normal;
}

.ASufo h3 {
  font-weight: normal;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 4px !important;
}

h2 {
  margin-block-start: 0;
  margin-block-end: 0;
}

ol,
ul {
  margin-block-start: 0;
  padding-inline-start: 30px;
}

li {
  /* margin-bottom: 8px; */
}

.active-button {
  opacity: 1 !important;
}

form {
  width: 100%;
}

/* PDF */
canvas {
  margin: 0 auto;
  display: block;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  canvas {
    /* margin: 0; */
    display: block;
    border-radius: 4px;
    margin: 0 auto;
    height: auto;
    /* makes pdfs to render full width in file viewer*/
    /* min-width: calc(100vw - 32px); */
  }
}

/* Style text for Terms of Access*/
/* .DraftEditor-editorContainer {
  font-size: 1rem;
  line-height: 26px;
} */
.public-DraftStyleDefault-ul {
  padding-inline-start: 16px;
  margin-block-end: 0;
}

.ElementsApp input {
  font-family: "Inter", "sans-serif";
  font-weight: 400;
}

.right .fade-enter {
  opacity: 0;
  transform: translateX(100%);
}

.right .fade-enter-active {
  opacity: 1;
  transform: translateX(0%);
}

.right .fade-exit {
  opacity: 1;
  transform: translateX(0%);
}

.right .fade-exit-active {
  opacity: 0;
  transform: translateX(-100%);
}

.right .fade-enter-active,
.right .fade-exit-active {
  transition: opacity 200ms, transform 200ms;
}

.left .fade-enter {
  opacity: 0;
  transform: translateX(-100%);
}

.left .fade-enter-active {
  opacity: 1;
  transform: translateX(0%);
}

.left .fade-exit {
  opacity: 1;
  transform: translateX(0%);
}

.left .fade-exit-active {
  opacity: 0;
  transform: translateX(100%);
}

.left .fade-enter-active,
.left .fade-exit-active {
  transition: opacity 200ms, transform 200ms;
}

.app__offline {
  background-color: #6b6b6b;
}

.header__btn {
  width: 48px;
  height: 48px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.header__title {
  color: #fff;
  font-size: 20px;
}

.app__outer {
  min-height: calc(100vh - 56px);
  /* do not consider header height */
}

.app__container {
  max-width: 1200px;
  min-height: 420px;
  width: 100%;
}

.toast__container {
  bottom: 20px;
  left: 20px;
  pointer-events: none;
}

.toast__msg {
  width: 250px;
  min-height: 50px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-left: 15px;
  padding-right: 10px;
  word-break: break-all;
  -webkit-transition: opacity 3s cubic-bezier(0, 0, 0.3, 1) 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1) 0;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1) 0;
  text-transform: initial;
  margin-bottom: 10px;
  border-radius: 2px;
}

.toast__msg--hide {
  opacity: 0;
}

.pointer {
  cursor: pointer;
}