.hidden {
  display: none !important;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  background-color: var(--color-background-general);
  overflow: hidden;
  font-family: var(--font-family-default);
  user-select: none;
}

iframe {
  border: 1px solid var(--color-border-quaternary);
  height: 100vh;
  width: 100vw;
}

a, button {
  transition: all 150ms ease;
  color: var(--color-text-pure);
  text-decoration-line: underline;
  text-underline-offset: 3px;
}
a:hover, button:hover {
  color: var(--color-text-brand-ow-hover);
  text-decoration: none !important;
}

.loader {
  background-color: var(--color-background-general);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  opacity: 1;
  transition: all 150ms ease;
  border: 1px solid var(--color-border-quaternary);
  border-top: none;
  width: 100vw;
  height: 100vh;
}
.loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader .progress-container {
  background-color: var(--color-surface-secondary);
  width: 248px;
  height: 4px;
}
.loader .progress-container .progress-line {
  background-color: var(--color-brand-ow);
  height: 4px;
  transition: all 150ms ease;
}

.resize-right,
.resize-left {
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  cursor: e-resize;
}

.resize-right {
  right: 0;
  top: 30px;
}

.resize-left {
  left: 0;
}

.estr-egg-or {
  position: absolute;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
}