html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  background-color: var(--purple-dark);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5; }

@keyframes bgColor {
  0% {
    background: #ffeed6; }
  20% {
    background: #ffe9d6; }
  40% {
    background: #ffd6de; }
  60% {
    background: #e0ebf5; }
  80% {
    background: #dff5f1; }
  100% {
    background: #eaf4e0; } }

body > div.wrap,
body > div.wrap > main#page_content {
  background-color: var(--content-bg); }

*:hover, *:active, *:focus {
  outline: 0 !important; }

* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  transition: color 0.3s ease-in-out; }

a:hover {
  text-decoration: none; }

.inline-block {
  display: inline-block;
  vertical-align: top; }

.nowrap {
  white-space: nowrap; }

.nohyphens {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none; }

.right {
  text-align: right; }

.bold {
  font-weight: bold; }

.grey {
  color: #888888; }

.no-value {
  color: #9795b4; }

.text-error,
div.panel .text-error {
  color: var(--text-error); }

.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

.width-limit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; }

@media (max-width: 800px) {
  .width-limit {
    padding: 0 1rem; } }

div#content_dim {
  display: none;
  z-index: 80;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); }

#preview_hint {
  position: fixed;
  z-index: 100;
  left: 1rem;
  bottom: 1rem;
  width: auto;
  height: auto;
  background-color: #f00;
  border: solid 2px #a00;
  padding: 0.5rem 0.75rem;
  height: auto;
  text-align: center;
  color: #000000; }
