/* NOTE: This is a legacy CSS file and should not have any new CSS added to it */

del {
  background-color: lightcoral !important;
}
ins {
  background-color: lightgreen !important;
}

.diff-view {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.diff-view__alert {
  text-align: center;
}

.side-by-side-render,
.inline-render {
  display: flex;
  flex: 1 0 auto;
}

.side-by-side-render > iframe,
.inline-render > iframe {
  border: 1px solid var(--default-border);
  border-radius: 2px;
  width: 100%;
}

.side-by-side-render > iframe:first-of-type {
  margin-right: 0.5em;
}

.diff-source-inline {
  background: var(--gray-lighter);
  border: 1px solid var(--default-border);
  font-family: monospace;
  overflow: auto;
  padding: 1em;
  white-space: pre-wrap;
}

.diff-text-inline {
  background: var(--gray-lighter);
  border: 1px solid var(--default-border);
  padding: 1em;
  white-space: pre-wrap;
}

/* NOTE: This is a legacy CSS file and should not have any new CSS added to it
If you need to add a global style, add it in global.css */

/* ===== Global ===== */
html,
#web-monitoring-ui-root {
  height: 100%;
}

#web-monitoring-ui-root {
  display: flex;
  flex-direction: column;
}

#application {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.version-selector {
  flex: 0 0 auto;
}

body {
  background: #136a8a;
  background: linear-gradient(45deg, #136a8a, #267871);
  height: 100%;
}

/* Version Selector */
.version-selector {
  display: flex;
  justify-content: space-between;
  margin: 0.5em 0;
}

.version-selector__item {
  font-weight: normal;
}

.version-selector__item > span {
  font-weight: bold;
  margin-right: 0.5em;
}
/* END - Version Selector */

/* ===== Annotation Form ===== */
.lnk-action {
  margin-right: 17px;
}

.annotation-form {
  margin: 0.4em 0;
}

.annotation-form__signifiers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5em;
  width: 100%;
}

.annotation-form textarea {
  border: 1px solid #c3c3c3;
  border-radius: 3px;
  color: var(--gray);
  height: 3em;
  padding: 0.5em;
  width: 100%;
}

legend {
  border: 0;
  color: inherit;
  font-size: 0.9em;
  font-weight: 500;
  margin: 0 0 0.5em 0;
}

.signifier-list,
.signifier-list-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.signifier-list {
  display: flex;
  flex-direction: column;
}

/* Remove margin from last signifier button  */
.signifier-list > li:last-child {
  margin: 0;
}

.signifier-list-item {
  display: flex;
  margin-right: 5px;
}

.annotation-form--collapsed .signifier-list {
  align-items: center;
  display: flex;
  flex-direction: row;
  text-align: center;
}

/* Toggle buttons */
.toggle {
  opacity: 0;
  width: 0;
}

.toggle-btn {
  cursor: pointer;
}

.toggle + .toggle-btn::before {
  background: #e2e1e1;
  border: 1px solid hsla(0, 0%, 20%, 0.1);
  border-radius: 2px;
  color: #5a5959;
  content: attr(data-fieldNumber);
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  font-family: sans-serif;
  font-weight: bold;
  height: 2em;
  line-height: 2em;
  text-align: center;
  transition: all 0.1s;
  width: 3.5em;
}

.toggle:checked + .toggle-btn::before {
  background: #24a79d;
}

.toggle:checked + .toggle-btn::before {
  color: #fff;
}

.toggle:focus + .toggle-btn::before {
  outline: rgb(59, 153, 252) auto 2px;
  outline: -moz-mac-focusring auto 3px;
  outline: -webkit-focus-ring-color auto 5px;
}

.toggle-btn span {
  font-size: 12px;
  font-weight: 400;
  margin: 5px 0 0 5px;
}
/* END - Toggle buttons */

/* Media queries */
@media (max-width: 1000px) {
  .page-title {
    margin-bottom: 10px;
  }
  .annotation-form__signifiers,
  .version-selector {
    flex-direction: column;
  }

  .version-selector > * {
    margin: 0.5em 0;
  }

  .version-selector > select {
    margin-bottom: 10px;
    margin-left: 16px;
    max-width: 215px;
  }

  legend {
    margin-top: 1em;
  }
}

/* ===== Diff View ===== */
.diff {
  height: 100vh;
}

iframe {
  border: 1px solid var(--default-border);
  border-radius: 2px;
  width: 100%;
}

/* ===== Progress bar ===== */
.dotdotdot:after {
  animation: dotdotdot 1.5s linear infinite;
  content: "...";
  display: inline-block;
  font-weight: 300;
  width: 20px;
  text-align: left;
}

@keyframes dotdotdot {
  0% {
    content: "...";
  }
  25% {
    content: "";
  }
  50% {
    content: ".";
  }
  75% {
    content: "..";
  }
}

/* ===== Login Form Dialog ===== */
.dialog__body {
  background: white;
  border-radius: 3px;
  padding: 1em;
}

.loading {
  align-items: center;
  background: transparent;
  display: flex;
  justify-content: center;
}

/* ===== Utilities ====== */
.utilities {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.utilities__label {
  cursor: pointer;
  font-weight: normal;
  margin: 0;
}

.utilities__input[type="checkbox"] {
  margin: 0 0.5rem;
}



/*# sourceMappingURL=sourceMaps/bundle.css.map*/