.highlight-deleted {
  background-color: #feecee;
  border-radius: 2px;
  padding: 0 2px;
  text-decoration: underline;
  text-decoration-color: #f5475b;
}

.highlight-deleted-strike {
  background-color: #feecee;
  border-radius: 2px;
  padding: 0 2px;
  text-decoration: underline line-through;
  text-decoration-color: #f5475b;
}

.highlight-added {
  background-color: #e8f6ed;
  border-radius: 2px;
  padding: 0 2px;
  text-decoration: underline;
  text-decoration-color: #1aae52;
}

html,
body {
  height: 100vh;
}

body {
  margin: 0;
  font-size: 1.4em;
  font-family: 'Roboto', sans-serif;
}

html {
  font-size: 62.5%;
}

button {
  font-family: inherit;
}

.graphic {
  display: grid;
  grid-template-columns: 60px auto 50px;
  grid-column-gap: 16px;
  align-items: center;
  border: 1px solid lightgrey;
  padding: 8px;
}

.graphic__image {
  max-height: 32px;
  max-width: 100%;
}

.graphic__image:hover {
  cursor: grab;
}

.graphic__image:active {
  cursor: move;
}

.graphic__type {
  background-color: #fa6400;
  color: #fff;
  padding: 2px 5px;
  border-radius: 2px;
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
}

.graphic__text {
  pointer-events: none;
  color: #163250;
  text-align: left;
}

.graphic__title {
  font-weight: 500;
  pointer-events: none;
  margin-right: 8px;
}

.graphic__description {
  pointer-events: none;
  color: #738496;
}

.graphic[contentEditable='false'][data-mce-selected],
.graphic :hover {
  cursor: grab;
}

.graphic[data-size='large'] {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}

.graphic[data-size='large'] .graphic__image {
  max-height: initial;
}

.graphic[data-size='large'] .graphic__text {
  align-self: flex-start;
  font-size: 16px;
  font-family: Roboto;
}

.graphic[data-size='large'] .graphic__title {
  font-weight: normal;
}

.graphic__delete-btn {
  display: none;
}

body[modal__body--open] {
  overflow: hidden;
}

body.tox-fullscreen [data-e2e='slider__handler'] {
  z-index: 0;
}

#publish-dialog-container {
  display: grid;
  grid-template-rows: min-content auto;
  grid-template-columns: none;
  margin-top: 12px;
}

.tox-dialog .workspace-url-validator-input[aria-invalid='true'] {
  border-color: #d32f2f;
  color: #d32f2f;
}

