/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@charset "UTF-8";
@keyframes acMoveInFromBelow {
  from {
    transform: translate3d(0, 10%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes acFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes acOptionsOpen {
  0% {
    transform: translate3d(0, -30px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.spotlight {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
}
.spotlight.open {
  display: block;
}
.spotlight.open .dark {
  animation: acFade 0.2s ease forwards;
}
.spotlight.open .content {
  animation: acFade 0.3s ease forwards, acMoveInFromBelow 0.3s ease forwards;
}
.spotlight .dark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateZ(0);
}
.spotlight .light {
  position: absolute;
  top: 40px;
  left: 50%;
  padding: 20px 0;
  transform: translate3d(-50%, 0, 0);
  max-width: 90vw;
}
.spotlight .content {
  margin: 0 auto;
  width: 580px;
  box-sizing: border-box;
  max-width: 100%;
}
.spotlight .content > .media {
  animation: acFade 0.3s ease forwards;
}
.spotlight .content > .media .m-vimeo,
.spotlight .content > .media .m-youtube {
  width: 1000px;
  max-width: 90vw;
}
.spotlight .content > .media .m-video {
  text-align: center;
}
.spotlight .content > .media .m-video video {
  max-height: 90vh;
  width: auto;
  vertical-align: middle;
}
.spotlight.type-alert .content {
  width: 480px;
  text-align: center;
  padding: 60px;
}
.spotlight.type-alert .content > .icon:first-child {
  font-size: 68px;
  line-height: 1;
  margin-bottom: 15px;
  color: #032863;
}
.spotlight.type-alert .content > .buttons {
  margin-top: 30px;
}
.spotlight.type-confirm .content {
  width: 480px;
  text-align: center;
  padding: 60px;
}
.spotlight.type-confirm .content > .icon:first-child {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 15px;
  color: #032863;
}
.spotlight.type-confirm .content > .title {
  font-size: 18px;
  font-weight: 600;
  color: #0E0F10;
  margin-bottom: 7px;
}
.spotlight.type-confirm .content > .text.faded {
  color: #7D7D7D;
}
.spotlight.type-confirm .content > .buttons {
  margin-top: 30px;
}
.spotlight.type-confirm .content > .buttons .btn + .btn {
  margin-left: 15px;
}
.spotlight.small .content {
  width: 420px;
}
.spotlight.large .content {
  width: 750px;
}
.spotlight.larger .content {
  width: 1200px;
}
.spotlight.largest .content {
  width: 1600px;
}
.spotlight.larger-auto .content {
  width: auto;
  max-width: 1200px;
}
.spotlight.largest-auto .content {
  width: auto;
  max-width: 1600px;
}
.spotlight.auto .content {
  width: auto;
}
.spotlight.auto .content img {
  max-width: 90vw;
  max-height: 90vh;
}

body.is-dragging,
body.is-dragging * {
  cursor: grabbing !important;
}

.dragsort-preview {
  position: fixed;
  margin: -20px 0 0 15px;
  background: #fff;
  color: #0E0F10;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  padding: 0 11px;
  box-sizing: border-box;
  line-height: 32px;
  opacity: 0.7;
  z-index: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: none;
}
.dragsort-preview.active {
  display: block;
}

.dragsort-handle {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-align: center;
  color: #0E0F10;
  cursor: grab;
}

div.dragsort-before:before,
div.dragsort-after:before,
div.dragsort-first:before,
div.dragsort-last:before,
tr.dragsort-before td:before,
tr.dragsort-after td:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #00c0e9;
}

div.dragsort-before.dragsort-before:before, div.dragsort-before.dragsort-first:before,
div.dragsort-after.dragsort-before:before,
div.dragsort-after.dragsort-first:before,
div.dragsort-first.dragsort-before:before,
div.dragsort-first.dragsort-first:before,
div.dragsort-last.dragsort-before:before,
div.dragsort-last.dragsort-first:before {
  top: -1px;
}
div.dragsort-before.dragsort-after:before, div.dragsort-before.dragsort-last:before,
div.dragsort-after.dragsort-after:before,
div.dragsort-after.dragsort-last:before,
div.dragsort-first.dragsort-after:before,
div.dragsort-first.dragsort-last:before,
div.dragsort-last.dragsort-after:before,
div.dragsort-last.dragsort-last:before {
  bottom: -1px;
}

tr.dragsort-before td,
tr.dragsort-after td {
  position: relative;
}
tr.dragsort-before.dragsort-before td:before, tr.dragsort-before.dragsort-first td:before,
tr.dragsort-after.dragsort-before td:before,
tr.dragsort-after.dragsort-first td:before {
  top: -1px;
}
tr.dragsort-before.dragsort-after td:before, tr.dragsort-before.dragsort-last td:before,
tr.dragsort-after.dragsort-after td:before,
tr.dragsort-after.dragsort-last td:before {
  bottom: -1px;
}
tr.dragsort-before.dragsort-depth-1 td:first-child:before,
tr.dragsort-after.dragsort-depth-1 td:first-child:before {
  left: 15px;
}
tr.dragsort-before.dragsort-depth-2 td:first-child:before,
tr.dragsort-after.dragsort-depth-2 td:first-child:before {
  left: 30px;
}
tr.dragsort-before.dragsort-depth-3 td:first-child:before,
tr.dragsort-after.dragsort-depth-3 td:first-child:before {
  left: 45px;
}
tr.dragsort-before.dragsort-depth-4 td:first-child:before,
tr.dragsort-after.dragsort-depth-4 td:first-child:before {
  left: 60px;
}
tr.dragsort-before.dragsort-depth-5 td:first-child:before,
tr.dragsort-after.dragsort-depth-5 td:first-child:before {
  left: 75px;
}

tr.ds-depth-1 td:nth-child(-n+2) {
  padding-left: 15px;
}
tr.ds-depth-2 td:nth-child(-n+2) {
  padding-left: 30px;
}
tr.ds-depth-3 td:nth-child(-n+2) {
  padding-left: 45px;
}
tr.ds-depth-4 td:nth-child(-n+2) {
  padding-left: 60px;
}
tr.ds-depth-5 td:nth-child(-n+2) {
  padding-left: 75px;
}

.actions {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.actions.inline {
  display: inline-block;
  vertical-align: middle;
}
.actions[v-cloak] {
  display: block;
}
.actions[v-cloak] .drop {
  display: none;
}
.actions .toggle {
  cursor: pointer;
}
.actions > .drop,
.actions > .items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  max-height: 320px;
  overflow-y: auto;
  margin-top: 5px;
  box-sizing: border-box;
  line-height: 40px;
  background: #fff;
  color: #0E0F10;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  z-index: 25;
  transform-origin: left top;
  animation: acOptionsOpen 0.3s ease forwards;
}
.actions > .drop.discrete,
.actions > .items.discrete {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
.actions > .drop > .title {
  padding: 0 20px;
  border-bottom: 1px solid #D5D6D8;
}
.actions .items {
  padding: 15px 0;
}
.actions .items > * {
  display: block;
  padding: 0 30px;
  white-space: nowrap;
  cursor: pointer;
}
.actions .items > *:hover {
  background: rgba(0, 0, 0, 0.05);
}
.actions .items > *.active {
  background: rgba(0, 0, 0, 0.1);
}
.actions .items > *.danger {
  color: #d90000;
}
.actions .items > *.disabled {
  color: #7D7D7D;
  pointer-events: none;
}
.actions .items > label {
  padding-right: 36px;
}
.actions.open > .drop, .actions.open > .items {
  display: block;
}

.icon-actions .toggle,
.dot-actions .toggle {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
  color: #7D7D7D;
}
.icon-actions .toggle:hover,
.dot-actions .toggle:hover {
  color: #0E0F10;
}
.icon-actions.open .toggle,
.dot-actions.open .toggle {
  color: #032863;
}
.icon-actions.small .toggle,
.dot-actions.small .toggle {
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 18px;
}
.icon-actions.small.open .toggle,
.dot-actions.small.open .toggle {
  background: none;
}
.icon-actions.smaller .toggle,
.dot-actions.smaller .toggle {
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 16px;
}
.icon-actions.smaller.open .toggle,
.dot-actions.smaller.open .toggle {
  background: none;
}

.btn-actions.open .toggle .fa-angle-down {
  transform: rotateX(180deg);
}

.autocomplete .top {
  position: relative;
}
.autocomplete .top:after {
  content: "";
  display: block;
  clear: both;
}
.autocomplete .top > .icon {
  float: left;
  width: 46px;
  line-height: 42px;
  font-size: 16px;
  text-align: center;
}
.autocomplete .top > .input {
  float: right;
  position: relative;
  width: calc(100% - 46px);
  padding: 7px 0 0;
}
.autocomplete .top > .input input {
  display: initial;
  width: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  height: 28px !important;
}
.autocomplete .top ~ .items .item:first-child {
  border-top: 1px solid #D5D6D8;
}
.autocomplete.rows .item {
  position: relative;
}
.autocomplete.rows .item:nth-child(n+2) {
  border-top: 1px solid #D5D6D8;
}
.autocomplete.rows .item:hover {
  background: #EDF0F2;
}
.autocomplete.rows .item .title {
  line-height: 44px;
  padding: 0 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.tag-entity {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 14px;
  line-height: 28px;
  height: 28px;
  padding: 0 12px;
  margin: 0 3px 7px 0;
  background: #f2e4f5;
  color: #032863;
}
.tag-entity.has-icon {
  padding-left: 30px;
}
.tag-entity:hover .image {
  display: none;
}
.tag-entity .remove,
.tag-entity .image {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.tag-entity .remove {
  cursor: pointer;
  transition: color 0.2s ease;
}
.tag-entity .remove:hover {
  color: #d90000;
}
.tag-entity .title {
  display: inline-block;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #fff;
  color: #0E0F10;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  padding: 15px 0;
  line-height: 40px;
  overflow-y: auto;
  max-height: 280px;
  z-index: 1;
  animation: acFade 0.2s ease forwards;
}
.suggestions .suggestion {
  padding: 0 15px;
  cursor: pointer;
}
.suggestions .suggestion:hover, .suggestions .suggestion.active {
  background: rgba(0, 0, 0, 0.05);
}

.remove-wrap {
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 30px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.remove-wrap .remove {
  position: absolute;
  left: 7px;
  top: 50%;
  margin-top: -8px;
  border-radius: 50%;
  text-align: center;
  width: 12px;
  line-height: 12px;
  font-size: 10px;
  border: 2px solid #7D7D7D;
  color: #7D7D7D;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.remove-wrap .remove:hover {
  color: #fff;
  background: #d90000;
  border-color: #d90000;
}

:hover > .remove-wrap {
  opacity: 1;
}

.form-item {
  position: relative;
  box-sizing: border-box;
}
.form-item:after {
  content: "";
  display: block;
  clear: both;
}

.colorpicker .component {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
}
.colorpicker .color-sample {
  display: none;
}

.dropdown {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.dropdown.empty .toggle {
  color: #0E0F10;
}
.dropdown.open .toggle {
  position: relative;
  border-color: #0E0F10;
  z-index: 26;
}
.dropdown.success .toggle {
  border-color: #64cd0b;
}
.dropdown.error .toggle {
  border-color: #d90000;
}
.dropdown.error-value .toggle {
  color: #d90000;
}
.dropdown.disabled .toggle {
  color: #7D7D7D;
}
.dropdown .img {
  margin-right: 5px;
}
.dropdown .img img {
  vertical-align: middle;
}
.dropdown .toggle {
  padding: 0 13px;
  line-height: 40px;
  text-align: left;
  cursor: pointer;
}
.dropdown .toggle .title {
  float: left;
  width: calc(100% - 12px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown .toggle .icon {
  float: right;
}
.dropdown .toggle .icon svg {
  vertical-align: middle;
  font-size: 16px;
  color: #7D7D7D;
  transition: transform 0.2s ease, color 0.2s ease;
}
.dropdown:hover .toggle svg, .dropdown.open .toggle svg {
  color: #0E0F10;
}
.dropdown.open .toggle svg.fa-angle-down {
  transform: rotateX(180deg);
}
.dropdown .drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  max-height: 320px;
  overflow-y: auto;
  margin-top: 5px;
  box-sizing: border-box;
  line-height: 40px;
  background: #fff;
  color: #0E0F10;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  z-index: 25;
  transform-origin: left top;
  animation: acOptionsOpen 0.3s ease forwards;
}
.dropdown .drop > .title {
  padding: 0 20px;
  border-bottom: 1px solid #D5D6D8;
}
.dropdown.expand-upwards .drop {
  top: auto;
  bottom: 100%;
}
.dropdown.anchor-right .drop {
  right: 0;
  left: auto;
}
.dropdown.open .drop {
  display: block;
}
.dropdown .items {
  padding: 15px 0;
}
.dropdown .items > * {
  display: block;
  padding: 0 30px;
  white-space: nowrap;
  cursor: pointer;
}
.dropdown .items > *:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #0E0F10;
}
.dropdown .items > *.active {
  background: rgba(0, 0, 0, 0.1);
  color: #0E0F10;
}
.dropdown .items > *.danger {
  color: #d90000;
}
.dropdown .items > *.disabled {
  color: #7D7D7D;
  pointer-events: none;
}
.dropdown .items > * .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 18px;
  border: 1px solid #7D7D7D;
  text-align: center;
  vertical-align: middle;
  margin-right: 5px;
}
.dropdown .items > * .icon:hover {
  border-color: #0E0F10;
}
.dropdown .items > * .icon svg {
  display: none;
}
.dropdown .items > * .item-title {
  vertical-align: middle;
}
.dropdown .items > *.active .icon {
  border-color: #0E0F10;
  background: #0E0F10;
  color: #fff;
}
.dropdown .items > *.active .icon svg {
  display: inline-block;
}
.dropdown.multiple .items > .item.active {
  color: #0E0F10;
}

.dropdown-alt .toggle {
  padding: 0;
}
.dropdown-alt .toggle .title {
  width: auto;
  margin-right: 10px;
}
.dropdown-alt.error .toggle {
  color: #d90000;
}
.dropdown-alt.error .toggle svg {
  color: inherit;
}

.tooltip-anchor {
  position: relative;
}
.tooltip-anchor .tooltip.open, .tooltip-anchor:hover > .tooltip {
  display: inline-block;
}
.tooltip-anchor > .tooltip {
  position: absolute;
  box-sizing: border-box;
  display: none;
  font-weight: normal;
  font-style: normal;
  white-space: normal;
  z-index: 110;
}
.tooltip-anchor > .tooltip.simple {
  line-height: 20px;
  padding: 6px 12px;
  box-sizing: border-box;
  white-space: nowrap;
  border-radius: 4px;
  color: #c0c0c0;
  background: #3b3b3b;
}
.tooltip-anchor > .tooltip.simple.max {
  width: 280px;
  white-space: normal;
}
.tooltip-anchor > .tooltip.simple:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-color: #3b3b3b;
  border-style: solid;
}
.tooltip-anchor > .tooltip.simple.success {
  background-color: #64cd0b;
}
.tooltip-anchor > .tooltip.simple.success:before {
  border-color: #64cd0b;
}
.tooltip-anchor > .tooltip.simple.danger {
  background-color: #d90000;
}
.tooltip-anchor > .tooltip.simple.danger:before {
  border-color: #d90000;
}
.tooltip-anchor > .tooltip.simple.position-t, .tooltip-anchor > .tooltip.simple.position-tl, .tooltip-anchor > .tooltip.simple.position-tr {
  bottom: 100%;
  margin-bottom: 10px;
}
.tooltip-anchor > .tooltip.simple.position-t:before, .tooltip-anchor > .tooltip.simple.position-tl:before, .tooltip-anchor > .tooltip.simple.position-tr:before {
  top: 100%;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top-width: 4px;
  border-bottom-width: 0;
}
.tooltip-anchor > .tooltip.simple.position-b, .tooltip-anchor > .tooltip.simple.position-bl, .tooltip-anchor > .tooltip.simple.position-br {
  top: 100%;
  margin-top: 10px;
}
.tooltip-anchor > .tooltip.simple.position-b:before, .tooltip-anchor > .tooltip.simple.position-bl:before, .tooltip-anchor > .tooltip.simple.position-br:before {
  bottom: 100%;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom-width: 4px;
  border-top-width: 0;
}
.tooltip-anchor > .tooltip.simple.position-tl, .tooltip-anchor > .tooltip.simple.position-bl {
  left: 0;
}
.tooltip-anchor > .tooltip.simple.position-tl:before, .tooltip-anchor > .tooltip.simple.position-bl:before {
  left: 12px;
}
.tooltip-anchor > .tooltip.simple.position-tr, .tooltip-anchor > .tooltip.simple.position-br {
  right: 0;
}
.tooltip-anchor > .tooltip.simple.position-tr:before, .tooltip-anchor > .tooltip.simple.position-br:before {
  right: 12px;
}
.tooltip-anchor > .tooltip.simple.position-t, .tooltip-anchor > .tooltip.simple.position-b {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.tooltip-anchor > .tooltip.simple.position-t:before, .tooltip-anchor > .tooltip.simple.position-b:before {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.tooltip-anchor > .tooltip.simple.position-l, .tooltip-anchor > .tooltip.simple.position-r {
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.tooltip-anchor > .tooltip.simple.position-l:before, .tooltip-anchor > .tooltip.simple.position-r:before {
  top: 50%;
  margin-top: -4px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.tooltip-anchor > .tooltip.simple.position-l {
  right: 100%;
  margin-right: 10px;
}
.tooltip-anchor > .tooltip.simple.position-l:before {
  left: 100%;
  border-left-width: 4px;
  border-right-width: 0;
}
.tooltip-anchor > .tooltip.simple.position-r {
  left: 100%;
  margin-left: 10px;
}
.tooltip-anchor > .tooltip.simple.position-r:before {
  right: 100%;
  border-right-width: 4px;
  border-left-width: 0;
}

ul.pagination {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 18px;
  list-style: none;
}
ul.pagination li {
  color: #7D7D7D;
  display: inline-block;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  margin: 0;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
ul.pagination li a {
  position: relative;
  display: block;
  padding: 5px 0;
  width: 28px;
}
ul.pagination li a:hover {
  color: #0E0F10;
  text-decoration: underline;
}
ul.pagination li.pagination-page-nav {
  margin: 0 10px;
}
ul.pagination li.pagination-prev-nav, ul.pagination li.pagination-next-nav {
  font-size: 1.1em;
}
ul.pagination li.active {
  cursor: default;
  background-color: #0E0F10;
  color: #fff;
}
ul.pagination li.active a {
  pointer-events: none;
}
ul.pagination li:first-child {
  margin-left: 0;
}
ul.pagination li:last-child {
  margin-right: 0;
}

.pagination-input > * {
  float: left;
  line-height: 30px;
}
.pagination-input input[type=text] {
  border: 1px solid #D5D6D8;
  border-radius: 4px;
  width: 47px;
  height: 30px;
  line-height: 28px;
  padding: 0;
  margin: 0 7px;
  background: none;
  text-align: center;
}

.pagination-controls {
  display: grid;
  grid-template-columns: 20% 60% 20%;
}
.pagination-controls .pagination-stats {
  text-align: right;
}

.filters {
  max-width: 640px;
}
.filters .dropdown {
  border: 0;
}
.filters .dropdown .toggle {
  line-height: 48px;
  padding: 0 20px;
}
.filters .default {
  position: relative;
}
.filters .default > .inner {
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.filters .default > .inner .dropdown {
  width: 120px;
  float: left;
}
.filters .default .reset-wrap {
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: 22px;
}
.filters .default .reset-wrap .filters-reset {
  line-height: 48px;
  color: #0E0F10;
  cursor: pointer;
  transition: color 0.2s ease;
}
.filters .default .reset-wrap .filters-reset:hover {
  color: #032863;
}
.filters .filters-text {
  float: left;
  width: calc(100% - 120px);
  border-left: 1px solid #D5D6D8;
  box-sizing: border-box;
  position: relative;
}
.filters .filters-text .icon {
  float: left;
  color: #7D7D7D;
  text-align: right;
  line-height: 48px;
  font-size: 18px;
  width: 32px;
}
.filters .filters-text input {
  float: left;
  border: 0;
  border-radius: 0 4px 4px 0;
  box-shadow: none !important;
  height: 48px;
  width: 100%;
}
.filters .filters-text .icon ~ input {
  width: calc(100% - 45px);
}
.filters .filter {
  position: relative;
}
.filters .filter > .inner {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 220px 1fr;
}
.filters .filter > .inner label {
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 4px 0 0 4px;
  padding: 0 23px;
  line-height: 48px;
  text-align: left;
  white-space: nowrap;
}
.filters .filter > .inner > .input {
  float: left;
  border-left: 1px solid #D5D6D8;
  box-sizing: border-box;
}
.filters .filter > .inner input[type=text], .filters .filter > .inner input[type=email], .filters .filter > .inner input[type=search], .filters .filter > .inner input[type=password], .filters .filter > .inner .textfield, .filters .filter > .inner textarea {
  border: 0;
  height: 48px;
  border-radius: 0 4px 4px 0;
}
.filters .filter > .inner input[type=text]:nth-child(n+2), .filters .filter > .inner input[type=email]:nth-child(n+2), .filters .filter > .inner input[type=search]:nth-child(n+2), .filters .filter > .inner input[type=password]:nth-child(n+2), .filters .filter > .inner .textfield:nth-child(n+2), .filters .filter > .inner textarea:nth-child(n+2) {
  padding-left: 0;
}
.filters .filter > .inner .autocomplete .icon {
  line-height: 48px;
}
.filters .filter > .inner .autocomplete .input {
  padding-top: 11px;
}
.filters .filter > .inner .mx-datepicker .mx-input-wrapper {
  padding-left: 46px;
}
.filters .filter > .inner .mx-datepicker .mx-input-append {
  left: 0;
  right: auto;
  width: 46px;
  padding: 6px 14px;
}
.filters .filter > .inner .mx-datepicker input[type=text], .filters .filter > .inner .mx-datepicker input[type=email], .filters .filter > .inner .mx-datepicker input[type=search], .filters .filter > .inner .mx-datepicker input[type=password], .filters .filter > .inner .mx-datepicker .textfield, .filters .filter > .inner .mx-datepicker textarea {
  padding-left: 0;
}
.filters .filter .remove-wrap {
  padding-top: 16px;
  padding-left: 20px;
}

table.list {
  width: 100%;
  border-collapse: collapse;
}
table.list tr {
  border-bottom: 1px solid #D5D6D8;
}
table.list tr > * {
  text-align: left;
  font-weight: inherit;
  padding: 7px;
}
table.list tr > *.min {
  width: 1px;
  white-space: nowrap;
}
table.list tr > *.image {
  width: 1px;
  white-space: nowrap;
  padding-left: 0;
}
table.list tr > *.image img {
  max-width: none;
}
table.list tr > *.title {
  font-weight: 700;
  color: #0E0F10;
  line-height: 22px;
}
table.list tr > *.center {
  text-align: center;
}
table.list tr > *.center .actions {
  text-align: left;
}
table.list tr > *.right {
  text-align: right;
}
table.list tr > *.right .actions {
  text-align: left;
}
table.list tr > *.avatar img {
  border-radius: 50%;
  max-width: none;
}
table.list tr th {
  color: #7D7D7D;
}
table.list tr th:first-child {
  padding-left: 0;
}
table.list tr th:last-child {
  padding-right: 0;
}
table.list tr th .sort-link {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
table.list tr th .sort-link:hover, table.list tr th .sort-link.active {
  color: #0E0F10;
}
table.list tr td {
  height: 46px;
}
table.list tbody tr:hover {
  background-color: #EDF0F2;
}

.list-header {
  position: relative;
}
.list-header:after {
  content: "";
  display: block;
  clear: both;
}
.list-header > * {
  padding: 8px 30px;
  box-sizing: border-box;
}
.list-header .list-title {
  display: inline-block;
  font-size: 1.25em;
  color: #0E0F10;
  font-weight: 600;
  line-height: 48px;
}
.list-header .default .stats {
  float: left;
}
.list-header .default .sorting {
  float: right;
}
.list-header .default .sorting .dropdown .toggle {
  line-height: 48px;
}
.list-header .selection {
  background: #D5D6D8;
  border-radius: 4px 4px 0 0;
}
.list-header .selection .selected {
  float: left;
}
.list-header .selection .selected .select-all {
  display: inline-block;
  cursor: pointer;
  margin-left: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.list-header .selection .selected .select-all:hover {
  text-decoration: underline;
}
.list-header .selection .actions {
  float: right;
  padding-top: 3px;
}

.list-fetching .list-header {
  padding: 5px 0;
}
.list-fetching .list-header .title-placeholder {
  background: #7D7D7D;
  height: 38px;
  border-radius: 4px;
  width: 200px;
}
.list-fetching table.list .text-placeholder {
  background: #7D7D7D;
  height: 20px;
  width: 250px;
  border-radius: 4px;
}
.list-fetching table.list th .text-placeholder {
  width: 100px;
}
.list-fetching table.list tr:nth-child(3n+2) .text-placeholder {
  width: 300px;
}
.list-fetching table.list tr:nth-child(3n+3) .text-placeholder {
  width: 330px;
}
.list-fetching table.list .checkbox-placeholder {
  background: #7D7D7D;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.admin-dock {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 95;
}
.admin-dock .vertical {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 20px;
}
.admin-dock .vertical .dock-btn {
  margin-top: 10px;
  display: block;
  float: left;
  clear: both;
}
.admin-dock .horizontal {
  position: absolute;
  left: 100%;
  bottom: 0;
  margin-left: 20px;
  white-space: nowrap;
}
.admin-dock .horizontal .dock-btn {
  margin-right: 10px;
}
.admin-dock .dock-btn {
  display: inline-block;
  border-radius: 20px;
  line-height: 40px;
  cursor: pointer;
  background: #fff;
  color: #000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  padding: 0 13px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  animation: acFade 0.3s ease forwards, acMoveInFromBelow 0.3s ease forwards;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.admin-dock .dock-btn.accent:hover, .admin-dock .dock-btn.accent.active {
  background: #032863;
  color: #fff;
}
.admin-dock .dock-btn.disabled {
  pointer-events: none;
}
.admin-dock .dock-btn.dock-btn-save {
  background: #64cd0b;
  color: #fff;
}
.admin-dock .dock-btn.dock-btn-save:hover {
  background: #479506;
}
.admin-dock .dock-btn.dock-btn-save.disabled {
  background: #ceeeb2;
}
.admin-dock .dock-btn .hover {
  display: none;
}
.admin-dock .dock-btn:hover .hover {
  display: inline-block;
}
.admin-dock .dock-btn svg {
  font-size: 14px;
  min-width: 16px;
}
.admin-dock .dock-btn svg + span {
  margin-left: 7px;
}
.admin-dock .admin-menu .toggle {
  width: 40px;
  text-align: center;
  padding: 0;
  font-size: 18px;
}
.admin-dock .admin-menu .toggle svg {
  font-size: inherit;
  transition: transform 0.2s ease;
}
.admin-dock .admin-menu ul {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin: 0 0 15px;
  padding: 0;
  background: #000;
  color: #fff;
  list-style: none;
  white-space: nowrap;
  animation: acMoveInFromBelow 0.3s ease forwards, fade 0.3s ease forwards;
  z-index: 96;
}
.admin-dock .admin-menu ul li {
  display: block;
  padding: 0;
  margin: 0;
}
.admin-dock .admin-menu ul li > * {
  display: block;
  text-decoration: none;
  padding: 0 20px 0 10px;
  line-height: 40px;
}
.admin-dock .admin-menu ul li > * .icon {
  font-size: 16px;
  width: 30px;
  text-align: center;
}
.admin-dock .admin-menu ul li > * .icon,
.admin-dock .admin-menu ul li > * .title {
  display: inline-block;
  vertical-align: middle;
}
.admin-dock .admin-menu ul li > *:hover {
  background: #032863;
}

.tiptap {
  position: relative;
}
.tiptap .tiptap-menu {
  position: absolute;
  background: #313131;
  color: #c0c0c0;
  border-radius: 4px;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.tiptap .tiptap-menu.inactive {
  visibility: hidden;
  opacity: 0;
}
.tiptap .tiptap-menu.type-floating {
  margin-left: 20px;
}
.tiptap .tiptap-menu.type-bubble {
  transform: translate3d(-50%, 0, 0);
  margin-bottom: 10px;
}
.tiptap .tiptap-menu .buttons:after {
  content: "";
  display: block;
  clear: both;
}
.tiptap .tiptap-menu .tiptap-link {
  position: relative;
}
.tiptap .tiptap-menu .tiptap-link input {
  border: 0;
  padding: 5px 10px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: none;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
}
.tiptap .tiptap-menu .tiptap-link .dropdown {
  font-size: 13px;
}
.tiptap .tiptap-menu .tiptap-link .dropdown:hover .toggle svg, .tiptap .tiptap-menu .tiptap-link .dropdown.open .toggle svg {
  color: #fff;
}
.tiptap .tiptap-menu .tiptap-link .dropdown .toggle {
  color: #c0c0c0;
  border: 0;
  line-height: 30px;
}
.tiptap .tiptap-menu .tiptap-link .dropdown .drop {
  background: #313131;
  color: #c0c0c0;
  line-height: 30px;
}
.tiptap .tiptap-menu .tiptap-link .dropdown .drop .items {
  padding: 0;
}
.tiptap .tiptap-menu .tiptap-link .dropdown .drop .items > * {
  padding: 0 10px;
}
.tiptap .tiptap-menu .tiptap-link .dropdown .drop .items > *.active {
  color: #fff;
}
.tiptap .tiptap-menu .tiptap-link .dropdown .drop .items > *:hover {
  background: #555;
  color: #c0c0c0;
}
.tiptap .tiptap-menu .tiptap-link .tiptap-link-remove {
  position: absolute;
  padding: 0 10px;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.tiptap .tiptap-menu .tiptap-link .tiptap-link-remove:hover {
  color: #032863;
}
.tiptap .tiptap-menu .tiptap-btn {
  display: inline-block;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  min-width: 20px;
  padding: 0 10px;
  background: transparent;
  cursor: pointer;
}
.tiptap .tiptap-menu .tiptap-btn:hover {
  background: #000;
}
.tiptap .tiptap-menu .tiptap-btn.active {
  color: #032863;
}
.tiptap .tiptap-menu .tiptap-btn:first-child {
  border-radius: 4px 0 0 4px;
}
.tiptap .tiptap-menu .tiptap-btn:last-child {
  border-radius: 0 4px 4px 0;
}
.tiptap .ProseMirror {
  outline: 0;
}
.tiptap .ProseMirror .is-empty:first-child::before, .tiptap .ProseMirror .is-empty:nth-child(2)::before {
  content: attr(data-empty-text);
  float: left;
  color: #7D7D7D;
  pointer-events: none;
  height: 0;
  font-style: italic;
}
.tiptap .tiptap-textalign-left {
  text-align: left;
  display: block;
}
.tiptap .tiptap-textalign-right {
  text-align: right;
  display: block;
}
.tiptap .tiptap-textalign-center {
  text-align: center;
  display: block;
}
.tiptap .tiptap-table-menu {
  position: absolute;
  background: #313131;
  color: #c0c0c0;
  white-space: nowrap;
  box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  min-width: 150px;
  z-index: 5;
  font-size: 14px;
}
.tiptap .tiptap-table-menu.inactive {
  display: none;
}
.tiptap .tiptap-table-menu .ctx-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 30px 0 5px;
  border-bottom: 1px solid #414141;
  text-align: left;
  cursor: pointer;
}
.tiptap .tiptap-table-menu .ctx-menu-item:last-child {
  border-bottom-color: transparent;
}
.tiptap .tiptap-table-menu .ctx-menu-item:hover, .tiptap .tiptap-table-menu .ctx-menu-item:focus {
  background: #222;
}
.tiptap .tiptap-table-menu .ctx-menu-item:hover .ctx-submenu, .tiptap .tiptap-table-menu .ctx-menu-item:focus .ctx-submenu {
  display: block;
}
.tiptap .tiptap-table-menu .ctx-menu-label {
  padding: 0 5px;
}
.tiptap .tiptap-table-menu .ctx-menu-label + .ctx-menu-icon {
  position: absolute;
  right: 0;
}
.tiptap .tiptap-table-menu .ctx-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  font-size: 16px;
}
.tiptap .tiptap-table-menu .ctx-submenu {
  display: none;
  background: #313131;
  box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  border-left: 1px solid #414141;
  position: absolute;
  width: 180px;
  right: -180px;
  top: 0;
  bottom: auto;
}
.tiptap .tiptap-table-menu .ctx-submenu .ctx-menu-item {
  padding: 0 5px;
}
.tiptap table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.tiptap table td, .tiptap table th {
  min-width: 1.5em;
  border: 1px solid #7D7D7D;
  padding: 3px 5px;
  vertical-align: top;
  box-sizing: border-box;
  position: relative;
}
.tiptap table td > *, .tiptap table th > * {
  margin-bottom: 0;
}
.tiptap table th {
  font-weight: bold;
  text-align: left;
}
.tiptap table .selectedCell:after {
  z-index: 2;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(3, 40, 99, 0.15);
  pointer-events: none;
}
.tiptap table .column-resize-handle {
  position: absolute;
  right: -2px;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 20;
  background-color: #00c0e9;
  pointer-events: none;
}

/*!
 * Cropper.js v1.5.12
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2021-06-12T08:00:11.623Z
 */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-canvas, .cropper-crop-box, .cropper-drag-box, .cropper-modal, .cropper-wrap-box {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-canvas, .cropper-wrap-box {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.33333%;
  left: 0;
  top: 33.33333%;
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center:after, .cropper-center:before {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}

.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face, .cropper-line, .cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box, .cropper-disabled .cropper-face, .cropper-disabled .cropper-line, .cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .vjs-modal-dialog .vjs-modal-dialog-content {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder, .vjs-icon-play {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .vjs-icon-play:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder, .vjs-icon-pause {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before, .vjs-icon-pause:before {
  content: "\f103";
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder, .vjs-icon-volume-mute {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before, .vjs-icon-volume-mute:before {
  content: "\f104";
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder, .vjs-icon-volume-low {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before, .vjs-icon-volume-low:before {
  content: "\f105";
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder, .vjs-icon-volume-mid {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before, .vjs-icon-volume-mid:before {
  content: "\f106";
}

.video-js .vjs-mute-control .vjs-icon-placeholder, .vjs-icon-volume-high {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control .vjs-icon-placeholder:before, .vjs-icon-volume-high:before {
  content: "\f107";
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder, .vjs-icon-fullscreen-enter {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before, .vjs-icon-fullscreen-enter:before {
  content: "\f108";
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder, .vjs-icon-fullscreen-exit {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before, .vjs-icon-fullscreen-exit:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-spinner:before {
  content: "\f10b";
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .vjs-icon-subtitles {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .vjs-icon-subtitles:before {
  content: "\f10c";
}

.video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .vjs-icon-captions {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-captions-button .vjs-icon-placeholder:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .vjs-icon-captions:before {
  content: "\f10d";
}

.video-js .vjs-chapters-button .vjs-icon-placeholder, .vjs-icon-chapters {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-chapters-button .vjs-icon-placeholder:before, .vjs-icon-chapters:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-cog:before {
  content: "\f110";
}

.video-js .vjs-play-progress, .video-js .vjs-volume-level, .vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before, .vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-hd:before {
  content: "\f114";
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder, .vjs-icon-cancel {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before, .vjs-icon-cancel:before {
  content: "\f115";
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder, .vjs-icon-replay {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before, .vjs-icon-replay:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-pinterest:before {
  content: "\f11c";
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder, .vjs-icon-audio-description {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder:before, .vjs-icon-audio-description:before {
  content: "\f11d";
}

.video-js .vjs-audio-button .vjs-icon-placeholder, .vjs-icon-audio {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-audio-button .vjs-icon-placeholder:before, .vjs-icon-audio:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-previous-item:before {
  content: "\f120";
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-picture-in-picture-enter {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before, .vjs-icon-picture-in-picture-enter:before {
  content: "\f121";
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-picture-in-picture-exit {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before, .vjs-icon-picture-in-picture-exit:before {
  content: "\f122";
}

.video-js {
  background-color: #000;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  position: relative;
  vertical-align: top;
  word-break: normal;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  height: 100% !important;
  width: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: 0;
}

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

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin: 0;
}

.video-js.vjs-1-1, .video-js.vjs-16-9, .video-js.vjs-4-3, .video-js.vjs-9-16, .video-js.vjs-fluid {
  height: 0;
  max-width: 100%;
  width: 100%;
}

.video-js.vjs-16-9 {
  padding-top: 56.25%;
}

.video-js.vjs-4-3 {
  padding-top: 75%;
}

.video-js.vjs-9-16 {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1 {
  padding-top: 100%;
}

.video-js .vjs-tech, .video-js.vjs-fill {
  height: 100%;
  width: 100%;
}

.video-js .vjs-tech {
  left: 0;
  position: absolute;
  top: 0;
}

body.vjs-full-window {
  height: 100%;
  margin: 0;
  padding: 0;
}

.vjs-full-window .video-js.vjs-fullscreen {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  height: 100% !important;
  padding-top: 0 !important;
  width: 100% !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  cursor: default;
  opacity: 0.5;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  background-color: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  height: 150px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  width: 300px;
}

.vjs-no-js a, .vjs-no-js a:visited {
  color: #66a8cc;
}

.video-js .vjs-big-play-button {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  border: 0.06666em solid #fff;
  border-radius: 0.3em;
  cursor: pointer;
  display: block;
  font-size: 3em;
  height: 1.63332em;
  left: 10px;
  line-height: 1.5em;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 10px;
  transition: all 0.4s;
  width: 3em;
}

.vjs-big-play-centered .vjs-big-play-button {
  left: 50%;
  margin-left: -1.5em;
  margin-top: -0.81666em;
  top: 50%;
}

.video-js .vjs-big-play-button:focus, .video-js:hover .vjs-big-play-button {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  border-color: #fff;
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button, .vjs-error .vjs-big-play-button, .vjs-has-started .vjs-big-play-button, .vjs-using-native-controls .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: 0 0;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  text-transform: none;
  transition: none;
}

.vjs-control .vjs-button {
  height: 100%;
  width: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), hsla(0, 0%, 100%, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  overflow: auto;
  padding: 0;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  font-size: 1.2em;
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  text-align: center;
  text-transform: lowercase;
}

.js-focus-visible .vjs-menu li.vjs-menu-item:hover, .vjs-menu li.vjs-menu-item:focus, .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.js-focus-visible .vjs-menu li.vjs-selected:hover, .vjs-menu li.vjs-selected, .vjs-menu li.vjs-selected:focus, .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2b333f;
}

.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible), .video-js .vjs-menu :not(.vjs-selected):focus:not(:focus-visible) {
  background: 0 0;
}

.vjs-menu li.vjs-menu-title {
  cursor: default;
  font-size: 1em;
  font-weight: 700;
  line-height: 2em;
  margin: 0 0 0.3em;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

.vjs-menu-button-popup .vjs-menu {
  border-top-color: rgba(43, 51, 63, 0.7);
  bottom: 0;
  display: none;
  height: 0;
  left: -3em;
  margin-bottom: 1.5em;
  position: absolute;
  width: 10em;
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  bottom: 1.5em;
  max-height: 15em;
  position: absolute;
  width: 100%;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-menu-button-popup .vjs-menu.vjs-lock-showing, .vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
  display: block;
}

.video-js .vjs-menu-button-inline {
  overflow: hidden;
  transition: all 0.4s;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline.vjs-slider-active, .video-js .vjs-menu-button-inline:focus, .video-js .vjs-menu-button-inline:hover, .video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  height: 100%;
  left: 4em;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s;
  width: auto;
}

.vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-menu-button-inline:focus .vjs-menu, .vjs-menu-button-inline:hover .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu, .vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  height: 100%;
  margin: 0;
  overflow: hidden;
  width: auto;
}

.video-js .vjs-control-bar {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  bottom: 0;
  display: none;
  height: 3em;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.vjs-has-started .vjs-control-bar {
  display: flex;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
  visibility: visible;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
  visibility: visible;
}

.vjs-controls-disabled .vjs-control-bar, .vjs-error .vjs-control-bar, .vjs-using-native-controls .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  flex: none;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  width: 4em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.video-js .vjs-control:focus, .video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before {
  text-shadow: 0 0 1em #fff;
}

.video-js .vjs-control-text {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex: auto;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  align-items: center;
  display: flex;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  height: 0.3em;
  transition: all 0.2s;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-load-progress, .video-js .vjs-progress-holder .vjs-load-progress div, .video-js .vjs-progress-holder .vjs-play-progress {
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.3333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: hsla(0, 0%, 100%, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip, .video-js .vjs-progress-control:hover .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  background-color: #000;
  display: none;
  height: 100%;
  position: absolute;
  width: 1px;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  opacity: 0;
  transition: visibility 1s, opacity 1s;
  visibility: hidden;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.video-js .vjs-slider {
  -webkit-touch-callout: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  cursor: pointer;
  margin: 0 0.45em;
  padding: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  box-shadow: 0 0 1em #fff;
  text-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  display: flex;
  margin-right: 1em;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  height: 1px;
  margin-left: -1px;
  opacity: 0;
  visibility: visible;
  width: 1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control {
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
  visibility: visible;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {
  height: 3em;
  margin-right: 0;
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
  transition: width 0.1s;
  width: 10em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
  width: 3em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  height: 3em;
  opacity: 1;
  position: relative;
  transition: none;
  visibility: visible;
  width: 5em;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical, .video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  bottom: 3em;
  left: 0.5em;
  position: absolute;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  height: 0.3em;
  width: 5em;
}

.vjs-volume-bar.vjs-slider-vertical {
  height: 5em;
  margin: 1.35em auto;
  width: 0.3em;
}

.video-js .vjs-volume-level {
  background-color: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
}

.video-js .vjs-volume-level:before {
  font-size: 0.9em;
  position: absolute;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  left: -0.3em;
  top: -0.5em;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  right: -0.5em;
  top: -0.3em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  bottom: 8em;
  height: 8em;
  width: 3em;
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: hsla(0, 0%, 100%, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip, .video-js .vjs-volume-control:hover .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip, .video-js .vjs-volume-vertical:hover .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  background-color: #000;
  display: none;
  height: 1px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  height: 100%;
  width: 1px;
}

.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  opacity: 0;
  transition: visibility 1s, opacity 1s;
  visibility: hidden;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-volume-tooltip {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.vjs-poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  cursor: pointer;
  display: inline-block;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
}

.vjs-has-started .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-using-native-controls .vjs-poster {
  display: none;
}

.video-js .vjs-live-control {
  align-items: flex-start;
  display: flex;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  text-align: left;
  width: auto;
}

.video-js.vjs-liveui .vjs-live-control, .video-js:not(.vjs-live) .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  flex: none;
  font-size: 1em;
  height: 100%;
  line-height: 3em;
  min-width: 4em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: auto;
}

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  text-align: left;
  width: auto;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control, .video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  color: #888;
  margin-right: 0.5em;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  padding-left: 1em;
  padding-right: 1em;
  width: auto;
}

.video-js .vjs-current-time, .video-js .vjs-duration, .vjs-live .vjs-time-control, .vjs-no-flex .vjs-current-time, .vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  bottom: 3em;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  margin-bottom: 0.1em;
  text-align: center;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-fullscreen-control, .video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.vjs-playback-rate .vjs-playback-rate-value, .vjs-playback-rate > .vjs-menu-button {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  pointer-events: none;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  left: 0;
  width: 4em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-align: center;
  text-shadow: 0.05em 0.05em 0.1em #000;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  background-clip: padding-box;
  border: 6px solid rgba(43, 51, 63, 0.7);
  border-radius: 25px;
  box-sizing: border-box;
  display: none;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  position: absolute;
  text-align: left;
  top: 50%;
  visibility: hidden;
  width: 50px;
}

.vjs-seeking .vjs-loading-spinner, .vjs-waiting .vjs-loading-spinner {
  animation: vjs-spinner-show 0s linear 0.3s forwards;
  display: block;
}

.vjs-loading-spinner:after, .vjs-loading-spinner:before {
  border: inherit;
  border-color: #fff transparent transparent;
  border-radius: inherit;
  box-sizing: inherit;
  content: "";
  height: inherit;
  margin: -6px;
  opacity: 1;
  position: absolute;
  width: inherit;
}

.vjs-seeking .vjs-loading-spinner:after, .vjs-seeking .vjs-loading-spinner:before, .vjs-waiting .vjs-loading-spinner:after, .vjs-waiting .vjs-loading-spinner:before {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before, .vjs-waiting .vjs-loading-spinner:before {
  border-top-color: #fff;
}

.vjs-seeking .vjs-loading-spinner:after, .vjs-waiting .vjs-loading-spinner:after {
  animation-delay: 0.44s;
  border-top-color: #fff;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: #fff;
  }
  60% {
    border-top-color: #73859f;
  }
  to {
    border-top-color: #73859f;
  }
}
.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  display: inline-block;
  margin-bottom: -0.1em;
  vertical-align: middle;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  content: "\f10d";
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: inherit;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  display: inline-block;
  margin-bottom: -0.1em;
  vertical-align: middle;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  content: " \f11d";
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time, .video-js.vjs-layout-small .vjs-duration, .video-js.vjs-layout-small .vjs-playback-rate, .video-js.vjs-layout-small .vjs-remaining-time, .video-js.vjs-layout-small .vjs-time-divider, .video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time, .video-js.vjs-layout-tiny .vjs-duration, .video-js.vjs-layout-tiny .vjs-playback-rate, .video-js.vjs-layout-tiny .vjs-remaining-time, .video-js.vjs-layout-tiny .vjs-time-divider, .video-js.vjs-layout-tiny .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time, .video-js.vjs-layout-x-small .vjs-duration, .video-js.vjs-layout-x-small .vjs-playback-rate, .video-js.vjs-layout-x-small .vjs-remaining-time, .video-js.vjs-layout-x-small .vjs-time-divider, .video-js.vjs-layout-x-small .vjs-volume-control {
  display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
  width: auto;
}

.video-js.vjs-layout-tiny .vjs-progress-control, .video-js.vjs-layout-x-small .vjs-progress-control {
  display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  display: block;
  flex: auto;
}

.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors, .vjs-text-track-settings .vjs-track-settings-controls, .vjs-text-track-settings .vjs-track-settings-font {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content, .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content, .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-track-setting > select {
  margin-bottom: 0.5em;
  margin-right: 1em;
}

.vjs-text-track-settings fieldset {
  border: none;
  margin: 5px;
  padding: 3px;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px;
}

.vjs-text-track-settings .vjs-label {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
  display: block;
  height: 1px;
  margin: 0 0 5px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-track-settings-controls button:active, .vjs-track-settings-controls button:focus {
  background-image: linear-gradient(0deg, #fff 88%, #73859f);
  outline-style: solid;
  outline-width: medium;
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f);
  border-radius: 2px;
  color: #2b333f;
  cursor: pointer;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > :not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1000;
}

.js-focus-visible .video-js :focus:not(.focus-visible) {
  outline: 0;
}

.video-js :focus:not(:focus-visible) {
  outline: 0;
}

@keyframes mpFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mpAppear {
  0% {
    transform: translate3d(0, 50px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mpSlideFromBelow {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mpSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mpOptionsOpen {
  0% {
    transform: translate3d(0, -30px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.video-js {
  width: 100%;
  height: auto;
  text-align: center;
}
.video-js video.vjs-tech {
  position: static;
  width: 100%;
}
.video-js .vjs-big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  color: #fff;
  background: #032863;
  border: 0;
  font-size: 36px;
  line-height: 100px;
  text-align: center;
}
.video-js .vjs-big-play-button svg {
  margin-left: 7px;
}
.video-js:hover .vjs-big-play-button {
  background: #032863;
}
.video-js.vjs-has-started .vjs-big-play-button {
  display: block;
}
.video-js.vjs-playing .vjs-big-play-button, .video-js.vjs-scrubbing .vjs-big-play-button {
  display: none;
}
.video-js .vjs-control-bar {
  height: 76px;
  padding: 20px 25px 20px 15px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.video-js.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  transition: visibility 0.3s, opacity 0.3s ease;
}
.video-js .vjs-control {
  width: 40px !important;
  font-size: 18px;
  color: #fff;
  transition: color 0.2s ease;
}
.video-js .vjs-control:focus, .video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before {
  text-shadow: none;
}
.video-js .vjs-control.vjs-play-control {
  width: 45px !important;
}
.video-js .vjs-control:hover {
  color: #032863;
}
.video-js.vjs-playing .vjs-play-control .vjs-play, .video-js.vjs-paused .vjs-play-control .vjs-pause {
  display: none;
}
.video-js .vjs-volume-panel {
  order: 1;
  width: auto !important;
  margin-right: 10px;
}
.video-js .vjs-volume-panel .vjs-mute-control > div {
  display: none;
}
.video-js .vjs-volume-panel .vjs-mute-control.vjs-vol-0 > .vjs-volume-0, .video-js .vjs-volume-panel .vjs-mute-control.vjs-vol-1 > .vjs-volume-1, .video-js .vjs-volume-panel .vjs-mute-control.vjs-vol-2 > .vjs-volume-2, .video-js .vjs-volume-panel .vjs-mute-control.vjs-vol-3 > .vjs-volume-3 {
  display: block;
}
.video-js .vjs-volume-panel .vjs-volume-control {
  opacity: 1;
  width: 96px !important;
  margin-right: 0 !important;
}
.video-js .vjs-volume-panel .vjs-volume-control .vjs-volume-bar {
  margin: 16px 0 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  height: 7px;
  width: 100%;
}
.video-js .vjs-volume-panel .vjs-volume-control .vjs-volume-bar .vjs-volume-level {
  border-radius: 4px;
  background: #032863;
  height: 7px;
}
.video-js .vjs-volume-panel .vjs-volume-control .vjs-volume-bar .vjs-volume-level:before {
  display: none;
}
.video-js .vjs-progress-control {
  margin: 0 10px;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 18px;
}
.video-js .vjs-progress-control .vjs-progress-holder {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0;
}
.video-js .vjs-progress-control .vjs-progress-holder .vjs-play-progress {
  background: #fff;
  border-radius: 4px;
}
.video-js .vjs-progress-control .vjs-progress-holder .vjs-load-progress {
  background: none;
}
.video-js .vjs-progress-control .vjs-progress-holder .vjs-load-progress div {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
}
.video-js .vjs-progress-control .vjs-play-progress:before {
  content: "";
  width: 16px;
  height: 16px;
  top: -5px;
  right: -8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}
.video-js .vjs-progress-control .vjs-vtt-thumbnail-display {
  position: absolute;
  top: -190px;
}
.video-js .vjs-fullscreen-control {
  order: 3;
}
.video-js .vjs-quality-selector {
  order: 2;
  font-size: 14px;
  width: 50px !important;
}
.video-js .vjs-quality-selector .vjs-menu-button {
  font-size: inherit;
}
.video-js .vjs-quality-selector .vjs-menu {
  width: auto;
  bottom: 100%;
  margin: 0;
  left: 0;
  max-height: none;
}
.video-js .vjs-quality-selector .vjs-menu .vjs-menu-content {
  width: auto;
  left: 0;
  bottom: 0;
}
.video-js .vjs-quality-selector .vjs-menu li {
  font-size: inherit;
  padding: 3px 10px;
  color: #fff;
  text-align: left;
}
.video-js .vjs-quality-selector .vjs-menu li.vjs-selected {
  color: #2b333f;
}
.video-js .vjs-quality-selector .vjs-menu li.vjs-menu-title {
  font-weight: inherit;
  font-size: 12px;
}
.video-js .vjs-slider:focus {
  text-shadow: none;
  box-shadow: none;
}

.m-input-slider {
  position: relative;
}
.m-input-slider .mis-slider {
  position: relative;
}
.m-input-slider .mis-slider .mis-bar {
  height: 2px;
  background: #c0c0c0;
}
.m-input-slider .mis-slider .mis-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: -7px;
  margin-left: -8px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
}
.m-input-slider .mis-input {
  margin-top: 10px;
  text-align: center;
}
.m-input-slider .mis-input .mis-input-readonly {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.m-input-slider .mis-input input {
  width: 70px !important;
  margin: 0 auto !important;
  text-align: center;
  border: 1px solid #c0c0c0 !important;
  height: 30px !important;
}

body.mp-opened {
  overflow: hidden;
}

.mp a {
  text-decoration: underline;
  color: inherit;
}
.mp .mp-opener {
  cursor: pointer;
}
.mp .mp-clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.mp .dropdown {
  border-color: #696969;
}
.mp .dropdown .toggle {
  padding: 0 23px;
  line-height: 48px;
  text-align: left;
}
.mp .dropdown .toggle .icon svg {
  vertical-align: middle;
  font-size: 16px;
  color: #c0c0c0;
}
.mp .dropdown .drop {
  background: #fff;
  color: #696969;
  box-shadow: 0 1px 13px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  line-height: 40px;
  margin-top: 10px;
  animation: mpOptionsOpen 0.3s ease forwards;
}
.mp .dropdown .items {
  padding: 14px 0;
  max-height: 320px;
}
.mp .dropdown .items > * {
  padding: 0 23px;
}
.mp .dropdown .items > *:hover {
  background: #f6f6f6;
}
.mp .dropdown .items > *.active {
  color: #ab48ba;
}
.mp .dropdown .items > *.danger {
  color: #d90000;
}
.mp .dropdown.m-dropdown-alt .toggle {
  padding: 0;
  line-height: inherit;
}
.mp .dropdown.m-dropdown-alt .toggle .title {
  width: auto;
  margin-right: 10px;
}
.mp .dropdown.m-dropdown-alt .items > *:hover {
  background: none;
  color: #000;
}
.mp .dropdown.m-dropdown-alt .items > *.active {
  background: #f6f6f6;
}
.mp .mp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #696969;
}
.mp .mp-modal .mp-dark {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: mpFade 0.3s ease-out forwards;
}
.mp .mp-modal input[type=text], .mp .mp-modal input[type=email], .mp .mp-modal input[type=date], .mp .mp-modal input[type=search], .mp .mp-modal input.form-text, .mp .mp-modal textarea, .mp .mp-modal .textfield {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 42px;
  margin: 0;
  padding: 0 13px;
  border: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  box-shadow: none;
  color: #696969;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.mp .mp-modal input[type=text]:focus, .mp .mp-modal input[type=email]:focus, .mp .mp-modal input[type=date]:focus, .mp .mp-modal input[type=search]:focus, .mp .mp-modal input.form-text:focus, .mp .mp-modal textarea:focus, .mp .mp-modal .textfield:focus {
  border-color: #696969;
  box-shadow: none;
}
.mp .mp-modal input[type=text].filled, .mp .mp-modal input[type=email].filled, .mp .mp-modal input[type=date].filled, .mp .mp-modal input[type=search].filled, .mp .mp-modal input.form-text.filled, .mp .mp-modal textarea.filled, .mp .mp-modal .textfield.filled {
  border-color: #696969;
}
.mp .mp-modal input[type=text].success, .mp .mp-modal input[type=email].success, .mp .mp-modal input[type=date].success, .mp .mp-modal input[type=search].success, .mp .mp-modal input.form-text.success, .mp .mp-modal textarea.success, .mp .mp-modal .textfield.success {
  border-color: #64cd0b;
}
.mp .mp-modal input[type=text].error, .mp .mp-modal input[type=email].error, .mp .mp-modal input[type=date].error, .mp .mp-modal input[type=search].error, .mp .mp-modal input.form-text.error, .mp .mp-modal textarea.error, .mp .mp-modal .textfield.error {
  border-color: #d90000;
}
.mp .mp-modal input[type=text].inline, .mp .mp-modal input[type=email].inline, .mp .mp-modal input[type=date].inline, .mp .mp-modal input[type=search].inline, .mp .mp-modal input.form-text.inline, .mp .mp-modal textarea.inline, .mp .mp-modal .textfield.inline {
  border: 0;
  padding: 0;
}
.mp .mp-modal input[type=text].inline:focus, .mp .mp-modal input[type=email].inline:focus, .mp .mp-modal input[type=date].inline:focus, .mp .mp-modal input[type=search].inline:focus, .mp .mp-modal input.form-text.inline:focus, .mp .mp-modal textarea.inline:focus, .mp .mp-modal .textfield.inline:focus {
  box-shadow: none;
}
.mp .mp-modal input[type=text].large, .mp .mp-modal input[type=email].large, .mp .mp-modal input[type=date].large, .mp .mp-modal input[type=search].large, .mp .mp-modal input.form-text.large, .mp .mp-modal textarea.large, .mp .mp-modal .textfield.large {
  font-size: 18px;
  font-weight: 600;
}
.mp.open .mp-modal {
  display: block;
}
.mp .mp-loader {
  background: rgba(230, 230, 230, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mp .mp-loader .mp-inner {
  max-width: 600px;
  padding: 40px;
  text-align: center;
  margin: 0 auto;
}
.mp .mp-loader .mpSpinner {
  border: 6px solid transparent;
  border-top: 6px solid #08f;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  animation: mpSpin 1s ease infinite;
}
.mp .mp-loader .mp-info {
  margin-top: 40px;
}
.mp .mp-btn {
  display: inline-block;
  border-radius: 20px;
  line-height: 38px;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: 600;
  text-align: center;
  padding: 0 33px;
  border: 1px solid #dfdfdf;
  color: #696969;
  transition: color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mp .mp-btn:hover {
  border-color: #696969;
}
.mp .mp-btn.disabled {
  color: #c0c0c0;
  border-color: #dfdfdf;
  pointer-events: none;
  cursor: normal;
}
.mp .mp-btn.mp-btn-primary {
  background-color: #ab48ba;
  border-color: #ab48ba;
  color: #fff;
}
.mp .mp-btn.mp-btn-primary:hover {
  box-shadow: 0 0 13px rgba(171, 72, 186, 0.73);
}
.mp .mp-btn.mp-btn-primary.active {
  background-color: #824989;
  border-color: #824989;
}
.mp .mp-btn.mp-btn-primary.disabled {
  background-color: #f2e4f5;
  border-color: #f2e4f5;
}
.mp .mp-btn.mp-btn-highlight {
  background-color: #00c0e9;
  border-color: #00c0e9;
  color: #fff;
}
.mp .mp-btn.mp-btn-highlight:hover {
  box-shadow: 0 0 13px rgba(0, 192, 233, 0.73);
}
.mp .mp-btn.mp-btn-highlight.disabled {
  background-color: #e5f9fd;
  border-color: #e5f9fd;
}
.mp .mp-btn.mp-btn-success {
  background-color: #64cd0b;
  border-color: #64cd0b;
  color: #fff;
}
.mp .mp-btn.mp-btn-success:hover {
  box-shadow: 0 0 13px rgba(100, 205, 11, 0.73);
}
.mp .mp-btn.mp-btn-success.disabled {
  background-color: #ceeeb2;
  border-color: #ceeeb2;
}
.mp .mp-btn.mp-btn-danger {
  background-color: #d90000;
  border-color: #d90000;
  color: #fff;
}
.mp .mp-btn.mp-btn-danger:hover {
  box-shadow: 0 0 13px rgba(217, 0, 0, 0.73);
}
.mp .mp-btn.mp-btn-danger.disabled {
  background-color: #ffcccc;
  border-color: #ffcccc;
}
.mp .mp-btn.mp-btn-block {
  display: block;
}
.mp .mp-upload-input input {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.mp .mp-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: mpFade 0.3s ease-out forwards;
}
.mp .mp-dialog > .inner {
  margin: 0 auto;
  max-width: 600px;
  padding: 30px 40px;
  background: #fff;
  border-radius: 4px;
  animation: mpFade 0.3s ease-out forwards, mpAppear 0.3s ease-out forwards;
}
.mp .mp-dialog .mp-dialog-title {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.mp .mp-dialog .mp-dialog-text {
  margin-bottom: 20px;
}
.mp .mp-dialog .mp-dialog-option:nth-child(n+2) {
  margin-left: 10px;
}
.mp .mp-dialog.mp-dialog-special {
  text-align: center;
}
.mp .mp-dialog.mp-dialog-special > .inner {
  width: 500px;
  padding: 40px 60px 60px;
}
.mp .mp-dialog.mp-dialog-special .mp-dialog-title {
  font-size: 22px;
  font-weight: 400;
  color: #ab48ba;
}
.mp .mp-dialog.mp-dialog-special .mp-dialog-options {
  margin-top: 20px;
  display: grid;
  grid-auto-columns: 1fr;
  grid-gap: 20px;
}
.mp .mp-dialog.mp-dialog-special .mp-dialog-options .mp-dialog-option {
  grid-row: 1;
  padding: 40px 20px;
  margin: 0;
  color: #c0c0c0;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}
.mp .mp-dialog.mp-dialog-special .mp-dialog-options .mp-dialog-option .mp-dialog-option-icon {
  font-size: 65px;
  line-height: 1;
}
.mp .mp-dialog.mp-dialog-special .mp-dialog-options .mp-dialog-option .mp-dialog-option-title {
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0 10px;
}
.mp .mp-dialog.mp-dialog-special .mp-dialog-options .mp-dialog-option:hover {
  color: #ab48ba;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
}
.mp .mp-close {
  font-size: 26px;
  color: #696969;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mp .mp-close:hover {
  color: #000;
}
.mp .mp-light {
  position: relative;
  margin: 5vh auto 0;
  width: 90%;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  z-index: 101;
  animation: mpFade 0.3s ease-out forwards, mpAppear 0.4s ease-out forwards;
}
.mp .mp-light .mp-upload-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
.mp .mp-light .mp-upload-overlay > * {
  pointer-events: none;
}
.mp .mp-light .mp-upload-overlay .icon {
  font-size: 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  line-height: 180px;
  width: 180px;
  border-radius: 50%;
  border: 2px dashed #fff;
}
.mp .mp-light .mp-light-content {
  display: grid;
  grid-template-columns: 15% auto;
  grid-template-rows: 1fr;
  height: 90vh;
}
.mp .mp-light .mp-light-content .mp-sidebar-left {
  border-right: 1px solid #dfdfdf;
  background: #fff;
}
.mp .mp-light .mp-light-content .mp-sidebar-left > * {
  padding: 30px;
  border-bottom: 1px solid #dfdfdf;
}
.mp .mp-light .mp-light-content .mp-sidebar-left .mp-left-title {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.mp .mp-light .mp-light-content .mp-sidebar-left .mp-left-items > * {
  line-height: 21px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mp .mp-light .mp-light-content .mp-sidebar-left .mp-left-items > *:hover {
  color: #000;
}
.mp .mp-light .mp-light-content .mp-sidebar-left .mp-left-items > *.active {
  color: #ab48ba;
}
.mp .mp-light .mp-light-content .mp-sidebar-left .mp-left-items > *:nth-child(n+2) {
  margin-top: 15px;
}
.mp .mp-light .mp-light-content .mp-sidebar-left .mp-left-items > * span {
  display: inline-block;
  vertical-align: middle;
}
.mp .mp-light .mp-light-content .mp-sidebar-left .mp-left-items > * svg {
  font-size: 20px;
  width: 37px;
  vertical-align: middle;
}
.mp .mp-light .mp-light-content .mp-workspace {
  position: relative;
  background: #f6f6f6;
  overflow: hidden;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 20px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-header .mp-header-left {
  float: left;
  width: 570px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-header .mp-header-right {
  float: right;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-header .mp-header-right > * {
  float: left;
  line-height: 40px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-header .mp-header-right .mp-divider {
  height: 40px;
  width: 1px;
  background: #dfdfdf;
  margin: 0 20px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header {
  padding-bottom: 20px;
  line-height: 24px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-back {
  float: left;
  color: #c0c0c0;
  font-size: 24px;
  font-weight: 600;
  margin-right: 20px;
  transition: color 0.2s ease;
  cursor: pointer;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-back:hover {
  color: #000;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-title {
  float: left;
  color: #c0c0c0;
  font-size: 18px;
  font-weight: 600;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-action {
  float: left;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #dfdfdf;
  cursor: pointer;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-action:hover {
  text-decoration: underline;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-summary {
  float: left;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #dfdfdf;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-sort {
  float: right;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-display {
  float: right;
  font-size: 18px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-display > * {
  float: left;
  cursor: pointer;
  margin-left: 20px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-display .active {
  color: #ab48ba;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-list-header .mp-list-sort ~ .mp-list-display {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #dfdfdf;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-selection {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
  padding: 15px 40px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-selection .mp-actions {
  float: left;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-selection .mp-actions > * {
  margin-right: 10px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-selection .mp-selected {
  float: right;
  padding: 9px 0;
  line-height: 22px;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-selection .mp-selected > * {
  float: left;
}
.mp .mp-light .mp-light-content .mp-workspace .mp-selection .mp-selected .mp-divider {
  height: 22px;
  width: 1px;
  margin: 0 15px;
  background: #dfdfdf;
}
.mp .mp-scrollarea {
  overflow: auto;
  padding: 30px 40px 0;
  height: 100%;
  box-sizing: border-box;
}
.mp .mp-scrollarea.always {
  overflow-y: scroll;
}
.mp .mp-scrollarea:after {
  content: "";
  display: block;
  height: 80px;
}
.mp .mp-fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mp .mp-fullscreen.mp-workspace {
  background: #313131;
  display: grid;
  grid-template-columns: 1fr min-content;
}
.mp .mp-fullscreen.mp-workspace .mp-view {
  position: relative;
  overflow: hidden;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-image > img:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  max-width: none;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-image .mp-focuspoint-box {
  position: absolute;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-image .mp-focuspoint-box .mp-focuspoint {
  position: absolute;
  margin: -24px 0 0 -24px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 50%;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-image .mp-focuspoint-box .mp-focuspoint:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -3px;
  right: 0;
  bottom: 0;
  border: 2px solid #fff;
  border-radius: 50%;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-image .mp-focuspoint-box .mp-focuspoint:after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.4);
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-mux,
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-cloudflare,
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-youtube,
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-vimeo {
  width: 60vw;
  max-width: 1600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-mux .m-mux > div {
  height: 0;
  padding-bottom: 75%;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-mux video {
  position: absolute !important;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-view-file .mp-view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  font-size: 144px;
  color: #fff;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-zoom {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 110;
  border-radius: 4px;
  background: #313131;
  color: #fff;
  transform: translate3d(-50%, 0, 0);
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-zoom > * {
  float: left;
  line-height: 50px;
  text-align: center;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-zoom > *.mp-zoom-icon {
  width: 50px;
  font-size: 20px;
  cursor: pointer;
}
.mp .mp-fullscreen.mp-workspace .mp-view .mp-zoom > *.mp-zoom-value {
  width: 60px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right {
  position: relative;
  background: #fff;
  padding-bottom: 170px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details {
  width: 370px;
  padding: 40px 50px;
  box-sizing: border-box;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-close {
  float: right;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-right-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 10px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-bit {
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-subbit {
  padding: 30px 0 0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-properties table {
  width: 100%;
  border-collapse: collapse;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-properties table td {
  padding: 4px 0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-properties table td svg {
  margin-right: 3px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-user-value {
  margin-top: 15px;
  line-height: 40px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-details .mp-relationships {
  padding: 10px 0 0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit {
  width: 270px;
  padding: 40px;
  box-sizing: border-box;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-title {
  position: relative;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-title .mp-edit-back {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #c0c0c0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-title .mp-edit-back:hover {
  color: #000;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap {
  display: grid;
  grid-auto-columns: 1fr;
  grid-gap: 1px;
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 40px;
  background: #c0c0c0;
  border-radius: 4px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap.large {
  font-size: 25px;
  line-height: 84px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option {
  background: #fff;
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  grid-row: 1;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option:first-child {
  border-radius: 4px 0 0 4px;
  border-left: 1px solid #c0c0c0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #c0c0c0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option:first-child:last-child {
  border-radius: 4px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option:hover {
  color: #ab48ba;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.active {
  background: #ab48ba;
  border-color: #ab48ba;
  color: #fff;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-x {
  font-size: 0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-x > * {
  vertical-align: middle;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-x svg {
  font-size: 25px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-x svg:first-child {
  color: #000;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-x svg:last-child {
  color: #c0c0c0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-x .divider {
  display: inline-block;
  height: 40px;
  width: 2px;
  background: #000;
  margin: 0 3px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-y {
  line-height: 1;
  padding: 17px 0 0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-y svg:first-child {
  color: #000;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-y svg:last-child {
  color: #c0c0c0;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-y .divider {
  width: 50px;
  height: 2px;
  background: #000;
  margin: 0 auto;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-x:hover .divider, .mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-option-wrap .mp-edit-option.mp-flip-y:hover .divider {
  background: #ab48ba;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-custom-ratio {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  font-size: 12px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-custom-ratio .mp-title {
  margin-bottom: 5px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-custom-ratio .mp-custom-ratio {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  line-height: 34px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-custom-ratio .mp-custom-ratio input {
  height: 34px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-custom-ratio .mp-custom-ratio input:focus {
  border-color: #696969;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-focuspoint-preset,
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-rotate {
  margin-bottom: 5px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-focuspoint-preset .mp-title,
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-rotate .mp-title {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-focuspoint-preset .mp-icon {
  width: 50%;
  margin: 0 auto;
  font-size: 25px;
  line-height: 84px;
  border-radius: 4px;
  border: 1px solid #c0c0c0;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-focuspoint-preset .mp-icon:hover {
  color: #ab48ba;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-menu > * {
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #c0c0c0;
  height: 180px;
  text-align: center;
  padding: 50px 0 0;
  margin: 0 0 25px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-menu > *:hover {
  color: #ab48ba;
  border-color: #ab48ba;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-menu > * .mp-icon {
  font-size: 48px;
  margin-bottom: 10px;
  line-height: 1;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-undo {
  text-align: center;
  font-size: 12px;
  margin-top: 25px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-undo:hover {
  color: #ab48ba;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-undo svg {
  margin-right: 3px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-undo span {
  font-weight: 600;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-thumbnail-timestamp-menu {
  text-align: center;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-thumbnail-timestamp-menu .mp-thumbnail-timestamp-description {
  margin-bottom: 20px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-thumbnail-timestamp-menu .mp-thumbnail-timestamp-preview {
  margin-bottom: 20px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-sidebar-edit .mp-edit-thumbnail-timestamp-menu .mp-thumbnail-timestamp-preview img {
  max-width: 100%;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-right-actions {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
}
.mp .mp-fullscreen.mp-workspace .mp-sidebar-right .mp-right-actions > * {
  margin-top: 10px;
}
.mp .mp-fullscreen ~ .mp-light {
  display: none;
}
.mp .mp-link {
  text-decoration: underline;
  cursor: pointer;
}
.mp .mp-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.mp .mp-thumb {
  position: relative;
}
.mp .mp-thumb .mp-bg-fit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.mp .mp-thumb .mp-bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
}
.mp .mp-avatar {
  max-width: 38px;
  border-radius: 50%;
  vertical-align: middle;
}
.mp .mp-avatar + span,
.mp .mp-avatar + a {
  margin-left: 10px;
  vertical-align: middle;
}
.mp .mp-display-thumbs .mp-items {
  position: relative;
}
.mp .mp-display-thumbs .mp-item {
  position: absolute;
  box-sizing: border-box;
  background: #dfdfdf;
  cursor: pointer;
}
.mp .mp-display-thumbs .mp-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.17, 0.16, 0.24, 0.9);
  pointer-events: none;
}
.mp .mp-display-thumbs .mp-item:hover:after {
  opacity: 0.2;
}
.mp .mp-display-thumbs .mp-item .mp-select {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 110;
}
.mp .mp-display-thumbs .mp-item .mp-select input:checked ~ .icon {
  border: #fff;
  background: #fff;
  color: #696969;
}
.mp .mp-display-thumbs .mp-item.selected:before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(to right top, #ac45b9, #00c0e9);
}
.mp .mp-display-thumbs .mp-item.selected .mp-select {
  display: block;
}
.mp .mp-display-thumbs .mp-item.mp-status-processing .mp-thumb-icon, .mp .mp-display-thumbs .mp-item.mp-status-error .mp-thumb-icon {
  display: none;
}
.mp .mp-display-thumbs .mp-item.mp-status-processing .mp-bg-cover, .mp .mp-display-thumbs .mp-item.mp-status-error .mp-bg-cover {
  display: none;
}
.mp .mp-display-thumbs .mp-item.mp-status-processing .mp-status, .mp .mp-display-thumbs .mp-item.mp-status-error .mp-status {
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  text-align: center;
}
.mp .mp-display-thumbs .mp-item.mp-status-processing .mp-status .title, .mp .mp-display-thumbs .mp-item.mp-status-error .mp-status .title {
  display: inline-block;
  padding: 5px 10px;
  background: #00c0e9;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
}
.mp .mp-display-thumbs .mp-item.mp-status-processing .mp-status .message, .mp .mp-display-thumbs .mp-item.mp-status-error .mp-status .message {
  margin-top: 5px;
  font-size: 12px;
}
.mp .mp-display-thumbs .mp-item.mp-status-error .mp-status .title {
  background: #d90000;
}
.mp .mp-display-thumbs .mp-item .mp-thumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mp .mp-display-thumbs .mp-item .mp-thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  font-size: 34px;
  width: 68px;
  line-height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.mp .mp-display-thumbs .mp-item .mp-status,
.mp .mp-display-thumbs .mp-item .mp-icon,
.mp .mp-display-thumbs .mp-item .mp-meta,
.mp .mp-display-thumbs .mp-item .mp-name,
.mp .mp-display-thumbs .mp-item .mp-type,
.mp .mp-display-thumbs .mp-item .mp-filesize,
.mp .mp-display-thumbs .mp-item .mp-created {
  display: none;
}
.mp .mp-display-table .mp-items {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.mp .mp-display-table .mp-items .mp-item {
  display: table-row;
  border-top: 1px solid #dfdfdf;
  cursor: pointer;
}
.mp .mp-display-table .mp-items .mp-item:hover {
  background: #f6f6f6;
}
.mp .mp-display-table .mp-items .mp-item:last-child {
  border-bottom: 1px solid #dfdfdf;
}
.mp .mp-display-table .mp-items .mp-item.selected {
  border-color: #696969;
}
.mp .mp-display-table .mp-items .mp-item.selected + .mp-item {
  border-top-color: #696969;
}
.mp .mp-display-table .mp-items .mp-item > * {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 15px;
}
.mp .mp-display-table .mp-items .mp-item .mp-select {
  width: 1px;
  padding-right: 7px;
}
.mp .mp-display-table .mp-items .mp-item .mp-thumb-wrap {
  position: relative;
  width: 1px;
}
.mp .mp-display-table .mp-items .mp-item .mp-thumb-wrap .mp-thumb {
  height: 50px;
  width: 66px;
  border: 1px solid #dfdfdf;
}
.mp .mp-display-table .mp-items .mp-item .mp-thumb-wrap .mp-thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  font-size: 14px;
  width: 26px;
  line-height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.mp .mp-display-table .mp-items .mp-item .mp-icon {
  font-size: 16px;
  width: 1px;
  padding-right: 0;
}
.mp .mp-display-table .mp-items .mp-item > :last-child {
  width: 1px;
  white-space: nowrap;
}
.mp .mp-form-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
  border-radius: 4px;
}
.mp .mp-checkbox {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mp .mp-checkbox input {
  display: none;
}
.mp .mp-checkbox .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 18px;
  border: 1px solid #dfdfdf;
  text-align: center;
  color: #fff;
  vertical-align: middle;
}
.mp .mp-checkbox .icon:hover {
  border-color: #696969;
}
.mp .mp-checkbox .icon svg {
  display: none;
  vertical-align: baseline;
}
.mp .mp-checkbox.active .icon,
.mp .mp-checkbox input:checked ~ .icon {
  border-color: #696969;
  background: #696969;
}
.mp .mp-checkbox.active .icon svg,
.mp .mp-checkbox input:checked ~ .icon svg {
  display: inline-block;
}
.mp .mp-input-icon:after {
  content: "";
  display: block;
  clear: both;
}
.mp .mp-input-icon .icon {
  float: left;
  color: #c0c0c0;
  text-align: right;
  line-height: 48px;
  font-size: 16px;
  width: 32px;
}
.mp .mp-input-icon input[type=text], .mp .mp-input-icon input[type=email], .mp .mp-input-icon input[type=date], .mp .mp-input-icon input[type=search], .mp .mp-input-icon input.form-text, .mp .mp-input-icon textarea, .mp .mp-input-icon .textfield {
  width: calc(100% - 32px);
  float: left;
  border: 0;
  border-radius: 0 4px 4px 0;
  height: 48px;
}
.mp .mp-modal > .mp-workspace {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  animation: mpFade 0.3s ease-out forwards;
}
.mp .mp-youtube,
.mp .mp-vimeo {
  position: relative;
  padding-bottom: 56.25%;
}
.mp .mp-youtube iframe,
.mp .mp-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.mp .mp-pagination-controls ul.pagination {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 18px;
  list-style: none;
}
.mp .mp-pagination-controls ul.pagination li {
  color: #c0c0c0;
  display: inline-block;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  margin: 0;
  vertical-align: middle;
}
.mp .mp-pagination-controls ul.pagination li a {
  position: relative;
  display: block;
  padding: 5px 0;
  width: 28px;
  text-decoration: none;
}
.mp .mp-pagination-controls ul.pagination li a:hover {
  color: #696969;
  text-decoration: underline;
}
.mp .mp-pagination-controls ul.pagination li.pagination-page-nav {
  margin: 0 10px;
}
.mp .mp-pagination-controls ul.pagination li.pagination-prev-nav, .mp .mp-pagination-controls ul.pagination li.pagination-next-nav {
  font-size: 16px;
}
.mp .mp-pagination-controls ul.pagination li.active {
  cursor: default;
  background-color: #696969;
  color: #fff;
}
.mp .mp-pagination-controls ul.pagination li.active a {
  pointer-events: none;
}
.mp .mp-pagination-controls ul.pagination li:first-child {
  margin-left: 0;
}
.mp .mp-pagination-controls ul.pagination li:last-child {
  margin-right: 0;
}
.mp span.cropper-point {
  background: #313131;
  opacity: 1;
}
.mp span.cropper-point:before, .mp span.cropper-point:after {
  content: "";
  display: block;
  background: #313131;
  opacity: 1;
  position: absolute;
  bottom: auto;
}
.mp span.cropper-point.point-e, .mp span.cropper-point.point-se, .mp span.cropper-point.point-ne {
  right: 0;
}
.mp span.cropper-point.point-w, .mp span.cropper-point.point-sw, .mp span.cropper-point.point-nw {
  left: 0;
}
.mp span.cropper-point.point-s, .mp span.cropper-point.point-sw, .mp span.cropper-point.point-se {
  bottom: 0;
}
.mp span.cropper-point.point-n, .mp span.cropper-point.point-nw, .mp span.cropper-point.point-ne {
  top: 0;
}
.mp span.cropper-point.point-e, .mp span.cropper-point.point-w {
  width: 9px;
  height: 32px;
  margin-top: -16px;
}
.mp span.cropper-point.point-n, .mp span.cropper-point.point-s {
  width: 32px;
  height: 9px;
  margin-left: -16px;
}
.mp span.cropper-point.point-nw, .mp span.cropper-point.point-ne, .mp span.cropper-point.point-sw, .mp span.cropper-point.point-se {
  width: 9px;
  height: 9px;
}
.mp span.cropper-point.point-nw:before, .mp span.cropper-point.point-ne:before, .mp span.cropper-point.point-sw:before, .mp span.cropper-point.point-se:before {
  width: 32px;
  height: 9px;
}
.mp span.cropper-point.point-nw:after, .mp span.cropper-point.point-ne:after, .mp span.cropper-point.point-sw:after, .mp span.cropper-point.point-se:after {
  width: 9px;
  height: 32px;
}
.mp span.cropper-point.point-sw:after, .mp span.cropper-point.point-se:after {
  bottom: 0;
}
.mp span.cropper-point.point-ne:before, .mp span.cropper-point.point-se:before {
  right: 0;
}
.mp .cropper-view-box {
  outline: 2px solid #313131;
}
.mp .cropper-line {
  display: none;
}
.mp .cropper-dashed {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.3);
}
.mp .cropper-wrap-box {
  overflow: visible;
}
.mp .mp-empty {
  position: absolute;
  margin: -5% 0 0 0;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
}
.mp .mp-empty .icon {
  color: #000;
  font-weight: 700;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 30px;
}
.mp .mp-empty .icon .text {
  position: relative;
  display: inline-block;
  letter-spacing: -1px;
}
.mp .mp-empty .icon.unsplash {
  font-size: 38px;
}
.mp .mp-empty .icon.youtube {
  padding: 0;
  font-size: 36px;
}
.mp .mp-empty .icon.youtube > span {
  margin-left: 12.5px;
}
.mp .mp-empty .icon.youtube .text {
  margin-left: -25px;
  transform: scaleX(0.75);
}
.mp .mp-empty .icon.vimeo {
  font-size: 30px;
}
.mp .mp-empty .description {
  color: #7D7D7D;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.24px;
}
.mp .caption {
  font-size: 13px;
  margin-top: 20px;
  color: #d0d0d0;
}
.mp .border-bottom {
  border-bottom: 1px solid #e7e7e7 !important;
}

.media {
  position: relative;
}
.media .m-placeholder {
  box-sizing: border-box;
  position: relative;
  padding-bottom: 32%;
  min-height: 200px;
  background: #EDF0F2;
  border: 1px dashed #D5D6D8;
  border-radius: 4px;
  cursor: pointer;
}
.media .m-placeholder .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  color: #7D7D7D;
  text-align: center;
  line-height: 100px;
  width: 100px;
  border-radius: 4px;
  font-size: 50px;
}
.media .m-buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 36px;
  font-size: 18px;
  padding: 0 8px;
  background: #000;
  color: #fff;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.media .m-buttons .m-button {
  display: inline-block;
  cursor: pointer;
  padding: 0 7px;
}
.media .m-overlay {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.media:hover .m-overlay {
  opacity: 1;
}
.media:hover .m-buttons {
  opacity: 1;
}
.media img {
  max-width: 100%;
  width: auto;
}
.media video, .media audio {
  width: 100%;
}
.media .m-show {
  position: relative;
}
.media .m-image-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 32%;
}
.media .m-image-fs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.media .m-youtube,
.media .m-vimeo {
  position: relative;
  padding-bottom: 56.25%;
}
.media .m-youtube iframe,
.media .m-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.media .m-cloudflare .cf-stream-menu-container {
  display: none;
}
.media .m-mux.portrait .video-js {
  height: 0;
  padding-bottom: 75%;
}
.media .m-mux.portrait .video-js video {
  position: absolute;
}
.media .m-mux.portrait .video-js.vjs-fullscreen {
  padding-bottom: 0;
}
.media .m-fs-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  width: 40px;
  text-align: center;
  transition: color 0.2s ease;
  z-index: 1;
  cursor: pointer;
}
.media .m-fs-icon:hover {
  color: #032863;
}

.media.file-type-audio.editing .m-audio-player {
  padding-right: 140px;
}
.media.file-type-audio .m-buttons {
  top: 14px;
  right: 10px;
}
.media.file-type-audio .m-buttons .m-edit {
  display: none;
}

.m-audio-player {
  position: relative;
  background: #EDF0F2;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.m-audio-player .m-audio {
  display: none;
}
.m-audio-player .m-player {
  position: relative;
  padding: 12px;
  color: #0E0F10;
}
.m-audio-player .m-player:after {
  content: "";
  display: block;
  clear: both;
}
.m-audio-player .m-player > * {
  float: right;
}
.m-audio-player .m-player .m-icon {
  font-size: 13px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.m-audio-player .m-player .m-icon:hover {
  color: #032863;
}
.m-audio-player .m-player .m-bar {
  position: relative;
  margin-top: 14px;
  border-radius: 2px;
  height: 4px;
  background: #7D7D7D;
  cursor: pointer;
}
.m-audio-player .m-player .m-bar .m-current {
  height: 4px;
  background: #032863;
  border-radius: 2px;
  width: 100%;
}
.m-audio-player .m-player .m-bar .m-marker {
  position: absolute;
  top: -4px;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}
.m-audio-player .m-player .m-play-pause {
  float: left;
}
.m-audio-player .m-player .m-timeline {
  float: left;
  margin-left: 15px;
  width: calc(100% - 260px);
  cursor: pointer;
}
.m-audio-player .m-player .m-timeline .m-time-display {
  display: none;
  position: absolute;
  bottom: 100%;
  width: 50px;
  height: 24px;
  margin: 0 0 10px -25px;
}
.m-audio-player .m-player .m-timeline .m-time-display .m-time-display-time {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -25px;
  width: 50px;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  background: #032863;
  color: #fff;
}
.m-audio-player .m-player .m-timeline:hover .m-time-display {
  display: block;
}
.m-audio-player .m-player .m-time {
  float: left;
  font-size: 13px;
  line-height: 30px;
}
.m-audio-player .m-player .m-volume {
  width: 96px;
}
.m-audio-player .m-player .m-mute {
  font-size: 20px;
}

@keyframes psDropOpen {
  0% {
    transform: translate3d(0, -30px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes psFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes psSpin {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.paragraphs .clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.paragraphs .paragraph:nth-child(n+2) {
  margin-top: 30px;
}
.paragraphs > .create {
  font-family: "Open Sans", Arial, sans-serif;
  position: relative;
  margin-top: 30px;
  font-size: 14px;
}
.paragraphs > .create .toggle {
  position: relative;
  float: left;
  width: 42px;
  line-height: 42px;
  font-size: 21px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #0E0F10;
  cursor: pointer;
  transition: color 0.2s ease;
}
.paragraphs > .create .toggle svg {
  transition: transform 0.2s ease;
}
.paragraphs > .create .types {
  position: relative;
  float: left;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  padding: 0 15px;
  margin-left: 10px;
  max-width: calc(100% - 82px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s 0.2s;
}
.paragraphs > .create .types .type {
  padding: 0 15px;
  display: inline-block;
  line-height: 42px;
  color: #0E0F10;
  cursor: pointer;
}
.paragraphs > .create .types .type:hover {
  color: #032863;
}
.paragraphs > .create .line {
  position: absolute;
  left: 5px;
  right: 0;
  top: 21px;
  height: 1px;
  background: #032863;
  opacity: 0;
  transition: left 0.2s ease, opacity 0.2s ease;
}
.paragraphs > .create .line:before {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  display: block;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background: #032863;
}
.paragraphs > .create:hover .toggle {
  color: #032863;
}
.paragraphs > .create:hover .line {
  opacity: 1;
}
.paragraphs.create-open > .create .toggle {
  color: #032863;
}
.paragraphs.create-open > .create .toggle svg {
  transform: rotateZ(45deg);
}
.paragraphs.create-open > .create .types {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.paragraphs.create-open > .create .line {
  left: 55px;
  opacity: 1;
}

.paragraph {
  position: relative;
}
.paragraph .divider {
  background: #696969;
}
.paragraph .p-clickable {
  cursor: pointer;
}
.paragraph .p-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 28px;
  font-size: 12px;
  z-index: 7;
}
.paragraph .p-buttons .p-button {
  display: inline-block;
  margin-left: 6px;
  background: #313131;
  border-radius: 5px;
  color: #7D7D7D;
  padding: 0 13px;
  cursor: pointer;
  vertical-align: top;
  transition: color 0.2s ease;
}
.paragraph .p-buttons .p-button:hover {
  color: #fff;
}
.paragraph .p-buttons .p-remove {
  padding: 0 8px;
  font-size: 20px;
}
.paragraph .p-title {
  font-weight: 600;
}
.paragraph .p-title input[type=text], .paragraph .p-title input[type=email], .paragraph .p-title input[type=search], .paragraph .p-title input[type=password], .paragraph .p-title .textfield, .paragraph .p-title textarea {
  padding: 0;
  margin: 0;
  border: 0;
  font: inherit;
  color: inherit;
  height: auto;
  background: transparent;
  box-shadow: none;
}
.paragraph .show .p-placeholder {
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%;
  min-height: 150px;
  text-align: center;
  background: #EDF0F2;
}
.paragraph .show .p-placeholder > div {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  background: #D5D6D8;
  color: #7D7D7D;
  text-align: center;
  line-height: 100px;
  width: 100px;
  border-radius: 4px;
  font-size: 42px;
}
.paragraph .edit {
  position: absolute;
  right: 100%;
  top: 0;
  padding: 0 15px 0 0;
  min-height: 100%;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  width: 80px;
  z-index: 4;
}
.paragraph .edit:after {
  content: "";
  display: block;
  clear: both;
}
.paragraph .edit .num {
  float: right;
  width: 32px;
  margin-top: 3px;
  font-size: 10px;
  text-align: center;
}
.paragraph .edit .dragsort-handle {
  position: absolute;
  top: 0;
  right: 47px;
  padding: 6px 8px;
  display: none;
  animation: psFade 0.3s ease forwards;
}
.paragraph .edit .bar {
  position: relative;
  float: right;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: none;
  animation: psFade 0.3s ease forwards;
}
.paragraph .edit .bar .item {
  position: relative;
}
.paragraph .edit .bar .item .item-menu {
  display: none;
  animation: psFade 0.3s ease forwards;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0;
}
.paragraph .edit .bar .item .item-menu:after {
  content: "";
  display: block;
  clear: both;
}
.paragraph .edit .bar .item .item-menu > div {
  display: inline-block;
}
.paragraph .edit .bar .item:hover .item-menu {
  display: block;
}
.paragraph .edit .bar .icon {
  font-size: 16px;
  color: #0E0F10;
  min-width: 16px;
  padding: 6px 8px;
  transition: color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.paragraph .edit .bar .icon:hover, .paragraph .edit .bar .icon.active {
  color: #032863;
}
.paragraph .edit .bar .icon.remove {
  color: #d90000;
}
.paragraph .edit .settings {
  position: absolute;
  top: 0;
  left: 100%;
  width: 310px;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  color: #0E0F10;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.paragraph .edit .settings input[type=text], .paragraph .edit .settings input[type=email], .paragraph .edit .settings input[type=search], .paragraph .edit .settings input[type=password], .paragraph .edit .settings .textfield, .paragraph .edit .settings textarea {
  display: block;
  box-sizing: border-box;
  height: 42px;
  width: 100%;
  border: 1px solid #7D7D7D;
  border-radius: 4px;
  padding: 10px 13px;
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
}
.paragraph .edit .settings label {
  font-weight: 400;
  display: block;
  color: #0E0F10;
}
.paragraph .edit .settings .form-item {
  margin: 0;
}
.paragraph .edit .settings .form-item:nth-last-child(n+2) {
  margin-bottom: 10px;
}
.paragraph .edit .settings .form-item label {
  font-weight: 400;
}
.paragraph .edit .settings .form-item label:nth-last-child(n+2) {
  margin-bottom: 3px;
}
.paragraph .edit .settings .form-item .media .m-placeholder {
  display: none;
}
.paragraph .edit .settings .form-item .media .m-open {
  position: static;
  margin: 0;
}
.paragraph .edit .settings .form-item .media .m-buttons,
.paragraph .edit .settings .form-item .media .m-buttons div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  cursor: pointer;
}
.paragraph .edit .settings .dimensions {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
}
.paragraph .edit .settings .dimensions .form-item {
  margin: 0;
}
.paragraph .edit .settings .dimensions .x {
  text-align: center;
  padding-top: 24px;
  line-height: 42px;
}
.paragraph .edit .settings .actions {
  margin-top: 15px;
}
.paragraph .edit .settings .actions:after {
  content: "";
  display: block;
  clear: both;
}
.paragraph .edit .settings .actions .btn-confirm {
  float: left;
}
.paragraph .edit .settings .actions .btn-cancel {
  float: right;
}
.paragraph .edit .settings .pbtn-confirm,
.paragraph .edit .settings .pbtn-cancel {
  display: inline-block;
  border-radius: 20px;
  line-height: 38px;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: 600;
  padding: 0 33px;
  border: 1px solid #7D7D7D;
  transition: color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.paragraph .edit .settings .pbtn-confirm {
  background: #032863;
  border-color: #032863;
  color: #fff;
}
.paragraph .edit .settings .pbtn-confirm:hover {
  box-shadow: 0 0 13px rgba(171, 72, 186, 0.73);
}
.paragraph .edit .settings .pbtn-cancel:hover {
  border-color: #0E0F10;
}
.paragraph .edit .settings .input-suffix {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: #7D7D7D;
}
.paragraph .edit .settings .input-suffix ~ input[type=text],
.paragraph .edit .settings .input-suffix ~ input[type=email],
.paragraph .edit .settings .input-suffix ~ input[type=date],
.paragraph .edit .settings .input-suffix ~ input[type=search],
.paragraph .edit .settings .input-suffix ~ input.form-text,
.paragraph .edit .settings .input-suffix ~ textarea,
.paragraph .edit .settings .input-suffix ~ .textfield {
  padding-right: 50px;
}
.paragraph .edit .settings .input-prefix ~ input[type=text],
.paragraph .edit .settings .input-prefix ~ input[type=email],
.paragraph .edit .settings .input-prefix ~ input[type=date],
.paragraph .edit .settings .input-prefix ~ input[type=search],
.paragraph .edit .settings .input-prefix ~ input.form-text,
.paragraph .edit .settings .input-prefix ~ textarea,
.paragraph .edit .settings .input-prefix ~ .textfield {
  padding-left: 50px;
}
.paragraph:hover .edit .bar,
.paragraph:hover .edit .dragsort-handle {
  display: block;
}
.paragraph:hover .edit .num {
  display: none;
  animation: psFade 0.3s ease forwards;
}
.paragraph.settings-open .edit .toggle-settings {
  color: #032863;
}
.paragraph:hover, .paragraph.settings-open {
  z-index: 10;
}
.paragraph:hover .design, .paragraph.settings-open .design {
  display: block;
}
.paragraph:hover .edit, .paragraph.settings-open .edit {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.paragraph.dragsort-after:before {
  bottom: -15px;
}
.paragraph .divider {
  height: 1px;
  margin: 0 auto;
}
.paragraph .paragraph-text-break {
  position: absolute;
  right: 100%;
  margin-right: 15px;
  font-size: 16px;
  color: #0E0F10;
  padding: 0 8px 8px;
  transition: color 0.2s ease;
  cursor: pointer;
  text-align: center;
  z-index: 5;
  line-height: 1.5;
}
.paragraph .paragraph-text-break:hover {
  color: #032863;
}
.paragraph .paragraph-text-break.inactive {
  visibility: hidden;
  opacity: 0;
}
.paragraph.design-small .divider {
  width: 50%;
}
.paragraph.design-large .divider {
  width: 140%;
  margin-left: -20%;
  margin-right: -20%;
}
.paragraph.type-basic-html.design-center .show, .paragraph.type-button.design-center .show {
  text-align: center;
}
.paragraph.type-basic-html.design-right .show, .paragraph.type-button.design-right .show {
  text-align: right;
}
.paragraph.type-quote .text {
  position: relative;
  font-size: 18px;
  font-family: "Merriweather", serif;
  padding: 0 1em;
}
.paragraph.type-quote .text > svg {
  position: absolute;
  font-size: 36px;
}
.paragraph.type-quote .text > svg:first-child {
  top: -0.5em;
  left: 0;
}
.paragraph.type-quote .text > svg:last-child {
  right: 0;
  bottom: -0.5em;
}
.paragraph.type-quote .author {
  margin-top: 15px;
}
.paragraph.type-quote .author:before {
  content: "—";
  display: inline-block;
  margin-right: 5px;
}
.paragraph.type-quote .author input[type=text], .paragraph.type-quote .author input[type=email], .paragraph.type-quote .author input[type=search], .paragraph.type-quote .author input[type=password], .paragraph.type-quote .author .textfield, .paragraph.type-quote .author textarea {
  padding: 0;
  margin: 0;
  border: 0;
  font: inherit;
  color: inherit;
  height: auto;
  background: transparent;
  box-shadow: none;
  display: inline-block;
  width: auto;
}
.paragraph.type-iframe iframe {
  width: 100%;
  max-width: 100%;
  height: 300px;
  display: block;
}
.paragraph.type-iframe.design-center iframe {
  margin-left: auto;
  margin-right: auto;
}
.paragraph.type-iframe.design-right iframe {
  margin-left: auto;
}
.paragraph.type-iframe.size-large {
  margin-left: -20%;
  margin-right: -20%;
}
.paragraph.type-iframe.size-large .show > div, .paragraph.type-iframe.size-responsive .show > div {
  position: relative;
}
.paragraph.type-iframe.size-large iframe, .paragraph.type-iframe.size-responsive iframe {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.paragraph.type-media.design-small {
  margin-left: 20%;
  margin-right: 20%;
}
.paragraph.type-media.design-large {
  margin-left: -20%;
  margin-right: -20%;
}
.paragraph.type-media .bar .icon.small {
  font-size: 14px;
}
.paragraph.type-media .bar .icon.large {
  font-size: 18px;
}
.paragraph.type-media-files .media-file {
  position: relative;
  padding: 15px;
  background: #fff;
  color: #0E0F10;
  border-radius: 4px;
  margin-top: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.paragraph.type-media-files .media-file:hover,
.paragraph.type-media-files .media-file .dragsort-this {
  color: #fff;
  background: #032863;
}
.paragraph.type-media-files .media-file .dragsort-handle {
  position: absolute;
  top: 9px;
  right: 40px;
  padding: 6px 8px;
}
.paragraph.type-media-files .media-file .file-icon {
  float: left;
  font-size: 16px;
  line-height: 21px;
  margin-right: 9px;
}
.paragraph.type-media-files .media-file .title {
  float: left;
  width: calc(100% - 70px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.paragraph.type-media-files .media-file .title input {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  display: block;
  height: auto;
}
.paragraph.type-media-files .media-file .icon {
  float: right;
  display: block;
  font-size: 16px;
}
.paragraph.type-media-files .media-file .remove-wrap {
  position: absolute;
  left: 100%;
  padding-top: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.paragraph.type-media-files .media-file .remove-wrap .remove {
  width: 12px;
  line-height: 12px;
  font-size: 10px;
  cursor: pointer;
  border-radius: 50%;
  color: #d90000;
  border: 2px solid #d90000;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.paragraph.type-media-files .media-file .remove-wrap .remove:hover {
  color: #fff;
  background: #d90000;
  border-color: #d90000;
}
.paragraph.type-media-files .media-file:hover .remove-wrap {
  opacity: 1;
}
.paragraph.type-media-files .media-files {
  position: relative;
}
.paragraph.type-media-files .media-files.p-dragged-first:before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #00c0e9;
}
.paragraph.type-media-files .media-files + .media-files-upload {
  margin-top: 15px;
}
.paragraph.type-media-files .media-files-upload {
  padding: 30px;
  border-radius: 4px;
  background: #EDF0F2;
  color: #7D7D7D;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.paragraph.type-media-files .media-files-upload:hover {
  color: #0E0F10;
}
.paragraph.type-media-files .media-files-upload .placeholder {
  position: relative;
  margin: 0 auto;
  width: 42px;
}
.paragraph.type-media-files .media-files-upload .placeholder .decoration {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 100%;
  height: 100%;
  border: 2px dashed #D5D6D8;
  border-radius: 4px;
}
.paragraph.type-media-files .media-files-upload .placeholder .icon {
  font-size: 18px;
  background: #D5D6D8;
  color: rgba(105, 105, 105, 0.8);
  line-height: 42px;
  border-radius: 4px;
}
.paragraph.type-media-files .media-files-upload .text {
  font-size: 12px;
  font-weight: 600;
  margin-top: 30px;
}
.paragraph.type-slideshow .settings {
  position: static;
  width: 0;
  padding: 0;
}
.paragraph.type-divider .edit {
  top: -10px;
}
.paragraph.type-divider .designs .icon:before {
  content: "";
  display: inline-block;
  height: 2px;
  background: #7D7D7D;
  vertical-align: middle;
}
.paragraph.type-divider .designs .icon:hover:before {
  background: #032863;
}
.paragraph.type-divider .designs .icon.small:before {
  width: 30%;
}
.paragraph.type-divider .designs .icon.default:before {
  width: 50%;
}
.paragraph.type-divider .designs .icon.large:before {
  width: 70%;
}
.paragraph.type-powerpoint .iframe-wrap {
  position: relative;
  height: 24px;
  padding-bottom: 56.25%;
}
.paragraph.type-powerpoint .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.paragraph.type-powerpoint.design-4-3 .p-placeholder,
.paragraph.type-powerpoint.design-4-3 .iframe-wrap {
  padding-bottom: 75%;
}
.paragraph.type-powerpoint .designs .icon {
  font-size: 0;
  padding-left: 6px;
  padding-right: 6px;
}
.paragraph.type-powerpoint .designs .icon:before {
  content: "";
  display: inline-block;
  height: 24px;
  width: 0;
  vertical-align: middle;
}
.paragraph.type-powerpoint .designs .icon > div {
  display: inline-block;
  box-sizing: border-box;
  line-height: 13px;
  width: 20px;
  border: 1px solid #7D7D7D;
  vertical-align: middle;
  font-size: 8px;
  letter-spacing: -0.5px;
}
.paragraph.type-powerpoint .designs .icon.d4-3 > div {
  width: 16px;
}
.paragraph.type-powerpoint .designs .icon:hover > div, .paragraph.type-powerpoint .designs .icon.active > div {
  border-color: #032863;
}
.paragraph.type-basic-html p:empty:before, .paragraph.type-basic-html-two p:empty:before, .paragraph.type-basic-html-media p:empty:before, .paragraph.type-basic-html-slideshow p:empty:before {
  content: " ";
  display: inline-block;
}
.paragraph.type-basic-html-two:after {
  content: "";
  display: block;
  clear: both;
}
.paragraph.type-basic-html-two .col-one,
.paragraph.type-basic-html-two .col-two {
  width: 45%;
}
.paragraph.type-basic-html-two .col-one {
  float: left;
}
.paragraph.type-basic-html-two .col-two {
  float: right;
}
@media all and (max-width: 767px) {
  .paragraph.type-basic-html-two .col-one,
  .paragraph.type-basic-html-two .col-two {
    width: auto !important;
    float: none !important;
  }
  .paragraph.type-basic-html-two .col-two {
    margin-top: 30px;
  }
}
.paragraph.type-basic-html-media:after, .paragraph.type-basic-html-slideshow:after {
  content: "";
  display: block;
  clear: both;
}
.paragraph.type-basic-html-media .col-html,
.paragraph.type-basic-html-media .col-slideshow,
.paragraph.type-basic-html-media .col-media, .paragraph.type-basic-html-slideshow .col-html,
.paragraph.type-basic-html-slideshow .col-slideshow,
.paragraph.type-basic-html-slideshow .col-media {
  width: 45%;
}
.paragraph.type-basic-html-media .col-html, .paragraph.type-basic-html-slideshow .col-html {
  float: left;
}
.paragraph.type-basic-html-media .col-slideshow,
.paragraph.type-basic-html-media .col-media, .paragraph.type-basic-html-slideshow .col-slideshow,
.paragraph.type-basic-html-slideshow .col-media {
  float: right;
}
.paragraph.type-basic-html-media .col-slideshow, .paragraph.type-basic-html-slideshow .col-slideshow {
  position: relative;
}
.paragraph.type-basic-html-media.design-flip .col-html, .paragraph.type-basic-html-slideshow.design-flip .col-html {
  float: right;
}
.paragraph.type-basic-html-media.design-flip .col-slideshow,
.paragraph.type-basic-html-media.design-flip .col-media, .paragraph.type-basic-html-slideshow.design-flip .col-slideshow,
.paragraph.type-basic-html-slideshow.design-flip .col-media {
  float: left;
}
.paragraph.type-basic-html-media .designs > .icon, .paragraph.type-basic-html-slideshow .designs > .icon {
  font-size: 12px;
  padding-left: 0;
  padding-right: 0;
}
.paragraph.type-basic-html-media .designs > .icon svg:first-child, .paragraph.type-basic-html-slideshow .designs > .icon svg:first-child {
  margin-right: 1px;
}
.paragraph.type-basic-html-media .designs .item-menu .icon, .paragraph.type-basic-html-slideshow .designs .item-menu .icon {
  font-size: 14px;
}
.paragraph.type-basic-html-media .designs .item-menu .icon svg:first-child, .paragraph.type-basic-html-slideshow .designs .item-menu .icon svg:first-child {
  margin-right: 2px;
}
@media all and (max-width: 767px) {
  .paragraph.type-basic-html-media .col-html,
  .paragraph.type-basic-html-media .col-slideshow,
  .paragraph.type-basic-html-media .col-media, .paragraph.type-basic-html-slideshow .col-html,
  .paragraph.type-basic-html-slideshow .col-slideshow,
  .paragraph.type-basic-html-slideshow .col-media {
    width: auto !important;
    float: none !important;
  }
  .paragraph.type-basic-html-media .col-slideshow,
  .paragraph.type-basic-html-media .col-media, .paragraph.type-basic-html-slideshow .col-slideshow,
  .paragraph.type-basic-html-slideshow .col-media {
    margin-top: 30px;
  }
}
.paragraph.type-basic-html-media-bg .show {
  position: relative;
}
.paragraph.type-basic-html-media-bg .show .html-overlay {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media all and (max-width: 767px) {
  .paragraph.type-basic-html-media-bg .show {
    padding: 30px;
  }
}
.paragraph.type-faq .faq-btn {
  margin-top: 15px;
  text-align: center;
}
.paragraph.type-faq .faq-item {
  position: relative;
  padding: 15px;
  background: #fff;
  color: #0E0F10;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, color 0.2s ease;
}
.paragraph.type-faq .faq-item:nth-child(n+2) {
  margin-top: 15px;
}
.paragraph.type-faq .faq-item .dragsort-handle {
  position: absolute;
  top: 9px;
  right: 40px;
  padding: 6px 8px;
}
.paragraph.type-faq .faq-item .head {
  cursor: pointer;
}
.paragraph.type-faq .faq-item .head:after {
  content: "";
  display: block;
  clear: both;
}
.paragraph.type-faq .faq-item .title {
  float: left;
  width: calc(100% - 70px);
  font-weight: 600;
  color: #0E0F10;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.paragraph.type-faq .faq-item .title input {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  display: block;
  height: auto;
}
.paragraph.type-faq .faq-item .text {
  padding-top: 15px;
}
.paragraph.type-faq .faq-item .icon {
  float: right;
  display: block;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.paragraph.type-faq .faq-item .remove-wrap {
  position: absolute;
  left: 100%;
  padding-top: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.paragraph.type-faq .faq-item .remove-wrap .remove {
  width: 12px;
  line-height: 12px;
  font-size: 10px;
  cursor: pointer;
  border-radius: 50%;
  color: #d90000;
  border: 2px solid #d90000;
  text-align: center;
  margin-top: 0;
  top: 15px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.paragraph.type-faq .faq-item .remove-wrap .remove:hover {
  color: #fff;
  background: #d90000;
  border-color: #d90000;
}
.paragraph.type-faq .faq-item:hover .remove-wrap {
  opacity: 1;
}
.paragraph.type-blurb-three .blurbs-three:after {
  content: "";
  display: block;
  clear: both;
}
.paragraph.type-blurb-three .blurb-three {
  float: left;
  width: 30%;
  position: relative;
}
.paragraph.type-blurb-three .blurb-three:nth-child(n+2) {
  margin-left: 5%;
}
.paragraph.type-blurb-three .blurb-three > :nth-child(n+2) {
  margin-top: 15px;
}
.paragraph.type-blurb-three .blurb-three .title {
  font-weight: 600;
  color: #032863;
  font-size: 16px;
}
@media all and (max-width: 479px) {
  .paragraph.type-blurb-three .blurb-three {
    float: none;
    width: auto;
  }
  .paragraph.type-blurb-three .blurb-three:nth-child(n+2) {
    margin: 30px 0 0;
  }
}
.paragraph .p-drag-handle {
  position: absolute;
  top: 0px;
  right: 100%;
  text-align: center;
  width: 20px;
  color: #7D7D7D;
  font-size: 10px;
  line-height: 54px;
  cursor: grab;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.paragraph .p-drag-handle svg {
  position: relative;
  top: 2px;
  font-size: 16px;
}

.p-drag-preview {
  position: fixed;
  margin: -20px 0 0 15px;
  padding: 0 11px;
  box-sizing: border-box;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  line-height: 32px;
  white-space: nowrap;
  opacity: 0.7;
  z-index: 95;
}

body.ps-opened {
  overflow: hidden;
}

body.ps-is-dragging,
body.ps-is-dragging * {
  cursor: grabbing !important;
}

.ps-player {
  position: relative;
  padding-bottom: 56.25%;
  background: #191919;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ps-player.ps-fullscreen {
  padding-bottom: 0;
}
.ps-player .ps-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  height: 100px;
  width: 100px;
  box-sizing: border-box;
  border: 8px solid rgba(255, 255, 255, 0.05);
  border-top-color: #032863;
  border-radius: 50%;
  animation: psSpin 1s ease forwards infinite;
}
.ps-player .ps-audio {
  display: none;
}
.ps-player .ps-slides {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ps-player .ps-slides .ps-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;
  z-index: 1;
}
.ps-player .ps-slides .ps-slide.previous {
  z-index: 2;
}
.ps-player .ps-slides .ps-slide.active {
  z-index: 3;
}
.ps-player .ps-play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  color: #fff;
  background: #032863;
  font-size: 36px;
  line-height: 100px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
}
.ps-player .ps-play svg {
  margin-left: 7px;
}
.ps-player .ps-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 25px 20px 15px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  transition: opacity 0.3s ease;
  z-index: 5;
}
.ps-player .ps-controls > * {
  float: right;
}
.ps-player .ps-controls .ps-icon {
  font-size: 18px;
  line-height: 36px;
  width: 40px;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.ps-player .ps-controls .ps-icon:hover {
  color: #032863;
}
.ps-player .ps-controls .ps-bar {
  position: relative;
  margin-top: 15px;
  border-radius: 4px;
  height: 7px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.ps-player .ps-controls .ps-bar .ps-current {
  height: 7px;
  background: #032863;
  border-radius: 4px;
  width: 100%;
}
.ps-player .ps-controls .ps-bar .ps-marker {
  position: absolute;
  top: -5px;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}
.ps-player .ps-controls .ps-pager {
  position: absolute;
  left: 120px;
  right: 120px;
  margin-top: 11px;
  font-size: 0;
  text-align: center;
}
.ps-player .ps-controls .ps-pager .ps-page {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease;
}
.ps-player .ps-controls .ps-pager .ps-page:nth-child(n+2) {
  margin-left: 13px;
}
.ps-player .ps-controls .ps-pager .ps-page:hover {
  background: #032863;
}
.ps-player .ps-controls .ps-pager .ps-page.active {
  background: #fff;
}
.ps-player .ps-controls .ps-prev,
.ps-player .ps-controls .ps-next {
  font-size: 35px;
  float: left;
}
.ps-player .ps-controls .ps-page-info {
  position: absolute;
  left: 120px;
  right: 120px;
  text-align: center;
  font-size: 16px;
  line-height: 36px;
  cursor: pointer;
}
.ps-player .ps-controls .ps-play-pause {
  width: 45px;
  float: left;
}
.ps-player .ps-controls .ps-timeline {
  float: left;
  margin-left: 15px;
  width: calc(100% - 320px);
  cursor: pointer;
}
.ps-player .ps-controls .ps-timeline .ps-time-display {
  display: none;
  position: absolute;
  bottom: 100%;
  width: 50px;
  height: 24px;
  margin: 0 0 10px -25px;
}
.ps-player .ps-controls .ps-timeline .ps-time-display .ps-time-display-time {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -25px;
  width: 50px;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  background: #032863;
}
.ps-player .ps-controls .ps-timeline .ps-time-display.ps-has-thumb {
  width: 128px;
  height: 72px;
  border: 1px solid #000;
  margin-left: -65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
}
.ps-player .ps-controls .ps-timeline .ps-index {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  margin-left: -3px;
  cursor: pointer;
}
.ps-player .ps-controls .ps-timeline .ps-index:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 2px;
  height: 7px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.2s ease, background 0.2s ease;
}
.ps-player .ps-controls .ps-timeline .ps-index:hover:before {
  width: 6px;
  background: rgba(255, 255, 255, 0.5);
}
.ps-player .ps-controls .ps-timeline:hover .ps-time-display {
  display: block;
}
.ps-player .ps-controls .ps-time {
  float: left;
  margin-left: 10px;
  font-size: 12px;
  line-height: 36px;
}
.ps-player .ps-controls .ps-volume {
  margin-right: 15px;
  width: 96px;
}
.ps-player.ps-hide-controls {
  cursor: none;
}
.ps-player.ps-hide-controls .ps-controls {
  opacity: 0;
}
.ps-player.ps-without-audio .ps-slides .ps-slide.active {
  animation: psFade 0.3s ease forwards;
}

.ps-edit {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: 1fr;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  background: #313131;
  color: #fff;
  z-index: 98;
}
.ps-edit .ps-clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.ps-edit .ps-clickable {
  cursor: pointer;
}
.ps-edit .ps-fl {
  float: left;
}
.ps-edit .ps-fr {
  float: right;
}
.ps-edit .dragsort-handle {
  position: absolute;
  top: 0px;
  right: 100%;
  width: 20px;
  color: #c0c0c0;
  font-size: 10px;
  line-height: 40px;
  opacity: 0;
}
.ps-edit .dragsort-handle svg {
  position: relative;
  top: 2px;
  font-size: 16px;
}
.ps-edit .ps-btn {
  display: inline-block;
  border-radius: 20px;
  line-height: 38px;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: 600;
  padding: 0 33px;
  border: 1px solid #c0c0c0;
  transition: color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ps-edit .ps-btn.ps-disabled {
  pointer-events: none;
}
.ps-edit .ps-btn.ps-btn-success {
  background-color: #64cd0b;
  border-color: #64cd0b;
  color: #fff;
}
.ps-edit .ps-btn.ps-btn-success:hover {
  box-shadow: 0 0 13px rgba(100, 205, 11, 0.73);
}
.ps-edit .ps-btn.ps-btn-success.ps-disabled {
  background-color: #c0c0c0;
  border-color: #c0c0c0;
  box-shadow: none;
}
.ps-edit.has-timeline {
  grid-template-rows: 1fr 230px;
}
.ps-edit > .ps-sidebar {
  background: #3b3b3b;
  position: relative;
  opacity: 0;
  animation: psFade 0.2s 0.3s ease forwards;
}
.ps-edit > .ps-sidebar > .ps-inner {
  padding: 45px 0 0;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-title {
  font-size: 16px;
  color: #fff;
  padding-bottom: 15px;
  margin: 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-title .ps-close {
  font-size: 26px;
  line-height: 1;
  color: #696969;
  cursor: pointer;
  transition: color 0.2s ease;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-title .ps-close:hover {
  color: #fff;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections {
  overflow: auto;
  max-height: calc(100vh - 380px);
  padding: 0 45px;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section {
  margin-top: 15px;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section:last-child {
  margin-bottom: 30px;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section > .ps-title {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-items {
  position: relative;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 30px;
  padding: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item:hover .dragsort-handle {
  opacity: 1;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item:hover, .ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item.dragsort-this {
  background: rgba(255, 255, 255, 0.05);
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item.dragsort-after:before, .ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item.dragsort-before:before {
  background: #00c0e9;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item .ps-thumb-icon {
  float: left;
  width: 50px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  background: linear-gradient(153deg, #ac45b9 0%, #00c0e9 100%);
  text-align: center;
  margin-right: 15px;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item .ps-thumb {
  float: left;
  background: #000;
  text-align: center;
  font-size: 0;
  width: 50px;
  height: 30px;
  margin-right: 15px;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item .ps-thumb:before {
  display: inline-block;
  height: 30px;
  width: 0;
  vertical-align: middle;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item .ps-thumb img {
  width: auto;
  max-width: 100%;
  max-height: 30px;
  vertical-align: middle;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item > .ps-title {
  float: left;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item > .actions {
  float: right;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item > .actions > .toggle {
  width: 30px;
  font-size: 16px;
  line-height: 30px;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item > .actions .drop {
  right: 100%;
  top: 0;
  margin-top: 5px;
  color: #fff;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-media-item > .ps-meta {
  float: right;
  max-width: 60px;
  color: rgba(255, 255, 255, 0.2);
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-add-media {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 30px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-add-media:hover {
  color: #fff;
}
.ps-edit > .ps-sidebar > .ps-inner > .ps-media-sections > .ps-media-section .ps-add-media svg {
  margin-right: 5px;
}
.ps-edit > .ps-sidebar > .ps-inner .ps-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ps-edit > .ps-sidebar > .ps-inner .ps-buttons .ps-btn {
  min-width: 170px;
}
.ps-edit > .ps-main {
  position: relative;
  display: flex;
  padding: 60px;
}
.ps-edit > .ps-main .ps-player-area {
  width: 100%;
  max-width: calc((100vh - 120px - 222px) * 16 / 9);
  margin: 0 auto;
  align-self: center;
}
.ps-edit > .ps-main .ps-empty {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  align-self: center;
}
.ps-edit > .ps-main .ps-empty > .ps-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}
.ps-edit > .ps-main .ps-empty > .ps-title:first-child {
  margin-bottom: 15px;
  opacity: 0.2;
}
.ps-edit > .ps-main .ps-empty > .ps-heading {
  font-family: "Merriweather", serif;
  font-size: 26px;
  opacity: 0.8;
}
.ps-edit > .ps-main .ps-empty > .ps-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 45px 0;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * {
  padding: 15px 60px;
}
.ps-edit > .ps-main .ps-empty > .ps-split > *:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-title {
  font-size: 18px;
  opacity: 0.8;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  height: 160px;
  box-sizing: border-box;
  padding: 38px 25px 0;
  margin: 15px 0;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-picture {
  height: 75px;
  width: 110px;
  margin: 0 auto 30px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.04);
  font-size: 48px;
  line-height: 75px;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-dots {
  font-size: 0;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-dots > * {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-dots > *:nth-child(n+2) {
  margin-left: 8px;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-dots > *:nth-child(2) {
  background: #ab48ba;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-extra-icon {
  position: absolute;
  top: 25px;
  right: 45px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.1);
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-time {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-time > .ps-current {
  height: 4px;
  border-radius: 2px;
  width: 27%;
  background: #ab48ba;
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-graphic > .ps-time > .ps-marker {
  position: absolute;
  left: 27%;
  top: 50%;
  height: 10px;
  width: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
}
.ps-edit > .ps-main .ps-empty > .ps-split > * > .ps-description {
  opacity: 0.6;
  padding: 0 5px;
}
.ps-edit > .ps-timeline {
  grid-row: 2;
  grid-column: 1/3;
  background: #fff;
  color: #696969;
  padding: 30px 45px 0;
  height: 222px;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ps-edit > .ps-timeline > .ps-inner {
  border: 1px solid #c0c0c0;
  overflow: auto;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner {
  position: relative;
  font-size: 10px;
  line-height: 20px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-duration {
  position: absolute;
  height: 26px;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 2px solid #dfdfdf;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-duration ~ .ps-empty-state {
  padding-top: 38px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-duration .ps-line {
  position: absolute;
  background: #c0c0c0;
  bottom: 0;
  margin-left: -0.5px;
  height: 6px;
  width: 1px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-duration .ps-line:nth-child(5n) {
  height: 18px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-duration .ps-timestamp {
  position: absolute;
  top: 0;
  width: 40px;
  text-align: center;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-duration .ps-current {
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
  background: #ab48ba;
  transition: width 0.05s linear;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides {
  position: absolute;
  background: #f6f6f6;
  top: 42px;
  bottom: 15px;
  left: 0;
  right: 0;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide {
  position: absolute;
  height: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: #c0c0c0;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-time {
  position: absolute;
  top: 0;
  left: -19px;
  width: 40px;
  background: #00c0e9;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-handle {
  position: absolute;
  left: -8px;
  bottom: 37px;
  width: 18px;
  height: 32px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  cursor: grab;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-handle:before, .ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-handle:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  bottom: 9px;
  width: 1px;
  background: #dfdfdf;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-handle:before {
  left: 7px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-handle:after {
  right: 7px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-listen {
  position: absolute;
  bottom: -10px;
  left: -19px;
  width: 40px;
  height: 20px;
  padding-top: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-listen .ps-circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  overflow: hidden;
  padding-top: 10px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-listen .ps-circle:before {
  content: "";
  display: block;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-listen svg {
  position: relative;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide .ps-slide-timing .ps-slide-listen:hover svg {
  opacity: 1;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide.ps-dragging .ps-slide-timing {
  background: #00c0e9;
  top: -42px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide.ps-dragging .ps-slide-listen {
  color: #00c0e9;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner > .ps-timings .ps-slides .ps-slide.ps-dragging .ps-slide-listen svg {
  opacity: 1;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner .ps-empty-state {
  padding: 10px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner .ps-empty-state > .ps-inner {
  padding-top: 60px;
  text-align: center;
  font-family: "Merriweather", serif;
  font-size: 16px;
  color: #c0c0c0;
  height: 140px;
  box-sizing: border-box;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.1);
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner .ps-empty-state > .ps-inner > * {
  display: inline-block;
  vertical-align: middle;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner .ps-empty-state > .ps-inner > *.ps-images-icon {
  position: relative;
  margin-right: 15px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner .ps-empty-state > .ps-inner > *.ps-images-icon .ps-icon {
  position: relative;
  background: #dfdfdf;
  color: #c0c0c0;
  text-align: center;
  line-height: 50px;
  width: 50px;
  border-radius: 4px;
  font-size: 22px;
}
.ps-edit > .ps-timeline > .ps-inner > .ps-timeliner .ps-empty-state > .ps-inner > *.ps-images-icon .ps-decoration {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px dashed #dfdfdf;
}
.ps-edit .actions {
  position: relative;
}
.ps-edit .actions > .toggle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease;
}
.ps-edit .actions > .toggle:hover {
  color: #fff;
}
.ps-edit .actions .drop {
  background: #313131;
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
  z-index: 1;
  animation: psDropOpen 0.3s ease forwards;
}
.ps-edit .actions .drop > .items {
  padding: 5px 0;
}
.ps-edit .actions .drop > .items > *:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.ps-edit .actions.open > .drop {
  display: block;
}

@media all and (max-width: 599px) {
  .ps-player .ps-play {
    margin: -25px 0 0 -25px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  .ps-player .ps-controls {
    padding: 10px;
  }
  .ps-player .ps-controls .ps-icon {
    width: 30px;
    line-height: 30px;
    font-size: 16px;
  }
  .ps-player .ps-controls .ps-bar {
    margin-top: 12px;
  }
  .ps-player .ps-controls .ps-prev,
  .ps-player .ps-controls .ps-next {
    font-size: 28px;
  }
  .ps-player .ps-controls .ps-timeline {
    width: calc(100% - 130px);
  }
  .ps-player .ps-controls .ps-time {
    line-height: 30px;
  }
  .ps-player .ps-controls .ps-volume,
  .ps-player .ps-controls .ps-mute {
    display: none;
  }
  .ps-player .ps-controls .ps-pager {
    left: 80px;
    right: 80px;
  }
  .ps-player .ps-controls .ps-pager .ps-page {
    width: 10px;
    height: 10px;
  }
  .ps-player .ps-controls .ps-pager .ps-page:nth-child(n+2) {
    margin-left: 7px;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.btn-text, .btn-secondary, .btn-primary, .btn {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  display: inline-block;
  line-height: 40px;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: 600;
  padding: 0 30px;
  border: 1px solid #7D7D7D;
  border-radius: 4px;
  transition: color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.no-round.btn-text, .no-round.btn-secondary, .no-round.btn-primary, .no-round.btn {
  border-radius: 0;
}
.btn-text:hover, .btn-secondary:hover, .btn-primary:hover, .btn:hover {
  opacity: 0.8;
}
.xs.btn-text, .xs.btn-secondary, .xs.btn-primary, .xs.btn {
  line-height: 10px;
  font-weight: 700;
  font-size: 12px;
}
.small.btn-text, .small.btn-secondary, .small.btn-primary, .small.btn {
  padding: 0 16px 2px;
  line-height: 28px;
  font-weight: 500;
  font-size: 14px;
}
.small.bold.btn-text, .small.bold.btn-secondary, .small.bold.btn-primary, .small.bold.btn {
  font-weight: 600;
}
.large.btn-text, .large.btn-secondary, .large.btn-primary, .large.btn {
  min-width: 160px;
}
.disabled.btn-text, .disabled.btn-secondary, .disabled.btn-primary, .disabled.btn {
  pointer-events: none;
  opacity: 0.4;
}
.block.btn-text, .block.btn-secondary, .block.btn-primary, .block.btn {
  display: block;
  text-align: center;
}
.px-0.btn-text, .px-0.btn-secondary, .px-0.btn-primary, .px-0.btn {
  padding-left: 0;
  padding-right: 0;
}
.nodeco.btn-text, .nodeco.btn-secondary, .nodeco.btn-primary, .nodeco.btn {
  text-decoration: none;
}

.btn .title {
  display: inline-block;
}
.btn svg {
  font-size: 16px;
  vertical-align: middle;
}
.btn svg:first-child {
  margin-right: 5px;
}
.btn svg:last-child {
  margin-left: 5px;
}
.btn-icon svg {
  font-size: 22px;
}

.btn-primary.btn-accent {
  background-color: #032863;
  border-color: #032863;
  color: #fff;
}
.btn-primary.btn-accent-light {
  background-color: #1463E0;
  border-color: #1463E0;
  color: #fff;
}
.btn-primary.btn-success {
  background-color: #64cd0b;
  border-color: #64cd0b;
  color: #fff;
}
.btn-primary.btn-danger {
  background-color: #DD0505;
  border-color: #DD0505;
  color: #fff;
}

.btn-secondary.btn-accent {
  background-color: transparent;
  color: #0E0F10;
  border: 2px solid #7D7D7D;
}
.btn-secondary.btn-accent.b-1 {
  border-width: 1px;
}
.btn-secondary.btn-accent:hover {
  background-color: #032863;
  border-color: #032863;
  color: #fff;
}
.btn-secondary.btn-danger {
  background-color: transparent;
  color: #0E0F10;
  border: 2px solid #7D7D7D;
}
.btn-secondary.btn-danger:hover {
  background-color: #DD0505;
  border-color: #DD0505;
  color: #fff;
}
.btn-secondary.btn-grey {
  color: #4A4E54;
  border-color: #C5C5C5;
}
.btn-secondary.filled {
  background-color: #EDF0F2;
  color: #4A4E54;
  border: 2px solid #EDF0F2;
}

.btn-text {
  padding: 0;
  font-weight: 600;
  border-color: transparent;
  background: transparent;
  text-decoration: none;
}
.btn-text.btn-faded {
  color: #7D7D7D;
}
.btn-text.btn-faded:hover {
  color: #0E0F10;
}

.btn-circle {
  border-radius: 50%;
  color: #7D7D7D;
  text-align: center;
  width: 34px;
  line-height: 34px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  background: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-circle.large {
  width: 42px;
  line-height: 42px;
  font-size: 21px;
}
.btn-circle.small {
  width: 28px;
  line-height: 28px;
  font-size: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.btn-circle.ninja {
  box-shadow: none;
}
.btn-circle:hover {
  color: #0E0F10;
}
.btn-circle.btn-accent:hover {
  color: #032863;
}

.open > .btn-circle,
.btn-circle.open {
  color: #032863;
}

:hover > .btn-circle.ninja {
  color: #0E0F10;
}
:hover > .btn-circle.ninja:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
:hover > .btn-circle.ninja.btn-accent:hover {
  color: #032863;
}

.keyboard-shortcut {
  line-height: 20px;
  vertical-align: middle;
  color: #7D7D7D;
  display: inline-block;
}
.keyboard-shortcut svg {
  font-size: 20px;
  margin-right: 3px;
  vertical-align: middle;
}
.keyboard-shortcut .title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}

@media all and (max-width: 479px) {
  .btn {
    line-height: 32px;
    font-size: 14px;
  }
  .btn.small {
    padding: 0 15px;
    font-size: 10px;
  }
  .btn-special {
    padding: 0 17px;
  }
}
label {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  margin-bottom: 5px;
}
label.block {
  display: block;
}

.autocomplete,
input[type=text], input[type=email], input[type=search], input[type=password], .textfield, textarea {
  background: transparent;
  display: block;
  border: 1px solid #BDBDBD;
  padding: 16px 12px;
  font-family: inherit;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  resize: vertical;
  transition: border-color 0.2s ease;
  border-radius: 2px;
}
.autocomplete:focus,
input[type=text]:focus, input[type=email]:focus, input[type=search]:focus, input[type=password]:focus, .textfield:focus, textarea:focus {
  border-color: #000;
  outline: none;
}
.autocomplete.inline,
input[type=text].inline, input[type=email].inline, input[type=search].inline, input[type=password].inline, .textfield.inline, textarea.inline {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font: inherit !important;
  line-height: inherit !important;
  resize: none !important;
  transition: none !important;
  border-radius: 0 !important;
}
.autocomplete:disabled,
input[type=text]:disabled, input[type=email]:disabled, input[type=search]:disabled, input[type=password]:disabled, .textfield:disabled, textarea:disabled {
  opacity: 0.7;
}

textarea {
  height: 150px;
}

.autocomplete {
  padding: 5px 0;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: middle;
}
input[type=checkbox] + span,
input[type=radio] + span {
  vertical-align: middle;
}

.textarea-autosize.small.b-0 textarea {
  border-color: transparent;
}
.textarea-autosize.small textarea {
  height: 65px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.form-item {
  max-width: 600px;
}
.form-item:after {
  content: "";
  display: block;
  clear: both;
}
.form-item:nth-child(n+2) {
  margin-top: 15px;
}
.form-item:nth-child(n+2).mt-half {
  margin-top: 7.5px;
}
.form-item label.checkbox {
  display: inline-block;
  vertical-align: top;
}
.form-item .icon.right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  opacity: 0.75;
  width: 40px;
  margin: 15px 0;
  transition: opacity 0.15s ease-in-out;
  text-align: center;
  cursor: pointer;
}
.form-item .icon.right:hover {
  opacity: 1;
}
.form-item.inline {
  font-weight: 400;
}
.form-item.inline .autocomplete,
.form-item.inline input[type=text], .form-item.inline input[type=email], .form-item.inline input[type=search], .form-item.inline input[type=password], .form-item.inline .textfield, .form-item.inline textarea {
  position: relative;
  padding: 22px 12px 12px;
  font-weight: 400;
  z-index: 1;
}
.form-item.inline label {
  position: absolute;
  margin: 16px 12px;
  color: #4A4E54;
  transition: margin-top 0.2s ease-out, font-size 0.2s ease-out;
  z-index: 0;
}
.form-item.inline.focused label {
  color: #585D64;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 0;
}
.form-item.inline .p-dropdown,
.form-item.inline .dropdown {
  font-size: 14px;
}
.form-item.inline .p-dropdown .toggle,
.form-item.inline .dropdown .toggle {
  padding: 22px 12px 12px;
}
.form-item.inline .p-dropdown .toggle .icon svg,
.form-item.inline .dropdown .toggle .icon svg {
  vertical-align: top;
}
.form-item .autocomplete {
  border: 1px solid #BDBDBD;
}
.form-item .p-dropdown.open .toggle,
.form-item .dropdown.open .toggle {
  border-color: #0E0F10;
}
.form-item .p-dropdown .toggle,
.form-item .dropdown .toggle {
  border: 1px solid #D5D6D8;
  line-height: 20px;
  padding: 16px 12px;
  border-radius: 2px;
  color: #000;
}
.form-item .p-dropdown .items,
.form-item .dropdown .items {
  margin-top: 0;
}

.form-description {
  color: #777;
  margin-top: 2px;
}

.form-error {
  color: #DD0505;
}

.checkbox {
  cursor: pointer;
}
.checkbox .label {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.checkbox input {
  display: none;
}
.checkbox .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 18px;
  border: 1px solid #7D7D7D;
  text-align: center;
  color: #fff;
  vertical-align: middle;
}
.checkbox .icon:hover {
  border-color: #0E0F10;
}
.checkbox .icon svg {
  display: none;
}
.checkbox input:checked ~ .icon {
  border-color: #0E0F10;
  background: #0E0F10;
}
.checkbox input:checked ~ .icon svg {
  display: inline-block;
}
.checkbox.alt input:checked ~ .icon {
  background-color: #1463E0;
  border-color: #1463E0;
}
.checkbox.alt .icon {
  font-size: 12px;
  border-radius: 4px;
}
.checkbox.alt + span.label {
  margin-left: 10px;
}
.checkbox.alt2 .icon {
  color: #7D7D7D;
}
.checkbox.alt2 .icon:hover {
  border-color: #0E0F10;
  color: #0E0F10;
}
.checkbox.alt2 .icon svg {
  display: inline-block;
}
.checkbox.alt2 input:checked ~ .icon {
  border-color: #64cd0b;
  background: #64cd0b;
  color: #fff;
}
.checkbox.square {
  margin-right: 10px;
}
.checkbox.square .icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 2px;
}
.checkbox.square input:checked ~ .icon {
  background-color: #032863;
  border-color: #032863;
}
.checkbox.square + span.label {
  margin-left: 10px;
}
.checkbox.toggle .icon {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  border-radius: 11px;
  width: 56px;
  height: 22px;
  border: 1px solid #ccc;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.checkbox.toggle .icon:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  height: 20px;
  width: 20px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.68);
  transition: transform 0.2s ease;
}
.checkbox.toggle .icon svg {
  display: none !important;
}
.checkbox.toggle input:checked ~ .icon {
  background: #64cd0b;
  border-color: #64cd0b;
}
.checkbox.toggle input:checked ~ .icon:before {
  transform: translate3d(34px, 0, 0);
}
.checkbox.radio {
  vertical-align: top;
}
.checkbox.radio svg {
  margin: 4px auto;
}
.checkbox.radio input:checked ~ .icon {
  background: #fff;
  border-color: #1463E0;
  color: #1463E0;
}
.checkbox.radio input:checked ~ .icon svg {
  display: block;
}
.checkbox + span.label {
  margin-left: 5px;
  vertical-align: middle;
}

.checkboxes > label {
  display: block;
  margin-top: 5px;
}

.disabled > .checkbox .icon,
.checkbox.disabled .icon {
  border-color: #7D7D7D;
}
.disabled > .checkbox input:checked ~ .icon,
.checkbox.disabled input:checked ~ .icon {
  border-color: #7D7D7D;
  background: #7D7D7D;
}

.clabel {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  margin-left: 5px;
  vertical-align: middle;
  display: inline-block;
  color: #0E0F10;
  font-weight: 300;
  max-width: calc(100% - 30px);
}
.clabel.bold {
  font-weight: 600;
  color: #000;
}

.input-mimic {
  position: relative;
  border: 1px solid #BDBDBD;
  padding: 16px 12px;
  border-radius: 2px;
  cursor: pointer;
}
.input-mimic .label {
  font-size: 14px;
  color: #4A4E54;
  font-weight: 400;
}
.input-mimic .value {
  display: none;
  font-size: 14px;
  color: #0E0F10;
  font-weight: 400;
}
.input-mimic.focus {
  padding: 25px 12px 10px;
}
.input-mimic.focus .label {
  position: absolute;
  top: 0;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 300;
}
.input-mimic.focus .value {
  display: block;
}

input.clear {
  background-color: transparent;
  border-color: transparent;
  outline: none;
}
input.clear:focus {
  border-color: transparent;
}
input.clear.w-3 {
  width: 30% !important;
}

.form-card {
  position: relative;
  border: 1px solid #D5D6D8;
}
.form-card:nth-child(n+2) {
  margin-top: 15px;
}
.form-card .head {
  border-bottom: 1px solid #D5D6D8;
}
.form-card .rows {
  position: relative;
}
.form-card .rows .row {
  position: relative;
}
.form-card .rows .row:nth-child(n+2) {
  border-top: 1px solid #D5D6D8;
}
.form-card .rows .row > .item .btn-circle.ninja {
  position: absolute;
  right: 5px;
  top: 6px;
}
.form-card .rows .row > .item:hover {
  background: #EDF0F2;
}
.form-card .rows .row > .item:hover .drag-handle {
  opacity: 1;
}
.form-card .rows .row .row {
  border-top: 1px solid #D5D6D8;
}
.form-card .bottom {
  border-top: 1px solid #D5D6D8;
  padding: 10px;
}

.fc {
  display: grid;
  grid-auto-columns: 1fr;
}
.fc > .form-item {
  margin: 0;
  grid-row: 1;
  min-width: 0;
}
.fc > .form-item:nth-child(n+2) {
  border-left: 1px solid #D5D6D8;
}
.fc > .form-item label {
  padding: 10px 13px;
  margin: 0;
}
.fc > .form-item .inner {
  max-width: none;
}
.fc > .form-item .dropdown .toggle,
.fc > .form-item .autocomplete,
.fc > .form-item input[type=text], .fc > .form-item input[type=email], .fc > .form-item input[type=search], .fc > .form-item input[type=password], .fc > .form-item .textfield, .fc > .form-item textarea {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: none;
}
.fc > .form-item input[type=text], .fc > .form-item input[type=email], .fc > .form-item input[type=search], .fc > .form-item input[type=password], .fc > .form-item .textfield, .fc > .form-item textarea {
  height: 40px;
}
.fc .checkbox {
  margin-top: 10px;
}

.dropdown.rel .drop {
  position: relative;
  margin-top: 0;
  box-shadow: none;
  animation: none;
}
.dropdown.rel .items {
  padding: 0;
}

.dropdown .toggle .title {
  width: calc(100% - 20px);
}

.list-wrap {
  padding: 15px 30px 30px;
}

.list.custom {
  position: relative;
  font-size: 14px;
  font-family: "Work Sans", sans-serif;
}
.list.custom table.list tr > td.text-right {
  text-align: right;
}
.list.custom.totally-empty .head {
  display: none;
}
.list.custom.totally-empty.pull-placeholder-top {
  margin-top: -35px;
}
.list.custom .list-placeholder {
  background: #EDF0F2;
  border-radius: 4px;
}
.list.custom .list-placeholder .wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 90px 30px 120px;
  max-width: 990px;
  min-height: 55vh;
  margin: 0 auto;
}
.list.custom .list-placeholder .wrap .right {
  width: 50%;
  margin-bottom: 45px;
}
.list.custom .list-placeholder .wrap .left {
  max-width: 420px;
  margin-top: 180px;
}
.list.custom .list-placeholder .wrap .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 15px;
}
.list.custom .list-placeholder .wrap .text {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #4A4E54;
  margin-bottom: 30px;
}
.list.custom .list-placeholder-basic {
  text-align: center;
  margin-top: 10%;
}
.list.custom .list-placeholder-basic img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 30px;
}
.list.custom .list-placeholder-basic .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}
.list.custom .list-placeholder-basic .text {
  font-size: 12px;
  font-weight: 300;
  line-height: 30px;
  color: #4A4E54;
}
.list.custom > .box {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.list.custom > .box .list-wrap {
  padding: 0;
}
.list.custom > .head {
  display: flex;
}
.list.custom > .head .wrap {
  flex: 1;
  width: 100%;
  position: relative;
  z-index: 2;
}
.list.custom.no-filters > .head .filters .filters-text {
  width: 100%;
  border: none;
}
.list.custom.no-filters > .head .filters .dropdown,
.list.custom.no-filters > .head .filters .active-filters {
  display: none;
}
.list.custom > .head .filters {
  max-width: 100%;
}
.list.custom > .head .filters .reset-wrap {
  display: none;
}
.list.custom > .head .filters .default > .inner,
.list.custom > .head .filters .filter > .inner {
  box-shadow: none;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
}
.list.custom > .head .filters .default > .inner label,
.list.custom > .head .filters .filter > .inner label {
  margin: 0;
}
.list.custom > .head .filters .filters-text input {
  background: transparent;
  position: relative;
  width: 100%;
  border-radius: 4px;
  z-index: 5;
}
.list.custom > .head .filters .filters-text .icon {
  position: absolute;
  right: 0;
  text-align: left;
  color: #585D64;
}
.list.custom > .head .top-actions > .btn {
  line-height: 46px;
}
.list.custom > .head .top-actions > .btn-primary.create {
  padding: 0 15px;
}
.list.custom > .head .top-actions > .btn-primary.create .icon {
  margin: 0;
}
.list.custom > .head .top-actions > .btn-primary.create .label {
  margin-left: 5px;
}
.list.custom > .head .top-actions > .btn-secondary.sort {
  padding: 0;
  width: 48px;
  color: #4A4E54;
  border: 1px solid #c6c6c6;
  text-align: center;
}
.list.custom > .head .top-actions > .btn-secondary.sort .icon {
  font-size: 20px;
}
.list.custom > .head .top-actions > .btn-secondary.sort:hover {
  color: #fff;
  border-color: #032863;
}
.list.custom > .pagination-controls ul.pagination {
  margin-top: -4px;
}
.list.custom > .pagination-controls ul.pagination li {
  background-color: #F1F3F5;
  border-radius: 4px;
}
.list.custom > .pagination-controls ul.pagination li a {
  color: #0E0F10;
  padding: 10px 0;
  width: 40px;
}
.list.custom > .pagination-controls ul.pagination li.active {
  background-color: #032863;
}
.list.custom > .pagination-controls ul.pagination li.active a {
  color: #fff;
}
.list.custom > .pagination-controls ul.pagination li.pagination-page-nav {
  margin: 0 5px;
}
.list.custom > .pagination-controls .pagination-stats {
  line-height: 26px;
}
.list.custom table.list {
  border-collapse: separate;
  border-spacing: 0 5px;
}
.list.custom table.list tr {
  border: none;
  background: #F1F3F5;
}
.list.custom table.list tr:hover {
  background: #CFD6DD;
}
.list.custom table.list tr.heading {
  background: #D5D6D8;
}
.list.custom table.list tr.spacer {
  background: none !important;
}
.list.custom table.list tr.spacer td {
  height: 20px;
}
.list.custom table.list tr.mobile.custom > div {
  padding: 0 20px;
}
.list.custom table.list tr.mobile.custom > div:first-child {
  padding-top: 15px;
}
.list.custom table.list tr.mobile.custom > div:last-child {
  padding-bottom: 15px;
}
.list.custom table.list tr > .title {
  font-weight: 600;
  min-width: 50%;
}
.list.custom table.list tr > .nr {
  white-space: nowrap;
}
.list.custom table.list tr > .min:first-child {
  padding-left: 20px;
}
.list.custom table.list tr > .min:last-child {
  padding-right: 20px;
}
.list.custom table.list .icon-actions .toggle,
.list.custom table.list .dot-actions .toggle {
  color: #4A4E54;
}

.admin .report-list .list.custom table.list tr > .title {
  min-width: 35%;
}
.admin .report-list .list.custom table.list tr > .title.p {
  padding: 0 20px;
}
.admin .report-list .list.custom table.list tr > .available_at {
  min-width: 200px;
}

.admin .report-list .list.custom table.list tr td,
.admin .company-list .list.custom table.list tr td {
  white-space: nowrap;
}
.admin .report-list .list.custom table.list tr td.wrap,
.admin .company-list .list.custom table.list tr td.wrap {
  width: 220px;
  white-space: normal;
}
.admin .report-list .list.custom table.list tr .actions.open > .drop,
.admin .report-list .list.custom table.list tr .actions.open > .items,
.admin .company-list .list.custom table.list tr .actions.open > .drop,
.admin .company-list .list.custom table.list tr .actions.open > .items {
  left: auto;
  right: -40px;
}

@media (max-width: 965px) {
  .admin .report-list .list.custom table.list tr > .title,
  .admin .company-list .list.custom table.list tr > .title {
    min-width: 95%;
  }
  .list.custom > .head .top-actions > .btn-secondary,
  .list.custom > .head .top-actions > .btn-primary {
    width: 44px;
    line-height: 44px;
    text-align: center;
  }
  .list.custom > .head .top-actions > .btn-primary.create .icon {
    margin-top: -2px;
  }
  .list.custom > .head .filters .filters-text input {
    font-size: 14px;
    height: 44px;
  }
  .list.custom > .head .filters .filters-text .icon {
    line-height: 44px;
  }
  .list.custom .list-placeholder .wrap {
    display: block;
    text-align: center;
    padding: 45px 30px 60px;
  }
  .list.custom .list-placeholder .wrap .right {
    width: 100%;
    max-width: 220px;
    margin-bottom: 30px;
  }
  .list.custom .list-placeholder .wrap .left {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .list.custom .list-placeholder .wrap .title {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .list.custom .list-placeholder .wrap .text {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .list.custom .list-placeholder .wrap .btn {
    font-size: 14px;
    line-height: 42px;
  }
}
/**
 * Margins
 */
.mt-half {
  margin-top: 7.5px;
}

.mb-half {
  margin-bottom: 7.5px;
}

.ml-half {
  margin-left: 7.5px;
}

.mr-half {
  margin-right: 7.5px;
}

.pt-half {
  padding-top: 7.5px;
}

.pb-half {
  padding-bottom: 7.5px;
}

.pl-half {
  padding-left: 7.5px;
}

.pr-half {
  padding-right: 7.5px;
}

.m-auto, .mb-auto, .my-auto {
  margin-bottom: auto;
}

.m-n, .mb-n, .my-n {
  margin-bottom: 5px;
}

.m-0, .mb-0, .my-0 {
  margin-bottom: 0;
}

.m-1, .mb-1, .my-1 {
  margin-bottom: 15px;
}

.m-2, .mb-2, .my-2 {
  margin-bottom: 30px;
}

.m-3, .mb-3, .my-3 {
  margin-bottom: 45px;
}

.m-4, .mb-4, .my-4 {
  margin-bottom: 60px;
}

.m-5, .mb-5, .my-5 {
  margin-bottom: 75px;
}

.m-6, .mb-6, .my-6 {
  margin-bottom: 90px;
}

.m-8, .mb-8, .my-8 {
  margin-bottom: 120px;
}

.m-10, .mb-10, .my-10 {
  margin-bottom: 150px;
}

.m-12, .mb-12, .my-12 {
  margin-bottom: 180px;
}

.m-auto, .mt-auto, .my-auto {
  margin-top: auto;
}

.m-n, .mt-n, .my-n {
  margin-top: 5px;
}

.m-0, .mt-0, .my-0 {
  margin-top: 0;
}

.m-1, .mt-1, .my-1 {
  margin-top: 15px;
}

.m-2, .mt-2, .my-2 {
  margin-top: 30px;
}

.m-3, .mt-3, .my-3 {
  margin-top: 45px;
}

.m-4, .mt-4, .my-4 {
  margin-top: 60px;
}

.m-5, .mt-5, .my-5 {
  margin-top: 75px;
}

.m-6, .mt-6, .my-6 {
  margin-top: 90px;
}

.m-8, .mt-8, .my-8 {
  margin-top: 120px;
}

.m-10, .mt-10, .my-10 {
  margin-top: 150px;
}

.m-12, .mt-12, .my-12 {
  margin-top: 180px;
}

.m-auto, .ml-auto, .mx-auto {
  margin-left: auto;
}

.m-n, .ml-n, .mx-n {
  margin-left: 5px;
}

.m-0, .ml-0, .mx-0 {
  margin-left: 0;
}

.m-1, .ml-1, .mx-1 {
  margin-left: 15px;
}

.m-2, .ml-2, .mx-2 {
  margin-left: 30px;
}

.m-3, .ml-3, .mx-3 {
  margin-left: 45px;
}

.m-4, .ml-4, .mx-4 {
  margin-left: 60px;
}

.m-5, .ml-5, .mx-5 {
  margin-left: 75px;
}

.m-6, .ml-6, .mx-6 {
  margin-left: 90px;
}

.m-8, .ml-8, .mx-8 {
  margin-left: 120px;
}

.m-10, .ml-10, .mx-10 {
  margin-left: 150px;
}

.m-12, .ml-12, .mx-12 {
  margin-left: 180px;
}

.m-auto, .mr-auto, .mx-auto {
  margin-right: auto;
}

.m-n, .mr-n, .mx-n {
  margin-right: 5px;
}

.m-0, .mr-0, .mx-0 {
  margin-right: 0;
}

.m-1, .mr-1, .mx-1 {
  margin-right: 15px;
}

.m-2, .mr-2, .mx-2 {
  margin-right: 30px;
}

.m-3, .mr-3, .mx-3 {
  margin-right: 45px;
}

.m-4, .mr-4, .mx-4 {
  margin-right: 60px;
}

.m-5, .mr-5, .mx-5 {
  margin-right: 75px;
}

.m-6, .mr-6, .mx-6 {
  margin-right: 90px;
}

.m-8, .mr-8, .mx-8 {
  margin-right: 120px;
}

.m-10, .mr-10, .mx-10 {
  margin-right: 150px;
}

.m-12, .mr-12, .mx-12 {
  margin-right: 180px;
}

/**
 * Paddings
 */
.p-0, .pb-0, .py-0 {
  padding-bottom: 0;
}

.p-1, .pb-1, .py-1 {
  padding-bottom: 15px;
}

.p-2, .pb-2, .py-2 {
  padding-bottom: 30px;
}

.p-3, .pb-3, .py-3 {
  padding-bottom: 45px;
}

.p-4, .pb-4, .py-4 {
  padding-bottom: 60px;
}

.p-5, .pb-5, .py-5 {
  padding-bottom: 75px;
}

.p-6, .pb-6, .py-6 {
  padding-bottom: 90px;
}

.p-8, .pb-8, .py-8 {
  padding-bottom: 120px;
}

.p-10, .pb-10, .py-10 {
  padding-bottom: 150px;
}

.p-12, .pb-12, .py-12 {
  padding-bottom: 180px;
}

.p-0, .pt-0, .py-0 {
  padding-top: 0;
}

.p-1, .pt-1, .py-1 {
  padding-top: 15px;
}

.p-2, .pt-2, .py-2 {
  padding-top: 30px;
}

.p-3, .pt-3, .py-3 {
  padding-top: 45px;
}

.p-4, .pt-4, .py-4 {
  padding-top: 60px;
}

.p-5, .pt-5, .py-5 {
  padding-top: 75px;
}

.p-6, .pt-6, .py-6 {
  padding-top: 90px;
}

.p-8, .pt-8, .py-8 {
  padding-top: 120px;
}

.p-10, .pt-10, .py-10 {
  padding-top: 150px;
}

.p-12, .pt-12, .py-12 {
  padding-top: 180px;
}

.p-0, .pl-0, .px-0 {
  padding-left: 0;
}

.p-1, .pl-1, .px-1 {
  padding-left: 15px;
}

.p-2, .pl-2, .px-2 {
  padding-left: 30px;
}

.p-3, .pl-3, .px-3 {
  padding-left: 45px;
}

.p-4, .pl-4, .px-4 {
  padding-left: 60px;
}

.p-5, .pl-5, .px-5 {
  padding-left: 75px;
}

.p-6, .pl-6, .px-6 {
  padding-left: 90px;
}

.p-8, .pl-8, .px-8 {
  padding-left: 120px;
}

.p-10, .pl-10, .px-10 {
  padding-left: 150px;
}

.p-12, .pl-12, .px-12 {
  padding-left: 180px;
}

.p-0, .pr-0, .px-0 {
  padding-right: 0;
}

.p-1, .pr-1, .px-1 {
  padding-right: 15px;
}

.p-2, .pr-2, .px-2 {
  padding-right: 30px;
}

.p-3, .pr-3, .px-3 {
  padding-right: 45px;
}

.p-4, .pr-4, .px-4 {
  padding-right: 60px;
}

.p-5, .pr-5, .px-5 {
  padding-right: 75px;
}

.p-6, .pr-6, .px-6 {
  padding-right: 90px;
}

.p-8, .pr-8, .px-8 {
  padding-right: 120px;
}

.p-10, .pr-10, .px-10 {
  padding-right: 150px;
}

.p-12, .pr-12, .px-12 {
  padding-right: 180px;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #0E0F10;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.drag-preview {
  position: fixed;
  margin: -20px 0 0 15px;
  padding: 0 11px;
  box-sizing: border-box;
  line-height: 32px;
  opacity: 0.7;
  z-index: 20;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opacity-25, .opacity-0\.25 {
  opacity: 0.25;
}
.opacity-50, .opacity-0\.50 {
  opacity: 0.5;
}
.opacity-75, .opacity-0\.75 {
  opacity: 0.75;
}

.hover\:opacity {
  transition: opacity 0.15s ease-in-out;
}
.hover\:opacity:hover {
  opacity: 1;
}

.accent-color {
  color: #1463E0;
}

.danger-color {
  color: #DD0505;
}

.h-full {
  height: 100%;
}

.min-w-30 {
  min-width: 30%;
}

.w-50 {
  width: 50%;
}
.w-60 {
  width: 70%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}
.w-full {
  width: 100%;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
}

a img {
  border: 0;
}

video {
  max-width: 100%;
  width: auto;
  vertical-align: bottom;
}

.link,
.clickable,
.pointer {
  cursor: pointer;
}

*:active {
  outline: 0;
}

p {
  padding: 0;
  margin: 1em 0;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.link,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
  outline: 0;
}

.link:hover,
a:focus,
a:hover,
a:active {
  text-decoration: underline;
  outline: 0;
}

.rel {
  position: relative;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.login .btn-primary.btn-accent {
  padding: 0 60px;
  line-height: 50px;
  border-radius: 2px;
}

textarea.inherit,
.inherit > *,
.inherit > input[type=text] {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding: inherit;
  margin: inherit;
  border: inherit;
  color: inherit;
  background: inherit;
  height: inherit;
  width: 100%;
  resize: none;
}
textarea.inherit:focus,
.inherit > *:focus,
.inherit > input[type=text]:focus {
  border: inherit;
  box-shadow: inherit;
}

.init > *,
.init > input[type=text] {
  padding: initial;
  margin: initial;
  border: initial;
  color: initial;
  background: initial;
  height: initial;
  width: 100%;
}
.init > *:focus,
.init > input[type=text]:focus {
  border: initial;
  box-shadow: initial;
}

.clear {
  clear: both;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.bt {
  border-top: 1px solid #E0E4E9;
}

.bb {
  border-bottom: 1px solid #E0E4E9;
}

.block {
  display: block;
}

.ib {
  display: inline-block;
}

.flex {
  display: flex;
}
.flex.f1 {
  flex: 1;
}
.flex.center {
  justify-content: center;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.items-center, .flex.align-center {
  align-items: center;
}

.va,
.va > * {
  vertical-align: middle;
}

.nodeco,
.nodeco:hover {
  text-decoration: none;
}

.mw {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.mw.p {
  padding: 0 30px;
}

.box {
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.box.p {
  padding: 45px;
}

.part-time {
  color: #7D7D7D;
}

.top-actions {
  position: relative;
}
.top-actions:after {
  content: "";
  display: block;
  clear: both;
}
.top-actions.nospace {
  position: absolute;
  margin-top: 4px;
  right: 30px;
}
.top-actions > * {
  float: right;
}

div.toasted-container.top-right {
  top: 0;
  right: 0;
  padding: 30px;
  box-sizing: border-box;
}

.tiptap .tiptap-menu .buttons .tiptap-btn *,
.tiptap .tiptap-menu .tiptap-link,
.tiptap .tiptap-menu .tiptap-link input {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #fff;
}

.divider {
  height: 1px;
  width: 100%;
  background: #E0E4E9;
  margin: 75px 0;
}
.divider.dark {
  background: #000;
}
.divider.sm {
  margin: 60px 0;
}
.divider.xs {
  margin: 30px 0;
}
.divider.xxs {
  margin: 15px 0;
}

.snackbar {
  background: #E08E14;
  color: #fff;
  width: 100%;
  padding: 12px 0 14px;
}
.snackbar .mw {
  display: flex;
  align-items: center;
}
.snackbar .text {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.snackbar .icon {
  display: block;
  font-size: 16px;
  margin-right: 10px;
}
.snackbar.dark {
  background: #000;
}

.mb-1\/2 {
  margin-bottom: 10px;
}
.mt-1\/2 {
  margin-top: 10px;
}
.ml-1\/2 {
  margin-left: 10px;
}
.mr-1\/2 {
  margin-right: 10px;
}
.mb-1\/4 {
  margin-bottom: 5px;
}
.mt-1\/4 {
  margin-top: 5px;
}
.ml-1\/4 {
  margin-left: 5px;
}
.mr-1\/4 {
  margin-right: 5px;
}

.py-0\.5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.pt-0\.5 {
  padding-top: 5px;
}
.pb-0\.5 {
  padding-bottom: 5px;
}
.pb-1\/2 {
  padding-bottom: 10px;
}
.pt-1\/2 {
  padding-top: 10px;
}
.pl-1\/2 {
  padding-left: 10px;
}
.pr-1\/2 {
  padding-right: 10px;
}

.tag-inline, .chips {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  font-size: 12px;
  font-weight: 400;
  color: #032863;
  border: 1px solid #032863;
  background: #fff;
  border-radius: 11px;
  padding: 0 10px;
}
.tag-inline > span,
.tag-inline > .icon, .chips > span,
.chips > .icon {
  vertical-align: middle;
}
.tag-inline:nth-child(n+2), .chips:nth-child(n+2) {
  margin-left: 10px;
}
.tag-inline.faded, .chips.faded {
  background: transparent;
  border-color: #7D7D7D;
  color: #7D7D7D;
}
.tag-inline.normal, .chips.normal {
  background: transparent;
  border-color: #7D7D7D;
  color: #0E0F10;
}
.tag-inline.accent, .chips.accent {
  background: #032863;
  border-color: #032863;
  color: #fff;
}
.tag-inline.success, .chips.success {
  background: #64cd0b;
  border-color: #64cd0b;
  color: #fff;
}
.tag-inline.danger, .tag-inline.error, .chips.danger, .chips.error {
  background: #DD0505;
  border-color: #DD0505;
  color: #fff;
}

:hover > .edit-bar,
.edit-bar.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.edit-bar {
  position: absolute;
  right: 100%;
  top: 0;
  padding: 0 5px 0 0;
  min-height: 100%;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  width: 80px;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0s 0.2s ease;
}
.edit-bar .settings {
  position: absolute;
  top: 0;
  left: 100%;
  width: 310px;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  color: #0E0F10;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  z-index: 10;
  text-align: left;
}
.edit-bar .actions {
  position: relative;
  float: right;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.edit-bar .actions .action {
  font-size: 16px;
  color: #0E0F10;
  min-width: 16px;
  padding: 6px 8px;
  transition: color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.edit-bar .actions .action:hover {
  color: #032863;
}
.edit-bar .actions .action.video-icon {
  margin-right: -2px;
}

.email-box {
  background: #EDF0F2;
  border-radius: 4px;
  height: 100%;
  padding: 30px 40px;
  box-sizing: border-box;
}
.email-box.small {
  min-width: 260px;
  padding: 10px 15px 5px 15px;
}
.email-box.small .head .title {
  line-height: 16px;
  flex-direction: column;
  align-items: flex-start;
}
.email-box.small .head .title .label {
  font-size: 12px;
}
.email-box.small .head .icon {
  margin-top: -5px;
}
.email-box.border {
  background-color: transparent;
  border: 1px solid #4A4E54;
}
.email-box.toggleable .toggle {
  display: block;
  font-size: 22px;
  color: #8f8c8c;
  transform: rotate(360deg);
  transition: color 0.15s ease-in-out, transform 0.1s ease-in-out;
}
.email-box.toggleable .toggle:hover {
  color: #000;
}
.email-box .toggle {
  display: none;
  width: 20px;
  line-height: 20px;
  font-size: 20px;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 0.1s ease;
}
.email-box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.email-box .head .wrap {
  display: flex;
  align-items: center;
  flex: 1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.email-box .head .icon {
  color: #4A4E54;
  font-size: 20px;
  margin-right: 15px;
}
.email-box .head .title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0E0F10;
}
.email-box .head .title.col {
  flex-direction: column;
}
.email-box .head .title.align-start {
  align-items: flex-start;
}
.email-box .head .title .label {
  font-weight: 600;
  font-size: 14px;
}
.email-box .head .title .helper {
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #4A4E54;
}
.email-box .body .send-wrap .description {
  font-size: 14px;
  color: #4A4E54;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 400px;
  width: 100%;
}
.email-box .body .send-wrap .helper {
  color: #7D7D7D;
  font-size: 12px;
  margin-top: 5px;
}
.email-box .body .send-wrap .form-item {
  max-width: 100%;
}
.email-box .body .send-wrap .btn-primary {
  display: block;
  padding: 4px 40px;
  text-align: center;
  margin-top: 15px;
}
.email-box .body .users-wrap {
  border-top: 1px solid #E0E4E9;
  margin-top: 30px;
  padding-top: 20px;
}
.email-box .body .users-wrap .title {
  color: #424242;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}
.email-box .body .users-wrap .user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 12px 22px;
  margin-bottom: 15px;
  border-radius: 4px;
}
.email-box .body .users-wrap .label {
  font-weight: 600;
  font-size: 12px;
}
.email-box .body .users-wrap .date {
  font-size: 12px;
}
.email-box .body .users-wrap .actions {
  white-space: nowrap;
}
.email-box .body .users-wrap .actions > .action {
  display: inline-block;
}
.email-box .body .users-wrap .actions > .action .tooltip {
  font-size: 14px;
}
.email-box .body .users-wrap .action {
  color: #585D64;
  width: 30px;
  line-height: 44px;
  transition: opacity 0.1s ease;
  text-align: right;
  cursor: pointer;
}
.email-box .body .users-wrap .action.danger {
  color: #DD0505;
}
.email-box .body .users-wrap .action:hover {
  opacity: 0.75;
}
.email-box.locked .head .wrap {
  cursor: default;
}
.email-box.expanded .head {
  border-bottom: 1px solid #E0E4E9;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.email-box.expanded .toggle.clickable {
  transform: none;
}
.email-box.disabled .head .icon,
.email-box.disabled .head .title .label {
  opacity: 0.4;
}

.spotlight.rounded .content.box {
  overflow: hidden;
  border-radius: 8px;
}

.spotlight.bg-75 .dark {
  background: rgba(0, 0, 0, 0.75);
}
.spotlight.bg-95 .dark {
  background: rgba(0, 0, 0, 0.95);
}

.spotlight .content .am-spotlight-form {
  padding: 50px 60px;
}

.status-dot {
  background: #1463E0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot.unpublished {
  background: #DD0505;
}

.link-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-indent: -99999px;
}

.collapsible .toggle {
  float: right;
}
.collapsible.expanded div.toggle.clickable {
  transform: rotate(180deg);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
}

.paragraph .edit .settings .form-item .media .m-buttons, .paragraph .edit .settings .form-item .media .m-buttons div {
  background: none;
}
.paragraph .p-pdfviewer {
  height: 90vh;
}
.paragraph .p-pdfviewer embed {
  width: 100%;
  height: 90vh;
}
.paragraph .p-pdfviewer :global div.\@container {
  background: #eee;
}
.paragraph .p-pdfviewer :global div.\@container div.absolute:last-child button:nth-child(1),
.paragraph .p-pdfviewer :global div.\@container div.absolute:last-child button:nth-child(2),
.paragraph .p-pdfviewer :global div.\@container div.absolute:last-child button:nth-child(4),
.paragraph .p-pdfviewer :global div.\@container div.absolute:last-child button:nth-child(5) {
  display: none !important;
}

@media all and (max-width: 965px) {
  .mw.p {
    padding: 0 15px;
  }
  .desktop {
    display: none !important;
  }
  .email-box {
    height: auto;
    padding: 16px 20px;
  }
  .email-box.small {
    text-align: left;
  }
}
@media all and (min-width: 966px) {
  .mobile {
    display: none !important;
  }
}
@media all and (max-width: 440px) {
  /* CSS specific to iOS devices */
  @supports (-webutility-touch-callout: none) {
    input[type=text] {
      font-size: 16px !important;
    }
  }
}
.tooltip-anchor.hidden-tooltip .tooltip {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease-out;
}
.tooltip-anchor.hidden-tooltip:hover > .tooltip {
  opacity: 1;
  visibility: visible;
}
.tooltip-anchor > .tooltip {
  border-radius: 4px;
  font-weight: 300;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  color: #fff;
}
.tooltip-anchor > .tooltip.box {
  padding: 30px;
  width: 355px;
  color: #0E0F10;
}
.tooltip-anchor > .tooltip.box.position-t {
  bottom: 100%;
  margin-bottom: 10px;
}
.tooltip-anchor > .tooltip.box.position-tl, .tooltip-anchor > .tooltip.box.position-tr {
  top: 0;
}
.tooltip-anchor > .tooltip.box.position-b {
  top: 100%;
  margin-top: 10px;
}
.tooltip-anchor > .tooltip.box.position-bl, .tooltip-anchor > .tooltip.box.position-br {
  bottom: 0;
}
.tooltip-anchor > .tooltip.box.position-tr, .tooltip-anchor > .tooltip.box.position-br {
  left: 100%;
  margin-left: 30px;
}
.tooltip-anchor > .tooltip.box.position-tl, .tooltip-anchor > .tooltip.box.position-bl {
  right: 100%;
  margin-right: 30px;
}
.tooltip-anchor > .tooltip.box.position-t, .tooltip-anchor > .tooltip.box.position-b {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.tooltip-anchor > .tooltip.box.position-l, .tooltip-anchor > .tooltip.box.position-r {
  top: 50%;
  margin-top: -10px;
}
.tooltip-anchor > .tooltip.box.position-l {
  right: 100%;
  margin-right: 10px;
}
.tooltip-anchor > .tooltip.box.position-r {
  left: 100%;
  margin-left: 10px;
}

h1, h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  padding: 0;
}

h1 {
  font-size: 32px;
  margin: 0 0 30px;
}
h1 .icon,
h1 .back {
  display: inline-block;
  margin-right: 10px;
  font-size: 25px;
  position: relative;
  top: 2px;
}

h2 {
  font-size: 32px;
  margin: 0 0 15px;
}

.font-primary {
  font-family: "Sora", sans-serif;
}

.font-secondary {
  font-family: "Work Sans", sans-serif;
}

.font-xxs {
  font-size: 10px;
}

.font-xs {
  font-size: 12px;
}

.font-sm {
  font-size: 14px;
}

.font-size {
  font-size: 16px;
}

.font-lg {
  font-size: 20px;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

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

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

.center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.spotlight.compact.special .content.box {
  padding-left: 15px;
  padding-right: 15px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.spotlight.compact.special .content.box .bgbox {
  padding: 15px 20px;
  border-radius: 4px;
}
.spotlight.compact.special .content.box > .text {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
}
.spotlight.compact .content.box {
  width: 375px;
  min-height: 280px;
  padding: 30px 25px 25px;
  border-radius: 2px;
}
.spotlight.compact .content.box .bgbox {
  background: #EDF0F2;
  padding: 14px 18px;
}
.spotlight.compact .content.box .bgbox .media.no-media .m-placeholder {
  border-color: transparent;
}
.spotlight.compact .content.box > .title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #0E0F10;
  text-align: center;
  margin-bottom: 20px;
}
.spotlight.compact .content.box > .title.mb-half {
  margin-bottom: 10px;
}
.spotlight.compact .content.box > .title.font-lg {
  font-size: 20px;
}
.spotlight.compact .content.box > .title.text-left {
  text-align: left;
}
.spotlight.compact .content.box .tab-wrap {
  padding: 0 15px;
}
.spotlight.compact .content.box .tab-wrap .header {
  border-bottom: 1px solid #E0E4E9;
  padding-bottom: 14px;
}
.spotlight.compact .content.box .tab-wrap .header .title {
  font-size: 12px;
  color: #0E0F10;
  font-weight: 600;
}
.spotlight.compact .content.box .tab-wrap .header .icon {
  font-size: 20px;
  color: #585D64;
  cursor: pointer;
}
.spotlight.compact .content.box .tab-wrap .create_button {
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #E0E4E9;
}
.spotlight.compact .content.box .tab-wrap .create_button label {
  margin-bottom: 0;
}
.spotlight.compact .content.box .tab-wrap .form-item {
  font-size: 14px;
  font-weight: 400;
}
.spotlight.compact .content.box .tab-wrap .form-item:nth-child(n+2) {
  margin-top: 20px;
}
.spotlight.compact .content.box .tab-wrap .form-item.selected {
  color: #1463E0;
}
.spotlight.compact .content.box .tab-wrap .form-item .checkbox.radio,
.spotlight.compact .content.box .tab-wrap .form-item .checkbox.alt {
  margin-bottom: 0;
}
.spotlight.compact .content.box > .text {
  font-weight: 600;
  font-size: 14px;
  color: #0E0F10;
}
.spotlight.compact .content.box > .text.font-light {
  font-weight: 300;
}
.spotlight.compact .content.box .lg-input {
  border: 1px solid #E0E4E9;
  padding: 14px 18px 0;
  border-radius: 2px;
}
.spotlight.compact .content.box .lg-input label {
  width: 100%;
}
.spotlight.compact .content.box .lg-input input[type=text] {
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  color: #0E0F10;
  font-weight: 400;
  font-size: 14px;
}
.spotlight.compact .content.box .lg-input .mx-input-append {
  display: none;
}
.spotlight.compact .content.box .lg-input .mx-input-append.mx-clear-wrapper {
  display: block;
  right: -10px;
}
.spotlight.compact .content.box .lg-input .label {
  color: #585D64;
  font-weight: 300;
  font-size: 12px;
}
.spotlight.compact .content.box .dropdown .toggle .title {
  font-weight: 400;
}
.spotlight.compact .content.box .dropdown .items {
  padding: 20px 0;
}
.spotlight.compact .content.box .dropdown .items .item {
  padding: 0 20px;
}
.spotlight.compact .content.box .dropdown .items .item .icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 2px;
}
.spotlight.compact .content.box .dropdown .items .item .item-title {
  margin-left: 10px;
}
.spotlight.compact .content.box .dropdown .items .item.active .icon {
  background-color: #032863;
  border-color: #032863;
}
.spotlight.compact .content.box .media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}
.spotlight.compact .content.box .media.no-media {
  border: 1px dashed #A0A0A0;
  border-radius: 2px;
}
.spotlight.compact .content.box .media .m-open .icon {
  background: transparent;
  color: #CECECE;
}
.spotlight.compact .content.box .media .m-open .decoration {
  display: none;
}
.spotlight.compact .content.box .media .m-placeholder {
  min-height: 100%;
}
.spotlight.compact .content.box .btn {
  line-height: 42px;
}
.spotlight.compact .content.box .btn-primary {
  margin-top: 22px;
}
.spotlight.compact.large .content.box {
  width: 550px;
}
.spotlight.compact.loading .content.box > * {
  opacity: 0.5;
  transition: opacity 0.1 ease;
  pointer-events: none;
}

.spotlight.report-save-media .box {
  border-radius: 0;
}
.spotlight.report-save-media .confirm-wrap > .close.icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  margin: 15px 10px;
  border: 0;
  outline: 0;
  cursor: pointer;
  z-index: 5;
}
.spotlight.report-save-media .confirm-wrap > .close.icon svg {
  font-size: 25px;
  color: #FFF;
}
.spotlight.report-save-media .confirm-wrap > .img-wrap img {
  width: 100%;
  max-width: 100%;
}
.spotlight.report-save-media .confirm-wrap > .img-wrap.no-image {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 650px;
  max-height: 600vh;
}
.spotlight.report-save-media .confirm-wrap > .img-wrap.no-image .icon {
  font-size: 110px;
  color: #000;
  opacity: 0.25;
}
.spotlight.report-save-media .confirm-wrap > .action-wrap {
  background: #FFF;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.spotlight.report-save-media .confirm-wrap > .action-wrap.auto {
  height: auto;
  padding: 20px;
  min-height: 80px;
}
.spotlight.report-save-media .confirm-wrap > .action-wrap input {
  border: 1px solid #C5C5C5;
  border-radius: 4px;
  padding: 5px;
}
.spotlight.report-save-media .confirm-wrap > .action-wrap .textarea-autosize {
  border: 1px solid #C5C5C5;
  border-radius: 4px;
  width: 100%;
}
.spotlight.report-save-media .confirm-wrap > .action-wrap .textarea-autosize textarea {
  height: 0;
  padding: 6px 10px;
  line-height: 16px;
  border-width: 0;
}
.spotlight.report-save-media .confirm-wrap > .action-wrap .icon {
  background-color: #1463E0;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  width: 33px;
  height: 33px;
  line-height: 33px;
  margin-left: 10px;
  cursor: pointer;
}

.spotlight.report-media-preview .box {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.spotlight.report-media-preview .preview-wrap {
  display: grid;
  grid-template-columns: 40% 60%;
}
.spotlight.report-media-preview .preview-wrap .content-wrap {
  background: #EDF0F2;
  position: relative;
}
.spotlight.report-media-preview .preview-wrap .content-wrap .text,
.spotlight.report-media-preview .preview-wrap .content-wrap .uploader {
  padding: 0 30px;
}
.spotlight.report-media-preview .preview-wrap .content-wrap .text {
  margin-bottom: 10px;
}
.spotlight.report-media-preview .preview-wrap .content-wrap .uploader {
  color: #4A4E54;
}
.spotlight.report-media-preview .preview-wrap .content-wrap .btn-secondary.filled {
  background: #DBE0E6;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #4A4E54;
  text-decoration: none;
}
.spotlight.report-media-preview .preview-wrap .actions-wrap {
  margin: 30px 30px 10px;
}
.spotlight.report-media-preview .preview-wrap .actions-wrap .toggle {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
}
.spotlight.report-media-preview .preview-wrap .topbar .close.icon,
.spotlight.report-media-preview .preview-wrap .content-wrap .close.icon {
  width: 48px;
  line-height: 48px;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.spotlight.report-media-preview .preview-wrap .topbar .close.icon svg,
.spotlight.report-media-preview .preview-wrap .content-wrap .close.icon svg {
  font-size: 25px;
  color: #4A4E54;
}
.spotlight.report-media-preview .preview-wrap .img-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.spotlight.report-media-preview .preview-wrap .img-wrap.no-image {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 650px;
  max-height: 600vh;
}
.spotlight.report-media-preview .preview-wrap .img-wrap.no-image a {
  text-decoration: none;
  text-align: center;
}
.spotlight.report-media-preview .preview-wrap .img-wrap.no-image a > * {
  color: #000;
  opacity: 0.25;
  transition: opacity 0.2s ease-out;
}
.spotlight.report-media-preview .preview-wrap .img-wrap.no-image a:hover > * {
  opacity: 0.75;
}
.spotlight.report-media-preview .preview-wrap .img-wrap.no-image .icon {
  font-size: 110px;
}
.spotlight.report-media-preview .preview-wrap .img-wrap.no-image .dl {
  font-size: 14px;
  font-weight: 600;
  margin-top: 30px;
}
.spotlight.report-media-preview .preview-wrap .img-wrap.no-image .dl svg {
  margin-left: 5px;
}

@media all and (max-width: 965px) {
  .spotlight.report-media-preview .light {
    max-width: 100%;
  }
  .spotlight.report-media-preview .box {
    border-radius: 0;
  }
  .spotlight.report-media-preview .topbar {
    background: #fff;
    position: absolute;
    top: 0;
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .spotlight.report-media-preview .topbar .drop {
    right: 0;
    left: auto;
  }
  .spotlight.report-media-preview .topbar .btn-text {
    color: #4A4E54;
    text-decoration: underline;
    font-size: 12px;
  }
  .spotlight.report-media-preview .topbar .close.icon svg {
    font-size: 18px !important;
  }
  .spotlight.report-media-preview .preview-wrap {
    grid-template-columns: 1fr;
  }
  .spotlight.report-media-preview .preview-wrap .content-wrap {
    padding: 20px 0 30px;
  }
  .spotlight.report-media-preview .preview-wrap .img-wrap {
    order: -1;
  }
}
header {
  background: #fff;
  position: unset;
  width: 100%;
  height: 72px;
  line-height: 70px;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
  text-align: center;
}
header .mw {
  max-width: 1440px;
}
header .logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 142px;
}
header .logo img {
  vertical-align: middle;
}
header .nav {
  font-family: "Sora", sans-serif;
}
header .nav * {
  vertical-align: middle;
}
header .nav .action {
  display: inline-block;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s ease-out;
  text-decoration: none;
}
header .nav .action:hover {
  opacity: 1;
}
header .nav .action > span {
  font-size: 14px;
  font-weight: 500;
  margin: 0 10px;
}
header .nav.user .user-name {
  display: inline-block;
  text-align: right;
  line-height: 1.1;
}
header .nav.user .user-name .user-office {
  font-size: 12px;
}
header .nav.user .user-icon {
  font-size: 22px;
}

.app.custom-top #content {
  margin: 0;
  padding-top: 72px;
}
.app.custom-top .custom-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
.app.custom-top.shared-report #content {
  padding-top: 0;
}

.main-menu {
  list-style: none;
  margin: 60px 0;
}
.main-menu li {
  margin-bottom: 42px;
}
.main-menu li a {
  text-decoration: none;
}
.main-menu li .title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #4A4E54;
}
.main-menu li.active .title, .main-menu li:hover .title {
  color: #1463E0;
}

#content {
  margin: 45px auto;
  color: #0E0F10;
}

.app.error {
  overflow-x: initial;
}
.app.error .error-content {
  max-width: 700px;
  text-align: center;
}
.app.error #content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
}

#nprogress .bar {
  background: #032863;
}

.media .m-buttons .m-button {
  font-family: "Work Sans", sans-serif;
}

.title.notch {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.title.notch:before {
  background: #1463E0;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 4px;
  margin: 0 auto -15px;
  border-radius: 2px;
}

.awesome-top {
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E0E4E9;
}
.awesome-top.alt {
  border-bottom: 0;
  margin-bottom: 0;
  margin-top: 30px;
  padding-bottom: 20px;
}
.awesome-top .item {
  position: relative;
  display: inline-block;
  margin: 0 15px;
  text-transform: uppercase;
  text-decoration: none;
  color: #B0B1B3;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.awesome-top .item:hover {
  opacity: 0.75;
}
.awesome-top .item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 20px;
  height: 4px;
  margin: 0 auto;
  border-radius: 2px;
}
.awesome-top .item.active {
  color: #1463E0;
}
.awesome-top .item.active:before {
  background: #1463E0;
}

.breadcrumb {
  font-weight: 300;
  font-size: 12px;
  color: #4A4E54;
  border-bottom: 1px solid #E0E4E9;
  padding: 20px 0 25px;
  margin-top: -30px;
}
.breadcrumb a {
  color: #4A4E54;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #1463E0;
}
.breadcrumb a.dark, .breadcrumb a.dark:hover {
  color: #000;
}
.breadcrumb .icon {
  color: #C5C5C5;
  margin: 0 20px;
}
.breadcrumb .item {
  display: inline-block;
}
.breadcrumb .item.active {
  font-weight: 600;
}
.breadcrumb .actions > .drop,
.breadcrumb .actions > .items {
  left: auto;
  right: 0;
  font-weight: 600;
  border-radius: 4px;
}

.info-card {
  background: #EDF0F2;
  border-radius: 4px;
  width: 100%;
  min-width: 280px;
}
.info-card.bare {
  background: transparent;
  border-radius: 0;
}
.info-card.bare .content {
  padding-left: 0;
  padding-right: 0;
}
.info-card .content {
  padding: 30px 25px;
}
.info-card .image-wrap {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
}
.info-card .image-wrap.p-0 {
  padding: 0;
}
.info-card .image-wrap .image {
  background-color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  border-radius: 2px;
}
.info-card .image-wrap .image.alt-bg-color {
  background-color: #F9FAFB;
}
.info-card .image-wrap .image.full {
  background-size: cover;
  background-position: center;
}
.info-card .image-wrap .image span {
  font-weight: 600;
  color: #C5C5C5;
}
.info-card .section {
  font-size: 14px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E0E4E9;
}
.info-card .section:last-child {
  border-bottom: 0;
}
.info-card .section > .title {
  color: #4A4E54;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.info-card .section > .row {
  margin-bottom: 20px;
}
.info-card .section > .row .label {
  font-weight: 300;
  font-size: 12px;
  color: #4A4E54;
  margin-bottom: 5px;
}
.info-card .section > .row .label.alt {
  font-weight: 600;
  font-size: 14px;
}
.info-card .section > .row .text {
  font-weight: 600;
  font-size: 14px;
}
.info-card .section > .row .text.alt {
  font-weight: 300;
}
.info-card .section > .row .dropdown .toggle {
  padding: 0;
  line-height: 20px;
}
.info-card .section > .row .dropdown .toggle .title {
  width: auto;
  font-weight: 600;
}
.info-card .section > .row .dropdown .toggle .icon {
  float: none;
  display: inline-block;
  margin-left: 20px;
}
.info-card > .btn {
  background-color: #CFD6DD;
  color: #4A4E54;
  line-height: 44px;
  margin-top: -20px;
  border: none;
}

.info-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-rows: auto 1fr;
  margin-top: 45px;
}
.info-split .right {
  grid-row: span 2;
  margin-left: 60px;
}
.info-split .title.notch {
  font-weight: 600;
  font-size: 14px;
  color: #1463E0;
  text-transform: uppercase;
}
.info-split .title.notch ~ .border {
  background: #E0E4E9;
  height: 1px;
  width: 100%;
  margin-top: 45px;
  margin-bottom: 30px;
}
.info-split .collapsible {
  background: #F1F3F5;
  border-radius: 4px;
  padding: 10px 25px;
  margin-bottom: 15px;
  box-sizing: border-box;
}
.info-split .collapsible .head {
  display: grid;
  grid-template-columns: 1fr 40px;
}
.info-split .collapsible .head .title {
  line-height: 40px;
}
.info-split .collapsible .head .checkbox.toggle .icon,
.info-split .collapsible .body .item .checkbox.toggle .icon {
  background: transparent;
  width: 64px;
  height: 24px;
  border-width: 2px;
}
.info-split .collapsible .head .checkbox.toggle input:checked ~ .icon,
.info-split .collapsible .body .item .checkbox.toggle input:checked ~ .icon {
  background: #032863;
  border-color: #032863;
}
.info-split .collapsible .head .checkbox.toggle input:checked ~ .icon:before,
.info-split .collapsible .body .item .checkbox.toggle input:checked ~ .icon:before {
  transform: translate3d(40px, 0, 0);
}
.info-split .collapsible .toggle-icon {
  font-size: 30px;
  text-align: center;
  color: #4A4E54;
}
.info-split .collapsible .toggle-icon svg {
  transform: none;
  transition: transform 0.2s ease-out;
}
.info-split .collapsible .body {
  margin-top: 10px;
}
.info-split .collapsible .body .empty-result {
  margin-top: -15px;
  margin-bottom: 15px;
}
.info-split .collapsible .body > .item {
  font-weight: 600;
  font-size: 14px;
  border-top: 1px solid #E0E4E9;
  line-height: 60px;
}
.info-split .collapsible.collapsed .toggle-icon svg {
  transform: rotate(-90deg);
}

@media (max-width: 965px) {
  header .logo img {
    max-width: 120px;
  }
  header .nav .action svg {
    font-size: 20px;
  }
  .main-menu {
    margin: 30px 0;
  }
  .main-menu li .title {
    font-size: 18px;
  }
  .awesome-top {
    font-size: 12px;
  }
  .awesome-top .item {
    margin: 0 7.5px;
  }
  .breadcrumb {
    margin-top: -35px;
    padding: 10px 0 15px;
  }
  .info-split {
    margin-top: 10px;
    grid-template-columns: 1fr;
  }
  .info-split > .right {
    margin-left: 0;
  }
  .w-mobile-100 {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .breadcrumb .fl > * {
    vertical-align: middle;
  }
  .breadcrumb .fl .item.active {
    max-width: 45vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  animation: fade 0.1s ease-out;
}
.sidebar.is_open {
  z-index: 45;
}
.sidebar a {
  text-decoration: none;
}
.sidebar a.router-link-exact-active, .sidebar a.router-link-exact-active > .label > .date {
  color: #1463E0;
}
.sidebar.right > .wrapp {
  float: right;
}
.sidebar > .wrapp {
  background: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 380px;
  padding: 40px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 30;
}
.sidebar > .wrapp .head {
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E4E9;
}
.sidebar > .wrapp .head .title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}
.sidebar > .wrapp .head .title.bold {
  font-weight: 600 !important;
}
.sidebar > .wrapp .head .icon {
  font-size: 20px;
  min-width: 20px;
  cursor: pointer;
}
.sidebar .backdrop {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 25;
}
.sidebar.sort .header {
  padding-bottom: 14px;
}
.sidebar.sort .header .title {
  font-size: 12px;
  color: #0E0F10;
  font-weight: 600;
}
.sidebar.sort .header .icon {
  font-size: 20px;
  color: #585D64;
  cursor: pointer;
}
.sidebar.sort .form-item {
  font-size: 14px;
  font-weight: 400;
}
.sidebar.sort .form-item:nth-child(n+2) {
  margin-top: 20px;
}
.sidebar.sort .form-item.selected {
  color: #1463E0;
}
.sidebar.sort .form-item .checkbox.radio,
.sidebar.sort .form-item .checkbox.alt {
  margin-bottom: 0;
}

.plusbar {
  font-family: "Sora", sans-serif;
  position: relative;
  margin-top: 30px;
  font-size: 14px;
}
.plusbar .toggle {
  position: relative;
  float: left;
  width: 26px;
  line-height: 26px;
  font-size: 16px;
  text-align: center;
  background: #e6e9ef;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.plusbar .toggle svg {
  transition: transform 0.2s ease;
}
.plusbar .types {
  position: relative;
  float: left;
  padding: 0 15px;
  margin-top: -4px;
  margin-left: 10px;
  max-width: calc(100% - 82px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s 0.2s;
}
.plusbar .types .type {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #EDF0F2;
  border-radius: 4px;
  margin-right: 7px;
  margin-bottom: 5px;
  padding: 0 10px;
  display: inline-block;
  line-height: 35px;
  color: #4A4E54;
  cursor: pointer;
}
.plusbar .types .type:hover {
  color: #032863;
}
.plusbar .line {
  position: absolute;
  left: 5px;
  right: 0;
  top: 13px;
  height: 1px;
  background: #e7effc;
  transition: left 0.2s ease, background-color 0.2s ease;
}
.plusbar:hover .toggle {
  background: #1463E0;
  color: #fff;
}
.plusbar:hover .line {
  background: #1463E0;
}

.plusbar.open .toggle {
  background: #1463E0;
  color: #fff;
}
.plusbar.open .toggle svg {
  transform: rotateZ(45deg);
}
.plusbar.open .types {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.plusbar.open .line {
  left: 55px;
  background: #1463E0;
}

.project-report-show > .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.project-report-show > .wrap .right {
  max-width: 590px;
}
.project-report-show > .wrap .right .box {
  box-shadow: none;
}
.project-report-show > .title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #0E0F10;
  text-align: center;
  margin-bottom: 20px;
}
.project-report-show > .title.font-lg {
  font-size: 20px;
}
.project-report-show > .title.text-left {
  text-align: left;
}

.project-report-show .top > .inner,
.project-report.report-content .top > .inner {
  max-width: 560px;
}
.project-report-show .top > .inner .status,
.project-report.report-content .top > .inner .status {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  margin-bottom: 20px;
}
.project-report-show .top > .inner .status .icon,
.project-report.report-content .top > .inner .status .icon {
  margin-right: 5px;
}
.project-report-show .top > .inner .date,
.project-report.report-content .top > .inner .date {
  font-weight: 400;
  font-size: 12px;
  color: #0E0F10;
  margin: 0 0 20px;
}
.project-report-show .top > .inner .title,
.project-report.report-content .top > .inner .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.project-report-show .top > .inner .description,
.project-report.report-content .top > .inner .description {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #4A4E54;
  margin-bottom: 20px;
}
.project-report-show .top > .inner .membership,
.project-report.report-content .top > .inner .membership {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  font-size: 12px;
  color: #4A4E54;
  text-transform: uppercase;
  margin: 15px 30px;
}
.project-report-show .top > .inner .btn-primary,
.project-report.report-content .top > .inner .btn-primary {
  padding: 4px 40px;
}
.project-report-show .top > .inner .stats-footer,
.project-report.report-content .top > .inner .stats-footer {
  font-size: 12px;
  line-height: 16px;
  margin-top: 30px;
}
.project-report-show .top > .inner .stats-footer .id,
.project-report-show .top > .inner .stats-footer .name,
.project-report-show .top > .inner .stats-footer .stat,
.project-report.report-content .top > .inner .stats-footer .id,
.project-report.report-content .top > .inner .stats-footer .name,
.project-report.report-content .top > .inner .stats-footer .stat {
  font-weight: 600;
}
.project-report-show .top > .inner .stats-footer .id,
.project-report.report-content .top > .inner .stats-footer .id {
  display: inline-block;
  margin-right: 5px;
}
.project-report-show .top > .inner .stats-footer .stat,
.project-report.report-content .top > .inner .stats-footer .stat {
  display: inline-block;
  background: #EDF0F2;
  padding: 0 10px;
  line-height: 26px;
  color: #4A4E54;
  border-radius: 4px;
  margin-left: 10px;
}
.project-report-show .top > .inner .stats-footer .stat > *,
.project-report.report-content .top > .inner .stats-footer .stat > * {
  display: inline-block;
  vertical-align: middle;
}
.project-report-show .top > .inner .stats-footer .stat .icon,
.project-report.report-content .top > .inner .stats-footer .stat .icon {
  font-size: 14px;
}
.project-report-show .top > .inner .stats-footer .stat .icon + span,
.project-report.report-content .top > .inner .stats-footer .stat .icon + span {
  margin-left: 5px;
}

.project-report.report-content .top {
  margin-top: 0px;
  background: #EDF0F2;
}
.project-report.report-content .top .inner {
  margin: 0 auto;
  max-width: 870px;
}
.project-report.report-content .top .inner .title {
  font-size: 24px;
}
.project-report.report-content .top .inner .more {
  position: relative;
  top: -15px;
}
.project-report.report-content .top .inner .btn-primary {
  font-size: 14px;
  padding: 0px 30px;
}

.project-report.report-info .boxes .info-card {
  width: 48%;
}

.project-report .info-card .image .customer-name {
  font-weight: 600;
  color: #0E0F10;
  font-size: 1rem;
  padding: 0 1rem;
  text-align: center;
}

.project-report .link-box {
  background: #EDF0F2;
  border-radius: 4px;
  height: 68px;
  margin-bottom: 15px;
}
.project-report .link-box.p {
  padding: 22px 20px;
  height: auto;
}
.project-report .link-box .icon {
  font-size: 20px;
  min-width: 20px;
  margin-right: 10px;
}
.project-report .link-box .label {
  font-weight: 600;
  font-size: 14px;
}
.project-report .link-box .date {
  text-transform: uppercase;
  font-size: 10px;
  color: #4A4E54;
  margin: 0;
}
.project-report .link-box > a {
  display: flex;
  align-items: center;
  height: 100%;
  outline: 0;
  padding: 0 20px;
  text-decoration: none !important;
}

.report-body {
  max-width: 870px;
  margin: 75px auto 0;
}
.report-body .categories .category {
  margin-bottom: 75px;
}
.report-body .categories .category > .head {
  margin-bottom: 30px;
}
.report-body .categories .category > .head .num + .fl {
  width: 90%;
}
.report-body .categories .category > .head .num,
.report-body .categories .category > .head .title {
  font-size: 24px;
  font-weight: 600;
  color: #1463E0;
}
.report-body .categories .category > .head .text {
  font-size: 14px;
  color: #5F666D;
}
.report-body .categories .category > .head .line {
  background: #1463E0;
  width: 60px;
  height: 4px;
  margin: 15px 0;
}
.report-body .categories .category.sub {
  margin-top: 75px;
}
.report-body .categories .category.sub > .head {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
}
.report-body .categories .category.sub > .head .title {
  font-size: 18px;
}
.report-body .categories .category.sub > .head:before {
  background: #1463E0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.report-body .form-item {
  max-width: 100%;
}
.report-body .form-item textarea {
  padding-top: 23px !important;
}
.report-body .form-item.inline.wrap-textarea textarea {
  border-color: transparent;
}
.report-body .form-item.inline.wrap-textarea label {
  margin-left: 0;
}
.report-body .fields > .form-item.has-errors .field {
  border-color: #ff9595;
}
.report-body .fields > .form-item.has-errors .form-errors {
  margin-top: -40px;
  margin-bottom: 40px;
}
.report-body .fields > .form-item.has-errors .form-errors .form-error {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.report-body .fields .field {
  position: relative;
  font-size: 14px;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  margin-bottom: 51px;
  box-sizing: border-box;
  width: 100%;
}
.report-body .fields .field ::-webutility-input-placeholder { /* WebUtility, Blink, Edge */
  color: #D5D6D8;
}
.report-body .fields .field ::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #D5D6D8;
  opacity: 1;
}
.report-body .fields .field ::placeholder { /* Most modern browsers support this now. */
  color: #D5D6D8;
}
.report-body .fields .field > .head {
  padding: 20px;
  border-bottom: 1px solid #E3E3E3;
}
.report-body .fields .field > .head .title {
  color: #0E100F;
  font-weight: 600;
}
.report-body .fields .field > .head .text {
  font-weight: 300;
}
.report-body .fields .field > .head .actions.fr .drop {
  right: 0;
  left: auto;
}
.report-body .fields .field .item {
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #E3E3E3;
}
.report-body .fields .field.field-date .item, .report-body .fields .field.field-month .item, .report-body .fields .field.field-str .item {
  padding-left: 0;
  padding-right: 0;
  border-bottom: none;
}
.report-body .fields .field.field-option .placeholders > .inner .form-item.inline label {
  margin-left: 20px;
  margin-left: 20px;
}
.report-body .fields .field.field-enum .item .placeholders > .inner {
  padding: 0;
}
.report-body .fields .field.field-enum .item .placeholders > .inner .form-item.inline.focused label {
  opacity: 0.75;
  margin-top: 0;
}
.report-body .fields .field.field-enum .item .placeholders > .inner label {
  opacity: 0.5;
  margin-top: 15px;
}
.report-body .fields .field.field-enum .item .placeholders > .inner label,
.report-body .fields .field.field-enum .item .placeholders > .inner textarea,
.report-body .fields .field.field-enum .item .placeholders > .inner .inner {
  color: #fff;
}
.report-body .fields .field.disabled .content {
  pointer-events: none;
}
.report-body .fields .field.disabled .content .item > .label {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.report-body .fields .field-enum .item.active,
.report-body .fields .field-bool .item.active,
.report-body .fields .field-option .item.active,
.report-body .fields .field-options .item.active,
.report-body .fields .field-utility .item.active {
  background: #032863;
  border-bottom-color: #032863;
  color: #FFF;
}
.report-body .fields .field-enum .item.active ::-webutility-input-placeholder,
.report-body .fields .field-bool .item.active ::-webutility-input-placeholder,
.report-body .fields .field-option .item.active ::-webutility-input-placeholder,
.report-body .fields .field-options .item.active ::-webutility-input-placeholder,
.report-body .fields .field-utility .item.active ::-webutility-input-placeholder { /* WebUtility, Blink, Edge */
  color: rgba(255, 255, 255, 0.85);
}
.report-body .fields .field-enum .item.active ::-moz-placeholder,
.report-body .fields .field-bool .item.active ::-moz-placeholder,
.report-body .fields .field-option .item.active ::-moz-placeholder,
.report-body .fields .field-options .item.active ::-moz-placeholder,
.report-body .fields .field-utility .item.active ::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}
.report-body .fields .field-enum .item.active ::-moz-placeholder, .report-body .fields .field-bool .item.active ::-moz-placeholder, .report-body .fields .field-option .item.active ::-moz-placeholder, .report-body .fields .field-options .item.active ::-moz-placeholder, .report-body .fields .field-utility .item.active ::-moz-placeholder { /* Most modern browsers support this now. */
  color: rgba(255, 255, 255, 0.85);
}
.report-body .fields .field-enum .item.active ::placeholder,
.report-body .fields .field-bool .item.active ::placeholder,
.report-body .fields .field-option .item.active ::placeholder,
.report-body .fields .field-options .item.active ::placeholder,
.report-body .fields .field-utility .item.active ::placeholder { /* Most modern browsers support this now. */
  color: rgba(255, 255, 255, 0.85);
}
.report-body .fields .field-enum .item.active > .label > .icon,
.report-body .fields .field-bool .item.active > .label > .icon,
.report-body .fields .field-option .item.active > .label > .icon,
.report-body .fields .field-options .item.active > .label > .icon,
.report-body .fields .field-utility .item.active > .label > .icon {
  display: inline-block;
}
.report-body .fields .field-enum .item.active.trans,
.report-body .fields .field-bool .item.active.trans,
.report-body .fields .field-option .item.active.trans,
.report-body .fields .field-options .item.active.trans,
.report-body .fields .field-utility .item.active.trans {
  background: transparent;
  border-bottom-color: transparent;
  color: #0E0F10;
}
.report-body .fields .field-enum .item.active.trans ::-webutility-input-placeholder,
.report-body .fields .field-bool .item.active.trans ::-webutility-input-placeholder,
.report-body .fields .field-option .item.active.trans ::-webutility-input-placeholder,
.report-body .fields .field-options .item.active.trans ::-webutility-input-placeholder,
.report-body .fields .field-utility .item.active.trans ::-webutility-input-placeholder { /* WebUtility, Blink, Edge */
  color: rgba(0, 0, 0, 0.85);
}
.report-body .fields .field-enum .item.active.trans ::-moz-placeholder,
.report-body .fields .field-bool .item.active.trans ::-moz-placeholder,
.report-body .fields .field-option .item.active.trans ::-moz-placeholder,
.report-body .fields .field-options .item.active.trans ::-moz-placeholder,
.report-body .fields .field-utility .item.active.trans ::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: rgba(0, 0, 0, 0.85);
  opacity: 1;
}
.report-body .fields .field-enum .item.active.trans ::-moz-placeholder, .report-body .fields .field-bool .item.active.trans ::-moz-placeholder, .report-body .fields .field-option .item.active.trans ::-moz-placeholder, .report-body .fields .field-options .item.active.trans ::-moz-placeholder, .report-body .fields .field-utility .item.active.trans ::-moz-placeholder { /* Most modern browsers support this now. */
  color: rgba(0, 0, 0, 0.85);
}
.report-body .fields .field-enum .item.active.trans ::placeholder,
.report-body .fields .field-bool .item.active.trans ::placeholder,
.report-body .fields .field-option .item.active.trans ::placeholder,
.report-body .fields .field-options .item.active.trans ::placeholder,
.report-body .fields .field-utility .item.active.trans ::placeholder { /* Most modern browsers support this now. */
  color: rgba(0, 0, 0, 0.85);
}
.report-body .fields .field-enum .item > .label,
.report-body .fields .field-bool .item > .label,
.report-body .fields .field-option .item > .label,
.report-body .fields .field-options .item > .label,
.report-body .fields .field-utility .item > .label {
  padding: 15px 0;
  margin-bottom: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.report-body .fields .field-enum .item > .label > *,
.report-body .fields .field-bool .item > .label > *,
.report-body .fields .field-option .item > .label > *,
.report-body .fields .field-options .item > .label > *,
.report-body .fields .field-utility .item > .label > * {
  vertical-align: middle;
}
.report-body .fields .field-enum .item > .label > .icon,
.report-body .fields .field-bool .item > .label > .icon,
.report-body .fields .field-option .item > .label > .icon,
.report-body .fields .field-options .item > .label > .icon,
.report-body .fields .field-utility .item > .label > .icon {
  display: none;
  font-size: 14px;
  margin-right: 5px;
}
.report-body .fields .field-enum .item > .label > .ib + .ib,
.report-body .fields .field-bool .item > .label > .ib + .ib,
.report-body .fields .field-option .item > .label > .ib + .ib,
.report-body .fields .field-options .item > .label > .ib + .ib,
.report-body .fields .field-utility .item > .label > .ib + .ib {
  width: calc(100% - 40px);
}
.report-body .fields .field-enum .item .placeholders > .inner,
.report-body .fields .field-bool .item .placeholders > .inner,
.report-body .fields .field-option .item .placeholders > .inner,
.report-body .fields .field-options .item .placeholders > .inner,
.report-body .fields .field-utility .item .placeholders > .inner {
  padding: 0;
  border-top: 1px solid rgba(197, 197, 197, 0.4);
}
.report-body .fields .field-enum .item .placeholders > .inner .input,
.report-body .fields .field-bool .item .placeholders > .inner .input,
.report-body .fields .field-option .item .placeholders > .inner .input,
.report-body .fields .field-options .item .placeholders > .inner .input,
.report-body .fields .field-utility .item .placeholders > .inner .input {
  background: transparent;
  color: #FFF;
  padding: 0;
  border-bottom: 1px solid rgba(197, 197, 197, 0.5);
}
.report-body .fields .field-enum .item .placeholders > .inner .input:focus,
.report-body .fields .field-bool .item .placeholders > .inner .input:focus,
.report-body .fields .field-option .item .placeholders > .inner .input:focus,
.report-body .fields .field-options .item .placeholders > .inner .input:focus,
.report-body .fields .field-utility .item .placeholders > .inner .input:focus {
  border-bottom-color: #FFF;
}
.report-body .fields .field-enum .item .placeholders > .inner .prefix,
.report-body .fields .field-bool .item .placeholders > .inner .prefix,
.report-body .fields .field-option .item .placeholders > .inner .prefix,
.report-body .fields .field-options .item .placeholders > .inner .prefix,
.report-body .fields .field-utility .item .placeholders > .inner .prefix {
  margin-right: 5px;
}
.report-body .fields .field-enum .item .placeholders > .inner .prefix,
.report-body .fields .field-enum .item .placeholders > .inner .suffix,
.report-body .fields .field-bool .item .placeholders > .inner .prefix,
.report-body .fields .field-bool .item .placeholders > .inner .suffix,
.report-body .fields .field-option .item .placeholders > .inner .prefix,
.report-body .fields .field-option .item .placeholders > .inner .suffix,
.report-body .fields .field-options .item .placeholders > .inner .prefix,
.report-body .fields .field-options .item .placeholders > .inner .suffix,
.report-body .fields .field-utility .item .placeholders > .inner .prefix,
.report-body .fields .field-utility .item .placeholders > .inner .suffix {
  font-weight: 700;
  padding-left: 0;
  line-height: 60px;
}
.report-body .fields .field-enum .item .placeholders > .inner .suffix,
.report-body .fields .field-bool .item .placeholders > .inner .suffix,
.report-body .fields .field-option .item .placeholders > .inner .suffix,
.report-body .fields .field-options .item .placeholders > .inner .suffix,
.report-body .fields .field-utility .item .placeholders > .inner .suffix {
  text-align: right;
  padding-right: 0;
  padding-left: 10px;
}
.report-body .fields .field-bool .item .placeholders .form-item.inline label,
.report-body .fields .field-option .item .placeholders .form-item.inline label,
.report-body .fields .field-options .item .placeholders .form-item.inline label {
  opacity: 0.5;
  margin-top: 14px;
}
.report-body .fields .field-bool .item .placeholders .form-item.inline.focused label,
.report-body .fields .field-option .item .placeholders .form-item.inline.focused label,
.report-body .fields .field-options .item .placeholders .form-item.inline.focused label {
  opacity: 0.75;
  margin-top: 5px;
  margin-bottom: 0;
}
.report-body .fields .field-bool .item,
.report-body .fields .field-option .item {
  color: #8D9095;
}
.report-body .fields .field-bool .item .placeholders label,
.report-body .fields .field-option .item .placeholders label {
  color: #fff;
}
.report-body .fields .field-bool .item .placeholders .form-item.inline.focused textarea,
.report-body .fields .field-option .item .placeholders .form-item.inline.focused textarea {
  color: #fff;
}
.report-body .fields .field-options .item > .label > * {
  vertical-align: top;
}
.report-body .fields .field-options .item.active {
  background: transparent;
  color: #032863;
  border-bottom-color: #E3E3E3;
}
.report-body .fields .field-options .item.active ::-webutility-input-placeholder { /* WebUtility, Blink, Edge */
  color: #7D7D7D;
}
.report-body .fields .field-options .item.active ::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #7D7D7D;
  opacity: 1;
}
.report-body .fields .field-options .item.active ::placeholder { /* Most modern browsers support this now. */
  color: #7D7D7D;
}
.report-body .fields .field-options .item.active .placeholders > .inner {
  border-top: 1px solid #E3E3E3;
}
.report-body .fields .field-options .item.active .placeholders > .inner .input {
  color: #032863;
  border-bottom-color: rgba(197, 197, 197, 0.5);
}
.report-body .fields .field-options .item.active .placeholders > .inner .input:focus {
  border-bottom-color: #032863;
}
.report-body .fields .field-utility .item > .label > svg {
  margin-top: 4px;
  vertical-align: top;
}
.report-body .fields .field-utility .item > .label > div .chips {
  margin-right: 10px;
}
.report-body .fields .field-utility .item > .label > div .chips:nth-child(n+2) {
  margin-left: 0;
}
.report-body .fields .collapsible .head {
  position: absolute;
  top: 0;
  padding: 0 20px;
  line-height: 62px;
  box-sizing: border-box;
  width: 100%;
  cursor: pointer;
}
.report-body .fields .collapsible .head > .title {
  float: left;
}
.report-body .fields .collapsible .head .toggle-icon {
  font-size: 20px;
}
.report-body .fields .collapsible .item {
  line-height: 50px;
  padding: 0 10px;
  font-size: 14px;
  border-bottom: 1px solid #E3E3E3;
  cursor: pointer;
}
.report-body .fields .collapsible .item .icon {
  opacity: 0;
  margin-right: 5px;
}
.report-body .fields .collapsible .item:last-child {
  border-bottom: 1px solid #E3E3E3;
}
.report-body .fields .collapsible .item.active {
  background: #032863;
  color: #fff;
  font-weight: bold;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.report-body .fields .collapsible .item.active .placeholders > .inner {
  border-color: rgba(255, 255, 255, 0.239);
}
.report-body .fields .collapsible .item.active .icon {
  font-size: 16px;
  opacity: 1;
}
.report-body .fields .collapsible .item.active .form-item .wrapp label,
.report-body .fields .collapsible .item.active .form-item .wrapp input {
  color: #fff;
}
.report-body .fields .collapsible .item .form-item .wrapp label {
  line-height: 20px;
}
.report-body .fields .field-date .input:focus,
.report-body .fields .field-month .input:focus,
.report-body .fields .field-str .input:focus {
  background: #f9fafd;
}
.report-body .fields .field-date .prefix,
.report-body .fields .field-date .suffix,
.report-body .fields .field-month .prefix,
.report-body .fields .field-month .suffix,
.report-body .fields .field-str .prefix,
.report-body .fields .field-str .suffix {
  background: #EDF0F2;
  color: #585D64;
  text-align: center;
}
.report-body .fields .field-date.disabled .item .input,
.report-body .fields .field-month.disabled .item .input,
.report-body .fields .field-str.disabled .item .input {
  padding-top: 15px;
  padding-bottom: 15px;
}
.report-body .fields .field-date.allow_media .placeholders > .inner .prefix,
.report-body .fields .field-date.allow_media .placeholders > .inner .suffix,
.report-body .fields .field-month.allow_media .placeholders > .inner .prefix,
.report-body .fields .field-month.allow_media .placeholders > .inner .suffix,
.report-body .fields .field-str.allow_media .placeholders > .inner .prefix,
.report-body .fields .field-str.allow_media .placeholders > .inner .suffix {
  background: rgba(0, 0, 0, 0.02);
  padding: 0 20px;
  font-weight: bold;
  line-height: 60px;
}
.report-body .fields .field-month .mx-datepicker,
.report-body .fields .field-date .mx-datepicker {
  padding: 0 20px 20px;
  box-sizing: border-box;
  font-family: inherit;
}
.report-body .fields .field-month .mx-datepicker .mx-input-append,
.report-body .fields .field-date .mx-datepicker .mx-input-append {
  padding: 2px;
}
.report-body .fields .field-text textarea {
  height: 80px;
  padding: 15px 0 30px;
  font-size: 14px;
}
.report-body .fields .field-text.disabled .item > .init {
  padding: 15px 0 30px;
}
.report-body .fields .field > .bottom {
  background: #EDF0F2;
  min-height: 50px;
  line-height: 46px;
  padding: 0 10px 0 20px;
}
.report-body .fields .field > .bottom .label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.report-body .fields .field > .bottom .fl {
  color: #0E100F;
  line-height: 48px;
}
.report-body .fields .field > .bottom .fr {
  color: #4A4E54;
}
.report-body .fields .field > .bottom .fr .action {
  display: inline-block;
  vertical-align: middle;
}
.report-body .fields .field > .bottom .fr .action.icon {
  min-width: 40px;
  text-align: center;
  cursor: pointer;
}
.report-body .fields .field > .bottom .fr .action svg {
  font-size: 18px;
  vertical-align: middle;
}
.report-body .fields .field > .bottom .fr .action.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.report-body .fields .field > .bottom .fr .img-box {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  line-height: 26px;
  border-radius: 2px;
  text-align: center;
  overflow: hidden;
}
.report-body .fields .field > .bottom .fr .img-box svg {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: auto;
  margin: 3px auto;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.report-body .fields .field > .bottom .fr .img-box:before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.report-body .fields .field > .bottom .fr .img-box .num {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 10;
}
.report-body .placeholders > .inner {
  display: flex;
  min-height: 60px;
}
.report-body .placeholders > .inner .form-item.inline:nth-child(n+2) {
  margin-top: 0;
}
.report-body .placeholders > .inner .form-item.inline,
.report-body .placeholders > .inner .form-item.inline > .inner,
.report-body .placeholders > .inner .form-item.inline > .inner > .wrapp {
  width: 100%;
}
.report-body .placeholders > .inner .form-item.inline > .inner,
.report-body .placeholders > .inner .form-item.inline > .inner > .wrapp {
  height: 100%;
}
.report-body .placeholders > .inner .form-item.inline .placeholders > .inner .prefix,
.report-body .placeholders > .inner .form-item.inline .placeholders > .inner .suffix {
  background: rgba(0, 0, 0, 0.02);
  padding: 0 20px;
  font-size: 12px;
  font-weight: bold;
  line-height: 60px;
}
.report-body .placeholders > .inner .form-item.inline.focused label {
  opacity: 0.75;
  margin-top: 5px;
  margin-bottom: 0;
}
.report-body .placeholders > .inner .form-item.inline label {
  margin: 20px 20px 0;
}
.report-body .placeholders > .inner .form-item.inline input {
  height: 100%;
  border-color: transparent;
  padding: 0 20px;
  line-height: 60px;
}
.report-body .placeholders > .inner .form-item.inline input:focus {
  background: transparent;
}
.report-body .placeholders > .inner .input {
  flex: 1;
  font-size: 14px;
  padding: 0 20px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.report-body .placeholders > .inner .prefix,
.report-body .placeholders > .inner .suffix {
  min-width: 30px;
  line-height: 60px;
  padding: 0 10px;
}
.report-body .checkbox {
  margin-right: 10px;
}
.report-body .checkbox input:checked ~ .icon {
  background-color: #032863;
  border-color: #032863;
}
.report-body .checkbox .icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 2px;
}
.report-body .checkbox + span.label {
  margin-left: 10px;
}
.report-body .summation .item {
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 5px 20px;
  padding: 10px 15px;
  border-radius: 2px;
}
.report-body .summation .item .label {
  font-size: 12px;
}
.report-body .summation .item .value {
  font-size: 14px;
}
.report-body .summation .placeholder {
  flex: 1;
}

.report-sidebar > .wrapp {
  padding: 100px 15px 0;
}
.report-sidebar > .wrapp .collapsible > .head {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: -10px;
  padding-top: 10px;
}
.report-sidebar > .wrapp .collapsible .head {
  border-bottom: 0;
  padding-bottom: 0;
}
.report-sidebar > .wrapp .collapsible .body {
  font-size: 14px;
  padding: 20px 0 0 30px;
}
.report-sidebar > .wrapp .collapsible .body .item {
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}
.report-sidebar > .wrapp .collapsible .body .item .num {
  color: #1463E0;
  font-weight: 600;
}
.report-sidebar > .wrapp .collapsible .body .item.cat > .clearfix:hover, .report-sidebar > .wrapp .collapsible .body .item.sub > .clearfix:hover {
  color: #1463E0;
}
.report-sidebar > .wrapp .collapsible .body .item.cat.active > .clearfix, .report-sidebar > .wrapp .collapsible .body .item.sub.active > .clearfix {
  color: #1463E0;
  font-weight: 600;
}

.report-sign {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: -9999;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.report-sign.show {
  display: flex;
  z-index: 9999;
}
.report-sign > .wrapper {
  position: relative;
  width: 460px;
  max-width: 90vw;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 60px 0;
}
.report-sign > .wrapper .bankid {
  text-align: center;
}
.report-sign > .wrapper .title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.report-sign > .wrapper .text {
  margin-top: 30px;
  color: #4A544F;
}
.report-sign > .wrapper .btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  line-height: 20px;
  border-radius: 4px;
  padding: 12px 60px;
  text-decoration: none;
}
.report-sign > .wrapper .btn.inline {
  display: inline-block;
}
.report-sign > .wrapper .btn.mt-2 {
  margin-top: 30px;
}
.report-sign > .wrapper > .logo.squared {
  width: 74px;
  height: 68px;
  line-height: 46px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #E0E4E9;
  margin: 0 auto 30px;
}
.report-sign > .wrapper > .logo.squared.icon-lg {
  font-size: 30px;
  line-height: 68px;
}
.report-sign > .wrapper.success .title {
  color: #1463E0;
}
.report-sign > .wrapper.success > .logo.squared {
  color: #1463E0;
  font-size: 32px;
  line-height: 68px;
}

@media all and (min-width: 965px) {
  body.sidebar-open .project-report.report-content {
    padding-right: 320px;
  }
  .project-report.report-content .report-sidebar {
    width: 380px;
  }
}
@media all and (min-width: 760px) {
  body.sidebar-open .project-report.report-content {
    padding-right: 320px;
  }
  .project-report.report-content .report-sidebar {
    right: 0;
    left: auto;
    width: 320px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  }
  .project-report.report-content .report-sidebar .backdrop {
    display: none;
  }
}
@media all and (min-width: 965px) {
  .project-report.report-content .report-sidebar {
    width: 380px;
  }
  body.sidebar-open .project-report.report-content {
    padding-right: 380px;
  }
}
@media all and (min-width: 965px) and (max-width: 1240px) {
  body.sidebar-open .project-report.report-content .top, body.sidebar-open .project-report.report-content .report-body {
    padding-left: 30px;
  }
}
@media all and (max-width: 965px) {
  .project-report-show > .wrap {
    grid-template-columns: 1fr;
  }
  .project-report-show > .wrap > .left {
    margin-right: 0;
  }
  .project-report-show > .wrap > .right {
    max-width: 100%;
    margin-bottom: 60px;
  }
  .project-report-show > .wrap > .right > .divider.mobile {
    height: 1px;
    width: 100%;
    background: #E3E3E3;
    margin: 20px 0 30px;
  }
  .project-report-show .top,
  .project-report.report-content .top {
    text-align: center;
  }
  .project-report-show .top .inner,
  .project-report.report-content .top .inner {
    max-width: 100%;
  }
  .project-report-show .top .inner > .title,
  .project-report.report-content .top .inner > .title {
    font-size: 20px;
    line-height: 26px;
  }
  .project-report-show .top .inner > .description,
  .project-report.report-content .top .inner > .description {
    font-size: 14px;
    line-height: 20px;
  }
  .project-report-show .top .inner > .status,
  .project-report.report-content .top .inner > .status {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .report-body {
    margin-left: 30px;
    margin-right: 30px;
  }
  .report-body .categories .category > .head .num,
  .report-body .categories .category > .head .title {
    font-size: 20px;
    font-weight: 600;
    color: #1463E0;
  }
  .report-body .categories .category.sub > .head .title {
    font-size: 16px;
  }
}
@media all and (max-width: 598px) {
  .project-report.report-content .top .btn-primary,
  .project-report.report-content .top .btn-secondary {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    width: 100vw;
  }
  .project-report.report-info .boxes {
    margin-top: 30px;
  }
  .project-report.report-info .boxes .info-card {
    width: 100%;
  }
}
@media all and (max-width: 440px) {
  .report-body {
    margin-left: 15px;
    margin-right: 15px;
  }
  .report-body .categories .category .fields .field-option .item > .placeholders > .inner,
  .report-body .categories .category .fields .field-options .item > .placeholders > .inner {
    flex-direction: column;
  }
  .report-body .categories .category .fields .field-option .item > .placeholders > .inner .input,
  .report-body .categories .category .fields .field-options .item > .placeholders > .inner .input {
    padding: 5px 0 10px;
  }
  .report-body .categories .category .fields .field-option .item > .placeholders > .inner > .suffix,
  .report-body .categories .category .fields .field-options .item > .placeholders > .inner > .suffix {
    text-align: left;
    margin-top: 5px;
    padding-left: 0;
  }
}
.app.stripped {
  background: #E5E9EC;
}
.app.stripped.custom-top {
  height: 100%;
}
.app.stripped.custom-top #content {
  padding-top: 0;
}
.app.stripped .main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.app.stripped .main-content .fixed-bottom {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 30px 0 60px;
}
.app.stripped .custom-header {
  background: transparent;
  position: relative;
  box-shadow: none;
  height: 150px;
  line-height: 150px;
  text-align: left;
}
.app.stripped .authbox {
  background: #fff;
  position: relative;
  width: 460px;
  max-width: 90vw;
  border-radius: 4px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 60px 45px;
}
.app.stripped .authbox.sharp {
  border-radius: 0;
}
.app.stripped .authbox.sharp .btn, .app.stripped .authbox.sharp input {
  border-radius: 0 !important;
}
.app.stripped .authbox.sharp .disabled {
  opacity: 0.75;
}
.app.stripped .authbox .msgbox {
  background: #1463E0;
  color: #fff;
  padding: 15px;
  font-size: 14px;
}
.app.stripped .authbox .qrcode {
  text-align: center;
}
.app.stripped .authbox .instructions,
.app.stripped .authbox .message {
  text-align: center;
  color: #4A4E54;
}
.app.stripped .authbox .title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.app.stripped .authbox .text {
  margin-top: 30px;
  color: #4A4E54;
}
.app.stripped .authbox .btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  line-height: 20px;
  border-radius: 2px;
  padding: 14px 60px;
  text-decoration: none;
}
.app.stripped .authbox .btn.inline {
  display: inline-block;
}
.app.stripped .authbox .btn.mt-2 {
  margin-top: 30px;
}
.app.stripped .authbox .company,
.app.stripped .authbox .contact {
  width: 100%;
  text-align: center;
  padding: 22px 0;
  font-size: 14px;
  color: #5F666D;
}
.app.stripped .authbox .company {
  cursor: pointer;
  border: 1px solid #E0E4E9;
  border-radius: 4px;
  margin-bottom: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.app.stripped .authbox .company:last-child {
  margin-bottom: 0;
}
.app.stripped .authbox .company .img {
  max-height: 50px;
}
.app.stripped .authbox .company .text {
  line-height: 50px;
  font-weight: 600;
  font-size: 20px;
  color: #0E0F10;
}
.app.stripped .authbox .contact-wrapp {
  border: 1px solid #E0E4E9;
  border-radius: 4px;
}
.app.stripped .authbox .contact {
  display: grid;
  grid-template-columns: 120px 1fr;
  text-align: left;
  border-bottom: 1px solid #E0E4E9;
}
.app.stripped .authbox .contact:last-child {
  border-bottom: none;
}
.app.stripped .authbox .contact .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app.stripped .authbox .contact .info {
  margin-left: 20px;
  word-break: break-word;
}
.app.stripped .authbox .contact .info a {
  display: block;
  text-decoration: underline;
}
.app.stripped .authbox input[type=text],
.app.stripped .authbox input[type=password],
.app.stripped .authbox input[type=email] {
  border-radius: 4px;
  border-color: #C5C5C5;
}
.app.stripped .authbox .form-item .icon.squared {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 26px;
  height: 24px;
}
.app.stripped .authbox > .logo.squared {
  width: 74px;
  height: 68px;
  line-height: 46px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #E0E4E9;
  margin: 0 auto 30px;
}
.app.stripped .authbox > .logo.squared.icon-lg {
  font-size: 30px;
  line-height: 68px;
}

@media all and (max-width: 965px) {
  .app.stripped .custom-header {
    height: 100px;
    line-height: 80px;
  }
  .app.stripped .custom-header > div {
    padding-left: 20px;
    padding-right: 20px;
  }
  .app.stripped .custom-header .nav a {
    font-size: 14px;
  }
  .app.stripped .authbox {
    margin-top: 0;
    padding: 40px 22px;
  }
  .app.stripped .authbox .title {
    font-size: 20px;
    line-height: 26px;
  }
}
html.www .app.start #content,
html.admin .app.start #content {
  margin-top: 0;
}
html.www .start-page-show:after,
html.admin .start-page-show:after {
  content: "";
  display: block;
  clear: both;
}
html.www .start-page-show .text.init a,
html.admin .start-page-show .text.init a {
  cursor: pointer;
  text-decoration: underline;
}
html.www .start-page-show > .top,
html.admin .start-page-show > .top {
  background: #e0e0e0;
  position: relative;
  width: 100%;
  height: 780px;
  max-height: 95vh;
}
html.www .start-page-show > .top .media,
html.www .start-page-show > .top .media .m-show,
html.admin .start-page-show > .top .media,
html.admin .start-page-show > .top .media .m-show {
  width: 100%;
  height: 100%;
}
html.www .start-page-show > .top .media,
html.www .start-page-show > .top .media .m-image-bg,
html.admin .start-page-show > .top .media,
html.admin .start-page-show > .top .media .m-image-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}
html.www .start-page-show > .top .media.editing.no-media .m-placeholder,
html.admin .start-page-show > .top .media.editing.no-media .m-placeholder {
  padding-bottom: 0;
  min-height: 100%;
  background: #e0e0e0;
}
html.www .start-page-show > .top .media.editing.no-media .m-open,
html.admin .start-page-show > .top .media.editing.no-media .m-open {
  top: 0;
  right: 0;
  left: auto;
  margin: 25px 30px;
}
html.www .start-page-show > .top .media.editing.no-media .m-open .icon,
html.admin .start-page-show > .top .media.editing.no-media .m-open .icon {
  font-size: 20px;
  width: 50px;
  line-height: 40px;
  border-radius: 4px;
}
html.www .start-page-show > .top .media.editing.no-media .m-open .decoration,
html.admin .start-page-show > .top .media.editing.no-media .m-open .decoration {
  display: none;
}
html.www .start-page-show > .top .content,
html.admin .start-page-show > .top .content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #0E0F10;
  max-width: 1220px;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 0 auto;
  z-index: 1;
}
html.www .start-page-show > .top .content > *,
html.admin .start-page-show > .top .content > * {
  max-width: 680px;
}
html.www .start-page-show > .top .content .edit-bar .settings,
html.www .start-page-show > .top .content .edit-bar .actions,
html.admin .start-page-show > .top .content .edit-bar .settings,
html.admin .start-page-show > .top .content .edit-bar .actions {
  background: #EDF0F2;
}
html.www .start-page-show > .top .content .heading,
html.www .start-page-show > .top .content .heading > *,
html.admin .start-page-show > .top .content .heading,
html.admin .start-page-show > .top .content .heading > * {
  font-size: 48px;
  line-height: 52px;
  font-weight: 600;
  color: #FFF;
}
html.www .start-page-show > .top .content .text,
html.www .start-page-show > .top .content .text > *,
html.admin .start-page-show > .top .content .text,
html.admin .start-page-show > .top .content .text > * {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
  font-weight: 300;
  color: #FFF;
}
html.www .start-page-show > .top .content .btn-primary,
html.admin .start-page-show > .top .content .btn-primary {
  background: #1463E0;
  border-color: #1463E0;
  line-height: 46px;
}
html.www .start-page-show > .top .content .text,
html.www .start-page-show > .top .content .btn-wrap,
html.admin .start-page-show > .top .content .text,
html.admin .start-page-show > .top .content .btn-wrap {
  margin-left: 60px;
}
html.www .start-page-show > .top .content .btn-wrap,
html.admin .start-page-show > .top .content .btn-wrap {
  margin-top: 35px;
}
html.www .start-page-show > .mid,
html.admin .start-page-show > .mid {
  background: #032863;
  width: 100%;
  padding: 100px 0 120px;
  box-sizing: border-box;
}
html.www .start-page-show > .mid .inner,
html.admin .start-page-show > .mid .inner {
  padding: 0 30px;
  max-width: 880px;
  margin: 0 auto;
}
html.www .start-page-show > .mid .inner .content.top .title,
html.www .start-page-show > .mid .inner .content.top .title > *,
html.admin .start-page-show > .mid .inner .content.top .title,
html.admin .start-page-show > .mid .inner .content.top .title > * {
  max-width: 590px;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #FFF;
}
html.www .start-page-show > .mid .inner .content.top .text,
html.www .start-page-show > .mid .inner .content.top .text > *,
html.admin .start-page-show > .mid .inner .content.top .text,
html.admin .start-page-show > .mid .inner .content.top .text > * {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin-top: 40px;
  color: #FFF;
}
html.www .start-page-show > .mid .inner .content.bottom,
html.admin .start-page-show > .mid .inner .content.bottom {
  margin-top: 45px;
}
html.www .start-page-show > .mid .inner .content.bottom:after,
html.admin .start-page-show > .mid .inner .content.bottom:after {
  content: "";
  display: block;
  clear: both;
}
html.www .start-page-show > .mid .inner .content.bottom > .media,
html.admin .start-page-show > .mid .inner .content.bottom > .media {
  float: left;
  width: 100%;
  max-width: 290px;
  height: 170px;
}
html.www .start-page-show > .mid .inner .content.bottom > .media .m-show,
html.www .start-page-show > .mid .inner .content.bottom > .media .m-show .m-image-bg,
html.admin .start-page-show > .mid .inner .content.bottom > .media .m-show,
html.admin .start-page-show > .mid .inner .content.bottom > .media .m-show .m-image-bg {
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}
html.www .start-page-show > .mid .inner .content.bottom .media .m-open,
html.admin .start-page-show > .mid .inner .content.bottom .media .m-open {
  margin: -25px 0 0 -25px;
}
html.www .start-page-show > .mid .inner .content.bottom .media .m-open .icon,
html.admin .start-page-show > .mid .inner .content.bottom .media .m-open .icon {
  font-size: 20px;
  width: 50px;
  line-height: 40px;
  border-radius: 4px;
}
html.www .start-page-show > .mid .inner .content.bottom .media .m-open .decoration,
html.admin .start-page-show > .mid .inner .content.bottom .media .m-open .decoration {
  display: none;
}
html.www .start-page-show > .mid .inner .content.bottom .media .m-placeholder,
html.admin .start-page-show > .mid .inner .content.bottom .media .m-placeholder {
  padding-bottom: 0;
  min-height: 100%;
}
html.www .start-page-show > .mid .inner .content.bottom .media .m-show,
html.admin .start-page-show > .mid .inner .content.bottom .media .m-show {
  position: absolute;
  bottom: 0;
}
html.www .start-page-show > .mid .inner .content.bottom > .text,
html.admin .start-page-show > .mid .inner .content.bottom > .text {
  float: right;
  width: 100%;
  max-width: 480px;
}
html.www .start-page-show > .mid .inner .content.bottom > .text,
html.www .start-page-show > .mid .inner .content.bottom > .text > *,
html.admin .start-page-show > .mid .inner .content.bottom > .text,
html.admin .start-page-show > .mid .inner .content.bottom > .text > * {
  font-weight: 300;
  font-size: 16px;
  margin-top: -5px;
  line-height: 26px;
  color: #fff;
}
html.www .start-page-show > .top .tiptap .ProseMirror .is-empty:first-child::before,
html.www .start-page-show > .top .tiptap .ProseMirror .is-empty:nth-child(2)::before,
html.www .start-page-show > .mid .tiptap .ProseMirror .is-empty:first-child::before,
html.www .start-page-show > .mid .tiptap .ProseMirror .is-empty:nth-child(2)::before,
html.admin .start-page-show > .top .tiptap .ProseMirror .is-empty:first-child::before,
html.admin .start-page-show > .top .tiptap .ProseMirror .is-empty:nth-child(2)::before,
html.admin .start-page-show > .mid .tiptap .ProseMirror .is-empty:first-child::before,
html.admin .start-page-show > .mid .tiptap .ProseMirror .is-empty:nth-child(2)::before {
  font-style: normal;
  color: #FFF;
  opacity: 0.5;
}
html.www .start-page-show > .bottom > .inner,
html.admin .start-page-show > .bottom > .inner {
  margin: 0 auto;
  max-width: 930px;
  padding: 90px 30px 105px;
}
html.www .start-page-show > .bottom > .inner .bottom-start,
html.admin .start-page-show > .bottom > .inner .bottom-start {
  display: flex;
  margin-bottom: 90px;
}
html.www .start-page-show > .bottom > .inner .bottom-start .media,
html.admin .start-page-show > .bottom > .inner .bottom-start .media {
  position: relative;
  height: 80px;
  min-height: 15vh;
}
html.www .start-page-show > .bottom > .inner .bottom-start .media .m-open,
html.admin .start-page-show > .bottom > .inner .bottom-start .media .m-open {
  margin: -25px 0 0 -25px;
}
html.www .start-page-show > .bottom > .inner .bottom-start .media .m-open .icon,
html.admin .start-page-show > .bottom > .inner .bottom-start .media .m-open .icon {
  font-size: 20px;
  width: 50px;
  line-height: 40px;
  border-radius: 4px;
}
html.www .start-page-show > .bottom > .inner .bottom-start .media .m-open .decoration,
html.admin .start-page-show > .bottom > .inner .bottom-start .media .m-open .decoration {
  display: none;
}
html.www .start-page-show > .bottom > .inner .bottom-start .media .m-placeholder,
html.admin .start-page-show > .bottom > .inner .bottom-start .media .m-placeholder {
  padding-bottom: 0;
  min-height: 100%;
}
html.www .start-page-show > .bottom > .inner .bottom-start .media .m-show,
html.admin .start-page-show > .bottom > .inner .bottom-start .media .m-show {
  position: absolute;
  bottom: 0;
}
html.www .start-page-show > .bottom > .inner .bottom-start .card,
html.admin .start-page-show > .bottom > .inner .bottom-start .card {
  padding: 45px 50px;
  border: 1px solid #E0E4E9;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #5F666D;
  width: 50%;
  box-sizing: border-box;
}
html.www .start-page-show > .bottom > .inner .bottom-start .card:nth-child(2n),
html.admin .start-page-show > .bottom > .inner .bottom-start .card:nth-child(2n) {
  margin-left: 60px;
}
html.www .start-page-show > .bottom > .inner .bottom-start .card a,
html.admin .start-page-show > .bottom > .inner .bottom-start .card a {
  font-weight: 400;
  color: #0E0F10;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
html.www .start-page-show > .bottom > .inner .bottom-start .card a:hover,
html.admin .start-page-show > .bottom > .inner .bottom-start .card a:hover {
  opacity: 0.5;
}
html.www .start-page-show > .bottom > .inner .bottom-end,
html.admin .start-page-show > .bottom > .inner .bottom-end {
  text-align: center;
}
html.www .start-page-show > .bottom > .inner .bottom-end .btn-wrap,
html.admin .start-page-show > .bottom > .inner .bottom-end .btn-wrap {
  display: inline-block;
  margin-top: 30px;
}
html.www .start-page-show > .bottom > .inner .bottom-end > .text,
html.www .start-page-show > .bottom > .inner .bottom-end > .text > *,
html.admin .start-page-show > .bottom > .inner .bottom-end > .text,
html.admin .start-page-show > .bottom > .inner .bottom-end > .text > * {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #0E0F10;
}
html.www .start-page-show > .bottom > .inner .bottom-end > .text .tiptap .ProseMirror .is-empty:first-child::before,
html.www .start-page-show > .bottom > .inner .bottom-end > .text .tiptap .ProseMirror .is-empty:nth-child(2)::before,
html.www .start-page-show > .bottom > .inner .bottom-end > .text > * .tiptap .ProseMirror .is-empty:first-child::before,
html.www .start-page-show > .bottom > .inner .bottom-end > .text > * .tiptap .ProseMirror .is-empty:nth-child(2)::before,
html.admin .start-page-show > .bottom > .inner .bottom-end > .text .tiptap .ProseMirror .is-empty:first-child::before,
html.admin .start-page-show > .bottom > .inner .bottom-end > .text .tiptap .ProseMirror .is-empty:nth-child(2)::before,
html.admin .start-page-show > .bottom > .inner .bottom-end > .text > * .tiptap .ProseMirror .is-empty:first-child::before,
html.admin .start-page-show > .bottom > .inner .bottom-end > .text > * .tiptap .ProseMirror .is-empty:nth-child(2)::before {
  float: none;
  font-style: normal;
}
@media all and (max-width: 965px) {
  html.www .start-page-show > .top,
  html.admin .start-page-show > .top {
    height: 500px;
  }
  html.www .start-page-show > .mid,
  html.admin .start-page-show > .mid {
    padding: 50px 0 60px;
  }
  html.www .start-page-show > .mid .inner .content.top .title,
  html.www .start-page-show > .mid .inner .content.top .title > *,
  html.admin .start-page-show > .mid .inner .content.top .title,
  html.admin .start-page-show > .mid .inner .content.top .title > * {
    font-size: 20px;
    line-height: 30px;
  }
  html.www .start-page-show > .mid .inner .content.top .text,
  html.www .start-page-show > .mid .inner .content.top .text > *,
  html.admin .start-page-show > .mid .inner .content.top .text,
  html.admin .start-page-show > .mid .inner .content.top .text > * {
    font-size: 16px;
    line-height: 22px;
    margin-top: 30px;
  }
  html.www .start-page-show > .mid .inner .content.bottom,
  html.admin .start-page-show > .mid .inner .content.bottom {
    margin-top: 45px;
  }
  html.www .start-page-show > .mid .inner .content.bottom:after,
  html.admin .start-page-show > .mid .inner .content.bottom:after {
    content: "";
    display: block;
    clear: both;
  }
  html.www .start-page-show > .mid .inner .content.bottom > .text,
  html.admin .start-page-show > .mid .inner .content.bottom > .text {
    margin-top: 30px;
  }
  html.www .start-page-show > .mid .inner .content.bottom > .media,
  html.www .start-page-show > .mid .inner .content.bottom > .text,
  html.admin .start-page-show > .mid .inner .content.bottom > .media,
  html.admin .start-page-show > .mid .inner .content.bottom > .text {
    float: none;
  }
  html.www .start-page-show > .top .content,
  html.admin .start-page-show > .top .content {
    padding: 0 30px;
  }
  html.www .start-page-show > .top .content .heading,
  html.www .start-page-show > .top .content .heading > *,
  html.admin .start-page-show > .top .content .heading,
  html.admin .start-page-show > .top .content .heading > * {
    font-size: 30px;
    line-height: 32px;
  }
  html.www .start-page-show > .top .content .text,
  html.www .start-page-show > .top .content .text > *,
  html.admin .start-page-show > .top .content .text,
  html.admin .start-page-show > .top .content .text > * {
    font-size: 18px;
    line-height: 22px;
  }
  html.www .start-page-show > .top .content .text,
  html.www .start-page-show > .top .content .btn-wrap,
  html.admin .start-page-show > .top .content .text,
  html.admin .start-page-show > .top .content .btn-wrap {
    margin-left: 0;
  }
  html.www .start-page-show > .top .content .btn-primary,
  html.admin .start-page-show > .top .content .btn-primary {
    line-height: 42px;
  }
  html.www .start-page-show > .bottom > .inner,
  html.admin .start-page-show > .bottom > .inner {
    padding: 45px 25px;
  }
  html.www .start-page-show > .bottom > .inner .bottom-start,
  html.admin .start-page-show > .bottom > .inner .bottom-start {
    flex-direction: column;
    margin-bottom: 30px;
  }
  html.www .start-page-show > .bottom > .inner .bottom-start .card,
  html.admin .start-page-show > .bottom > .inner .bottom-start .card {
    width: 100%;
    padding: 30px 35px;
    margin-left: 0 !important;
    margin-bottom: 30px;
  }
  html.www .start-page-show > .bottom > .inner .bottom-end .btn-wrap,
  html.admin .start-page-show > .bottom > .inner .bottom-end .btn-wrap {
    margin-top: 20px;
  }
  html.www .start-page-show > .bottom > .inner .bottom-end .btn-wrap .btn.large,
  html.admin .start-page-show > .bottom > .inner .bottom-end .btn-wrap .btn.large {
    min-width: 150px;
  }
  html.www .start-page-show > .bottom > .inner .bottom-end > .text,
  html.www .start-page-show > .bottom > .inner .bottom-end > .text > *,
  html.admin .start-page-show > .bottom > .inner .bottom-end > .text,
  html.admin .start-page-show > .bottom > .inner .bottom-end > .text > * {
    font-size: 16px;
    line-height: 26px;
  }
}

html.insider .report-edit > .left {
  width: calc(100% - 400px);
  padding: 0 75px;
  box-sizing: border-box;
}
html.insider .report-edit > .left > .top {
  color: #0E0F10;
  margin: 60px 0;
}
html.insider .report-edit > .left > .top .heading,
html.insider .report-edit > .left > .top .heading > * {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}
html.insider .report-edit > .left > .top .setting-box {
  background: #EDF0F2;
  font-size: 12px;
  width: 260px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 4px;
}
html.insider .report-edit > .left > .top .setting-box .label {
  color: #585D64;
  font-weight: 600;
}
html.insider .report-edit > .left > .top .setting-box .form-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #d7e2f0;
}
html.insider .report-edit > .left > .top .setting-box .form-item:last-child {
  padding-bottom: 0;
  border-bottom-width: 0;
}
html.insider .report-edit > .left > .top .setting-box .form-item .wrapp > * {
  width: 49%;
}
html.insider .report-edit > .left > .top .setting-box .form-item .wrapp > *.w-full {
  width: 100%;
}
html.insider .report-edit > .left > .top .setting-box .form-item .dropdown .toggle {
  padding: 0;
  background: transparent;
  border-color: transparent;
}
html.insider .report-edit > .left > .top .setting-box .form-item .mx-datepicker {
  width: 49% !important;
}
html.insider .report-edit > .left > .top .setting-box .form-item .mx-datepicker input {
  padding: 0;
  background: transparent;
  border-color: transparent;
  font-size: 12px;
  outline: none;
  box-shadow: none;
}
html.insider .report-edit > .left > .top .setting-box .form-item .mx-datepicker .mx-input-append {
  width: 16px;
  height: 100%;
  padding: 0;
}
html.insider .report-edit > .left > .top .setting-box .form-item .checkbox input:checked ~ .icon {
  background-color: #1463E0;
  border-color: #1463E0;
}
html.insider .report-edit > .left > .top .setting-box .form-item .checkbox .icon {
  font-size: 12px;
  border-radius: 4px;
}
html.insider .report-edit > .left > .top .setting-box .form-item .checkbox + span.label {
  margin-left: 10px;
}
html.insider .report-edit > .left > .top .setting-box .form-item-show-swedac-logo label {
  margin-bottom: 0;
}
html.insider .report-edit > .left > .top .setting-box .comment-field {
  display: block !important;
  width: 200% !important;
}
html.insider .report-edit > .left > .top .setting-box .comment-field .label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
html.insider .report-edit > .left > .top .setting-box .comment-field textarea {
  width: 100%;
  resize: vertical;
  height: 80px;
  max-height: 200px;
  line-height: 1.4;
  padding: 8px;
  border: none;
  background: transparent;
  font-weight: normal;
}
html.insider .report-edit > .left > .categories .category {
  margin-bottom: 60px;
}
html.insider .report-edit > .left > .categories .category.inactive {
  opacity: 0.5;
}
html.insider .report-edit > .left > .categories .category.focus {
  background: rgba(230, 230, 240, 0.25);
  box-shadow: 0 -5px 0 20px rgba(230, 230, 240, 0.25);
  animation: fade 0.3s 1 ease;
}
html.insider .report-edit > .left > .categories .category > .head {
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
html.insider .report-edit > .left > .categories .category > .head > .fl {
  width: 70%;
}
html.insider .report-edit > .left > .categories .category > .head .num {
  vertical-align: top;
}
html.insider .report-edit > .left > .categories .category > .head .title {
  font-size: 24px;
  font-weight: 600;
  color: #032863;
}
html.insider .report-edit > .left > .categories .category > .head .title > div {
  width: 70%;
}
html.insider .report-edit > .left > .categories .category > .head .text {
  font-size: 16px;
  color: #5F666D;
}
html.insider .report-edit > .left > .categories .category > .body .head > .fl:first-child {
  width: 60%;
}
html.insider .report-edit > .left > .categories .category > .body .head > .fl:nth-child(2) {
  width: 20%;
}
html.insider .report-edit > .left > .categories .category > .body .head > .fl:nth-child(2) label {
  margin: 0;
}
html.insider .report-edit > .left > .categories .category > .body .head > .fl input {
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
  padding: 0;
  background: transparent;
  border: none;
  width: 90%;
  box-shadow: none;
  outline: none;
}
html.insider .report-edit > .left > .categories .category > .body .head .fl > .title {
  color: #032863;
  font-size: 16px;
  font-weight: 600;
}
html.insider .report-edit > .left > .categories .category > .body .text {
  font-size: 14px;
  font-weight: 300;
}
html.insider .report-edit > .left > .categories .category > .body .field {
  margin-bottom: 30px;
  border-radius: 4px;
  border: 1px solid #E0E4E9;
  transition: 0.15s box-shadow ease-in;
}
html.insider .report-edit > .left > .categories .category > .body .field.inactive > .head > .fl,
html.insider .report-edit > .left > .categories .category > .body .field.inactive > .items-wrapp > * {
  opacity: 0.5;
}
html.insider .report-edit > .left > .categories .category > .body .field.required {
  background: #ffefef;
}
html.insider .report-edit > .left > .categories .category > .body .field.required .item:hover {
  background: rgba(214, 104, 104, 0.13);
}
html.insider .report-edit > .left > .categories .category > .body .field.required .item.focused {
  background: rgba(191, 91, 91, 0.13);
}
html.insider .report-edit > .left > .categories .category > .body .field.focused {
  box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.15);
}
html.insider .report-edit > .left > .categories .category > .body .field .item {
  transition: background-color 0.15s ease-in;
}
html.insider .report-edit > .left > .categories .category > .body .field .item:hover {
  background: rgba(104, 146, 214, 0.13);
}
html.insider .report-edit > .left > .categories .category > .body .field .item.focused {
  background: rgba(91, 129, 191, 0.13);
}
html.insider .report-edit > .left > .categories .category > .body .field > .head {
  margin-left: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #E0E4E9;
  padding: 15px 20px 15px 35px;
}
html.insider .report-edit > .left > .categories .category > .body .field > .head > .fr > .actions > .drop,
html.insider .report-edit > .left > .categories .category > .body .field > .head > .fr > .actions > .items {
  left: auto;
  right: 0;
}
html.insider .report-edit > .left > .categories .category > .body .option .dragsort-handle {
  position: absolute;
  top: 14px;
  left: 10px;
  right: auto;
  padding: 6px 8px;
  z-index: 10;
  display: none;
  animation: psFade 0.3s ease forwards;
}
html.insider .report-edit > .left > .categories .category > .body .option:hover .dragsort-handle {
  display: block;
}
html.insider .report-edit > .left > .categories .category .actions > .drop,
html.insider .report-edit > .left > .categories .category .actions > .items {
  left: auto;
  right: 0;
  font-size: 14px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc {
  grid-template-columns: 1fr 200px 400px 52px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc:last-child {
  border-bottom: 0;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc:hover .dragsort-handle {
  display: flex;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc:hover .actions {
  display: block;
  z-index: 30;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc .dragsort-handle {
  position: absolute;
  top: 0;
  left: -25px;
  width: 15px;
  padding: 0 10px 0 0;
  justify-content: space-around;
  align-items: center;
  display: none;
  animation: psFade 0.3s ease forwards;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc .dragsort-handle svg {
  vertical-align: top;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc .actions {
  padding: 0;
  border-left-color: transparent !important;
  display: none;
  animation: psFade 0.3s ease forwards;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc .actions .drop {
  padding-top: 0;
  margin-top: -10px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc .actions > .toggle {
  display: block;
  width: 40px;
  height: 70px;
  line-height: 70px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div {
  height: 70px;
  padding: 0 20px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.title {
  opacity: 0.75;
  padding: 0 35px;
  line-height: 70px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.title input {
  border: 0;
  padding: 0;
  height: 100%;
  line-height: inherit;
  font-weight: 400;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div:nth-child(n+2) {
  border-left: 1px solid #d5d6d8;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.bl-0 {
  border-left: none !important;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.actions-wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.actions-wrapp .clickable {
  opacity: 0.25;
  transition: opacity 0.15s ease;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.actions-wrapp .clickable:hover {
  opacity: 1;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.actions-wrapp .clickable.active {
  opacity: 1;
  color: #1463E0;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div.actions-wrapp .actions > .toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: -40px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div > .label {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 5px;
}
html.insider .report-edit > .left > .categories .category .field .items-wrapp .fc > div .dropdown .toggle {
  padding: 0;
  line-height: 26px;
}
html.insider .report-edit > .left > .categories .category.sub > .head .title {
  font-size: 16px;
}
html.insider .report-edit > .left > .categories .category.sub > .head .text {
  font-size: 14px;
}
html.insider .report-edit > .left > .categories .category.sub > .head textarea {
  width: 90%;
}
html.insider .report-edit .cat.disabled > .head > .top {
  opacity: 0.4;
  pointer-events: none;
}
html.insider .report-edit > .right {
  background: #EDF0F2;
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  direction: rtl;
  padding-bottom: 200px;
}
html.insider .report-edit > .right .cats-wrapper {
  padding: 123px 45px 0;
  direction: ltr;
}
html.insider .report-edit > .right .actions-wrapper {
  position: fixed;
  width: 100%;
  bottom: 0;
  max-width: 337px;
  background: #edf0f2;
  margin-left: -45px;
  padding: 20px 45px;
  box-shadow: 5px 0px 10px 0px #ccc;
}
html.insider .report-edit > .right .cat {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
html.insider .report-edit > .right .cat .toggle.clickable {
  width: 30px;
  margin-right: -15px;
  text-align: center;
  transform: none;
}
html.insider .report-edit > .right .cat .top {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 0 0 10px;
  width: calc(100% - 30px);
  cursor: pointer;
}
html.insider .report-edit > .right .cat .top > .title,
html.insider .report-edit > .right .cat .top > .num {
  color: #032863;
  font-size: 14px;
  font-weight: 700;
}
html.insider .report-edit > .right .cat .top > .title {
  flex: 1;
}
html.insider .report-edit > .right .cat .top > .title > * {
  vertical-align: middle;
}
html.insider .report-edit > .right .cat .top > .title span[title] {
  max-width: 200px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html.insider .report-edit > .right .cat .top.sub > .title, html.insider .report-edit > .right .cat .top.sub > .num {
  color: #4A4E54;
  font-size: 12px;
  font-weight: 600;
}
html.insider .report-edit > .right .cat .top:hover .dragsort-handle, html.insider .report-edit > .right .cat .top.sub:hover .dragsort-handle {
  display: block;
}
html.insider .report-edit > .right .head .title + .toggle {
  display: inline-block;
  color: #0E0F10;
  font-size: 14px;
  font-size: 20px;
  vertical-align: middle;
  margin-left: 10px;
}
html.insider .report-edit > .right .collapsible.expanded > .head > .toggle {
  transform: rotate(180deg);
}
html.insider .report-edit > .right .dragsort-handle {
  position: absolute;
  top: -14px;
  left: -30px;
  padding: 12px 10px;
  display: none;
  animation: psFade 0.3s ease forwards;
}
html.insider .report-edit > .right .disabled > .head > .top,
html.insider .report-edit > .right .disabled.field {
  opacity: 0.4;
  pointer-events: none;
}
html.insider .report-edit > .right .checkbox {
  margin-top: -2.5px;
  margin-bottom: 0;
  margin-right: 10px;
}
html.insider .report-edit > .right .checkbox input:checked ~ .icon {
  background-color: #1463E0;
  border-color: #1463E0;
}
html.insider .report-edit > .right .checkbox .icon {
  font-size: 10px;
  width: 16px;
  height: 16px;
  line-height: 14px;
  border-radius: 4px;
}
html.insider .report-edit > .right .checkbox + span.label {
  margin-left: 10px;
}

html.admin .start-page-show > .bottom > .inner .bottom-start .media {
  height: 120px;
  min-height: auto;
}
html.admin .info-split .report-list,
html.admin .info-split .stats,
html.admin .info-split .counts,
html.admin .info-split .project-reports {
  display: none;
}
html.admin .info-split.access .report-list, html.admin .info-split.stats .stats, html.admin .info-split.counts .counts, html.admin .info-split.project_reports .project-reports {
  display: block;
}
@media all and (max-width: 965px) {
  html.admin .info-split > .left,
  html.admin .info-split > .right,
  html.admin .info-split .report-list,
  html.admin .info-split .project-reports {
    display: none;
  }
  html.admin .info-split.info > .left, html.admin .info-split.access .right, html.admin .info-split.project_reports .right, html.admin .info-split.stats .right, html.admin .info-split.counts .right, html.admin .info-split.access .report-list, html.admin .info-split.project_reports .project-reports, html.admin .info-split.counts .counts {
    display: block;
  }
}
html.admin .company-show .table-wrap {
  overflow-x: auto;
}
html.admin .company-show .stats.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media all and (max-width: 965px) {
  html.admin .company-show .stats.two-col {
    grid-template-columns: 1fr;
  }
}
html.admin .company-show .counts table.table th:first-child,
html.admin .company-show .counts table.table td:first-child {
  text-align: left;
  white-space: normal;
}
html.admin .company-show .counts table.table th:last-child,
html.admin .company-show .counts table.table td:last-child {
  background: #f6f7f8;
  border-left: 1px solid #e3e5e8;
}
html.admin .company-show .counts table.table tfoot td {
  background: #f0f1f2;
  border-top: 2px solid #d8dbe0;
  font-weight: 600;
}
html.admin .company-show .counts table.table tbody tr:nth-child(odd) td:first-child {
  background: #fafafa;
}

html.www .status.ongoing {
  color: #585D64;
}
html.www .status.submitted {
  color: #1463E0;
}
html.www .status.signed {
  color: #032863;
}
html.www .status.canceled {
  color: #E08E14;
}
html.www .status.archived {
  color: #97989B;
}
html.www .status.archived .icon {
  font-size: 18px;
}
html.www .project-card {
  position: relative;
  background: #EDF0F2;
  border-radius: 4px;
  padding: 30px 30px 20px;
  margin-bottom: 30px;
}
html.www .project-card .card-header {
  margin-bottom: 20px;
}
html.www .project-card .status {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}
html.www .project-card .card-dates {
  font-size: 12px;
  color: #4A4E54;
  line-height: 16px;
  text-align: right;
}
html.www .project-card .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
html.www .project-card .description {
  font-size: 14px;
  color: #4A4E54;
  line-height: 24px;
}
html.www .project-card .btn.duplicate {
  position: relative;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  text-transform: uppercase;
  margin-top: 30px;
  z-index: 1;
}
html.www .project-card .footer {
  font-size: 12px;
  line-height: 16px;
  margin-top: 30px;
}
html.www .project-card .footer .id,
html.www .project-card .footer .name,
html.www .project-card .footer .stat {
  font-weight: 600;
}
html.www .project-card .footer .id {
  display: inline-block;
  margin-right: 5px;
}
html.www .project-card .footer .stat {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 10px;
  line-height: 26px;
  color: #4A4E54;
  border-radius: 4px;
  margin-left: 10px;
  z-index: 1;
}
html.www .project-card .footer .stat > * {
  display: inline-block;
  vertical-align: middle;
}
html.www .project-card .footer .stat .icon {
  font-size: 14px;
}
html.www .project-card .footer .stat .icon + span {
  margin-left: 5px;
}
html.www .project-list.index > .head {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 30px;
  width: 100%;
  min-width: 0;
}
html.www .project-list.index > .head .wrap {
  flex: 1 1 0 !important;
  min-width: 0;
  width: auto !important;
  max-width: 100%;
}
html.www .project-list.index > .head .wrap .filters {
  min-width: 0;
}
html.www .project-list.index > .head .wrap .filters .default > .inner {
  display: flex;
  flex-wrap: nowrap;
  min-width: 0;
}
html.www .project-list.index > .head .wrap .filters .default > .inner .dropdown {
  flex: 0 0 auto;
}
html.www .project-list.index > .head .wrap .filters .default > .inner .filters-text {
  flex: 1 1 0;
  min-width: 180px;
  width: auto;
}
html.www .project-list.index > .head .top-actions {
  display: flex !important;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  gap: 15px;
}
html.www .project-list.index > .head .top-actions > * {
  float: none !important;
}
html.www .project-list.index > .head .btn.all-offices-toggle .checkbox-icon {
  margin-right: 6px;
}
html.www .project-list.index .project-card {
  padding: 35px 30px 25px;
}
html.www .project-list.index .project-card .title {
  font-size: 24px;
}
html.www .project-list.index .project-card .description {
  font-size: 16px;
}
html.www .project-reports .project-card {
  padding: 0;
}
html.www .project-reports .project-card .wrap {
  margin: 0 30px;
  padding: 30px 0;
}
html.www .project-reports .project-card .wrap.version {
  margin: 0;
  padding: 30px 30px 20px 30px;
  background-color: #DBE0E5;
  border-bottom: 1px solid #D5D6D8;
}
html.www .project-reports .project-card .wrap.version:last-child {
  border-bottom-color: transparent;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
html.www .project-reports .project-card .wrap.version .footer {
  margin-right: 30px;
}
html.www .project-reports .project-card .wrap .status > * {
  display: inline-block;
  vertical-align: middle;
}
html.www .project-reports .project-card .wrap .status .icon {
  margin-right: 5px;
}
html.www .project-reports .project-card .wrap .left {
  width: 70%;
}
html.www .project-reports .project-card .wrap .footer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  margin-bottom: 25px;
  text-align: right;
}
html.www .project-reports .project-card .wrap ~ .btn.btn-secondary.filled {
  background: #DBE0E6;
  border-color: #DBE0E6;
}
html.www .project-show .top .inner {
  max-width: 560px;
}
html.www .project-show .top .status {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  margin-bottom: 30px;
}
html.www .project-show .top .status .icon {
  margin-right: 5px;
}
html.www .project-show .top .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
html.www .project-show .top .description {
  font-size: 16px;
  color: #4A4E54;
  line-height: 24px;
}
html.www .project-show .top .stats-footer {
  font-size: 12px;
  line-height: 16px;
  margin-top: 30px;
}
html.www .project-show .top .stats-footer .id,
html.www .project-show .top .stats-footer .name,
html.www .project-show .top .stats-footer .stat {
  font-weight: 600;
}
html.www .project-show .top .stats-footer .id {
  display: inline-block;
  margin-right: 5px;
}
html.www .project-show .top .stats-footer .stat {
  display: inline-block;
  background: #EDF0F2;
  padding: 0 10px;
  line-height: 26px;
  color: #4A4E54;
  border-radius: 4px;
  margin-left: 10px;
}
html.www .project-show .top .stats-footer .stat > * {
  display: inline-block;
  vertical-align: middle;
}
html.www .project-show .top .stats-footer .stat .icon {
  font-size: 14px;
}
html.www .project-show .top .stats-footer .stat .icon + span {
  margin-left: 5px;
}
html.www .project-show .list.custom.totally-empty.pull-placeholder-top {
  margin-top: -50px;
}
@media all and (max-width: 965px) {
  html.www .project-list .project-card {
    padding: 30px 20px 25px;
  }
  html.www .project-list .project-card .status {
    margin-bottom: 20px;
  }
  html.www .project-list .project-card .title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  html.www .project-list .project-card .description {
    font-size: 14px;
    line-height: 20px;
  }
  html.www .project-list .project-card .footer .fl,
  html.www .project-list .project-card .footer .fr {
    float: none;
  }
  html.www .project-list .project-card .footer .fr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }
  html.www .project-list .project-card .footer .stat {
    padding: 0 8px;
    margin-left: 6px;
  }
  html.www .project-list.index .project-card {
    padding: 30px 20px 25px;
  }
  html.www .project-show .top {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 25px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
  html.www .project-show .top .inner {
    max-width: 100%;
  }
  html.www .project-show .top .title {
    font-size: 20px;
    line-height: 26px;
  }
  html.www .project-show .top .description {
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  html.www .project-show .top .status {
    font-size: 12px;
    margin-bottom: 15px;
  }
  html.www .project-show .top .stats-footer {
    display: none;
  }
  html.www .project-show .top .email-box.small {
    display: block;
    padding: 10px 15px 5px;
    max-width: 280px;
  }
  html.www .project-show .top .email-box.small .head .icon {
    margin-right: 10px;
  }
  html.www .project-show .top .email-box.small .head .title {
    line-height: 18px;
  }
  html.www .project-show .top.show_more .stats-footer {
    display: block;
  }
  html.www .project-show .list.custom.totally-empty.pull-placeholder-top {
    margin-top: -32px;
  }
}
@media all and (max-width: 768px) {
  html.www .project-reports .project-card {
    padding: 0;
  }
  html.www .project-reports .project-card .wrap {
    margin: 0 30px;
    padding: 30px 0 20px 0;
  }
  html.www .project-reports .project-card .wrap .status > * {
    display: inline-block;
    vertical-align: middle;
  }
  html.www .project-reports .project-card .wrap .status .icon {
    margin-right: 5px;
  }
  html.www .project-reports .project-card .wrap .left {
    width: 100%;
  }
  html.www .project-reports .project-card .wrap .footer {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    text-align: left;
  }
  html.www .project-reports .project-card .wrap ~ .btn.btn-secondary.filled {
    background: #DBE0E6;
    border-color: #DBE0E6;
  }
}
html.www .report-media .grid-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 260px));
  grid-gap: 20px;
  margin-top: 45px;
}
html.www .report-media .grid-wrap .item {
  position: relative;
  background: #EDF0F2;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  max-height: 300px;
}
html.www .report-media .grid-wrap .item.no-text img {
  height: 100%;
  max-height: 100%;
}
html.www .report-media .grid-wrap .item.no-image .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 250px;
  padding-top: 15px;
  box-sizing: border-box;
}
html.www .report-media .grid-wrap .item img {
  width: 100%;
  height: auto;
  max-height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
html.www .report-media .grid-wrap .item .icon {
  font-size: 75px;
  color: #000;
  opacity: 0.25;
}
html.www .report-media .grid-wrap .item .text {
  padding: 15px 20px;
  font-size: 14px;
}
html.www .report-media .upload-actions .btn {
  line-height: 42px;
  vertical-align: middle;
  text-align: center;
}
html.www .report-media .upload-actions .btn.icon {
  background: #fff;
  color: #4A4E54;
  width: 44px;
  padding: 0;
  border-color: white;
  text-align: center;
  margin-left: 10px;
}
html.www .report-media .upload-actions .btn.icon svg {
  font-size: 20px;
}
html.www .report-media > .mw {
  max-width: 960px;
  padding-bottom: 180px;
}
html.www .report-media > .mw > .upload-actions {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 60px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}
html.www .report-media > .mw > .upload-actions .btn-accent {
  flex: 1;
}
html.www .report-media .nomedia-placeholder {
  background: #EDF0F2;
  text-align: center;
  border-radius: 4px;
  padding: 60px 0 90px;
  margin-top: 5%;
}
html.www .report-media .nomedia-placeholder img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 30px;
}
html.www .report-media .nomedia-placeholder .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
}
html.www .report-media .nomedia-placeholder .text {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  color: #4A4E54;
}
html.www .report-media .nomedia-placeholder .content {
  max-width: 260px;
  margin: 0 auto;
}
@media all and (max-width: 965px) {
  html.www .report-media .grid-wrap {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
  html.www .report-media .grid-wrap .item img {
    max-height: 160px;
  }
  html.www .report-media > .mw > .upload-actions {
    padding: 0 15px;
  }
}
html.www .report-notes > .mw {
  max-width: 960px;
  padding-bottom: 120px;
}
html.www .report-notes .input-actions {
  display: flex;
}
html.www .report-notes .input-actions-wrap {
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 30px 60px;
  box-sizing: border-box;
}
html.www .report-notes .input-actions.input-active .btn.camera {
  display: none;
}
html.www .report-notes .input-actions.input-active .btn.create {
  display: block !important;
  background-color: #1463E0;
  color: #fff;
}
html.www .report-notes .input-actions input {
  border: 1px solid #C5C5C5;
  border-radius: 4px;
  padding: 0 10px;
}
html.www .report-notes .input-actions .btn {
  line-height: 32px;
  vertical-align: middle;
  text-align: center;
}
html.www .report-notes .input-actions .btn.icon {
  color: #4A4E54;
  width: 32px;
  padding: 0;
  border: none;
  text-align: center;
  border-radius: 4px;
  flex-shrink: 0;
}
html.www .report-notes .input-actions .btn.icon svg {
  font-size: 18px;
}
html.www .report-notes .input-actions .btn.icon.create svg {
  font-size: 14px;
}
html.www .report-notes .items-wrap {
  padding-top: 60px;
}
html.www .report-notes .items-wrap .dot-actions {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}
html.www .report-notes .items-wrap .dot-actions .drop {
  top: 0;
  right: 0;
  left: auto;
  margin-top: -10px;
  margin-right: 30px;
  border-radius: 4px;
}
html.www .report-notes .items-wrap .uploader {
  color: #4A4E54;
  margin-top: 5px;
}
html.www .report-notes .items-wrap .item {
  position: relative;
  margin-bottom: 30px;
}
html.www .report-notes .items-wrap .item.has-media img {
  background-color: #D5D6D8;
  max-width: 335px;
  border-radius: 8px;
}
html.www .report-notes .items-wrap .item.has-media .text {
  margin-top: 10px;
}
html.www .report-notes .items-wrap .item.has-media .dot-actions .toggle {
  color: #fff;
}
html.www .report-notes .items-wrap .item.no-media {
  background: #EDF0F2;
  width: 100%;
  padding: 21px 90px 27px 21px;
  border-radius: 4px;
  box-sizing: border-box;
}
html.www .report-notes .items-wrap .item.no-image .icon-wrap {
  background-color: #EDF0F2;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  max-width: 220px;
  cursor: pointer;
}
html.www .report-notes .items-wrap .item.no-image .icon-wrap .icon {
  font-size: 75px;
  color: #000;
  opacity: 0.25;
}
html.www .report-notes .nonotes-placeholder {
  background: #EDF0F2;
  text-align: center;
  border-radius: 4px;
  padding: 60px 0 90px;
  margin-top: 5%;
}
html.www .report-notes .nonotes-placeholder img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 30px;
}
html.www .report-notes .nonotes-placeholder .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
}
html.www .report-notes .nonotes-placeholder .text {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  color: #4A4E54;
}
html.www .report-notes .nonotes-placeholder .content {
  max-width: 260px;
  margin: 0 auto;
}
@media all and (max-width: 965px) {
  html.www .report-notes .items-wrap .item.has-media img {
    max-width: 190px;
  }
  html.www .report-notes > .mw > .input-actions-wrap {
    padding: 30px 15px;
  }
}
html.www .app.start.is_guest header {
  height: 150px;
  line-height: 110px;
  text-align: left;
}
html.www .app.start.is_guest header .logo {
  position: relative;
  margin: initial;
  float: left;
}
@media all and (max-width: 965px) {
  html.www .app.start.is_guest header {
    height: 64px;
    line-height: 62px;
  }
  html.www .info-split > .left,
  html.www .info-split > .right {
    display: none;
  }
  html.www .info-split.tab-left > .left {
    display: block;
  }
  html.www .info-split.tab-right > .right {
    display: block;
  }
}
html.www .app.shared-report .top .inner,
html.www .app.shared-report .report-body,
html.www .app.shared-report .report-info {
  max-width: 960px;
}
html.www .app.shared-report .title {
  word-break: break-word;
}
html.www .app.shared-report .report-info {
  margin: 60px auto;
}
html.www .app.shared-report .report-info > .num {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin: 60px 0 30px;
  color: #4A4E54;
}
html.www .app.shared-report .report-info .logos img {
  max-height: 80px;
  vertical-align: middle;
}
html.www .app.shared-report .report-info .logos img:nth-child(n+2) {
  margin-left: 20px;
}
html.www .app.shared-report .report-info .info-card {
  page-break-inside: avoid;
}
html.www .app.shared-report .report-info .info-card .section > .row.wrapp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  margin-bottom: 0;
}
html.www .app.shared-report .report-info .info-card .section > .row.wrapp > .col {
  margin-bottom: 20px;
}
@media (max-width: 965px) {
  html.www .app.shared-report .logos {
    text-align: center;
  }
  html.www .app.shared-report .report-info,
  html.www .app.shared-report .report-body {
    margin-left: 20px;
    margin-right: 20px;
  }
  html.www .app.shared-report .info-card {
    width: auto;
  }
}
@media print {
  html.www .app.shared-report body {
    color: #000;
    background-color: #fff;
    font-size: 14px;
  }
  html.www .app.shared-report svg {
    display: none !important;
  }
  html.www .app.shared-report .noprint {
    display: none;
  }
  html.www .app.shared-report .report-content > .top {
    background-color: transparent;
    padding: 10px 0 0;
    margin: 0 auto 20px;
    text-align: center;
  }
  html.www .app.shared-report .report-content > .top > .inner .status {
    margin-bottom: 10px;
  }
  html.www .app.shared-report .report-content > .top > .inner .title {
    font-size: 22px;
  }
  html.www .app.shared-report .report-content > .top > .inner .description {
    margin-bottom: 0;
  }
  html.www .app.shared-report .logos {
    text-align: center;
  }
  html.www .app.shared-report .report-info {
    margin: 0 auto 30px;
  }
  html.www .app.shared-report .report-info > .num {
    font-size: 12px;
    margin: 30px 0 15px;
  }
  html.www .app.shared-report .report-info .info-card {
    background: transparent;
    border-bottom: 1px solid black;
    border-radius: 0;
    margin-bottom: 10px;
  }
  html.www .app.shared-report .report-info .info-card .content {
    padding: 0;
  }
  html.www .app.shared-report .report-info .info-card .section {
    margin-bottom: 0;
  }
  html.www .app.shared-report .report-info .info-card .section > .title {
    margin-bottom: 2px;
  }
  html.www .app.shared-report .report-info .info-card .section > .row.wrapp {
    grid-template-columns: repeat(auto-fit, 180px);
    margin-bottom: 0;
  }
  html.www .app.shared-report .report-info .info-card .section > .row.wrapp > .col {
    margin-bottom: 2px;
  }
  html.www .app.shared-report .report-info .info-card .section > .row {
    margin-bottom: 10px;
  }
  html.www .app.shared-report .report-info .info-card .section > .row .label {
    margin-bottom: 0px;
  }
  html.www .app.shared-report .report-info .info-card .section > .row .text {
    font-size: 12px;
  }
  html.www .app.shared-report .report-body {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
  html.www .app.shared-report .report-body .placeholders .inner {
    min-height: auto;
  }
  html.www .app.shared-report .report-body .categories .category {
    margin-bottom: 10px;
  }
  html.www .app.shared-report .report-body .categories .category > .head {
    margin-bottom: 10px;
  }
  html.www .app.shared-report .report-body .categories .category > .head .line {
    display: none;
  }
  html.www .app.shared-report .report-body .categories .category > .head .num,
  html.www .app.shared-report .report-body .categories .category > .head .title {
    font-size: 14px;
  }
  html.www .app.shared-report .report-body .categories .category.sub {
    margin-top: 10px;
  }
  html.www .app.shared-report .report-body .categories .category.sub > .head {
    padding-left: 0;
  }
  html.www .app.shared-report .report-body .categories .category.sub > .head:before {
    display: none;
  }
  html.www .app.shared-report .report-body .fields * {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0 !important;
  }
  html.www .app.shared-report .report-body .fields > .form-item {
    padding: 0;
    page-break-inside: avoid;
  }
  html.www .app.shared-report .report-body .fields > .form-item:nth-child(n+2) {
    margin-top: 20px;
  }
  html.www .app.shared-report .report-body .fields > .form-item .field {
    margin-bottom: 0;
  }
  html.www .app.shared-report .report-body .fields > .form-item .field > .head {
    padding-top: 0;
    padding-bottom: 10px;
  }
  html.www .app.shared-report .report-body .fields > .form-item .field > .head .title {
    opacity: 0.75;
    font-size: 12px;
  }
  html.www .app.shared-report .report-body .fields .field {
    width: 100%;
    font-size: 10px;
    border: none !important;
  }
  html.www .app.shared-report .report-body .fields .field .placeholders > .inner .form-item.inline.focused label {
    margin-left: 0;
  }
  html.www .app.shared-report .report-body .fields .field .item {
    display: none;
    border-bottom-color: #000;
    border-bottom-style: dotted;
    opacity: 0.75;
    padding: 0;
  }
  html.www .app.shared-report .report-body .fields .field .item label.checkbox {
    display: none;
  }
  html.www .app.shared-report .report-body .fields .field .item.active {
    display: block;
  }
  html.www .app.shared-report .report-body .fields .field .item.active, html.www .app.shared-report .report-body .fields .field .item.active * {
    color: #000;
    font-weight: 600;
    background-color: transparent;
    opacity: 1;
    font-size: 10px;
  }
  html.www .app.shared-report .report-body .fields .field .item .prefix {
    font-weight: 300 !important;
    margin-right: 20px;
  }
  html.www .app.shared-report .report-body .fields .field .item > .init {
    padding: 5px 0 10px;
  }
  html.www .app.shared-report .report-body .fields .field.field-str .item {
    border: none;
  }
  html.www .app.shared-report .report-body .fields .field.field-str .item .input {
    border-bottom-style: dotted;
  }
  html.www .app.shared-report .report-body .fields .field.field-str.disabled .item .input {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  html.www .app.shared-report .report-body .fields .field.field-options .item > .label {
    font-size: 10px;
    padding: 5px 0;
  }
  html.www .app.shared-report .report-body .fields .field > .bottom {
    opacity: 0.5;
    background-color: transparent;
    min-height: auto;
  }
  html.www .app.shared-report .report-body .fields .field > .bottom .fl {
    line-height: 26px;
  }
}
html.www .utility-show .content {
  max-width: 600px;
}
html.www .utility-show .tools-wrap .head h3 {
  padding-top: 2.5px;
}
html.www .utility-show .tools .tool {
  position: relative;
  padding: 15px 5px;
  border-top: 1px solid #E0E4E9;
}
html.www .utility-show .tools .tool:last-child {
  border-bottom: 1px solid #E0E4E9;
}
html.www .utility-show .tools .tool:hover {
  background: rgba(0, 0, 0, 0.05);
}
html.www .utility-show .tools .tool:hover .action.remove,
html.www .utility-show .tools .tool:hover .dragsort-handle {
  display: flex;
}
html.www .utility-show .tools .tool .title {
  font-size: 14px;
}
html.www .utility-show .tools .empty {
  font-weight: 300;
  opacity: 0.5;
}
html.www .utility-show .tools .action.remove {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  width: 20px;
  padding: 0 0 0 10px;
  justify-content: space-around;
  align-items: center;
  border: none;
  cursor: pointer;
  display: none;
  animation: psFade 0.3s ease forwards;
}
html.www .utility-show .tools .action.remove .icon {
  width: 15px;
  height: 15px;
  font-size: 10px;
  text-align: center;
  flex-shrink: 0;
  color: #DD0505;
  border: 1px solid #DD0505;
  border-radius: 50%;
}
html.www .utility-show .tools .dragsort-handle {
  position: absolute;
  top: auto;
  bottom: auto;
  left: -25px;
  width: 15px;
  padding: 0 10px 0 0;
  margin-top: 5px;
  justify-content: space-around;
  align-items: center;
  display: none;
  animation: psFade 0.3s ease forwards;
}
html.www .utility-show .tools .dragsort-handle svg {
  vertical-align: top;
}
html.www .field-prefill-edit .prefill-edit table {
  width: 100%;
}
html.www .prefill-options-container {
  position: relative;
}
html.www .prefill-options-container input:focus ~ .prefill-options {
  visibility: visible;
  transition-delay: 0s;
}
html.www .prefill-options-container .prefill-options {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #fff;
  border: 1px solid #BDBDBD;
  z-index: 10;
  white-space: nowrap;
  transition: visibility 0s 0.1s;
}
html.www .prefill-options-container .prefill-options .prefill-option {
  padding: 8px 10px;
  cursor: pointer;
}
html.www .prefill-options-container .prefill-options .prefill-option:hover {
  background: #EDF0F2;
}
html.www td.prefill-options-container {
  position: relative;
  overflow: visible;
}
html.www td.prefill-options-container.prefill-priority-top {
  z-index: 1400;
}
html.www td.prefill-options-container.prefill-priority-bottom {
  z-index: 1200;
}
html.www td.prefill-options-container.prefill-priority-top .prefill-options {
  z-index: 2400;
}
html.www td.prefill-options-container.prefill-priority-bottom .prefill-options {
  z-index: 2200;
}
html.www .project-report .field.field-analysis_carwash .item.active,
html.www .project-report .field.field-analysis_carwash .content,
html.www .project-report .field.field-analysis_carwash table,
html.www .project-report .field.field-analysis_carwash tr,
html.www .project-report .field.field-analysis_carwash td,
html.www .project-report .field.field-analysis_oilseparator .item.active,
html.www .project-report .field.field-analysis_oilseparator .content,
html.www .project-report .field.field-analysis_oilseparator table,
html.www .project-report .field.field-analysis_oilseparator tr,
html.www .project-report .field.field-analysis_oilseparator td {
  overflow: visible;
}
html.www .project-report .field.field-analysis_carwash table,
html.www .project-report .field.field-analysis_oilseparator table {
  position: relative;
  border-collapse: separate;
  border-spacing: 0;
}
html.www .project-report .field.field-analysis_carwash tr,
html.www .project-report .field.field-analysis_carwash td,
html.www .project-report .field.field-analysis_oilseparator tr,
html.www .project-report .field.field-analysis_oilseparator td {
  position: relative;
  z-index: 1;
}
html.www .project-report .field.field-analysis_carwash td.prefill-options-container,
html.www .project-report .field.field-analysis_oilseparator td.prefill-options-container {
  z-index: 1000;
}
html.www .project-report .field.field-analysis_carwash td.prefill-options-container:focus-within,
html.www .project-report .field.field-analysis_oilseparator td.prefill-options-container:focus-within {
  z-index: 1600;
}
html.www .project-report .field.field-analysis_carwash tr:has(td.prefill-options-container:focus-within),
html.www .project-report .field.field-analysis_oilseparator tr:has(td.prefill-options-container:focus-within) {
  z-index: 1700;
}
html.www .project-report .field.field-analysis_carwash tr:has(td.prefill-options-container:focus-within) td,
html.www .project-report .field.field-analysis_oilseparator tr:has(td.prefill-options-container:focus-within) td {
  z-index: 1700;
}

/*# sourceMappingURL=app.css.map*/