.Login[data-v-6f075b99] {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  background-color: #1a1a1a;
}
.LoginForm[data-v-6f075b99] {
  margin-top: -40px;
  min-width: 550px;
  padding: 60px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 20px 20px 50px 10px rgba(255, 255, 255, 0.8);
}
.LoginForm h1[data-v-6f075b99] {
  margin-top: 0;
}
.LoginForm label > p[data-v-6f075b99] {
  margin: 0 0 5px 0;
  font-size: 12px;
}
.LoginForm input[data-v-6f075b99] {
  background: transparent;
  font-size: 14px;
  line-height: 14px;
  color: #000;
  border: 1px solid rgba(102, 94, 94, 0.357);
  text-align: left;
  display: block;
  width: 100%;
  height: 40px;
  outline: none;
  padding: 0 20px;
  margin: 0 0 20px 0;
  border-radius: 16px;
}
.LoginForm input[data-v-6f075b99]:focus {
  outline-offset: 0 !important;
}
.LoginForm input[data-v-6f075b99]:focus::-moz-placeholder {
  color: transparent;
}
.LoginForm input[data-v-6f075b99]:focus::placeholder {
  color: transparent;
}
.LoginForm input[data-v-6f075b99]:focus:-ms-input-placeholder {
  color: transparent;
}
.LoginForm input[data-v-6f075b99]:focus::-ms-input-placeholder {
  color: transparent;
}
.LoginForm input[data-v-6f075b99]::-webkit-credentials-auto-fill-button {
  background-color: white;
  margin: 0;
}
.LoginForm > button[data-v-6f075b99] {
  width: 100%;
  height: 40px;
  background-color: black;
  color: white;
  font-size: 12px;
  line-height: 14px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid black;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.LoginForm > button[data-v-6f075b99]:hover {
  color: black;
  background-color: white;
}
.LoginError[data-v-6f075b99] {
  align-items: center;
  align-self: center;
  color: white;
  text-align: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(0);
  pointer-events: none;
  height: 50px;
  margin-top: 20px;
}
.LoginError--visible[data-v-6f075b99] {
  transform: translateY(-40px);
  opacity: 1;
  pointer-events: all;
}
body[data-v-6f075b99] {
  min-height: 100vh;
  position: relative;
  background-color: #000;
}
body[data-v-6f075b99]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  margin-top: -182px;
  background-size: cover;
  background-repeat: none;
  background-position: center bottom;
}
body[data-v-6f075b99]:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 176px;
  height: 240px;
  z-index: -1;
}

.BackView[data-v-12e64aa4] {
  position: absolute;
  top: 30px;
  right: 30px;
  transition: opacity 0.2s ease;
}
.BackView[data-v-12e64aa4]:hover {
  opacity: 0.7;
}
.BackViewButton[data-v-12e64aa4] {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.BackViewButton svg[data-v-12e64aa4] {
  width: 100%;
  height: 100%;
}

.EditView[data-v-a847f3b0] {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.EditView[data-v-a847f3b0]:hover {
  opacity: 0.7;
}
.EditViewButton[data-v-a847f3b0] {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 35px;
  height: 35px;
  padding: 5px;
  border: 1px solid #000;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
}
.EditViewButton svg[data-v-a847f3b0] {
  width: 100%;
  height: 100%;
  display: block;
  transition: fill 0.2s;
  fill: #000;
  padding-top: 1px;
}

.HideView[data-v-2d6ce4be] {
  position: absolute;
  background: white;
  top: 5px;
  left: -50px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
}
.HideViewButton[data-v-2d6ce4be] {
  display: block;
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}
.HideViewButton[data-v-2d6ce4be]:hover {
  opacity: 0.7;
}
.HideViewButton svg[data-v-2d6ce4be] {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: fill 0.2s;
  fill: #000;
}

.PinView[data-v-9d67cbde] {
  position: absolute;
  background: #F4F3F1;
  top: 10px;
  right: 10px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #dddfdf;
}
.PinView svg[data-v-9d67cbde] {
  width: 22px;
  height: 13px;
  display: inline-block;
  fill: #000;
}
.PinView:hover .PinViewButton[data-v-9d67cbde] {
  opacity: 0.7;
}
.PinView--pinned[data-v-9d67cbde] {
  background: #000;
}
.PinView--pinned .PinViewButton svg[data-v-9d67cbde] {
  fill: #F4F3F1;
}
.PinViewButton[data-v-9d67cbde] {
  display: block;
  position: relative;
  padding: 10px 8px 9px 8px;
  transition: opacity 0.2s;
}
.PinViewButton[data-v-9d67cbde]:after {
  display: none;
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  transform: rotate(45deg);
  transform-origin: 0 0;
  width: 28px;
  height: 0;
  border-top: 2px solid #000;
}

.InputView {
  position: relative;
  margin-top: 25px;
  width: 100%;
}
.InputViewRequired {
  color: #A6A6A6;
  position: absolute;
  bottom: 9px;
  left: -23px;
}
.InputViewLabel {
  color: black;
  font-size: 12px;
  line-height: 16px;
}
.InputViewInput {
  display: block;
  width: 100%;
  outline: none;
  border: 1px solid #B3B3B3;
  padding: 12px 15px;
  font-weight: 400;
  color: #000;
  background-color: transparent;
  font-size: 12px;
  line-height: 16px;
  margin-top: 10px;
}
.InputViewInput::-moz-placeholder {
  color: #B3B3B3;
}
.InputViewInput::placeholder {
  color: #B3B3B3;
}
.InputViewButton {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 15px;
  background-color: black;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.InputViewButton:hover {
  opacity: 0.7;
}
.InputView.rubric,
.InputView.client {
  margin: 0;
}
.InputView.rubric .InputViewInput,
.InputView.client .InputViewInput {
  margin: 0;
  border-color: transparent;
}
.InputView--error .InputViewRequired {
  color: #F5371F;
}
.InputView--error .InputViewInput {
  border-color: #F00;
}
.u-ShowErrors .InputView.u-ErrorView .InputViewInput {
  border-color: red;
}

.CheckboxView {
  width: -moz-fit-content;
  width: fit-content;
}
.CheckboxView-wrapper {
  position: relative;
}
.CheckboxViewLabel {
  display: flex;
  align-items: center;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.CheckboxViewLabel span {
  display: block;
  padding-left: 10px;
  font-size: 12px;
  line-height: 16px;
}
.CheckboxViewLabel span:before {
  content: " ";
  position: absolute;
  left: 4px;
  bottom: 8px;
  width: 12px;
  height: 8px;
  border-color: black;
  border-width: 0 0 1px 1px;
  border-style: solid;
  transform: rotate(-45deg);
  opacity: 0;
}
.CheckboxViewLabel:before {
  content: " ";
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px black solid;
}
.CheckboxViewInput {
  display: none;
  visibility: hidden;
}
.CheckboxViewInput:checked + span:before {
  opacity: 1;
}
.u-ShowErrors .CheckboxView.u-ErrorView .CheckboxViewInput {
  border-color: red;
}

.TextareaView {
  position: relative;
  margin-top: 25px;
  width: 100%;
}
.TextareaViewRequired {
  color: #A6A6A6;
  position: absolute;
  top: 20px;
  left: -23px;
}
.TextareaViewLabel {
  color: black;
  font-size: 12px;
  line-height: 16px;
}
.TextareaViewInput {
  display: block;
  width: 100%;
  outline: none;
  border: 1px solid #B3B3B3;
  padding: 12px 15px;
  font-weight: 400;
  color: #000;
  background-color: transparent;
  font-size: 12px;
  line-height: 16px;
  margin-top: 10px;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
}
.TextareaViewInput::-moz-placeholder {
  color: #B3B3B3;
}
.TextareaViewInput::placeholder {
  color: #B3B3B3;
}
.TextareaView--error .TextareaViewRequired {
  color: #F5371F;
}
.TextareaView--error .TextareaViewInput {
  border-bottom-color: #F5371F;
}

@font-face {
  font-family: 'Graphik LCG';
  src: url('/static/fonts/GraphikLCG.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
body {
  min-width: 768px;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "kern" 1;
  font-feature-settings: "kern";
}
h1 {
  margin: 0 10px 10px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #808080;
}
h1.focus {
  color: black;
}
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}
div.header {
  border-bottom: 1px solid black;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
div.header > a {
  font-size: 24px;
  line-height: 32px;
  margin: 0 10px 10px 0;
  color: #808080;
  text-decoration: none;
  transition: opacity 0.3s ease;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
div.header > a:hover {
  color: black;
}
div.header h1 {
  white-space: nowrap;
}
.button-add {
  width: 100%;
  color: white;
  background-color: black;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-add:hover {
  color: black;
  background-color: white;
}
.button-remove {
  width: 100%;
  background-color: #5E0000;
  color: white;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-remove:hover {
  color: black;
  background-color: white;
}
.button-publish {
  width: 100%;
  color: white;
  background-color: #E8E8E8;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-publish.active {
  border-color: black;
  background-color: black;
  color: white;
  pointer-events: all;
}
.button-publish.active:hover {
  color: black;
  background-color: white;
}
.button-unpublish {
  width: 100%;
  color: white;
  background-color: white;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-unpublish.active {
  border-color: black;
  color: black;
  pointer-events: all;
}
.button-unpublish.active:hover {
  color: white;
  background-color: black;
}
.separator {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 20px 0 60px;
}
.u-Content {
  border: solid 1px #000;
  padding: 20px 58px 20px 20px;
  margin: 0 0 40px;
  position: relative;
  background: #FFF;
}
.u-Buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  z-index: 99999;
}
.u-ButtonsCancel,
.u-ButtonsSave {
  padding: 13px 0 17px 0;
  border: 1px solid #000;
  width: 150px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.u-ButtonsCancel {
  background-color: #FFF;
  color: #000;
}
.u-ButtonsSave {
  background-color: #000;
  color: #FFF;
}
.u-FormItem {
  margin-bottom: 20px;
}
.u-FormItem:last-child {
  margin-bottom: 0;
}
.u-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  background-color: #000;
  opacity: 0.9;
  min-width: 1440px;
  cursor: pointer;
}
.u-close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.u-close svg {
  width: 20px;
  height: 20px;
}
.u-close:hover {
  opacity: 0.7;
}
.SaveView {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 19px 0 20px 40px;
  text-align: center;
  z-index: 100;
  transition: transform 0.3s;
  transform: translateY(100px);
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  height: 82px;
}
.SaveViewSaved {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  bottom: 100px;
  color: black;
  text-align: center;
  letter-spacing: 0;
  transition: transform 0.3s;
  transform: translateY(30px);
}
.SaveViewPast {
  padding: 22px 45px 22px 56px !important;
}
.SaveViewDelete {
  padding: 22px 82px 22px 64px !important;
  border-left: 1px solid #1A1A1A;
}
.SaveViewDelete > svg {
  fill: #F5371F;
}
.SaveViewDelete.new {
  opacity: 0;
  pointer-events: none;
}
.SaveViewHide {
  border-left: 1px #979797 solid;
}
.SaveView--fixed {
  position: fixed;
  text-align: left;
  border: none;
  font-size: 0;
  padding: 0;
  bottom: -100px;
  transition: all 0.3s;
  transform: unset;
  color: black;
}
.SaveView--fixed .SaveViewButtons {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  position: relative;
  transition: transform 0.3s;
  transform: translateY(100px);
  margin: 11px auto;
  height: 100%;
  padding-right: 20px;
}
.SaveView--fixed .SaveViewButtons-box {
  display: flex;
}
.SaveView--fixed .SaveViewButtons-box > button {
  position: relative;
  width: auto;
  font-size: 12px;
  line-height: 16px;
  padding: 12px 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  height: 40px;
  border: 1px solid black;
}
.SaveView--fixed .SaveViewButtons-box > button:hover {
  opacity: 0.6;
}
.SaveView--fixed .SaveViewButtons-box > button.SaveViewSave {
  background-color: black;
  color: white;
  white-space: nowrap;
  min-width: 160px;
}
.SaveView--fixed .SaveViewButtons-box > button.SaveViewCancel {
  background-color: white;
  color: black;
}
.SaveView--fixed .SaveViewCancel {
  margin: 0;
}
.SaveView.visible {
  transform: none;
  bottom: 0;
}
.SaveView--fixed.visible .SaveViewButtons {
  transform: none;
}
.SaveView--fixed.saved .SaveViewSaved {
  transform: none;
}
.SaveViewCancel {
  margin-right: 63px;
}
.SaveViewLoader {
  position: absolute !important;
  top: 5px;
  left: 64px;
}
.svg--oval {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  fill: #FFF;
}

.MediumEditor {
  position: relative;
  margin-top: 25px;
  width: 100%;
}
.MediumEditorRequired {
  color: #A6A6A6;
  position: absolute;
  top: 20px;
  left: -23px;
}
.MediumEditorLabel {
  display: flex;
  justify-content: space-between;
  color: black;
  font-size: 12px;
  line-height: 16px;
}
.MediumEditorLabel > p {
  margin: 0;
}
.MediumEditorInput {
  display: block;
  min-width: 710px;
  width: 100%;
  outline: none;
  border: 1px solid #B3B3B3;
  font-weight: normal;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  padding: 12px 15px;
  margin: 10px 0 0;
  color: #000;
}
.MediumEditorInput p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 16px;
}
.MediumEditorInput p:last-child {
  margin: 0;
}
.MediumEditorInput a {
  color: black;
  border-bottom: 1px solid black;
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
}
.MediumEditorInput ul {
  padding-left: 15px;
  list-style-type: disc;
}
.MediumEditorInput ul > li {
  position: relative;
  padding-left: 3px;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 16px;
}
.MediumEditorInput ol {
  padding-left: 18px;
}
.MediumEditorInput ol > li {
  position: relative;
  padding-left: 3px;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 16px;
}
.MediumEditor--error .TextareaViewRequired {
  color: #F5371F;
}
.MediumEditor--error .TextareaViewInput {
  border-bottom-color: #F5371F;
}
.MediumEditorIcon {
  fill: white;
  height: 12px;
}
.MediumEditorIcon-bold {
  width: 9px;
}
.MediumEditorIcon-italic {
  width: 6px;
}
.MediumEditorIcon-link {
  width: 27px;
}
.MediumEditorIcon-ol {
  width: 36px;
}
.MediumEditorIcon-ul {
  width: 30px;
}
.MediumEditorIcon-list {
  width: 36px;
}
.MediumEditorIcon-eraser {
  width: 13px;
}
.medium-editor-button-active .MediumEditorIcon {
  fill: #F5371F;
}
.medium-editor-toolbar li button:hover .MediumEditorIcon {
  fill: #F5371F;
}
.MediumEditor--stats {
  overflow: hidden;
}
.MediumEditor--stats .MediumEditorInput {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #000;
  min-height: 50px !important;
  max-height: 50px !important;
  overflow: scroll;
  display: grid;
  align-items: center;
}
.MediumEditor--stats .MediumEditorInput p {
  margin: 0;
}
.MediumEditor--stats .MediumEditorInput:after {
  top: 10px;
}
.medium-editor-toolbar {
  background: #000 !important;
  border-radius: 0 !important;
  padding: 0 0 0 20px !important;
  height: 30px !important;
}
.medium-editor-toolbar > ul {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  grid-gap: 20px !important;
  gap: 20px !important;
}
.medium-editor-toolbar li button.medium-editor-action {
  display: flex;
  justify-content: center;
  align-items: center;
}
.medium-editor-anchor-preview a {
  margin: 5px 5px 7px;
}
.medium-toolbar-arrow-under:after {
  border-width: 0 !important;
}
.medium-editor-toolbar li button {
  background: #000 !important;
  padding: 0 !important;
  height: 10px !important;
  min-width: auto !important;
  padding: 15px 0 8px !important;
}
.medium-editor-placeholder-relative:after,
.medium-editor-placeholder:after {
  margin: 0 !important;
  padding: inherit !important;
  font-style: inherit !important;
  font-weight: inherit !important;
  color: #A6A6A6 !important;
}

@font-face {
  font-family: 'Graphik LCG';
  src: url('/static/fonts/GraphikLCG.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
*[data-v-48287430],
*[data-v-48287430]:after,
*[data-v-48287430]:before {
  box-sizing: border-box;
}
body[data-v-48287430] {
  min-width: 768px;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "kern" 1;
  font-feature-settings: "kern";
}
h1[data-v-48287430] {
  margin: 0 10px 10px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #808080;
}
h1.focus[data-v-48287430] {
  color: black;
}
button[data-v-48287430] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}
div.header[data-v-48287430] {
  border-bottom: 1px solid black;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
div.header > a[data-v-48287430] {
  font-size: 24px;
  line-height: 32px;
  margin: 0 10px 10px 0;
  color: #808080;
  text-decoration: none;
  transition: opacity 0.3s ease;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
div.header > a[data-v-48287430]:hover {
  color: black;
}
div.header h1[data-v-48287430] {
  white-space: nowrap;
}
.button-add[data-v-48287430] {
  width: 100%;
  color: white;
  background-color: black;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-add[data-v-48287430]:hover {
  color: black;
  background-color: white;
}
.button-remove[data-v-48287430] {
  width: 100%;
  background-color: #5E0000;
  color: white;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-remove[data-v-48287430]:hover {
  color: black;
  background-color: white;
}
.button-publish[data-v-48287430] {
  width: 100%;
  color: white;
  background-color: #E8E8E8;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-publish.active[data-v-48287430] {
  border-color: black;
  background-color: black;
  color: white;
  pointer-events: all;
}
.button-publish.active[data-v-48287430]:hover {
  color: black;
  background-color: white;
}
.button-unpublish[data-v-48287430] {
  width: 100%;
  color: white;
  background-color: white;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-unpublish.active[data-v-48287430] {
  border-color: black;
  color: black;
  pointer-events: all;
}
.button-unpublish.active[data-v-48287430]:hover {
  color: white;
  background-color: black;
}
.separator[data-v-48287430] {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 20px 0 60px;
}
.u-Content[data-v-48287430] {
  border: solid 1px #000;
  padding: 20px 58px 20px 20px;
  margin: 0 0 40px;
  position: relative;
  background: #FFF;
}
.u-Buttons[data-v-48287430] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  z-index: 99999;
}
.u-ButtonsCancel[data-v-48287430],
.u-ButtonsSave[data-v-48287430] {
  padding: 13px 0 17px 0;
  border: 1px solid #000;
  width: 150px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.u-ButtonsCancel[data-v-48287430] {
  background-color: #FFF;
  color: #000;
}
.u-ButtonsSave[data-v-48287430] {
  background-color: #000;
  color: #FFF;
}
.u-FormItem[data-v-48287430] {
  margin-bottom: 20px;
}
.u-FormItem[data-v-48287430]:last-child {
  margin-bottom: 0;
}
.u-back[data-v-48287430] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  background-color: #000;
  opacity: 0.9;
  min-width: 1440px;
  cursor: pointer;
}
.u-close[data-v-48287430] {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.u-close svg[data-v-48287430] {
  width: 20px;
  height: 20px;
}
.u-close[data-v-48287430]:hover {
  opacity: 0.7;
}
.ImageUploadView[data-v-48287430] {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.ImageUploadView.isLoader[data-v-48287430]:before {
  content: ' ';
  display: block;
  width: 70px;
  height: 70px;
  border: 8.75px solid black;
  border-right-color: transparent;
  border-radius: 50%;
  animation: loading-animation-spin-48287430 1000ms infinite linear;
  position: absolute;
  top: calc(50% - 70px / 2);
  left: calc(50% - 70px / 2);
  z-index: 100;
}
@keyframes loading-animation-spin-48287430 {
to {
    transform: rotate(1turn);
}
}
.ImageUploadViewInner[data-v-48287430] {
  position: relative;
  background-color: white;
  border: 1px solid black;
}
.ImageUploadViewLabel[data-v-48287430] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}
.ImageUploadViewLabel:hover .ImageUploadViewLabelContent[data-v-48287430] {
  background-color: rgba(217, 217, 217, 0.25);
}
.ImageUploadViewLabelContent[data-v-48287430] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.ImageUploadViewLabelText[data-v-48287430] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: black;
  width: 100%;
}
.ImageUploadViewInput[data-v-48287430] {
  display: none;
}
.ImageUploadViewPreview[data-v-48287430] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.ImageUploadViewCaption[data-v-48287430] {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  color: black;
  margin-bottom: 10px;
}
.ImageUploadView--withRemove .RemoveView[data-v-48287430] {
  top: 10px;
  left: auto;
  right: 10px;
}
.ImageUploadView--withRemove .RemoveView[data-v-48287430] .RemoveViewButton {
  width: 20px;
  height: 20px;
}
.ImageUploadView--withRemove .EditView[data-v-48287430] {
  right: 60px !important;
}
.ImageUploadView--error .ImageUploadViewLabel[data-v-48287430] {
  border: 1px solid #F5371F;
}
.u-ShowErrors .ImageUploadView.u-ErrorView .ImageUploadViewInner[data-v-48287430] {
  border: 1px solid red;
}

@font-face {
  font-family: 'Graphik LCG';
  src: url('/static/fonts/GraphikLCG.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
*[data-v-57d2e254],
*[data-v-57d2e254]:after,
*[data-v-57d2e254]:before {
  box-sizing: border-box;
}
body[data-v-57d2e254] {
  min-width: 768px;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "kern" 1;
  font-feature-settings: "kern";
}
h1[data-v-57d2e254] {
  margin: 0 10px 10px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #808080;
}
h1.focus[data-v-57d2e254] {
  color: black;
}
button[data-v-57d2e254] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}
div.header[data-v-57d2e254] {
  border-bottom: 1px solid black;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
div.header > a[data-v-57d2e254] {
  font-size: 24px;
  line-height: 32px;
  margin: 0 10px 10px 0;
  color: #808080;
  text-decoration: none;
  transition: opacity 0.3s ease;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
div.header > a[data-v-57d2e254]:hover {
  color: black;
}
div.header h1[data-v-57d2e254] {
  white-space: nowrap;
}
.button-add[data-v-57d2e254] {
  width: 100%;
  color: white;
  background-color: black;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-add[data-v-57d2e254]:hover {
  color: black;
  background-color: white;
}
.button-remove[data-v-57d2e254] {
  width: 100%;
  background-color: #5E0000;
  color: white;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-remove[data-v-57d2e254]:hover {
  color: black;
  background-color: white;
}
.button-publish[data-v-57d2e254] {
  width: 100%;
  color: white;
  background-color: #E8E8E8;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-publish.active[data-v-57d2e254] {
  border-color: black;
  background-color: black;
  color: white;
  pointer-events: all;
}
.button-publish.active[data-v-57d2e254]:hover {
  color: black;
  background-color: white;
}
.button-unpublish[data-v-57d2e254] {
  width: 100%;
  color: white;
  background-color: white;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-unpublish.active[data-v-57d2e254] {
  border-color: black;
  color: black;
  pointer-events: all;
}
.button-unpublish.active[data-v-57d2e254]:hover {
  color: white;
  background-color: black;
}
.separator[data-v-57d2e254] {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 20px 0 60px;
}
.u-Content[data-v-57d2e254] {
  border: solid 1px #000;
  padding: 20px 58px 20px 20px;
  margin: 0 0 40px;
  position: relative;
  background: #FFF;
}
.u-Buttons[data-v-57d2e254] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  z-index: 99999;
}
.u-ButtonsCancel[data-v-57d2e254],
.u-ButtonsSave[data-v-57d2e254] {
  padding: 13px 0 17px 0;
  border: 1px solid #000;
  width: 150px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.u-ButtonsCancel[data-v-57d2e254] {
  background-color: #FFF;
  color: #000;
}
.u-ButtonsSave[data-v-57d2e254] {
  background-color: #000;
  color: #FFF;
}
.u-FormItem[data-v-57d2e254] {
  margin-bottom: 20px;
}
.u-FormItem[data-v-57d2e254]:last-child {
  margin-bottom: 0;
}
.u-back[data-v-57d2e254] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  background-color: #000;
  opacity: 0.9;
  min-width: 1440px;
  cursor: pointer;
}
.u-close[data-v-57d2e254] {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.u-close svg[data-v-57d2e254] {
  width: 20px;
  height: 20px;
}
.u-close[data-v-57d2e254]:hover {
  opacity: 0.7;
}
.VideoUploadView[data-v-57d2e254] {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.VideoUploadView.isLoader[data-v-57d2e254]:before {
  content: ' ';
  display: block;
  width: 70px;
  height: 70px;
  border: 8.75px solid white;
  border-right-color: transparent;
  border-radius: 50%;
  animation: loading-animation-spin-57d2e254 1000ms infinite linear;
  position: absolute;
  top: calc(50% - 70px / 2);
  left: calc(50% - 70px / 2);
  z-index: 100;
}
@keyframes loading-animation-spin-57d2e254 {
to {
    transform: rotate(1turn);
}
}
.VideoUploadViewInner[data-v-57d2e254] {
  position: relative;
  background-color: white;
  font-size: 12px;
  line-height: 16px;
  z-index: 100;
}
.VideoUploadViewInner-copy[data-v-57d2e254] {
  position: absolute;
  top: 5px;
  right: 40px;
  width: 28px;
  height: 28px;
  padding: 5px;
  z-index: 300;
  border-radius: 50%;
  border: 1px solid black;
  cursor: pointer;
}
.VideoUploadViewInner-copy[data-v-57d2e254]:hover {
  opacity: 0.7;
}
.VideoUploadViewInner-copy > svg[data-v-57d2e254] {
  width: 100%;
  height: 100%;
}
.VideoUploadViewLabel[data-v-57d2e254] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.VideoUploadViewLabel[data-v-57d2e254]:hover {
  background-color: black;
}
.VideoUploadViewLabel:hover .VideoUploadViewLabelText[data-v-57d2e254] {
  color: white;
}
.VideoUploadViewLabelContent[data-v-57d2e254] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.VideoUploadViewLabelText[data-v-57d2e254] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: black;
  width: 100%;
  transition: color 0.3s ease;
}
.VideoUploadViewLabelText.fileUrl[data-v-57d2e254] {
  top: 0;
  left: 15px;
  transform: none;
  width: -moz-fit-content;
  width: fit-content;
}
.VideoUploadViewInput[data-v-57d2e254] {
  display: none;
}
.VideoUploadViewPreview[data-v-57d2e254] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid black;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
}
.VideoUploadViewCaption[data-v-57d2e254] {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  color: black;
  margin-bottom: 10px;
}
.VideoUploadView--withRemove .RemoveView[data-v-57d2e254] {
  top: 9px;
  left: auto;
  right: 15px;
}
.VideoUploadView--withRemove .RemoveView[data-v-57d2e254] .RemoveViewButton {
  width: 20px;
  height: 20px;
}
.VideoUploadView--withRemove[data-v-57d2e254] .RemoveViewButton {
  width: 28px;
  height: 28px;
}
.VideoUploadView--withRemove .EditView[data-v-57d2e254] {
  right: 60px !important;
}
.VideoUploadView--error .VideoUploadViewLabel[data-v-57d2e254] {
  border: 1px solid #F5371F;
}
.u-ShowErrors .VideoUploadView.u-ErrorView .VideoUploadViewInner[data-v-57d2e254] {
  border: 1px solid red;
}

@font-face {
  font-family: 'Graphik LCG';
  src: url('/static/fonts/GraphikLCG.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
*[data-v-18fc7b17],
*[data-v-18fc7b17]:after,
*[data-v-18fc7b17]:before {
  box-sizing: border-box;
}
body[data-v-18fc7b17] {
  min-width: 768px;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "kern" 1;
  font-feature-settings: "kern";
}
h1[data-v-18fc7b17] {
  margin: 0 10px 10px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #808080;
}
h1.focus[data-v-18fc7b17] {
  color: black;
}
button[data-v-18fc7b17] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}
div.header[data-v-18fc7b17] {
  border-bottom: 1px solid black;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
div.header > a[data-v-18fc7b17] {
  font-size: 24px;
  line-height: 32px;
  margin: 0 10px 10px 0;
  color: #808080;
  text-decoration: none;
  transition: opacity 0.3s ease;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
div.header > a[data-v-18fc7b17]:hover {
  color: black;
}
div.header h1[data-v-18fc7b17] {
  white-space: nowrap;
}
.button-add[data-v-18fc7b17] {
  width: 100%;
  color: white;
  background-color: black;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-add[data-v-18fc7b17]:hover {
  color: black;
  background-color: white;
}
.button-remove[data-v-18fc7b17] {
  width: 100%;
  background-color: #5E0000;
  color: white;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-remove[data-v-18fc7b17]:hover {
  color: black;
  background-color: white;
}
.button-publish[data-v-18fc7b17] {
  width: 100%;
  color: white;
  background-color: #E8E8E8;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-publish.active[data-v-18fc7b17] {
  border-color: black;
  background-color: black;
  color: white;
  pointer-events: all;
}
.button-publish.active[data-v-18fc7b17]:hover {
  color: black;
  background-color: white;
}
.button-unpublish[data-v-18fc7b17] {
  width: 100%;
  color: white;
  background-color: white;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-unpublish.active[data-v-18fc7b17] {
  border-color: black;
  color: black;
  pointer-events: all;
}
.button-unpublish.active[data-v-18fc7b17]:hover {
  color: white;
  background-color: black;
}
.separator[data-v-18fc7b17] {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 20px 0 60px;
}
.u-Content[data-v-18fc7b17] {
  border: solid 1px #000;
  padding: 20px 58px 20px 20px;
  margin: 0 0 40px;
  position: relative;
  background: #FFF;
}
.u-Buttons[data-v-18fc7b17] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  z-index: 99999;
}
.u-ButtonsCancel[data-v-18fc7b17],
.u-ButtonsSave[data-v-18fc7b17] {
  padding: 13px 0 17px 0;
  border: 1px solid #000;
  width: 150px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.u-ButtonsCancel[data-v-18fc7b17] {
  background-color: #FFF;
  color: #000;
}
.u-ButtonsSave[data-v-18fc7b17] {
  background-color: #000;
  color: #FFF;
}
.u-FormItem[data-v-18fc7b17] {
  margin-bottom: 20px;
}
.u-FormItem[data-v-18fc7b17]:last-child {
  margin-bottom: 0;
}
.u-back[data-v-18fc7b17] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  background-color: #000;
  opacity: 0.9;
  min-width: 1440px;
  cursor: pointer;
}
.u-close[data-v-18fc7b17] {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.u-close svg[data-v-18fc7b17] {
  width: 20px;
  height: 20px;
}
.u-close[data-v-18fc7b17]:hover {
  opacity: 0.7;
}
.FileUploadView[data-v-18fc7b17] {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  margin-top: 25px;
}
.FileUploadView.isLoader[data-v-18fc7b17]:before {
  content: ' ';
  display: block;
  width: 70px;
  height: 70px;
  border: 8.75px solid white;
  border-right-color: transparent;
  border-radius: 50%;
  animation: loading-animation-spin-18fc7b17 1000ms infinite linear;
  position: absolute;
  top: calc(50% - 70px / 2);
  left: calc(50% - 70px / 2);
  z-index: 100;
}
@keyframes loading-animation-spin-18fc7b17 {
to {
    transform: rotate(1turn);
}
}
.FileUploadViewInner[data-v-18fc7b17] {
  position: relative;
  background-color: white;
  font-size: 12px;
  line-height: 16px;
  z-index: 100;
}
.FileUploadViewInner-copy[data-v-18fc7b17] {
  position: absolute;
  top: 5px;
  right: 40px;
  width: 28px;
  height: 28px;
  padding: 5px;
  z-index: 300;
  border-radius: 50%;
  border: 1px solid black;
  cursor: pointer;
}
.FileUploadViewInner-copy[data-v-18fc7b17]:hover {
  opacity: 0.7;
}
.FileUploadViewInner-copy > svg[data-v-18fc7b17] {
  width: 100%;
  height: 100%;
}
.FileUploadViewLabel[data-v-18fc7b17] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.FileUploadViewLabel[data-v-18fc7b17]:hover {
  background-color: black;
}
.FileUploadViewLabel:hover .FileUploadViewLabelText[data-v-18fc7b17] {
  color: white;
}
.FileUploadViewLabelContent[data-v-18fc7b17] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.FileUploadViewLabelText[data-v-18fc7b17] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: black;
  width: 100%;
  transition: color 0.3s ease;
}
.FileUploadViewLabelText.fileUrl[data-v-18fc7b17] {
  top: 12px;
  left: 15px;
  transform: none;
  width: -moz-fit-content;
  width: fit-content;
}
.FileUploadViewLabelText.fileUrl p[data-v-18fc7b17] {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}
.FileUploadViewInput[data-v-18fc7b17] {
  display: none;
}
.FileUploadViewPreview[data-v-18fc7b17] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid black;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
}
.FileUploadViewCaption[data-v-18fc7b17] {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  color: black;
  margin-bottom: 10px;
}
.FileUploadView--withRemove .RemoveView[data-v-18fc7b17] {
  top: 9px;
  left: auto;
  right: 15px;
}
.FileUploadView--withRemove .RemoveView[data-v-18fc7b17] .RemoveViewButton {
  width: 20px;
  height: 20px;
}
.FileUploadView--withRemove[data-v-18fc7b17] .RemoveViewButton {
  width: 28px;
  height: 28px;
}
.FileUploadView--withRemove .EditView[data-v-18fc7b17] {
  right: 60px !important;
}
.FileUploadView--error .FileUploadViewLabel[data-v-18fc7b17] {
  border: 1px solid #F5371F;
}
.u-ShowErrors .FileUploadView.u-ErrorView .FileUploadViewInner[data-v-18fc7b17] {
  border: 1px solid red;
}

.RemoveView[data-v-56088f42] {
  position: absolute;
  top: 5px;
  left: -50px;
  z-index: 10;
}
.RemoveView[data-v-56088f42]:hover {
  opacity: 0.7;
}
.RemoveViewButton[data-v-56088f42] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
.RemoveViewButton svg[data-v-56088f42] {
  width: 100%;
  height: 100%;
  display: block;
  transition: fill 0.2s;
  fill: #000;
  padding-top: 1px;
}
.RemoveView--top[data-v-56088f42] {
  top: 55px;
}
.RemoveView--center[data-v-56088f42] {
  top: 15px;
}
.RemoveView--bottom[data-v-56088f42] {
  top: auto;
  bottom: 6px;
}

.SortView[data-v-08dbe914] {
  position: absolute;
  top: 5px;
  right: -50px;
  z-index: 10;
}
.SortView svg[data-v-08dbe914] {
  width: 100%;
  height: 100%;
  fill: transparent;
}
.SortView svg[data-v-08dbe914]:hover {
  opacity: 0.7;
}
.SortViewButton[data-v-08dbe914] {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: grab;
  transition: opacity 0.3s ease;
}
.SortView--top[data-v-08dbe914] {
  top: 55px;
}
.SortView--center[data-v-08dbe914] {
  top: 15px;
}
.SortView--bottom[data-v-08dbe914] {
  top: auto;
  bottom: 6px;
}

.PopupView[data-v-0cd92186] {
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.3);
  visibility: hidden;
}
.PopupView.show[data-v-0cd92186] {
  visibility: visible;
}
.PopupViewContent[data-v-0cd92186] {
  background: white;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.14);
  padding: 40px 40px 120px;
}
.PopupViewClose[data-v-0cd92186] {
  position: absolute;
  top: 0;
  right: 0;
  padding: 23px;
  cursor: pointer;
}
.PopupViewClose svg[data-v-0cd92186] {
  width: 24px;
  height: 24px;
  transition: fill 0.2s;
}
.PopupViewClose:hover svg[data-v-0cd92186] {
  fill: #F5371F;
}
.PopupViewTitle[data-v-0cd92186] {
  font: 700 30px/38px 'Graphik LCG', Helvetica, Arial, sans-serif;
  padding: 0 0 32px;
  letter-spacing: -0.05em;
  color: #000;
}

.SelectView[data-v-110935ae] {
  position: relative;
  width: 100%;
  max-height: 66px;
}
.SelectViewLabel[data-v-110935ae] {
  display: block;
  white-space: nowrap;
  font-size: 12px;
  line-height: 16px;
  color: #000;
}
.SelectViewInput[data-v-110935ae] {
  padding: 0 15px;
  background: white;
  border: 1px solid #B3B3B3;
  height: 40px;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-menu {
  overflow: auto !important;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-height: 280px;
  position: absolute;
  margin-top: 1px;
  left: 0;
  right: 0;
  background-color: #FFF;
  z-index: 55;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-option.vs__dropdown-option--highlight {
  cursor: pointer;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-option.vs__dropdown-option--highlight:hover {
  opacity: 0.7;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-option {
  margin: 0 !important;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-option::marker {
  display: none;
  content: none;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-menu li[role=option] {
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  margin-left: 30px;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-menu li[role=option] a {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  padding: 0 10px;
}
.SelectViewInput[data-v-110935ae] .vs__dropdown-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.SelectViewInput[data-v-110935ae] .clear {
  font-size: 20px !important;
  font-weight: normal !important;
  color: #F5371F;
  margin-top: 4px;
  display: none;
}
.SelectViewInput[data-v-110935ae] .dropdown-toggle {
  border: 1px solid #1A1A1A;
  border-radius: 0;
  padding: 1px 4px 7px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.028em;
}
.SelectViewInput[data-v-110935ae] .dropdown-menu {
  overflow: auto !important;
  padding: 0;
  border-radius: 0;
  border-color: #1A1A1A;
  box-shadow: none;
}
.SelectViewInput[data-v-110935ae] .dropdown-menu li[role=option] {
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: -0.028em;
}
.SelectViewInput[data-v-110935ae] .dropdown-menu li[role=option] a {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  padding: 0 10px;
}
.SelectViewInput[data-v-110935ae] .dropdown-menu .active > a {
  background: none;
  color: #4C4C4C;
}
.SelectViewInput[data-v-110935ae] .dropdown-menu > .highlight > a {
  background: none;
  color: #F5371F;
}
.SelectViewInput[data-v-110935ae] .open-indicator:before {
  width: 0;
  height: 0;
  border: 4px solid;
  border-color: black transparent transparent transparent;
  position: relative;
  top: -2px;
  transform: none !important;
}
.SelectViewInput[data-v-110935ae] .open-indicator {
  display: inline-block;
  padding: 0;
  margin: 14px 5px 0 0;
  width: 8px;
  height: 8px;
}
.SelectViewInput.open[data-v-110935ae] .open-indicator {
  transform: rotate(180deg);
}
.SelectViewInput[data-v-110935ae] .no-options {
  font-weight: normal;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0;
  color: #48555d;
}
.SelectViewInput[data-v-110935ae] .selected-tag {
  max-width: calc(100% - 20px);
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  margin-left: 0;
}
.SelectViewInput[data-v-110935ae] .vs__selected {
  flex-shrink: 0;
  padding-right: 5px;
}
.SelectViewInput[data-v-110935ae] .vs__selected-options {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
.SelectViewInput[data-v-110935ae] input[type=search] {
  width: 100%;
  border: none;
  outline: none;
  padding: 11px 0;
  background-image: none !important;
}
.SelectViewInput[data-v-110935ae] input[type=search]::-moz-placeholder {
  color: black;
}
.SelectViewInput[data-v-110935ae] input[type=search]::placeholder {
  color: black;
}
.SelectViewInput[data-v-110935ae] input[type=search]::-webkit-search-decoration,
.SelectViewInput[data-v-110935ae] input[type=search]::-webkit-search-cancel-button,
.SelectViewInput[data-v-110935ae] input[type=search]::-webkit-search-results-button,
.SelectViewInput[data-v-110935ae] input[type=search]::-webkit-search-results-decoration {
  display: none;
}
.SelectViewInput[data-v-110935ae] .vs__open-indicator {
  display: none;
}
.SelectViewInput--error[data-v-110935ae] {
  border-color: #F5371F;
}
.SelectViewEdit[data-v-110935ae] {
  position: absolute;
  top: 3px;
  right: 0;
  font: 12px/30px;
  color: #F5371F;
  transition: opacity 0.2s;
  cursor: pointer;
}
.SelectViewEdit[data-v-110935ae]:hover {
  opacity: 0.7;
}
.SelectViewOption[data-v-110935ae] {
  display: flex;
  align-items: center;
  pointer-events: none;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 16px;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  border-left: 1px solid #E6E6E6;
}
.SelectViewOption--option[data-v-110935ae] {
  padding: 0;
  border: none;
  max-width: 375px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.SelectViewOptionImage[data-v-110935ae] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
  background-color: #B3B3B3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.SelectView--inline .SelectViewInput[data-v-110935ae] .dropdown-toggle {
  border: none;
}
.SelectView--inline .SelectViewInput[data-v-110935ae] .selected-tag {
  color: #F5371F;
}
.SelectView--inline .SelectViewInput[data-v-110935ae] .open-indicator:before {
  border-color: #F5371F transparent transparent transparent;
}
.SelectView .svg--arrow[data-v-110935ae] {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 15px;
  height: 8px;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.SelectView .svg--arrow.open[data-v-110935ae] {
  transform: rotate(180deg);
}
.SelectViewLabel + .SelectViewInput[data-v-110935ae] {
  margin: 10px 0 0;
}
.u-ShowErrors .SelectView.u-ErrorView .SelectViewInput[data-v-110935ae] .dropdown-toggle {
  border-color: #F5371F !important;
}

.mx-icon-left:before,.mx-icon-right:before,.mx-icon-double-left:before,.mx-icon-double-right:before,.mx-icon-double-left:after,.mx-icon-double-right:after{content:"";position:relative;top:-1px;display:inline-block;width:10px;height:10px;vertical-align:middle;border-style:solid;border-color:currentColor;border-width:2px 0 0 2px;border-radius:1px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(-45deg) scale(0.7);transform:rotate(-45deg) scale(0.7)}.mx-icon-double-left:after{left:-4px}.mx-icon-double-right:before{left:4px}.mx-icon-right:before,.mx-icon-double-right:before,.mx-icon-double-right:after{-webkit-transform:rotate(135deg) scale(0.7);transform:rotate(135deg) scale(0.7)}.mx-btn{-webkit-box-sizing:border-box;box-sizing:border-box;line-height:1;font-size:14px;font-weight:500;padding:7px 15px;margin:0;cursor:pointer;background-color:transparent;outline:none;border:1px solid rgba(0,0,0,.1);border-radius:4px;color:#73879c;white-space:nowrap}.mx-btn:hover{border-color:#1284e7;color:#1284e7}.mx-btn:disabled,.mx-btn.disabled{color:#ccc;cursor:not-allowed}.mx-btn-text{border:0;padding:0 4px;text-align:left;line-height:inherit}.mx-scrollbar{height:100%}.mx-scrollbar:hover .mx-scrollbar-track{opacity:1}.mx-scrollbar-wrap{height:100%;overflow-x:hidden;overflow-y:auto}.mx-scrollbar-track{position:absolute;top:2px;right:2px;bottom:2px;width:6px;z-index:1;border-radius:4px;opacity:0;-webkit-transition:opacity .24s ease-out;transition:opacity .24s ease-out}.mx-scrollbar-track .mx-scrollbar-thumb{position:absolute;width:100%;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(144,147,153,.3);-webkit-transition:background-color .3s;transition:background-color .3s}.mx-zoom-in-down-enter-active,.mx-zoom-in-down-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1),-webkit-transform .3s cubic-bezier(0.23, 1, 0.32, 1);transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1),-webkit-transform .3s cubic-bezier(0.23, 1, 0.32, 1);transition:transform .3s cubic-bezier(0.23, 1, 0.32, 1),opacity .3s cubic-bezier(0.23, 1, 0.32, 1);transition:transform .3s cubic-bezier(0.23, 1, 0.32, 1),opacity .3s cubic-bezier(0.23, 1, 0.32, 1),-webkit-transform .3s cubic-bezier(0.23, 1, 0.32, 1);-webkit-transform-origin:center top;transform-origin:center top}.mx-zoom-in-down-enter,.mx-zoom-in-down-enter-from,.mx-zoom-in-down-leave-to{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.mx-datepicker{position:relative;display:inline-block;width:210px}.mx-datepicker svg{width:1em;height:1em;vertical-align:-0.15em;fill:currentColor;overflow:hidden}.mx-datepicker-range{width:320px}.mx-datepicker-inline{width:auto}.mx-input-wrapper{position:relative}.mx-input{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:34px;padding:6px 30px;padding-left:10px;font-size:14px;line-height:1.4;color:#555;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.mx-input:hover,.mx-input:focus{border-color:#409aff}.mx-input:disabled,.mx-input.disabled{color:#ccc;background-color:#f3f3f3;border-color:#ccc;cursor:not-allowed}.mx-input:focus{outline:none}.mx-input::-ms-clear{display:none}.mx-icon-calendar,.mx-icon-clear{position:absolute;top:50%;right:8px;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:16px;line-height:1;color:rgba(0,0,0,.5);vertical-align:middle}.mx-icon-clear{cursor:pointer}.mx-icon-clear:hover{color:rgba(0,0,0,.8)}.mx-datepicker-main{font:14px/1.5 "Helvetica Neue",Helvetica,Arial,"Microsoft Yahei",sans-serif;color:#73879c;background-color:#fff;border:1px solid #e8e8e8}.mx-datepicker-popup{position:absolute;margin-top:1px;margin-bottom:1px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);z-index:2001}.mx-datepicker-sidebar{float:left;-webkit-box-sizing:border-box;box-sizing:border-box;width:100px;padding:6px;overflow:auto}.mx-datepicker-sidebar+.mx-datepicker-content{margin-left:100px;border-left:1px solid #e8e8e8}.mx-datepicker-body{position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mx-btn-shortcut{display:block;padding:0 6px;line-height:24px}.mx-range-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}@media(max-width: 750px){.mx-range-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.mx-datepicker-header{padding:6px 8px;border-bottom:1px solid #e8e8e8}.mx-datepicker-footer{padding:6px 8px;text-align:right;border-top:1px solid #e8e8e8}.mx-calendar{-webkit-box-sizing:border-box;box-sizing:border-box;width:248px;padding:6px 12px}.mx-calendar+.mx-calendar{border-left:1px solid #e8e8e8}.mx-calendar-header,.mx-time-header{-webkit-box-sizing:border-box;box-sizing:border-box;height:34px;line-height:34px;text-align:center;overflow:hidden}.mx-btn-icon-left,.mx-btn-icon-double-left{float:left}.mx-btn-icon-right,.mx-btn-icon-double-right{float:right}.mx-calendar-header-label{font-size:14px}.mx-calendar-decade-separator{margin:0 2px}.mx-calendar-decade-separator:after{content:"~"}.mx-calendar-content{position:relative;height:224px;-webkit-box-sizing:border-box;box-sizing:border-box}.mx-calendar-content .cell{cursor:pointer}.mx-calendar-content .cell:hover{color:#73879c;background-color:#f3f9fe}.mx-calendar-content .cell.active{color:#fff;background-color:#1284e7}.mx-calendar-content .cell.in-range,.mx-calendar-content .cell.hover-in-range{color:#73879c;background-color:#dbedfb}.mx-calendar-content .cell.disabled{cursor:not-allowed;color:#ccc;background-color:#f3f3f3}.mx-calendar-week-mode .mx-date-row{cursor:pointer}.mx-calendar-week-mode .mx-date-row:hover{background-color:#f3f9fe}.mx-calendar-week-mode .mx-date-row.mx-active-week{background-color:#dbedfb}.mx-calendar-week-mode .mx-date-row .cell:hover{color:inherit;background-color:transparent}.mx-calendar-week-mode .mx-date-row .cell.active{color:inherit;background-color:transparent}.mx-week-number{opacity:.5}.mx-table{table-layout:fixed;border-collapse:separate;border-spacing:0;width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}.mx-table th{padding:0;font-weight:500;vertical-align:middle}.mx-table td{padding:0;vertical-align:middle}.mx-table-date td,.mx-table-date th{height:32px;font-size:12px}.mx-table-date .today{color:#2a90e9}.mx-table-date .cell.not-current-month{color:#ccc;background:none}.mx-time{-webkit-box-flex:1;-ms-flex:1;flex:1;width:224px;background:#fff}.mx-time+.mx-time{border-left:1px solid #e8e8e8}.mx-calendar-time{position:absolute;top:0;left:0;width:100%;height:100%}.mx-time-header{border-bottom:1px solid #e8e8e8}.mx-time-content{height:224px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.mx-time-columns{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;overflow:hidden}.mx-time-column{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative;border-left:1px solid #e8e8e8;text-align:center}.mx-time-column:first-child{border-left:0}.mx-time-column .mx-time-list{margin:0;padding:0;list-style:none}.mx-time-column .mx-time-list::after{content:"";display:block;height:192px}.mx-time-column .mx-time-item{cursor:pointer;font-size:12px;height:32px;line-height:32px}.mx-time-column .mx-time-item:hover{color:#73879c;background-color:#f3f9fe}.mx-time-column .mx-time-item.active{color:#1284e7;background-color:transparent;font-weight:700}.mx-time-column .mx-time-item.disabled{cursor:not-allowed;color:#ccc;background-color:#f3f3f3}.mx-time-option{cursor:pointer;padding:8px 10px;font-size:14px;line-height:20px}.mx-time-option:hover{color:#73879c;background-color:#f3f9fe}.mx-time-option.active{color:#1284e7;background-color:transparent;font-weight:700}.mx-time-option.disabled{cursor:not-allowed;color:#ccc;background-color:#f3f3f3}

.DatePickerView {
  position: relative;
  margin-top: 25px;
  width: 100%;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
}
.DatePickerViewLabel {
  color: black;
  font-size: 12px;
  line-height: 16px;
}
.DatePickerView--error .DatePickerViewRequired {
  color: #F5371F;
}
.DatePickerView--error .mx-input-wrapper input {
  border-color: red;
}
.DatePickerView--error input {
  border-color: red;
}
.DatePickerViewInput {
  display: block;
  width: 100% !important;
  outline: none;
  font-weight: 400;
  color: #000;
  background-color: transparent;
  font-size: 12px;
  line-height: 16px;
  margin-top: 10px;
}
.DatePickerViewInput::-moz-placeholder {
  color: #B3B3B3;
}
.DatePickerViewInput::placeholder {
  color: #B3B3B3;
}
.DatePickerViewInput svg {
  display: none;
}
.DatePickerViewInput .mx-input {
  border-radius: 0;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  font-size: 12px;
  line-height: 16px;
  color: black;
  box-shadow: none;
  cursor: pointer;
  height: 40px;
  padding: 12px 15px;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  border: 1px solid #B3B3B3;
}
.DatePickerViewInput .mx-input::-moz-placeholder {
  color: #A6A6A6;
}
.DatePickerViewInput .mx-input::placeholder {
  color: #A6A6A6;
}
.mx-datepicker.mixed .mx-input-wrapper {
  position: relative;
}
.mx-datepicker.mixed .mx-input-wrapper::before {
  position: absolute;
  left: 0;
  top: 0;
  content: 'Mixed';
  font-size: 15px;
  line-height: 23px;
}
.mx-datepicker.mixed .mx-input {
  opacity: 0 !important;
}
.mx-calendar {
  color: #000;
}
.mx-table-date td.today {
  color: #F5371F;
}
.mx-calendar-content .cell {
  vertical-align: middle;
}
.mx-calendar-content .cell.active {
  background: #F5371F;
}
.mx-calendar-content .cell.active.today {
  color: #FFF;
}
.svg--calendar {
  position: absolute;
  width: 24px;
  height: 20px;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

@font-face {
  font-family: 'Graphik LCG';
  src: url('/static/fonts/GraphikLCG.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
*[data-v-fcb89f16],
*[data-v-fcb89f16]:after,
*[data-v-fcb89f16]:before {
  box-sizing: border-box;
}
body[data-v-fcb89f16] {
  min-width: 768px;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "kern" 1;
  font-feature-settings: "kern";
}
h1[data-v-fcb89f16] {
  margin: 0 10px 10px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #808080;
}
h1.focus[data-v-fcb89f16] {
  color: black;
}
button[data-v-fcb89f16] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}
div.header[data-v-fcb89f16] {
  border-bottom: 1px solid black;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
div.header > a[data-v-fcb89f16] {
  font-size: 24px;
  line-height: 32px;
  margin: 0 10px 10px 0;
  color: #808080;
  text-decoration: none;
  transition: opacity 0.3s ease;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
div.header > a[data-v-fcb89f16]:hover {
  color: black;
}
div.header h1[data-v-fcb89f16] {
  white-space: nowrap;
}
.button-add[data-v-fcb89f16] {
  width: 100%;
  color: white;
  background-color: black;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-add[data-v-fcb89f16]:hover {
  color: black;
  background-color: white;
}
.button-remove[data-v-fcb89f16] {
  width: 100%;
  background-color: #5E0000;
  color: white;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-remove[data-v-fcb89f16]:hover {
  color: black;
  background-color: white;
}
.button-publish[data-v-fcb89f16] {
  width: 100%;
  color: white;
  background-color: #E8E8E8;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-publish.active[data-v-fcb89f16] {
  border-color: black;
  background-color: black;
  color: white;
  pointer-events: all;
}
.button-publish.active[data-v-fcb89f16]:hover {
  color: black;
  background-color: white;
}
.button-unpublish[data-v-fcb89f16] {
  width: 100%;
  color: white;
  background-color: white;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-unpublish.active[data-v-fcb89f16] {
  border-color: black;
  color: black;
  pointer-events: all;
}
.button-unpublish.active[data-v-fcb89f16]:hover {
  color: white;
  background-color: black;
}
.separator[data-v-fcb89f16] {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 20px 0 60px;
}
.u-Content[data-v-fcb89f16] {
  border: solid 1px #000;
  padding: 20px 58px 20px 20px;
  margin: 0 0 40px;
  position: relative;
  background: #FFF;
}
.u-Buttons[data-v-fcb89f16] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  z-index: 99999;
}
.u-ButtonsCancel[data-v-fcb89f16],
.u-ButtonsSave[data-v-fcb89f16] {
  padding: 13px 0 17px 0;
  border: 1px solid #000;
  width: 150px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.u-ButtonsCancel[data-v-fcb89f16] {
  background-color: #FFF;
  color: #000;
}
.u-ButtonsSave[data-v-fcb89f16] {
  background-color: #000;
  color: #FFF;
}
.u-FormItem[data-v-fcb89f16] {
  margin-bottom: 20px;
}
.u-FormItem[data-v-fcb89f16]:last-child {
  margin-bottom: 0;
}
.u-back[data-v-fcb89f16] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  background-color: #000;
  opacity: 0.9;
  min-width: 1440px;
  cursor: pointer;
}
.u-close[data-v-fcb89f16] {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.u-close svg[data-v-fcb89f16] {
  width: 20px;
  height: 20px;
}
.u-close[data-v-fcb89f16]:hover {
  opacity: 0.7;
}
.SavePanelView[data-v-fcb89f16] {
  width: 100%;
  display: flex;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
}
.SavePanelViewSave[data-v-fcb89f16] {
  height: 40px;
  width: 100%;
  pointer-events: none;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: -0.02em;
  background-color: #B2B2B2;
  color: #7F7F7F;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.SavePanelView.edit .SavePanelViewSave[data-v-fcb89f16] {
  background-color: #000;
  color: #FFF;
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}
.SavePanelView.edit .SavePanelViewSave[data-v-fcb89f16]:hover {
  opacity: 0.7;
}

ul[data-v-ac5bf66c] {
  padding: 0;
  margin: 0;
}

li[data-v-1f0b4196] {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
li[data-v-1f0b4196]:empty {
  margin: 0 !important;
}
.list-item.helper[data-v-1f0b4196] {
  z-index: 300;
}
.list-item.helper body[data-v-1f0b4196] {
  cursor: grab;
}

.ListEditView {
  margin: 0;
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.ListEditView input,
.ListEditView textarea,
.ListEditView [contenteditable],
.ListEditView input *,
.ListEditView textarea *,
.ListEditView [contenteditable] * {
  -moz-user-select: text;
  -webkit-user-select: text;
  user-select: text;
}
.ListEditViewErrors {
  display: none;
}
.ListEditViewErrorsErrors .error {
  color: red;
}
.u-ShowErrors .ListEditViewErrors {
  display: block;
}

.VisibleView[data-v-5930a344] {
  position: absolute;
  top: 6px;
  right: 31px;
  z-index: 10;
}
.VisibleView svg[data-v-5930a344] {
  width: 10px;
  height: 8px;
  display: block;
  transition: fill 0.2s;
  fill: #000;
}
.VisibleView[data-v-5930a344]:hover {
  opacity: 0.7;
}
.VisibleViewButton[data-v-5930a344] {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #000;
  cursor: pointer;
}
.VisibleView--stores[data-v-5930a344] {
  top: 30px;
  right: -30px;
}
.VisibleView--noBorder[data-v-5930a344] {
  border: none;
}

.ConfirmLeaveView[data-v-4f682296] {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.3);
  padding-left: 220px;
  animation-duration: 0.3s;
  animation-name: confirm-4f682296;
}
@keyframes confirm-4f682296 {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
.ConfirmLeaveView-wrapper[data-v-4f682296] {
  width: 620px;
  height: 200px;
  margin: 35vh auto;
  background-color: #FFF;
  animation-duration: 0.3s;
  animation-name: confirm-wrapper-4f682296;
  padding: 63px 20px 20px 20px;
}
.ConfirmLeaveView-wrapper p[data-v-4f682296] {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 63px;
}
.ConfirmLeaveView-wrapperButtons[data-v-4f682296] {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 14px;
}
.ConfirmLeaveView-wrapperButtons button[data-v-4f682296] {
  width: 280px;
  height: 40px;
  background-color: #000;
  color: #FFF;
  cursor: pointer;
}
@keyframes confirm-wrapper-4f682296 {
from {
    transform: scale(0.1, 0.1);
}
to {
    transform: scale(1, 1);
}
}

@font-face {
  font-family: 'Graphik LCG';
  src: url('/static/fonts/GraphikLCG.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
body {
  min-width: 768px;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: 'Graphik LCG', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "kern" 1;
  font-feature-settings: "kern";
}
h1 {
  margin: 0 10px 10px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #808080;
}
h1.focus {
  color: black;
}
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}
div.header {
  border-bottom: 1px solid black;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
div.header > a {
  font-size: 24px;
  line-height: 32px;
  margin: 0 10px 10px 0;
  color: #808080;
  text-decoration: none;
  transition: opacity 0.3s ease;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
div.header > a:hover {
  color: black;
}
div.header h1 {
  white-space: nowrap;
}
.button-add {
  width: 100%;
  color: white;
  background-color: black;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-add:hover {
  color: black;
  background-color: white;
}
.button-remove {
  width: 100%;
  background-color: #5E0000;
  color: white;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid black;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-remove:hover {
  color: black;
  background-color: white;
}
.button-publish {
  width: 100%;
  color: white;
  background-color: #E8E8E8;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-publish.active {
  border-color: black;
  background-color: black;
  color: white;
  pointer-events: all;
}
.button-publish.active:hover {
  color: black;
  background-color: white;
}
.button-unpublish {
  width: 100%;
  color: white;
  background-color: white;
  color: #B3B3B3;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.button-unpublish.active {
  border-color: black;
  color: black;
  pointer-events: all;
}
.button-unpublish.active:hover {
  color: white;
  background-color: black;
}
.separator {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 20px 0 60px;
}
.u-Content {
  border: solid 1px #000;
  padding: 20px 58px 20px 20px;
  margin: 0 0 40px;
  position: relative;
  background: #FFF;
}
.u-Buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  z-index: 99999;
}
.u-ButtonsCancel,
.u-ButtonsSave {
  padding: 13px 0 17px 0;
  border: 1px solid #000;
  width: 150px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.u-ButtonsCancel {
  background-color: #FFF;
  color: #000;
}
.u-ButtonsSave {
  background-color: #000;
  color: #FFF;
}
.u-FormItem {
  margin-bottom: 20px;
}
.u-FormItem:last-child {
  margin-bottom: 0;
}
.u-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  background-color: #000;
  opacity: 0.9;
  min-width: 1440px;
  cursor: pointer;
}
.u-close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.u-close svg {
  width: 20px;
  height: 20px;
}
.u-close:hover {
  opacity: 0.7;
}


/*# sourceMappingURL=login.e3f81152a6b97e5e128d.css.map*/