@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap);

.editr {
  border: 1px solid #e4e4e4;
  width: 100%;
}
.editr--toolbar {
  background: #f6f6f6;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  display: flex;
  height: 32px;
}
.editr--toolbar a {
  display: inline-block;
  width: 8vw;
  max-width: 32px;
  height: 32px;
  color: #333;
  fill: #333;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.editr--toolbar a:hover {
  background: rgba(0,0,0,0.1);
}
.editr--toolbar a:active {
  background: rgba(0,0,0,0.2);
}
.editr--toolbar a svg {
  width: 16px;
  height: 16px;
  margin: 8px auto;
}
.editr--toolbar a svg path {
  fill: inherit;
}
.editr--toolbar a.vw-btn-separator {
  width: 1px;
  margin: 0 8px;
}
.editr--toolbar a.vw-btn-separator:hover {
  background: initial;
  cursor: default;
}
.editr--toolbar a.vw-btn-separator i.vw-separator {
  border-left: 1px solid rgba(0,0,0,0.1);
  height: 100%;
  position: absolute;
  width: 1px;
}
.editr--toolbar .dashboard {
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
  text-align: left;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #f6f6f6;
}
.editr--content {
  min-height: 150px;
  padding: 12px 8px 16px 8px;
  line-height: 1.33;
  font-family: inherit;
  color: inherit;
  overflow-y: auto;
}
.editr--content[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: rgba(0,0,0,0.3);
  display: block; /* For Firefox */
}
.editr--content img {
  max-width: 100%;
}
.editr--content table {
  width: 100%;
  border-collapse: collapse;
}
.editr--content table th {
  text-align: left;
}
.editr--content table th,
.editr--content table td {
  border: 1px solid #ddd;
  padding: 2px;
}
.editr--content:focus {
  outline: 0;
}
.editr--content ul li,
.editr--content ol li {
  list-style-position: inside;
}
@media screen and (max-width: 320px) {
.editr--toolbar a {
    margin: 0 2px;
}
.editr--toolbar a.vw-btn-separator {
    display: none;
}
}/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30% {
    opacity: 1;
    transform: translateY(0px); } }
@keyframes pulse {
  0% {
    transform: scale(1); }
  10% {
    transform: scale(1.1); }
  20% {
    transform: scale(1); } }
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      transform: scale(1.05, 1.05);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }

.vue-dropzone {
  border: 2px solid #E5E5E5;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.2px;
  color: #777;
  transition: background-color 0.2s linear;
}
.vue-dropzone:hover {
  background-color: #F6F6F6;
}
.vue-dropzone i {
  color: #CCC;
}
.vue-dropzone .dz-preview .dz-image {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.vue-dropzone .dz-preview .dz-image img:not([src]) {
  width: 200px;
  height: 200px;
}
.vue-dropzone .dz-preview .dz-image:hover img {
  transform: none;
  -webkit-filter: none;
}
.vue-dropzone .dz-preview .dz-details {
  bottom: 0;
  top: 0;
  color: white;
  background-color: rgba(33, 150, 243, 0.8);
  transition: opacity .2s linear;
  text-align: left;
}
.vue-dropzone .dz-preview .dz-details .dz-filename {
  overflow: hidden;
}
.vue-dropzone .dz-preview .dz-details .dz-filename span,
.vue-dropzone .dz-preview .dz-details .dz-size span {
  background-color: transparent;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: none;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:hover span {
  background-color: transparent;
  border: none;
}
.vue-dropzone .dz-preview .dz-progress .dz-upload {
  background: #cccccc;
}
.vue-dropzone .dz-preview .dz-remove {
  position: absolute;
  z-index: 30;
  color: white;
  margin-left: 15px;
  padding: 10px;
  top: inherit;
  bottom: 15px;
  border: 2px white solid;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  opacity: 0;
}
.vue-dropzone .dz-preview:hover .dz-remove {
  opacity: 1;
}
.vue-dropzone .dz-preview .dz-success-mark,
.vue-dropzone .dz-preview .dz-error-mark {
  margin-left: auto;
  margin-top: auto;
  width: 100%;
  top: 35%;
  left: 0;
}
.vue-dropzone .dz-preview .dz-success-mark svg,
.vue-dropzone .dz-preview .dz-error-mark svg {
  margin-left: auto;
  margin-right: auto;
}
.vue-dropzone .dz-preview .dz-error-message {
  top: calc(15%);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  width: 100%;
}
.vue-dropzone .dz-preview .dz-error-message:after {
  bottom: -6px;
  top: initial;
  border-top: 6px solid #a92222;
  border-bottom: none;
}


.form[data-v-ebce4d12] {
  display: flex;
  align-content: flex-end;
}
.form label[data-v-ebce4d12] {
  margin-right: 1rem;
}
/* base */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -- Fonts ---------- */
/* -- Colors ---------- */
/* -- Distances ---------- */
body {
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1,
.h1 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
}

h2,
.h2 {
  font-size: 35px;
  line-height: 42px;
  font-weight: 400;
}
@media (max-width: 780px) {
  h2,
  .h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

h3 {
  color: #231f20;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  text-transform: lowercase;
  font-variant: small-caps;
}

.h4 {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
}

.h5 {
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 2px solid #231f20;
  padding: 5px 0;
  margin-bottom: 16px;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.h5 svg {
  margin-right: 5px;
  width: 18px;
  opacity: 0.6;
}

p {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 16px;
}

p.error {
  color: #231f20;
  font-size: 14px;
}

p.success {
  color: #86AC99;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: #ffce2e;
}

a.blue-link {
  color: #ffce2e;
}
a.blue-link:hover {
  color: #231f20;
}

.padded {
  padding: 100px 0;
}
@media (max-width: 780px) {
  .padded {
    padding: 50px 0;
  }
}

.block {
  display: block;
}

.nopadding {
  padding: 0 !important;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

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

.justify-right {
  justify-content: flex-start;
}

.justify-left {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.filter {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.filter-blue {
  background: #ffce2e;
}
.filter-light-blue {
  background: #f5f5f5;
}
.filter-red {
  background: #A11E20;
}

.filter-1 {
  opacity: calc( 1 / 100 );
}

.filter-2 {
  opacity: calc( 2 / 100 );
}

.filter-3 {
  opacity: calc( 3 / 100 );
}

.filter-4 {
  opacity: calc( 4 / 100 );
}

.filter-5 {
  opacity: calc( 5 / 100 );
}

.filter-6 {
  opacity: calc( 6 / 100 );
}

.filter-7 {
  opacity: calc( 7 / 100 );
}

.filter-8 {
  opacity: calc( 8 / 100 );
}

.filter-9 {
  opacity: calc( 9 / 100 );
}

.filter-10 {
  opacity: calc( 10 / 100 );
}

.filter-11 {
  opacity: calc( 11 / 100 );
}

.filter-12 {
  opacity: calc( 12 / 100 );
}

.filter-13 {
  opacity: calc( 13 / 100 );
}

.filter-14 {
  opacity: calc( 14 / 100 );
}

.filter-15 {
  opacity: calc( 15 / 100 );
}

.filter-16 {
  opacity: calc( 16 / 100 );
}

.filter-17 {
  opacity: calc( 17 / 100 );
}

.filter-18 {
  opacity: calc( 18 / 100 );
}

.filter-19 {
  opacity: calc( 19 / 100 );
}

.filter-20 {
  opacity: calc( 20 / 100 );
}

.filter-21 {
  opacity: calc( 21 / 100 );
}

.filter-22 {
  opacity: calc( 22 / 100 );
}

.filter-23 {
  opacity: calc( 23 / 100 );
}

.filter-24 {
  opacity: calc( 24 / 100 );
}

.filter-25 {
  opacity: calc( 25 / 100 );
}

.filter-26 {
  opacity: calc( 26 / 100 );
}

.filter-27 {
  opacity: calc( 27 / 100 );
}

.filter-28 {
  opacity: calc( 28 / 100 );
}

.filter-29 {
  opacity: calc( 29 / 100 );
}

.filter-30 {
  opacity: calc( 30 / 100 );
}

.filter-31 {
  opacity: calc( 31 / 100 );
}

.filter-32 {
  opacity: calc( 32 / 100 );
}

.filter-33 {
  opacity: calc( 33 / 100 );
}

.filter-34 {
  opacity: calc( 34 / 100 );
}

.filter-35 {
  opacity: calc( 35 / 100 );
}

.filter-36 {
  opacity: calc( 36 / 100 );
}

.filter-37 {
  opacity: calc( 37 / 100 );
}

.filter-38 {
  opacity: calc( 38 / 100 );
}

.filter-39 {
  opacity: calc( 39 / 100 );
}

.filter-40 {
  opacity: calc( 40 / 100 );
}

.filter-41 {
  opacity: calc( 41 / 100 );
}

.filter-42 {
  opacity: calc( 42 / 100 );
}

.filter-43 {
  opacity: calc( 43 / 100 );
}

.filter-44 {
  opacity: calc( 44 / 100 );
}

.filter-45 {
  opacity: calc( 45 / 100 );
}

.filter-46 {
  opacity: calc( 46 / 100 );
}

.filter-47 {
  opacity: calc( 47 / 100 );
}

.filter-48 {
  opacity: calc( 48 / 100 );
}

.filter-49 {
  opacity: calc( 49 / 100 );
}

.filter-50 {
  opacity: calc( 50 / 100 );
}

.filter-51 {
  opacity: calc( 51 / 100 );
}

.filter-52 {
  opacity: calc( 52 / 100 );
}

.filter-53 {
  opacity: calc( 53 / 100 );
}

.filter-54 {
  opacity: calc( 54 / 100 );
}

.filter-55 {
  opacity: calc( 55 / 100 );
}

.filter-56 {
  opacity: calc( 56 / 100 );
}

.filter-57 {
  opacity: calc( 57 / 100 );
}

.filter-58 {
  opacity: calc( 58 / 100 );
}

.filter-59 {
  opacity: calc( 59 / 100 );
}

.filter-60 {
  opacity: calc( 60 / 100 );
}

.filter-61 {
  opacity: calc( 61 / 100 );
}

.filter-62 {
  opacity: calc( 62 / 100 );
}

.filter-63 {
  opacity: calc( 63 / 100 );
}

.filter-64 {
  opacity: calc( 64 / 100 );
}

.filter-65 {
  opacity: calc( 65 / 100 );
}

.filter-66 {
  opacity: calc( 66 / 100 );
}

.filter-67 {
  opacity: calc( 67 / 100 );
}

.filter-68 {
  opacity: calc( 68 / 100 );
}

.filter-69 {
  opacity: calc( 69 / 100 );
}

.filter-70 {
  opacity: calc( 70 / 100 );
}

.filter-71 {
  opacity: calc( 71 / 100 );
}

.filter-72 {
  opacity: calc( 72 / 100 );
}

.filter-73 {
  opacity: calc( 73 / 100 );
}

.filter-74 {
  opacity: calc( 74 / 100 );
}

.filter-75 {
  opacity: calc( 75 / 100 );
}

.filter-76 {
  opacity: calc( 76 / 100 );
}

.filter-77 {
  opacity: calc( 77 / 100 );
}

.filter-78 {
  opacity: calc( 78 / 100 );
}

.filter-79 {
  opacity: calc( 79 / 100 );
}

.filter-80 {
  opacity: calc( 80 / 100 );
}

.filter-81 {
  opacity: calc( 81 / 100 );
}

.filter-82 {
  opacity: calc( 82 / 100 );
}

.filter-83 {
  opacity: calc( 83 / 100 );
}

.filter-84 {
  opacity: calc( 84 / 100 );
}

.filter-85 {
  opacity: calc( 85 / 100 );
}

.filter-86 {
  opacity: calc( 86 / 100 );
}

.filter-87 {
  opacity: calc( 87 / 100 );
}

.filter-88 {
  opacity: calc( 88 / 100 );
}

.filter-89 {
  opacity: calc( 89 / 100 );
}

.filter-90 {
  opacity: calc( 90 / 100 );
}

.filter-91 {
  opacity: calc( 91 / 100 );
}

.filter-92 {
  opacity: calc( 92 / 100 );
}

.filter-93 {
  opacity: calc( 93 / 100 );
}

.filter-94 {
  opacity: calc( 94 / 100 );
}

.filter-95 {
  opacity: calc( 95 / 100 );
}

.filter-96 {
  opacity: calc( 96 / 100 );
}

.filter-97 {
  opacity: calc( 97 / 100 );
}

.filter-98 {
  opacity: calc( 98 / 100 );
}

.filter-99 {
  opacity: calc( 99 / 100 );
}

.filter-100 {
  opacity: calc( 100 / 100 );
}

.empty {
  margin: 15px 0 0 0;
  padding: 0;
  font-style: italic;
}

.version-identifier {
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: 95%;
  width: 100vw;
  color: #231f20;
}

/* elements */
iframe {
  width: 100%;
}

.filter-banner {
  margin-bottom: 25px;
}
.filter-banner .view-options li {
  display: inline-block;
  margin-right: 5px;
}
.filter-banner .view-options li:last-child {
  margin-right: 0;
}
.filter-banner .view-options .swap-view {
  opacity: 0.5;
  cursor: pointer;
}
.filter-banner .view-options .swap-view:hover {
  opacity: 1;
  color: #231f20;
}
.filter-banner .view-options .swap-view.current {
  opacity: 1;
}

.alert-box-info {
  padding: 25px;
  background-color: #f9f9f9;
  margin-bottom: 25px;
  border-left: 3px solid #231f20;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pagination {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  color: #ffce2e;
  padding: 5px;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}
.pagination .page-numbers:hover {
  color: #231f20;
}
.pagination .current {
  color: #231f20;
}

.go-back-banner {
  overflow: hidden;
}
.go-back-banner .btn-close-text {
  float: right;
}

header {
  background: #ffffff;
  color: #ffffff;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  border-bottom: 1px solid #231f20;
}
@media (max-width: 980px) {
  header {
    padding: 0 25px;
    height: 50px;
  }
}
@media (max-width: 780px) {
  header {
    padding: 0 20px;
  }
}

.app-branding {
  background-color: #fff;
  padding: 10px;
}
.app-branding svg {
  max-width: 70px;
  width: 100%;
}

.profile-link {
  display: flex;
  align-items: center;
}
.profile-link a {
  color: #231f20;
}
.profile-link a:hover {
  text-decoration: underline;
}
.profile-link strong {
  font-weight: 700;
}
@media (max-width: 980px) {
  .profile-link .info {
    display: none;
  }
}

.res-icon {
  display: none;
}
@media (max-width: 980px) {
  .res-icon {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
  }
  .res-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #231f20;
    transition: all 0.2s ease;
  }
  .res-icon span:nth-child(1) {
    top: 0;
  }
  .res-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .res-icon span:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
  }
  .res-icon.active span {
    background: #231f20;
  }
  .res-icon.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .res-icon.active span:nth-child(2) {
    opacity: 0;
  }
  .res-icon.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}

.loading-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 5px 25px;
  font-size: 14px;
  background: #A11E20;
  color: #ffffff;
}

.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 200px;
  height: calc(100% - 60px);
  background: #231f20;
  color: #ffffff;
  padding: 25px 0;
  font-size: 15px;
}
@media (max-width: 1200px) {
  .sidebar {
    width: 200px;
  }
}
@media (max-width: 980px) {
  .sidebar {
    width: 250px;
    top: 50px;
    left: -250px;
    height: calc(100% - 50px);
    z-index: 30;
    transition: all 0.35s ease;
  }
  .sidebar.active {
    left: 0;
  }
}

.main-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 15px 0;
}
.main-nav a img {
  max-width: 25px;
  max-height: 25px;
  width: auto;
  height: auto;
}
.main-nav a span {
  display: inline-block;
  margin-left: 15px;
  transition: color 0.2s ease;
}
.main-nav a svg {
  width: 20px;
  height: auto;
}
.main-nav a:hover, .main-nav a.router-link-exact-active {
  background-color: #ffffff;
  border-left: 5px solid #ffce2e;
}
.main-nav a:hover span, .main-nav a.router-link-exact-active span {
  color: #231f20;
}
@media (max-width: 1200px) {
  .main-nav a img {
    max-width: 20px;
    max-height: 20px;
  }
}

.breadcrumbs-banner {
  background: #f9f9f9;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .breadcrumbs-banner {
    padding: 20px 25px;
  }
}
@media (max-width: 780px) {
  .breadcrumbs-banner {
    padding: 20px;
  }
}

.breadcrumbs {
  flex: 1;
}
.breadcrumbs h1 {
  font-weight: 400;
  font-size: 22px;
  color: #231f20;
}
.breadcrumbs .breadcrumb-list {
  color: #ffce2e;
  margin-top: 10px;
}
.breadcrumbs .breadcrumb-list li {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  padding-left: 6px;
}
.breadcrumbs .breadcrumb-list li:first-child {
  padding-left: 0;
}
.breadcrumbs .breadcrumb-list li:last-child {
  padding-right: 0;
}
.breadcrumbs .breadcrumb-list li:last-child:after {
  content: none;
}
.breadcrumbs .breadcrumb-list li:after {
  position: absolute;
  right: -5px;
  content: ">";
}
@media (max-width: 780px) {
  .breadcrumbs h1 {
    font-size: 22px;
  }
  .breadcrumbs .breadcrumb-list {
    font-size: 14px;
  }
}

.breadcrumbs-actions {
  display: flex;
  align-items: center;
}
.breadcrumbs-actions button {
  margin-right: 15px;
}
.footer-subscribe {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
  padding: 35px 0;
}
.footer-subscribe .container {
  display: flex;
  align-items: center;
  padding: 0 100px;
  position: relative;
  z-index: 1;
}
.footer-subscribe .info {
  flex: 1;
  padding-right: 50px;
}
@media (max-width: 980px) {
  .footer-subscribe .container {
    padding: 0 50px;
  }
}
@media (max-width: 780px) {
  .footer-subscribe .container {
    padding: 0 15px;
    flex-direction: column;
  }
  .footer-subscribe .info {
    padding-right: 0;
  }
  .footer-subscribe .cta {
    text-align: center;
    margin-top: 25px;
  }
}

footer {
  background: #ffce2e;
  color: #ffffff;
  padding: 50px 0;
}
footer .container {
  display: flex;
}
footer .logo-white {
  display: block;
}
footer .logo-color {
  display: none !important;
}
footer a, footer p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #ffffff;
}
@media (max-width: 780px) {
  footer .container {
    flex-direction: column;
  }
}

.footer-info {
  width: 20%;
  padding-right: 20px;
}
.footer-info a {
  display: inline-block;
}
.footer-info a img {
  max-width: 90%;
}
@media (max-width: 980px) {
  .footer-info {
    padding-right: 0;
  }
}
@media (max-width: 780px) {
  .footer-info {
    width: 100%;
    text-align: center;
  }
  .footer-info a img {
    max-width: 125px;
    margin-bottom: 10px;
  }
}

.footer-menus {
  padding: 0 30px;
  width: 60%;
  display: flex;
}
.footer-menus .menu-col {
  flex: 1;
  padding: 10px 20px;
}
.footer-menus h4 {
  font-weight: 400;
}
.footer-menus .footer-menu-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-menus .footer-menu-list li {
  margin-top: 5px;
}
.footer-menus .footer-menu-list li p {
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  font-weight: 300;
  color: #ffffff;
}
@media (max-width: 980px) {
  .footer-menus .menu-col {
    padding: 10px;
  }
}
@media (max-width: 780px) {
  .footer-menus {
    width: 100%;
    text-align: center;
  }
  .footer-menus .menu-col {
    display: none;
  }
  .footer-menus .menu-col:last-child {
    display: block;
  }
}

.footer-account {
  width: 20%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer-account .social-links {
  margin-top: auto;
  text-align: center;
  width: 100%;
}
@media (max-width: 780px) {
  .footer-account {
    width: 100%;
    margin-top: 25px;
  }
  .footer-account .social-links {
    margin-top: 25px;
  }
}

button,
.btn {
  border-radius: 0;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  cursor: pointer;
}

.btn-blue {
  background: #ffce2e;
  color: #ffffff;
  transition: background 0.2s ease;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
}
.btn-blue:hover {
  background: #ffda61;
}

.btn-only-icon {
  padding: 3px 10px 1px 10px;
}
.btn-only-icon img {
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 20px;
}

.btn-close-text {
  background-color: #dfe8eb;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-close-text:hover {
  color: #231f20;
}

.modal--search {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 400;
  display: none;
}
.modal--search .inner {
  width: 80%;
  max-width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal--search .close-search {
  width: 20px;
  display: inline-block;
  position: absolute;
  top: -100px;
  right: 0;
  color: #ffce2e;
  transition: color 0.2s ease;
}
.modal--search .close-search:hover {
  color: #231f20;
}
.modal--search form {
  transition: all 0.4s ease;
  transform: scale(0);
}
.modal--search.active form {
  transform: scale(1);
}

.blank-list, .tag-list, .category-list, .filter-banner .view-options {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  display: inline-block;
}
.category-list li:last-child span {
  display: none;
}
.category-list a {
  color: #999;
  font-size: 14px;
  transition: color 0.2s ease;
}
.category-list a:hover {
  color: #ffce2e;
}

.tag-list {
  margin-top: 10px;
}
.tag-list li {
  display: inline-block;
  margin-right: 5px;
}
.tag-list li:last-child {
  margin-right: 0;
}
.tag-list a {
  padding: 9px 15px;
  border-radius: 3px;
  display: inline-block;
  color: #999;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.15);
  transform: color 0.2s ease;
}
.tag-list a:hover {
  color: #ffce2e;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.faq-list li {
  background: #ffce2e;
  position: relative;
}
.faq-list .cover {
  background-size: cover;
  background-position: center;
  height: 220px;
  position: relative;
}
.faq-list .cover span.type {
  background: #231f20;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  font-size: 14px;
  text-transform: uppercase;
}
.faq-list a:hover {
  display: block;
}
.faq-list a:hover span.fake-btn {
  color: #ffffff;
}
.faq-list .info {
  padding: 16px 32px;
  color: #ffffff;
  padding-bottom: 65px;
}
.faq-list strong {
  line-height: 26px;
  font-size: 18px;
  text-align: center;
  display: block;
}
.faq-list span.fake-btn {
  position: absolute;
  right: 32px;
  bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
  color: #231f20;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.faq-list span.fake-btn svg {
  width: 16px;
  margin-left: 10px;
}
@media (max-width: 780px) {
  .faq-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.type-list {
  margin: 0;
  padding: 0;
}
.type-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 10px;
}
.type-list li:last-child {
  margin-bottom: 0;
}
.type-list .label {
  color: #646464;
  width: 75px;
}
.type-list .cloud {
  display: inline-block;
  background-color: #dfe8eb;
  color: #ffce2e;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 2px;
  margin-right: 5px;
}
.type-list .cloud.dark {
  background: #ffce2e;
  color: #ffffff;
}

.card-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
@media (max-width: 980px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 780px) {
  .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-card {
  background: #ffffff;
}

.card-cover {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 215px;
}

.card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: calc(100% - 215px);
  padding: 15px 15px 20px 15px;
}
.card-info strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}
.card-info span.author {
  display: block;
  margin-bottom: 25px;
}
.card-info p {
  margin-bottom: 35px;
}
.card-info a.cta-link-ghost {
  margin-top: auto;
  align-self: flex-end;
}

.card-list.list-view {
  grid-template-columns: repeat(1, 1fr);
}
.card-list.list-view .single-card {
  display: flex;
}
.card-list.list-view .card-cover {
  width: 300px;
  height: 300px;
}
.card-list.list-view .card-info {
  flex: 1;
  height: auto;
}

input,
textarea,
select {
  font-family: "Open Sans", sans-serif;
  border-radius: 0;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #f5f5f5;
}
input:focus,
textarea:focus,
select:focus {
  outline-color: #f5f5f5 !important;
}

form {
  overflow: hidden;
}
form label {
  color: #231f20;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 12px;
}

.success-message {
  color: #86AC99;
  display: block;
}

.error-message {
  color: red;
  display: block;
}

.input-group {
  display: flex;
  margin-bottom: 5px;
  border: 1px solid #f9f9f9;
}
.input-group .input-group-prepend {
  padding: 10px 15px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group .input-group-prepend svg {
  width: 12px;
  height: 15px;
}
.input-group input {
  background: #ffffff;
  border: none;
  width: 100%;
}

.form-group-wrapper {
  float: left;
  width: 100%;
}

.form-group {
  float: left;
  width: 100%;
  padding: 10px;
}
.form-group.half {
  width: 50%;
}
.form-group.third {
  width: 33.33%;
}
.form-group label {
  display: block;
}
.form-group input,
.form-group select {
  width: 100%;
}
@media (max-width: 780px) {
  .form-group {
    padding: 10px 0;
  }
  .form-group.half {
    width: 100%;
  }
  .form-group.third {
    width: 100%;
  }
}

.btn-group {
  display: flex;
}
.btn-group .btn-blue {
  width: 39px;
  height: 39px;
  margin-bottom: 0;
  outline: none;
}
.btn-group .btn-blue.active {
  background: #231f20;
}

button {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.comment-form {
  display: flex;
  flex-direction: column;
}
.comment-form textarea {
  resize: none;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;
  height: 250px;
}
.comment-form button {
  width: auto;
  align-self: flex-end;
  margin-bottom: 10px;
}

.block-item {
  color: #231f20;
}
.block-item .value {
  font-weight: bold;
}
.block-item strong {
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.download--section {
  margin-bottom: 20px;
}

.block--progress {
  color: #ffffff;
}
.block--progress.color-primary {
  background: #231f20;
}
.block--progress.color-secondary {
  background: #ffce2e;
}
.block--progress .progress {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block--progress .progress .numeric {
  min-width: 50px;
  margin-right: 10px;
}

.progress-bar {
  height: 5px;
  width: 100%;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
.progress-bar .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #4B446B;
}

.block--date-list .date-list span.date {
  color: #231f20;
}
.block--date-list .date-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f9f9f9;
}
.block--date-list .date-list li:last-child {
  border-bottom: 0;
}
.block--date-list .date-list span.title,
.block--date-list .date-list span.date {
  font-weight: 700;
}
.block--date-list .date-list small {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
.block--date-list .date-list.inline li {
  display: flex;
  justify-content: space-between;
}
.block--date-list .date-list.inline li:hover {
  background: #f5f5f5;
}
.block--date-list .date-list.inline span.label {
  font-weight: 300;
}

.block--user-list {
  background: #ffffff;
  padding: 20px 40px;
}
.block--user-list .user-list {
  margin-top: 15px;
  padding-right: 20px;
  max-height: 385px;
  overflow-y: auto;
}
.block--user-list .user-list::-webkit-scrollbar {
  width: 5px;
}
.block--user-list .user-list::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #ffce2e;
}
.block--user-list .user-list li {
  display: flex;
  padding: 15px 0;
  border-bottom: 2px dashed #ffce2e;
}
.block--user-list .user-list li:last-child {
  border-bottom: 0;
}
.block--user-list .avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.block--user-list .intro {
  flex: 1;
  padding-left: 15px;
}
.block--user-list a.name {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}
.block--user-list span.message {
  line-height: 26px;
}
@media (max-width: 780px) {
  .block--user-list {
    padding: 20px;
  }
  .block--user-list .avatar {
    width: 40px;
    height: 40px;
  }
  .block--user-list a.name {
    font-size: 16px;
  }
  .block--user-list span.message {
    line-height: 20px;
    font-size: 14px;
  }
}

.table-no-header {
  /* Ensure checkbox columns align in both tables */
  margin-bottom: 15px;
}
.table-no-header thead {
  display: none !important;
}
.table-no-header td:first-child,
.table-no-header th:first-child {
  width: 60px !important;
  text-align: center;
}

.table {
  width: 100%;
  font-size: 13px;
}
.table th {
  font-weight: 700;
  padding: 15px 5px;
  cursor: pointer;
  text-align: left;
  background-color: #f9f9f9;
}
.table th:nth-child(1) {
  padding-left: 20px;
}
.table th button {
  display: none !important;
}
.table td {
  padding: 15px 5px;
  border-top: 1px solid #f9f9f9;
}
.table td:first-of-type {
  padding-left: 20px;
}
.table.nopadding th:nth-child(1) {
  padding-left: 0 !important;
}
.table.nopadding td:first-of-type {
  padding-left: 0 !important;
}
.table .bold {
  font-weight: bold;
}
@media (max-width: 780px) {
  .table td {
    min-width: 150px;
  }
}

.vgt-wrap tr {
  border-bottom: 1px dotted #f9f9f9;
}

.vgt-global-search {
  text-align: right;
  margin-bottom: 25px;
}

.vgt-input {
  outline-color: #ffce2e !important;
  padding: 5px !important;
}

.vgt-wrap__footer {
  color: #231f20;
  padding: 5px 20px;
  border: 1px solid #f9f9f9;
  background: #f9f9f9;
}

.footer__row-count {
  display: none;
}

.footer__navigation {
  text-align: right;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding: 3px;
  font-size: 12px;
}
.footer__navigation .footer__navigation__info {
  padding: 0 10px;
  display: none !important;
}
.footer__navigation .footer__navigation__page-info {
  display: none !important;
}

.toggle-form {
  font-weight: bold;
  margin-bottom: 0;
  color: #231f20;
  margin-left: 10px;
}

.search-form {
  margin-top: 16px;
}

strong.panel-label {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #ffce2e;
  margin-bottom: 25px;
}
strong.panel-label svg {
  margin-right: 10px;
  width: 15px;
}

.panel {
  margin-bottom: 40px;
  padding: 25px;
  background: #ffffff;
  border-left: 2px solid #231f20;
}
.panel p:last-child {
  margin: 0;
}
.panel-grey {
  border-top: 5px solid #f5f5f5;
}
.panel-green {
  border-top: 5px solid #231f20;
}
@media (max-width: 780px) {
  .panel {
    padding: 20px 10px;
  }
}

/* layouts */
* {
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-size: 15px;
}

::-moz-selection {
  background: #231f20;
  color: #ffffff;
}

::selection {
  background: #231f20;
  color: #ffffff;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
.container.app-container {
  padding: 50px;
}
.container.container-small {
  max-width: 500px;
}
.container.container-lg {
  max-width: 1350px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
  .container.app-container {
    padding: 25px 25px;
  }
}
@media (max-width: 780px) {
  .container.app-container {
    padding: 20px;
  }
}

.res-overflow {
  overflow: hidden;
  overflow-x: scroll;
}

.content-wrapper {
  position: relative;
  padding-left: 200px;
  padding-top: 60px;
}
.content-wrapper.nopadding .container {
  padding: 0 !important;
}
@media (max-width: 1200px) {
  .content-wrapper {
    padding-left: 200px;
  }
}
@media (max-width: 980px) {
  .content-wrapper {
    padding-left: 0;
    padding-top: 50px;
  }
}

.title-section {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.title-section p {
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 780px) {
  .title-section {
    padding: 0 25px;
  }
}

.cta-link, .cta-link-back, .cta-link-ghost, .cta-link-inverse {
  display: inline-block;
  background-color: #231f20;
  color: #ffffff;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  border-radius: 0;
  background-image: url("../images/arrow-right.svg");
  background-size: 15px auto;
  background-position: right 10px center;
  background-repeat: no-repeat;
  transition: all 0.2s ease;
}
.cta-link:hover, .cta-link-back:hover, .cta-link-ghost:hover, .cta-link-inverse:hover {
  background-color: #1e1a1b;
}

.cta-link-inverse {
  background-color: #f5f5f5;
  color: #ffce2e;
  background-image: url("../images/arrow-right-blue.svg");
}
.cta-link-inverse:hover {
  color: #ffffff;
  background-image: url("../images/arrow-right.svg");
}

.cta-link-ghost {
  background-color: transparent;
  color: #231f20;
  border: 1px solid #231f20;
  background-image: url("../images/arrow-right-pink.svg");
}
.cta-link-ghost:hover {
  color: #ffffff;
  background-color: #231f20;
  background-image: url("../images/arrow-right.svg");
}

.cta-link-back {
  padding: 5px 10px 5px 35px;
  background-image: url("../images/arrow-left.svg");
  background-position: left 10px center;
  text-transform: uppercase;
}
.cta-link-back.normal {
  padding: 5px 35px 5px 10px;
  background-position: right 10px center;
  background-image: url("../images/arrow-right.svg");
}

.not-found {
  padding: 100px 0;
  text-align: center;
}

.force-content {
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
}
.force-content img {
  max-width: 100%;
}
.force-content a {
  color: #231f20 !important;
  text-decoration: none !important;
}
.force-content a:hover {
  text-decoration: underline !important;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.auth-logo img {
  max-width: 90%;
  width: 100px;
}

.auth-inner-public {
  width: 90% !important;
  max-width: 650px !important;
  margin: 25px 0;
  /*.vgt-responsive{
      overflow: scroll;
  }*/
}
.auth-inner-public svg {
  max-width: 125px;
}
.auth-inner-public .auth-logo {
  margin-bottom: 15px;
}
.auth-inner-public .table {
  font-size: 13px !important;
}
.auth-inner-public .intro-message {
  margin-bottom: 0;
  font-size: 13px;
  background-color: #f9f9f9;
  border-left: 2px solid #231f20;
  padding: 8px;
  line-height: 1.5;
}
.auth-inner-public .intro-message h2 {
  font-size: 16px;
  font-weight: bold;
}

.auth-inner {
  background: #ffffff;
  padding: 35px 25px;
  width: 350px;
}
.auth-inner svg {
  margin: 0 auto;
  width: 50%;
  height: auto;
}
.auth-inner form {
  margin-top: 35px;
}
.auth-inner button {
  margin-top: 10px;
  font-size: 16px;
}

.auth-nav {
  color: #231f20;
  margin-top: 35px;
  font-size: 14px;
  padding-left: 10px;
  text-align: center;
}
.auth-nav a {
  text-decoration: underline;
}
.auth-nav a:hover {
  text-decoration: none;
}

.two-cols {
  display: grid;
  -moz-column-gap: 20px;
       column-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
}
.two-cols .single-col {
  display: flex;
  flex-direction: column;
}
@media (max-width: 780px) {
  .two-cols {
    display: flex;
    flex-direction: column;
  }
}

.faq-general-info {
  margin-bottom: 40px;
}

.faq-general-content {
  padding: 50px;
  background: #ffffff;
}
.faq-general-content.tickets-panel {
  padding: 0;
}
@media (max-width: 780px) {
  .faq-general-content {
    padding: 20px 10px;
    overflow: hidden;
    overflow-x: scroll;
  }
}

.ticket-statusses {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.ticket-statusses .status-panel {
  width: 30%;
  text-align: center;
  padding: 25px 50px;
  background: #f9f9f9;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.ticket-statusses .status-panel span.big {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-bottom: 25px;
}
.ticket-statusses .status-panel span.big svg {
  margin-right: 10px;
  height: 40px;
  width: 40px;
}
.ticket-statusses .status-panel.green {
  border-left: 3px solid #86AC99;
}
.ticket-statusses .status-panel.green span.big {
  color: #86AC99;
}
.ticket-statusses .status-panel.green a {
  color: #86AC99;
}
.ticket-statusses .status-panel.blue {
  border-left: 3px solid #ffce2e;
}
.ticket-statusses .status-panel.blue span.big {
  color: #ffce2e;
}
.ticket-statusses .status-panel.blue a {
  color: #ffce2e;
}
.ticket-statusses .status-panel.primary {
  border-left: 3px solid #231f20;
}
.ticket-statusses .status-panel.primary span.big {
  color: #231f20;
}
.ticket-statusses .status-panel.primary a {
  color: #231f20;
}
@media (max-width: 980px) {
  .ticket-statusses .status-panel {
    width: 32%;
  }
}
@media (max-width: 780px) {
  .ticket-statusses {
    flex-direction: column;
  }
  .ticket-statusses .status-panel {
    margin-bottom: 10px;
    width: 100%;
  }
}

.ticket--general {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.ticket--general .col {
  width: 19%;
  background: #ffffff;
  border-top: 5px solid #ffce2e;
  padding: 25px;
  text-align: center;
}
.ticket--general .col small {
  display: block;
  margin-bottom: 10px;
}
.ticket--general .col strong {
  font-weight: 700;
}
@media (max-width: 1100px) {
  .ticket--general .col {
    padding: 20px 10px;
  }
}
@media (max-width: 780px) {
  .ticket--general {
    flex-wrap: wrap;
  }
  .ticket--general .col {
    border-top: 3px solid #ffce2e;
    width: 49%;
    margin-bottom: 10px;
  }
  .ticket--general .col:last-of-type {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .faq-general-content.tickets-panel {
    overflow: hidden;
    overflow-x: scroll;
  }
}

.event-filter-wrapper, .vgt-global-search {
  padding: 10px;
  margin-bottom: 25px;
  background: #f9f9f9;
  color: #231f20;
  display: flex;
  justify-content: flex-end;
  border-left: 3px solid #231f20;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.lookup-filter-wrapper {
  padding: 10px;
  margin-bottom: 25px;
  background: #f9f9f9;
  color: #231f20;
  border-left: 3px solid #231f20;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 25px;
}
@media (max-width: 2200px) {
  .event-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1980px) {
  .event-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1600px) {
  .event-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1200px) {
  .event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .event-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.event-block {
  padding: 20px;
  background: #f9f9f9;
  color: #ffce2e;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #231f20;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.event-block .top {
  display: flex;
  margin-bottom: 20px;
}
.event-block .top strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  flex: 1;
}
.event-block .top small {
  width: 75px;
  text-align: right;
  line-height: 24px;
}
.event-block .subtitle {
  display: block;
  margin-bottom: 20px;
}
.event-block .bottom {
  display: flex;
  margin-bottom: 25px;
}
.event-block .bottom-part {
  margin-top: auto;
  text-align: center;
}
.event-block .bottom-part .btn-small {
  display: inline-block;
}
.event-block .date {
  width: 50px;
  color: #231f20;
}
.event-block .date span {
  display: block;
}
.event-block .date span.day {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 24px;
}
.event-block a.btn-small {
  font-size: 14px;
}
.event-block .info {
  flex: 1;
  padding-left: 15px;
  font-weight: 300;
}
.event-block .info strong {
  font-weight: 400;
  text-decoration: underline;
}
.event-block .info address {
  line-height: 22px;
  margin: 5px 0 10px 0;
}
.event-block .subscribe-until {
  text-align: right;
  padding-left: 10px;
  width: 33%;
}
.event-block .subscribe-until p {
  font-weight: 700;
  margin: 0;
  line-height: 20px;
}
.event-block a {
  margin-top: auto;
  padding: 10px 35px;
  align-self: center;
}
