.hey-iframe-preview {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 200px;
}

.hey-toast {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
}
.hey-toast--fade-in {
  animation: 0.3s ease-out hey-toast-in;
}
.hey-toast--fade-out {
  opacity: 0;
  animation: 1s linear hey-toast-out;
}
.hey-toast__line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--mdc-theme-secondary);

}
.hey-toast__button {
  position: fixed;
  top: 2px;
  left: 50%;
  height: 30px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 0px;
  padding-bottom: 0px;
  transform: translateX(-50%);
  cursor: pointer;
  max-width: calc(100vw - 32px);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-color: var(--mdc-theme-secondary);
  border-style: solid;
  background-color: var(--mdc-theme-secondary);
  color: var(--mdc-theme-on-secondary);
  z-index: 100;
}

@keyframes hey-toast-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes hey-toast-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.changelog {
  height: 100%;
}
.changelog .mdc-layout-grid {
  height: 100%;
}
.changelog .mdc-layout-grid__inner {
  height: 100%;
  grid-template-rows: 56px 1fr;
}
.changelog .mdc-layout-grid__inner .mdc-layout-grid__cell:nth-child(2) {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
.changelog__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.changelog__header__button {
  height: 100%;
  min-width: 48px;
  cursor: pointer;
  position: relative;
}
.changelog__header__button.changelog__header__button--hidden {
  cursor: auto;
}
.changelog__header__version {
  text-align: center;
}

.changelog .jodit-wysiwyg,
.hey-message-preview .jodit-wysiwyg
{
  font-family: system-ui;
  line-height: 1.5;
}
.hey-message-preview .jodit-wysiwyg
{
  padding: 16px;
}
.changelog .jodit-wysiwyg > *:first-child,
.hey-message-preview .jodit-wysiwyg > *:first-child
{
  margin-top: 0;
}
.changelog .jodit-wysiwyg > *:last-child
.hey-message-preview .jodit-wysiwyg > *:last-child
{
  margin-bottom: 0;
}

.message-view {

}
.message-paragraph {
  text-align: left;
  padding-left: 16px;
  padding-right: 16px;
}
.message-spacer {
  height: 32px;
  flex-shrink: 0;
}
.message-rich-text-wrapper {
  padding-left: 6px;
}

.new-message-table {
  font-family: var(--mdc-typography-font-family);
  font-size: 16px;
  table-layout: fixed;
  width: 100%;
}
.new-message-table caption {
  margin-bottom: 32px;
}
.new-message-table__col-key {
  width: 120px;
}
.new-message-table__col-value {
  width: 100%;
}
.new-message-table th:nth-child(2) {
  padding-left: 16px;
}
.new-message-table td:nth-child(2) {
  padding-left: 16px;
}
.new-message-table__td--truncated {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.new-message-summary-header {
  display: flex;
  align-items: center;
  margin-left: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}
