/* The toast - position it at the bottom and in the middle of the screen */

#toast-container {
  display: block;
  position: fixed;
  z-index: 10000;
  right: 5%;
  bottom: 30px;
  max-width: 90%;
  text-align: right;
}

#toast-container .toast {
  display: inline-block;
  max-width: 90vw;
  white-space: pre-wrap;
  margin-top: 10px;
  background-color: #00a5b7;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  -webkit-animation: fadein 1s, fadeout 1s 4s;
  animation: fadein 1s, fadeout 1s 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-box-shadow: 3px 3px 5px #888888;
          box-shadow: 3px 3px 5px #888888;
}

#toast-container .toast.error {
  background-color: #dc3545;
  color: white;
}

/* Animations to fade the toast in and out */

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

body {
  padding-right: 0 !important;
}

.cke_editable {
  padding: 0 20px !important;
  margin: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  width: 100% !important;
  overflow: auto !important;
  float: none !important;
  display: block !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-none:hover {
  text-decoration: none !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cke-area img {
  max-width: 100%;
  height: initial !important;
}


/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiIvY3NzL2Zyb250ZW5kLmNzcyIsInNvdXJjZVJvb3QiOiIifQ==*/