/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
 */
@-webkit-keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
  }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
  }
}
@keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
  }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
  }
}
@-webkit-keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0;
  }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
}
@keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0;
  }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
}
@-webkit-keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
  to {
    opacity: 0;
  }
}
@keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
  to {
    opacity: 0;
  }
}
.mdc-ripple-surface {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: transform, opacity;
  position: relative;
  outline: none;
  overflow: hidden;
}
.mdc-ripple-surface::before, .mdc-ripple-surface::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
.mdc-ripple-surface::before {
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
  /* removed */
  z-index: var(--mdc-ripple-z-index, 1);
}
.mdc-ripple-surface::after {
  z-index: 0;
  /* removed */
  z-index: var(--mdc-ripple-z-index, 0);
}
.mdc-ripple-surface.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-ripple-surface.mdc-ripple-upgraded::after {
  top: 0;
  /* removed */
  /* removed */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* removed */
  /* removed */
  left: var(--mdc-ripple-left, 0);
}
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
          animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
          animation: mdc-ripple-fg-opacity-out 150ms;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-ripple-surface::before, .mdc-ripple-surface::after {
  top: calc(50% - 100%);
  /* removed */
  /* removed */
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}
.mdc-ripple-surface.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded],
.mdc-ripple-upgraded--unbounded {
  overflow: visible;
}
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before, .mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after,
.mdc-ripple-upgraded--unbounded::before,
.mdc-ripple-upgraded--unbounded::after {
  top: calc(50% - 50%);
  /* removed */
  /* removed */
  left: calc(50% - 50%);
  width: 100%;
  height: 100%;
}
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before, .mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,
.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::before,
.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  /* removed */
  /* removed */
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,
.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface::before, .mdc-ripple-surface::after {
  background-color: #000;
  /* removed */
  background-color: var(--mdc-ripple-color, #000);
}
.mdc-ripple-surface:hover::before, .mdc-ripple-surface.mdc-ripple-surface--hover::before {
  opacity: 0.04;
  /* removed */
  opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before, .mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before {
  transition-duration: 75ms;
  opacity: 0.12;
  /* removed */
  opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after {
  transition: opacity 150ms linear;
}
.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after {
  transition-duration: 75ms;
  opacity: 0.12;
  /* removed */
  opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-ripple-surface.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}

/* removed *//* removed */
@font-face {
  font-family: 'KaTeX_AMS';
  src: url(/fonts/KaTeX_AMS-Regular.woff2) format('woff2'), url(/fonts/KaTeX_AMS-Regular.woff) format('woff'), url(/fonts/KaTeX_AMS-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Caligraphic';
  src: url(/fonts/KaTeX_Caligraphic-Bold.woff2) format('woff2'), url(/fonts/KaTeX_Caligraphic-Bold.woff) format('woff'), url(/fonts/KaTeX_Caligraphic-Bold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Caligraphic';
  src: url(/fonts/KaTeX_Caligraphic-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Caligraphic-Regular.woff) format('woff'), url(/fonts/KaTeX_Caligraphic-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Fraktur';
  src: url(/fonts/KaTeX_Fraktur-Bold.woff2) format('woff2'), url(/fonts/KaTeX_Fraktur-Bold.woff) format('woff'), url(/fonts/KaTeX_Fraktur-Bold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Fraktur';
  src: url(/fonts/KaTeX_Fraktur-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Fraktur-Regular.woff) format('woff'), url(/fonts/KaTeX_Fraktur-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Main';
  src: url(/fonts/KaTeX_Main-Bold.woff2) format('woff2'), url(/fonts/KaTeX_Main-Bold.woff) format('woff'), url(/fonts/KaTeX_Main-Bold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Main';
  src: url(/fonts/KaTeX_Main-BoldItalic.woff2) format('woff2'), url(/fonts/KaTeX_Main-BoldItalic.woff) format('woff'), url(/fonts/KaTeX_Main-BoldItalic.ttf) format('truetype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'KaTeX_Main';
  src: url(/fonts/KaTeX_Main-Italic.woff2) format('woff2'), url(/fonts/KaTeX_Main-Italic.woff) format('woff'), url(/fonts/KaTeX_Main-Italic.ttf) format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'KaTeX_Main';
  src: url(/fonts/KaTeX_Main-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Main-Regular.woff) format('woff'), url(/fonts/KaTeX_Main-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Math';
  src: url(/fonts/KaTeX_Math-BoldItalic.woff2) format('woff2'), url(/fonts/KaTeX_Math-BoldItalic.woff) format('woff'), url(/fonts/KaTeX_Math-BoldItalic.ttf) format('truetype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'KaTeX_Math';
  src: url(/fonts/KaTeX_Math-Italic.woff2) format('woff2'), url(/fonts/KaTeX_Math-Italic.woff) format('woff'), url(/fonts/KaTeX_Math-Italic.ttf) format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'KaTeX_SansSerif';
  src: url(/fonts/KaTeX_SansSerif-Bold.woff2) format('woff2'), url(/fonts/KaTeX_SansSerif-Bold.woff) format('woff'), url(/fonts/KaTeX_SansSerif-Bold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_SansSerif';
  src: url(/fonts/KaTeX_SansSerif-Italic.woff2) format('woff2'), url(/fonts/KaTeX_SansSerif-Italic.woff) format('woff'), url(/fonts/KaTeX_SansSerif-Italic.ttf) format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'KaTeX_SansSerif';
  src: url(/fonts/KaTeX_SansSerif-Regular.woff2) format('woff2'), url(/fonts/KaTeX_SansSerif-Regular.woff) format('woff'), url(/fonts/KaTeX_SansSerif-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Script';
  src: url(/fonts/KaTeX_Script-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Script-Regular.woff) format('woff'), url(/fonts/KaTeX_Script-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Size1';
  src: url(/fonts/KaTeX_Size1-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Size1-Regular.woff) format('woff'), url(/fonts/KaTeX_Size1-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Size2';
  src: url(/fonts/KaTeX_Size2-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Size2-Regular.woff) format('woff'), url(/fonts/KaTeX_Size2-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Size3';
  src: url(/fonts/KaTeX_Size3-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Size3-Regular.woff) format('woff'), url(/fonts/KaTeX_Size3-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Size4';
  src: url(/fonts/KaTeX_Size4-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Size4-Regular.woff) format('woff'), url(/fonts/KaTeX_Size4-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KaTeX_Typewriter';
  src: url(/fonts/KaTeX_Typewriter-Regular.woff2) format('woff2'), url(/fonts/KaTeX_Typewriter-Regular.woff) format('woff'), url(/fonts/KaTeX_Typewriter-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
.katex {
  font: normal 1.21em KaTeX_Main, Times New Roman, serif;
  line-height: 1.2;
  text-indent: 0;
  text-rendering: auto;
}
.katex * {
  -ms-high-contrast-adjust: none !important;
}
.katex .katex-version::after {
  content: "0.10.2";
}
.katex .katex-mathml {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.katex .katex-html {
  /* removed */
}
.katex .katex-html > .newline {
  display: block;
}
.katex .base {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  width: min-content;
}
.katex .strut {
  display: inline-block;
}
.katex .textbf {
  font-weight: bold;
}
.katex .textit {
  font-style: italic;
}
.katex .textrm {
  font-family: KaTeX_Main;
}
.katex .textsf {
  font-family: KaTeX_SansSerif;
}
.katex .texttt {
  font-family: KaTeX_Typewriter;
}
.katex .mathdefault {
  font-family: KaTeX_Math;
  font-style: italic;
}
.katex .mathit {
  font-family: KaTeX_Main;
  font-style: italic;
}
.katex .mathrm {
  font-style: normal;
}
.katex .mathbf {
  font-family: KaTeX_Main;
  font-weight: bold;
}
.katex .boldsymbol {
  font-family: KaTeX_Math;
  font-weight: bold;
  font-style: italic;
}
.katex .amsrm {
  font-family: KaTeX_AMS;
}
.katex .mathbb,
.katex .textbb {
  font-family: KaTeX_AMS;
}
.katex .mathcal {
  font-family: KaTeX_Caligraphic;
}
.katex .mathfrak,
.katex .textfrak {
  font-family: KaTeX_Fraktur;
}
.katex .mathtt {
  font-family: KaTeX_Typewriter;
}
.katex .mathscr,
.katex .textscr {
  font-family: KaTeX_Script;
}
.katex .mathsf,
.katex .textsf {
  font-family: KaTeX_SansSerif;
}
.katex .mathboldsf,
.katex .textboldsf {
  font-family: KaTeX_SansSerif;
  font-weight: bold;
}
.katex .mathitsf,
.katex .textitsf {
  font-family: KaTeX_SansSerif;
  font-style: italic;
}
.katex .mainrm {
  font-family: KaTeX_Main;
  font-style: normal;
}
.katex .vlist-t {
  display: inline-table;
  table-layout: fixed;
}
.katex .vlist-r {
  display: table-row;
}
.katex .vlist {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
}
.katex .vlist > span {
  display: block;
  height: 0;
  position: relative;
}
.katex .vlist > span > span {
  display: inline-block;
}
.katex .vlist > span > .pstrut {
  overflow: hidden;
  width: 0;
}
.katex .vlist-t2 {
  margin-right: -2px;
}
.katex .vlist-s {
  display: table-cell;
  vertical-align: bottom;
  font-size: 1px;
  width: 2px;
  min-width: 2px;
}
.katex .msupsub {
  text-align: left;
}
.katex .mfrac > span > span {
  text-align: center;
}
.katex .mfrac .frac-line {
  display: inline-block;
  width: 100%;
  border-bottom-style: solid;
}
.katex .mfrac .frac-line,
.katex .overline .overline-line,
.katex .underline .underline-line,
.katex .hline,
.katex .hdashline,
.katex .rule {
  min-height: 1px;
}
.katex .mspace {
  display: inline-block;
}
.katex .llap,
.katex .rlap,
.katex .clap {
  width: 0;
  position: relative;
}
.katex .llap > .inner,
.katex .rlap > .inner,
.katex .clap > .inner {
  position: absolute;
}
.katex .llap > .fix,
.katex .rlap > .fix,
.katex .clap > .fix {
  display: inline-block;
}
.katex .llap > .inner {
  right: 0;
}
.katex .rlap > .inner,
.katex .clap > .inner {
  left: 0;
}
.katex .clap > .inner > span {
  margin-left: -50%;
  margin-right: 50%;
}
.katex .rule {
  display: inline-block;
  border: solid 0;
  position: relative;
}
.katex .overline .overline-line,
.katex .underline .underline-line,
.katex .hline {
  display: inline-block;
  width: 100%;
  border-bottom-style: solid;
}
.katex .hdashline {
  display: inline-block;
  width: 100%;
  border-bottom-style: dashed;
}
.katex .sqrt > .root {
  margin-left: 0.27777778em;
  margin-right: -0.55555556em;
}
.katex .sizing,
.katex .fontsize-ensurer {
  display: inline-block;
}
.katex .sizing.reset-size1.size1,
.katex .fontsize-ensurer.reset-size1.size1 {
  font-size: 1em;
}
.katex .sizing.reset-size1.size2,
.katex .fontsize-ensurer.reset-size1.size2 {
  font-size: 1.2em;
}
.katex .sizing.reset-size1.size3,
.katex .fontsize-ensurer.reset-size1.size3 {
  font-size: 1.4em;
}
.katex .sizing.reset-size1.size4,
.katex .fontsize-ensurer.reset-size1.size4 {
  font-size: 1.6em;
}
.katex .sizing.reset-size1.size5,
.katex .fontsize-ensurer.reset-size1.size5 {
  font-size: 1.8em;
}
.katex .sizing.reset-size1.size6,
.katex .fontsize-ensurer.reset-size1.size6 {
  font-size: 2em;
}
.katex .sizing.reset-size1.size7,
.katex .fontsize-ensurer.reset-size1.size7 {
  font-size: 2.4em;
}
.katex .sizing.reset-size1.size8,
.katex .fontsize-ensurer.reset-size1.size8 {
  font-size: 2.88em;
}
.katex .sizing.reset-size1.size9,
.katex .fontsize-ensurer.reset-size1.size9 {
  font-size: 3.456em;
}
.katex .sizing.reset-size1.size10,
.katex .fontsize-ensurer.reset-size1.size10 {
  font-size: 4.148em;
}
.katex .sizing.reset-size1.size11,
.katex .fontsize-ensurer.reset-size1.size11 {
  font-size: 4.976em;
}
.katex .sizing.reset-size2.size1,
.katex .fontsize-ensurer.reset-size2.size1 {
  font-size: 0.83333333em;
}
.katex .sizing.reset-size2.size2,
.katex .fontsize-ensurer.reset-size2.size2 {
  font-size: 1em;
}
.katex .sizing.reset-size2.size3,
.katex .fontsize-ensurer.reset-size2.size3 {
  font-size: 1.16666667em;
}
.katex .sizing.reset-size2.size4,
.katex .fontsize-ensurer.reset-size2.size4 {
  font-size: 1.33333333em;
}
.katex .sizing.reset-size2.size5,
.katex .fontsize-ensurer.reset-size2.size5 {
  font-size: 1.5em;
}
.katex .sizing.reset-size2.size6,
.katex .fontsize-ensurer.reset-size2.size6 {
  font-size: 1.66666667em;
}
.katex .sizing.reset-size2.size7,
.katex .fontsize-ensurer.reset-size2.size7 {
  font-size: 2em;
}
.katex .sizing.reset-size2.size8,
.katex .fontsize-ensurer.reset-size2.size8 {
  font-size: 2.4em;
}
.katex .sizing.reset-size2.size9,
.katex .fontsize-ensurer.reset-size2.size9 {
  font-size: 2.88em;
}
.katex .sizing.reset-size2.size10,
.katex .fontsize-ensurer.reset-size2.size10 {
  font-size: 3.45666667em;
}
.katex .sizing.reset-size2.size11,
.katex .fontsize-ensurer.reset-size2.size11 {
  font-size: 4.14666667em;
}
.katex .sizing.reset-size3.size1,
.katex .fontsize-ensurer.reset-size3.size1 {
  font-size: 0.71428571em;
}
.katex .sizing.reset-size3.size2,
.katex .fontsize-ensurer.reset-size3.size2 {
  font-size: 0.85714286em;
}
.katex .sizing.reset-size3.size3,
.katex .fontsize-ensurer.reset-size3.size3 {
  font-size: 1em;
}
.katex .sizing.reset-size3.size4,
.katex .fontsize-ensurer.reset-size3.size4 {
  font-size: 1.14285714em;
}
.katex .sizing.reset-size3.size5,
.katex .fontsize-ensurer.reset-size3.size5 {
  font-size: 1.28571429em;
}
.katex .sizing.reset-size3.size6,
.katex .fontsize-ensurer.reset-size3.size6 {
  font-size: 1.42857143em;
}
.katex .sizing.reset-size3.size7,
.katex .fontsize-ensurer.reset-size3.size7 {
  font-size: 1.71428571em;
}
.katex .sizing.reset-size3.size8,
.katex .fontsize-ensurer.reset-size3.size8 {
  font-size: 2.05714286em;
}
.katex .sizing.reset-size3.size9,
.katex .fontsize-ensurer.reset-size3.size9 {
  font-size: 2.46857143em;
}
.katex .sizing.reset-size3.size10,
.katex .fontsize-ensurer.reset-size3.size10 {
  font-size: 2.96285714em;
}
.katex .sizing.reset-size3.size11,
.katex .fontsize-ensurer.reset-size3.size11 {
  font-size: 3.55428571em;
}
.katex .sizing.reset-size4.size1,
.katex .fontsize-ensurer.reset-size4.size1 {
  font-size: 0.625em;
}
.katex .sizing.reset-size4.size2,
.katex .fontsize-ensurer.reset-size4.size2 {
  font-size: 0.75em;
}
.katex .sizing.reset-size4.size3,
.katex .fontsize-ensurer.reset-size4.size3 {
  font-size: 0.875em;
}
.katex .sizing.reset-size4.size4,
.katex .fontsize-ensurer.reset-size4.size4 {
  font-size: 1em;
}
.katex .sizing.reset-size4.size5,
.katex .fontsize-ensurer.reset-size4.size5 {
  font-size: 1.125em;
}
.katex .sizing.reset-size4.size6,
.katex .fontsize-ensurer.reset-size4.size6 {
  font-size: 1.25em;
}
.katex .sizing.reset-size4.size7,
.katex .fontsize-ensurer.reset-size4.size7 {
  font-size: 1.5em;
}
.katex .sizing.reset-size4.size8,
.katex .fontsize-ensurer.reset-size4.size8 {
  font-size: 1.8em;
}
.katex .sizing.reset-size4.size9,
.katex .fontsize-ensurer.reset-size4.size9 {
  font-size: 2.16em;
}
.katex .sizing.reset-size4.size10,
.katex .fontsize-ensurer.reset-size4.size10 {
  font-size: 2.5925em;
}
.katex .sizing.reset-size4.size11,
.katex .fontsize-ensurer.reset-size4.size11 {
  font-size: 3.11em;
}
.katex .sizing.reset-size5.size1,
.katex .fontsize-ensurer.reset-size5.size1 {
  font-size: 0.55555556em;
}
.katex .sizing.reset-size5.size2,
.katex .fontsize-ensurer.reset-size5.size2 {
  font-size: 0.66666667em;
}
.katex .sizing.reset-size5.size3,
.katex .fontsize-ensurer.reset-size5.size3 {
  font-size: 0.77777778em;
}
.katex .sizing.reset-size5.size4,
.katex .fontsize-ensurer.reset-size5.size4 {
  font-size: 0.88888889em;
}
.katex .sizing.reset-size5.size5,
.katex .fontsize-ensurer.reset-size5.size5 {
  font-size: 1em;
}
.katex .sizing.reset-size5.size6,
.katex .fontsize-ensurer.reset-size5.size6 {
  font-size: 1.11111111em;
}
.katex .sizing.reset-size5.size7,
.katex .fontsize-ensurer.reset-size5.size7 {
  font-size: 1.33333333em;
}
.katex .sizing.reset-size5.size8,
.katex .fontsize-ensurer.reset-size5.size8 {
  font-size: 1.6em;
}
.katex .sizing.reset-size5.size9,
.katex .fontsize-ensurer.reset-size5.size9 {
  font-size: 1.92em;
}
.katex .sizing.reset-size5.size10,
.katex .fontsize-ensurer.reset-size5.size10 {
  font-size: 2.30444444em;
}
.katex .sizing.reset-size5.size11,
.katex .fontsize-ensurer.reset-size5.size11 {
  font-size: 2.76444444em;
}
.katex .sizing.reset-size6.size1,
.katex .fontsize-ensurer.reset-size6.size1 {
  font-size: 0.5em;
}
.katex .sizing.reset-size6.size2,
.katex .fontsize-ensurer.reset-size6.size2 {
  font-size: 0.6em;
}
.katex .sizing.reset-size6.size3,
.katex .fontsize-ensurer.reset-size6.size3 {
  font-size: 0.7em;
}
.katex .sizing.reset-size6.size4,
.katex .fontsize-ensurer.reset-size6.size4 {
  font-size: 0.8em;
}
.katex .sizing.reset-size6.size5,
.katex .fontsize-ensurer.reset-size6.size5 {
  font-size: 0.9em;
}
.katex .sizing.reset-size6.size6,
.katex .fontsize-ensurer.reset-size6.size6 {
  font-size: 1em;
}
.katex .sizing.reset-size6.size7,
.katex .fontsize-ensurer.reset-size6.size7 {
  font-size: 1.2em;
}
.katex .sizing.reset-size6.size8,
.katex .fontsize-ensurer.reset-size6.size8 {
  font-size: 1.44em;
}
.katex .sizing.reset-size6.size9,
.katex .fontsize-ensurer.reset-size6.size9 {
  font-size: 1.728em;
}
.katex .sizing.reset-size6.size10,
.katex .fontsize-ensurer.reset-size6.size10 {
  font-size: 2.074em;
}
.katex .sizing.reset-size6.size11,
.katex .fontsize-ensurer.reset-size6.size11 {
  font-size: 2.488em;
}
.katex .sizing.reset-size7.size1,
.katex .fontsize-ensurer.reset-size7.size1 {
  font-size: 0.41666667em;
}
.katex .sizing.reset-size7.size2,
.katex .fontsize-ensurer.reset-size7.size2 {
  font-size: 0.5em;
}
.katex .sizing.reset-size7.size3,
.katex .fontsize-ensurer.reset-size7.size3 {
  font-size: 0.58333333em;
}
.katex .sizing.reset-size7.size4,
.katex .fontsize-ensurer.reset-size7.size4 {
  font-size: 0.66666667em;
}
.katex .sizing.reset-size7.size5,
.katex .fontsize-ensurer.reset-size7.size5 {
  font-size: 0.75em;
}
.katex .sizing.reset-size7.size6,
.katex .fontsize-ensurer.reset-size7.size6 {
  font-size: 0.83333333em;
}
.katex .sizing.reset-size7.size7,
.katex .fontsize-ensurer.reset-size7.size7 {
  font-size: 1em;
}
.katex .sizing.reset-size7.size8,
.katex .fontsize-ensurer.reset-size7.size8 {
  font-size: 1.2em;
}
.katex .sizing.reset-size7.size9,
.katex .fontsize-ensurer.reset-size7.size9 {
  font-size: 1.44em;
}
.katex .sizing.reset-size7.size10,
.katex .fontsize-ensurer.reset-size7.size10 {
  font-size: 1.72833333em;
}
.katex .sizing.reset-size7.size11,
.katex .fontsize-ensurer.reset-size7.size11 {
  font-size: 2.07333333em;
}
.katex .sizing.reset-size8.size1,
.katex .fontsize-ensurer.reset-size8.size1 {
  font-size: 0.34722222em;
}
.katex .sizing.reset-size8.size2,
.katex .fontsize-ensurer.reset-size8.size2 {
  font-size: 0.41666667em;
}
.katex .sizing.reset-size8.size3,
.katex .fontsize-ensurer.reset-size8.size3 {
  font-size: 0.48611111em;
}
.katex .sizing.reset-size8.size4,
.katex .fontsize-ensurer.reset-size8.size4 {
  font-size: 0.55555556em;
}
.katex .sizing.reset-size8.size5,
.katex .fontsize-ensurer.reset-size8.size5 {
  font-size: 0.625em;
}
.katex .sizing.reset-size8.size6,
.katex .fontsize-ensurer.reset-size8.size6 {
  font-size: 0.69444444em;
}
.katex .sizing.reset-size8.size7,
.katex .fontsize-ensurer.reset-size8.size7 {
  font-size: 0.83333333em;
}
.katex .sizing.reset-size8.size8,
.katex .fontsize-ensurer.reset-size8.size8 {
  font-size: 1em;
}
.katex .sizing.reset-size8.size9,
.katex .fontsize-ensurer.reset-size8.size9 {
  font-size: 1.2em;
}
.katex .sizing.reset-size8.size10,
.katex .fontsize-ensurer.reset-size8.size10 {
  font-size: 1.44027778em;
}
.katex .sizing.reset-size8.size11,
.katex .fontsize-ensurer.reset-size8.size11 {
  font-size: 1.72777778em;
}
.katex .sizing.reset-size9.size1,
.katex .fontsize-ensurer.reset-size9.size1 {
  font-size: 0.28935185em;
}
.katex .sizing.reset-size9.size2,
.katex .fontsize-ensurer.reset-size9.size2 {
  font-size: 0.34722222em;
}
.katex .sizing.reset-size9.size3,
.katex .fontsize-ensurer.reset-size9.size3 {
  font-size: 0.40509259em;
}
.katex .sizing.reset-size9.size4,
.katex .fontsize-ensurer.reset-size9.size4 {
  font-size: 0.46296296em;
}
.katex .sizing.reset-size9.size5,
.katex .fontsize-ensurer.reset-size9.size5 {
  font-size: 0.52083333em;
}
.katex .sizing.reset-size9.size6,
.katex .fontsize-ensurer.reset-size9.size6 {
  font-size: 0.5787037em;
}
.katex .sizing.reset-size9.size7,
.katex .fontsize-ensurer.reset-size9.size7 {
  font-size: 0.69444444em;
}
.katex .sizing.reset-size9.size8,
.katex .fontsize-ensurer.reset-size9.size8 {
  font-size: 0.83333333em;
}
.katex .sizing.reset-size9.size9,
.katex .fontsize-ensurer.reset-size9.size9 {
  font-size: 1em;
}
.katex .sizing.reset-size9.size10,
.katex .fontsize-ensurer.reset-size9.size10 {
  font-size: 1.20023148em;
}
.katex .sizing.reset-size9.size11,
.katex .fontsize-ensurer.reset-size9.size11 {
  font-size: 1.43981481em;
}
.katex .sizing.reset-size10.size1,
.katex .fontsize-ensurer.reset-size10.size1 {
  font-size: 0.24108004em;
}
.katex .sizing.reset-size10.size2,
.katex .fontsize-ensurer.reset-size10.size2 {
  font-size: 0.28929605em;
}
.katex .sizing.reset-size10.size3,
.katex .fontsize-ensurer.reset-size10.size3 {
  font-size: 0.33751205em;
}
.katex .sizing.reset-size10.size4,
.katex .fontsize-ensurer.reset-size10.size4 {
  font-size: 0.38572806em;
}
.katex .sizing.reset-size10.size5,
.katex .fontsize-ensurer.reset-size10.size5 {
  font-size: 0.43394407em;
}
.katex .sizing.reset-size10.size6,
.katex .fontsize-ensurer.reset-size10.size6 {
  font-size: 0.48216008em;
}
.katex .sizing.reset-size10.size7,
.katex .fontsize-ensurer.reset-size10.size7 {
  font-size: 0.57859209em;
}
.katex .sizing.reset-size10.size8,
.katex .fontsize-ensurer.reset-size10.size8 {
  font-size: 0.69431051em;
}
.katex .sizing.reset-size10.size9,
.katex .fontsize-ensurer.reset-size10.size9 {
  font-size: 0.83317261em;
}
.katex .sizing.reset-size10.size10,
.katex .fontsize-ensurer.reset-size10.size10 {
  font-size: 1em;
}
.katex .sizing.reset-size10.size11,
.katex .fontsize-ensurer.reset-size10.size11 {
  font-size: 1.19961427em;
}
.katex .sizing.reset-size11.size1,
.katex .fontsize-ensurer.reset-size11.size1 {
  font-size: 0.20096463em;
}
.katex .sizing.reset-size11.size2,
.katex .fontsize-ensurer.reset-size11.size2 {
  font-size: 0.24115756em;
}
.katex .sizing.reset-size11.size3,
.katex .fontsize-ensurer.reset-size11.size3 {
  font-size: 0.28135048em;
}
.katex .sizing.reset-size11.size4,
.katex .fontsize-ensurer.reset-size11.size4 {
  font-size: 0.32154341em;
}
.katex .sizing.reset-size11.size5,
.katex .fontsize-ensurer.reset-size11.size5 {
  font-size: 0.36173633em;
}
.katex .sizing.reset-size11.size6,
.katex .fontsize-ensurer.reset-size11.size6 {
  font-size: 0.40192926em;
}
.katex .sizing.reset-size11.size7,
.katex .fontsize-ensurer.reset-size11.size7 {
  font-size: 0.48231511em;
}
.katex .sizing.reset-size11.size8,
.katex .fontsize-ensurer.reset-size11.size8 {
  font-size: 0.57877814em;
}
.katex .sizing.reset-size11.size9,
.katex .fontsize-ensurer.reset-size11.size9 {
  font-size: 0.69453376em;
}
.katex .sizing.reset-size11.size10,
.katex .fontsize-ensurer.reset-size11.size10 {
  font-size: 0.83360129em;
}
.katex .sizing.reset-size11.size11,
.katex .fontsize-ensurer.reset-size11.size11 {
  font-size: 1em;
}
.katex .delimsizing.size1 {
  font-family: KaTeX_Size1;
}
.katex .delimsizing.size2 {
  font-family: KaTeX_Size2;
}
.katex .delimsizing.size3 {
  font-family: KaTeX_Size3;
}
.katex .delimsizing.size4 {
  font-family: KaTeX_Size4;
}
.katex .delimsizing.mult .delim-size1 > span {
  font-family: KaTeX_Size1;
}
.katex .delimsizing.mult .delim-size4 > span {
  font-family: KaTeX_Size4;
}
.katex .nulldelimiter {
  display: inline-block;
  width: 0.12em;
}
.katex .delimcenter {
  position: relative;
}
.katex .op-symbol {
  position: relative;
}
.katex .op-symbol.small-op {
  font-family: KaTeX_Size1;
}
.katex .op-symbol.large-op {
  font-family: KaTeX_Size2;
}
.katex .op-limits > .vlist-t {
  text-align: center;
}
.katex .accent > .vlist-t {
  text-align: center;
}
.katex .accent .accent-body {
  position: relative;
}
.katex .accent .accent-body:not(.accent-full) {
  width: 0;
}
.katex .overlay {
  display: block;
}
.katex .mtable .vertical-separator {
  display: inline-block;
  margin: 0 -0.025em;
  border-right: 0.05em solid;
  min-width: 1px;
}
.katex .mtable .vs-dashed {
  border-right: 0.05em dashed;
}
.katex .mtable .arraycolsep {
  display: inline-block;
}
.katex .mtable .col-align-c > .vlist-t {
  text-align: center;
}
.katex .mtable .col-align-l > .vlist-t {
  text-align: left;
}
.katex .mtable .col-align-r > .vlist-t {
  text-align: right;
}
.katex .svg-align {
  text-align: left;
}
.katex svg {
  display: block;
  position: absolute;
  width: 100%;
  height: inherit;
  fill: currentColor;
  stroke: currentColor;
  fill-rule: nonzero;
  fill-opacity: 1;
  stroke-width: 1;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  stroke-opacity: 1;
}
.katex svg path {
  stroke: none;
}
.katex img {
  border-style: none;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
}
.katex .stretchy {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.katex .stretchy::before,
.katex .stretchy::after {
  content: "";
}
.katex .hide-tail {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.katex .halfarrow-left {
  position: absolute;
  left: 0;
  width: 50.2%;
  overflow: hidden;
}
.katex .halfarrow-right {
  position: absolute;
  right: 0;
  width: 50.2%;
  overflow: hidden;
}
.katex .brace-left {
  position: absolute;
  left: 0;
  width: 25.1%;
  overflow: hidden;
}
.katex .brace-center {
  position: absolute;
  left: 25%;
  width: 50%;
  overflow: hidden;
}
.katex .brace-right {
  position: absolute;
  right: 0;
  width: 25.1%;
  overflow: hidden;
}
.katex .x-arrow-pad {
  padding: 0 0.5em;
}
.katex .x-arrow,
.katex .mover,
.katex .munder {
  text-align: center;
}
.katex .boxpad {
  padding: 0 0.3em 0 0.3em;
}
.katex .fbox,
.katex .fcolorbox {
  box-sizing: border-box;
  border: 0.04em solid;
}
.katex .cancel-pad {
  padding: 0 0.2em 0 0.2em;
}
.katex .cancel-lap {
  margin-left: -0.2em;
  margin-right: -0.2em;
}
.katex .sout {
  border-bottom-style: solid;
  border-bottom-width: 0.08em;
}
.katex-display {
  display: block;
  margin: 1em 0;
  text-align: center;
}
.katex-display > .katex {
  display: block;
  text-align: center;
  white-space: nowrap;
}
.katex-display > .katex > .katex-html {
  display: block;
  position: relative;
}
.katex-display > .katex > .katex-html > .tag {
  position: absolute;
  right: 0;
}
.katex-display.leqno > .katex > .katex-html > .tag {
  left: 0;
  right: auto;
}
.katex-display.fleqn > .katex {
  text-align: left;
}/** SHRINK */
/* removed */
.avv-shrink-enter,
.avv-shrink-leave-to {
  max-height: 0;
}

/* removed */
.avv-shrink-enter-active,
.avv-shrink-leave-active {
  transition: 1s;
}

/** FADE */
/* removed */
.avv-fade-item {
  transition: all 150ms linear;
}

/* removed */
.avv-fade-enter, .avv-fade-leave-to {
  opacity: 0;
}

/* removed */
.avv-fade-enter-active,
.avv-fade-leave-active {
  transition: all 150ms linear;
}

/* removed */
.avv-context-menu {
  display: block;
  position: absolute;
  z-index: 10;
  width: 300px;
  border-radius: 10px;
  margin: 1px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  user-select: none;
  contain: style;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Yantramanav', sans-serif;
}

/* removed */
.avv-context-menu .avv-context-menu-group,
.avv-context-menu .avv-context-menu-item,
.avv-context-menu .avv-context-menu-item-label,
.avv-context-menu .avv-context-menu-item-shortcut {
  box-sizing: initial;
}

/* removed */
.avv-context-menu .avv-context-menu-group {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  padding-top: 4px;
  border-top: 2px solid #e5e5e5;
}

/* removed */
.avv-context-menu .avv-context-menu-group .avv-context-menu-group-header {
  font-weight: bold;
  padding: 8px 16px;
}

/* removed */
.avv-context-menu .avv-context-menu-group:first-child {
  border-top: none;
  padding-top: 0;
}

/* removed */
.avv-context-menu .avv-context-menu-item {
  padding: 5px 10px;
  background-color: #fff;
  color: #000;
  display: grid;
  grid-template-areas: "svg label shortcut";
  grid-template-columns: 26px 1fr auto;
  grid-template-rows: 100%;
  align-items: center;
}

/* removed */
.avv-context-menu .avv-context-menu-item.disabled {
  color: #d9d9d9;
}

/* removed */
.avv-context-menu .avv-context-menu-item.disabled svg {
  fill: #d9d9d9;
}

/* removed */
.avv-context-menu .avv-context-menu-item.disabled .context-menu_item_shortcut {
  color: #d9d9d9;
}

/* removed */
.avv-context-menu .avv-context-menu-item.disabled > * {
  pointer-events: none;
}

/* removed */
.avv-context-menu .avv-context-menu-item i.material-icons svg {
  height: 16px;
  width: 16px;
  padding-right: 10px;
  fill: #3c3c3c;
  grid-area: svg;
}

/* removed */
.avv-context-menu .avv-context-menu-item .avv-context-menu-item-label {
  grid-area: label;
}

/* removed */
.avv-context-menu .avv-context-menu-item.with-input {
  grid-template-areas: "svg label input";
  grid-template-columns: 26px 1fr 50px;
}

/* removed */
.avv-context-menu .avv-context-menu-item .avv-context-menu-input {
  grid-area: input;
  padding: 0;
  color: #000;
}

/* removed */
.avv-context-menu .avv-context-menu-item .avv-context-menu-item-shortcut {
  color: #a4a4a4;
  text-align: right;
  font-weight: bold;
  font-size: 12px;
  grid-area: shortcut;
}

/* removed */
.avv-context-menu .avv-context-menu-item:not(.disabled):hover {
  background-color: var(--avv-primary--color);
  color: #fff;
}

/* removed */
.avv-context-menu .avv-context-menu-item:not(.disabled):hover .avv-context-menu-item-shortcut {
  color: #cbcbcb;
}

/* removed */
.avv-context-menu .avv-context-menu-item:not(.disabled):hover i.material-icons {
  fill: #fff;
}

/* removed */
.questionnaire-wrapper [id*='q-editor'] {
  grid-area: editor;
}

/* removed */
.questionnaire-wrapper .avv-editor.avv-theme-nego[id*='q-editor'] {
  width: 100%;
  position: relative;
}

/* removed */
.questionnaire-wrapper .avv-editor.avv-theme-nego[id*='q-editor'] .avv-container-wrap {
  display: block;
}

/* removed */
.questionnaire-wrapper .avv-editor.avv-theme-nego[id*='q-editor'] .avv-container-wrap > .avv-container {
  width: inherit;
  height: calc(100vh - 230px) !important;
}

/* removed */
.questionnaire-wrapper .avv-editor.avv-theme-nego[id*='q-editor'] .avv-container-wrap .avv-sidebar {
  display: none;
}

/* removed */
.questionnaire-wrapper .avv-editor.avv-theme-nego[id*='q-editor'] .avv-container-wrap.modern-theme > .avv-container {
  width: inherit;
  height: calc(100vh - 160px) !important;
}

/* removed */
.avv-footnote-editor avv-dummy {
  display: none;
}

/* removed */
.avv-container * {
  box-sizing: border-box;
}

/* removed */
.avv-container-wrap > .avv-container {
  position: relative;
}

/* removed */
/* removed */
.avv-container-wrap.loading::before {
  content: " ";
  /* removed */
  display: block !important;
  /* removed */
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  margin-right: 20px;
  margin-top: 10px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #007bff;
  animation: avv-spin 0.8s linear infinite;
  z-index: 1001;
}

/* removed */
/* removed */
.avv-container-wrap.loading:focus::before {
  content: "Loading content. Please wait.";
  color: transparent;
}

/* removed */
@keyframes avv-spin {
  to {
    transform: rotate(360deg);
  }
}

/* removed */
.avv-editor {
  contain: style;
}

/* removed */
.avv-editor:not(.avv-editor--unstyled) {
  position: relative;
  background-color: #f8f9fa;
  border-right: 1px solid #EDEDEDFF;
  border-bottom: 1px solid #EDEDEDFF;
  border-top: none;
  font-weight: 400;
}

/* removed */
.avv-editor.right-to-left {
  direction: rtl;
  text-align: right;
}

/* removed */
.avv-editor svg {
  vertical-align: middle;
}

/* removed */
.avv-editor.no-sidebar .avv-container-wrap {
  grid-template-columns: 804px 0;
}

/* removed */
.avv-editor .avv-toolbar {
  background-color: white;
  z-index: 400;
  margin: 4px;
}

/* removed */
.avv-editor .avv-toolbar .compare-toolbar {
  background-color: var(--avv-primary--color);
}

/* removed */
.avv-editor .avv-toolbar .compare-toolbar .icons {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 42.5%;
}

/* removed */
.avv-editor .avv-toolbar .compare-toolbar .icons i:hover {
  cursor: pointer;
}

/* removed */
.avv-editor .avv-toolbar .compare-toolbar .icons .right, .avv-editor .avv-toolbar .compare-toolbar .icons .left {
  display: flex;
  margin: 5px;
}

/* removed */
.avv-editor .avv-toolbar .compare-toolbar .icons .right {
  justify-content: flex-end;
}

/* removed */
.avv-editor .avv-toolbar .compare-toolbar .icons .left {
  justify-content: flex-start;
}

/* removed */
.avv-editor .avv-toolbar p.locked, .avv-editor .avv-toolbar p.compare {
  display: grid;
  justify-items: center;
  padding: 20px;
  user-select: none;
  font-weight: 500;
  font-size: 18px;
}

/* removed */
.avv-editor .avv-toolbar p.compare {
  padding: 48px;
  margin: 0;
}

/* removed */
.avv-editor .avv-toolbar .tooltip-wrapper {
  position: relative;
  height: 32px;
}

/* removed */
.avv-editor .avv-toolbar .tooltip-wrapper .tooltip-message {
  position: absolute;
  bottom: -30px;
  background-color: black;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 14px;
  z-index: 475;
  transform: translateX(-50%);
  left: 50%;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-font .icon, .avv-editor .avv-toolbar .dropdown-formats .icon {
  display: flex;
  align-items: center;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-font .toolbar-dropdown ul, .avv-editor .avv-toolbar .dropdown-font .toolbar-dropdown .menu, .avv-editor .avv-toolbar .dropdown-formats .toolbar-dropdown ul, .avv-editor .avv-toolbar .dropdown-formats .toolbar-dropdown .menu {
  top: 38px;
  transform: translateX(-50%);
}

/* removed */
.avv-editor .avv-toolbar .dropdown-table {
  position: relative;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-table .icon {
  display: flex;
  align-items: center;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-table ul, .avv-editor .avv-toolbar .dropdown-table .menu {
  position: absolute;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  top: 38px;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-color {
  position: relative;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-color .icon {
  display: flex;
  align-items: center;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-color ul, .avv-editor .avv-toolbar .dropdown-color .menu {
  position: absolute;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
  top: 38px;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-font-size {
  display: flex;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-font-size input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: none;
  outline: none;
  line-height: initial;
}

/* removed */
.avv-editor .avv-toolbar .dropdown-font-size .toolbar-dropdown ul {
  width: 60px;
  top: 38px;
  transform: translateX(-50%);
}

/* removed */
.avv-editor .avv-toolbar .toolbar-dropdown {
  position: relative;
  z-index: 5;
  white-space: nowrap;
}

/* removed */
.avv-editor .avv-toolbar .toolbar-dropdown ul {
  height: 300px;
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}

/* removed */
.avv-editor .avv-toolbar .toolbar-dropdown ul li {
  padding: 4px 10px;
  margin: 0;
  background-color: #fff;
  border-left: 1px solid var(--avv-border--color);
  border-right: 1px solid var(--avv-border--color);
  box-shadow: rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
}

/* removed */
.avv-editor .avv-toolbar .toolbar-dropdown ul li:hover {
  background-color: var(--avv-primary-light--color);
  cursor: pointer;
}

/* removed */
.avv-editor .avv-toolbar .categories {
  display: flex;
  padding-top: 2px;
  padding-left: 20px;
}

/* removed */
.avv-editor .avv-toolbar .categories .category {
  cursor: pointer;
  padding: 10px 15px;
  border-bottom: 2px solid transparent;
  color: #F0F6FD;
  user-select: none;
  transition: background-color 150ms linear, color 150ms linear, border 150ms linear;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
}

/* removed */
.avv-editor .avv-toolbar .categories .category:hover {
  color: white;
}

/* removed */
.avv-editor .avv-toolbar .categories .category[aria-selected="true"]:focus {
  outline: none !important;
}

/* removed */
.avv-editor .avv-toolbar .categories .category[aria-selected="true"]:focus:not([aria-pressed="true"]) {
  background-color: var(--avv-primary-hover--color);
}

/* removed */
.avv-editor .avv-toolbar .categories .category[aria-pressed="true"] {
  color: white;
  border-bottom: 2px solid white;
}

/* removed */
.avv-editor .avv-toolbar .containers {
  position: relative;
}

/* removed */
.avv-editor .avv-toolbar .containers.compare {
  min-height: 76px;
}

/* removed */
.avv-editor .avv-toolbar .containers .category-container {
  display: flex;
  flex-wrap: wrap;
  padding: 6px;
}

/* removed */
.avv-editor .avv-toolbar .containers .category-container button[aria-selected="true"]:focus {
  outline: 1px solid var(--avv-primary--color) !important;
  border-radius: 0;
}

/* removed */
.avv-editor .avv-toolbar .containers .category-container button[aria-pressed="true"] {
  fill: var(--avv-primary-300);
}

/* removed */
.avv-editor .avv-toolbar .containers .separator {
  display: flex;
  flex-flow: column;
  min-width: 2px;
  background-color: var(--avv-border--color);
  margin: 4px 8px;
}

/* removed */
.avv-editor .avv-toolbar .containers .icon {
  padding: 4px 6px;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  background-color: transparent;
  border: none;
}

/* removed */
.avv-editor .avv-toolbar .containers .icon .icon-counter {
  position: absolute;
  top: -4px;
  right: -2px;
  font-size: 10px;
  padding: 2px;
  font-weight: bold;
  border-radius: 2px;
  display: inline-block;
  min-width: 18px;
  text-align: center;
}

/* removed */
.avv-editor .avv-toolbar .containers .icon .icon-icon {
  width: 24px;
}

/* removed */
.avv-editor .avv-toolbar .containers .icon:hover:not(.disabled) {
  background-color: var(--avv-border--color);
}

/* removed */
.avv-editor .avv-toolbar .containers .align-menu-parent {
  position: relative;
  width: 0;
  height: 0;
}

/* removed */
.avv-editor .avv-toolbar .containers .align-menu {
  top: 40px;
  border: 1px solid var(--avv-border--color);
  position: absolute;
  display: flex;
  transition: left 150ms linear;
}

/* removed */
.avv-editor .avv-container-wrap {
  display: flex;
  justify-content: space-between;
  background-color: var(--avv-tab-background--color);
  flex: 1 1;
  padding: 3.75pt 3.75pt 7.5pt;
  position: relative;
  z-index: -1;
}

@media (max-width: 1300px) {
  /* removed */
  .avv-editor .avv-container-wrap {
    grid-template-columns: 1fr 400px;
  }
}

/* removed */
.avv-editor .avv-container-wrap > .avv-container {
  /* removed */
  width: 804px;
  overflow-x: hidden;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
  box-shadow: rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
  border-width: 0;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  min-height: 300px;
  cursor: text;
  -webkit-user-select: text;
  user-select: text;
  counter-reset: list-0;
  height: 100%;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}

@media (max-width: 1300px) {
  /* removed */
  .avv-editor .avv-container-wrap > .avv-container {
    width: 100%;
  }
}

/* removed */
.avv-editor .avv-container-wrap > .avv-container.empty:not([data-composing-mode])::before {
  display: block;
  content: attr(data-placeholder);
  position: absolute;
  pointer-events: none;
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
}

/* removed */
.avv-editor .avv-container-wrap > .avv-container[dir="rtl"] {
  text-align: right;
}

/* removed */
.avv-resizer {
  position: absolute;
}

/* removed */
.avv-resizer.top-left {
  left: 0;
  top: 0;
  cursor: nwse-resize;
  /* removed */
  width: var(--avv-resizable-size);
  height: var(--avv-resizable-size);
  overflow: hidden;
}

/* removed */
.avv-resizer.top-left:after {
  content: "";
  display: block;
  border-bottom: var(--avv-resizable-invisible-border);
  border-left: var(--avv-resizable-border);
}

/* removed */
.avv-resizer.top-right {
  right: 0;
  top: 0;
  cursor: nesw-resize;
  width: var(--avv-resizable-size);
  height: var(--avv-resizable-size);
  overflow: hidden;
}

/* removed */
.avv-resizer.top-right:after {
  content: "";
  display: block;
  border-left: var(--avv-resizable-invisible-border);
  border-top: var(--avv-resizable-border);
}

/* removed */
.avv-resizer.bottom-left {
  left: 0;
  bottom: 0;
  cursor: nesw-resize;
  width: var(--avv-resizable-size);
  height: var(--avv-resizable-size);
  overflow: hidden;
}

/* removed */
.avv-resizer.bottom-left:after {
  content: "";
  display: block;
  border-right: var(--avv-resizable-invisible-border);
  border-bottom: var(--avv-resizable-border);
}

/* removed */
.avv-resizer.bottom-right {
  right: 0;
  bottom: 0;
  cursor: nwse-resize;
  width: var(--avv-resizable-size);
  height: var(--avv-resizable-size);
  overflow: hidden;
}

/* removed */
.avv-resizer.bottom-right:after {
  content: "";
  display: block;
  border-top: var(--avv-resizable-invisible-border);
  border-right: var(--avv-resizable-border);
}

/* removed */
avv-footnotes {
  display: none;
}

/* removed */
avv-metadata {
  display: none;
}

/* removed */
.hide {
  display: none;
}

/* removed */
.comment_highlight-first, .comment_highlight, .comment_highlight-last {
  background-color: var(--avv-comment-bg--color);
}

/* removed */
.comment_highlight-first {
  border-top: 1px solid var(--avv-comment-border--color);
}

/* removed */
.comment_highlight {
  border-left: 1px solid var(--avv-comment-border--color);
  border-right: 1px solid var(--avv-comment-border--color);
}

/* removed */
.comment_highlight-last {
  border-bottom: 1px solid var(--avv-comment-border--color);
}

/* removed */
.\!m-0 {
  margin: 0 !important;
}

/* removed */
.\!mr-0 {
  margin-right: 0 !important;
}

/* removed */
.\!mb-0 {
  margin-bottom: 0 !important;
}

/* removed */
.\!ml-0 {
  margin-left: 0 !important;
}

/* removed */
.\!mt-0 {
  margin-top: 0 !important;
}

/* removed */
.\!indent-0 {
  text-indent: 0 !important;
}@charset "UTF-8";
/**
* Type: Inline
*/
/* removed */
.avv-container a {
  cursor: pointer;
}

/* removed */
.avv-container a[data-origin="editor"] {
  color: #226ce0;
  text-decoration: underline;
}

/* removed */
.avv-container a:hover {
  text-decoration: underline;
}

/**
* Type: Block
*/
/* removed */
avv-bookmark::before {
  content: "​";
}

/**
* Type: Container
*/
/* removed */
avv-clause {
  display: block;
  position: relative;
}

/* removed */
avv-clause[data-link-id] {
  background-color: #ffffd8;
  border: 2px solid #fffcc4;
}

/* removed */
avv-clause:before, avv-clause:not([data-type="agreement"]):after {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

/* removed */
avv-clause:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px dashed #92cfff;
  border-radius: 6px;
  margin: -6px;
}

/* removed */
avv-clause:not([data-type="agreement"]):after {
  content: attr(data-name);
  position: absolute;
  top: -4px;
  right: -4px;
  padding: 2px 4px;
  background: #92cfff;
  color: white;
  border-radius: 6px;
  font-size: 0.8em;
  font-weight: bold;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* removed */
avv-clause:hover:before, avv-clause:hover:after, avv-clause.highlight:before, avv-clause.highlight:after {
  opacity: 1;
}

/* removed */
avv-clause[data-type="agreement"]:after {
  content: "Agreement-only clause: " attr(data-name);
  position: absolute;
  inset: 0;
  padding: 2px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--avv-neutral-500);
  border-radius: 6px;
  font-size: 0.8em;
  font-weight: bold;
}

/**
* Type: Container
*/
/* removed */
avv-condition {
  display: block;
  background-color: #dfd;
  border: 2px solid #bfb;
  position: relative;
}

/* removed */
avv-condition[data-condition*="'showUnanswered':true"] {
  border-right: 4px solid #00ff00;
}

/* removed */
avv-condition[data-hidden] {
  display: none;
}

/**
* Type: Container
*/
/* removed */
.avv-container {
  container-type: inline-size;
  container-name: avv-editor;
  --editor-type: container
;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-control:before, avv-control:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-control {
  background: #b6b6b6;
  padding: 2px 5px;
  border-bottom: 1px dotted #464646;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-crossref:before, avv-crossref:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-crossref {
  margin: auto 2px;
  padding: 3px;
  background-color: rgba(97, 184, 242, 0.3);
  border-bottom: 1px dotted #61b8f2;
  cursor: pointer;
}

/* removed */
avv-crossref[data-variant=lower] {
  text-transform: lowercase;
}

/* removed */
avv-crossref[data-variant=upper] {
  text-transform: uppercase;
}

/* removed */
avv-crossref[data-variant=capital] {
  text-transform: lowercase;
}

/* removed */
avv-crossref[data-variant=capital]::first-letter {
  text-transform: uppercase;
}

/* removed */
avv-crossref[data-variant=title] {
  text-transform: capitalize;
}

/**
 * Type: Inline
 */
/* removed */
avv-diff {
  background: #fef3c7;
  border: 2px dotted #d97706;
}

/* removed */
tr[sd-table-change] {
  background: #fef3c7;
  border: 2px dotted #d97706;
}

/* removed */
[sd-relation-id] {
  background: #8dc29a;
  border: 2px dotted #079643;
}

/* removed */
[sd-relation-id] td {
  border-color: #079643;
}

/* removed */
/* removed */
avv-diff avv-diff-content {
  display: none;
}

/* removed */
avv-diff[data-content-type="block"] {
  --avv-diff-display-value: block;
  display: block;
}

/* removed */
avv-diff[data-content-type="inline"] {
  --avv-diff-display-value: inline;
  display: inline;
}

/* removed */
avv-diff[data-selected="document_1"] avv-diff-content[data-source="document_1"],
avv-diff[data-selected="document_2"] avv-diff-content[data-source="document_2"],
avv-diff[data-selected="suggestion"] avv-diff-content[data-source="suggestion"],
avv-diff[data-selected="user"] avv-diff-content[data-source="user"] {
  display: var(--avv-diff-display-value);
}

/* removed */
/* removed */
avv-diff-content[data-source="suggestion"][data-suggestion-state="loading"] {
  background: #fef3c7;
  border-bottom: 2px dotted #d97706;
}

/* removed */
avv-diff-content[data-source="suggestion"][data-suggestion-state="loading"]:empty::after {
  content: "AI is generating a suggestion…";
  display: inline-block;
  color: #92400e;
  font-style: italic;
  animation: avv-diff-pulse 1.5s ease-in-out infinite;
}

/* removed */
avv-diff-content[data-source="suggestion"][data-suggestion-state="error"] {
  background: #fee2e2;
  border-bottom: 2px solid #dc2626;
}

/* removed */
avv-diff-content[data-source="suggestion"][data-suggestion-state="error"]:empty::after {
  content: "Failed to generate AI suggestion";
  display: inline-block;
  color: #991b1b;
  font-style: italic;
}

@keyframes avv-diff-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-external-placeholder:before, avv-external-placeholder:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-external-placeholder {
  background: #bda9be;
  padding: 2px 5px;
  border: 2px dotted #838383;
  border-radius: 10px;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-footnote:before, avv-footnote:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-footnote {
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
  background: #ededed;
  border-radius: 2px;
  padding: 2px;
  cursor: pointer;
}

/**
* Type: Inline
*/
/* removed */
avv-if {
  background-color: #b0f5ac;
  border: 2px solid #41da6e;
}

/* removed */
avv-if[data-condition*="'showUnanswered':true"] {
  border-right: 4px solid #00ff00;
  margin-right: 4px;
}

/* removed */
avv-if avv-placeholder {
  margin: 2px 0;
}

/**
* Type: Container
*/
/* removed */
avv-list {
  display: block;
  --indent-step: 1.3em;
  list-style-position: outside;
  padding: 0;
  margin: 0;
}

/* removed */
/* removed */
avv-list > * {
  display: list-item !important;
  margin: 0;
  /* removed */
}

/* removed */
/* removed */
avv-list[level="1"] {
  padding-left: calc(1 * var(--indent-step));
}

/* removed */
avv-list[level="2"] {
  padding-left: calc(2 * var(--indent-step));
}

/* removed */
avv-list[level="3"] {
  padding-left: calc(3 * var(--indent-step));
}

/* removed */
avv-list[level="4"] {
  padding-left: calc(4 * var(--indent-step));
}

/* removed */
avv-list[level="5"] {
  padding-left: calc(5 * var(--indent-step));
}

/* removed */
avv-list[level="6"] {
  padding-left: calc(6 * var(--indent-step));
}

/* removed */
avv-list[level="7"] {
  padding-left: calc(7 * var(--indent-step));
}

/* removed */
avv-list[level="8"] {
  padding-left: calc(8 * var(--indent-step));
}

/* removed */
avv-list[level="9"] {
  padding-left: calc(9 * var(--indent-step));
}

/* removed */
/* removed */
avv-list[level="1"] > * {
  list-style-type: disc;
}

/* removed */
avv-list[level="2"] > * {
  list-style-type: circle;
}

/* removed */
avv-list[level="3"] > * {
  list-style-type: square;
}

/* removed */
avv-list[level="4"] > * {
  list-style-type: decimal;
}

/* removed */
avv-list[level="5"] > * {
  list-style-type: lower-roman;
}

/* removed */
avv-list[level="6"] > * {
  list-style-type: lower-latin;
}

/* removed */
avv-list[level="7"] > * {
  list-style-type: upper-roman;
}

/* removed */
avv-list[level="8"] > * {
  list-style-type: upper-latin;
}

/* removed */
avv-list[level="9"] > * {
  list-style-type: none;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-list-num:before, avv-list-num:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-list-num {
  display: inline;
}

/**
* Type: Inline
*/
/* removed */
avv-match:not(.fade-out-highlight) {
  background: #ffab46 !important;
}

/* removed */
avv-match:not(.fade-out-highlight) * {
  background: #ffab46 !important;
}

/* removed */
avv-match.fade-out-highlight {
  position: relative;
}

/* removed */
avv-match.fade-out-highlight:before {
  display: block;
  content: " ";
  border: 4px solid var(--avv-primary--color);
  position: absolute;
  padding: 14px;
  height: 100%;
  width: 100%;
  z-index: 9999999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* removed */
avv-match[data-active] {
  background: #ffcc00 !important;
}

/* removed */
avv-match[data-active] * {
  background: #ffcc00 !important;
}

/**
* Type: Inline
*/
/* removed */
/* removed */
avv-matholder[contenteditable='false']:before, avv-matholder[contenteditable='false']:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-matholder {
  background: #fdeb96;
  border: 1px dotted #a9a9a9;
}

/* removed */
avv-matholder[data-attr] {
  background: #fab866;
}

/* removed */
avv-matholder[data-attr$=_upper] {
  text-transform: uppercase;
}

/* removed */
avv-matholder[data-attr$=_lower] {
  text-transform: lowercase;
}

/* removed */
avv-matholder[data-attr$=_capitalise] {
  text-transform: capitalize;
}

/* removed */
avv-matholder[data-attr$=_sentence] {
  text-transform: lowercase;
}

/* removed */
avv-matholder[data-attr$=_sentence]::first-letter {
  text-transform: uppercase;
}

/**
* Type: Container
*/
/* removed */
avv-numbered {
  display: block;
  position: relative;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered::before {
  position: absolute;
  left: 0;
  color: #252929;
  font-family: "Arial", sans-serif;
  text-transform: initial;
  content: attr(data-level-number);
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-tc=delete]::before {
  color: var(--avv-tc-reject--color);
  text-decoration: line-through;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-tc=insert]::before {
  color: var(--avv-tc-accept--color);
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered.hide-number::before {
  content: "";
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=uppercase]::before {
  text-transform: uppercase;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=bold]::before {
  font-weight: bold;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=italic]::before {
  font-style: italic;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=underline]::before {
  text-decoration: underline;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=center]::before, .avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=right]::before {
  display: inline-block;
  position: initial;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=center]::before:not(.empty), .avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=right]::before:not(.empty) {
  padding-left: 5mm;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=center] p, .avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=right] p {
  display: inline-block;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=center] {
  text-align: center;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=right] {
  text-align: right;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=block]::before {
  display: block;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-arial]::before {
  font-family: Arial, Helvetica, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-arial-black]::before {
  font-family: "Arial Black", Gadget, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-calibri]::before {
  font-family: Calibri, Carlito, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-comic-sans-ms]::before {
  font-family: "Comic Sans MS", cursive, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-courier-new]::before {
  font-family: "Courier New", Courier, monospace;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-georgia]::before {
  font-family: Georgia, serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-impact]::before {
  font-family: Impact, Charcoal, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-lucida-console]::before {
  font-family: "Lucida Console", Monaco, monospace;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-lucida-sans-unicode]::before {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-palatino-linotype]::before {
  font-family: "Palatino Linotype", FreeSerif, "Book Antiqua", Palatino, serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-tahoma]::before {
  font-family: Tahoma, Kalimati, Geneva, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-times-new-roman]::before {
  font-family: "Times New Roman", Times, serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-trebuchet-ms]::before {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='1'] avv-numbered[data-styles~=font-name-verdana]::before {
  font-family: Verdana, Geneva, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered {
  padding-left: calc(var(--calc-number-padding) * 1mm);
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered > p {
  text-indent: calc(var(--calc-text-indent) * 1mm);
  /* removed */
  padding-left: 0 !important;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-calc-follow-by='tab'] avv-numbered-glyph {
  /* removed */
  padding-right: 4mm;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-calc-follow-by='tab'][data-calc-type='hanging'] avv-numbered-glyph {
  padding-right: calc(calc(var(--text-padding) * 1mm) - calc(var(--calc-glyph-width) * 1px));
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-calc-follow-by='tab'][data-calc-type='left-hanging'] avv-numbered-glyph {
  padding-right: calc(calc(var(--number-padding) * 1mm) - calc(var(--calc-glyph-width) * 1px));
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered-glyph {
  user-select: none;
  padding-left: calc(var(--calc-text-padding) * 1mm);
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered-glyph::before, .avv-container[data-numbering-mask-version='2'] avv-numbered-glyph::after {
  display: inline !important;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-tc=delete] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-tc=delete] avv-numbered-glyph {
  color: var(--avv-tc-reject--color);
  text-decoration: line-through;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-tc=insert] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-tc=insert] avv-numbered-glyph {
  color: var(--avv-tc-accept--color);
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered.hide-number avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num.hide-number avv-numbered-glyph {
  display: none;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=uppercase] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=uppercase] avv-numbered-glyph {
  text-transform: uppercase;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=bold] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=bold] avv-numbered-glyph {
  font-weight: bold;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=italic] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=italic] avv-numbered-glyph {
  font-style: italic;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=underline] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=underline] avv-numbered-glyph {
  text-decoration: underline;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=center] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=right] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=center] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=right] avv-numbered-glyph {
  display: inline-block;
  position: initial;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=center] avv-numbered-glyph:not(.empty), .avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=right] avv-numbered-glyph:not(.empty), .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=center] avv-numbered-glyph:not(.empty), .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=right] avv-numbered-glyph:not(.empty) {
  padding-left: 5mm;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=center] p, .avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=right] p, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=center] p, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=right] p {
  display: inline-block;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=center], .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=center] {
  text-align: center;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=right], .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=right] {
  text-align: right;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=block] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=block] avv-numbered-glyph {
  display: block;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-arial] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-arial] avv-numbered-glyph {
  font-family: Arial, Helvetica, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-arial-black] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-arial-black] avv-numbered-glyph {
  font-family: "Arial Black", Gadget, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-calibri] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-calibri] avv-numbered-glyph {
  font-family: Calibri, Carlito, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-comic-sans-ms] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-comic-sans-ms] avv-numbered-glyph {
  font-family: "Comic Sans MS", cursive, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-courier-new] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-courier-new] avv-numbered-glyph {
  font-family: "Courier New", Courier, monospace;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-georgia] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-georgia] avv-numbered-glyph {
  font-family: Georgia, serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-impact] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-impact] avv-numbered-glyph {
  font-family: Impact, Charcoal, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-lucida-console] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-lucida-console] avv-numbered-glyph {
  font-family: "Lucida Console", Monaco, monospace;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-lucida-sans-unicode] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-lucida-sans-unicode] avv-numbered-glyph {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-palatino-linotype] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-palatino-linotype] avv-numbered-glyph {
  font-family: "Palatino Linotype", FreeSerif, "Book Antiqua", Palatino, serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-tahoma] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-tahoma] avv-numbered-glyph {
  font-family: Tahoma, Kalimati, Geneva, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-times-new-roman] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-times-new-roman] avv-numbered-glyph {
  font-family: "Times New Roman", Times, serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-trebuchet-ms] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-trebuchet-ms] avv-numbered-glyph {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

/* removed */
.avv-container[data-numbering-mask-version='2'] avv-numbered[data-styles~=font-name-verdana] avv-numbered-glyph, .avv-container[data-numbering-mask-version='2'] avv-list-num[data-styles~=font-name-verdana] avv-numbered-glyph {
  font-family: Verdana, Geneva, sans-serif;
}

/* removed */
avv-numbered[data-hidden], avv-list-num[data-hidden] {
  display: none;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-page-number:before, avv-page-number:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-page-number {
  background: #ff8f1a;
}

/**
* Type: Block
*/
/* removed */
avv-pagebreak {
  page-break-before: always;
  display: block;
  margin-left: -12.75pt;
  margin-right: -12.75pt;
  position: relative;
}

/* removed */
avv-pagebreak::before {
  bottom: 100%;
  transform: translate(0, 50%);
  position: absolute;
  border-bottom: 1px dashed #373737;
  content: " ";
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

/* removed */
avv-pagebreak::after {
  bottom: 50%;
  content: "pagebreak " attr(data-type);
  background-color: #dedede;
  border-radius: 2px;
  border: 1px dashed #373737;
  padding: 0 5px;
  font-size: 0.8em;
  position: absolute;
  display: inline-block;
  left: 50%;
  transform: translate(-50%, 50%);
  pointer-events: none;
  z-index: 1;
}

/* removed */
avv-pagebreak[nl-insert] {
  color: #61b8f2;
}

/* removed */
avv-pagebreak[nl-delete] {
  color: var(--avv-tc-reject--color);
}

/* removed */
avv-pagebreak.autoset {
  position: absolute;
  background: #eee;
}

/**
* Type: Inline
*/
/* removed */
avv-placeholder {
  background: #ffff00;
  border: 2px dotted #a9a9a9;
}

/* removed */
avv-placeholder rch {
  background: #ffcc00;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-placeholder-blob:before, avv-placeholder-blob:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-placeholder-blob {
  background: var(--avv-primary-450);
  color: white;
  padding: 3px 5px;
  border-radius: 5px;
  display: inline-flex;
  font-weight: bold;
  align-items: center;
}

/* removed */
avv-placeholder-blob::before {
  margin-right: 5px;
  height: 24px;
  width: 24px;
  content: "";
  background-color: white;
  mask: url(/assets/svg/outline/document-35277cb1b73267037b6cbf658363668bb5a3139c60fe5e325bf44e34807cf60e.svg);
}

/* removed */
avv-placeholder-blob[data-link$=".png"]::before {
  mask: url(/assets/svg/outline/document-image-968b36a071fe2af6ee6f2523c3496600f3a7b979a81eb7006116925db8812924.svg);
}

/* removed */
avv-placeholder-blob[data-link$=".pdf"]::before {
  mask: url(/assets/svg/outline/document-pdf-949f705ec0fa456d053816e3feb5bbad359ec1398135b2282add64ef9abec9b1.svg);
}

/* removed */
avv-placeholder-blob[data-link$=".xlsx"]::before {
  mask: url(/assets/svg/outline/document-excel-2725b163b1a6c67d3b0d2b90cbb14361724cd512ed0fd02780b9ec4a20c2aafd.svg);
}

/* removed */
avv-placeholder-blob[data-link$=".docx"]::before {
  mask: url(/assets/svg/outline/document-word-0470665f488ec28f23fad56fbcef7335c589e61fe5f506f4215fe0fd41a5fe84.svg);
}

/**
* Type: Container
*/
/* removed */
avv-repeater, avv-repeater-1, avv-repeater-2, avv-repeater-3, avv-repeater-4, avv-repeater-5 {
  display: block;
  background-color: rgba(199, 235, 255, 0.8);
  border: 2px solid #61b8f2;
  padding: 5px;
  position: relative;
  margin-top: 20px;
}

/* removed */
avv-repeater::before,
avv-repeater-1::before,
avv-repeater-2::before,
avv-repeater-3::before,
avv-repeater-4::before,
avv-repeater-5::before {
  content: attr(data-repeater-name);
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 18px;
  background: #61b8f2;
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 18px;
  padding: 0 4px;
  outline: 2px solid #61b8f2;
}

/* removed */
avv-repeater-1 {
  border-color: #7ac5f4;
}

/* removed */
avv-repeater-1::before {
  background: #7ac5f4;
}

/* removed */
avv-repeater-2 {
  border-color: #93d2f6;
}

/* removed */
avv-repeater-2::before {
  background: #93d2f6;
}

/* removed */
avv-repeater-3 {
  border-color: #acdff8;
}

/* removed */
avv-repeater-3::before {
  background: #acdff8;
  color: #333;
}

/* removed */
avv-repeater-4 {
  border-color: #c5ecfa;
}

/* removed */
avv-repeater-4::before {
  background: #c5ecfa;
  color: #333;
}

/* removed */
avv-repeater-5 {
  border-color: #def9fc;
}

/* removed */
avv-repeater-5::before {
  background: #def9fc;
  color: #333;
}

/**
* Type: Container
*/
/* removed */
avv-repeater-iteration, avv-repeater-iteration-1, avv-repeater-iteration-2, avv-repeater-iteration-3, avv-repeater-iteration-4, avv-repeater-iteration-5 {
  display: block;
}

/**
* Type: Block
*/
/* removed */
avv-section {
  page-break-before: always;
  display: block;
  margin-left: -12.75pt;
  margin-right: -12.75pt;
  position: relative;
}

/* removed */
avv-section::before {
  bottom: 100%;
  transform: translate(0, 50%);
  position: absolute;
  border-bottom: 1px dashed #373737;
  content: " ";
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

/* removed */
avv-section::after {
  bottom: 50%;
  content: "pagebreak " attr(data-type);
  background-color: #dedede;
  border-radius: 2px;
  border: 1px dashed #373737;
  padding: 0 5px;
  font-size: 0.8em;
  position: absolute;
  display: inline-block;
  left: 50%;
  transform: translate(-50%, 50%);
  pointer-events: none;
  z-index: 1;
}

/* removed */
avv-section[nl-insert] {
  color: #61b8f2;
}

/* removed */
avv-section[nl-delete] {
  color: var(--avv-tc-reject--color);
}

/* removed */
avv-section.autoset {
  position: absolute;
  background: #eee;
}

/* removed */
avv-section::after {
  content: attr(data-type) " section (" attr(data-orientation) ")";
}

/**
* Type: Container
*/
/* removed */
avv-separator {
  display: block;
  background-color: rgba(250, 250, 250, 0.5);
  border-top: 2px dashed #eee;
  border-bottom: 2px dashed #eee;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-separe:before, avv-separe:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-separe {
  margin: 0 2px;
  color: #3193e5;
  font-weight: 600;
  border: 2px dashed rgba(97, 184, 242, 0.6);
  padding: 0 2px;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-signature:before, avv-signature:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-signature {
  border-top: 1px solid #ccc;
  padding: 12px 7px;
  margin-right: 15px;
  font-style: italic;
  background: rgba(97, 184, 242, 0.25);
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-sysdate:before, avv-sysdate:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-sysdate {
  border-top: 1px solid #ccc;
  font-style: italic;
  background: rgba(173, 94, 229, 0.25);
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-tab:before, avv-tab:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-tab:before {
  display: inline;
  padding-left: 12mm;
  content: "";
}

/**
* Type: Container
*/
/* removed */
avv-toc {
  display: block;
}

/**
* Type: Block
*/
/* removed */
avv-toc-entry {
  display: block;
  position: relative;
  margin: 0 50px;
  cursor: pointer;
}

/* removed */
avv-toc-entry:before {
  display: inline-block;
  content: attr(data-number);
  min-width: 50px;
}

/* removed */
avv-toc-entry:after {
  position: absolute;
  right: 0;
  content: "#";
}

/* removed */
avv-toc-entry:hover {
  background-color: var(--avv-primary-light--color);
}

/* removed */
avv-toc-entry[avv-align=left] {
  text-align: left;
}

/* removed */
avv-toc-entry[avv-align=right] {
  text-align: right;
}

/* removed */
avv-toc-entry[avv-align=center] {
  text-align: center;
}

/* removed */
avv-toc-entry[avv-align=justify] {
  text-align: justify;
}

/* removed */
avv-toc-entry[dir=rtl]:not([avv-align]) {
  text-align: right;
}

/* removed */
avv-toc-entry[dir=ltr]:not([avv-align]) {
  text-align: left;
}

/* removed */
avv-toc-entry[nl-insert] {
  color: var(--avv-tc-accept--color);
  text-decoration: underline;
}

/* removed */
avv-toc-entry[nl-delete] {
  color: var(--avv-tc-reject--color);
  text-decoration: line-through;
}

/**
* Type: Void
*/
/* removed */
/* removed */
avv-toc-reference:before, avv-toc-reference:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
avv-toc-reference {
  margin: auto 2px;
  padding: 3px;
  background-color: rgba(97, 131, 242, 0.3);
}

/**
* Type: Inline
*/
/* removed */
cursor-highlight {
  background-color: Highlight;
  color: HighlightText;
}

/**
* Type: Inline
*/
/* removed */
disabled[data-formats~=underline] {
  text-decoration: initial;
}

/* removed */
disabled[data-formats~=bold] {
  font-weight: initial;
}

/* removed */
disabled[data-formats~=italic] {
  font-style: initial;
}

/* removed */
disabled[data-formats~=textTransform] {
  text-transform: initial;
}

/* removed */
disabled[data-formats~=strike] {
  text-decoration: initial;
}

/**
* Type: Inline
*/
/* removed */
.avv-container font[font=arial] {
  font-family: Arial, Helvetica, sans-serif;
}

/* removed */
.avv-container font[font=arial-black] {
  font-family: "Arial Black", Gadget, sans-serif;
}

/* removed */
.avv-container font[font=calibri] {
  font-family: Calibri, Carlito, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

/* removed */
.avv-container font[font=comic-sans-ms] {
  font-family: "Comic Sans MS", cursive, sans-serif;
}

/* removed */
.avv-container font[font=courier-new] {
  font-family: "Courier New", Courier, monospace;
}

/* removed */
.avv-container font[font=georgia] {
  font-family: Georgia, serif;
}

/* removed */
.avv-container font[font=impact] {
  font-family: Impact, Charcoal, sans-serif;
}

/* removed */
.avv-container font[font=lucida-console] {
  font-family: "Lucida Console", Monaco, monospace;
}

/* removed */
.avv-container font[font=lucida-sans-unicode] {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

/* removed */
.avv-container font[font=palatino-linotype] {
  font-family: "Palatino Linotype", FreeSerif, "Book Antiqua", Palatino, serif;
}

/* removed */
.avv-container font[font=tahoma] {
  font-family: Tahoma, Kalimati, Geneva, sans-serif;
}

/* removed */
.avv-container font[font=times-new-roman] {
  font-family: "Times New Roman", Times, serif;
}

/* removed */
.avv-container font[font=trebuchet-ms] {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

/* removed */
.avv-container font[font=verdana] {
  font-family: Verdana, Geneva, sans-serif;
}

/**
* Type: Void
*/
/* removed */
/* removed */
.avv-container img:before, .avv-container img:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
.avv-container img {
  display: inline-block;
}

/**
* Type: Void
*/
/* removed */
/* removed */
lbr:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
lbr::before {
  content: "\a​";
  white-space: pre;
  width: 1px;
}

/* removed */
lbr.empty {
  display: block;
}

/**
* Type: Void
*/
/* removed */
/* removed */
ms-component:before, ms-component:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
ms-component {
  background: #bdbaf6;
  padding: 2px 5px;
  border-bottom: 1px dotted #464646;
}

/**
* Type: Inline
*/
/* removed */
ms-content-control {
  background: #9e9e9e;
}

/**
* Type: Void
*/
/* removed */
/* removed */
ms-field:before, ms-field:after {
  display: inline-block;
  content: "​";
  width: 1px;
}

/* removed */
ms-field {
  background: #bdbaf6;
  padding: 2px 5px;
  border-bottom: 1px dotted #464646;
}

/**
* Type: Block
*/
/* removed */
.avv-container {
  /* removed */
}

/* removed */
.avv-container p {
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  font-weight: 400;
}

/* removed */
.avv-container p[avv-align=left] {
  text-align: left;
}

/* removed */
.avv-container p[avv-align=right] {
  text-align: right;
}

/* removed */
.avv-container p[avv-align=center] {
  text-align: center;
}

/* removed */
.avv-container p[avv-align=justify] {
  text-align: justify;
}

/* removed */
.avv-container p[dir=rtl]:not([avv-align]) {
  text-align: right;
}

/* removed */
.avv-container p[dir=ltr]:not([avv-align]) {
  text-align: left;
}

/* removed */
.avv-container p[data-docx-content-control] {
  background: #9e9e9e;
}

/* removed */
.avv-container p[nl-insert] {
  position: relative;
}

/* removed */
.avv-container p[nl-insert]::before {
  display: block;
  width: 5px;
  height: 100%;
  content: " ";
  position: absolute;
  margin-left: -10px;
  background-color: var(--avv-tc-accept--color) !important;
}

/* removed */
.avv-container p[nl-delete] {
  position: relative;
}

/* removed */
.avv-container p[nl-delete]::before {
  display: block;
  width: 5px;
  height: 100%;
  content: " ";
  position: absolute;
  margin-left: -10px;
  background-color: var(--avv-tc-reject--color) !important;
}

/* removed */
.avv-container p[data-avv-margin-left][data-avv-margin-left^="-"] {
  margin-left: 0 !important;
}

/* removed */
.avv-container p[data-avv-margin-right][data-avv-margin-right^="-"] {
  margin-right: 0 !important;
}

/**
* Type: Inline
*/
/* removed */
q-delete {
  text-decoration: line-through;
  color: var(--avv-tc-reject--color);
  position: relative;
  display: inline;
  /* removed */
}

/* removed */
q-delete color {
  color: var(--avv-tc-reject--color) !important;
}

/* removed */
q-delete img {
  border: 3px solid transparent;
  border-radius: 4px;
  opacity: 0.7;
  filter: grayscale(70%) drop-shadow(0 0 0 rgba(219, 80, 75, 0.2)) contrast(0.9) saturate(0.7);
  transition: all 0.3s ease;
  /* removed */
  border-image: repeating-linear-gradient(45deg, var(--avv-tc-reject--color) 0, var(--avv-tc-reject--color) 10px, rgba(219, 80, 75, 0.5) 10px, rgba(219, 80, 75, 0.5) 20px) 3;
}

/* removed */
q-delete img:hover {
  opacity: 1;
  filter: none;
}

/**
* Type: Inline
*/
/* removed */
q-insert {
  color: var(--avv-tc-accept--color);
  position: relative;
  display: inline;
  /* removed */
}

/* removed */
q-insert color {
  color: var(--avv-tc-accept--color) !important;
}

/* removed */
q-insert img {
  border: 3px solid transparent;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(97, 184, 242, 0.5);
  transition: all 0.3s ease;
  /* removed */
  border-image: repeating-linear-gradient(-45deg, var(--avv-tc-accept--color) 0, var(--avv-tc-accept--color) 10px, rgba(97, 184, 242, 0.5) 10px, rgba(97, 184, 242, 0.5) 20px) 3;
}

/* removed */
q-insert img:hover {
  opacity: 1;
  filter: none;
}

/**
* Type: Inline
*/
/* removed */
rch {
  background: yellow;
}

/**
* Type: Inline
*/
/* removed */
.avv-container s[data-type=double] {
  text-decoration-style: double;
}

/**
* Type: Container
*/
/* removed */
.avv-container table {
  width: auto;
  max-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  color: #252929;
  margin-top: 8px;
}

/* removed */
.avv-container table.full-width {
  width: 100%;
  table-layout: fixed;
}

/* removed */
.avv-container table[data-scale] {
  word-break: break-all;
}

/* removed */
.avv-container table[data-rowspan] {
  border-collapse: separate;
}

/* removed */
.avv-container table[data-docx-width]:not([data-scale]) {
  width: attr(data-docx-width px);
}

/* removed */
.avv-container table[data-docx-content-control] {
  background: #9e9e9e;
}

/* removed */
.avv-container table[data-hidden] {
  display: none;
}

/**
* Type: Container
*/
/* removed */
.avv-container td {
  min-width: 50px;
  padding: 8px;
  white-space: pre-wrap;
  vertical-align: top;
  position: relative;
}

/* removed */
.avv-container td:not([data-borders]) {
  border: 1px solid #ccc;
}

/* removed */
.avv-container td.no-border {
  border: none;
}

/* removed */
.avv-container td.active {
  box-shadow: #14adff 0 0 0 1px inset;
}

/* removed */
.avv-container td[data-tc=delete]:before, .avv-container td[data-tc=insert]:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* removed */
.avv-container td[data-tc=delete]:before {
  background-color: var(--avv-tc-reject--color);
  opacity: 0.2;
}

/* removed */
.avv-container td[data-tc=insert]:before {
  background-color: var(--avv-tc-accept--color);
  opacity: 0.2;
}

/* removed */
.avv-container td avv-resizer {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  left: auto;
  width: 4px;
  cursor: col-resize !important;
  z-index: 1;
}

/* removed */
.avv-container td[data-position=topLeft] {
  vertical-align: top;
  text-align: left;
}

/* removed */
.avv-container td[data-position=top] {
  vertical-align: top;
  text-align: center;
}

/* removed */
.avv-container td[data-position=topRight] {
  vertical-align: top;
  text-align: right;
}

/* removed */
.avv-container td[data-position=middleLeft] {
  vertical-align: middle;
  text-align: left;
}

/* removed */
.avv-container td[data-position=middle] {
  vertical-align: middle;
  text-align: center;
}

/* removed */
.avv-container td[data-position=middleRight] {
  vertical-align: middle;
  text-align: right;
}

/* removed */
.avv-container td[data-position=bottomLeft] {
  vertical-align: bottom;
  text-align: left;
}

/* removed */
.avv-container td[data-position=bottom] {
  vertical-align: bottom;
  text-align: center;
}

/* removed */
.avv-container td[data-position=bottomRight] {
  vertical-align: bottom;
  text-align: right;
}

/* removed */
.avv-container td[data-docx-content-control] {
  background: #9e9e9e;
}

/* removed */
.avv-container td[data-hidden] {
  display: none;
}

/**
* Type: Container
*/
/* removed */
.avv-container tr[data-repeater-id] {
  background-color: #c7ebff;
  border: 2px solid #61b8f2;
}

/* removed */
.avv-container tr .disabled {
  cursor: not-allowed;
  background-color: #ededed;
}

/* removed */
.avv-container tr[data-hidden] {
  display: none;
}

/* removed */
.avv-container tr[data-docx-content-control] {
  background: #9e9e9e;
}

/* removed */
.avv-container tr[data-hidden] {
  display: none;
}

/**
* Type: Inline
*/
/* removed */
tt {
  font-family: inherit;
  text-transform: initial;
  font-variant: initial;
}

/* removed */
tt[data-value=upper] {
  text-transform: uppercase;
}

/* removed */
tt[data-value=lower] {
  text-transform: lowercase;
}

/* removed */
tt[data-value=capital] {
  text-transform: capitalize;
}

/* removed */
tt[data-value=small-caps] {
  font-variant: small-caps;
}

/* removed */
.avv-editor,
.avv-container,
.avv-toolbar,
avv-clause,
avv-toc,
avv-list {
  contain: style layout;
}

/* removed */
.avv-editor {
  /** Highlight animations */
}

@keyframes highlight {
  0% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  30% {
    background: none;
    color: inherit;
  }
  40% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  50% {
    background: none;
    color: inherit;
  }
  60% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  70% {
    background: none;
    color: inherit;
  }
  80% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  100% {
    background: none;
    color: inherit;
  }
}

/* removed */
.avv-editor .fade-out-highlight {
  animation: highlight var(--flashing-interval);
}

/* removed */
.avv-container.hide-tracking-changes q-delete, .avv-container.hide-tracking-changes [data-tc="delete"], .avv-container.hide-tracking-changes [data-tc="delete"]::before {
  display: none;
}

/* removed */
.avv-container.hide-tracking-changes q-insert, .avv-container.hide-tracking-changes [data-tc="insert"], .avv-container.hide-tracking-changes [data-tc="insert"]::before {
  color: initial;
  text-decoration: initial;
}

/* removed */
.avv-container.hide-tracking-changes [nl-insert]::before, .avv-container.hide-tracking-changes [nl-delete]::before {
  display: none;
}

/* removed */
.avv-container.hide-tagged-clauses avv-clause:not(.highlight):hover:before, .avv-container.hide-tagged-clauses avv-clause:not(.highlight):hover:after {
  opacity: 0;
}/* removed */
.avv-editor.avv-theme-nego {
  /** --- avv-repeater --- */
}

/* removed */
.avv-editor.avv-theme-nego avv-if, .avv-editor.avv-theme-nego avv-condition, .avv-editor.avv-theme-nego tr[data-repeater-id], .avv-editor.avv-theme-nego avv-clause,
.avv-editor.avv-theme-nego avv-separator {
  border: initial !important;
  background-color: initial !important;
}

/* removed */
.avv-editor.avv-theme-nego avv-separe {
  color: black;
  border: none;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/* removed */
.avv-editor.avv-theme-nego avv-repeater, .avv-editor.avv-theme-nego avv-repeater-1, .avv-editor.avv-theme-nego avv-repeater-2, .avv-editor.avv-theme-nego avv-repeater-3, .avv-editor.avv-theme-nego avv-repeater-4, .avv-editor.avv-theme-nego avv-repeater-5 {
  background-color: initial !important;
  border: none !important;
}

/* removed */
.avv-editor.avv-theme-nego avv-repeater > *, .avv-editor.avv-theme-nego avv-repeater-1 > *, .avv-editor.avv-theme-nego avv-repeater-2 > *, .avv-editor.avv-theme-nego avv-repeater-3 > *, .avv-editor.avv-theme-nego avv-repeater-4 > *, .avv-editor.avv-theme-nego avv-repeater-5 > * {
  margin: 0;
}

/* removed */
.avv-editor.avv-theme-nego avv-repeater:before, .avv-editor.avv-theme-nego avv-repeater-1:before, .avv-editor.avv-theme-nego avv-repeater-2:before, .avv-editor.avv-theme-nego avv-repeater-3:before, .avv-editor.avv-theme-nego avv-repeater-4:before, .avv-editor.avv-theme-nego avv-repeater-5:before {
  border: none !important;
  background-color: initial !important;
  display: none;
  content: none;
}

/* removed */
.avv-editor.avv-theme-nego * > avv-repeater {
  margin: 0;
}

/* removed */
.avv-editor.avv-theme-nego * > avv-repeater::before {
  display: none;
}/* removed */
.counterparty .avv-editor .avv-container-wrap avv-placeholder {
  background-color: transparent !important;
  border: none !important;
}/* removed */
.a-ripple {
  position: absolute;
  top: 0;
  left: 0 /* removed */;
  width: 100%;
  height: 100%;
  color: inherit;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

/* removed */
.a-ripple__inner {
  position: absolute;
  top: 0;
  left: 0 /* removed */;
  opacity: 0;
  color: inherit;
  border-radius: 50%;
  background: currentColor;
  pointer-events: none;
  will-change: transform, opacity;
}

/* removed */
.a-ripple__inner--enter {
  transition: transform 0.225s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* removed */
.a-ripple__inner--leave {
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* removed */
\:root {
  --a-transition-duration: .3s;
}

/* removed */
.a-transition--slide-right-enter-active, .a-transition--slide-right-leave-active, .a-transition--slide-left-enter-active, .a-transition--slide-left-leave-active, .a-transition--slide-up-enter-active, .a-transition--slide-up-leave-active, .a-transition--slide-down-enter-active, .a-transition--slide-down-leave-active, .a-transition--jump-right-enter-active, .a-transition--jump-right-leave-active, .a-transition--jump-left-enter-active, .a-transition--jump-left-leave-active, .a-transition--jump-up-enter-active, .a-transition--jump-up-leave-active, .a-transition--jump-down-enter-active, .a-transition--jump-down-leave-active, .a-transition--fade-enter-active, .a-transition--fade-leave-active, .a-transition--scale-enter-active, .a-transition--scale-leave-active, .a-transition--rotate-enter-active, .a-transition--rotate-leave-active, .a-transition--flip-enter-active, .a-transition--flip-leave-active {
  --a-transition-duration: .3s;
  --a-transition-easing: cubic-bezier(0.215,0.61,0.355,1);
}

/* removed */
.a-transition--slide-right-leave-active, .a-transition--slide-left-leave-active, .a-transition--slide-up-leave-active, .a-transition--slide-down-leave-active, .a-transition--jump-right-leave-active, .a-transition--jump-left-leave-active, .a-transition--jump-up-leave-active, .a-transition--jump-down-leave-active, .a-transition--fade-leave-active, .a-transition--scale-leave-active, .a-transition--rotate-leave-active, .a-transition--flip-leave-active {
  position: absolute;
}

/* removed */
.a-transition--slide-right-enter-active, .a-transition--slide-right-leave-active, .a-transition--slide-left-enter-active, .a-transition--slide-left-leave-active, .a-transition--slide-up-enter-active, .a-transition--slide-up-leave-active, .a-transition--slide-down-enter-active, .a-transition--slide-down-leave-active {
  transition: transform var(--a-transition-duration) var(--a-transition-easing);
}

/* removed */
.a-transition--slide-right-enter-from {
  transform: translate3d(-100%, 0, 0);
}

/* removed */
.a-transition--slide-right-leave-to {
  transform: translate3d(100%, 0, 0);
}

/* removed */
.a-transition--slide-left-enter-from {
  transform: translate3d(100%, 0, 0);
}

/* removed */
.a-transition--slide-left-leave-to {
  transform: translate3d(-100%, 0, 0);
}

/* removed */
.a-transition--slide-up-enter-from {
  transform: translate3d(0, 100%, 0);
}

/* removed */
.a-transition--slide-up-leave-to {
  transform: translate3d(0, -100%, 0);
}

/* removed */
.a-transition--slide-down-enter-from {
  transform: translate3d(0, -100%, 0);
}

/* removed */
.a-transition--slide-down-leave-to {
  transform: translate3d(0, 100%, 0);
}

/* removed */
.a-transition--jump-right-enter-active, .a-transition--jump-right-leave-active, .a-transition--jump-left-enter-active, .a-transition--jump-left-leave-active, .a-transition--jump-up-enter-active, .a-transition--jump-up-leave-active, .a-transition--jump-down-enter-active, .a-transition--jump-down-leave-active {
  transition: opacity var(--a-transition-duration), transform var(--a-transition-duration);
}

/* removed */
.a-transition--jump-right-enter-from, .a-transition--jump-right-leave-to, .a-transition--jump-left-enter-from, .a-transition--jump-left-leave-to, .a-transition--jump-up-enter-from, .a-transition--jump-up-leave-to, .a-transition--jump-down-enter-from, .a-transition--jump-down-leave-to {
  opacity: 0;
}

/* removed */
.a-transition--jump-right-enter-from {
  transform: translate3d(-15px, 0, 0);
}

/* removed */
.a-transition--jump-right-leave-to {
  transform: translate3d(15px, 0, 0);
}

/* removed */
.a-transition--jump-left-enter-from {
  transform: translate3d(15px, 0, 0);
}

/* removed */
.a-transition--jump-left-leave-to {
  transform: translateX(-15px);
}

/* removed */
.a-transition--jump-up-enter-from {
  transform: translate3d(0, 15px, 0);
}

/* removed */
.a-transition--jump-up-leave-to {
  transform: translate3d(0, -15px, 0);
}

/* removed */
.a-transition--jump-down-enter-from {
  transform: translate3d(0, -15px, 0);
}

/* removed */
.a-transition--jump-down-leave-to {
  transform: translate3d(0, 15px, 0);
}

/* removed */
.a-transition--fade-enter-active, .a-transition--fade-leave-active {
  transition: opacity var(--a-transition-duration) ease-out;
}

/* removed */
.a-transition--fade-enter-from, .a-transition--fade-leave-to {
  opacity: 0;
}

/* removed */
.a-transition--scale-enter-active, .a-transition--scale-leave-active {
  transition: opacity var(--a-transition-duration), transform var(--a-transition-duration) var(--a-transition-easing);
}

/* removed */
.a-transition--scale-enter-from, .a-transition--scale-leave-to {
  opacity: 0;
  transform: scale3d(0, 0, 1);
}

/* removed */
.a-transition--rotate-enter-active, .a-transition--rotate-leave-active {
  transition: opacity var(--a-transition-duration), transform var(--a-transition-duration) var(--a-transition-easing);
  transform-style: preserve-3d;
}

/* removed */
.a-transition--rotate-enter-from, .a-transition--rotate-leave-to {
  opacity: 0;
  transform: scale3d(0, 0, 1) rotate3d(0, 0, 1, 90deg);
}

/* removed */
.a-transition--flip-right-enter-active, .a-transition--flip-right-leave-active, .a-transition--flip-left-enter-active, .a-transition--flip-left-leave-active, .a-transition--flip-up-enter-active, .a-transition--flip-up-leave-active, .a-transition--flip-down-enter-active, .a-transition--flip-down-leave-active {
  transition: transform var(--a-transition-duration);
  backface-visibility: hidden;
}

/* removed */
.a-transition--flip-right-enter-to, .a-transition--flip-right-leave-from, .a-transition--flip-left-enter-to, .a-transition--flip-left-leave-from, .a-transition--flip-up-enter-to, .a-transition--flip-up-leave-from, .a-transition--flip-down-enter-to, .a-transition--flip-down-leave-from {
  transform: perspective(400px) rotate3d(1, 1, 0, 0deg);
}

/* removed */
.a-transition--flip-right-enter-from {
  transform: perspective(400px) rotate3d(0, 1, 0, -180deg);
}

/* removed */
.a-transition--flip-right-leave-to {
  transform: perspective(400px) rotate3d(0, 1, 0, 180deg);
}

/* removed */
.a-transition--flip-left-enter-from {
  transform: perspective(400px) rotate3d(0, 1, 0, 180deg);
}

/* removed */
.a-transition--flip-left-leave-to {
  transform: perspective(400px) rotate3d(0, 1, 0, -180deg);
}

/* removed */
.a-transition--flip-up-enter-from {
  transform: perspective(400px) rotate3d(1, 0, 0, -180deg);
}

/* removed */
.a-transition--flip-up-leave-to {
  transform: perspective(400px) rotate3d(1, 0, 0, 180deg);
}

/* removed */
.a-transition--flip-down-enter-from {
  transform: perspective(400px) rotate3d(1, 0, 0, 180deg);
}

/* removed */
.a-transition--flip-down-leave-to {
  transform: perspective(400px) rotate3d(1, 0, 0, -180deg);
}/* removed */
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* removed */
a:focus-visible, button:focus-visible, input[type=submit]:focus-visible {
  outline: solid 1px black;
}

/* removed */
input[type="checkbox"]:focus + .checkbox-material .check {
  border: 2px solid var(--avv-primary--color);
}

/* removed */
*[title]:not(.no-position) {
  position: relative;
}

/* removed */
[data-whatintent='keyboard'] *[title]:focus:after {
  content: attr(title);
  position: absolute;
  top: 100%;
  left: 10px;
  background-color: black;
  color: white;
  border-radius: 10px;
  padding: 10px;
}/* removed */
.participant_row {
  margin-top: 10px;
}

/* removed */
.participant_row .info-row {
  display: flex;
  justify-content: flex-start;
}

/* removed */
.participant_row .info-row .row-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 31%;
  margin-right: 20px;
}

/* removed */
.participant_row .info-row .row-item.actions {
  justify-content: right;
  align-items: center;
  margin-right: 0;
  width: 7%;
}

/* removed */
.participant_row .info-row .row-item input {
  margin-left: 10px;
  width: 100%;
}

/* removed */
.participant_row .info-row .row-item .role-select {
  margin-left: 10px;
}

/* removed */
.add-user.avv-button.secondary {
  text-decoration: none;
  margin-top: 20px;
}

/* removed */
.add-user.avv-button.secondary i {
  margin-right: 4px;
}

/* removed */
.remove-transform {
  transform: rotate(45deg);
  color: red !important;
  fill: red;
}/* removed */
.tab-content > #advanced.tab-pane {
  background-color: var(--avv-tab-background--color);
}

/* removed */
.tab-content > #advanced.tab-pane .page-section {
  margin: 25px auto;
  background-color: white;
  width: 774px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group {
  display: block;
  line-height: 1.5;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group > * {
  box-sizing: border-box;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group.disabled {
  color: #545454;
  background-color: #f6f6f6;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group.disabled > * {
  cursor: not-allowed;
  color: #545454;
  background-color: #f6f6f6;
  user-select: none;
  pointer-events: none;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: .875rem;
  color: #2e2e2e;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group.text_field input {
  display: block;
  margin: 0;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: .875rem;
  width: 100%;
  height: 34px;
  overflow: visible;
  font-weight: 400;
  color: #2e2e2e;
  border: 1px solid #dfdfdf;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group .help-text {
  display: block;
  color: #919191;
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group.check_box label {
  margin-bottom: 0.25rem;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group.check_box input {
  width: auto;
  display: inline-block;
  height: auto;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group.check_box .help-text {
  display: inline-block;
  height: auto;
  margin: 0;
}

/* removed */
.tab-content > #advanced.tab-pane .form-group .checkbox label {
  font-weight: 400;
  color: #919191;
}

/* removed */
.tab-content > #advanced.tab-pane .pdf-margin {
  display: flex;
  flex-direction: row;
}

/* removed */
.tab-content > #advanced.tab-pane .pdf-margin .form-group {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(1, 1fr);
}

/* removed */
.tab-content > #advanced.tab-pane .pdf-margin .form-group .input-wrapper {
  min-width: 0;
}

/* removed */
.tab-content > #advanced.tab-pane .pdf-margin .form-group .input-wrapper input {
  width: 90%;
}

/* removed */
.tab-content > #advanced.tab-pane .pdf-margin label {
  margin: 0px;
}

/* removed */
.tab-content > #advanced.tab-pane .pdf-margin input[type='number'] {
  margin: 5px;
  margin-left: 0px;
}

/* removed */
.tab-content > #advanced.tab-pane .webhooks-settings--row .form-group {
  display: grid;
  grid-template-columns: 40% 10% 40% 10%;
  grid-template-rows: 1fr;
}

/* removed */
.tab-content > #advanced.tab-pane .webhooks-settings--row .form-group div {
  width: 100%;
  display: grid;
  place-items: center;
}

/* removed */
.tab-content > #advanced.tab-pane .webhooks-settings--row .form-group div input, .tab-content > #advanced.tab-pane .webhooks-settings--row .form-group div select {
  width: 90%;
}

/* removed */
.tab-content > #advanced.tab-pane .webhooks-settings--row .form-group div i {
  color: red;
  cursor: pointer;
}

/* removed */
.tab-content > #advanced.tab-pane .avv-desc {
  padding-top: 15px;
}

/* removed */
.tab-content > #advanced.tab-pane .avv-desc .dynamic-label {
  background-color: var(--avv-primary--color);
  color: white;
  padding: 5px;
}/* removed */
.alert {
  display: block;
  min-height: 42px;
  border-radius: 2px;
  padding: 10px;
  margin: 10px;
}

/* removed */
.alert.alert-danger {
  border-left: var(--avv-alert-border-style);
  background-color: var(--avv-alert-background-color);
}

/* removed */
.alert ul {
  list-style-type: decimal;
  margin: 0;
  padding: 0 16px;
}

/* removed */
.alert ul li {
  margin: 0;
  padding: 0;
}/* removed */
.avv-toast-container {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 25px;
  bottom: 35px;
  gap: 1em;
  z-index: 1003;
}

/* removed */
.avv-toast-container > .avv-toast {
  display: flex;
  align-items: center;
  height: 3em;
  width: fit-content;
  color: var(--avv-toast-foreground-color, var(--avv-toast-default-color));
  background-color: var(--avv-toast-background-color, var(--avv-toast-background-color));
  border-radius: 5px;
  opacity: 0;
  transition: ease-in-out opacity 0.5s;
}

/* removed */
.avv-toast-container > .avv-toast[data-type="loading"] > .avv-toast-icon > i {
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
}

/* removed */
.avv-toast-container > .avv-toast[data-type="success"] {
  --avv-toast-foreground-color: var(--avv-toast-success-color);
}

/* removed */
.avv-toast-container > .avv-toast.with-inverted-colors[data-type="success"] {
  --avv-toast-background-color: var(--avv-toast-success-color);
}

/* removed */
.avv-toast-container > .avv-toast[data-type="warning"] {
  --avv-toast-foreground-color: var(--avv-toast-warning-color);
}

/* removed */
.avv-toast-container > .avv-toast.with-inverted-colors[data-type="warning"] {
  --avv-toast-background-color: var(--avv-toast-warning-color);
}

/* removed */
.avv-toast-container > .avv-toast[data-type="error"] {
  --avv-toast-foreground-color: var(--avv-toast-error-color);
}

/* removed */
.avv-toast-container > .avv-toast.with-inverted-colors[data-type="error"] {
  --avv-toast-background-color: var(--avv-toast-error-color);
}

/* removed */
.avv-toast-container > .avv-toast.with-inverted-colors {
  --avv-toast-foreground-color: var(--avv-toast-inverted-color);
}

/* removed */
.avv-toast-container > .avv-toast.visible {
  opacity: 1;
}

/* removed */
.avv-toast-container > .avv-toast > .avv-toast-icon {
  width: 3em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* removed */
.avv-toast-container > .avv-toast > .avv-toast-text {
  padding-right: 1.25em;
}

/* removed */
.avv-toast-container > .avv-toast:not(.with-icon) > .avv-toast-icon {
  display: none;
}

/* removed */
.avv-toast-container > .avv-toast:not(.with-icon) > .avv-toast-text {
  padding-left: 1.25em;
}/* removed */
html, body {
  margin: 0;
  padding: 0;
}

/* removed */
html {
  font-family: 'Open Sans', sans-serif;
  height: 100%;
  width: 100%;
}

/* removed */
main {
  position: relative;
}

/* removed */
main.avv2020 {
  position: static;
  display: grid;
  grid-template-rows: 1fr;
  height: 100vh;
  overflow-y: hidden;
}

/* removed */
main.avv2020.with-footer {
  grid-template-rows: 1fr var(--avv-footer-height);
}

/* removed */
main.avv2020 .grid-area-nav {
  grid-area: nav;
  overflow: hidden;
}

/* removed */
main.avv2020 .grid-area-content {
  grid-area: content;
}

/* removed */
main.avv2020 .grid-area-footer {
  grid-area: footer;
}

/* removed */
main.avv2020.collapsed-sidebar:not(.second-sidebar) {
  grid-template-columns: 64px 78px calc(100% - 78px - 64px);
}

/* removed */
main.avv2020.collapsed-sidebar.second-sidebar {
  grid-template-columns: 64px 78px 15% calc(100% - 15% - 78px - 64px);
}

/* removed */
main.avv2020.collapsed-second-sidebar:not(.collapsed-sidebar) {
  grid-template-columns: 64px Min(350px, 15%) 78px calc(100% - Min(350px, 15%) - 78px - 64px);
}

/* removed */
main.avv2020.collapsed-second-sidebar.collapsed-sidebar {
  grid-template-columns: 64px 78px 78px calc(100% - 78px - 78px - 64px);
}

/* removed */
main.avv2020:not(.second-sidebar) {
  grid-template-areas: "nav sidebar content";
  grid-template-columns: 64px Min(350px, 15%) calc(100% - Min(350px, 15%) - 64px);
}

/* removed */
main.avv2020.with-footer:not(.second-sidebar) {
  grid-template-areas: "nav sidebar content" "nav footer footer";
}

/* removed */
main.second-sidebar {
  grid-template-areas: "nav sidebar sec-sidebar content";
  grid-template-columns: 64px Min(350px, 15%) 15% calc(85% - Min(350px, 15%) - 64px);
}

/* removed */
main.second-sidebar.with-footer {
  grid-template-areas: "nav sidebar sec-sidebar content" "nav footer footer footer";
}

/* removed */
button:not(.cursor-custom):not([disabled]), [role="button"]:not(.cursor-custom):not([disabled]) {
  cursor: pointer;
}

/* removed */
.editors.multiple-editors {
  display: flex;
  justify-content: space-around;
}

/* removed */
.editors.multiple-editors #editor.multiple-editors, .editors.multiple-editors #compare.multiple-editors {
  width: 50%;
  position: static;
}/* removed */
:root {
  --avv-toolbar-primary--color: var(--avv-primary--color);
  --avv-toolbar-secondary--color: var(--avv-primary-text--color);
}

/* removed */
.avv-primary-bg-toolbar-color {
  background-color: var(--avv-toolbar-primary--color);
}

/* removed */
.avv-secondary-bg-toolbar-color {
  background-color: var(--avv-toolbar-secondary--color);
}

/* removed */
.avv-primary-toolbar-text {
  color: var(--avv-toolbar-primary--color);
}

/* removed */
.avv-secondary-toolbar-text {
  color: var(--avv-toolbar-secondary--color);
}

/* removed */
.avv-primary-toolbar-border {
  border-color: var(--avv-toolbar-primary--color);
}/* removed */
:root {
  --avv-sidebar-background--color: #edf3fd;
  --avv-sidebar-border--color: var(--avv-sidebar-background--color);
  --avv-sidebar-text--color: #424f63;
  --avv-second-sidebar-text--color: var(--avv-second-sidebar-text--color);
}

/* removed */
.avv-sidebar-text {
  color: var(--avv-sidebar-text--color);
  fill: var(--avv-sidebar-text--color);
}

/* removed */
.avv-second-sidebar-text {
  color: var(--avv-second-sidebar-text--color);
  fill: var(--avv-second-sidebar-text--color);
}/* removed */
#sidebar-wrap {
  grid-area: sidebar;
  background-color: var(--avv-sidebar-background--color);
}

/* removed */
#second-sidebar-wrap {
  grid-area: sec-sidebar;
  background-color: white;
}

/* removed */
#sidebar:not(.second-sidebar) {
  border-color: var(--avv-sidebar-border--color);
}

/* removed */
#sidebar {
  transition: all 0.5s ease-in-out;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* removed */
#sidebar .sidebar_tab {
  transition: all .5s ease-in-out;
}

@keyframes animateOpen {
  0% {
    justify-content: left;
  }
  100% {
    justify-content: space-between;
  }
}

@keyframes animateCollapse {
  0% {
    justify-content: space-between;
  }
  100% {
    justify-content: center;
  }
}

/* removed */
#sidebar .sidebar_tab .animation-open {
  animation-name: animateOpen;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

/* removed */
#sidebar .sidebar_tab .animation-collapse {
  animation-name: animateCollapse;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

/* removed */
#sidebar .sidebar_tab .tab-header {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* removed */
#sidebar .sidebar_tab .tab-header i {
  transition: all .5s ease-in-out;
}

/* removed */
#sidebar .sidebar_tab .tab-header i.opened {
  transform: rotate(180deg);
}

/* removed */
#sidebar .sidebar_tab .tab-content {
  transition: all 0.5s ease-in-out;
}/* removed */
.dashboard, .dashboard > div {
  min-height: 100%;
  display: flex;
  justify-content: center;
}

/* removed */
.dashboard {
  float: left;
  position: relative;
}

/* removed */
#graph_overview2 {
  height: 80%;
}

/* removed */
#graph_overview2 ~ .percentage {
  position: absolute;
  height: 40px;
  width: 80px;
  border: 1px solid #eee;
  text-align: center;
  vertical-align: center;
  line-height: 40px;
  margin-top: 12px;
}

/* removed */
#graph_overview2 ~ .percentage .up {
  color: green;
}

/* removed */
#graph_overview2 ~ .percentage .down {
  color: red;
}

/* removed */
#graph_overview2 ~ .percentage:nth-child(2) {
  margin-left: 6.8%;
}

/* removed */
#graph_overview2 ~ .percentage:nth-child(3) {
  margin-left: 16.6%;
}

/* removed */
#graph_overview2 ~ .percentage:nth-child(4) {
  margin-left: 26.2%;
}

/* removed */
.two-graphs {
  margin-top: 50px;
  width: 80%;
}

/* removed */
.two-graphs > div {
  width: 45%;
  min-height: 400px;
  max-height: 50%;
  display: inline-block;
  border: 1px solid #eee;
}

/* removed */
.two-graphs > div:first-child {
  margin-right: 20px;
}

/* removed */
.two-graphs > div:last-child {
  margin-left: 20px;
}

/* removed */
.two-graphs > div > div {
  width: 98%;
  height: 98%;
}

/* removed */
.two-graphs .highcharts-data-table {
  margin-top: 50px;
}

/* removed */
.two-graphs .highcharts-data-table.custom {
  position: relative;
  top: 72px;
}/* removed */
#diagnostics-tab-main-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--avv-tab-background--color);
  padding: 10px;
}

/* removed */
#diagnostics-tab-main-wrapper .diagnostics-scan-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* removed */
#diagnostics-tab-main-wrapper .page-section {
  background-color: white;
  border: 1px solid var(--avv-border--color);
  padding: 15px;
  border-radius: 5px;
}

/* removed */
#diagnostics-tab-main-wrapper .page-section .avv-button:not(.avv-checkbox) {
  margin-left: 10px;
  margin-top: 10px;
}

/* removed */
#diagnostics-tab-main-wrapper .option .option-label {
  margin-left: 10px;
}

/* removed */
#diagnostics-tab-main-wrapper .option .option-checkbox {
  display: flex;
  align-items: center;
}

/* removed */
#diagnostics-tab-main-wrapper .result-display {
  margin-top: 20px;
}

/* removed */
#diagnostics-tab-main-wrapper .result-display table {
  margin: 20px 0;
}/* removed */
.avv_dialog-wrapper:not(.hidden) {
  display: flex;
}

/* removed */
.avv_dialog-wrapper:not(.no-z) {
  z-index: 5000;
}

/* removed */
.avv_dialog-wrapper {
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
}

/* removed */
.avv_dialog-wrapper.hide, .avv_dialog-wrapper .hide {
  display: none;
}

/* removed */
.avv_dialog-wrapper:not(.no-backdrop) {
  /*
    New backdrop theme
  */
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1002;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* removed */
.avv_dialog, .avv_dialog--alert, .avv_dialog--upload, .avv_dialog--logout, .avv_dialog--confirm:not(.square) {
  background-color: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  padding: 20px;
  max-width: 1000px;
  max-height: 100%;
  border-radius: 16px;
}

/* removed */
.avv_dialog .title, .avv_dialog--alert .title, .avv_dialog--upload .title, .avv_dialog--logout .title, .avv_dialog--confirm:not(.square) .title {
  font-size: 20px;
  margin: 0 0 1rem 0;
  padding: 0;
}

/* removed */
.avv_dialog .message, .avv_dialog--alert .message, .avv_dialog--upload .message, .avv_dialog--logout .message, .avv_dialog--confirm:not(.square) .message {
  font-size: 16px;
  margin: 0.5rem 0;
  padding: 0;
}

/* removed */
.avv_dialog li.clickable:hover, .avv_dialog--alert li.clickable:hover, .avv_dialog--upload li.clickable:hover, .avv_dialog--logout li.clickable:hover, .avv_dialog--confirm:not(.square) li.clickable:hover {
  cursor: pointer;
  color: var(--avv-primary--color);
}

/* removed */
.avv_dialog.avv-bg {
  background-color: var(--avv-bg--color);
}

/* removed */
.avv_dialog--upload .upload {
  height: 300px;
  border-radius: 16px;
  background-color: #f2f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  cursor: pointer;
  user-select: none;
  border: 2px solid var(--avv-primary--color);
  color: var(--avv-primary-hover--color);
  font-family: "Roboto", serif;
  font-weight: 400;
  min-width: 450px;
}

/* removed */
.avv_dialog--upload .upload > * {
  pointer-events: none;
}

/* removed */
.avv_dialog--upload .upload i {
  display: flex;
  justify-content: center;
  font-size: 80px;
}

/* removed */
.avv_dialog--upload .upload .spinner {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  transform: scale(0.7);
  transition: opacity 300ms;
}

/* removed */
.avv_dialog--upload .upload .spinner.remove {
  opacity: 0;
}

@keyframes rotate-left {
  60%, 75%, 100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-right {
  0%, 25%, 45% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* removed */
.avv_dialog--upload .upload .spinner .spinner-wrapper {
  position: relative;
  width: 4em;
  height: 4em;
  border-radius: 100%;
  left: calc(50% - 2em);
}

/* removed */
.avv_dialog--upload .upload .spinner .spinner-wrapper:after {
  content: "";
  background: #f2f7ff;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  position: absolute;
  top: 0.5em;
  left: 0.5em;
}

/* removed */
.avv_dialog--upload .upload .spinner .spinner-wrapper .rotator {
  position: relative;
  width: 4em;
  border-radius: 4em;
  overflow: hidden;
  animation: rotate 2000ms infinite linear;
}

/* removed */
.avv_dialog--upload .upload .spinner .spinner-wrapper .rotator:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--avv-primary--color);
  border: 3px solid #fff;
  border-radius: 100%;
}

/* removed */
.avv_dialog--upload .upload .spinner .spinner-wrapper .rotator .inner-spin {
  background: #f2f7ff;
  height: 4em;
  width: 2em;
  animation: rotate-left 2500ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
  border-radius: 2em 0 0 2em;
  transform-origin: 2em 2em;
}

/* removed */
.avv_dialog--upload .upload .spinner .spinner-wrapper .rotator .inner-spin:last-child {
  animation: rotate-right 2500ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
  margin-top: -4em;
  border-radius: 0 2em 2em 0;
  float: right;
  transform-origin: 0 50%;
}

/* removed */
.avv_dialog--snackbar {
  background-color: var(--avv-toast-background-color);
  border-radius: 5px;
  position: absolute;
  left: 10px;
  bottom: 30px;
  width: fit-content;
  display: grid;
  place-items: center;
  padding: 10px 20px;
  margin: 10px;
  z-index: 1001;
}

/* removed */
.avv_dialog--snackbar .snack-message {
  margin-bottom: 0;
}

/* removed */
.avv_dialog--snackbar * {
  color: var(--avv-toast-default-color);
}

/* removed */
.avv_dialog--snackbar.success {
  background-color: var(--avv-toast-success-color);
}

/* removed */
.avv_dialog--snackbar.alert {
  background-color: var(--avv-toast-warning-color);
}

/* removed */
.avv_dialog--snackbar.error {
  background-color: var(--avv-toast-error-color);
}/* removed */
.label-created {
  border: 1px solid var(--avv-gray-80--color);
}

/* removed */
.label-unlocked {
  border: 1px solid var(--avv-orange-80--color);
}

/* removed */
.label-locked {
  border: 1px solid var(--avv-blue-80--color);
}

/* removed */
.label-deleted {
  border: 1px solid var(--avv-gray-blue-80--color);
}

/* removed */
.label-pending_external_signature {
  border: 1px solid var(--avv-brown-40--color);
}

/* removed */
.label-completed {
  border: 1px solid var(--avv-green-80--color);
}

/* removed */
.label-partially_signed {
  border: 1px solid var(--avv-brown-40--color);
}

/* removed */
.label-signed {
  border: 1px solid var(--avv-green-100--color);
}

/* removed */
.label-ready_to_sign {
  border: 1px solid var(--avv-brown-80--color);
}

/* removed */
.label-state {
  color: black;
  border-radius: 3px;
  font-weight: normal;
  width: fit-content;
  padding: 4px;
  font-size: 10px;
  margin-right: 2px;
}

/* removed */
.label-state-info {
  border: 1px solid var(--avv-purple-80--color);
  border-radius: 3px;
  font-weight: normal;
}

/* removed */
.label-state-info-locked {
  border: 1px solid var(--avv-red-80--color);
  border-radius: 3px;
  font-weight: normal;
}@tailwind base;
@tailwind components;
@tailwind utilities;
/* removed */
.dropdown .dropdown-menu:not(.no-left-m) {
  margin-left: -58px;
}

/* removed */
.dropdown .dropdown-menu:not(.no-h) {
  height: fit-content;
}

/* removed */
.dropdown .dropdown-menu:not(.hidden) {
  display: none;
}

/* removed */
.dropdown .dropdown-menu {
  z-index: 1000;
  position: absolute;
  top: 40px;
  background-color: #fff;
  color: #000;
  border-radius: 3px;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* removed */
.dropdown .dropdown-menu.sm {
  min-width: 150px;
}

/* removed */
.dropdown .dropdown-menu.md {
  min-width: 200px;
}

/* removed */
.dropdown .dropdown-menu a:not(.avv-button), .dropdown .dropdown-menu button:not(.avv-button), .dropdown .dropdown-menu label.dropdown-item:not(.avv-button) {
  border-radius: 4px;
  padding: 10px;
  font-weight: 400;
  display: flex;
  text-decoration: none;
  width: 100%;
}

/* removed */
.dropdown .dropdown-menu a:not(.avv-button) span, .dropdown .dropdown-menu a:not(.avv-button) i, .dropdown .dropdown-menu button:not(.avv-button) span, .dropdown .dropdown-menu button:not(.avv-button) i, .dropdown .dropdown-menu label.dropdown-item:not(.avv-button) span, .dropdown .dropdown-menu label.dropdown-item:not(.avv-button) i {
  align-self: center;
}

/* removed */
.dropdown .dropdown-menu a:not(.avv-button):hover:not(.avv-danger-color):not(.no-hover), .dropdown .dropdown-menu a.clicked:not(.avv-button):not(.avv-danger-color), .dropdown .dropdown-menu button:not(.avv-button):hover:not(.avv-danger-color):not(.no-hover), .dropdown .dropdown-menu button.clicked:not(.avv-button):not(.avv-danger-color), .dropdown .dropdown-menu label.dropdown-item:not(.avv-button):hover:not(.avv-danger-color):not(.no-hover), .dropdown .dropdown-menu label.dropdown-item.clicked:not(.avv-button):not(.avv-danger-color) {
  color: var(--avv-primary--color);
  background-color: #ebebeb;
}

/* removed */
.dropdown .dropdown-menu label.dropdown-item:not(.avv-button) {
  cursor: pointer;
}

/* removed */
.dropdown .dropdown-menu li:first-child {
  border-radius: 3px 3px 0px 0px;
}

/* removed */
.dropdown .dropdown-menu li:last-child {
  border-radius: 0px 0px 3px 3px;
}

/* removed */
.dropdown .dropdown-menu li {
  list-style-type: none;
  display: flex;
}

/* removed */
.dropdown .dropdown-menu li:hover:not(.no-hover) {
  background-color: #ebebeb;
  cursor: pointer;
  color: var(--avv-primary--color);
}/* removed */
.main-row {
  background-color: var(--avv-tab-background--color);
}.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
          animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
          box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /* removed */
/*
      */
  left: 0;
/*
      /* removed */
/*
      */
}
/*
      /* removed */
/*
      /* removed */
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /* removed */
/*
      */
  right: 0;
/*
      /* removed */
/*
      */
}
/*
      /* removed */
/*
      /* removed */
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57,57,57,0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57,57,57,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57,57,57,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0,0,0,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0,0,0,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
          box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
      -ms-flex-preferred-size: 14.2857143%;
          flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
          box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57,57,57,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57,57,57,0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
          box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
          box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57,57,57,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}/* removed */
.highcharts-data-table table {
  border-collapse: collapse;
  width: 100%;
}

/* removed */
.highcharts-data-table table td, .highcharts-data-table table th {
  border: 1px solid #ddd;
  padding: 8px;
}

/* removed */
.highcharts-data-table table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* removed */
.highcharts-data-table table tr:hover {
  background-color: #ddd;
}

/* removed */
.highcharts-data-table table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--avv-primary--color);
  color: white;
}/*@font-face {
  font-family: 'Journal';
  src: url(/fonts/journal.eot);
  src: url(/fonts/journal.eot?#iefix) format('embedded-opentype'),
       url(/fonts/journal.woff) format('woff'),
       url(/fonts/journal.ttf) format('truetype'),
       url(/fonts/journal.svg#JournalRegular) format('svg');
  font-weight: normal;
  font-style: normal;
}*/

@font-face {
  font-family: 'Journal';
  src: url(/fonts/journal.eot);
  src: url(/fonts/journal.eot?#iefix) format('embedded-opentype'),
       url(/fonts/journal.woff) format('woff'),
       url(/fonts/journal.ttf) format('truetype'),
       url(/fonts/journal.svg#JournalRegular) format('svg');
  font-weight: normal;
  font-style: normal;
}

.sigPad {
  margin: 0;
  padding: 0;
  /* removed */
}

.sigPad label {
  display: block;
  margin: 0 0 0.515em;
  padding: 0;

  color: #000;
  /* removed */
}

.sigPad label.error {
  color: #f33;
}

#name, #title {
  width: 198px;
}

.sigPad input.error {
  border-color: #f33;
}

/*.sigPad button {
  margin: 1em 0 0 0;
  padding: 0.6em 0.6em 0.7em;

  background-color: #ccc;
  border: 0;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;

  cursor: pointer;

  color: #555;
  font: bold 1em/1.375 sans-serif;
  text-align: left;
}

.sigPad button:hover {
  background-color: #333;

  color: #fff;
}*/

.sig {
  display: none;
}

.sigNav {
  display: none;
  height: 2.25em;
  margin: 0;
  padding: 0;
  position: relative;

  list-style-type: none;
}

.sigNav li {
  display: inline;
  float: left;
  margin: 0;
  padding: 0;
}

.sigNav a,
.sigNav a:link,
.sigNav a:visited {
  display: block;
  margin: 0;
  padding: 0 0.6em;

  border: 0;

  color: #333;
  font-weight: bold;
  line-height: 2.25em;
  text-decoration: underline;
}

.sigNav a.current,
.sigNav a.current:link,
.sigNav a.current:visited {
  background-color: #666;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  border-radius: 8px 8px 0 0;

  color: #fff;
  text-decoration: none;
}

.sigNav .typeIt a.current,
.sigNav .typeIt a.current:link,
.sigNav .typeIt a.current:visited {
  background-color: #ccc;

  color: #555;
}

.sigNav .clearButton {
  bottom: 0.2em;
  display: none;
  /* removed */
  /* removed */
  font-size: 0.75em;
  line-height: 1.375;
}

.sigWrapper {
  width: 200px;
  clear: both;
  height: 55px;
}

.sigWrapper.current {
  border-color: #666;
}

.signed .sigWrapper {
  border: 0;
}

.pad {
  position: relative;

  -ms-touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.typed {
  height: 55px;
  margin: 0;
  padding: 0 5px;
  position: absolute;
  z-index: 90;

  cursor: default;

  color: #145394;
  font: normal 1.875em/50px "Journal",Georgia,Times,serif;
}

.typeItDesc,
.drawItDesc {
  display: none;
  margin: 0.75em 0 0.515em;
  padding: 0.515em 0 0;

  border-top: 3px solid #ccc;

  color: #000;
  font: italic normal 1em/1.375 Georgia,Times,serif;
}

p.error {
  display: block;
  margin: 0.5em 0;
  padding: 0.4em;

  background-color: #f33;

  color: #fff;
  font-weight: bold;
}

/*
 * Signature strip styling
 */

.document-signature {
    border-bottom: 1px dotted #ccc;
    font-family: 'Journal';
    /*src: url(/fonts/journal.eot);
    src: url(/fonts/journal.eot?#iefix) format('embedded-opentype'),
         url(/fonts/journal.woff) format('woff'),
         url(/fonts/journal.ttf) format('truetype'),
         url(/fonts/journal.svg#JournalRegular) format('svg');*/
    font-weight: normal;
    font-style: normal;
    margin: 10px 0;
    max-width: 200px;
    max-height: 55px;
    font: normal 1.875em/50px "Journal",Georgia,Times,serif;
}

.toolbar-signature {
  font-family: 'Journal';
  /*src: url(/fonts/journal.eot);
  src: url(/fonts/journal.eot?#iefix) format('embedded-opentype'),
       url(/fonts/journal.woff) format('woff'),
       url(/fonts/journal.ttf) format('truetype'),
       url(/fonts/journal.svg#JournalRegular) format('svg');*/
  font-weight: normal;
  font-style: normal;
  margin: 4px 0;
  max-width: 200px;
  max-height: 55px;
  color: #185A95;
  font: normal 1.125em/30px "Journal",Georgia,Times,serif;
}/* removed */
.loader:not(.no-size) {
  width: 11em;
  height: 11em;
}

/* removed */
.loader:not(.no-m) {
  margin: 20px auto;
}

/* removed */
.loader {
  font-size: 5px;
  text-indent: -9999em;
  border-radius: 50%;
  background: var(--avv-primary-500);
  background: -moz-linear-gradient(left, var(--avv-primary-500) 10%, rgba(0, 10, 48, 0) 42%);
  background: -webkit-linear-gradient(left, var(--avv-primary-500) 10%, rgba(0, 10, 48, 0) 42%);
  background: -o-linear-gradient(left, var(--avv-primary-500) 10%, rgba(0, 10, 48, 0) 42%);
  background: -ms-linear-gradient(left, var(--avv-primary-500) 10%, rgba(0, 10, 48, 0) 42%);
  background: linear-gradient(to right, var(--avv-primary-500) 10%, rgba(0, 10, 48, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

/* removed */
.loader:before {
  width: 50%;
  height: 50%;
  background: var(--avv-primary-500);
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

/* removed */
.loader:after {
  background: white;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* removed */
/* removed */
.loading-screen {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  background-color: var(--avv-loading-screen-bg--color);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease-in-out;
}

/* removed */
.loading-screen.no-full-screen {
  position: relative;
  background-color: var(--avv-tab-background--color);
}

/* removed */
.loading-screen.no-full-screen .loader:after {
  background: var(--avv-tab-background--color);
}

/* removed */
.loading-screen_wrapper {
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

/* removed */
.loading-screen_image {
  align-self: center;
  padding: 20px;
  height: 128px;
}

/* removed */
.loading-screen_text {
  font-weight: bold;
  font-size: 20px;
}

/* removed */
.loading-enter-active, .loading-leave-active {
  transition: opacity .5s;
}

/* removed */
.loading-enter, .loading-leave-to {
  opacity: 0;
}

/* removed */
.loading-screen_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: var(--avv-danger--color);
}

/* removed */
.loading-screen_list li {
  text-align: center;
}

/* removed */
.loading-screen_list .done {
  color: var(--avv-primary--color);
}/* removed */
.tab-content > #notes.tab-pane {
  background-color: var(--avv-tab-background--color);
}/* removed */
.tab-content > #operations.tab-pane {
  background-color: var(--avv-tab-background--color);
}/* removed */
.page-section {
  margin-right: auto;
  margin-left: auto;
  max-width: 990px;
  padding: 15px;
}

/* removed */
.page-section.ast-options {
  display: flex;
  flex-direction: column;
}

/* removed */
.page-section.ast-options .human-ast {
  padding-left: 10px;
}

/* removed */
.page-section.template-details {
  margin-top: 50px;
  padding-top: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  width: 774px;
}

/* removed */
.page-section .page-header {
  margin: 0 0 10px 0;
  font-size: 20px;
  display: block;
  line-height: 1.2;
  color: #2e2e2e;
  font-weight: 600;
}

/* removed */
.page-section .checkbox-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* removed */
.page-section .field {
  display: block;
  line-height: 1.5;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

/* removed */
.page-section .field > * {
  box-sizing: border-box;
}

/* removed */
.page-section .field.disabled {
  color: #545454;
  background-color: #f6f6f6;
}

/* removed */
.page-section .field.disabled > * {
  cursor: not-allowed;
  color: #545454;
  background-color: #f6f6f6;
  user-select: none;
  pointer-events: none;
}

/* removed */
.page-section .field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: .875rem;
  color: #2e2e2e;
}

/* removed */
.page-section .field.text_field input:not(.avv-input) {
  display: block;
  margin: 0;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: .875rem;
  width: 100%;
  height: 34px;
  overflow: visible;
  font-weight: 400;
  color: #2e2e2e;
  border: 1px solid #dfdfdf;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* removed */
.page-section .field .help-text {
  display: block;
  color: #919191;
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}

/* removed */
.page-section .field.check_box label {
  margin-bottom: 0.25rem;
}

/* removed */
.page-section .field.check_box .help-text {
  display: inline-block;
  height: auto;
  margin: 0;
}

/* removed */
.page-section hr {
  margin: 24px 0;
  border-top: 1px solid #e1e1e1;
  overflow: hidden;
  width: 100%;
}/**
  This file is used for Onboarder + Nego questionnaire content
 */
/* removed */
.questionnaire-wrapper {
  display: grid;
  grid-template-areas: "topbar" "questionnaire";
  grid-template-rows: 60px 1fr;
  grid-template-columns: 1fr;
  height: calc(100vh - var(--avv-navigation-height));
  top: var(--avv-navigation-height);
  width: 100%;
}

/* removed */
.questionnaire-wrapper.forms {
  grid-template-areas: "questionnaire";
  grid-template-rows: 1fr;
}

/* removed */
.questionnaire-wrapper.forms .q-tab-content {
  height: 80vh;
  max-height: 70% !important;
}

/* removed */
.questionnaire-wrapper.forms .toolbars {
  top: 0 !important;
}

/* removed */
.questionnaire-wrapper.info-text-modal-active {
  grid-template-areas: "topbar topbar" "questionnaire editor";
  grid-template-columns: 1fr 400px;
}

/* removed */
.questionnaire-wrapper.info-text-modal-active-expanded {
  grid-template-areas: "topbar topbar" "questionnaire editor";
  grid-template-columns: 1fr 800px;
}

/* removed */
.questionnaire-wrapper.split-view {
  grid-template-areas: "topbar topbar" "questionnaire editor";
  grid-template-columns: 1fr 804px;
}

/* removed */
.questionnaire-wrapper.split-view [id*='q-editor']:not(.hidden) {
  display: block;
}

/* removed */
.questionnaire-wrapper #questionnaire-content .q-tab-content {
  overflow-y: auto;
  height: calc(100vh - 220px);
  max-height: 70%;
  padding-bottom: 0px;
}

/* removed */
.questionnaire-wrapper #questionnaire-content .with_answers ~ .q-tab-content {
  height: calc(100vh - 287px);
}

/* removed */
.questionnaire-wrapper [id*='q-editor'] {
  display: none;
}

/* removed */
.questionnaire-wrapper #topbar {
  grid-area: topbar;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  height: 45px;
}

/* removed */
.questionnaire-wrapper .toolbars {
  top: var(--avv-navigation-height) !important;
}

/* removed */
.tab-content > #questionnaire.tab-pane {
  background-color: var(--avv-tab-background--color);
}

/* removed */
#questionnaire-content:not(.grid-area-content) {
  grid-area: questionnaire;
}

/* removed */
#questionnaire-content, #ld-questionnaire-wrapper {
  /** Highlight animations */
}

@keyframes highlight {
  0% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  30% {
    background: none;
    color: inherit;
  }
  40% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  50% {
    background: none;
    color: inherit;
  }
  60% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  70% {
    background: none;
    color: inherit;
  }
  80% {
    background: var(--avv-suggestion-light--color);
    color: #fff;
  }
  100% {
    background: none;
    color: inherit;
  }
}

/* removed */
#questionnaire-content .fade-out-highlight, #ld-questionnaire-wrapper .fade-out-highlight {
  animation: highlight var(--flashing-interval);
}

/* removed */
#questionnaire-content a, #ld-questionnaire-wrapper a {
  color: var(--avv-primary-500);
}

/* removed */
#questionnaire-content a:hover, #ld-questionnaire-wrapper a:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* removed */
#questionnaire-content .dynamic-label, #ld-questionnaire-wrapper .dynamic-label {
  background-color: var(--avv-primary--color);
  color: white;
  padding: 5px;
}

/* removed */
#questionnaire-content .questionnaire-toggle-button, #ld-questionnaire-wrapper .questionnaire-toggle-button {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions, #ld-questionnaire-wrapper .toolbars .mass-select-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin: 5px;
  justify-self: start;
  width: 100%;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions .flex-order-1, #ld-questionnaire-wrapper .toolbars .mass-select-actions .flex-order-1 {
  order: 1;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions .flex-order-2, #ld-questionnaire-wrapper .toolbars .mass-select-actions .flex-order-2 {
  order: 2;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions .flex-order-3, #ld-questionnaire-wrapper .toolbars .mass-select-actions .flex-order-3 {
  order: 3;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions .flex-order-4, #ld-questionnaire-wrapper .toolbars .mass-select-actions .flex-order-4 {
  order: 4;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions i, #ld-questionnaire-wrapper .toolbars .mass-select-actions i {
  cursor: pointer;
  margin-right: 10px;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions .avv-button, #ld-questionnaire-wrapper .toolbars .mass-select-actions .avv-button {
  margin: 2px;
  position: relative;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions avv-select, #ld-questionnaire-wrapper .toolbars .mass-select-actions avv-select {
  width: 60%;
}

/* removed */
#questionnaire-content .toolbars .mass-select-actions .label, #ld-questionnaire-wrapper .toolbars .mass-select-actions .label {
  position: absolute;
  top: -16px;
  font-size: 19px;
  color: var(--avv-primary-hover--color);
  left: 10px;
  background-color: #fff;
  padding: 0 10px;
}

/* removed */
#questionnaire-content .toolbar, #ld-questionnaire-wrapper .toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 976px;
  background-color: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

/* removed */
#questionnaire-content .toolbar.parties-toolbar, #ld-questionnaire-wrapper .toolbar.parties-toolbar {
  background-color: var(--avv-primary--color);
  justify-content: space-between;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 999;
}

/* removed */
#questionnaire-content .toolbar.parties-toolbar.white, #ld-questionnaire-wrapper .toolbar.parties-toolbar.white {
  background-color: white;
}

/* removed */
#questionnaire-content .toolbar.parties-toolbar.white .tab, #ld-questionnaire-wrapper .toolbar.parties-toolbar.white .tab {
  background-color: white;
  color: var(--avv-suggestion--color);
  border-bottom: 2px solid white;
}

/* removed */
#questionnaire-content .toolbar.parties-toolbar.white .tab:hover, #ld-questionnaire-wrapper .toolbar.parties-toolbar.white .tab:hover {
  color: var(--avv-primary--color);
}

/* removed */
#questionnaire-content .toolbar.parties-toolbar.white .tab.selected, #ld-questionnaire-wrapper .toolbar.parties-toolbar.white .tab.selected {
  border-bottom: 2px solid var(--avv-primary--color);
  color: var(--avv-primary--color);
}

/* removed */
#questionnaire-content .toolbar .item, #ld-questionnaire-wrapper .toolbar .item {
  padding: 10px 20px;
  margin: 10px;
}

/* removed */
#questionnaire-content .toolbar .item.selected, #ld-questionnaire-wrapper .toolbar .item.selected {
  border-bottom: 2px solid var(--avv-primary--color);
  color: var(--avv-primary--color);
}

/* removed */
#questionnaire-content .toolbar .item:not(.selected):hover, #ld-questionnaire-wrapper .toolbar .item:not(.selected):hover {
  cursor: pointer;
}

/* removed */
#questionnaire-content .toolbar .avv-toggle, #ld-questionnaire-wrapper .toolbar .avv-toggle {
  display: inline-flex;
  padding: 0px;
  max-height: 15px;
  min-height: 15px;
}

/* removed */
#questionnaire-content .toolbar .avv-toggle:not(.active), #ld-questionnaire-wrapper .toolbar .avv-toggle:not(.active) {
  padding-left: 40px;
  background-color: #bfbfbf;
}

/* removed */
#questionnaire-content .toolbar .avv-toggle.active, #ld-questionnaire-wrapper .toolbar .avv-toggle.active {
  padding-right: 40px;
}

/* removed */
#questionnaire-content .questionnaires, #ld-questionnaire-wrapper .questionnaires {
  display: flex;
}

/* removed */
#questionnaire-content .questionnaires .questionnaire-instance, #ld-questionnaire-wrapper .questionnaires .questionnaire-instance {
  flex: 1 1 50%;
}

/* removed */
#questionnaire-content .q-tab-content:not(.no-scrollbar), #ld-questionnaire-wrapper .q-tab-content:not(.no-scrollbar) {
  overflow-y: scroll;
}

/* removed */
#questionnaire-content .q-tab-content, #ld-questionnaire-wrapper .q-tab-content {
  display: none;
  max-height: 75%;
  margin-right: auto;
  margin-left: auto;
  max-width: 990px;
  padding-bottom: 30px;
}

/* removed */
#questionnaire-content .q-tab-content[mode="templating"] .q-section:hover, #ld-questionnaire-wrapper .q-tab-content[mode="templating"] .q-section:hover {
  border-color: var(--avv-primary--color);
}

/* removed */
#questionnaire-content .q-tab-content[mode="templating"] .q-section > .panel-relative .toolbox .item:hover, #ld-questionnaire-wrapper .q-tab-content[mode="templating"] .q-section > .panel-relative .toolbox .item:hover {
  cursor: pointer;
  background-color: var(--avv-primary-light--color);
}

/* removed */
#questionnaire-content .q-tab-content[mode="templating"] .q-question:hover .q-body, #ld-questionnaire-wrapper .q-tab-content[mode="templating"] .q-question:hover .q-body {
  border-color: var(--avv-primary--color);
}

/* removed */
#questionnaire-content .q-tab-content[mode="templating"] .q-question.is-deleted .q-body, #ld-questionnaire-wrapper .q-tab-content[mode="templating"] .q-question.is-deleted .q-body {
  border-color: var(--avv-danger--color);
}

/* removed */
#questionnaire-content .q-tab-content.active, #ld-questionnaire-wrapper .q-tab-content.active {
  display: block;
}

/* removed */
#questionnaire-content .q-tab-content .draggable.drag-active, #ld-questionnaire-wrapper .q-tab-content .draggable.drag-active {
  user-select: none;
  cursor: grabbing;
}

/* removed */
#questionnaire-content .q-tab-content .draggable.drag-active .drag-ghost, #ld-questionnaire-wrapper .q-tab-content .draggable.drag-active .drag-ghost {
  opacity: 50%;
}

/* removed */
#questionnaire-content .q-tab-content .draggable.drag-active .drag-ghost .q-body, #ld-questionnaire-wrapper .q-tab-content .draggable.drag-active .drag-ghost .q-body {
  background-color: var(--avv-primary--color);
  color: var(--avv-primary-light--color);
}

/* removed */
#questionnaire-content .q-tab-content .draggable.drag-active .drag-ghost .q-insert-new, #ld-questionnaire-wrapper .q-tab-content .draggable.drag-active .drag-ghost .q-insert-new {
  display: none;
}

/* removed */
#questionnaire-content .q-tab-content .draggable.drag-active .original-drag .q-body, #ld-questionnaire-wrapper .q-tab-content .draggable.drag-active .original-drag .q-body {
  background-color: var(--avv-primary-hover--color);
  color: var(--avv-primary-light--color);
  border: 1px solid var(--avv-suggestion--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question, #ld-questionnaire-wrapper .q-tab-content .q-question {
  transition: all 150ms ease-in-out;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  /** ----------------- TYPES ----------------- */
}

/* removed */
#questionnaire-content .q-tab-content .q-question:nth-of-type(1), #ld-questionnaire-wrapper .q-tab-content .q-question:nth-of-type(1) {
  margin-top: 7px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.is-new .q-body, #ld-questionnaire-wrapper .q-tab-content .q-question.is-new .q-body {
  border-left: 7px solid var(--avv-primary--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question.is-deleted .q-body, #ld-questionnaire-wrapper .q-tab-content .q-question.is-deleted .q-body {
  border-left: 7px solid var(--avv-danger--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question .custom-question-text, #ld-questionnaire-wrapper .q-tab-content .q-question .custom-question-text {
  color: gray;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: bold;
  text-align: right;
  font-family: 'Roboto';
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-body, #ld-questionnaire-wrapper .q-tab-content .q-question .q-body {
  padding: 5px;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
  border-radius: 5px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-body .question-desc-collapsed, #ld-questionnaire-wrapper .q-tab-content .q-question .q-body .question-desc-collapsed {
  margin-left: 8px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .edit-button, #ld-questionnaire-wrapper .q-tab-content .q-question .edit-button {
  display: inline-flex;
  height: 40px;
  width: 40px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .edit-button:hover, #ld-questionnaire-wrapper .q-tab-content .q-question .edit-button:hover {
  cursor: pointer;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .quick-access, #ld-questionnaire-wrapper .q-tab-content .q-question .quick-access {
  display: inline-flex;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header {
  display: flex;
  flex-direction: row;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header.colapsed, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header.colapsed {
  justify-content: space-between;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header.edit, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header.edit {
  justify-content: space-between;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper {
  width: 40%;
  display: flex;
  align-items: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper span, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper span {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper.left, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper.left {
  padding-left: 11px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper.right, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper.right {
  padding-right: 11px;
  justify-content: flex-end;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper .q-att, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper .q-att {
  color: var(--avv-select-border--color);
  font-weight: bold;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper .required-mark, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper .required-mark {
  color: var(--avv-danger--color);
  margin-right: 3px;
  width: auto;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper i.remove, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper i.remove {
  position: relative;
  left: -3px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .q-header .att-wrapper i.remove:hover, #ld-questionnaire-wrapper .q-tab-content .q-question .q-header .att-wrapper i.remove:hover {
  cursor: pointer;
  color: var(--avv-danger--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question .drag-wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question .drag-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .drag, #ld-questionnaire-wrapper .q-tab-content .q-question .drag {
  display: flex;
  justify-content: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .drag .drag-handle, #ld-questionnaire-wrapper .q-tab-content .q-question .drag .drag-handle {
  width: 50px;
  height: 34px;
  display: inline-block;
  text-align: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .drag .drag-handle i, #ld-questionnaire-wrapper .q-tab-content .q-question .drag .drag-handle i {
  transform: rotate(90deg);
  font-size: 32px;
  user-select: none;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .drag .drag-handle:hover, #ld-questionnaire-wrapper .q-tab-content .q-question .drag .drag-handle:hover {
  cursor: grab;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .drag-handle:hover, #ld-questionnaire-wrapper .q-tab-content .q-question .drag-handle:hover {
  cursor: grab;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .drag-handle, #ld-questionnaire-wrapper .q-tab-content .q-question .drag-handle {
  fill: #bfbfbf;
  color: #bfbfbf;
  min-width: 24px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit .q-body, #ld-questionnaire-wrapper .q-tab-content .q-question.edit .q-body {
  padding: 5px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit .q-body .header, #ld-questionnaire-wrapper .q-tab-content .q-question.edit .q-body .header {
  margin-right: 10px;
  margin-top: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit .q-body .footer, #ld-questionnaire-wrapper .q-tab-content .q-question.edit .q-body .footer {
  margin-right: 10px;
  margin-bottom: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit .q-body .footer .wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question.edit .q-body .footer .wrapper {
  margin: 0;
  width: 100%;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit .q-body .footer .q-vis-cond, #ld-questionnaire-wrapper .q-tab-content .q-question.edit .q-body .footer .q-vis-cond {
  margin-top: 20px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit .q-body .footer .vis-cond-buttons .avv-button:not(.secondary), #ld-questionnaire-wrapper .q-tab-content .q-question.edit .q-body .footer .vis-cond-buttons .avv-button:not(.secondary) {
  margin-left: 0px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.label_type .markdown h1, #questionnaire-content .q-tab-content .q-question.label_type .markdown h2, #questionnaire-content .q-tab-content .q-question.label_type .markdown h3, #questionnaire-content .q-tab-content .q-question.label_type .markdown h4, #questionnaire-content .q-tab-content .q-question.label_type .markdown h5, #questionnaire-content .q-tab-content .q-question.label_type .markdown h6, #questionnaire-content .q-tab-content .q-question.select .markdown h1, #questionnaire-content .q-tab-content .q-question.select .markdown h2, #questionnaire-content .q-tab-content .q-question.select .markdown h3, #questionnaire-content .q-tab-content .q-question.select .markdown h4, #questionnaire-content .q-tab-content .q-question.select .markdown h5, #questionnaire-content .q-tab-content .q-question.select .markdown h6, #questionnaire-content .q-tab-content .q-question.input .markdown h1, #questionnaire-content .q-tab-content .q-question.input .markdown h2, #questionnaire-content .q-tab-content .q-question.input .markdown h3, #questionnaire-content .q-tab-content .q-question.input .markdown h4, #questionnaire-content .q-tab-content .q-question.input .markdown h5, #questionnaire-content .q-tab-content .q-question.input .markdown h6, #questionnaire-content .q-tab-content .q-question.currency .markdown h1, #questionnaire-content .q-tab-content .q-question.currency .markdown h2, #questionnaire-content .q-tab-content .q-question.currency .markdown h3, #questionnaire-content .q-tab-content .q-question.currency .markdown h4, #questionnaire-content .q-tab-content .q-question.currency .markdown h5, #questionnaire-content .q-tab-content .q-question.currency .markdown h6, #questionnaire-content .q-tab-content .q-question.date .markdown h1, #questionnaire-content .q-tab-content .q-question.date .markdown h2, #questionnaire-content .q-tab-content .q-question.date .markdown h3, #questionnaire-content .q-tab-content .q-question.date .markdown h4, #questionnaire-content .q-tab-content .q-question.date .markdown h5, #questionnaire-content .q-tab-content .q-question.date .markdown h6, #questionnaire-content .q-tab-content .q-question.number .markdown h1, #questionnaire-content .q-tab-content .q-question.number .markdown h2, #questionnaire-content .q-tab-content .q-question.number .markdown h3, #questionnaire-content .q-tab-content .q-question.number .markdown h4, #questionnaire-content .q-tab-content .q-question.number .markdown h5, #questionnaire-content .q-tab-content .q-question.number .markdown h6, #questionnaire-content .q-tab-content .q-question.listSelectDb .markdown h1, #questionnaire-content .q-tab-content .q-question.listSelectDb .markdown h2, #questionnaire-content .q-tab-content .q-question.listSelectDb .markdown h3, #questionnaire-content .q-tab-content .q-question.listSelectDb .markdown h4, #questionnaire-content .q-tab-content .q-question.listSelectDb .markdown h5, #questionnaire-content .q-tab-content .q-question.listSelectDb .markdown h6, #questionnaire-content .q-tab-content .q-question.dependentList .markdown h1, #questionnaire-content .q-tab-content .q-question.dependentList .markdown h2, #questionnaire-content .q-tab-content .q-question.dependentList .markdown h3, #questionnaire-content .q-tab-content .q-question.dependentList .markdown h4, #questionnaire-content .q-tab-content .q-question.dependentList .markdown h5, #questionnaire-content .q-tab-content .q-question.dependentList .markdown h6, #questionnaire-content .q-tab-content .q-question.open_select .markdown h1, #questionnaire-content .q-tab-content .q-question.open_select .markdown h2, #questionnaire-content .q-tab-content .q-question.open_select .markdown h3, #questionnaire-content .q-tab-content .q-question.open_select .markdown h4, #questionnaire-content .q-tab-content .q-question.open_select .markdown h5, #questionnaire-content .q-tab-content .q-question.open_select .markdown h6, #questionnaire-content .q-tab-content .q-question.multi_select .markdown h1, #questionnaire-content .q-tab-content .q-question.multi_select .markdown h2, #questionnaire-content .q-tab-content .q-question.multi_select .markdown h3, #questionnaire-content .q-tab-content .q-question.multi_select .markdown h4, #questionnaire-content .q-tab-content .q-question.multi_select .markdown h5, #questionnaire-content .q-tab-content .q-question.multi_select .markdown h6, #questionnaire-content .q-tab-content .q-question.yes_no .markdown h1, #questionnaire-content .q-tab-content .q-question.yes_no .markdown h2, #questionnaire-content .q-tab-content .q-question.yes_no .markdown h3, #questionnaire-content .q-tab-content .q-question.yes_no .markdown h4, #questionnaire-content .q-tab-content .q-question.yes_no .markdown h5, #questionnaire-content .q-tab-content .q-question.yes_no .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.label_type .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.label_type .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.label_type .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.label_type .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.label_type .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.label_type .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.select .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.select .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.select .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.select .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.select .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.select .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.input .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.input .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.input .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.input .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.input .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.input .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.currency .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.currency .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.currency .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.currency .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.currency .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.currency .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.date .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.date .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.date .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.date .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.date .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.date .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.number .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.number .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.number .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.number .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.number .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.number .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.listSelectDb .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.listSelectDb .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.listSelectDb .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.listSelectDb .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.listSelectDb .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.listSelectDb .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.open_select .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.open_select .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.open_select .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.open_select .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.open_select .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.open_select .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .markdown h6, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .markdown h1, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .markdown h2, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .markdown h3, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .markdown h4, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .markdown h5, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .markdown h6 {
  font-size: revert;
  font-weight: revert;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.select avv-select, #questionnaire-content .q-tab-content .q-question.listSelectDb avv-select, #questionnaire-content .q-tab-content .q-question.dependentList avv-select, #questionnaire-content .q-tab-content .q-question.open_select avv-select, #questionnaire-content .q-tab-content .q-question.multi_select avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.select avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.listSelectDb avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.open_select avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select avv-select {
  margin-left: 10px;
  margin-right: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.yes_no .list, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .list {
  display: flex;
  flex-direction: column;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.yes_no .list .item, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .list .item {
  display: flex;
  justify-content: space-around;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.yes_no .list .item .wrappers, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .list .item .wrappers {
  flex: 0 0;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.yes_no .list .avv-button, #ld-questionnaire-wrapper .q-tab-content .q-question.yes_no .list .avv-button {
  align-self: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.currency:not(.edit) .wrappers .input, #questionnaire-content .q-tab-content .q-question.currency:not(.edit) .wrappers .select, #ld-questionnaire-wrapper .q-tab-content .q-question.currency:not(.edit) .wrappers .input, #ld-questionnaire-wrapper .q-tab-content .q-question.currency:not(.edit) .wrappers .select {
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.currency:not(.edit) .wrappers avv-select, #questionnaire-content .q-tab-content .q-question.currency:not(.edit) .wrappers input, #ld-questionnaire-wrapper .q-tab-content .q-question.currency:not(.edit) .wrappers avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.currency:not(.edit) .wrappers input {
  width: 100%;
  box-sizing: border-box;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.checkbox:not(.edit) label, #ld-questionnaire-wrapper .q-tab-content .q-question.checkbox:not(.edit) label {
  display: flex;
  align-items: center;
  place-content: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.checkbox:not(.edit) label > .markdown, #ld-questionnaire-wrapper .q-tab-content .q-question.checkbox:not(.edit) label > .markdown {
  margin-left: 50px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.date .date, #ld-questionnaire-wrapper .q-tab-content .q-question.date .date {
  margin: 0;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.date .date .date-from, #questionnaire-content .q-tab-content .q-question.date .date .date-to, #ld-questionnaire-wrapper .q-tab-content .q-question.date .date .date-from, #ld-questionnaire-wrapper .q-tab-content .q-question.date .date .date-to {
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 20px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.date .date-menu-wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question.date .date-menu-wrapper {
  position: relative;
  z-index: 1;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.date .date-menu-wrapper .date-menu, #ld-questionnaire-wrapper .q-tab-content .q-question.date .date-menu-wrapper .date-menu {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 17px;
  margin: 3px;
  border-bottom: 3px solid var(--avv-primary--color);
  box-shadow: 0 0 1px black;
  width: 400px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.dependentList .list, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .list {
  margin: 0;
  display: flex;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.dependentList .list .avv-select, #questionnaire-content .q-tab-content .q-question.dependentList .list .attribute, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .list .avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.dependentList .list .attribute {
  display: grid;
  grid-template-rows: 20px 1fr 1fr;
  width: 50%;
  box-sizing: border-box;
  margin: 0;
  padding: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.multi_select .separators, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .separators {
  margin: 0;
  display: flex;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.multi_select .separators .wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question.multi_select .separators .wrapper {
  flex: 1 1;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrappers, #ld-questionnaire-wrapper .q-tab-content .q-question .wrappers {
  margin: 0;
  display: flex;
  align-items: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrappers .wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question .wrappers .wrapper {
  flex: 1 1;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #919191;
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .right, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .right {
  display: flex;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .right span, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .right span {
  margin-right: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .right i, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .right i {
  font-size: 16px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .menu-wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .menu-wrapper {
  position: relative;
  width: 0;
  height: 0;
  z-index: 1;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .menu-wrapper .menu, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .menu-wrapper .menu {
  position: absolute;
  top: 100%;
  left: -150px;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  margin-top: -1px;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .menu-wrapper .menu .picker, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .menu-wrapper .menu .picker {
  z-index: 10000;
  padding: 10px;
  display: flex;
  align-items: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .menu-wrapper .menu .picker .controls, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .menu-wrapper .menu .picker .controls {
  margin-left: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .menu-wrapper .menu .picker .controls .buttonbox, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .menu-wrapper .menu .picker .controls .buttonbox {
  display: flex;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text .menu-wrapper .menu .picker .swatch, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text .menu-wrapper .menu .picker .swatch {
  width: 80px;
  height: 40px;
  float: left;
}

/* removed */
#questionnaire-content .q-tab-content .q-question label:not(.modern-color-theme *), #ld-questionnaire-wrapper .q-tab-content .q-question label:not(.modern-color-theme *) {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: .875rem;
  color: #2e2e2e;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.checkbox label, #ld-questionnaire-wrapper .q-tab-content .q-question.checkbox label {
  margin: auto;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .textarea, #ld-questionnaire-wrapper .q-tab-content .q-question .textarea {
  border: none;
  font-size: 20px;
  padding: 10px;
  width: 100%;
  max-width: 100%;
  /** to disallow to resize over 100% */
  display: block;
  box-sizing: border-box;
  user-focus: none;
  min-height: 50px;
  max-height: 100px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .textarea:active, #questionnaire-content .q-tab-content .q-question .textarea:focus, #ld-questionnaire-wrapper .q-tab-content .q-question .textarea:active, #ld-questionnaire-wrapper .q-tab-content .q-question .textarea:focus {
  outline: none;
  border: none;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrapper, #ld-questionnaire-wrapper .q-tab-content .q-question .wrapper {
  margin: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrapper input.avv-input, #ld-questionnaire-wrapper .q-tab-content .q-question .wrapper input.avv-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrapper textarea.avv-input, #ld-questionnaire-wrapper .q-tab-content .q-question .wrapper textarea.avv-input {
  display: block;
  width: 100%;
  height: 0px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrapper .avv-desc, #ld-questionnaire-wrapper .q-tab-content .q-question .wrapper .avv-desc {
  padding-top: 15px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrapper.error .avv-input, #ld-questionnaire-wrapper .q-tab-content .q-question .wrapper.error .avv-input {
  border: 1px solid var(--avv-danger-light-color);
  color: var(--avv-danger--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrapper.error avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question .wrapper.error avv-select {
  border: 1px solid var(--avv-danger-light-color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question .wrapper.error avv-select span, #ld-questionnaire-wrapper .q-tab-content .q-question .wrapper.error avv-select span {
  color: var(--avv-danger--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question .radio-buttons, #ld-questionnaire-wrapper .q-tab-content .q-question .radio-buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding-left: 10px;
  padding-top: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .radio-buttons label, #ld-questionnaire-wrapper .q-tab-content .q-question .radio-buttons label {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .radio-buttons label input, #ld-questionnaire-wrapper .q-tab-content .q-question .radio-buttons label input {
  margin: 0;
  margin-right: 5px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .markdown, #ld-questionnaire-wrapper .q-tab-content .q-question .markdown {
  font-size: 16px;
  padding: 10px;
  top: 5.5px;
  position: relative;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .markdown p, #ld-questionnaire-wrapper .q-tab-content .q-question .markdown p {
  margin: 0;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.checkbox .markdown, #ld-questionnaire-wrapper .q-tab-content .q-question.checkbox .markdown {
  width: calc(100% - 40px);
  top: auto;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.edit avv-select {
  margin: 0 0 10px 0;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit .type avv-select, #ld-questionnaire-wrapper .q-tab-content .q-question.edit .type avv-select {
  width: 70%;
  max-height: 48px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-separator, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-separator {
  height: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new {
  height: 10px;
  position: relative;
  z-index: 0;
  transition: height 0.3s ease-out;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new .q-content, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new .q-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new .q-content .question-action, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new .q-content .question-action {
  visibility: hidden;
  display: flex;
  position: relative;
  top: -40px;
  transition: top 0.3s ease-out;
  flex-basis: auto;
  padding: 10px;
  margin: 0 5px;
  text-align: center;
  color: white;
  font-size: 20px;
  border-radius: 0px 0px 10px 10px;
  cursor: pointer;
  margin-bottom: 10px;
  user-select: none;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new .q-content .question-action.new, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new .q-content .question-action.new {
  background-color: var(--avv-primary--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new .q-content .question-action.remove, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new .q-content .question-action.remove {
  background-color: var(--avv-danger--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new:hover, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new:hover {
  height: 50px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content {
  opacity: 1;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .item, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .item {
  flex-basis: 100%;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.02);
  text-align: center;
  color: #000000;
  font-size: 20px;
  border-radius: 2px;
  cursor: pointer;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .question-action, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .question-action {
  top: 0;
  visibility: visible;
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .question-action.new:hover, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .question-action.new:hover {
  background-color: var(--avv-primary-hover--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .question-action.remove:hover, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new:hover .q-content .question-action.remove:hover {
  background-color: var(--avv-danger-hover-color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question:not(.compress) .q-insert-new .q-content, #ld-questionnaire-wrapper .q-tab-content .q-question:not(.compress) .q-insert-new .q-content {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.compress .q-insert-new, #ld-questionnaire-wrapper .q-tab-content .q-question.compress .q-insert-new {
  display: none;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header, #ld-questionnaire-wrapper .q-tab-content .q-question .header {
  display: flex;
  justify-content: space-between;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header .left, #ld-questionnaire-wrapper .q-tab-content .q-question .header .left {
  display: flex;
  align-items: center;
  flex-basis: 100%;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header .left.expanded, #ld-questionnaire-wrapper .q-tab-content .q-question .header .left.expanded {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  bottom: 20px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header .left.expanded .attr, #ld-questionnaire-wrapper .q-tab-content .q-question .header .left.expanded .attr {
  margin: 0 11px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header .left.expanded input, #ld-questionnaire-wrapper .q-tab-content .q-question .header .left.expanded input {
  position: relative;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header .left.expanded input[type="text"], #ld-questionnaire-wrapper .q-tab-content .q-question .header .left.expanded input[type="text"] {
  margin-left: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header .left .attr, #ld-questionnaire-wrapper .q-tab-content .q-question .header .left .attr {
  margin: 0 20px;
  font-weight: bold;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .header .type, #ld-questionnaire-wrapper .q-tab-content .q-question .header .type {
  display: flex;
  flex-basis: 100%;
  justify-content: flex-end;
  position: relative;
  bottom: -20px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .footer, #ld-questionnaire-wrapper .q-tab-content .q-question .footer {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .footer .footer-section, #ld-questionnaire-wrapper .q-tab-content .q-question .footer .footer-section {
  display: flex;
  justify-content: space-between;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .footer .footer-section input, #ld-questionnaire-wrapper .q-tab-content .q-question .footer .footer-section input {
  width: 100%;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.edit.q.body, #ld-questionnaire-wrapper .q-tab-content .q-question.edit.q.body {
  border-color: var(--avv-primary--color);
}

/* removed */
#questionnaire-content .q-tab-content .q-question.compress .q-body, #ld-questionnaire-wrapper .q-tab-content .q-question.compress .q-body {
  display: flex;
  align-items: center;
  padding: 5px;
  margin: 2px 0;
  border-radius: 2px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.compress .q-body .quick-access input[type="checkbox"], #questionnaire-content .q-tab-content .q-question.compress .q-body .quick-access .edit-button, #ld-questionnaire-wrapper .q-tab-content .q-question.compress .q-body .quick-access input[type="checkbox"], #ld-questionnaire-wrapper .q-tab-content .q-question.compress .q-body .quick-access .edit-button {
  height: 25px;
  width: 25px;
  max-height: 25px;
  min-height: 25px;
  max-width: 25px;
  min-width: 25px;
}

/* removed */
#questionnaire-content .q-tab-content .q-question.compress .q-body > div p, #ld-questionnaire-wrapper .q-tab-content .q-question.compress .q-body > div p {
  margin: 0;
}

/* removed */
#questionnaire-content .q-tab-content .q-question .help-text, #ld-questionnaire-wrapper .q-tab-content .q-question .help-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #919191;
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}

/* removed */
#questionnaire-content .q-tab-content.rtl .q-question.edit .q-body .header, #ld-questionnaire-wrapper .q-tab-content.rtl .q-question.edit .q-body .header {
  margin-left: 10px;
  margin-right: 0px;
}

/* removed */
#questionnaire-content .q-tab-content.rtl .q-question .q-body .q-header.colapsed .att-wrapper.left, #ld-questionnaire-wrapper .q-tab-content.rtl .q-question .q-body .q-header.colapsed .att-wrapper.left {
  padding-right: 11px;
}

/* removed */
#questionnaire-content .q-tab-content.rtl .q-question .q-body .q-header.colapsed .att-wrapper.right, #ld-questionnaire-wrapper .q-tab-content.rtl .q-question .q-body .q-header.colapsed .att-wrapper.right {
  padding-left: 11px;
}

@keyframes highlight {
  0% {
    background-color: var(--avv-suggestion-light--color);
    color: #fff;
  }
  30% {
    background-color: white;
    color: inherit;
  }
  40% {
    background-color: var(--avv-suggestion-light--color);
    color: #fff;
  }
  50% {
    background-color: white;
    color: inherit;
  }
  60% {
    background-color: var(--avv-suggestion-light--color);
    color: #fff;
  }
  70% {
    background-color: white;
    color: inherit;
  }
  80% {
    background-color: var(--avv-suggestion-light--color);
    color: #fff;
  }
  100% {
    background-color: white;
    color: inherit;
  }
}

/* removed */
.highlight-q-card-4000 {
  animation: highlight 4s;
}/* removed */
.badge-wrapper {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  --badge-border-color: rgb(209 213 219);
  display: flex;
  row-gap: 0.25em;
  min-height: 38px;
  border-width: 1px;
  border-radius: 0.375rem;
  border-color: #d1d5db;
  background-color: white;
  cursor: text;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* removed */
.badge-wrapper i {
  font-size: 18px;
}

/* removed */
.badge-wrapper .badge-container {
  display: flex;
  row-gap: 0.25em;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: none;
  padding: 3px;
}

/* removed */
.badge-wrapper .badge-search {
  font-size: 0.875rem;
  height: 30px;
  flex-grow: 1;
}

/* removed */
.badge-wrapper .badge {
  height: 30px;
  display: flex;
  gap: 0.125rem;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* removed */
.badge-wrapper .badge span {
  white-space: nowrap;
}

/* removed */
.badge-wrapper .badge.round {
  --badge-radius: 1rem;
  border-radius: var(--badge-radius);
}

/* removed */
.badge-wrapper .badge.round.corners {
  --badge-radius: 0.25rem;
}

/* removed */
.badge-wrapper .badge.round > *:first-child {
  border-top-left-radius: var(--badge-radius);
  border-bottom-left-radius: var(--badge-radius);
}

/* removed */
.badge-wrapper .badge.round > *:last-child {
  border-top-right-radius: var(--badge-radius);
  border-bottom-right-radius: var(--badge-radius);
}

/* removed */
.badge-wrapper .badge > button {
  display: flex;
  align-items: center;
}

/* removed */
.badge-wrapper .badge > button.badge-segment > button {
  border: 1px solid var(--badge-border-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* removed */
.badge-wrapper .badge > button.badge-segment > div > .list {
  width: calc(100% + 2px);
}

/* removed */
.badge-wrapper .badge > button.badge-segment > div > .list.scrolling {
  overflow-y: scroll;
  margin-right: 8px;
}

/* removed */
.badge-wrapper .badge > button.badge-segment > div > div {
  border: 1px solid var(--badge-border-color);
}

/* removed */
.badge-wrapper .flip-z {
  transform: rotateZ(180deg);
}/* removed */
.tab-content > #settings.tab-pane {
  background-color: var(--avv-tab-background--color);
}/* removed */
.stick {
  position: fixed;
  top: 0;
}/* removed */
.avv-table-wrapper {
  display: grid;
  padding: 20px 100px;
}

/* removed */
.avv-table {
  margin: 0 auto;
  border: 1px solid var(--avv-border--color);
  border-radius: 5px;
  overflow: hidden;
}

/* removed */
.avv-table .expandable:hover {
  cursor: pointer;
}

/* removed */
.avv-table.primary-blue th {
  background-color: var(--avv-primary--color);
}

/* removed */
.avv-table.white thead {
  background-color: #f9fafb;
}

/* removed */
.avv-table.white thead tr {
  background-color: #f9fafb;
}

/* removed */
.avv-table.white thead tr th {
  color: var(--avv-primary--color);
}

/* removed */
.avv-table.white thead tr th a {
  color: var(--avv-primary--color);
}

/* removed */
.avv-table.danger th {
  background-color: var(--avv-danger--color);
}

/* removed */
.avv-table.light-blue th {
  background-color: var(--avv-suggestion--color);
}

/* removed */
.avv-table thead {
  font-size: 20px;
}

/* removed */
.avv-table thead th {
  height: 56px;
  text-align: start;
  color: white;
  padding: 0 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* removed */
.avv-table thead th a {
  color: white;
}

/* removed */
.avv-table tr {
  background-color: white;
}

/* removed */
.avv-table tr.active {
  background-color: var(--avv-border--color);
}

/* removed */
.avv-table tr:hover:not(.info-row) {
  background-color: var(--avv-border--color);
}

/* removed */
.avv-table tr.expanded {
  background-color: var(--avv-border--color);
}

/* removed */
.avv-table tr.collapsed-header th {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* removed */
.avv-table tr.collapsed-header span {
  font-weight: 500;
  font-size: 25px;
}

/* removed */
.avv-table tr:not(.info-row):not(.collapsed-header) td {
  border-top: 1px solid var(--avv-border--color);
  height: 52px;
  position: relative;
}

/* removed */
.avv-table tr:not(.info-row):not(.collapsed-header) td:not(.plain):before {
  content: '&nbsp;';
  visibility: hidden;
}

/* removed */
.avv-table tr:not(.info-row):not(.collapsed-header) td.empty-row {
  text-align: center;
}

/* removed */
.avv-table tr:not(.info-row):not(.collapsed-header) td span {
  position: absolute;
  padding: 0 16px;
  left: 0;
  right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* removed */
.avv-table tr:not(.info-row):not(.collapsed-header) td span.centered {
  text-align: center;
}

/* removed */
.avv-table tr:not(.info-row):not(.collapsed-header) td .clickable:hover {
  cursor: pointer;
  color: var(--avv-primary-hover--color);
}

/* removed */
.avv-table tr:not(.info-row):not(.collapsed-header) td .expandable-icon {
  position: absolute;
  right: 15px;
}

/* removed */
.avv-table tr.info-row td {
  padding: 16px;
}

/* removed */
.avv-table tr.info-row td .error-info-header {
  font-weight: 500;
}

/* removed */
.avv-table tr.info-row td .button-wrapper {
  margin-top: 10px;
}/* removed */
.templ-main-window {
  margin-top: 51px;
}

/* removed */
main.templates > .sidebar {
  display: flex;
  flex-direction: column;
  top: calc(var(--avv-navigation-height));
  left: 0;
  position: -webkit-sticky;
  /* removed */
  position: sticky;
  max-width: 100%;
  height: calc(100vh - var(--avv-navigation-height));
  padding: 0 10px;
  border-color: var(--avv-primary--color);
}

/* removed */
main.templates > .sidebar > ul {
  list-style-type: none;
  padding: 0;
  margin: 5px 0 0 0;
}

/* removed */
main.templates > .sidebar > ul:not(.collapse) > li span {
  max-width: 256px;
  margin: 0 10px;
}

/* removed */
main.templates > .sidebar > ul > li {
  user-select: none;
}

/* removed */
main.templates > .sidebar > ul > li a {
  display: flex;
  flex: 1 1 100%;
  white-space: nowrap;
  letter-spacing: normal;
  min-height: 48px;
  outline: none;
  padding: 0 16px;
  position: relative;
}

/* removed */
main.templates > .sidebar > ul > li a:hover, main.templates > .sidebar > ul > li a:focus {
  background-color: #ebebeb;
  border-radius: 5px;
}

/* removed */
main.templates > .sidebar > ul > li a:before {
  background-color: #fff;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 4px;
}

/* removed */
main.templates > .sidebar > ul > li a > span {
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}

/* removed */
main.templates > .sidebar > ul > li a > span, main.templates > .sidebar > ul > li a > .icon {
  align-self: center;
}

/* removed */
main.templates > .sidebar > ul > li.active > a {
  font-weight: bold;
  cursor: default;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* removed */
main.templates > .sidebar > ul > li.active > a:before {
  opacity: .08;
  background-color: black;
}

/* removed */
main.templates > .sidebar > ul > li:not(.active) > a {
  cursor: pointer;
}

/* removed */
main.templates > .sidebar > ul > li:not(.active) > a > .icon > .svg {
  height: 32px;
  width: 32px;
}

/* removed */
main.templates > .sidebar > ul > li:not(.active) > a:hover:before {
  opacity: .08;
}

/* removed */
main.templates > .content {
  flex: 1;
}

/* removed */
main.templates > .content > #template-form {
  height: 100%;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper {
  height: 51px;
  background-color: white;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  width: calc(85% - var(--avv-navigation-bar-width));
  z-index: 4;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper hr.dropdown-separator {
  width: 100%;
  color: var(--avv-secondary-300);
  background-color: var(--avv-secondary-300);
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .separator {
  display: flex;
  flex-flow: column;
  min-width: 1px;
  background-color: var(--avv-neutral-150);
  margin: 0 5px;
  height: 70%;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper a .icon {
  margin: 10px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper a .icon svg {
  height: 25px;
  width: 25px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .left {
  margin-left: 20px;
  display: flex;
  width: 80%;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .left i {
  color: var(--avv-table-text--color);
  user-select: none;
  margin-right: 10px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .left input {
  align-self: center;
  border: none;
  font-size: 18px;
  width: 100%;
  user-focus: none;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .left input:focus {
  border: none;
  outline: none;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .left input:active {
  border: none;
  outline: none;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  margin-right: 10px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right > * {
  margin-left: 10px;
  margin-right: 10px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right a.icon {
  height: 35px;
  display: flex;
  margin: 0 5px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right a.icon:hover {
  background-color: var(--avv-border--color);
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right .button {
  margin: 0;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right .avv-button {
  margin-left: 0;
  font-size: 15px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right .avv-button:not(.secondary) {
  font-weight: 500;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right .secondary-button {
  padding: 3px 15px;
  font-size: 15px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right .disabled {
  cursor: not-allowed;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right #create-document-from-template {
  margin-left: 0;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right .import-export-dropdown {
  margin: 0 5px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right .import-export-dropdown .dropdown-menu {
  width: 250px;
}

/* removed */
main.templates > .content > #template-form > .actions-wrapper .right #publish-template, main.templates > .content > #template-form > .actions-wrapper .right #unpublish-template {
  margin-right: 0;
  margin-left: 10px;
}

/* removed */
main.templates > .content > #template-form > .tab-content {
  position: relative;
  z-index: 3;
  height: 100%;
}

/* removed */
main.templates > .content > #template-form > .tab-content .drag-end-point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: var(--avv-primary--color);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  z-index: 100000;
  animation: blink-animation 1s ease-in-out infinite;
  will-change: background-color, fill;
  fill: #fff;
  border-radius: 2px;
}

/* removed */
main.templates > .content > #template-form > .tab-content .drag-end-point > * {
  pointer-events: none;
}

/* removed */
main.templates > .content > #template-form > .tab-content > .drag-ghost {
  position: absolute;
  display: inline-block;
  padding: 10px;
  background-color: var(--avv-primary--color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  color: var(--avv-primary-light--color);
  pointer-events: none;
}

@keyframes blink-animation {
  from {
    background-color: var(--avv-primary--color);
    fill: white;
  }
  to {
    background-color: var(--avv-primary-light--color);
    fill: black;
  }
}

/* removed */
main.templates > .content > #template-form > .tab-content #drag-left-endpoint {
  top: calc(((100vh - var(--avv-navigation-height)) / 2) - (48px / 2));
  left: 0;
}

/* removed */
main.templates > .content > #template-form > .tab-content #drag-left-endpoint:hover {
  animation: none;
  background-color: var(--avv-primary-hover--color);
  border: 1px solid var(--avv-primary--color);
  cursor: pointer;
}

/* removed */
main.templates > .content > #template-form > .tab-content #drag-right-endpoint {
  top: calc(((100vh - var(--avv-navigation-height)) / 2) - (48px / 2));
  right: 0;
}

/* removed */
main.templates > .content > #template-form > .tab-content #drag-right-endpoint:hover {
  animation: none;
  background-color: var(--avv-primary-hover--color);
  border: 1px solid var(--avv-primary--color);
  cursor: pointer;
}

/* removed */
main.templates > .content > #template-form > .tab-content #multiple-tabs.active {
  flex-grow: 1;
}

/* removed */
main.templates > .content > #template-form > .tab-content #multiple-tabs.active > #multiple-tabs-middle {
  display: flex;
}

/* removed */
main.templates > .content > #template-form > .tab-content #multiple-tabs.active > #multiple-tabs-middle > .tab-pane {
  flex: 1;
}

/* removed */
main.templates > .content > #template-form > .tab-content #multiple-tabs.active > * > .tab-pane {
  box-shadow: 0 0 2px 0 var(--avv-secondary--color);
  margin: 5px;
  border-radius: 5px;
  height: calc(100vh - var(--avv-navigation-height) - 51px /* removed */ - 12px);
  overflow-y: scroll;
}

/* removed */
main.templates > .content > #template-form > .tab-content #multiple-tabs.active .avv-toolbar, main.templates > .content > #template-form > .tab-content #multiple-tabs.active .toolbars {
  top: 0;
}

/* removed */
main.templates > .content > #template-form > .tab-content .tab-pane {
  display: none;
}

/* removed */
main.templates > .content > #template-form > .tab-content .tab-pane.active {
  display: block;
}

/* removed */
main.collapsed-sidebar > .content > #template-form > .actions-wrapper {
  width: calc(100% - 78px);
}

/* removed */
#document .avv-editor > .avv-container-wrap {
  overflow-y: scroll;
  --template-margin-top: 51px;
  --actions-wrapper-height: 51px;
  --additional-spacing: 28px;
  height: calc(100vh - var(--avv-navigation-height) - var(--template-margin-top) - var(--actions-wrapper-height) - var(--additional-spacing));
}

/* removed */
#livedemo-tab {
  /* removed */
  /* removed */
}

/* removed */
#livedemo-tab .livedemo_buttons {
  display: flex;
  margin: 0 20px;
}

/* removed */
#livedemo-tab .livedemo_buttons > div {
  display: inline-flex;
  flex: 1 1;
}

/* removed */
#livedemo-tab .livedemo_buttons .right {
  justify-content: flex-end;
}

/* removed */
#livedemo-tab .livedemo_document {
  padding: 12px 15px;
  overflow: auto;
  font-size: 13px;
  /* removed */
  /* removed */
  /* removed */
  /* removed */
}

/* removed */
#livedemo-tab .livedemo_document * {
  font-family: 'Arial', sans-serif;
}

/* removed */
#livedemo-tab .livedemo_document .live_cond-original {
  text-align: inherit;
  display: inline;
}

/* removed */
#livedemo-tab .livedemo_document .live_cond-text {
  margin: 0 2px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  display: none;
}

/* removed */
#livedemo-tab .livedemo_document .live_placeholder-answer,
#livedemo-tab .livedemo_document .live_matholder-answer {
  padding: 0 2px;
  display: none;
}

/* removed */
#livedemo-tab .livedemo_document .live_placeholder-answer:not(:empty),
#livedemo-tab .livedemo_document .live_matholder-answer:not(:empty) {
  display: inline;
}

/* removed */
#livedemo-tab .livedemo_document .live_placeholder-answer:not(:empty) ~ .live_placeholder-original,
#livedemo-tab .livedemo_document .live_matholder-answer:not(:empty) ~ .live_matholder-original {
  display: none;
}

/* removed */
#livedemo-tab .livedemo_document [data-live-questionnaire-diff="true"] {
  border: 2px solid deepskyblue;
}

/* removed */
#livedemo-tab .livedemo_document [data-live-questionnaire-cond-diff="true"] {
  border: 2px solid #444;
}

/* removed */
#livedemo-tab .livedemo_document .live_cond-inline-wrap {
  display: inline-block;
}

/* removed */
#livedemo-tab .livedemo_document avv-if[data-live-condition-result="false"], #livedemo-tab .livedemo_document avv-condition[data-live-condition-result="false"] {
  border: 1px solid #b0b0b0;
  background-color: #eee;
  color: #808080;
}

/* removed */
#livedemo-tab .livedemo_document[data-live-conditions-texts="true"] .live_cond-text {
  display: inline-block;
}

/* removed */
#livedemo-tab .livedemo_questionnaire {
  /* removed */
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.3);
}

/* removed */
#livedemo-tab .livedemo_questionnaire > div {
  width: 80%;
  height: 80%;
  padding: 10px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-content: stretch;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head {
  display: flex;
  margin-bottom: 5px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:first-child {
  margin: 0 auto 0 0;
  line-height: 1.2;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:first-child > span:first-child {
  font-size: 20px;
  font-weight: bold;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:first-child > span:last-child {
  font-size: 13px;
  color: gray;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child {
  margin: 0 0 0 auto;
  padding: 5px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .livedemo_ques_button {
  display: inline-block;
  cursor: pointer;
  border-radius: 6px;
  padding: 0 5px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .livedemo_ques_button label {
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-weight: normal;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .dropdown span:last-child {
  display: none;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .dropdown.open span:not(:last-child) {
  display: none;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .dropdown.open span:last-child {
  display: initial;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .dropdown.open .livedemo_ques_button {
  background-color: #cde9f2;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .dropdown.open .livedemo_ques_button:hover {
  background-color: #d7e8ed;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .dropdown.open .dropdown-menu {
  margin-top: 15px;
  padding: 0;
  overflow-y: hidden;
  overflow-x: auto;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .livedemo_ques_button:not(:last-child) {
  margin: 0 8px;
  font-size: 14px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .livedemo_ques_button:not(:last-child) i {
  position: relative;
  top: -2px;
  font-size: 16px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .livedemo_ques_button:last-child {
  margin-left: 5px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .livedemo_ques_button:last-child i {
  position: relative;
  top: -2px;
  color: red;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_head > div:last-child .livedemo_ques_button:hover {
  background-color: #eee;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_main {
  flex-grow: 1;
  border: 1px solid #ddd;
  box-shadow: 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.14), 0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.098), 0 0.0625rem 0.625rem 0 rgba(0, 0, 0, 0.082);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_main h2, #livedemo-tab .livedemo_questionnaire .livedemo_ques_main .well {
  margin: 0;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_main .checkbox {
  display: inline-block;
  margin-right: 2px;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_main .checkbox .positive {
  opacity: .7;
  border: 2px solid green;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_main .checkbox input[type="checkbox"]:checked + .checkbox-material .check.positive::before {
  color: green;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_main > div[data-condition] {
  display: none;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_main > div[data-live-condition-result="true"] {
  display: initial;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_error {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_error > div {
  display: inline-block;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
}

/* removed */
#livedemo-tab .livedemo_questionnaire .livedemo_ques_error > div h3 {
  font-size: 24px;
  font-weight: bold;
  color: red;
  padding: 0 0 8px 0;
  margin: 0;
}

/* removed */
#livedemo-tab .livedemo_questionnaire.selected {
  display: flex;
}/* removed */
tooltip {
  position: fixed;
  background-color: black;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 14px;
  z-index: 999;
}

/* removed */
tooltip:before {
  content: '';
  display: block;
  position: absolute;
  left: calc(50% - 7px);
  bottom: 100%;
  width: 0;
  height: 0;
  border-bottom: 7px solid black;
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

/* removed */
tooltip.right-align:before {
  left: 80%;
}

/* removed */
tooltip.left-align:before {
  left: 20%;
}

/* removed */
/* removed */
.tooltip-lower {
  position: relative;
  display: inline;
}

/* removed */
.tooltip-lower .tooltip-text {
  visibility: hidden;
  width: max-content;
  background-color: black;
  color: white;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 10;
  margin-left: -265px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* removed */
.tooltip-lower .tooltip-text:not(.tooltip-bottom-150) {
  bottom: -100%;
}

/* removed */
.tooltip-lower .tooltip-text .tooltip-bottom-150 {
  bottom: -150%;
}

/* removed */
.tooltip-lower:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  /* removed */
  .tooltip-lower .tooltip-text {
    margin-left: -425px;
  }
}/* removed */
.avv-editor .avv-container-wrap .avv-container[dir="rtl"] avv-numbered::before {
  right: 0;
  left: unset;
  direction: ltr;
}/* removed */
.tf-grid {
  display: grid;
  border-bottom: none;
  padding-bottom: 0.5em;
}

/* removed */
.tf-grid .column {
  grid-row: 1;
}

/* removed */
.tf-grid .column .avv-button {
  background-color: var(--avv-primary-dull--color);
}

/* removed */
.tf-grid .column .avv-button:not(.avv-toggle) {
  width: 100%;
}

/* removed */
.tf-grid .column .avv-button.active {
  background-color: var(--avv-primary--color);
}

/* removed */
.tf-container.loading {
  display: none;
}/*
Places that use this code:
  - pagination_component.html.erb
 */
/* removed */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 17px 0;
  border-radius: 4px;
}

/* removed */
.pagination > li {
  display: inline;
}

/* removed */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 5px 10px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #545454;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* removed */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

/* removed */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* removed */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* removed */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: var(--avv-primary--color);
  border-color: var(--avv-primary--color);
}

/* removed */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* removed */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 5px 8px;
  font-size: 15px;
  line-height: 1.3333333;
}

/* removed */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* removed */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* removed */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 2px 4px;
  font-size: 11px;
  line-height: 1.5;
}

/* removed */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* removed */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}/* removed */
.qr td {
  height: 5px;
  width: 5px;
}

/* removed */
.qr .black {
  background-color: black;
}

/* removed */
.qr .white {
  background-color: white;
}

/* removed */
#two_factor p {
  margin: 15px 0 15px 0;
}

/* removed */
#two_factor input {
  margin-top: 15px;
}

/* removed */
a:hover:not(.no-hover) {
  cursor: pointer;
}.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }/*












*/