/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

@font-face {
  font-family: 'Archivo Narrow';
  src: url(../fonts/ArchivoNarrow/ArchivoNarrow-Regular.eot);
  src: url(../fonts/ArchivoNarrow/ArchivoNarrow-Regular.eot?#iefix) format("embedded-opentype"),
    url(../fonts/ArchivoNarrow/ArchivoNarrow-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

* {
  font-family: 'Archivo Narrow';
  font-weight: 400;
}

.gen {
  font-family: 'Archivo Narrow', sans-serif;
}

.post-publisher textarea,
.post-publisher input[type="text"] {
  color: #666;
  font-family: 'Archivo Narrow', sans-serif;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  max-width: 300px;
  color: #fff;
  text-align: left;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  right: 15px;
  /* Changed from left to right */
  top: -100px;
  /* Start above the viewport */
  display: flex;
  align-items: center;
  opacity: 0;
  transition: top 1s, opacity 1s, visibility 1s;
}

.toast-icon {
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.toast-message {
  flex-grow: 1;
  word-wrap: break-word;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  top: 76px;
  /* z-index: 9999;*/
  /* Final position */
}

.toast-close {
  color: white;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
  margin-left: 15px;
  flex-shrink: 0;
}