@charset "UTF-8";
@keyframes rotateInfiniteAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}
.-success, .app-simple-button-component.-success {
  color: #00B333;
}
.-dismissed {
  color: #eb6886 !important;
}
.-blue, .app-simple-button-component.-blue {
  color: #0076E0;
}
.-blue:hover, .app-simple-button-component.-blue:hover {
  color: #FF6A00;
}
.-waiting, .app-simple-button-component.-waiting, .-warning, .app-simple-button-component.-warning {
  color: #FF6A00;
}
.-error, .app-simple-button-component.-error {
  color: #ED3545;
}
.-none, .app-simple-button-component.-none {
  color: #7D859B;
}
.-custom-scroll {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  scrollbar-color: #909090 #fff;
  scrollbar-width: thin;
  -ms-scrollbar-track-color: #fff;
  -ms-scrollbar-face-color: #909090;
}
.-custom-scroll::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  border: 0px;
}
.-custom-scroll::-webkit-scrollbar-track {
  background: #fff;
  border: 0px;
}
.-custom-scroll::-webkit-scrollbar-thumb {
  background: #b5b5b5;
  border: 0px;
}
.-custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #909090;
  border: 0px;
}
.app-ui-component {
  display: none;
  font-size: 14px;
  font-weight: normal;
  user-select: none;
  line-height: 100%;
}
.app-ui-component * {
  line-height: 100%;
}
.app-ui-component.app-component-shown {
  display: block;
}
.app-ui-component.app-component-shown.app-component-hascontextmenu {
  display: flex;
}
.app-ui-component.app-component-shown.app-component-hascontextmenu > *:first-child {
  flex: 1 1 100%;
}
.app-ui-component:focus, .app-ui-component.app-ui-focus {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
}
.app-ui-component::-webkit-scrollbar-track {
  background-color: #fff;
}
.app-ui-component::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.app-ui-component::-webkit-scrollbar-thumb {
  background-color: #b5b5b5;
}
.app-ui-component .tip {
  position: fixed;
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
  padding: 5px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
  max-width: 400px;
  font-size: 14px;
  text-align: left;
  font-weight: normal;
  color: #fff;
  visibility: hidden;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s, visiblity 0s;
}
.app-ui-component:hover > .tip {
  visibility: visible;
  opacity: 1;
}
.app-ui-component .app-contextmenu-icon-component {
  width: 23px;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.app-ui-component .app-contextmenu-icon-component.app-component-shown {
  display: flex;
}
.app-ui-component .app-contextmenu-icon-component.-selected .app-component-icon {
  background: #4CB5FF;
}
.app-ui-component .app-contextmenu-icon-component .app-component-icon {
  width: 17px;
  height: 32px;
  background: transparent;
  border-radius: 2px;
}
.app-ui-component .app-contextmenu-icon-component .app-component-icon.app-component-shown {
  display: block;
}
.app-ui-component .app-contextmenu-icon-component .app-component-icon:hover {
  background: #4CB5FF;
}
.app-ui-component .app-contextmenu-icon-component .app-component-icon:hover svg circle {
  fill: #ffffff;
}
.app-component-shadow-div {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: default;
}
.app-component-button {
  outline: none;
  cursor: pointer;
}
.app-component-textspan {
  vertical-align: middle;
}
.app-component-textspan.app-component-shown {
  display: inline;
}
.app-component-textspan.strong {
  font-weight: bold;
}
.app-component-textspan.italic {
  font-style: italic;
}
.app-component-textspan.underline {
  text-decoration: underline;
}
.app-component-textspan.uppercase {
  text-transform: uppercase;
}
.app-component-textspan.block.app-component-shown {
  display: block;
}
.app-component-icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.app-component-icon.app-component-shown {
  display: inline-block;
}
.app-component-icon.app-component-shown > svg, .app-component-icon.app-component-shown > img, .app-component-icon.app-component-shown > div, .app-component-icon.app-component-shown > span:not(.tip) {
  width: inherit;
  height: inherit;
}
.app-component-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 8px;
  margin-left: 8px;
  vertical-align: middle;
}
.app-component-image.app-component-shown {
  display: inline-block;
}
.app-component-link {
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}
.app-component-link.app-component-shown {
  display: inline;
}
.app-component-link:not(.-warning):not(.-error):not(.-success) {
  color: #7D859B;
}
.app-component-link:not(.-warning):not(.-error):not(.-success):hover {
  color: #FF6A00;
}
.app-component-link.-warning {
  padding: 0px;
  margin: 0px;
}
.app-component-link.-error {
  padding: 0px;
  margin: 0px;
}
.app-component-link.-success {
  padding: 0px;
  margin: 0px;
}
.app-component-heading {
  vertical-align: middle;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 0 0 10px;
  margin: 0;
}
.app-component-heading.app-component-shown {
  display: block;
}
h1.app-component-heading {
  font-size: 24px;
}
h2.app-component-heading {
  font-size: 20px;
}
h3.app-component-heading {
  font-size: 18px;
}
h4.app-component-heading {
  font-size: 16px;
}
.app-component-pane {
  position: relative;
}
.app-component-pane.app-component-shown {
  display: block;
}
.app-component-pane > .app-component-pane-resize {
  position: absolute;
  z-index: 1;
  display: none;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}
.app-component-pane > .app-component-pane-resize:after {
  display: block;
  content: "";
  height: 1px;
  width: 10px;
  background: #c0c0c0;
}
.app-component-pane > .app-component-pane-resize:before {
  content: "";
  display: block;
  height: 1px;
  width: 10px;
  background: #c0c0c0;
}
.app-component-pane.app-component-resize-none > .app-component-pane-resize {
  display: none;
}
.app-component-pane.app-component-resize-all > .app-component-pane-resize {
  display: block;
  right: 0px;
  bottom: 0px;
  width: 10px;
  height: 10px;
  cursor: nw-resize;
}
.app-component-pane.app-component-resize-all > .app-component-pane-resize:after {
  transform: rotate(-45deg);
  position: absolute;
  top: 5px;
}
.app-component-pane.app-component-resize-all > .app-component-pane-resize:before {
  position: absolute;
  bottom: 0px;
  transform: rotate(-45deg);
}
.app-component-pane.app-component-resize-vertical {
  padding-bottom: 10px;
}
.app-component-pane.app-component-resize-vertical > .app-component-pane-resize {
  display: block;
  bottom: 0px;
  width: 100%;
  height: 10px;
  cursor: n-resize;
}
.app-component-pane.app-component-resize-vertical > .app-component-pane-resize:after {
  position: absolute;
  margin-left: -5px;
  left: 50%;
  top: 3px;
}
.app-component-pane.app-component-resize-vertical > .app-component-pane-resize:before {
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -5px;
}
.app-component-pane.app-component-resize-horizontal {
  padding-right: 10px;
}
.app-component-pane.app-component-resize-horizontal > .app-component-pane-resize {
  display: block;
  right: 0px;
  height: 100%;
  width: 10px;
  cursor: w-resize;
}
.app-component-pane.app-component-resize-horizontal > .app-component-pane-resize:after {
  position: absolute;
  margin-top: -5px;
  top: 50%;
  left: 2px;
  transform: rotate(90deg);
}
.app-component-pane.app-component-resize-horizontal > .app-component-pane-resize:before {
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -5px;
  transform: rotate(90deg);
}
.app-component-split {
  align-items: stretch;
  justify-content: stretch;
}
.app-component-split.app-component-shown {
  display: flex;
}
.app-component-split.-resizing.app-component-split-horizontal {
  cursor: col-resize;
}
.app-component-split.-resizing.app-component-split-vertical {
  cursor: row-resize;
}
.app-component-split.app-component-split-horizontal {
  flex-direction: row;
}
.app-component-split.app-component-split-horizontal .app-component-split-handler {
  width: 10px;
  justify-self: stretch;
  flex: 0 0 10px;
  height: 100%;
  background: #c0c0c0;
  cursor: col-resize;
}
.app-component-split.app-component-split-vertical {
  flex-direction: column;
}
.app-component-split.app-component-split-vertical .app-component-split-handler {
  height: 10px;
  justify-self: stretch;
  flex: 0 0 10px;
  width: 100%;
  background: #c0c0c0;
  cursor: row-resize;
}
.app-component-split .app-component-split-left {
  flex: 0 0 200px;
}
.app-component-split .app-component-split-left > * {
  width: 100%;
  height: 100%;
}
.app-component-split .app-component-split-right {
  flex: 1 1 100%;
}
.app-component-split .app-component-split-right > * {
  width: 100%;
  height: 100%;
}
.app-component-flexbox {
  width: 100%;
  flex-wrap: wrap;
}
.app-component-flexbox.app-component-shown {
  display: flex;
}
.app-component-widget {
  width: 100%;
  position: relative;
}
.app-component-widget .app-component-widget-close-button {
  padding: 0;
  margin: 0;
  border: unset;
  background-color: unset;
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 18L18 6' stroke='%23444855' stroke-width='1.85' stroke-linecap='round'/%3E%3Cpath d='M18 18L6 6' stroke='%23444855' stroke-width='1.85' stroke-linecap='round'/%3E%3C/svg%3E");
}
.app-component-widget .widget-container {
  width: 100%;
  flex: 1 0;
}
.app-dropdown-component {
  position: absolute;
  background-color: #fff;
  font-weight: normal;
  color: #435466;
  box-shadow: 0 2px 7px 0 rgba(90, 102, 117, 0.25);
  border-radius: 5px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
}
.app-dropdown-component.app-component-shown {
  display: grid;
}
.app-dropdown-component [data-object-name="search"] {
  margin: 7px 12px;
  margin-top: 7px;
  margin-bottom: 8px;
  margin-left: 12px;
  width: 276px;
  box-shadow: none;
}
.app-dropdown-component [data-object-name="search"] button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}
.app-dropdown-component [data-object-name="search"] button svg {
  width: 16px;
  height: 16px;
}
.app-dropdown-component [data-object-name="search"] input {
  color: #435466;
  font-size: 14px;
  line-height: 22px;
  border-radius: 3px;
}
.app-dropdown-component [data-object-name="list"] .app-component-list-group {
  width: 100%;
}
.app-dropdown-component [data-object-name="list"] .app-component-list-group > span {
  display: block;
  text-indent: -9999px;
  height: 1px;
}
.app-dropdown-component [data-object-name="list"] .app-component-list-group > div {
  padding: 0px;
}
.app-dropdown-component [data-object-name="list"] .app-component-list-group > div .app-component-list-item {
  padding: 12px;
}
.app-dropdown-component [data-object-name="list"] .app-component-list-group > div .app-component-list-item:hover {
  background-color: #e4f4ff;
}
.app-dropdown-component [data-object-name="list"] .app-component-list-group:last-child {
  margin-bottom: 0px;
}
.app-tabs-container-component {
  width: 100%;
  height: 100%;
  grid-template-rows: 40px calc(100% - 40px);
}
.app-tabs-container-component.app-component-shown {
  display: grid;
}
.app-tabs-container-component .tabs-header-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-bottom: 1px solid #C4C8D4;
}
.app-tabs-container-component .tabs-header {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.app-tabs-container-component .tabs-header > .app-component-button {
  position: relative;
  background: transparent;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #2F323A;
  margin: 0px 4px;
  padding: 8px 4px;
  border: 0px;
  border-bottom: 2px solid transparent;
  height: calc(100% + 1px);
}
.app-tabs-container-component .tabs-header > .app-component-button:first-child {
  margin-left: 0px;
}
.app-tabs-container-component .tabs-header > .app-component-button.tab-selected {
  border-bottom: 2px solid #0076E0;
  color: #0076E0;
}
.app-tabs-container-component .tabs-links {
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-tabs-container-component .tabs-container {
  flex: 1 1 100%;
  padding-top: 20px;
}
.app-tabs-container-component .tabs-container > .app-ui-component {
  width: 100%;
  height: 100%;
}
.app-component-window {
  position: fixed;
  align-items: flex-start;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  overflow: auto;
}
.app-component-window.app-component-shown {
  display: flex;
  animation-name: fadein;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.app-component-window .app-component-window-container {
  margin-top: 60px;
  margin-bottom: 60px;
  background-color: #FFFFFF;
  border-radius: 10px;
}
@media only screen and (max-width: 500px) {
  .app-component-window .app-component-window-container {
    width: 100%;
    min-height: 100%;
    margin: 0px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.app-component-window .app-component-window-title {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #2f323a;
  font-size: 22px;
  background-color: white;
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  border-bottom: 1px solid #e0e3ea;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.app-component-window .app-component-window-title:empty {
  display: none;
}
@media only screen and (max-width: 500px) {
  .app-component-window .app-component-window-content {
    width: 100% !important;
    height: 100%;
    flex: 1 1 100%;
    overflow: auto;
  }
}
.app-component-window .app-component-window-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background-color: #F6F7F9;
  padding: 10px;
  display: flex;
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.app-component-window .app-component-window-footer:empty {
  display: none;
}
.app-component-window .app-component-window-footer .app-component-window-button {
  width: auto;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid #D1D7E9;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(153, 153, 153, 0.1);
  border-radius: 2px;
  margin: 0 5px;
}
.app-component-window button.s-close {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 18L18 6' stroke='%23444855' stroke-width='1.85' stroke-linecap='round'/%3E%3Cpath d='M18 18L6 6' stroke='%23444855' stroke-width='1.85' stroke-linecap='round'/%3E%3C/svg%3E");
  border: 0;
  cursor: pointer;
}
.app-component-modeless-window {
  position: absolute !important;
  box-shadow: 0 2px 7px 0 rgba(90, 102, 117, 0.25);
  background-color: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 10px;
  max-height: 100%;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}
.app-component-modeless-window.app-component-shown {
  display: flex;
}
.app-component-modeless-window .modeless-window-header-container {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #EAEBF1;
}
.app-component-modeless-window .modeless-window-header-container .modeless-window-header {
  display: flex;
  align-items: center;
  padding: 20px 0 20px 20px;
  margin-right: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
}
.app-component-modeless-window .modeless-window-header-container .modeless-window-header:empty {
  display: none;
}
.app-component-modeless-window .modeless-window-header-container .close-button-container {
  margin: 0 0 0 auto;
  padding: 0;
}
.app-component-modeless-window .modeless-window-header-container .close-button-container .close-button {
  cursor: pointer;
  padding: 20px;
  margin-left: auto;
}
.app-component-modeless-window .modeless-window-header-container .close-button-container .close-button svg {
  display: block;
  width: 12px;
  height: 12px;
}
.app-component-modeless-window .modeless-window-header-container .close-button-container .close-button svg path {
  stroke: #14151A;
  fill: #14151A;
}
.app-component-modeless-window .modeless-window-container {
  height: 100%;
  overflow: auto;
  padding: 20px;
}
.app-component-modeless-window .modeless-window-footer {
  background: #F5F6FA;
  border-top: 1px solid #D9DCE3;
  display: flex;
  margin-top: auto;
  padding: 15px 20px;
}
.app-component-modeless-window .modeless-window-footer:empty {
  display: none;
}
.app-component-modeless-window.-stick-to-x-left {
  left: 0;
}
.app-component-modeless-window.-stick-to-x-right {
  left: calc(100% - var(--windowWidth));
}
.app-component-modeless-window.-stick-to-x-center {
  left: calc((100% - var(--windowWidth)) / 2);
}
.app-component-modeless-window.-stick-to-y-top {
  top: 0;
}
.app-component-modeless-window.-stick-to-y-bottom {
  top: calc(100% - var(--windowHeight));
}
.app-component-modeless-window.-stick-to-y-center {
  top: calc((100% - var(--windowHeight)) / 2);
}
.app-component-list {
  width: 100%;
  border-bottom-left-radius: 3px;
  overflow: auto;
  scrollbar-color: #909090 #fff;
  scrollbar-width: thin;
  scrollbar-track-color: #fff;
  scrollbar-face-color: #909090;
  -ms-scrollbar-track-color: #fff;
  -ms-scrollbar-face-color: #909090;
  padding-bottom: 10px;
}
.app-component-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border: 0px;
}
.app-component-list::-webkit-scrollbar-track {
  background: #fff;
  border: 0px;
}
.app-component-list::-webkit-scrollbar-thumb {
  background: #b5b5b5;
  border: 0px;
}
.app-component-list::-webkit-scrollbar-thumb:hover {
  background: #909090;
  border: 0px;
}
.app-component-list .app-component-list-group.app-component-expandable {
  cursor: pointer;
  overflow: hidden;
}
.app-component-list .app-component-list-group.app-component-expandable > span:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4.5px 0 4.5px;
  border-color: #000000 transparent transparent transparent;
  margin-left: 10px;
}
.app-component-list .app-component-list-group.app-component-collapsed > span:after {
  transform: rotate(180deg);
}
.app-component-list .app-component-list-group.app-component-collapsed > div {
  display: none;
}
.app-component-list .app-component-list-group > span {
  user-select: none;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
}
.app-component-list .app-component-list-group > span:empty {
  display: none;
}
.app-component-list .app-component-list-group > div {
  padding: 10px 0px;
}
.app-component-list .app-component-list-group .app-component-list-item:not(.disable-default) {
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #EAEAEA;
}
.app-component-list .app-component-list-group .app-component-list-item:not(.disable-default):hover, .app-component-list .app-component-list-group .app-component-list-item:not(.disable-default).app-component-selected {
  background: #D6EEFF;
}
.app-ui-tree-component {
  overflow: auto;
  height: 100%;
  padding-right: 10px;
}
.app-ui-tree-component.app-component-shown {
  display: flex;
  flex-direction: column;
}
.app-ui-tree-component .nodes {
  flex: 1 1 100%;
}
.app-ui-tree-component .nodes .expanded > .nodes {
  display: block;
}
.app-ui-tree-component .nodes .nodes {
  display: none;
}
.app-ui-tree-component .nodes .node > div:not([data-object-name]) {
  display: flex;
  padding: 12px 0 10px 10px;
  cursor: pointer;
  margin-left: 10px;
}
.app-ui-tree-component .nodes .node > div:not([data-object-name]):hover {
  background-color: #F6F7F9;
}
.app-ui-tree-component .nodes .node > div:not([data-object-name]).selected {
  background-color: #D1E7FF;
  border-radius: 3px;
}
.app-ui-tree-component .nodes .node > div:not([data-object-name]) > span {
  margin-left: 12px;
  font-size: 14px;
  flex: 1 1;
}
.app-ui-tree-component .nodes .node > div:not([data-object-name]) .expander {
  cursor: pointer;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='11' height='11' rx='1.5' stroke='%23435466'/%3E%3Crect x='2.76929' y='5.53845' width='6.46154' height='0.923077' rx='0.461538' fill='%23435466'/%3E%3Crect x='5.53845' y='2.76923' width='0.923077' height='6.46154' rx='0.461538' fill='%23435466'/%3E%3C/svg%3E%0A");
}
.app-ui-tree-component .nodes .node .nodes {
  margin-left: 18px;
}
.app-ui-tree-component .nodes .expanded > div:not([data-object-name]) > .expander {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='11' height='11' rx='1.5' stroke='%23435466'/%3E%3Crect x='2.76904' y='5.53845' width='6.46154' height='0.923077' rx='0.461538' fill='%23435466'/%3E%3C/svg%3E%0A");
}
.app-ui-tree-component .nodes .is-leaf > div:not([data-object-name]) > .expander {
  cursor: unset;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='11' height='11' rx='1.5' stroke='%23435466'/%3E%3Crect x='4' y='4' width='4' height='4' rx='2' fill='%23435466'/%3E%3C/svg%3E%0A");
}
.app-ui-tree-component > .nodes > .node > div:not([data-object-name]) {
  margin-left: 0px;
}
.app-ui-tree-component > .nodes > .node > div:not([data-object-name]) span {
  font-size: 16px;
  color: #2F323A;
  font-weight: bold;
}
.grid-container > div > button {
  margin: 10px;
}
.app-ui-grid-container {
  background-color: white;
  overflow: auto;
  width: 100%;
  height: 100%;
  outline: none;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] {
  width: 100%;
  outline: none;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"].app-component-shown {
  display: table;
  table-layout: fixed;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] [data-object-name="button-container-for-row-selection"] {
  width: 40px;
  left: 0;
  vertical-align: middle;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head {
  background-color: white;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head.app-component-shown {
  display: table-header-group;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head [data-object-name="app-ui-header-columns"] {
  background-color: inherit;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head [data-object-name="app-ui-header-columns"].app-component-shown {
  display: table-row;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head [data-object-name="app-ui-header-columns"] .app-ui-column {
  overflow: hidden;
  color: #9DA5BE;
  vertical-align: middle;
  padding: 10px;
  margin: 10px;
  border-bottom: 1px solid #EAEBF1;
  background-color: inherit;
  top: 0;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head [data-object-name="app-ui-header-columns"] .app-ui-column.app-component-shown {
  display: table-cell;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head [data-object-name="app-ui-header-columns"] .app-ui-column .resize-border {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 60%;
  width: 5px;
  cursor: e-resize;
  margin: 8px 0px 5px;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-head [data-object-name="app-ui-header-columns"] .app-ui-column .resize-border:after {
  content: "";
  background: #EAEBF1;
  width: 2px;
  margin-right: 2px;
  height: 100%;
  display: block;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows.app-component-shown {
  display: table-row-group;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows.-closed .app-ui-rows-group svg {
  transform: rotate(180deg);
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows.-closed .app-ui-row.app-component-shown {
  display: none;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-rows-group {
  background: #EDEFF5;
  border-radius: 3px;
  cursor: pointer;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-rows-group.app-component-shown {
  display: table-row;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-rows-group td {
  vertical-align: middle;
  padding: 5px 10px;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-rows-group td.app-component-shown {
  display: table-cell;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-rows-group td span {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-rows-group td [data-object-name$="rows-title-icon"] {
  margin-left: 10px;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row {
  background-color: inherit;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row.app-component-shown {
  display: table-row;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row.app-component-hascontextmenu .app-ui-row-cell:nth-last-child(-n+2) .app-ui-row-cell-value-container, .app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row.app-component-hascontextmenu .app-ui-row-cell:nth-last-child(-n+2) .app-editor-component {
  width: calc(100% - 20px);
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row:hover {
  background: rgba(209, 215, 233, 0.15);
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-contextmenu-icon-component {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell {
  color: #435466;
  padding: 10px;
  border-bottom: 1px solid #EAEBF1;
  background-color: inherit;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell.app-component-shown {
  display: table-cell;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell.cell-active {
  background-color: #f2f4f9;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell.cell-selected {
  background-color: #DFEEFF;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell.-editing {
  padding: 5px;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell[data-object-name$="button-container-for-row-selection"] {
  display: none;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell[data-object-name$="button-container-for-row-selection"].input-checkbox-shown {
  display: table-cell;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row .app-ui-row-cell[data-object-name$="button-container-for-row-selection"].input-checkbox-shown > .app-component-checkbox {
  display: block;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row.row-active {
  background-color: #f2f4f9;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .app-ui-grid-rows .app-ui-row.row-selected {
  background-color: #DFEEFF;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .position-sticky-y {
  position: sticky;
  z-index: 1;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .position-sticky-x {
  position: sticky;
  z-index: 1;
}
.app-ui-grid-container [data-object-name="app-ui-grid-content"] .position-sticky-y.position-sticky-x {
  z-index: 2;
}
.app-ui-grid-container .app-ui-grid-footer {
  background-color: #F6F7F9;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 45px;
  align-items: center;
  padding-left: 10px;
}
.app-ui-grid-container .app-ui-grid-footer.app-component-shown {
  display: flex;
}
.app-ui-grid-container [data-object-name="app-ui-grid-norows"] {
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #9DA5BE;
}
.app-ui-grid-container [data-object-name="app-ui-grid-norows"].app-component-shown {
  display: flex;
}
.app-input-component {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D1D7E9;
  box-sizing: border-box;
  border-radius: 3px;
  align-items: center;
  justify-content: stretch;
  padding: 5px 12px;
}
.app-input-component.app-component-shown {
  display: flex;
}
.app-input-component [data-object-name="icon"] {
  outline: none;
  background: transparent;
  border: 0;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  padding: 0;
}
.app-input-component [data-object-name="icon"].app-component-shown {
  display: block;
}
.app-input-component [data-object-name="icon"] svg {
  display: block;
  width: 12px;
  height: 12px;
}
.app-input-component [data-object-name=loadingicon] {
  outline: none;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  animation: 2s linear 0s infinite normal rotateInfiniteAnimation;
  margin-right: 13px;
}
.app-input-component [data-object-name=loadingicon] svg {
  display: block;
  width: 20px;
  height: 20px;
}
.app-input-component input {
  border: 0;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  color: #435466;
  flex: 1 1 calc(100% - 40px);
  width: calc(100% - 40px);
  outline: none;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  padding: 0 5px;
}
.app-input-component input::placeholder {
  color: #9DA5BE;
}
.app-input-component [data-object-name=clear] {
  outline: none;
  background: transparent;
  border: 0;
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
  opacity: 0.5;
  cursor: pointer;
  margin-left: 10px;
}
.app-input-component [data-object-name=clear] svg {
  margin: 0;
}
.app-textarea-component {
  width: 100%;
  align-items: flex-start;
  justify-content: stretch;
  background: #ffffff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.app-textarea-component.app-component-shown {
  display: flex;
}
.app-textarea-component textarea {
  border: 0;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  color: #435466;
  flex: 1 1;
  outline: none;
}
.app-textarea-component textarea::placeholder {
  color: #9DA5BE;
}
.app-textarea-component [data-object-name=clear] {
  outline: none;
  background: transparent;
  border: 0;
  width: 14px;
  height: 14px;
  margin: 14px 14px 0 0;
  padding: 0;
  opacity: 0.5;
  cursor: pointer;
}
.app-textarea-component [data-object-name=clear] svg {
  margin: 0;
}
.app-component-select {
  position: relative;
  height: 32px;
  border: 1px solid #D9DCE3;
  padding: 0;
}
.app-component-select [data-object-name="clear"] {
  z-index: 2;
}
.app-component-select input {
  font-size: 14px;
  padding-left: 15px;
}
.app-component-select input::placeholder {
  font-size: 14px;
}
.app-component-select [data-object-name="dropdown-shadow"] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.app-component-select [data-object-name="dropdown-handler"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'%3E%3C/path%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  cursor: pointer;
  transform: rotate(0.25turn);
  transition: transform 100ms;
  margin-right: 10px;
  margin-left: 10px;
}
.app-component-select.app-component-opened {
  border-color: #0095FF;
}
.app-component-select.app-component-opened [data-object-name="dropdown-handler"] {
  transform: rotate(0.75turn) !important;
}
.app-component-select [data-object-name="dropdown"] {
  padding: 1px;
  background-color: #FFFFFF;
  border: 1px solid #D1D7E9;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 100%;
  height: auto;
  z-index: 2;
  width: 100%;
}
.app-component-select [data-object-name="dropdown"] [data-object-name="default-dropdown-list"] {
  max-height: 150px;
  height: auto;
  z-index: 2;
  padding: 0;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group {
  border-bottom: 1px solid #E0E3EA;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group:last-child {
  border-bottom: unset;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group > span {
  color: #9DA5BE;
  font-size: 12px;
  padding: 5px 15px;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group .app-ui-select-list-item-no-result {
  color: #435466;
  font-size: 14px;
  padding: 5px 15px;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group .app-component-list-item {
  color: #435466;
  font-size: 14px;
  padding: 5px 15px;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group .app-component-list-item:hover {
  background-color: #E4F4FF;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group .app-component-list-item.app-component-selected {
  background-color: #4295FA;
  color: #FFFFFF;
}
.app-component-select [data-object-name="dropdown"] .app-component-list-group .app-component-list-item.ui-disabled {
  color: #9DA5BE;
}
.app-component-select [data-object-name="default-dropdown-options"] {
  border-top: 1px solid #D1D7E9;
  display: flex;
  height: 36px;
  align-items: center;
  padding-left: 15px;
  color: #2B7ECE;
}
.app-component-select [data-object-name="default-dropdown-options"] [data-option-name] {
  color: #2B7ECE;
  text-decoration: none;
  cursor: pointer;
}
.app-component-select [data-object-name="default-dropdown-options"] [data-option-name]:not(:last-child):after {
  content: "·";
  padding: 5px;
  cursor: default;
}
.app-component-badge {
  vertical-align: middle;
}
.app-component-badge.app-component-shown {
  display: inline-block;
}
.app-component-chart {
  width: 100%;
}
.app-component-chart .app-component-barchart {
  width: 100%;
}
.app-component-chart .app-component-barchart .barchart-body {
  height: 5px;
  background-color: black;
}
.app-component-checkbox {
  user-select: none;
  width: 17px;
  height: 17px;
  border: 1px solid #D4D4D4;
  background-color: transparent;
  border-radius: 2px;
  cursor: pointer;
  margin: 0;
}
.app-component-checkbox.app-component-shown {
  display: flex;
}
.app-component-checkbox.ui-disabled {
  background: #F5F6FA;
}
.app-component-checkbox input {
  display: none;
}
.app-component-checkbox.-checked {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2196f3;
  border: 1px solid #2196f3;
}
.app-component-checkbox.-checked [data-object-name$="-icon"] svg {
  display: block;
  height: 15px;
  width: 13px;
}
.app-component-checkbox.-checked [data-object-name$="-icon"] svg path {
  fill: #FFFFFF;
}
.app-component-checkbox.-checked.-third-state [data-object-name$="-icon"] svg {
  display: block;
  height: 15px;
  width: 13px;
}
.app-component-checkbox.-checked.-third-state [data-object-name$="-icon"] svg path {
  fill: #FFFFFF;
}
.app-component-input-type-file {
  cursor: pointer;
}
.app-component-input-type-file > input[type=file] {
  display: none;
}
.app-component-image-view-window .app-component-window-content {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 180px);
}
.app-component-image-view-window .app-component-window-content .content-container {
  padding: 20px 30px;
  overflow: auto;
}
.app-component-image-view-window .app-component-window-content .content-container .text-description-before {
  padding-bottom: 10px;
}
.app-component-image-view-window .app-component-window-content .content-container .text-description-after {
  padding-bottom: 10px;
}
.app-component-image-view-window .app-component-window-content .image-container {
  padding-bottom: 10px;
}
.app-component-image-view-window .app-component-window-content .buttons-container {
  display: flex;
  align-items: center;
  height: 60px;
  background: #F6F7F9;
  box-shadow: inset 0 1px 0 #D1D7E9;
  padding-left: 30px;
  min-height: 60px;
}
.app-component-image-view-window .app-component-window-content .buttons-container .app-component-image-view-window-close-button {
  background: #FFFFFF;
  border: 1px solid #D1D7E9;
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(153, 153, 153, 0.1);
  border-radius: 2px;
  color: #435466;
  width: 76px;
  height: 32px;
  cursor: pointer;
}
.app-progress-bar-component {
  width: 100%;
}
.app-progress-bar-component .app-progress-bar-container-component {
  height: 10px;
  width: 100%;
}
.app-progress-bar-component .app-progress-bar-container-component .app-progress-bar-progress-component {
  transition: width 0.2s;
  height: 100%;
  width: 0;
  min-width: 0;
  max-width: 100%;
  background: #DEE0E4;
}
.app-buttongroup-component {
  align-items: center;
  justify-content: flex-start;
}
.app-buttongroup-component.app-component-shown {
  display: flex;
}
.app-togglebox-component {
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.app-togglebox-component.app-component-shown {
  display: flex;
}
.app-togglebox-component .toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ADB2C2;
  border-radius: 45px;
  margin-right: 6px;
  width: 20px;
  height: 12px;
  padding: 2px;
}
.app-togglebox-component .toggle .box {
  background: #FFFFFF;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
.app-togglebox-component .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-togglebox-component.-selected .toggle {
  background: #0095FF;
  border-radius: 45px;
  justify-content: flex-end;
}
.app-contextmenu-component {
  position: absolute;
  left: 0;
  top: 0;
  cursor: default;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  background: #444855;
  box-shadow: 0 1px 4px rgba(68, 72, 85, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 10px 0 10px 0;
  margin-top: 5px;
}
.app-contextmenu-component.app-component-shown {
  display: flex;
  animation-name: fadein;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.app-contextmenu-component .app-contextmenu-component-submenu {
  position: absolute;
  left: 0;
  top: 0;
  cursor: default;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  background: #444855;
  box-shadow: 0 1px 4px rgba(68, 72, 85, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 10px 0 10px 0;
  margin-top: 5px;
}
.app-contextmenu-component .app-contextmenu-component-submenu.app-component-shown {
  display: flex;
  animation-name: fadein;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.app-contextmenu-component .app-contextmenu-item-component {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  padding: 10px 20px 10px 20px;
}
.app-contextmenu-component .app-contextmenu-item-component:hover {
  background: #2f323a;
}
.app-contextmenu-component .app-contextmenu-item-component [data-object-name$="-icon"] {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}
.app-contextmenu-component .app-contextmenu-item-component [data-object-name$="-arrow"] {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
.app-contextmenu-component .app-contextmenu-item-component .app-component-textspan {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  white-space: nowrap;
}
.app-contextmenu-component .app-sub-contextmenu-item-component {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding: 10px 20px 10px 20px;
  position: absolute;
  top: 100px;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
  background: #444855;
  box-shadow: 0 1px 4px rgba(68, 72, 85, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  margin-top: 5px;
}
.app-contextmenu-component .app-sub-contextmenu-item-component:hover {
  background: #2f323a;
}
.app-contextmenu-component .app-sub-contextmenu-item-component .app-component-icon {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}
.app-contextmenu-component .app-sub-contextmenu-item-component .app-component-textspan {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.app-contextmenu-component.app-context-menu-white {
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(44, 48, 59, 0.1), 0 4px 12px rgba(44, 48, 59, 0.15);
}
.app-contextmenu-component.app-context-menu-white .app-contextmenu-item-component {
  padding: 8px 12px;
}
.app-contextmenu-component.app-context-menu-white .app-contextmenu-item-component .app-component-textspan {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #14151A;
}
.app-contextmenu-component.app-context-menu-white .app-contextmenu-item-component:hover {
  background: #0095FF;
}
.app-contextmenu-component.app-context-menu-white .app-contextmenu-item-component:hover .app-component-textspan {
  color: #ffffff;
}
.app-notices-component {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 384px;
}
.app-notices-component .app-component-list {
  padding: 0px 20px;
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 20px);
}
.app-notices-component .app-component-list-group > div {
  padding: 0px;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default) {
  transition: all 0.3s;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 100%;
  border-bottom: 0px;
  box-shadow: 0px 1px 4px rgba(44, 48, 59, 0.3), 0px 4px 12px rgba(44, 48, 59, 0.35);
  border-radius: 3px;
  padding: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
  padding-right: 50px;
  opacity: 0;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-notice-icon-component {
  position: absolute;
  right: 10px;
  top: 10px;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-notice-icon-component svg {
  width: 16px;
  height: 16px;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-notice-icon-component svg path {
  fill: #ffffff;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-success-component {
  position: relative;
  opacity: 1;
  margin-left: 0px;
  background: #00B333;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-success-component:hover, .app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-success-component.app-component-selected {
  background: #00B333;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-error-component {
  position: relative;
  opacity: 1;
  background: #ED3545;
  margin-left: 0px;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-error-component:hover, .app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-error-component.app-component-selected {
  background: #ED3545;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-warning-component {
  position: relative;
  margin-left: 0px;
  opacity: 1;
  background: #FF6A00;
}
.app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-warning-component:hover, .app-notices-component .app-component-list-group .app-component-list-item:not(.disable-default).app-notice-warning-component.app-component-selected {
  background: #FF6A00;
}
.app-component-popup-list-component {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 1px 4px rgba(44, 48, 59, 0.1), 0px 4px 12px rgba(44, 48, 59, 0.15);
  max-height: 250px;
  padding-bottom: 0px;
}
.app-component-popup-list-component.-up {
  box-shadow: 0px -1px 4px rgba(44, 48, 59, 0.1), 0px -4px 12px rgba(44, 48, 59, 0.15);
}
.app-component-popup-list-component.app-component-shown {
  animation-name: fadein;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.app-component-popup-list-component .app-component-list-group > div {
  padding: 0px;
}
.app-component-popup-list-component .app-component-list-group > span:empty {
  display: none;
}
.app-component-popup-list-component .app-component-list-group .app-component-list-item:not(.disable-default) {
  padding: 6px 12px;
  border-bottom: 0px;
}
.app-component-popup-list-component .app-component-list-group .app-component-list-item:not(.disable-default):hover {
  background: #e4f4ff;
}
.app-component-popup-list-component .app-component-list-group .app-component-list-item:not(.disable-default).app-component-selected {
  background: #0095FF;
  color: #fff;
}
.app-component-popup-list-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-popup-list-item-content {
  display: flex;
  align-items: center;
  justify-content: stretch;
  width: 100%;
}
.app-component-popup-list-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-popup-list-item-content > div {
  flex: 1 1;
}
.app-component-popup-list-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-popup-list-item-content > svg {
  display: none;
  flex: 0 0 12px;
}
.app-component-popup-list-component .app-component-list-group .app-component-list-item:not(.disable-default).app-component-selected .app-popup-list-item-content > svg {
  display: block;
}
.app-selector-component {
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
}
.app-selector-component.app-component-shown {
  display: flex;
}
.app-selector-component .arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 10px;
  align-self: stretch;
}
.app-selector-component .app-input-component {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 5px 2px 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
  position: relative;
}
.app-selector-component .app-input-component input {
  padding: 0;
}
.app-selector-component.app-component-readonly input {
  cursor: pointer;
  user-select: none;
}
.app-date-selector-component {
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  background: #ffffff;
  border: 1px solid #d9dce3;
  border-radius: 3px;
}
.app-date-selector-component .ui-hidden {
  display: none;
}
.app-date-selector-component.app-component-shown {
  display: flex;
}
.app-date-selector-component .app-component-icon {
  width: 20px;
  height: 20px;
}
.app-date-selector-component .app-component-icon svg {
  width: 20px;
  height: 20px;
}
.app-date-selector-component input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}
.app-date-selector-component input[type=date]::-webkit-input-placeholder {
  visibility: hidden !important;
}
.app-date-selector-component input {
  flex: 1 1 100%;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
  height: 30px;
}
.app-date-selector-popup-component {
  background-color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  position: absolute;
  padding: 15px;
  margin-top: 5px;
  border-radius: 5px;
  top: 100%;
  left: 0px;
  width: 218px;
}
.app-date-selector-popup-component.-up {
  margin-top: -1px;
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.18);
}
.app-date-selector-popup-component.app-component-shown {
  animation-name: fadein;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.app-date-selector-popup-component table {
  border-spacing: 1;
  border-collapse: collapse;
  margin-bottom: 10px;
  table-layout: fixed;
}
.app-date-selector-popup-component table:last-child {
  margin-bottom: 0px;
}
.app-date-selector-popup-component td {
  width: 20px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
  padding: 7px 5px 5px;
  white-space: nowrap;
}
.app-date-selector-popup-component tbody td, .app-date-selector-popup-component tfoot td {
  cursor: pointer;
}
.app-date-selector-popup-component tbody td:not(.ntm), .app-date-selector-popup-component tfoot td:not(.ntm) {
  border-radius: 3px;
}
.app-date-selector-popup-component tbody td:not(.ntm):hover, .app-date-selector-popup-component tfoot td:not(.ntm):hover {
  background: #e4f4ff;
}
.app-date-selector-popup-component tbody td.current, .app-date-selector-popup-component tfoot td.current {
  background-color: #4295fa;
  color: #ffffff;
}
.app-date-selector-popup-component tbody td.current:hover, .app-date-selector-popup-component tfoot td.current:hover {
  background-color: #4295fa;
}
.app-date-selector-popup-component tbody td.today, .app-date-selector-popup-component tfoot td.today {
  box-shadow: 0px 0px 0px 1px #cccccc inset;
}
.app-date-selector-popup-component tbody td:not(.ntm) {
  font-weight: 600;
}
.app-date-selector-popup-component tfoot td {
  font-weight: normal;
}
.app-date-selector-popup-component thead td {
  color: #435466;
}
.app-date-selector-popup-component .calendar__dropdown-pickerheader table {
  width: 100%;
}
.app-date-selector-popup-component .calendar__dropdown-pickerheader td {
  cursor: pointer;
  float: none;
}
.app-date-selector-popup-component .calendar__dropdown-pickerheader .calendar__dropdown-pickerheader_title {
  width: auto;
  text-transform: capitalize;
}
.app-date-selector-popup-component [data-object-name="date-picker"] tbody td:not(.ntm) {
  cursor: pointer;
}
.app-date-selector-popup-component [data-object-name="date-picker"] tfoot td {
  cursor: pointer;
}
.app-date-selector-popup-component [data-object-name="month-picker"] tbody td {
  cursor: pointer;
  height: 38px;
  width: 45px;
}
.app-date-selector-popup-component [data-object-name="month-picker"] tfoot td {
  cursor: pointer;
}
.app-date-selector-popup-component [data-object-name="year-picker"] tbody td {
  cursor: pointer;
  width: 90px;
}
.app-date-selector-popup-component [data-object-name="year-picker"] tfoot td {
  cursor: pointer;
}
.app-date-selector-popup-component-timepicker table {
  width: 100%;
}
.app-component-switcher {
  align-items: center;
  justify-content: flex-start;
}
.app-component-switcher.app-component-shown {
  display: flex;
}
.app-component-switcher .text {
  margin-right: 10px;
}
.app-component-switcher .prev-button {
  margin-right: 10px;
}
.app-component-switcher .prev-button, .app-component-switcher .next-button {
  cursor: pointer;
  color: #7D859B;
}
.app-component-switcher .prev-button.disabled, .app-component-switcher .next-button.disabled {
  cursor: no-drop;
}
.app-component-switcher .prev-button.disabled > svg > path, .app-component-switcher .next-button.disabled > svg > path {
  stroke: #C4C8D4;
}
.app-component-files-drag-and-drop {
  width: 100%;
  border-radius: 5px;
  background: #F5F6FA;
  height: 35px;
}
.app-component-files-drag-and-drop > input[type=file] {
  display: none;
}
.app-component-files-drag-and-drop.-validation-error > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] {
  justify-content: center;
}
.app-component-files-drag-and-drop.-validation-error > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-title"] {
  color: #EB5757;
}
.app-component-files-drag-and-drop.-validation-error > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-upload-icon"] svg path {
  fill: #EB5757;
}
.app-component-files-drag-and-drop.-active > [data-object-name$="-drop-container"], .app-component-files-drag-and-drop:hover > [data-object-name$="-drop-container"] {
  border: 1px dashed #0095FF;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: 1px dashed #C4C8D4;
  border-radius: 5px;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] {
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  justify-content: left;
  align-items: center;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"].app-component-shown {
  display: flex;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-upload-icon"] {
  margin-right: 10px;
  padding: 0;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-upload-icon"] svg {
  display: block;
  height: 14px;
  width: 13px;
  transform: rotate(180deg);
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-upload-icon"] svg path {
  fill: #0095FF;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-title"] {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #0095FF;
  margin: 0;
  padding: 0;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-title"].app-component-shown {
  display: block;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-extensions"] {
  margin-left: auto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  color: #828282;
}
.app-component-files-drag-and-drop > [data-object-name$="-drop-container"] > [data-object-name$="-title-container"] > [data-object-name$="-extensions"].app-component-shown {
  display: block;
}
@keyframes slideUp {
  0% {
    margin-bottom: -200px;
  }
  100% {
    margin-bottom: 0px;
  }
}
@keyframes slideDown {
  0% {
    margin-bottom: 0px;
    opacity: 1;
  }
  100% {
    margin-bottom: -200px;
    display: none;
    opacity: 0;
  }
}
.app-mass-actions-menu-component {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  display: flex;
  border-top: 1px solid rgba(67, 84, 102, 0.1);
  background: #ffffff;
  padding: 20px 30px;
  width: 100%;
  justify-content: left;
  align-items: center;
  animation-name: slideDown;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
}
.app-mass-actions-menu-component.app-component-shown {
  display: flex;
  animation-name: slideUp;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
}
.app-mass-actions-menu-component > [data-object-name$="-actions-container"] {
  margin-right: 20px;
  align-items: center;
}
.app-mass-actions-menu-component > [data-object-name$="-actions-container"].app-component-shown {
  display: flex;
}
.app-mass-actions-menu-component > [data-object-name$="-actions-container"] > .app-mass-actions-menu-action-component {
  margin-right: 10px;
}
.app-mass-actions-menu-component > [data-object-name$="-actions-container"] > .app-mass-actions-menu-action-component:last-child {
  margin-right: 0;
}
.app-mass-actions-menu-component > [data-object-name$="-selected-counter"] {
  color: #9DA5BE;
  align-items: center;
}
.app-mass-actions-menu-component > [data-object-name$="-selected-counter"].app-component-shown {
  display: flex;
}
.app-tooltip-component {
  z-index: 10000;
  position: fixed;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(44, 48, 59, 0.6);
  border-radius: 5px;
  color: white;
  font-size: 22px;
  padding: 20px;
  max-width: 350px;
  padding-right: 50px;
}
.app-tooltip-component > em {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 15px;
}
.app-tooltip-component.left-top > em {
  border-top-color: rgba(44, 48, 59, 0.6);
  border-bottom-width: 0px;
}
.app-tooltip-component.right-top > em {
  border-top-color: rgba(44, 48, 59, 0.6);
  border-bottom-width: 0px;
}
.app-tooltip-component.right > em {
  border-right-color: rgba(44, 48, 59, 0.6);
  border-left-width: 0px;
}
.app-tooltip-component.left-bottom > em {
  border-bottom-color: rgba(44, 48, 59, 0.6);
  border-top-width: 0px;
}
.app-tooltip-component.right-bottom > em {
  border-bottom-color: rgba(44, 48, 59, 0.6);
  border-top-width: 0px;
}
.app-tooltip-component.left > em {
  border-left-color: rgba(44, 48, 59, 0.6);
  border-right-width: 0px;
}
.app-tooltip-component.app-component-shown {
  display: flex;
  flex-direction: column;
  animation-name: fadein;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.app-tooltip-component .app-component-message-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-tooltip-component .app-component-action-container {
  padding: 10px 0px 0px;
  display: flex;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.app-tooltip-component .app-component-action-container:empty {
  display: none;
}
.app-tooltip-component .app-component-close-button-container {
  width: 100%;
  position: absolute;
  right: 6px;
  top: 6px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  cursor: pointer;
}
.app-component-upload-button {
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  border: 1px solid #D1D7E9;
  width: 160px;
  border-radius: 3px;
  background: #FFFFFF;
  height: 32px;
}
.app-component-upload-button.app-component-shown {
  display: flex;
}
.app-component-upload-button .app-component-icon {
  margin-right: 10px;
}
.app-component-upload-button .app-component-icon:empty {
  display: none;
}
.app-component-upload-button .app-component-textspan {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: inherit;
}
.app-component-upload-button > input[type=file] {
  display: none;
}
.app-component-field {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}
.app-component-field.app-component-field-hidden {
  display: none;
}
.app-component-field > [data-object-name$="-title"] {
  padding-bottom: 0px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #5B6173;
  display: block;
  height: 32px;
}
.app-component-field > [data-object-name$="-title"]:empty {
  display: none;
}
.app-component-field.app-component-disabled [data-object-name$="-content"] > [data-object-name$="-container"] {
  opacity: 0.5;
}
.app-component-field > [data-object-name$="-content"] {
  flex-direction: column;
}
.app-component-field > [data-object-name$="-content"] > [data-object-name$="-container"] {
  width: 100%;
}
.app-component-field > [data-object-name$="-content"] > [data-object-name$="-message"] {
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #ED3545;
  margin-bottom: 10px;
}
.app-component-field > [data-object-name$="-content"] > [data-object-name$="-message"].app-component-shown {
  display: block;
}
.app-component-field > [data-object-name$="-content"] > [data-object-name$="-message"]:empty {
  display: none;
}
.app-component-field > [data-object-name$="-content"] > [data-object-name$="-note"] {
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #7D859B;
  padding-top: 4px;
}
.app-component-field > [data-object-name$="-content"] > [data-object-name$="-note"]:empty {
  display: none;
}
.app-component-field .app-component-remove-field {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 12px;
  color: #5B6173;
  position: absolute;
  right: 0px;
  top: 0px;
  margin-top: -14px;
  cursor: pointer;
}
.app-component-field.app-field-vertical .app-component-remove-field {
  margin-top: 14px;
}
.app-component-text-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-text-field [data-object-name$="-content"] > [data-object-name$="-container"] input {
  width: 100%;
  background: transparent;
  border: 0px;
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
  color: #000000;
}
.app-component-text-field [data-object-name$="-content"] > [data-object-name$="-container"] input:-internal-autofill-selected {
  background-color: transparent !important;
  color: #000000 !important;
  appearance: auto !important;
}
.app-component-textarea-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-textarea-field [data-object-name$="-content"] > [data-object-name$="-container"] textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0px;
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.app-component-bool-field [data-object-name$="-content"] > [data-object-name$="-container"] input[type="checkbox"] {
  display: none;
}
.app-component-bool-field [data-object-name$="-content"] > [data-object-name$="-container"] label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-component-bool-field [data-object-name$="-content"] > [data-object-name$="-container"] label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 1px solid #C4C8D4;
  border-radius: 2px;
  margin-right: 8px;
}
.app-component-bool-field [data-object-name$="-content"] > [data-object-name$="-container"] input:checked + label {
  position: relative;
}
.app-component-bool-field [data-object-name$="-content"] > [data-object-name$="-container"] input:checked + label:before {
  background: #0095FF;
}
.app-component-bool-field [data-object-name$="-content"] > [data-object-name$="-container"] input:checked + label:after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
  position: absolute;
  left: 7px;
  top: 2px;
}
.app-component-date-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  width: 160px;
}
.app-component-date-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-date-selector-component {
  width: 160px;
  padding: 0px 0px 0px 9px;
}
.app-component-number-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-number-field [data-object-name$="-content"] > [data-object-name$="-container"] input {
  width: 100%;
  background: transparent;
  border: 0px;
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.app-component-email-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-email-field [data-object-name$="-content"] > [data-object-name$="-container"] input {
  width: 100%;
  background: transparent;
  border: 0px;
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.app-component-label-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-label-field [data-object-name$="-content"] > [data-object-name$="-container"] span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-component-file-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}
.app-component-file-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-note"], .app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-message"] {
  width: 100%;
  overflow-wrap: break-word;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-note"].app-component-shown, .app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-message"].app-component-shown {
  display: block;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] {
  width: 100%;
  height: 35px;
  background: #F5F6FA;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] {
  width: 100%;
  height: 100%;
  border: none;
  align-items: center;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"].app-component-shown {
  display: flex;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"] {
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  justify-content: left;
  align-items: center;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"].app-component-shown {
  display: flex;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"] > [data-object-name$="-file-icon"] {
  margin-right: 10px;
  padding: 0;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"] > [data-object-name$="-file-icon"] svg {
  display: block;
  width: 15px;
  height: 14px;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"] > [data-object-name$="-file-icon"] svg path {
  stroke: none;
  fill: #5B6173;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"] > [data-object-name$="-file-title"] {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  height: 19px;
  color: #333333;
  margin: 0;
  padding: 0;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"]:hover > [data-object-name$="-file-icon"] svg path {
  stroke: none;
  fill: #FF6A00;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-file-title-container"]:hover > [data-object-name$="-file-title"] {
  color: #FF6A00;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-remove-icon"] {
  cursor: pointer;
  padding: 10px 15px;
  margin-left: auto;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-remove-icon"] svg {
  display: block;
  width: 9px;
  height: 9px;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-remove-icon"] svg path {
  stroke: #14151A;
  fill: #14151A;
}
.app-component-file-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-file-container"] > [data-object-name$="-remove-icon"]:hover svg path {
  stroke: #FF6A00;
  fill: #FF6A00;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-note"] {
  width: 100%;
  overflow-wrap: break-word;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] {
  border: 1px solid transparent;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list {
  padding: 0px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group {
  padding: 0px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group > div {
  padding: 0px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item {
  padding: 0px;
  margin: 0px 0px 5px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 0px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name] {
  line-height: 0;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="span"] {
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #0076E0;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="delete"] {
  margin-left: 5px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="icon"] {
  margin-right: 4px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-input-type-file {
  border: 0px;
  background: transparent;
  text-align: left;
  padding: 0px;
  margin-left: -1px;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-input-type-file span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #0076E0;
}
.app-component-files-field.-input-file-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-input-type-file.-full span {
  color: #7D859B;
  font-size: 12px;
}
.app-component-files-field.-drop-area-enabled.-reverse > [data-object-name$="-content"] > [data-object-name$="-container"] {
  flex-direction: column-reverse;
}
.app-component-files-field.-drop-area-enabled.-reverse > [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list {
  margin-top: 10px;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] {
  flex-direction: column;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-note"], .app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-message"] {
  width: 100%;
  overflow-wrap: break-word;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-note"].app-component-shown, .app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-message"].app-component-shown {
  display: block;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"] {
  flex-direction: column;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] > [data-object-name$="-container"].app-component-shown {
  display: flex;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"].app-component-shown {
  display: flex;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list {
  max-height: 150px;
  margin-bottom: 10px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 0;
  padding: 0;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group {
  padding: 0;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group > div {
  padding: 0;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item {
  margin: 0;
  padding: 0px;
  border: none;
  justify-content: left;
  align-items: center;
  border-radius: 0;
  background: transparent;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item:hover {
  background: #D6EEFF;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item:last-child {
  margin-bottom: 0;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item.app-component-shown {
  display: flex;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item .files-file-name {
  padding: 8px 0;
  margin-right: auto;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="icon"] {
  margin-right: 10px;
  padding: 8px 0 8px 15px;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="icon"] svg {
  display: block;
  width: 15px;
  height: 14px;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="icon"] svg path {
  stroke: none;
  fill: #5B6173;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="delete"] {
  cursor: pointer;
  margin-left: 10px;
  padding: 10px 15px;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="delete"] svg {
  display: block;
  width: 9px;
  height: 9px;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="delete"] svg path {
  stroke: #14151A;
  fill: #14151A;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="delete"]:hover svg path {
  stroke: #FF6A00;
  fill: #FF6A00;
}
.app-component-files-field.-drop-area-enabled > [data-object-name$="-content"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="sign"] {
  cursor: pointer;
  margin-left: 10px;
  padding: 10px 15px;
  text-decoration: underline;
  color: #0076E0;
}
.app-component-year-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border-radius: 3px;
}
.app-component-year-field [data-object-name$="-content"] > [data-object-name$="-container"] span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-component-monthyear-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-component-monthyear-field [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name="month"] {
  margin-right: 10px;
}
.app-component-link-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-link-field [data-object-name$="-content"] > [data-object-name$="-container"] span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  padding: 0px;
  margin: 0px;
}
.app-component-list-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-list-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list {
  padding-bottom: 0px;
}
.app-component-list-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group {
  padding: 0px;
}
.app-component-list-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group > div {
  padding: 0px;
}
.app-component-list-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group > span:empty {
  display: none;
}
.app-component-list-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item {
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.app-component-password-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-password-field [data-object-name$="-content"] > [data-object-name$="-container"] input {
  width: 100%;
  background: transparent;
  border: 0px;
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.app-component-radio-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
}
.app-component-radio-field [data-object-name$="-content"] > [data-object-name$="-container"] label {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 140%;
}
.app-component-radio-field [data-object-name$="-content"] > [data-object-name$="-container"] label input {
  display: none;
}
.app-component-radio-field [data-object-name$="-content"] > [data-object-name$="-container"] label span {
  display: block;
  padding-bottom: 10px;
  user-select: none;
}
.app-component-radio-field [data-object-name$="-content"] > [data-object-name$="-container"] label span:before {
  content: "";
  width: 22px;
  height: 22px;
  vertical-align: middle;
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #C4C8D4;
  box-sizing: border-box;
  border-radius: 30px;
  margin-right: 10px;
  margin-top: -2px;
}
.app-component-radio-field [data-object-name$="-content"] > [data-object-name$="-container"] label input:checked + span:before {
  border: 7px solid #0095FF;
}
.app-component-period-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  align-items: center;
  justify-content: flex-start;
}
.app-component-period-field [data-object-name$="-content"] > [data-object-name$="-container"].app-component-shown {
  display: flex;
}
.app-component-period-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-date-selector-component {
  width: 160px;
  padding: 0px 0px 0px 9px;
  margin-right: 10px;
}
.app-component-checkbox-field .app-component-checkbox {
  margin-right: 12px;
}
.app-component-checkbox-field [data-object-name$="-container"] {
  align-items: center;
  justify-content: flex-start;
}
.app-component-checkbox-field [data-object-name$="-container"].app-component-shown {
  display: flex;
}
.app-component-passport-field {
  justify-content: flex-start;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
  flex-direction: row;
  width: 100%;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] .app-component-shown {
  display: flex;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] > div {
  width: 70%;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] > div:first-child {
  width: 30%;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] > div span {
  position: absolute;
  z-index: 1;
  height: 100%;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] > div input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #d9dce3;
  padding: 5px 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
  color: #000000;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] > div input:-internal-autofill-selected {
  background-color: transparent !important;
  color: #000000 !important;
  appearance: auto !important;
}
.app-component-passport-field [data-object-name$="-content"] > [data-object-name$="-container"] > div:last-child input {
  border-left: 0px;
  padding-left: 30px;
}
.app-component-filelabel-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  background: #FFFFFF;
  border-radius: 3px;
  overflow: hidden;
}
.app-component-filelabel-field [data-object-name$="-content"] > [data-object-name$="-container"] > div {
  border: 1px solid;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.app-component-filelabel-field [data-object-name$="-content"] > [data-object-name$="-container"] > div span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-component-filelabel-field [data-object-name$="-content"] > [data-object-name$="-container"] > div a {
  color: #0076E0;
}
.app-component-filelabel-field.-success [data-object-name$="-content"] > [data-object-name$="-container"] > div {
  background: rgba(0, 179, 51, 0.1);
}
.app-component-filelabel-field.-success [data-object-name$="-content"] > [data-object-name$="-container"] > div span {
  color: #000000;
}
.app-component-object-field {
  padding-bottom: 0px;
}
.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  width: 100%;
  align-items: flex-start;
  justify-content: stretch;
}
.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"].app-component-shown {
  display: flex;
}
.app-component-object-field.app-field-vertical > [data-object-name$="-content"] > [data-object-name$="-container"] {
  padding-top: 10px;
  flex-wrap: wrap;
}
.app-component-object-field.app-field-wrap > [data-object-name$="-content"] > [data-object-name$="-container"] {
  flex-wrap: wrap;
}
.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field:not(:last-child) {
  margin-right: 5px;
}
.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] .break {
  width: 100%;
  height: 0px;
}
.app-component-object-field.app-merged-object-component [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field:not(:last-child) {
  margin-right: -1px;
}
.app-component-object-field.app-merged-object-component [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field:not(:last-child) [data-object-name$="-content"] > [data-object-name$="-container"] {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.app-component-object-field.app-merged-object-component [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field:not(:first-child) [data-object-name$="-content"] > [data-object-name$="-container"] {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.app-component-array-field [data-object-name="add-new"] {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #0076E0;
  cursor: pointer;
}
.app-component-array-field > [data-object-name$="-title"] {
  color: #14151A;
  font-weight: 600;
  font-size: 20px;
}
.app-component-array-field .array-component-container .app-component-object-field {
  margin-bottom: 0px;
}
.app-component-array-field .array-component-container .app-component-object-field:only-child .app-component-remove-field {
  display: none;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] {
  flex-direction: column;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"].app-component-shown {
  display: flex;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-add-object-button"] {
  margin: 10px 0;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-container-grid"] {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 50px;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-container-grid"] [data-object-name^="controls_column"] {
  width: 0;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-container-grid"] .app-ui-column {
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 45px;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-container-grid"] .app-ui-column.-collapsed {
  width: 0;
  padding: 0;
  overflow: hidden;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-container-grid"] .app-ui-row-cell {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 35px;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-container-grid"] [data-object-name$="-grid-norows"] {
  align-items: flex-start;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-split"] {
  width: 100%;
}
.app-component-array-grid-field > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-split"] .app-component-split-left {
  flex: 0 0 100%;
}
.app-component-array-grid-field.-split-view > [data-object-name$="-content"] > [data-object-name$="-container"] > [data-object-name$="-add-object-button"] {
  margin: -37px 0 0 5px;
  z-index: 4;
}
.app-component-array-grid-field .app-component-array-grid-split-window {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] {
  position: sticky;
  top: 0;
  z-index: 1;
  justify-content: flex-start;
  border-bottom: 1px solid #EAEBF1;
  background-color: #ffffff;
  height: 45px;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"].app-component-shown {
  display: flex;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] > [data-object-name$="-header"] {
  align-items: center;
  padding: 10px 0 10px 20px;
  margin-right: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] > [data-object-name$="-header"].app-component-shown {
  display: flex;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] > [data-object-name$="-header"]:empty {
  display: none;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] > [data-object-name$="-close-button-container"] {
  margin: 0 0 0 auto;
  padding: 0;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] > [data-object-name$="-close-button-container"] > [data-object-name$="-close-button"] {
  cursor: pointer;
  padding: 16px;
  margin-left: auto;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] > [data-object-name$="-close-button-container"] > [data-object-name$="-close-button"] svg {
  display: block;
  width: 12px;
  height: 12px;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-header-container"] > [data-object-name$="-close-button-container"] > [data-object-name$="-close-button"] svg path {
  stroke: #14151A;
  fill: #14151A;
}
.app-component-array-grid-field .app-component-array-grid-split-window > [data-object-name$="-content-container"] {
  height: 100%;
  padding: 20px;
}
.app-loading-component {
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
}
.app-loading-component.app-component-shown {
  display: flex;
}
.app-loading-component svg {
  animation: 2s linear 0s infinite normal rotateInfiniteAnimation;
}
.app-loading-component svg path {
  stroke: #ffffff;
}
.app-loading-container-component {
  position: fixed;
  z-index: 100502;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  align-items: center;
  justify-content: center;
}
.app-loading-container-component.app-component-shown {
  display: flex;
}
.app-loading-container-component > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -4%;
}
.app-loading-container-component > div .app-progress-bar-container-component {
  margin-top: 24px;
  width: 160px;
  background: #D9DCE3;
  border-radius: 5px;
  height: 4px;
}
.app-loading-container-component > div .app-progress-bar-container-component .app-progress-bar-progress-component {
  height: 4px;
  background: #1B9546;
  border-radius: 5px;
}
.app-loading-container-component .bo {
  display: block;
}
.app-loading-container-component .gbs {
  display: none;
}
.app-loading-container-component.gbs-shader > div .app-progress-bar-container-component .app-progress-bar-progress-component {
  background: #E21F27;
}
.app-loading-container-component.gbs-shader .bo {
  display: none;
}
.app-loading-container-component.gbs-shader .gbs {
  display: block;
}
.app-shader-component {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.app-success-button-component {
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  background: #50C14E;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  height: 32px;
}
.app-success-button-component.app-component-shown {
  display: flex;
}
.app-success-button-component .app-component-icon {
  margin-right: 10px;
}
.app-success-button-component .app-component-textspan {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
}
.app-success-button-component.ui-disabled, .app-success-button-component:disabled {
  background: #C4C8D4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: default;
}
.app-success-button-component.ui-disabled .app-component-textspan, .app-success-button-component:disabled .app-component-textspan {
  color: #ffffff;
}
.app-gray-button-component {
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  background: #9DA5BE;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  height: 32px;
}
.app-gray-button-component.app-component-shown {
  display: flex;
}
.app-gray-button-component .app-component-icon {
  margin-right: 10px;
}
.app-gray-button-component .app-component-textspan {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}
.app-gray-button-component.ui-disabled, .app-gray-button-component:disabled {
  background: #C4C8D4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: default;
}
.app-gray-button-component.ui-disabled .app-component-textspan, .app-gray-button-component:disabled .app-component-textspan {
  color: #ffffff;
}
.app-error-button-component {
  align-items: center;
  justify-content: center;
  background: #ED3545;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  border-radius: 3px;
  height: 32px;
}
.app-error-button-component.app-component-shown {
  display: flex;
}
.app-error-button-component .app-component-icon {
  margin-right: 10px;
}
.app-error-button-component .app-component-textspan {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
}
.app-error-button-component.ui-disabled, .app-error-button-component:disabled {
  background: #C4C8D4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: default;
}
.app-error-button-component.ui-disabled .app-component-textspan, .app-error-button-component:disabled .app-component-textspan {
  color: #ffffff;
}
.app-simple-button-component {
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #D1D7E9;
  box-sizing: border-box;
  border-radius: 3px;
  height: 32px;
  color: #14151A;
}
.app-simple-button-component.app-component-shown {
  display: flex;
}
.app-simple-button-component .app-component-icon {
  margin-right: 10px;
}
.app-simple-button-component .app-component-icon:empty {
  display: none;
}
.app-simple-button-component .app-component-textspan {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: inherit;
}
.app-simple-button-component.ui-disabled, .app-simple-button-component:disabled {
  background: #C4C8D4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: default;
}
.app-simple-button-component.ui-disabled .app-component-textspan, .app-simple-button-component:disabled .app-component-textspan {
  color: #ffffff;
}
.app-outline-blue-button-component {
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #4CB5FF;
  box-sizing: border-box;
  border-radius: 3px;
  height: 32px;
}
.app-outline-blue-button-component.app-component-shown {
  display: flex;
}
.app-outline-blue-button-component .app-component-icon {
  margin-right: 10px;
}
.app-outline-blue-button-component .app-component-textspan {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #4CB5FF;
}
.app-outline-blue-button-component.ui-disabled, .app-outline-blue-button-component:disabled {
  background: #C4C8D4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: default;
}
.app-outline-blue-button-component.ui-disabled .app-component-textspan, .app-outline-blue-button-component:disabled .app-component-textspan {
  color: #ffffff;
}
.app-indicator-component {
  width: 19px;
  height: 19px;
  background: #C4C8D4;
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 1px;
  text-align: center;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.app-indicator-component.app-component-shown {
  display: flex;
}
.app-confirm-dialog-component .confirm-dialog-window-container {
  padding: 16px 32px;
}
.app-confirm-dialog-component .confirm-dialog-window-container .app-component-textspan {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-confirm-dialog-component .confirm-dialog-window-footer {
  display: flex;
  align-items: center;
  margin-top: 0;
  background: #F5F6FA;
  border-top: 1px solid #D9DCE3;
  padding: 16px 32px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.app-confirm-dialog-component .confirm-dialog-window-footer button {
  margin-right: 10px;
}
.app-confirm-dialog-component .confirm-dialog-window-footer button.app-success-button-component {
  width: 110px;
}
.app-confirm-dialog-component .confirm-dialog-window-footer button.app-simple-button-component {
  width: 78px;
}
.app-alert-dialog-component .alert-dialog-window-container {
  padding: 16px 32px;
}
.app-alert-dialog-component .alert-dialog-window-container .app-component-textspan {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-alert-dialog-component .alert-dialog-window-footer {
  display: flex;
  align-items: center;
  margin-top: 0;
  background: #F5F6FA;
  border-top: 1px solid #D9DCE3;
  padding: 16px 32px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.app-alert-dialog-component .alert-dialog-window-footer button {
  margin-right: 10px;
}
.app-alert-dialog-component .alert-dialog-window-footer button.app-success-button-component {
  width: 110px;
}
.app-alert-dialog-component .alert-dialog-window-footer button.app-simple-button-component {
  width: 78px;
}
.app-read-unread-badge-component {
  width: 8px;
  height: 8px;
  background: #2386FF;
  border-radius: 50%;
}
.app-read-unread-badge-component .app-component-shown {
  display: block;
}
.app-read-unread-badge-component.app-is-read-component {
  background: transparent;
}
.app-read-unread-badge-component {
  width: 8px;
  height: 8px;
  background: #2386FF;
  border-radius: 50%;
}
.app-read-unread-badge-component .app-component-shown {
  display: block;
}
.app-read-unread-badge-component.app-is-read-component {
  background: transparent;
}
.app-file-viewer-component {
  width: 100%;
  justify-content: center;
}
.app-file-viewer-component.app-component-shown {
  display: flex;
}
.app-file-viewer-component .app-component-icon {
  cursor: pointer;
}
.app-files-viewer-component {
  border-radius: 3px;
  overflow: hidden;
}
.app-files-viewer-component [data-object-name="viewer-list"] {
  padding: 0px;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group {
  padding: 0px;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group > div {
  padding: 0px;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item {
  padding: 0px;
  margin: 0px 0px 5px;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item:not(.disable-default):hover, .app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item:not(.disable-default).app-component-selected {
  background: transparent;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item [data-object-name] {
  line-height: 0;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item [data-object-name="span"] {
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #0076E0;
  text-overflow: ellipsis;
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item [data-object-name="span"].gray {
  color: #000000;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item [data-object-name="delete"] {
  margin-left: 5px;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item [data-object-name="icon"] {
  margin-right: 4px;
}
.app-files-viewer-component [data-object-name="viewer-list"] .app-component-list-group .app-component-list-item:only-child {
  margin: 0px;
}
.app-link-viewer-component {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-link-viewer-component [data-object-name="span"] {
  padding-left: 4px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #0076E0;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}
.appapp-select-viewer-component {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.app-fields-viewer-component .app-field-pane {
  padding: 0px 0px 10px 0px;
}
.app-fields-viewer-component .app-field-pane .app-field-title {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #5B6173;
  padding-bottom: 5px;
}
.app-fields-viewer-component .app-field-pane .app-field-title.app-component-shown {
  display: block;
}
.app-fields-viewer-component .app-field-pane .app-field-container {
  color: #14151A;
}
.app-fields-viewer-component .app-field-pane .app-field-container .app-field-pane {
  padding-bottom: 0px;
}
.appapp-text-viewer-component {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.appapp-textarea-viewer-component {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.appapp-bool-viewer-component {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.appapp-bool-viewer-component {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.app-monthyear-viewer-component {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.app-monthyear-viewer-component.strong {
  font-weight: bold;
}
.app-monthyear-viewer-component.italic {
  font-style: italic;
}
.app-monthyear-viewer-component.underline {
  text-decoration: underline;
}
.app-monthyear-viewer-component.uppercase {
  text-transform: uppercase;
}
.app-monthyear-viewer-component.inline.app-component-shown {
  display: inline;
}
.app-year-viewer-component {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.app-year-viewer-component.strong {
  font-weight: bold;
}
.app-year-viewer-component.italic {
  font-style: italic;
}
.app-year-viewer-component.underline {
  text-decoration: underline;
}
.app-year-viewer-component.uppercase {
  text-transform: uppercase;
}
.app-year-viewer-component.inline.app-component-shown {
  display: inline;
}
.app-period-viewer-component.strong {
  font-weight: bold;
}
.app-period-viewer-component.italic {
  font-style: italic;
}
.app-period-viewer-component.underline {
  text-decoration: underline;
}
.app-period-viewer-component.uppercase {
  text-transform: uppercase;
}
.app-period-viewer-component.inline.app-component-shown {
  display: inline;
}
.app-gridfile-viewer-component {
  width: 100%;
  justify-content: center;
}
.app-gridfile-viewer-component.app-component-shown {
  display: flex;
}
.app-gridfile-viewer-component .app-component-icon {
  cursor: pointer;
}
.app-gridfile-viewer-component .app-contextmenu-icon-component {
  position: static !important;
  flex: none !important;
  right: unset !important;
  top: unset !important;
}
.app-gridfile-viewer-component .app-contextmenu-icon-component.-selected, .app-gridfile-viewer-component .app-contextmenu-icon-component:hover {
  background: transparent !important;
}
.app-gridfile-viewer-component .app-contextmenu-icon-component.-selected .app-component-icon, .app-gridfile-viewer-component .app-contextmenu-icon-component:hover .app-component-icon {
  background: transparent !important;
}
.app-checkbox-viewer-component {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-email-editor-component {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #EAEBF1;
  border-radius: 3px;
  overflow: hidden;
  padding: 5px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.app-email-editor-component.-invalid {
  background: rgba(237, 53, 69, 0.2);
}
.app-files-editor-component {
  border-radius: 3px;
  overflow: hidden;
  padding-left: 6px;
}
.app-files-editor-component [data-object-name="files-list"] {
  padding: 0px;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group {
  padding: 0px;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group > div {
  padding: 0px;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item {
  padding: 0px;
  margin: 0px 0px 5px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item:not(.disable-default):hover, .app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item:not(.disable-default).app-component-selected {
  background: transparent;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item [data-object-name] {
  line-height: 0;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item [data-object-name="span"] {
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #0076E0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-right: auto;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item [data-object-name="sign"] {
  cursor: pointer;
  margin-left: 10px;
  padding: 10px 15px;
  text-decoration: underline;
  color: #0076E0;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item [data-object-name="delete"] {
  margin-left: 10px;
  margin-right: 10px;
}
.app-files-editor-component [data-object-name="files-list"] .app-component-list-group .app-component-list-item [data-object-name="icon"] {
  margin-right: 4px;
}
.app-files-editor-component .app-component-input-type-file {
  border: 0px;
  background: transparent;
  text-align: left;
  padding: 0px;
  margin-left: -1px;
  height: 27px;
}
.app-files-editor-component .app-component-input-type-file span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #0076E0;
}
.app-link-editor-component {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-link-editor-component [data-object-name="span"] {
  padding-left: 4px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #0076E0;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-LightIt.eot");
  src: local("Proxima Nova Condensed Light Italic"), local("ProximaNovaCond-LightIt"), url("/res/fonts/proxima-nova/ProximaNovaCond-LightIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-LightIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-LightIt.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-LightIt.eot");
  src: local("Proxima Nova Light Italic"), local("ProximaNova-LightIt"), url("/res/fonts/proxima-nova/ProximaNova-LightIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-LightIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-LightIt.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-Regular.eot");
  src: local("Proxima Nova Condensed Regular"), local("ProximaNovaCond-Regular"), url("/res/fonts/proxima-nova/ProximaNovaCond-Regular.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-Regular.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-Extrabld.eot");
  src: local("Proxima Nova Extrabold"), local("ProximaNova-Extrabld"), url("/res/fonts/proxima-nova/ProximaNova-Extrabld.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-Extrabld.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-Extrabld.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-Black.eot");
  src: local("Proxima Nova Condensed Black"), local("ProximaNovaCond-Black"), url("/res/fonts/proxima-nova/ProximaNovaCond-Black.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-Black.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-ExtrabldIt.eot");
  src: local("Proxima Nova Condensed Extrabold Italic"), local("ProximaNovaCond-ExtrabldIt"), url("/res/fonts/proxima-nova/ProximaNovaCond-ExtrabldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-ExtrabldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-ExtrabldIt.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-Regular.eot");
  src: local("Proxima Nova Regular"), local("ProximaNova-Regular"), url("/res/fonts/proxima-nova/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-Regular.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-Semibold.eot");
  src: local("Proxima Nova Semibold"), local("ProximaNova-Semibold"), url("/res/fonts/proxima-nova/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-Semibold.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-Thin.eot");
  src: local("Proxima Nova Extra Condensed Thin"), local("ProximaNovaExCn-Thin"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Thin.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Thin.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-Semibold.eot");
  src: local("Proxima Nova Condensed Semibold"), local("ProximaNovaCond-Semibold"), url("/res/fonts/proxima-nova/ProximaNovaCond-Semibold.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-Semibold.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-SemiboldIt.eot");
  src: local("Proxima Nova Extra Condensed Semibold Italic"), local("ProximaNovaExCn-SemiboldIt"), url("/res/fonts/proxima-nova/ProximaNovaExCn-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-SemiboldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-SemiboldIt.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-Semibold.eot");
  src: local("Proxima Nova Extra Condensed Semibold"), local("ProximaNovaExCn-Semibold"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Semibold.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Semibold.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-ThinIt.eot");
  src: local("Proxima Nova Thin Italic"), local("ProximaNova-ThinIt"), url("/res/fonts/proxima-nova/ProximaNova-ThinIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-ThinIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-ThinIt.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-Thin.eot");
  src: local("Proxima Nova Condensed Thin"), local("ProximaNovaCond-Thin"), url("/res/fonts/proxima-nova/ProximaNovaCond-Thin.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-Thin.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-RegularIt.eot");
  src: local("Proxima Nova Condensed Regular Italic"), local("ProximaNovaCond-RegularIt"), url("/res/fonts/proxima-nova/ProximaNovaCond-RegularIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-RegularIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-RegularIt.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-ThinIt.eot");
  src: local("Proxima Nova Extra Condensed Thin Italic"), local("ProximaNovaExCn-ThinIt"), url("/res/fonts/proxima-nova/ProximaNovaExCn-ThinIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-ThinIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-ThinIt.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-SemiboldIt.eot");
  src: local("Proxima Nova Semibold Italic"), local("ProximaNova-SemiboldIt"), url("/res/fonts/proxima-nova/ProximaNova-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-SemiboldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-SemiboldIt.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-RegularIt.eot");
  src: local("Proxima Nova Regular Italic"), local("ProximaNova-RegularIt"), url("/res/fonts/proxima-nova/ProximaNova-RegularIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-RegularIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-RegularIt.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-Extrabld.eot");
  src: local("Proxima Nova Condensed Extrabold"), local("ProximaNovaCond-Extrabld"), url("/res/fonts/proxima-nova/ProximaNovaCond-Extrabld.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-Extrabld.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-Extrabld.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-ExtrabldIt.eot");
  src: local("Proxima Nova Extra Condensed Extrabold Italic"), local("ProximaNovaExCn-ExtrabldIt"), url("/res/fonts/proxima-nova/ProximaNovaExCn-ExtrabldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-ExtrabldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-ExtrabldIt.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-BlackIt.eot");
  src: local("Proxima Nova Extra Condensed Black Italic"), local("ProximaNovaExCn-BlackIt"), url("/res/fonts/proxima-nova/ProximaNovaExCn-BlackIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-BlackIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-BlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-LightIt.eot");
  src: local("Proxima Nova Extra Condensed Light Italic"), local("ProximaNovaExCn-LightIt"), url("/res/fonts/proxima-nova/ProximaNovaExCn-LightIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-LightIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-LightIt.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-ThinIt.eot");
  src: local("Proxima Nova Condensed Thin Italic"), local("ProximaNovaCond-ThinIt"), url("/res/fonts/proxima-nova/ProximaNovaCond-ThinIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-ThinIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-ThinIt.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-Light.eot");
  src: local("Proxima Nova Extra Condensed Light"), local("ProximaNovaExCn-Light"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Light.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Light.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-BoldIt.eot");
  src: local("Proxima Nova Condensed Bold Italic"), local("ProximaNovaCond-BoldIt"), url("/res/fonts/proxima-nova/ProximaNovaCond-BoldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-BoldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-BoldIt.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-Extrabld.eot");
  src: local("Proxima Nova Extra Condensed Extrabold"), local("ProximaNovaExCn-Extrabld"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Extrabld.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Extrabld.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Extrabld.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-BoldIt.eot");
  src: local("Proxima Nova Extra Condensed Bold Italic"), local("ProximaNovaExCn-BoldIt"), url("/res/fonts/proxima-nova/ProximaNovaExCn-BoldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-BoldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-BoldIt.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-Black.eot");
  src: local("Proxima Nova Black"), local("ProximaNova-Black"), url("/res/fonts/proxima-nova/ProximaNova-Black.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-Black.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-Bold.eot");
  src: local("Proxima Nova Bold"), local("ProximaNova-Bold"), url("/res/fonts/proxima-nova/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-Bold.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-Bold.eot");
  src: local("Proxima Nova Extra Condensed Bold"), local("ProximaNovaExCn-Bold"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Bold.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Bold.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNovaT-Thin.eot");
  src: local("Proxima Nova Thin"), local("ProximaNovaT-Thin"), url("/res/fonts/proxima-nova/ProximaNovaT-Thin.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaT-Thin.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaT-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-BoldIt.eot");
  src: local("Proxima Nova Bold Italic"), local("ProximaNova-BoldIt"), url("/res/fonts/proxima-nova/ProximaNova-BoldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-BoldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-BoldIt.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-Bold.eot");
  src: local("Proxima Nova Condensed Bold"), local("ProximaNovaCond-Bold"), url("/res/fonts/proxima-nova/ProximaNovaCond-Bold.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-Bold.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-Black.eot");
  src: local("Proxima Nova Extra Condensed Black"), local("ProximaNovaExCn-Black"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Black.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Black.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-RegularIt.eot");
  src: local("Proxima Nova Extra Condensed Regular Italic"), local("ProximaNovaExCn-RegularIt"), url("/res/fonts/proxima-nova/ProximaNovaExCn-RegularIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-RegularIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-RegularIt.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-Light.eot");
  src: local("Proxima Nova Condensed Light"), local("ProximaNovaCond-Light"), url("/res/fonts/proxima-nova/ProximaNovaCond-Light.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-Light.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-ExtrabldIt.eot");
  src: local("Proxima Nova Extrabold Italic"), local("ProximaNova-ExtrabldIt"), url("/res/fonts/proxima-nova/ProximaNova-ExtrabldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-ExtrabldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-ExtrabldIt.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-BlackIt.eot");
  src: local("Proxima Nova Condensed Black Italic"), local("ProximaNovaCond-BlackIt"), url("/res/fonts/proxima-nova/ProximaNovaCond-BlackIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-BlackIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-BlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaExCn";
  src: url("/res/fonts/proxima-nova/ProximaNovaExCn-Regular.eot");
  src: local("Proxima Nova Extra Condensed Regular"), local("ProximaNovaExCn-Regular"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Regular.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Regular.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaExCn-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-Light.eot");
  src: local("Proxima Nova Light"), local("ProximaNova-Light"), url("/res/fonts/proxima-nova/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-Light.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNovaCond";
  src: url("/res/fonts/proxima-nova/ProximaNovaCond-SemiboldIt.eot");
  src: local("Proxima Nova Condensed Semibold Italic"), local("ProximaNovaCond-SemiboldIt"), url("/res/fonts/proxima-nova/ProximaNovaCond-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNovaCond-SemiboldIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNovaCond-SemiboldIt.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src: url("/res/fonts/proxima-nova/ProximaNova-BlackIt.eot");
  src: local("Proxima Nova Black Italic"), local("ProximaNova-BlackIt"), url("/res/fonts/proxima-nova/ProximaNova-BlackIt.eot?#iefix") format("embedded-opentype"), url("/res/fonts/proxima-nova/ProximaNova-BlackIt.woff") format("woff"), url("/res/fonts/proxima-nova/ProximaNova-BlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/res/fonts/fontawsome/fa-brands-400.eot");
  src: url("/res/fonts/fontawsome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/res/fonts/fontawsome/fa-brands-400.woff2") format("woff2"), url("/res/fonts/fontawsome/fa-brands-400.woff") format("woff"), url("/res/fonts/fontawsome/fa-brands-400.ttf") format("truetype"), url("/res/fonts/fontawsome/fa-brands-400.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/res/fonts/fontawsome/fa-regular-400.eot");
  src: url("/res/fonts/fontawsome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/res/fonts/fontawsome/fa-regular-400.woff2") format("woff2"), url("/res/fonts/fontawsome/fa-regular-400.woff") format("woff"), url("/res/fonts/fontawsome/fa-regular-400.ttf") format("truetype"), url("/res/fonts/fontawsome/fa-regular-400.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/res/fonts/fontawsome/fa-solid-900.eot");
  src: url("/res/fonts/fontawsome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/res/fonts/fontawsome/fa-solid-900.woff2") format("woff2"), url("/res/fonts/fontawsome/fa-solid-900.woff") format("woff"), url("/res/fonts/fontawsome/fa-solid-900.ttf") format("truetype"), url("/res/fonts/fontawsome/fa-solid-900.svg#fontawesome") format("svg");
}
/*!
 * Font Awesome Free 5.14.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa, .fas, .far, .fal, .fad, .fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}
.fa-xs {
  font-size: 0.75em;
}
.fa-sm {
  font-size: 0.875em;
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}
.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left, .fas.fa-pull-left, .far.fa-pull-left, .fal.fa-pull-left, .fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right, .fas.fa-pull-right, .far.fa-pull-right, .fal.fa-pull-right, .fab.fa-pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "";
}
.fa-accessible-icon:before {
  content: "";
}
.fa-accusoft:before {
  content: "";
}
.fa-acquisitions-incorporated:before {
  content: "";
}
.fa-ad:before {
  content: "";
}
.fa-address-book:before {
  content: "";
}
.fa-address-card:before {
  content: "";
}
.fa-adjust:before {
  content: "";
}
.fa-adn:before {
  content: "";
}
.fa-adobe:before {
  content: "";
}
.fa-adversal:before {
  content: "";
}
.fa-affiliatetheme:before {
  content: "";
}
.fa-air-freshener:before {
  content: "";
}
.fa-airbnb:before {
  content: "";
}
.fa-algolia:before {
  content: "";
}
.fa-align-center:before {
  content: "";
}
.fa-align-justify:before {
  content: "";
}
.fa-align-left:before {
  content: "";
}
.fa-align-right:before {
  content: "";
}
.fa-alipay:before {
  content: "";
}
.fa-allergies:before {
  content: "";
}
.fa-amazon:before {
  content: "";
}
.fa-amazon-pay:before {
  content: "";
}
.fa-ambulance:before {
  content: "";
}
.fa-american-sign-language-interpreting:before {
  content: "";
}
.fa-amilia:before {
  content: "";
}
.fa-anchor:before {
  content: "";
}
.fa-android:before {
  content: "";
}
.fa-angellist:before {
  content: "";
}
.fa-angle-double-down:before {
  content: "";
}
.fa-angle-double-left:before {
  content: "";
}
.fa-angle-double-right:before {
  content: "";
}
.fa-angle-double-up:before {
  content: "";
}
.fa-angle-down:before {
  content: "";
}
.fa-angle-left:before {
  content: "";
}
.fa-angle-right:before {
  content: "";
}
.fa-angle-up:before {
  content: "";
}
.fa-angry:before {
  content: "";
}
.fa-angrycreative:before {
  content: "";
}
.fa-angular:before {
  content: "";
}
.fa-ankh:before {
  content: "";
}
.fa-app-store:before {
  content: "";
}
.fa-app-store-ios:before {
  content: "";
}
.fa-apper:before {
  content: "";
}
.fa-apple:before {
  content: "";
}
.fa-apple-alt:before {
  content: "";
}
.fa-apple-pay:before {
  content: "";
}
.fa-archive:before {
  content: "";
}
.fa-archway:before {
  content: "";
}
.fa-arrow-alt-circle-down:before {
  content: "";
}
.fa-arrow-alt-circle-left:before {
  content: "";
}
.fa-arrow-alt-circle-right:before {
  content: "";
}
.fa-arrow-alt-circle-up:before {
  content: "";
}
.fa-arrow-circle-down:before {
  content: "";
}
.fa-arrow-circle-left:before {
  content: "";
}
.fa-arrow-circle-right:before {
  content: "";
}
.fa-arrow-circle-up:before {
  content: "";
}
.fa-arrow-down:before {
  content: "";
}
.fa-arrow-left:before {
  content: "";
}
.fa-arrow-right:before {
  content: "";
}
.fa-arrow-up:before {
  content: "";
}
.fa-arrows-alt:before {
  content: "";
}
.fa-arrows-alt-h:before {
  content: "";
}
.fa-arrows-alt-v:before {
  content: "";
}
.fa-artstation:before {
  content: "";
}
.fa-assistive-listening-systems:before {
  content: "";
}
.fa-asterisk:before {
  content: "";
}
.fa-asymmetrik:before {
  content: "";
}
.fa-at:before {
  content: "";
}
.fa-atlas:before {
  content: "";
}
.fa-atlassian:before {
  content: "";
}
.fa-atom:before {
  content: "";
}
.fa-audible:before {
  content: "";
}
.fa-audio-description:before {
  content: "";
}
.fa-autoprefixer:before {
  content: "";
}
.fa-avianex:before {
  content: "";
}
.fa-aviato:before {
  content: "";
}
.fa-award:before {
  content: "";
}
.fa-aws:before {
  content: "";
}
.fa-baby:before {
  content: "";
}
.fa-baby-carriage:before {
  content: "";
}
.fa-backspace:before {
  content: "";
}
.fa-backward:before {
  content: "";
}
.fa-bacon:before {
  content: "";
}
.fa-bacteria:before {
  content: "";
}
.fa-bacterium:before {
  content: "";
}
.fa-bahai:before {
  content: "";
}
.fa-balance-scale:before {
  content: "";
}
.fa-balance-scale-left:before {
  content: "";
}
.fa-balance-scale-right:before {
  content: "";
}
.fa-ban:before {
  content: "";
}
.fa-band-aid:before {
  content: "";
}
.fa-bandcamp:before {
  content: "";
}
.fa-barcode:before {
  content: "";
}
.fa-bars:before {
  content: "";
}
.fa-baseball-ball:before {
  content: "";
}
.fa-basketball-ball:before {
  content: "";
}
.fa-bath:before {
  content: "";
}
.fa-battery-empty:before {
  content: "";
}
.fa-battery-full:before {
  content: "";
}
.fa-battery-half:before {
  content: "";
}
.fa-battery-quarter:before {
  content: "";
}
.fa-battery-three-quarters:before {
  content: "";
}
.fa-battle-net:before {
  content: "";
}
.fa-bed:before {
  content: "";
}
.fa-beer:before {
  content: "";
}
.fa-behance:before {
  content: "";
}
.fa-behance-square:before {
  content: "";
}
.fa-bell:before {
  content: "";
}
.fa-bell-slash:before {
  content: "";
}
.fa-bezier-curve:before {
  content: "";
}
.fa-bible:before {
  content: "";
}
.fa-bicycle:before {
  content: "";
}
.fa-biking:before {
  content: "";
}
.fa-bimobject:before {
  content: "";
}
.fa-binoculars:before {
  content: "";
}
.fa-biohazard:before {
  content: "";
}
.fa-birthday-cake:before {
  content: "";
}
.fa-bitbucket:before {
  content: "";
}
.fa-bitcoin:before {
  content: "";
}
.fa-bity:before {
  content: "";
}
.fa-black-tie:before {
  content: "";
}
.fa-blackberry:before {
  content: "";
}
.fa-blender:before {
  content: "";
}
.fa-blender-phone:before {
  content: "";
}
.fa-blind:before {
  content: "";
}
.fa-blog:before {
  content: "";
}
.fa-blogger:before {
  content: "";
}
.fa-blogger-b:before {
  content: "";
}
.fa-bluetooth:before {
  content: "";
}
.fa-bluetooth-b:before {
  content: "";
}
.fa-bold:before {
  content: "";
}
.fa-bolt:before {
  content: "";
}
.fa-bomb:before {
  content: "";
}
.fa-bone:before {
  content: "";
}
.fa-bong:before {
  content: "";
}
.fa-book:before {
  content: "";
}
.fa-book-dead:before {
  content: "";
}
.fa-book-medical:before {
  content: "";
}
.fa-book-open:before {
  content: "";
}
.fa-book-reader:before {
  content: "";
}
.fa-bookmark:before {
  content: "";
}
.fa-bootstrap:before {
  content: "";
}
.fa-border-all:before {
  content: "";
}
.fa-border-none:before {
  content: "";
}
.fa-border-style:before {
  content: "";
}
.fa-bowling-ball:before {
  content: "";
}
.fa-box:before {
  content: "";
}
.fa-box-open:before {
  content: "";
}
.fa-box-tissue:before {
  content: "";
}
.fa-boxes:before {
  content: "";
}
.fa-braille:before {
  content: "";
}
.fa-brain:before {
  content: "";
}
.fa-bread-slice:before {
  content: "";
}
.fa-briefcase:before {
  content: "";
}
.fa-briefcase-medical:before {
  content: "";
}
.fa-broadcast-tower:before {
  content: "";
}
.fa-broom:before {
  content: "";
}
.fa-brush:before {
  content: "";
}
.fa-btc:before {
  content: "";
}
.fa-buffer:before {
  content: "";
}
.fa-bug:before {
  content: "";
}
.fa-building:before {
  content: "";
}
.fa-bullhorn:before {
  content: "";
}
.fa-bullseye:before {
  content: "";
}
.fa-burn:before {
  content: "";
}
.fa-buromobelexperte:before {
  content: "";
}
.fa-bus:before {
  content: "";
}
.fa-bus-alt:before {
  content: "";
}
.fa-business-time:before {
  content: "";
}
.fa-buy-n-large:before {
  content: "";
}
.fa-buysellads:before {
  content: "";
}
.fa-calculator:before {
  content: "";
}
.fa-calendar:before {
  content: "";
}
.fa-calendar-alt:before {
  content: "";
}
.fa-calendar-check:before {
  content: "";
}
.fa-calendar-day:before {
  content: "";
}
.fa-calendar-minus:before {
  content: "";
}
.fa-calendar-plus:before {
  content: "";
}
.fa-calendar-times:before {
  content: "";
}
.fa-calendar-week:before {
  content: "";
}
.fa-camera:before {
  content: "";
}
.fa-camera-retro:before {
  content: "";
}
.fa-campground:before {
  content: "";
}
.fa-canadian-maple-leaf:before {
  content: "";
}
.fa-candy-cane:before {
  content: "";
}
.fa-cannabis:before {
  content: "";
}
.fa-capsules:before {
  content: "";
}
.fa-car:before {
  content: "";
}
.fa-car-alt:before {
  content: "";
}
.fa-car-battery:before {
  content: "";
}
.fa-car-crash:before {
  content: "";
}
.fa-car-side:before {
  content: "";
}
.fa-caravan:before {
  content: "";
}
.fa-caret-down:before {
  content: "";
}
.fa-caret-left:before {
  content: "";
}
.fa-caret-right:before {
  content: "";
}
.fa-caret-square-down:before {
  content: "";
}
.fa-caret-square-left:before {
  content: "";
}
.fa-caret-square-right:before {
  content: "";
}
.fa-caret-square-up:before {
  content: "";
}
.fa-caret-up:before {
  content: "";
}
.fa-carrot:before {
  content: "";
}
.fa-cart-arrow-down:before {
  content: "";
}
.fa-cart-plus:before {
  content: "";
}
.fa-cash-register:before {
  content: "";
}
.fa-cat:before {
  content: "";
}
.fa-cc-amazon-pay:before {
  content: "";
}
.fa-cc-amex:before {
  content: "";
}
.fa-cc-apple-pay:before {
  content: "";
}
.fa-cc-diners-club:before {
  content: "";
}
.fa-cc-discover:before {
  content: "";
}
.fa-cc-jcb:before {
  content: "";
}
.fa-cc-mastercard:before {
  content: "";
}
.fa-cc-paypal:before {
  content: "";
}
.fa-cc-stripe:before {
  content: "";
}
.fa-cc-visa:before {
  content: "";
}
.fa-centercode:before {
  content: "";
}
.fa-centos:before {
  content: "";
}
.fa-certificate:before {
  content: "";
}
.fa-chair:before {
  content: "";
}
.fa-chalkboard:before {
  content: "";
}
.fa-chalkboard-teacher:before {
  content: "";
}
.fa-charging-station:before {
  content: "";
}
.fa-chart-area:before {
  content: "";
}
.fa-chart-bar:before {
  content: "";
}
.fa-chart-line:before {
  content: "";
}
.fa-chart-pie:before {
  content: "";
}
.fa-check:before {
  content: "";
}
.fa-check-circle:before {
  content: "";
}
.fa-check-double:before {
  content: "";
}
.fa-check-square:before {
  content: "";
}
.fa-cheese:before {
  content: "";
}
.fa-chess:before {
  content: "";
}
.fa-chess-bishop:before {
  content: "";
}
.fa-chess-board:before {
  content: "";
}
.fa-chess-king:before {
  content: "";
}
.fa-chess-knight:before {
  content: "";
}
.fa-chess-pawn:before {
  content: "";
}
.fa-chess-queen:before {
  content: "";
}
.fa-chess-rook:before {
  content: "";
}
.fa-chevron-circle-down:before {
  content: "";
}
.fa-chevron-circle-left:before {
  content: "";
}
.fa-chevron-circle-right:before {
  content: "";
}
.fa-chevron-circle-up:before {
  content: "";
}
.fa-chevron-down:before {
  content: "";
}
.fa-chevron-left:before {
  content: "";
}
.fa-chevron-right:before {
  content: "";
}
.fa-chevron-up:before {
  content: "";
}
.fa-child:before {
  content: "";
}
.fa-chrome:before {
  content: "";
}
.fa-chromecast:before {
  content: "";
}
.fa-church:before {
  content: "";
}
.fa-circle:before {
  content: "";
}
.fa-circle-notch:before {
  content: "";
}
.fa-city:before {
  content: "";
}
.fa-clinic-medical:before {
  content: "";
}
.fa-clipboard:before {
  content: "";
}
.fa-clipboard-check:before {
  content: "";
}
.fa-clipboard-list:before {
  content: "";
}
.fa-clock:before {
  content: "";
}
.fa-clone:before {
  content: "";
}
.fa-closed-captioning:before {
  content: "";
}
.fa-cloud:before {
  content: "";
}
.fa-cloud-download-alt:before {
  content: "";
}
.fa-cloud-meatball:before {
  content: "";
}
.fa-cloud-moon:before {
  content: "";
}
.fa-cloud-moon-rain:before {
  content: "";
}
.fa-cloud-rain:before {
  content: "";
}
.fa-cloud-showers-heavy:before {
  content: "";
}
.fa-cloud-sun:before {
  content: "";
}
.fa-cloud-sun-rain:before {
  content: "";
}
.fa-cloud-upload-alt:before {
  content: "";
}
.fa-cloudscale:before {
  content: "";
}
.fa-cloudsmith:before {
  content: "";
}
.fa-cloudversify:before {
  content: "";
}
.fa-cocktail:before {
  content: "";
}
.fa-code:before {
  content: "";
}
.fa-code-branch:before {
  content: "";
}
.fa-codepen:before {
  content: "";
}
.fa-codiepie:before {
  content: "";
}
.fa-coffee:before {
  content: "";
}
.fa-cog:before {
  content: "";
}
.fa-cogs:before {
  content: "";
}
.fa-coins:before {
  content: "";
}
.fa-columns:before {
  content: "";
}
.fa-comment:before {
  content: "";
}
.fa-comment-alt:before {
  content: "";
}
.fa-comment-dollar:before {
  content: "";
}
.fa-comment-dots:before {
  content: "";
}
.fa-comment-medical:before {
  content: "";
}
.fa-comment-slash:before {
  content: "";
}
.fa-comments:before {
  content: "";
}
.fa-comments-dollar:before {
  content: "";
}
.fa-compact-disc:before {
  content: "";
}
.fa-compass:before {
  content: "";
}
.fa-compress:before {
  content: "";
}
.fa-compress-alt:before {
  content: "";
}
.fa-compress-arrows-alt:before {
  content: "";
}
.fa-concierge-bell:before {
  content: "";
}
.fa-confluence:before {
  content: "";
}
.fa-connectdevelop:before {
  content: "";
}
.fa-contao:before {
  content: "";
}
.fa-cookie:before {
  content: "";
}
.fa-cookie-bite:before {
  content: "";
}
.fa-copy:before {
  content: "";
}
.fa-copyright:before {
  content: "";
}
.fa-cotton-bureau:before {
  content: "";
}
.fa-couch:before {
  content: "";
}
.fa-cpanel:before {
  content: "";
}
.fa-creative-commons:before {
  content: "";
}
.fa-creative-commons-by:before {
  content: "";
}
.fa-creative-commons-nc:before {
  content: "";
}
.fa-creative-commons-nc-eu:before {
  content: "";
}
.fa-creative-commons-nc-jp:before {
  content: "";
}
.fa-creative-commons-nd:before {
  content: "";
}
.fa-creative-commons-pd:before {
  content: "";
}
.fa-creative-commons-pd-alt:before {
  content: "";
}
.fa-creative-commons-remix:before {
  content: "";
}
.fa-creative-commons-sa:before {
  content: "";
}
.fa-creative-commons-sampling:before {
  content: "";
}
.fa-creative-commons-sampling-plus:before {
  content: "";
}
.fa-creative-commons-share:before {
  content: "";
}
.fa-creative-commons-zero:before {
  content: "";
}
.fa-credit-card:before {
  content: "";
}
.fa-critical-role:before {
  content: "";
}
.fa-crop:before {
  content: "";
}
.fa-crop-alt:before {
  content: "";
}
.fa-cross:before {
  content: "";
}
.fa-crosshairs:before {
  content: "";
}
.fa-crow:before {
  content: "";
}
.fa-crown:before {
  content: "";
}
.fa-crutch:before {
  content: "";
}
.fa-css3:before {
  content: "";
}
.fa-css3-alt:before {
  content: "";
}
.fa-cube:before {
  content: "";
}
.fa-cubes:before {
  content: "";
}
.fa-cut:before {
  content: "";
}
.fa-cuttlefish:before {
  content: "";
}
.fa-d-and-d:before {
  content: "";
}
.fa-d-and-d-beyond:before {
  content: "";
}
.fa-dailymotion:before {
  content: "";
}
.fa-dashcube:before {
  content: "";
}
.fa-database:before {
  content: "";
}
.fa-deaf:before {
  content: "";
}
.fa-deezer:before {
  content: "";
}
.fa-delicious:before {
  content: "";
}
.fa-democrat:before {
  content: "";
}
.fa-deploydog:before {
  content: "";
}
.fa-deskpro:before {
  content: "";
}
.fa-desktop:before {
  content: "";
}
.fa-dev:before {
  content: "";
}
.fa-deviantart:before {
  content: "";
}
.fa-dharmachakra:before {
  content: "";
}
.fa-dhl:before {
  content: "";
}
.fa-diagnoses:before {
  content: "";
}
.fa-diaspora:before {
  content: "";
}
.fa-dice:before {
  content: "";
}
.fa-dice-d20:before {
  content: "";
}
.fa-dice-d6:before {
  content: "";
}
.fa-dice-five:before {
  content: "";
}
.fa-dice-four:before {
  content: "";
}
.fa-dice-one:before {
  content: "";
}
.fa-dice-six:before {
  content: "";
}
.fa-dice-three:before {
  content: "";
}
.fa-dice-two:before {
  content: "";
}
.fa-digg:before {
  content: "";
}
.fa-digital-ocean:before {
  content: "";
}
.fa-digital-tachograph:before {
  content: "";
}
.fa-directions:before {
  content: "";
}
.fa-discord:before {
  content: "";
}
.fa-discourse:before {
  content: "";
}
.fa-disease:before {
  content: "";
}
.fa-divide:before {
  content: "";
}
.fa-dizzy:before {
  content: "";
}
.fa-dna:before {
  content: "";
}
.fa-dochub:before {
  content: "";
}
.fa-docker:before {
  content: "";
}
.fa-dog:before {
  content: "";
}
.fa-dollar-sign:before {
  content: "";
}
.fa-dolly:before {
  content: "";
}
.fa-dolly-flatbed:before {
  content: "";
}
.fa-donate:before {
  content: "";
}
.fa-door-closed:before {
  content: "";
}
.fa-door-open:before {
  content: "";
}
.fa-dot-circle:before {
  content: "";
}
.fa-dove:before {
  content: "";
}
.fa-download:before {
  content: "";
}
.fa-draft2digital:before {
  content: "";
}
.fa-drafting-compass:before {
  content: "";
}
.fa-dragon:before {
  content: "";
}
.fa-draw-polygon:before {
  content: "";
}
.fa-dribbble:before {
  content: "";
}
.fa-dribbble-square:before {
  content: "";
}
.fa-dropbox:before {
  content: "";
}
.fa-drum:before {
  content: "";
}
.fa-drum-steelpan:before {
  content: "";
}
.fa-drumstick-bite:before {
  content: "";
}
.fa-drupal:before {
  content: "";
}
.fa-dumbbell:before {
  content: "";
}
.fa-dumpster:before {
  content: "";
}
.fa-dumpster-fire:before {
  content: "";
}
.fa-dungeon:before {
  content: "";
}
.fa-dyalog:before {
  content: "";
}
.fa-earlybirds:before {
  content: "";
}
.fa-ebay:before {
  content: "";
}
.fa-edge:before {
  content: "";
}
.fa-edge-legacy:before {
  content: "";
}
.fa-edit:before {
  content: "";
}
.fa-egg:before {
  content: "";
}
.fa-eject:before {
  content: "";
}
.fa-elementor:before {
  content: "";
}
.fa-ellipsis-h:before {
  content: "";
}
.fa-ellipsis-v:before {
  content: "";
}
.fa-ello:before {
  content: "";
}
.fa-ember:before {
  content: "";
}
.fa-empire:before {
  content: "";
}
.fa-envelope:before {
  content: "";
}
.fa-envelope-open:before {
  content: "";
}
.fa-envelope-open-text:before {
  content: "";
}
.fa-envelope-square:before {
  content: "";
}
.fa-envira:before {
  content: "";
}
.fa-equals:before {
  content: "";
}
.fa-eraser:before {
  content: "";
}
.fa-erlang:before {
  content: "";
}
.fa-ethereum:before {
  content: "";
}
.fa-ethernet:before {
  content: "";
}
.fa-etsy:before {
  content: "";
}
.fa-euro-sign:before {
  content: "";
}
.fa-evernote:before {
  content: "";
}
.fa-exchange-alt:before {
  content: "";
}
.fa-exclamation:before {
  content: "";
}
.fa-exclamation-circle:before {
  content: "";
}
.fa-exclamation-triangle:before {
  content: "";
}
.fa-expand:before {
  content: "";
}
.fa-expand-alt:before {
  content: "";
}
.fa-expand-arrows-alt:before {
  content: "";
}
.fa-expeditedssl:before {
  content: "";
}
.fa-external-link-alt:before {
  content: "";
}
.fa-external-link-square-alt:before {
  content: "";
}
.fa-eye:before {
  content: "";
}
.fa-eye-dropper:before {
  content: "";
}
.fa-eye-slash:before {
  content: "";
}
.fa-facebook:before {
  content: "";
}
.fa-facebook-f:before {
  content: "";
}
.fa-facebook-messenger:before {
  content: "";
}
.fa-facebook-square:before {
  content: "";
}
.fa-fan:before {
  content: "";
}
.fa-fantasy-flight-games:before {
  content: "";
}
.fa-fast-backward:before {
  content: "";
}
.fa-fast-forward:before {
  content: "";
}
.fa-faucet:before {
  content: "";
}
.fa-fax:before {
  content: "";
}
.fa-feather:before {
  content: "";
}
.fa-feather-alt:before {
  content: "";
}
.fa-fedex:before {
  content: "";
}
.fa-fedora:before {
  content: "";
}
.fa-female:before {
  content: "";
}
.fa-fighter-jet:before {
  content: "";
}
.fa-figma:before {
  content: "";
}
.fa-file:before {
  content: "";
}
.fa-file-alt:before {
  content: "";
}
.fa-file-archive:before {
  content: "";
}
.fa-file-audio:before {
  content: "";
}
.fa-file-code:before {
  content: "";
}
.fa-file-contract:before {
  content: "";
}
.fa-file-csv:before {
  content: "";
}
.fa-file-download:before {
  content: "";
}
.fa-file-excel:before {
  content: "";
}
.fa-file-export:before {
  content: "";
}
.fa-file-image:before {
  content: "";
}
.fa-file-import:before {
  content: "";
}
.fa-file-invoice:before {
  content: "";
}
.fa-file-invoice-dollar:before {
  content: "";
}
.fa-file-medical:before {
  content: "";
}
.fa-file-medical-alt:before {
  content: "";
}
.fa-file-pdf:before {
  content: "";
}
.fa-file-powerpoint:before {
  content: "";
}
.fa-file-prescription:before {
  content: "";
}
.fa-file-signature:before {
  content: "";
}
.fa-file-upload:before {
  content: "";
}
.fa-file-video:before {
  content: "";
}
.fa-file-word:before {
  content: "";
}
.fa-fill:before {
  content: "";
}
.fa-fill-drip:before {
  content: "";
}
.fa-film:before {
  content: "";
}
.fa-filter:before {
  content: "";
}
.fa-fingerprint:before {
  content: "";
}
.fa-fire:before {
  content: "";
}
.fa-fire-alt:before {
  content: "";
}
.fa-fire-extinguisher:before {
  content: "";
}
.fa-firefox:before {
  content: "";
}
.fa-firefox-browser:before {
  content: "";
}
.fa-first-aid:before {
  content: "";
}
.fa-first-order:before {
  content: "";
}
.fa-first-order-alt:before {
  content: "";
}
.fa-firstdraft:before {
  content: "";
}
.fa-fish:before {
  content: "";
}
.fa-fist-raised:before {
  content: "";
}
.fa-flag:before {
  content: "";
}
.fa-flag-checkered:before {
  content: "";
}
.fa-flag-usa:before {
  content: "";
}
.fa-flask:before {
  content: "";
}
.fa-flickr:before {
  content: "";
}
.fa-flipboard:before {
  content: "";
}
.fa-flushed:before {
  content: "";
}
.fa-fly:before {
  content: "";
}
.fa-folder:before {
  content: "";
}
.fa-folder-minus:before {
  content: "";
}
.fa-folder-open:before {
  content: "";
}
.fa-folder-plus:before {
  content: "";
}
.fa-font:before {
  content: "";
}
.fa-font-awesome:before {
  content: "";
}
.fa-font-awesome-alt:before {
  content: "";
}
.fa-font-awesome-flag:before {
  content: "";
}
.fa-font-awesome-logo-full:before {
  content: "";
}
.fa-fonticons:before {
  content: "";
}
.fa-fonticons-fi:before {
  content: "";
}
.fa-football-ball:before {
  content: "";
}
.fa-fort-awesome:before {
  content: "";
}
.fa-fort-awesome-alt:before {
  content: "";
}
.fa-forumbee:before {
  content: "";
}
.fa-forward:before {
  content: "";
}
.fa-foursquare:before {
  content: "";
}
.fa-free-code-camp:before {
  content: "";
}
.fa-freebsd:before {
  content: "";
}
.fa-frog:before {
  content: "";
}
.fa-frown:before {
  content: "";
}
.fa-frown-open:before {
  content: "";
}
.fa-fulcrum:before {
  content: "";
}
.fa-funnel-dollar:before {
  content: "";
}
.fa-futbol:before {
  content: "";
}
.fa-galactic-republic:before {
  content: "";
}
.fa-galactic-senate:before {
  content: "";
}
.fa-gamepad:before {
  content: "";
}
.fa-gas-pump:before {
  content: "";
}
.fa-gavel:before {
  content: "";
}
.fa-gem:before {
  content: "";
}
.fa-genderless:before {
  content: "";
}
.fa-get-pocket:before {
  content: "";
}
.fa-gg:before {
  content: "";
}
.fa-gg-circle:before {
  content: "";
}
.fa-ghost:before {
  content: "";
}
.fa-gift:before {
  content: "";
}
.fa-gifts:before {
  content: "";
}
.fa-git:before {
  content: "";
}
.fa-git-alt:before {
  content: "";
}
.fa-git-square:before {
  content: "";
}
.fa-github:before {
  content: "";
}
.fa-github-alt:before {
  content: "";
}
.fa-github-square:before {
  content: "";
}
.fa-gitkraken:before {
  content: "";
}
.fa-gitlab:before {
  content: "";
}
.fa-gitter:before {
  content: "";
}
.fa-glass-cheers:before {
  content: "";
}
.fa-glass-martini:before {
  content: "";
}
.fa-glass-martini-alt:before {
  content: "";
}
.fa-glass-whiskey:before {
  content: "";
}
.fa-glasses:before {
  content: "";
}
.fa-glide:before {
  content: "";
}
.fa-glide-g:before {
  content: "";
}
.fa-globe:before {
  content: "";
}
.fa-globe-africa:before {
  content: "";
}
.fa-globe-americas:before {
  content: "";
}
.fa-globe-asia:before {
  content: "";
}
.fa-globe-europe:before {
  content: "";
}
.fa-gofore:before {
  content: "";
}
.fa-golf-ball:before {
  content: "";
}
.fa-goodreads:before {
  content: "";
}
.fa-goodreads-g:before {
  content: "";
}
.fa-google:before {
  content: "";
}
.fa-google-drive:before {
  content: "";
}
.fa-google-pay:before {
  content: "";
}
.fa-google-play:before {
  content: "";
}
.fa-google-plus:before {
  content: "";
}
.fa-google-plus-g:before {
  content: "";
}
.fa-google-plus-square:before {
  content: "";
}
.fa-google-wallet:before {
  content: "";
}
.fa-gopuram:before {
  content: "";
}
.fa-graduation-cap:before {
  content: "";
}
.fa-gratipay:before {
  content: "";
}
.fa-grav:before {
  content: "";
}
.fa-greater-than:before {
  content: "";
}
.fa-greater-than-equal:before {
  content: "";
}
.fa-grimace:before {
  content: "";
}
.fa-grin:before {
  content: "";
}
.fa-grin-alt:before {
  content: "";
}
.fa-grin-beam:before {
  content: "";
}
.fa-grin-beam-sweat:before {
  content: "";
}
.fa-grin-hearts:before {
  content: "";
}
.fa-grin-squint:before {
  content: "";
}
.fa-grin-squint-tears:before {
  content: "";
}
.fa-grin-stars:before {
  content: "";
}
.fa-grin-tears:before {
  content: "";
}
.fa-grin-tongue:before {
  content: "";
}
.fa-grin-tongue-squint:before {
  content: "";
}
.fa-grin-tongue-wink:before {
  content: "";
}
.fa-grin-wink:before {
  content: "";
}
.fa-grip-horizontal:before {
  content: "";
}
.fa-grip-lines:before {
  content: "";
}
.fa-grip-lines-vertical:before {
  content: "";
}
.fa-grip-vertical:before {
  content: "";
}
.fa-gripfire:before {
  content: "";
}
.fa-grunt:before {
  content: "";
}
.fa-guitar:before {
  content: "";
}
.fa-gulp:before {
  content: "";
}
.fa-h-square:before {
  content: "";
}
.fa-hacker-news:before {
  content: "";
}
.fa-hacker-news-square:before {
  content: "";
}
.fa-hackerrank:before {
  content: "";
}
.fa-hamburger:before {
  content: "";
}
.fa-hammer:before {
  content: "";
}
.fa-hamsa:before {
  content: "";
}
.fa-hand-holding:before {
  content: "";
}
.fa-hand-holding-heart:before {
  content: "";
}
.fa-hand-holding-medical:before {
  content: "";
}
.fa-hand-holding-usd:before {
  content: "";
}
.fa-hand-holding-water:before {
  content: "";
}
.fa-hand-lizard:before {
  content: "";
}
.fa-hand-middle-finger:before {
  content: "";
}
.fa-hand-paper:before {
  content: "";
}
.fa-hand-peace:before {
  content: "";
}
.fa-hand-point-down:before {
  content: "";
}
.fa-hand-point-left:before {
  content: "";
}
.fa-hand-point-right:before {
  content: "";
}
.fa-hand-point-up:before {
  content: "";
}
.fa-hand-pointer:before {
  content: "";
}
.fa-hand-rock:before {
  content: "";
}
.fa-hand-scissors:before {
  content: "";
}
.fa-hand-sparkles:before {
  content: "";
}
.fa-hand-spock:before {
  content: "";
}
.fa-hands:before {
  content: "";
}
.fa-hands-helping:before {
  content: "";
}
.fa-hands-wash:before {
  content: "";
}
.fa-handshake:before {
  content: "";
}
.fa-handshake-alt-slash:before {
  content: "";
}
.fa-handshake-slash:before {
  content: "";
}
.fa-hanukiah:before {
  content: "";
}
.fa-hard-hat:before {
  content: "";
}
.fa-hashtag:before {
  content: "";
}
.fa-hat-cowboy:before {
  content: "";
}
.fa-hat-cowboy-side:before {
  content: "";
}
.fa-hat-wizard:before {
  content: "";
}
.fa-hdd:before {
  content: "";
}
.fa-head-side-cough:before {
  content: "";
}
.fa-head-side-cough-slash:before {
  content: "";
}
.fa-head-side-mask:before {
  content: "";
}
.fa-head-side-virus:before {
  content: "";
}
.fa-heading:before {
  content: "";
}
.fa-headphones:before {
  content: "";
}
.fa-headphones-alt:before {
  content: "";
}
.fa-headset:before {
  content: "";
}
.fa-heart:before {
  content: "";
}
.fa-heart-broken:before {
  content: "";
}
.fa-heartbeat:before {
  content: "";
}
.fa-helicopter:before {
  content: "";
}
.fa-highlighter:before {
  content: "";
}
.fa-hiking:before {
  content: "";
}
.fa-hippo:before {
  content: "";
}
.fa-hips:before {
  content: "";
}
.fa-hire-a-helper:before {
  content: "";
}
.fa-history:before {
  content: "";
}
.fa-hockey-puck:before {
  content: "";
}
.fa-holly-berry:before {
  content: "";
}
.fa-home:before {
  content: "";
}
.fa-hooli:before {
  content: "";
}
.fa-hornbill:before {
  content: "";
}
.fa-horse:before {
  content: "";
}
.fa-horse-head:before {
  content: "";
}
.fa-hospital:before {
  content: "";
}
.fa-hospital-alt:before {
  content: "";
}
.fa-hospital-symbol:before {
  content: "";
}
.fa-hospital-user:before {
  content: "";
}
.fa-hot-tub:before {
  content: "";
}
.fa-hotdog:before {
  content: "";
}
.fa-hotel:before {
  content: "";
}
.fa-hotjar:before {
  content: "";
}
.fa-hourglass:before {
  content: "";
}
.fa-hourglass-end:before {
  content: "";
}
.fa-hourglass-half:before {
  content: "";
}
.fa-hourglass-start:before {
  content: "";
}
.fa-house-damage:before {
  content: "";
}
.fa-house-user:before {
  content: "";
}
.fa-houzz:before {
  content: "";
}
.fa-hryvnia:before {
  content: "";
}
.fa-html5:before {
  content: "";
}
.fa-hubspot:before {
  content: "";
}
.fa-i-cursor:before {
  content: "";
}
.fa-ice-cream:before {
  content: "";
}
.fa-icicles:before {
  content: "";
}
.fa-icons:before {
  content: "";
}
.fa-id-badge:before {
  content: "";
}
.fa-id-card:before {
  content: "";
}
.fa-id-card-alt:before {
  content: "";
}
.fa-ideal:before {
  content: "";
}
.fa-igloo:before {
  content: "";
}
.fa-image:before {
  content: "";
}
.fa-images:before {
  content: "";
}
.fa-imdb:before {
  content: "";
}
.fa-inbox:before {
  content: "";
}
.fa-indent:before {
  content: "";
}
.fa-industry:before {
  content: "";
}
.fa-infinity:before {
  content: "";
}
.fa-info:before {
  content: "";
}
.fa-info-circle:before {
  content: "";
}
.fa-instagram:before {
  content: "";
}
.fa-instagram-square:before {
  content: "";
}
.fa-intercom:before {
  content: "";
}
.fa-internet-explorer:before {
  content: "";
}
.fa-invision:before {
  content: "";
}
.fa-ioxhost:before {
  content: "";
}
.fa-italic:before {
  content: "";
}
.fa-itch-io:before {
  content: "";
}
.fa-itunes:before {
  content: "";
}
.fa-itunes-note:before {
  content: "";
}
.fa-java:before {
  content: "";
}
.fa-jedi:before {
  content: "";
}
.fa-jedi-order:before {
  content: "";
}
.fa-jenkins:before {
  content: "";
}
.fa-jira:before {
  content: "";
}
.fa-joget:before {
  content: "";
}
.fa-joint:before {
  content: "";
}
.fa-joomla:before {
  content: "";
}
.fa-journal-whills:before {
  content: "";
}
.fa-js:before {
  content: "";
}
.fa-js-square:before {
  content: "";
}
.fa-jsfiddle:before {
  content: "";
}
.fa-kaaba:before {
  content: "";
}
.fa-kaggle:before {
  content: "";
}
.fa-key:before {
  content: "";
}
.fa-keybase:before {
  content: "";
}
.fa-keyboard:before {
  content: "";
}
.fa-keycdn:before {
  content: "";
}
.fa-khanda:before {
  content: "";
}
.fa-kickstarter:before {
  content: "";
}
.fa-kickstarter-k:before {
  content: "";
}
.fa-kiss:before {
  content: "";
}
.fa-kiss-beam:before {
  content: "";
}
.fa-kiss-wink-heart:before {
  content: "";
}
.fa-kiwi-bird:before {
  content: "";
}
.fa-korvue:before {
  content: "";
}
.fa-landmark:before {
  content: "";
}
.fa-language:before {
  content: "";
}
.fa-laptop:before {
  content: "";
}
.fa-laptop-code:before {
  content: "";
}
.fa-laptop-house:before {
  content: "";
}
.fa-laptop-medical:before {
  content: "";
}
.fa-laravel:before {
  content: "";
}
.fa-lastfm:before {
  content: "";
}
.fa-lastfm-square:before {
  content: "";
}
.fa-laugh:before {
  content: "";
}
.fa-laugh-beam:before {
  content: "";
}
.fa-laugh-squint:before {
  content: "";
}
.fa-laugh-wink:before {
  content: "";
}
.fa-layer-group:before {
  content: "";
}
.fa-leaf:before {
  content: "";
}
.fa-leanpub:before {
  content: "";
}
.fa-lemon:before {
  content: "";
}
.fa-less:before {
  content: "";
}
.fa-less-than:before {
  content: "";
}
.fa-less-than-equal:before {
  content: "";
}
.fa-level-down-alt:before {
  content: "";
}
.fa-level-up-alt:before {
  content: "";
}
.fa-life-ring:before {
  content: "";
}
.fa-lightbulb:before {
  content: "";
}
.fa-line:before {
  content: "";
}
.fa-link:before {
  content: "";
}
.fa-linkedin:before {
  content: "";
}
.fa-linkedin-in:before {
  content: "";
}
.fa-linode:before {
  content: "";
}
.fa-linux:before {
  content: "";
}
.fa-lira-sign:before {
  content: "";
}
.fa-list:before {
  content: "";
}
.fa-list-alt:before {
  content: "";
}
.fa-list-ol:before {
  content: "";
}
.fa-list-ul:before {
  content: "";
}
.fa-location-arrow:before {
  content: "";
}
.fa-lock:before {
  content: "";
}
.fa-lock-open:before {
  content: "";
}
.fa-long-arrow-alt-down:before {
  content: "";
}
.fa-long-arrow-alt-left:before {
  content: "";
}
.fa-long-arrow-alt-right:before {
  content: "";
}
.fa-long-arrow-alt-up:before {
  content: "";
}
.fa-low-vision:before {
  content: "";
}
.fa-luggage-cart:before {
  content: "";
}
.fa-lungs:before {
  content: "";
}
.fa-lungs-virus:before {
  content: "";
}
.fa-lyft:before {
  content: "";
}
.fa-magento:before {
  content: "";
}
.fa-magic:before {
  content: "";
}
.fa-magnet:before {
  content: "";
}
.fa-mail-bulk:before {
  content: "";
}
.fa-mailchimp:before {
  content: "";
}
.fa-male:before {
  content: "";
}
.fa-mandalorian:before {
  content: "";
}
.fa-map:before {
  content: "";
}
.fa-map-marked:before {
  content: "";
}
.fa-map-marked-alt:before {
  content: "";
}
.fa-map-marker:before {
  content: "";
}
.fa-map-marker-alt:before {
  content: "";
}
.fa-map-pin:before {
  content: "";
}
.fa-map-signs:before {
  content: "";
}
.fa-markdown:before {
  content: "";
}
.fa-marker:before {
  content: "";
}
.fa-mars:before {
  content: "";
}
.fa-mars-double:before {
  content: "";
}
.fa-mars-stroke:before {
  content: "";
}
.fa-mars-stroke-h:before {
  content: "";
}
.fa-mars-stroke-v:before {
  content: "";
}
.fa-mask:before {
  content: "";
}
.fa-mastodon:before {
  content: "";
}
.fa-maxcdn:before {
  content: "";
}
.fa-mdb:before {
  content: "";
}
.fa-medal:before {
  content: "";
}
.fa-medapps:before {
  content: "";
}
.fa-medium:before {
  content: "";
}
.fa-medium-m:before {
  content: "";
}
.fa-medkit:before {
  content: "";
}
.fa-medrt:before {
  content: "";
}
.fa-meetup:before {
  content: "";
}
.fa-megaport:before {
  content: "";
}
.fa-meh:before {
  content: "";
}
.fa-meh-blank:before {
  content: "";
}
.fa-meh-rolling-eyes:before {
  content: "";
}
.fa-memory:before {
  content: "";
}
.fa-mendeley:before {
  content: "";
}
.fa-menorah:before {
  content: "";
}
.fa-mercury:before {
  content: "";
}
.fa-meteor:before {
  content: "";
}
.fa-microblog:before {
  content: "";
}
.fa-microchip:before {
  content: "";
}
.fa-microphone:before {
  content: "";
}
.fa-microphone-alt:before {
  content: "";
}
.fa-microphone-alt-slash:before {
  content: "";
}
.fa-microphone-slash:before {
  content: "";
}
.fa-microscope:before {
  content: "";
}
.fa-microsoft:before {
  content: "";
}
.fa-minus:before {
  content: "";
}
.fa-minus-circle:before {
  content: "";
}
.fa-minus-square:before {
  content: "";
}
.fa-mitten:before {
  content: "";
}
.fa-mix:before {
  content: "";
}
.fa-mixcloud:before {
  content: "";
}
.fa-mixer:before {
  content: "";
}
.fa-mizuni:before {
  content: "";
}
.fa-mobile:before {
  content: "";
}
.fa-mobile-alt:before {
  content: "";
}
.fa-modx:before {
  content: "";
}
.fa-monero:before {
  content: "";
}
.fa-money-bill:before {
  content: "";
}
.fa-money-bill-alt:before {
  content: "";
}
.fa-money-bill-wave:before {
  content: "";
}
.fa-money-bill-wave-alt:before {
  content: "";
}
.fa-money-check:before {
  content: "";
}
.fa-money-check-alt:before {
  content: "";
}
.fa-monument:before {
  content: "";
}
.fa-moon:before {
  content: "";
}
.fa-mortar-pestle:before {
  content: "";
}
.fa-mosque:before {
  content: "";
}
.fa-motorcycle:before {
  content: "";
}
.fa-mountain:before {
  content: "";
}
.fa-mouse:before {
  content: "";
}
.fa-mouse-pointer:before {
  content: "";
}
.fa-mug-hot:before {
  content: "";
}
.fa-music:before {
  content: "";
}
.fa-napster:before {
  content: "";
}
.fa-neos:before {
  content: "";
}
.fa-network-wired:before {
  content: "";
}
.fa-neuter:before {
  content: "";
}
.fa-newspaper:before {
  content: "";
}
.fa-nimblr:before {
  content: "";
}
.fa-node:before {
  content: "";
}
.fa-node-js:before {
  content: "";
}
.fa-not-equal:before {
  content: "";
}
.fa-notes-medical:before {
  content: "";
}
.fa-npm:before {
  content: "";
}
.fa-ns8:before {
  content: "";
}
.fa-nutritionix:before {
  content: "";
}
.fa-object-group:before {
  content: "";
}
.fa-object-ungroup:before {
  content: "";
}
.fa-odnoklassniki:before {
  content: "";
}
.fa-odnoklassniki-square:before {
  content: "";
}
.fa-oil-can:before {
  content: "";
}
.fa-old-republic:before {
  content: "";
}
.fa-om:before {
  content: "";
}
.fa-opencart:before {
  content: "";
}
.fa-openid:before {
  content: "";
}
.fa-opera:before {
  content: "";
}
.fa-optin-monster:before {
  content: "";
}
.fa-orcid:before {
  content: "";
}
.fa-osi:before {
  content: "";
}
.fa-otter:before {
  content: "";
}
.fa-outdent:before {
  content: "";
}
.fa-page4:before {
  content: "";
}
.fa-pagelines:before {
  content: "";
}
.fa-pager:before {
  content: "";
}
.fa-paint-brush:before {
  content: "";
}
.fa-paint-roller:before {
  content: "";
}
.fa-palette:before {
  content: "";
}
.fa-palfed:before {
  content: "";
}
.fa-pallet:before {
  content: "";
}
.fa-paper-plane:before {
  content: "";
}
.fa-paperclip:before {
  content: "";
}
.fa-parachute-box:before {
  content: "";
}
.fa-paragraph:before {
  content: "";
}
.fa-parking:before {
  content: "";
}
.fa-passport:before {
  content: "";
}
.fa-pastafarianism:before {
  content: "";
}
.fa-paste:before {
  content: "";
}
.fa-patreon:before {
  content: "";
}
.fa-pause:before {
  content: "";
}
.fa-pause-circle:before {
  content: "";
}
.fa-paw:before {
  content: "";
}
.fa-paypal:before {
  content: "";
}
.fa-peace:before {
  content: "";
}
.fa-pen:before {
  content: "";
}
.fa-pen-alt:before {
  content: "";
}
.fa-pen-fancy:before {
  content: "";
}
.fa-pen-nib:before {
  content: "";
}
.fa-pen-square:before {
  content: "";
}
.fa-pencil-alt:before {
  content: "";
}
.fa-pencil-ruler:before {
  content: "";
}
.fa-penny-arcade:before {
  content: "";
}
.fa-people-arrows:before {
  content: "";
}
.fa-people-carry:before {
  content: "";
}
.fa-pepper-hot:before {
  content: "";
}
.fa-percent:before {
  content: "";
}
.fa-percentage:before {
  content: "";
}
.fa-periscope:before {
  content: "";
}
.fa-person-booth:before {
  content: "";
}
.fa-phabricator:before {
  content: "";
}
.fa-phoenix-framework:before {
  content: "";
}
.fa-phoenix-squadron:before {
  content: "";
}
.fa-phone:before {
  content: "";
}
.fa-phone-alt:before {
  content: "";
}
.fa-phone-slash:before {
  content: "";
}
.fa-phone-square:before {
  content: "";
}
.fa-phone-square-alt:before {
  content: "";
}
.fa-phone-volume:before {
  content: "";
}
.fa-photo-video:before {
  content: "";
}
.fa-php:before {
  content: "";
}
.fa-pied-piper:before {
  content: "";
}
.fa-pied-piper-alt:before {
  content: "";
}
.fa-pied-piper-hat:before {
  content: "";
}
.fa-pied-piper-pp:before {
  content: "";
}
.fa-pied-piper-square:before {
  content: "";
}
.fa-piggy-bank:before {
  content: "";
}
.fa-pills:before {
  content: "";
}
.fa-pinterest:before {
  content: "";
}
.fa-pinterest-p:before {
  content: "";
}
.fa-pinterest-square:before {
  content: "";
}
.fa-pizza-slice:before {
  content: "";
}
.fa-place-of-worship:before {
  content: "";
}
.fa-plane:before {
  content: "";
}
.fa-plane-arrival:before {
  content: "";
}
.fa-plane-departure:before {
  content: "";
}
.fa-plane-slash:before {
  content: "";
}
.fa-play:before {
  content: "";
}
.fa-play-circle:before {
  content: "";
}
.fa-playstation:before {
  content: "";
}
.fa-plug:before {
  content: "";
}
.fa-plus:before {
  content: "";
}
.fa-plus-circle:before {
  content: "";
}
.fa-plus-square:before {
  content: "";
}
.fa-podcast:before {
  content: "";
}
.fa-poll:before {
  content: "";
}
.fa-poll-h:before {
  content: "";
}
.fa-poo:before {
  content: "";
}
.fa-poo-storm:before {
  content: "";
}
.fa-poop:before {
  content: "";
}
.fa-portrait:before {
  content: "";
}
.fa-pound-sign:before {
  content: "";
}
.fa-power-off:before {
  content: "";
}
.fa-pray:before {
  content: "";
}
.fa-praying-hands:before {
  content: "";
}
.fa-prescription:before {
  content: "";
}
.fa-prescription-bottle:before {
  content: "";
}
.fa-prescription-bottle-alt:before {
  content: "";
}
.fa-print:before {
  content: "";
}
.fa-procedures:before {
  content: "";
}
.fa-product-hunt:before {
  content: "";
}
.fa-project-diagram:before {
  content: "";
}
.fa-pump-medical:before {
  content: "";
}
.fa-pump-soap:before {
  content: "";
}
.fa-pushed:before {
  content: "";
}
.fa-puzzle-piece:before {
  content: "";
}
.fa-python:before {
  content: "";
}
.fa-qq:before {
  content: "";
}
.fa-qrcode:before {
  content: "";
}
.fa-question:before {
  content: "";
}
.fa-question-circle:before {
  content: "";
}
.fa-quidditch:before {
  content: "";
}
.fa-quinscape:before {
  content: "";
}
.fa-quora:before {
  content: "";
}
.fa-quote-left:before {
  content: "";
}
.fa-quote-right:before {
  content: "";
}
.fa-quran:before {
  content: "";
}
.fa-r-project:before {
  content: "";
}
.fa-radiation:before {
  content: "";
}
.fa-radiation-alt:before {
  content: "";
}
.fa-rainbow:before {
  content: "";
}
.fa-random:before {
  content: "";
}
.fa-raspberry-pi:before {
  content: "";
}
.fa-ravelry:before {
  content: "";
}
.fa-react:before {
  content: "";
}
.fa-reacteurope:before {
  content: "";
}
.fa-readme:before {
  content: "";
}
.fa-rebel:before {
  content: "";
}
.fa-receipt:before {
  content: "";
}
.fa-record-vinyl:before {
  content: "";
}
.fa-recycle:before {
  content: "";
}
.fa-red-river:before {
  content: "";
}
.fa-reddit:before {
  content: "";
}
.fa-reddit-alien:before {
  content: "";
}
.fa-reddit-square:before {
  content: "";
}
.fa-redhat:before {
  content: "";
}
.fa-redo:before {
  content: "";
}
.fa-redo-alt:before {
  content: "";
}
.fa-registered:before {
  content: "";
}
.fa-remove-format:before {
  content: "";
}
.fa-renren:before {
  content: "";
}
.fa-reply:before {
  content: "";
}
.fa-reply-all:before {
  content: "";
}
.fa-replyd:before {
  content: "";
}
.fa-republican:before {
  content: "";
}
.fa-researchgate:before {
  content: "";
}
.fa-resolving:before {
  content: "";
}
.fa-restroom:before {
  content: "";
}
.fa-retweet:before {
  content: "";
}
.fa-rev:before {
  content: "";
}
.fa-ribbon:before {
  content: "";
}
.fa-ring:before {
  content: "";
}
.fa-road:before {
  content: "";
}
.fa-robot:before {
  content: "";
}
.fa-rocket:before {
  content: "";
}
.fa-rocketchat:before {
  content: "";
}
.fa-rockrms:before {
  content: "";
}
.fa-route:before {
  content: "";
}
.fa-rss:before {
  content: "";
}
.fa-rss-square:before {
  content: "";
}
.fa-ruble-sign:before {
  content: "";
}
.fa-ruler:before {
  content: "";
}
.fa-ruler-combined:before {
  content: "";
}
.fa-ruler-horizontal:before {
  content: "";
}
.fa-ruler-vertical:before {
  content: "";
}
.fa-running:before {
  content: "";
}
.fa-rupee-sign:before {
  content: "";
}
.fa-rust:before {
  content: "";
}
.fa-sad-cry:before {
  content: "";
}
.fa-sad-tear:before {
  content: "";
}
.fa-safari:before {
  content: "";
}
.fa-salesforce:before {
  content: "";
}
.fa-sass:before {
  content: "";
}
.fa-satellite:before {
  content: "";
}
.fa-satellite-dish:before {
  content: "";
}
.fa-save:before {
  content: "";
}
.fa-schlix:before {
  content: "";
}
.fa-school:before {
  content: "";
}
.fa-screwdriver:before {
  content: "";
}
.fa-scribd:before {
  content: "";
}
.fa-scroll:before {
  content: "";
}
.fa-sd-card:before {
  content: "";
}
.fa-search:before {
  content: "";
}
.fa-search-dollar:before {
  content: "";
}
.fa-search-location:before {
  content: "";
}
.fa-search-minus:before {
  content: "";
}
.fa-search-plus:before {
  content: "";
}
.fa-searchengin:before {
  content: "";
}
.fa-seedling:before {
  content: "";
}
.fa-sellcast:before {
  content: "";
}
.fa-sellsy:before {
  content: "";
}
.fa-server:before {
  content: "";
}
.fa-servicestack:before {
  content: "";
}
.fa-shapes:before {
  content: "";
}
.fa-share:before {
  content: "";
}
.fa-share-alt:before {
  content: "";
}
.fa-share-alt-square:before {
  content: "";
}
.fa-share-square:before {
  content: "";
}
.fa-shekel-sign:before {
  content: "";
}
.fa-shield-alt:before {
  content: "";
}
.fa-shield-virus:before {
  content: "";
}
.fa-ship:before {
  content: "";
}
.fa-shipping-fast:before {
  content: "";
}
.fa-shirtsinbulk:before {
  content: "";
}
.fa-shoe-prints:before {
  content: "";
}
.fa-shopify:before {
  content: "";
}
.fa-shopping-bag:before {
  content: "";
}
.fa-shopping-basket:before {
  content: "";
}
.fa-shopping-cart:before {
  content: "";
}
.fa-shopware:before {
  content: "";
}
.fa-shower:before {
  content: "";
}
.fa-shuttle-van:before {
  content: "";
}
.fa-sign:before {
  content: "";
}
.fa-sign-in-alt:before {
  content: "";
}
.fa-sign-language:before {
  content: "";
}
.fa-sign-out-alt:before {
  content: "";
}
.fa-signal:before {
  content: "";
}
.fa-signature:before {
  content: "";
}
.fa-sim-card:before {
  content: "";
}
.fa-simplybuilt:before {
  content: "";
}
.fa-sink:before {
  content: "";
}
.fa-sistrix:before {
  content: "";
}
.fa-sitemap:before {
  content: "";
}
.fa-sith:before {
  content: "";
}
.fa-skating:before {
  content: "";
}
.fa-sketch:before {
  content: "";
}
.fa-skiing:before {
  content: "";
}
.fa-skiing-nordic:before {
  content: "";
}
.fa-skull:before {
  content: "";
}
.fa-skull-crossbones:before {
  content: "";
}
.fa-skyatlas:before {
  content: "";
}
.fa-skype:before {
  content: "";
}
.fa-slack:before {
  content: "";
}
.fa-slack-hash:before {
  content: "";
}
.fa-slash:before {
  content: "";
}
.fa-sleigh:before {
  content: "";
}
.fa-sliders-h:before {
  content: "";
}
.fa-slideshare:before {
  content: "";
}
.fa-smile:before {
  content: "";
}
.fa-smile-beam:before {
  content: "";
}
.fa-smile-wink:before {
  content: "";
}
.fa-smog:before {
  content: "";
}
.fa-smoking:before {
  content: "";
}
.fa-smoking-ban:before {
  content: "";
}
.fa-sms:before {
  content: "";
}
.fa-snapchat:before {
  content: "";
}
.fa-snapchat-ghost:before {
  content: "";
}
.fa-snapchat-square:before {
  content: "";
}
.fa-snowboarding:before {
  content: "";
}
.fa-snowflake:before {
  content: "";
}
.fa-snowman:before {
  content: "";
}
.fa-snowplow:before {
  content: "";
}
.fa-soap:before {
  content: "";
}
.fa-socks:before {
  content: "";
}
.fa-solar-panel:before {
  content: "";
}
.fa-sort:before {
  content: "";
}
.fa-sort-alpha-down:before {
  content: "";
}
.fa-sort-alpha-down-alt:before {
  content: "";
}
.fa-sort-alpha-up:before {
  content: "";
}
.fa-sort-alpha-up-alt:before {
  content: "";
}
.fa-sort-amount-down:before {
  content: "";
}
.fa-sort-amount-down-alt:before {
  content: "";
}
.fa-sort-amount-up:before {
  content: "";
}
.fa-sort-amount-up-alt:before {
  content: "";
}
.fa-sort-down:before {
  content: "";
}
.fa-sort-numeric-down:before {
  content: "";
}
.fa-sort-numeric-down-alt:before {
  content: "";
}
.fa-sort-numeric-up:before {
  content: "";
}
.fa-sort-numeric-up-alt:before {
  content: "";
}
.fa-sort-up:before {
  content: "";
}
.fa-soundcloud:before {
  content: "";
}
.fa-sourcetree:before {
  content: "";
}
.fa-spa:before {
  content: "";
}
.fa-space-shuttle:before {
  content: "";
}
.fa-speakap:before {
  content: "";
}
.fa-speaker-deck:before {
  content: "";
}
.fa-spell-check:before {
  content: "";
}
.fa-spider:before {
  content: "";
}
.fa-spinner:before {
  content: "";
}
.fa-splotch:before {
  content: "";
}
.fa-spotify:before {
  content: "";
}
.fa-spray-can:before {
  content: "";
}
.fa-square:before {
  content: "";
}
.fa-square-full:before {
  content: "";
}
.fa-square-root-alt:before {
  content: "";
}
.fa-squarespace:before {
  content: "";
}
.fa-stack-exchange:before {
  content: "";
}
.fa-stack-overflow:before {
  content: "";
}
.fa-stackpath:before {
  content: "";
}
.fa-stamp:before {
  content: "";
}
.fa-star:before {
  content: "";
}
.fa-star-and-crescent:before {
  content: "";
}
.fa-star-half:before {
  content: "";
}
.fa-star-half-alt:before {
  content: "";
}
.fa-star-of-david:before {
  content: "";
}
.fa-star-of-life:before {
  content: "";
}
.fa-staylinked:before {
  content: "";
}
.fa-steam:before {
  content: "";
}
.fa-steam-square:before {
  content: "";
}
.fa-steam-symbol:before {
  content: "";
}
.fa-step-backward:before {
  content: "";
}
.fa-step-forward:before {
  content: "";
}
.fa-stethoscope:before {
  content: "";
}
.fa-sticker-mule:before {
  content: "";
}
.fa-sticky-note:before {
  content: "";
}
.fa-stop:before {
  content: "";
}
.fa-stop-circle:before {
  content: "";
}
.fa-stopwatch:before {
  content: "";
}
.fa-stopwatch-20:before {
  content: "";
}
.fa-store:before {
  content: "";
}
.fa-store-alt:before {
  content: "";
}
.fa-store-alt-slash:before {
  content: "";
}
.fa-store-slash:before {
  content: "";
}
.fa-strava:before {
  content: "";
}
.fa-stream:before {
  content: "";
}
.fa-street-view:before {
  content: "";
}
.fa-strikethrough:before {
  content: "";
}
.fa-stripe:before {
  content: "";
}
.fa-stripe-s:before {
  content: "";
}
.fa-stroopwafel:before {
  content: "";
}
.fa-studiovinari:before {
  content: "";
}
.fa-stumbleupon:before {
  content: "";
}
.fa-stumbleupon-circle:before {
  content: "";
}
.fa-subscript:before {
  content: "";
}
.fa-subway:before {
  content: "";
}
.fa-suitcase:before {
  content: "";
}
.fa-suitcase-rolling:before {
  content: "";
}
.fa-sun:before {
  content: "";
}
.fa-superpowers:before {
  content: "";
}
.fa-superscript:before {
  content: "";
}
.fa-supple:before {
  content: "";
}
.fa-surprise:before {
  content: "";
}
.fa-suse:before {
  content: "";
}
.fa-swatchbook:before {
  content: "";
}
.fa-swift:before {
  content: "";
}
.fa-swimmer:before {
  content: "";
}
.fa-swimming-pool:before {
  content: "";
}
.fa-symfony:before {
  content: "";
}
.fa-synagogue:before {
  content: "";
}
.fa-sync:before {
  content: "";
}
.fa-sync-alt:before {
  content: "";
}
.fa-syringe:before {
  content: "";
}
.fa-table:before {
  content: "";
}
.fa-table-tennis:before {
  content: "";
}
.fa-tablet:before {
  content: "";
}
.fa-tablet-alt:before {
  content: "";
}
.fa-tablets:before {
  content: "";
}
.fa-tachometer-alt:before {
  content: "";
}
.fa-tag:before {
  content: "";
}
.fa-tags:before {
  content: "";
}
.fa-tape:before {
  content: "";
}
.fa-tasks:before {
  content: "";
}
.fa-taxi:before {
  content: "";
}
.fa-teamspeak:before {
  content: "";
}
.fa-teeth:before {
  content: "";
}
.fa-teeth-open:before {
  content: "";
}
.fa-telegram:before {
  content: "";
}
.fa-telegram-plane:before {
  content: "";
}
.fa-temperature-high:before {
  content: "";
}
.fa-temperature-low:before {
  content: "";
}
.fa-tencent-weibo:before {
  content: "";
}
.fa-tenge:before {
  content: "";
}
.fa-terminal:before {
  content: "";
}
.fa-text-height:before {
  content: "";
}
.fa-text-width:before {
  content: "";
}
.fa-th:before {
  content: "";
}
.fa-th-large:before {
  content: "";
}
.fa-th-list:before {
  content: "";
}
.fa-the-red-yeti:before {
  content: "";
}
.fa-theater-masks:before {
  content: "";
}
.fa-themeco:before {
  content: "";
}
.fa-themeisle:before {
  content: "";
}
.fa-thermometer:before {
  content: "";
}
.fa-thermometer-empty:before {
  content: "";
}
.fa-thermometer-full:before {
  content: "";
}
.fa-thermometer-half:before {
  content: "";
}
.fa-thermometer-quarter:before {
  content: "";
}
.fa-thermometer-three-quarters:before {
  content: "";
}
.fa-think-peaks:before {
  content: "";
}
.fa-thumbs-down:before {
  content: "";
}
.fa-thumbs-up:before {
  content: "";
}
.fa-thumbtack:before {
  content: "";
}
.fa-ticket-alt:before {
  content: "";
}
.fa-tiktok:before {
  content: "";
}
.fa-times:before {
  content: "";
}
.fa-times-circle:before {
  content: "";
}
.fa-tint:before {
  content: "";
}
.fa-tint-slash:before {
  content: "";
}
.fa-tired:before {
  content: "";
}
.fa-toggle-off:before {
  content: "";
}
.fa-toggle-on:before {
  content: "";
}
.fa-toilet:before {
  content: "";
}
.fa-toilet-paper:before {
  content: "";
}
.fa-toilet-paper-slash:before {
  content: "";
}
.fa-toolbox:before {
  content: "";
}
.fa-tools:before {
  content: "";
}
.fa-tooth:before {
  content: "";
}
.fa-torah:before {
  content: "";
}
.fa-torii-gate:before {
  content: "";
}
.fa-tractor:before {
  content: "";
}
.fa-trade-federation:before {
  content: "";
}
.fa-trademark:before {
  content: "";
}
.fa-traffic-light:before {
  content: "";
}
.fa-trailer:before {
  content: "";
}
.fa-train:before {
  content: "";
}
.fa-tram:before {
  content: "";
}
.fa-transgender:before {
  content: "";
}
.fa-transgender-alt:before {
  content: "";
}
.fa-trash:before {
  content: "";
}
.fa-trash-alt:before {
  content: "";
}
.fa-trash-restore:before {
  content: "";
}
.fa-trash-restore-alt:before {
  content: "";
}
.fa-tree:before {
  content: "";
}
.fa-trello:before {
  content: "";
}
.fa-tripadvisor:before {
  content: "";
}
.fa-trophy:before {
  content: "";
}
.fa-truck:before {
  content: "";
}
.fa-truck-loading:before {
  content: "";
}
.fa-truck-monster:before {
  content: "";
}
.fa-truck-moving:before {
  content: "";
}
.fa-truck-pickup:before {
  content: "";
}
.fa-tshirt:before {
  content: "";
}
.fa-tty:before {
  content: "";
}
.fa-tumblr:before {
  content: "";
}
.fa-tumblr-square:before {
  content: "";
}
.fa-tv:before {
  content: "";
}
.fa-twitch:before {
  content: "";
}
.fa-twitter:before {
  content: "";
}
.fa-twitter-square:before {
  content: "";
}
.fa-typo3:before {
  content: "";
}
.fa-uber:before {
  content: "";
}
.fa-ubuntu:before {
  content: "";
}
.fa-uikit:before {
  content: "";
}
.fa-umbraco:before {
  content: "";
}
.fa-umbrella:before {
  content: "";
}
.fa-umbrella-beach:before {
  content: "";
}
.fa-underline:before {
  content: "";
}
.fa-undo:before {
  content: "";
}
.fa-undo-alt:before {
  content: "";
}
.fa-uniregistry:before {
  content: "";
}
.fa-unity:before {
  content: "";
}
.fa-universal-access:before {
  content: "";
}
.fa-university:before {
  content: "";
}
.fa-unlink:before {
  content: "";
}
.fa-unlock:before {
  content: "";
}
.fa-unlock-alt:before {
  content: "";
}
.fa-unsplash:before {
  content: "";
}
.fa-untappd:before {
  content: "";
}
.fa-upload:before {
  content: "";
}
.fa-ups:before {
  content: "";
}
.fa-usb:before {
  content: "";
}
.fa-user:before {
  content: "";
}
.fa-user-alt:before {
  content: "";
}
.fa-user-alt-slash:before {
  content: "";
}
.fa-user-astronaut:before {
  content: "";
}
.fa-user-check:before {
  content: "";
}
.fa-user-circle:before {
  content: "";
}
.fa-user-clock:before {
  content: "";
}
.fa-user-cog:before {
  content: "";
}
.fa-user-edit:before {
  content: "";
}
.fa-user-friends:before {
  content: "";
}
.fa-user-graduate:before {
  content: "";
}
.fa-user-injured:before {
  content: "";
}
.fa-user-lock:before {
  content: "";
}
.fa-user-md:before {
  content: "";
}
.fa-user-minus:before {
  content: "";
}
.fa-user-ninja:before {
  content: "";
}
.fa-user-nurse:before {
  content: "";
}
.fa-user-plus:before {
  content: "";
}
.fa-user-secret:before {
  content: "";
}
.fa-user-shield:before {
  content: "";
}
.fa-user-slash:before {
  content: "";
}
.fa-user-tag:before {
  content: "";
}
.fa-user-tie:before {
  content: "";
}
.fa-user-times:before {
  content: "";
}
.fa-users:before {
  content: "";
}
.fa-users-cog:before {
  content: "";
}
.fa-users-slash:before {
  content: "";
}
.fa-usps:before {
  content: "";
}
.fa-ussunnah:before {
  content: "";
}
.fa-utensil-spoon:before {
  content: "";
}
.fa-utensils:before {
  content: "";
}
.fa-vaadin:before {
  content: "";
}
.fa-vector-square:before {
  content: "";
}
.fa-venus:before {
  content: "";
}
.fa-venus-double:before {
  content: "";
}
.fa-venus-mars:before {
  content: "";
}
.fa-viacoin:before {
  content: "";
}
.fa-viadeo:before {
  content: "";
}
.fa-viadeo-square:before {
  content: "";
}
.fa-vial:before {
  content: "";
}
.fa-vials:before {
  content: "";
}
.fa-viber:before {
  content: "";
}
.fa-video:before {
  content: "";
}
.fa-video-slash:before {
  content: "";
}
.fa-vihara:before {
  content: "";
}
.fa-vimeo:before {
  content: "";
}
.fa-vimeo-square:before {
  content: "";
}
.fa-vimeo-v:before {
  content: "";
}
.fa-vine:before {
  content: "";
}
.fa-virus:before {
  content: "";
}
.fa-virus-slash:before {
  content: "";
}
.fa-viruses:before {
  content: "";
}
.fa-vk:before {
  content: "";
}
.fa-vnv:before {
  content: "";
}
.fa-voicemail:before {
  content: "";
}
.fa-volleyball-ball:before {
  content: "";
}
.fa-volume-down:before {
  content: "";
}
.fa-volume-mute:before {
  content: "";
}
.fa-volume-off:before {
  content: "";
}
.fa-volume-up:before {
  content: "";
}
.fa-vote-yea:before {
  content: "";
}
.fa-vr-cardboard:before {
  content: "";
}
.fa-vuejs:before {
  content: "";
}
.fa-walking:before {
  content: "";
}
.fa-wallet:before {
  content: "";
}
.fa-warehouse:before {
  content: "";
}
.fa-water:before {
  content: "";
}
.fa-wave-square:before {
  content: "";
}
.fa-waze:before {
  content: "";
}
.fa-weebly:before {
  content: "";
}
.fa-weibo:before {
  content: "";
}
.fa-weight:before {
  content: "";
}
.fa-weight-hanging:before {
  content: "";
}
.fa-weixin:before {
  content: "";
}
.fa-whatsapp:before {
  content: "";
}
.fa-whatsapp-square:before {
  content: "";
}
.fa-wheelchair:before {
  content: "";
}
.fa-whmcs:before {
  content: "";
}
.fa-wifi:before {
  content: "";
}
.fa-wikipedia-w:before {
  content: "";
}
.fa-wind:before {
  content: "";
}
.fa-window-close:before {
  content: "";
}
.fa-window-maximize:before {
  content: "";
}
.fa-window-minimize:before {
  content: "";
}
.fa-window-restore:before {
  content: "";
}
.fa-windows:before {
  content: "";
}
.fa-wine-bottle:before {
  content: "";
}
.fa-wine-glass:before {
  content: "";
}
.fa-wine-glass-alt:before {
  content: "";
}
.fa-wix:before {
  content: "";
}
.fa-wizards-of-the-coast:before {
  content: "";
}
.fa-wolf-pack-battalion:before {
  content: "";
}
.fa-won-sign:before {
  content: "";
}
.fa-wordpress:before {
  content: "";
}
.fa-wordpress-simple:before {
  content: "";
}
.fa-wpbeginner:before {
  content: "";
}
.fa-wpexplorer:before {
  content: "";
}
.fa-wpforms:before {
  content: "";
}
.fa-wpressr:before {
  content: "";
}
.fa-wrench:before {
  content: "";
}
.fa-x-ray:before {
  content: "";
}
.fa-xbox:before {
  content: "";
}
.fa-xing:before {
  content: "";
}
.fa-xing-square:before {
  content: "";
}
.fa-y-combinator:before {
  content: "";
}
.fa-yahoo:before {
  content: "";
}
.fa-yammer:before {
  content: "";
}
.fa-yandex:before {
  content: "";
}
.fa-yandex-international:before {
  content: "";
}
.fa-yarn:before {
  content: "";
}
.fa-yelp:before {
  content: "";
}
.fa-yen-sign:before {
  content: "";
}
.fa-yin-yang:before {
  content: "";
}
.fa-yoast:before {
  content: "";
}
.fa-youtube:before {
  content: "";
}
.fa-youtube-square:before {
  content: "";
}
.fa-zhihu:before {
  content: "";
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.fab {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
}
.far {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 400 !important;
}
.fa, .fas {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}
.fa:before {
  display: block;
  padding-top: 1px;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  padding: 0px;
  margin: 0px;
}
body, td, input, textarea, button {
  font-family: ProximaNova, sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #435466;
}
.app-addorganization-window-component {
  background: #ffffff;
}
.app-addorganization-window-component.app-addorganization-window-shadow {
  background: rgba(0, 0, 0, 0.5);
}
.app-addorganization-window-component .app-component-window-container {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.app-addorganization-window-component .app-component-window-title span {
  display: flex;
  align-items: center;
}
.app-addorganization-window-component .app-component-window-title span a {
  display: block;
  margin-left: 20px;
  width: 28px;
  height: 22px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='28' height='22' viewBox='0 0 28 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.98'%3E%3Cpath d='M0.963147 5.93555C1.19848 3.26669 3.28634 1.28819 6.00226 1.06398C8.08189 0.892294 10.7776 0.75 14 0.75C17.2224 0.75 19.9181 0.892294 21.9977 1.06398C24.7137 1.28819 26.8015 3.26669 27.0369 5.93555C27.1606 7.33844 27.25 9.03294 27.25 11C27.25 12.9246 27.1644 14.5883 27.0448 15.9733C26.8107 18.6853 24.669 20.6971 21.9001 20.9268C19.7801 21.1027 17.0841 21.25 14 21.25C10.9159 21.25 8.21987 21.1027 6.09985 20.9268C3.331 20.6971 1.18932 18.6853 0.955192 15.9733C0.83563 14.5883 0.75 12.9246 0.75 11C0.75 9.03294 0.839446 7.33844 0.963147 5.93555Z' fill='white' stroke='%239DA5BE' stroke-width='1.5'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7.35961C11 6.91231 11 6.68866 11.094 6.55787C11.1761 6.44375 11.3024 6.36944 11.442 6.35313C11.602 6.33444 11.7975 6.44306 12.1885 6.66029L18.7412 10.3007C19.1522 10.529 19.3577 10.6431 19.4259 10.7936C19.4853 10.9248 19.4853 11.0752 19.4259 11.2064C19.3577 11.3569 19.1522 11.471 18.7412 11.6993L12.1885 15.3397C11.7975 15.5569 11.602 15.6656 11.442 15.6469C11.3024 15.6306 11.1761 15.5562 11.094 15.4421C11 15.3113 11 15.0877 11 14.6404V7.35961Z' fill='%239DA5BE'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.app-addorganization-window-component .app-component-window-title span a:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='22' viewBox='0 0 28 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.98'%3E%3Cpath d='M0.963147 5.93555C1.19848 3.26669 3.28634 1.28819 6.00226 1.06398C8.08189 0.892294 10.7776 0.75 14 0.75C17.2224 0.75 19.9181 0.892294 21.9977 1.06398C24.7137 1.28819 26.8015 3.26669 27.0369 5.93555C27.1606 7.33844 27.25 9.03294 27.25 11C27.25 12.9246 27.1644 14.5883 27.0448 15.9733C26.8107 18.6853 24.669 20.6971 21.9001 20.9268C19.7801 21.1027 17.0841 21.25 14 21.25C10.9159 21.25 8.21987 21.1027 6.09985 20.9268C3.331 20.6971 1.18932 18.6853 0.955192 15.9733C0.83563 14.5883 0.75 12.9246 0.75 11C0.75 9.03294 0.839446 7.33844 0.963147 5.93555Z' fill='%239DA5BE' stroke='%239DA5BE' stroke-width='1.5'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7.35961C11 6.91231 11 6.68866 11.094 6.55787C11.1761 6.44375 11.3024 6.36944 11.442 6.35313C11.602 6.33444 11.7975 6.44306 12.1885 6.66029L18.7412 10.3007C19.1522 10.529 19.3577 10.6431 19.4259 10.7936C19.4853 10.9248 19.4853 11.0752 19.4259 11.2064C19.3577 11.3569 19.1522 11.471 18.7412 11.6993L12.1885 15.3397C11.7975 15.5569 11.602 15.6656 11.442 15.6469C11.3024 15.6306 11.1761 15.5562 11.094 15.4421C11 15.3113 11 15.0877 11 14.6404V7.35961Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.app-addorganization-window-component .add-organization-window-container {
  padding: 20px 30px 35px 30px;
}
.app-addorganization-window-component .add-organization-window-container .app-component-textspan {
  display: block;
  font-size: 14px;
}
.app-addorganization-window-component .add-organization-window-container [data-object-name="error"] {
  color: #f00;
  display: none;
}
.app-addorganization-window-component .add-organization-window-container [data-object-name="error"].app-component-shown {
  display: block;
}
.app-addorganization-window-component .add-organization-window-container [data-object-name="inntitle"] {
  margin-top: 24px;
  margin-bottom: 10px;
}
.app-addorganization-window-component .add-organization-window-container .app-input-component {
  width: 210px;
  padding: 5px 10px 5px 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #2f323a;
  border-radius: 3px;
  box-shadow: 0 4px 4px -4px rgba(153, 153, 153, 0.1);
  background-color: #ffffff;
  border: solid 1px #d1d7e9;
}
.app-addorganization-window-component .add-organization-window-container .add-organization-window-footer {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.app-addorganization-window-component .add-organization-window-container .add-organization-window-footer button {
  font-family: ProximaNova;
  font-size: 14px;
  height: 32px;
  width: 85px;
  border: unset;
  border-radius: 2px;
  cursor: pointer;
}
.app-addorganization-window-component .add-organization-window-container .add-organization-window-footer .btn-add {
  background-color: #50C14E;
  color: #FFFFFF;
  border: 1px solid rgba(80, 193, 78, 0.05);
  margin-right: 10px;
}
.app-addorganization-window-component .add-organization-window-container .add-organization-window-footer .btn-add[disabled] {
  background-color: #DEE0E4;
}
.app-addorganization-window-component .add-organization-window-container .add-organization-window-footer .btn-cancel {
  color: #435466;
  background-color: #FFFFFF;
  border: 1px solid #D1D7E9;
}
.app-addorganization-window-component .add-organization-window-container .add-organization-window-footer .btn-auth {
  color: #435466;
  background-color: #FFFFFF;
  border: 1px solid #D1D7E9;
  margin-right: 0px;
  white-space: nowrap;
  width: 175px;
  margin-left: auto;
}
.app-login-component {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: auto;
  background-color: #3e4856;
  background-image: url(/res/img/auth-bg.svg);
  background-attachment: fixed;
  background-position: left top;
  background-size: 100% auto;
}
.app-login-component.app-component-shown {
  display: flex;
}
.app-login-component [data-object-name="login-paywall"] {
  background: #3E4856;
  border: 2px solid #AAAAAA;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  width: 850px;
  height: 400px;
  padding: 25px 0px 25px;
  zoom: 0.8;
  flex-direction: column;
}
.app-login-component [data-object-name="login-paywall"].app-component-shown {
  display: flex;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="h1"] {
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 78px;
  text-align: center;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="h1"] .app-component-icon {
  width: 75px;
  height: 75px;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="h1"] .app-component-textspan {
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 78px;
  color: #ffffff;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="h1"] .app-component-textspan span {
  color: #23C15A;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="text"] {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 50px;
  margin-bottom: 50px;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="button-container"] {
  align-items: center;
  justify-content: center;
  flex: 1 1 100px;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="button-container"].app-component-shown {
  display: flex;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="button-container"] .app-component-bo-auth-button-component #bx-auth-button.bo-auth-button {
  width: 296px;
  height: 70px;
  background: #23C15A !important;
  border-radius: 5px !important;
  color: #ffffff !important;
  text-align: center;
  border: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="button-container"] .app-component-bo-auth-button-component #bx-auth-button.bo-auth-button .bo-auth-button-icon {
  display: none;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="button-container"] .app-component-bo-auth-button-component #bx-auth-button.bo-auth-button .bo-auth-button-text {
  text-align: center;
  color: #ffffff !important;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  font-family: ProximaNova;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="button-container"] .app-component-icon {
  width: 48px;
  height: 22px;
  margin-right: -88px;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="links-container"] {
  margin-top: auto;
  flex: 0 0;
  align-items: center;
  justify-content: space-between;
  padding: 0px 50px;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="links-container"].app-component-shown {
  display: flex;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="links-container"] a:not(.-warning):not(.-error):not(.-success) {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.app-login-component [data-object-name="login-paywall"] [data-object-name="links-container"] a:not(.-warning):not(.-error):not(.-success):hover {
  color: #ffffff;
  text-decoration: underline;
}
.app-component-bo-auth-button-component .bo-auth-button {
  width: 100%;
  background: transparent !important;
  color: #435466 !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: flex-start;
  padding: 9px 12px !important;
}
.app-component-bo-auth-button-component .bo-auth-button .bo-auth-button-icon {
  background: url("/res/img/user-icon.svg");
  width: 14px;
  height: 15px;
  margin-right: 10px;
}
.app-component-bo-auth-button-component .bo-auth-button .bo-auth-button-text {
  color: #435466 !important;
}
.app-administration-window-component {
  background: #ffffff;
  background: rgba(0, 0, 0, 0.5);
}
.app-administration-window-component .app-component-window-container {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.app-administration-window-component .administration-window-container [data-object-name="tabs"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  border-radius: 3px;
  margin-right: 10px;
}
.app-administration-window-component .administration-window-container [data-object-name="tabs"] button {
  padding: 6px 12px;
  height: 32px;
  color: #000000;
  background: transparent;
  border: 0px;
  border-right: 1px solid #D9DCE3;
}
.app-administration-window-component .administration-window-container [data-object-name="tabs"] button:last-child {
  border-right: 0px;
}
.app-administration-window-component .administration-window-container [data-object-name="tabs"] button.-selected {
  background: #0095FF;
  color: #ffffff;
}
.app-administration-window-component .administration-window-container [data-object-name="adduser"], .app-administration-window-component .administration-window-container [data-object-name="addorg"], .app-administration-window-component .administration-window-container [data-object-name="addrole"] {
  background: #00B333;
  color: #ffffff;
  border-radius: 3px;
  border: 0px;
  padding: 6px 12px;
  margin-right: 10px;
}
.app-administration-window-component .administration-window-container [data-object-name="buttons"] {
  padding: 16px 30px 16px;
  border-bottom: 1px solid #EAEAEA;
}
.app-administration-window-component .administration-window-container [data-object-name="split"] {
  height: 483px;
}
.app-administration-window-component .administration-window-container [data-object-name="split"] .app-component-split-handler {
  border-left: 1px solid #EAEAEA;
  background: transparent;
  width: 5px;
}
.app-administration-window-component .administration-window-container [data-object-name="split"] .app-component-split-left {
  flex: 0 0 400px;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] {
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"].app-component-shown {
  display: flex;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] [data-object-name="usersroles"] {
  flex: 1 1 100%;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] [data-object-name="orgsroles"] {
  flex: 1 1 100%;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] [data-object-name="permissionstree"] {
  flex: 1 1 100%;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] [data-object-name="info"] {
  flex: 0 0 65px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 32px;
  border-top: 1px solid #D9DCE3;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] [data-object-name="info"].app-component-shown {
  display: flex;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] [data-object-name="info"] [data-object-name="sendinfo"] {
  background: #FFFFFF;
  border: 1px solid #D9DCE3;
  box-sizing: border-box;
  border-radius: 3px;
  color: #000000;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 12px;
}
.app-administration-window-component .administration-window-container [data-object-name="permissions"] [data-object-name="info"] [data-object-name="updateinfosendinfo"] {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-adminlist-component .app-component-list-group .app-component-list-item:not(.disable-default):hover:not(.app-component-selected) {
  background: transparent;
}
.users-list-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 20px 15px 32px;
}
.users-list-item .users-list-avatar {
  flex: 0 0 50px;
  height: 50px;
}
.users-list-item .users-list-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #f2f2f2;
}
.users-list-item .users-list-avatar span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F9FF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.users-list-item .users-list-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 20px;
}
.users-list-item .users-list-info strong {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.users-list-item .users-list-info span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #7D859B;
}
.users-list-item .users-list-info span.deleted {
  color: #ED3545;
}
.users-list-item .users-list-info em {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #7D859B;
}
.orgs-list-item {
  padding: 15px 20px 15px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.orgs-list-item strong {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #14151A;
  text-transform: uppercase;
}
.orgs-list-item span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #7D859B;
}
.orgs-list-item span.deleted {
  color: #ED3545;
}
.roles-list-item {
  padding: 15px 20px 15px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.roles-list-item strong {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #14151A;
  text-transform: uppercase;
}
.roles-list-item span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #7D859B;
}
.roles-list-item span.deleted {
  color: #ED3545;
}
.app-useredit-window-component .useredit-window-container {
  padding: 16px 32px;
}
.app-useredit-window-component .useredit-window-footer {
  display: flex;
  align-items: center;
  margin-top: 0px;
  background: #F5F6FA;
  border-top: 1px solid #D9DCE3;
  padding: 16px 32px;
}
.app-useredit-window-component .useredit-window-footer button {
  font-family: ProximaNova;
  font-size: 14px;
  height: 32px;
  width: 85px;
  border: unset;
  border-radius: 2px;
  cursor: pointer;
}
.app-useredit-window-component .useredit-window-footer .btn-save {
  background-color: #50C14E;
  color: #FFFFFF;
  border: 1px solid rgba(80, 193, 78, 0.05);
  margin-right: 10px;
}
.app-useredit-window-component .useredit-window-footer .btn-save[disabled] {
  background-color: #DEE0E4;
}
.app-useredit-window-component .useredit-window-footer .btn-cancel {
  color: #435466;
  background-color: #FFFFFF;
  border: 1px solid #D1D7E9;
}
.app-roleedit-window-component .roleedit-window-container {
  padding: 16px 32px;
}
.app-roleedit-window-component .roleedit-window-footer {
  display: flex;
  align-items: center;
  margin-top: 0px;
  background: #F5F6FA;
  border-top: 1px solid #D9DCE3;
  padding: 16px 32px;
}
.app-roleedit-window-component .roleedit-window-footer button {
  font-family: ProximaNova;
  font-size: 14px;
  height: 32px;
  width: 85px;
  border: unset;
  border-radius: 2px;
  cursor: pointer;
}
.app-roleedit-window-component .roleedit-window-footer .btn-save {
  background-color: #50C14E;
  color: #FFFFFF;
  border: 1px solid rgba(80, 193, 78, 0.05);
  margin-right: 10px;
}
.app-roleedit-window-component .roleedit-window-footer .btn-save[disabled] {
  background-color: #DEE0E4;
}
.app-roleedit-window-component .roleedit-window-footer .btn-cancel {
  color: #435466;
  background-color: #FFFFFF;
  border: 1px solid #D1D7E9;
}
.copyfrom-selector-popup {
  margin-top: 6px;
  padding-bottom: 0px;
}
.copyfrom-selector-popup .app-component-list-group > div {
  padding: 4px 0px;
}
.copyfrom-selector-popup .app-component-list-group > div .app-component-list-item {
  border-bottom: 0px;
}
.copyfrom-selector-popup .role-selector-item {
  padding: 6px 12px;
}
.app-organizations-roles-component {
  width: 100%;
  height: 100%;
}
.app-organizations-roles-component .app-component-list-group {
  padding: 0px 0px 15px;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item {
  border-bottom: 0px;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item:hover, .app-organizations-roles-component .app-component-list-group .app-component-list-item.app-component-selected {
  background: transparent;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item[data-role="0"] .orgs-list-item strong, .app-organizations-roles-component .app-component-list-group .app-component-list-item[data-role="3"] .orgs-list-item strong {
  color: #7D859B;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item[data-role="0"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-textspan, .app-organizations-roles-component .app-component-list-group .app-component-list-item[data-role="3"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-textspan {
  color: #7D859B;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item[data-role="0"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon svg path, .app-organizations-roles-component .app-component-list-group .app-component-list-item[data-role="3"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon svg path {
  stroke: #7D859B;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item .app-contextmenu-icon-component {
  width: auto;
  flex: 0 0;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] {
  display: flex;
  align-items: center;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-textspan {
  white-space: nowrap;
  margin-right: 5px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon {
  display: flex;
  align-items: center;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon:hover {
  background: transparent;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon svg {
  width: 8px;
  height: 4px;
}
.app-organizations-roles-component .app-component-list-group .app-component-list-item .app-contextmenu-icon-component.-selected .app-component-icon {
  background: transparent;
}
.app-users-roles-component {
  width: 100%;
  height: 100%;
}
.app-users-roles-component .app-component-list-group {
  padding: 0px 0px 15px;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) {
  border-bottom: 0px;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default):hover, .app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default).app-component-selected {
  background: transparent;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default)[data-role="0"] .orgs-list-item strong, .app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default)[data-role="3"] .orgs-list-item strong {
  color: #7D859B;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default)[data-role="0"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-textspan, .app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default)[data-role="3"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-textspan {
  color: #7D859B;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default)[data-role="0"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon svg path, .app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default)[data-role="3"] .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon svg path {
  stroke: #7D859B;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-contextmenu-icon-component {
  width: auto;
  flex: 0 0;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] {
  display: flex;
  align-items: center;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-textspan {
  white-space: nowrap;
  margin-right: 5px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon {
  display: flex;
  align-items: center;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon:hover {
  background: transparent;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon svg {
  width: 8px;
  height: 4px;
}
.app-users-roles-component .app-component-list-group .app-component-list-item:not(.disable-default) .app-contextmenu-icon-component.-selected .app-component-icon {
  background: transparent;
}
.app-permissions-component {
  padding: 10px 0px;
}
.app-permissions-component .nodes .node > div:not([data-object-name]).app-component-hascontextmenu {
  align-items: center;
  padding: 6px 10px 5px 10px;
}
.app-permissions-component .nodes .node.unselected > div:not([data-object-name]) span {
  font-weight: normal;
  color: #7D859B;
  font-size: 14px;
}
.app-permissions-component .nodes .node.allow > div:not([data-object-name]) span {
  font-weight: normal;
  color: #000000;
  font-size: 14px;
}
.app-permissions-component .nodes .node.deny > div:not([data-object-name]) span {
  font-weight: normal;
  color: #000000;
  font-size: 14px;
}
.app-permissions-component .app-contextmenu-icon-component {
  width: auto;
  flex: 0 0;
}
.app-permissions-component .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] {
  display: flex;
  align-items: center;
}
.app-permissions-component .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-textspan {
  white-space: nowrap;
  margin-right: 5px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
}
.app-permissions-component .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon {
  display: flex;
  align-items: center;
}
.app-permissions-component .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon:hover {
  background: transparent;
}
.app-permissions-component .app-contextmenu-icon-component [data-object-name*="contextmenu-icon"] .app-component-icon svg {
  width: 8px;
  height: 4px;
}
.app-permissions-component .app-contextmenu-icon-component.-selected .app-component-icon {
  background: transparent;
}
.app-context-menu-220px {
  width: 220px;
}
.app-auth-user-data-widget-component .widget-container {
  display: flex;
  flex-wrap: wrap;
}
.app-auth-user-data-widget-component .widget-container [data-object-name="profile-img"] {
  width: 60px;
  height: 60px;
  background-color: #e3e6f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-right: 20px;
}
.app-auth-user-data-widget-component .widget-container .user-name-and-user-organisation-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.app-auth-user-data-widget-component .widget-container .user-name-and-user-organisation-container [data-object-name="user-name"], .app-auth-user-data-widget-component .widget-container .user-name-and-user-organisation-container [data-object-name="user-organisation"] {
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(47, 50, 58, 0.95);
}
.app-auth-user-data-widget-component .widget-container .user-name-and-user-organisation-container [data-object-name="user-organisation"] {
  font-weight: 600;
}
.app-auth-products-widget-component {
  width: 100%;
  justify-content: space-between;
}
.app-auth-products-widget-component.app-component-shown {
  display: flex;
}
.app-auth-products-widget-component button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
}
.app-auth-products-widget-component .product {
  background-color: #EBF6FF;
  background-size: cover;
  background-position: right bottom;
  padding: 25px;
  border: unset;
  border-radius: 10px;
  cursor: pointer;
}
.app-auth-products-widget-component .product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1);
  margin-top: -4px !important;
}
.app-auth-products-widget-component .product[data-object-name="product-1"] {
  background-image: url("https://buhsoft.online/img/bg-img-start-sq.svg");
}
.app-auth-products-widget-component .product[data-object-name="product-2"] {
  background-image: url("https://buhsoft.online/img/bg-img-comf-sq.svg");
}
.app-auth-products-widget-component .product[data-object-name="product-3"] {
  background-image: url("https://buhsoft.online/img/bg-img-report-sq.svg");
  color: #FFFFFF;
}
.app-auth-products-widget-component .product .widget-header {
  font-size: 20px;
  margin-bottom: 25px;
}
.app-auth-products-widget-component .product .widget-footer button {
  border-color: unset;
  background-color: #FFFFFF;
  padding: 5px 15px;
  border-radius: 10px;
  color: black;
}
.app-form-simple-button-component {
  height: 32px;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 8px;
  padding: 0 12px;
  border: 1px solid #D9DCE3;
  background-color: #FFFFFF;
}
.app-form-simple-button-component .app-component-textspan {
  font-size: 14px;
  font-weight: normal;
  color: #14151A;
}
.app-form-buttongroup-component [data-object-name$="-container"] {
  display: flex;
}
.app-form-buttongroup-component [data-object-name$="-container"] button {
  padding: 1px 15px;
}
.app-form-buttongroup-component [data-object-name$="-container"] button:first-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.app-form-buttongroup-component [data-object-name$="-container"] button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.app-form-buttongroup-component [data-object-name$="-container"] button:not(:first-child) {
  border-left: none;
}
.app-form-buttongroup-component [data-object-name$="-container"] button.app-button-selected {
  background-color: #0095FF;
  color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.app-component-collapsible-bool-field [data-object-name$="-container"] {
  flex-direction: column;
}
.app-component-collapsible-bool-field [data-object-name$="-container"] input[type=checkbox]:checked ~ [data-object-name$="-content-child"] {
  display: block;
}
.app-component-collapsible-bool-field [data-object-name$="-container"] input[type=checkbox]:checked ~ [data-object-name$="-content-child"] > div {
  flex-direction: column;
  justify-content: flex-end;
}
.app-component-collapsible-bool-field [data-object-name$="-container"] input[type=checkbox]:checked ~ [data-object-name$="-content-child"] > div.app-component-shown {
  display: flex;
}
.app-component-collapsible-bool-field [data-object-name$="-container"] input[type=checkbox]:checked ~ label {
  margin-bottom: 12px;
}
.app-extended-form-component .app-component-select-field .app-ui-component.app-component-disabled, .app-extended-form-component .app-component-select-field input:disabled {
  background-color: #F5F6FA;
}
.app-extended-form-component .app-component-select-field .app-ui-component.app-component-disabled *:not([data-object-name$="-title"]), .app-extended-form-component .app-component-select-field input:disabled *:not([data-object-name$="-title"]) {
  cursor: default;
  background-color: #F5F6FA;
}
.app-extended-form-component .app-component-select-field .app-ui-component.app-component-disabled span.arrow, .app-extended-form-component .app-component-select-field input:disabled span.arrow {
  display: none;
}
.app-component-extended-select-field button.ui-event-empty {
  font-weight: 600;
  font-size: 14px;
  color: #435466;
  background-color: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #d1d7e9;
  width: 100%;
  height: 30px;
  text-align: left;
  padding: 0 12px;
}
.app-component-extended-select-field button.ui-event-empty:hover {
  background-color: #FBFBFB;
}
.app-component-extended-select-field button.ui-event-empty svg {
  margin-right: 5px;
}
.app-component-extended-select-field button.ui-event-empty svg rect {
  fill: #9DA5BE;
}
.app-component-extended-select-field [data-object-name="input"]:not(.app-component-shown) ~ button.ui-event-empty {
  display: block;
}
.app-contracts-component-file-field [data-object-name$="-content"] {
  background: #FFFFFF;
  overflow: hidden;
  display: flex;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] {
  flex-direction: row;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"] {
  padding: 0;
  background: transparent;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 0;
  height: 20px;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"] [data-object-name] {
  line-height: 0;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"] [data-object-name="filename"] {
  line-height: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #0076E0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  max-width: 300px;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"] [data-object-name="delete"] {
  padding-left: 10px;
  margin-left: 0;
  cursor: pointer;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"] [data-object-name="icon"] {
  margin-right: 4px;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"].app-component-shown {
  display: flex;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"]:not(.app-component-shown) ~ .app-component-input-type-file {
  display: inline-block;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] [data-object-name="item"]:not(.ui-disabled) {
  cursor: pointer;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] .app-component-input-type-file {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  margin-left: -1px;
}
.app-contracts-component-file-field [data-object-name$="-content"] [data-object-name$="-container"] .app-component-input-type-file span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #0076E0;
}
.app-component-files-field.app-component-extended-files-field [data-object-name$="-content"] [data-object-name$="-container"] {
  flex-direction: column;
}
.app-component-files-field.app-component-extended-files-field [data-object-name$="-content"] [data-object-name$="-container"] .app-component-list .app-component-list-group > div {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.app-component-files-field.app-component-extended-files-field [data-object-name$="-content"] [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item {
  border: none;
}
.app-component-files-field.app-component-extended-files-field [data-object-name$="-content"] [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="span"] {
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  max-width: 300px;
}
.app-component-files-field.app-component-extended-files-field [data-object-name$="-content"] [data-object-name$="-container"] .app-component-list .app-component-list-group .app-component-list-item [data-object-name="delete"] {
  padding-left: 10px;
  margin-left: 0;
}
.app-component-files-field.app-component-extended-files-field [data-object-name$="-content"] .app-component-input-type-file {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  margin-left: -1px;
}
.app-component-files-field.app-component-extended-files-field [data-object-name$="-content"] .app-component-input-type-file span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #0076E0;
}
.app-component-extended-object-field.app-component-object-field {
  margin-bottom: 0;
}
.app-component-extended-object-field.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  padding-top: 0;
  align-items: stretch;
}
:not(.app-field-vertical).app-component-extended-object-field.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] {
  align-items: flex-end;
}
.app-component-extended-object-field.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field.app-component-text-field {
  margin-right: 0;
}
.app-component-extended-object-field.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field.app-component-text-field [data-object-name$="-container"] {
  border-radius: 0;
  border-right: none;
}
.app-component-extended-object-field.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field.app-component-text-field:first-child [data-object-name$="-container"] {
  border-radius: 3px 0 0 3px;
}
.app-component-extended-object-field.app-component-object-field [data-object-name$="-content"] > [data-object-name$="-container"] > .app-component-field.app-component-text-field:last-child [data-object-name$="-container"] {
  border-radius: 0 3px 3px 0;
  border-right: 1px solid #D9DCE3;
}
.app-component-split-period-field.app-component-period-field [data-object-name$="-content"] [data-object-name$="-container"] {
  display: flex;
  flex-direction: row;
}
.app-component-split-period-field.app-component-period-field [data-object-name$="-content"] [data-object-name$="-container"] .app-date-selector-component .app-component-icon {
  width: auto;
  height: 30px;
  padding: 5px 10px 0 0;
  border-right: 1px solid #d9dce3;
}
.app-component-split-period-field.app-component-period-field [data-object-name$="-content"] [data-object-name$="-container"] .app-date-selector-component input {
  text-align: left;
}
.app-component-split-period-field.app-component-period-field [data-object-name$="-content"] [data-object-name$="-container"] .app-date-selector-component:nth-child(1) {
  width: 163px;
  margin-right: 0;
  border-radius: 3px 0 0 3px;
}
.app-component-split-period-field.app-component-period-field [data-object-name$="-content"] [data-object-name$="-container"] .app-date-selector-component:nth-child(2) {
  width: 139px;
  border-radius: 0 3px 3px 0;
  border-left: none;
}
.app-component-split-period-field.app-component-period-field [data-object-name$="-content"] [data-object-name$="-container"] .app-date-selector-component:nth-child(2) .app-component-icon {
  display: none;
}
.app-ui-component.app-component-autocomplete-select-field span.arrow {
  display: none;
}
.app-ui-component.app-component-autocomplete-select-field [data-object-name="clear"] {
  margin-right: 10px;
}
.app-component-collapsible-field > [data-object-name$="-title"] {
  display: none;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-title"] {
  color: #0076E0;
  cursor: pointer;
  height: 20px;
  margin: 0 32px 24px;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-title"].app-component-shown {
  display: block;
  float: left;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-title"] span {
  color: #7d859b;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-title"]:not(.app-component-shown) ~ [data-object-name$="-content"] {
  display: block;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-content"] {
  background: #F6FAFF;
  box-shadow: inset 0px -1px 0px #E0E3EA, inset 0px 1px 0px #E0E3EA;
  padding: 16px 32px 24px;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-content"] > [data-object-name$="-container"] {
  display: block;
  position: relative;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-content-title"] {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}
.app-component-collapsible-field:not(.collapsible-false) > [data-object-name$="-content"] > [data-object-name$="-container"] [data-object-name$="-content-child-toggle"] {
  font-size: 14px;
  line-height: 32px;
  color: #9DA5BE;
  border: none;
  background: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.app-badge-grid-viewer-component [data-object-name="risklvl-badge"] {
  padding: 3px 6px;
  border-radius: 3px;
  color: #FFFFFF;
  margin: auto;
  width: 112px;
  display: block;
  white-space: nowrap;
  text-align: center;
}
.app-badge-grid-viewer-component [data-object-name="risklvl-badge"].risklvl-low {
  background-color: #00B333;
}
.app-badge-grid-viewer-component [data-object-name="risklvl-badge"].risklvl-middle {
  background-color: #FF6A00;
}
.app-badge-grid-viewer-component [data-object-name="risklvl-badge"].risklvl-high {
  background-color: #ED3545;
}
.app-extended-fields-viewer-component .app-field-empty {
  color: #0076E0;
}
.app-extended-fields-viewer-component .app-field-empty span:empty:after {
  content: "Добавить";
}
.app-grid-file-viewer-component {
  width: 15px;
}
.app-component-window.app-component-fixed-window {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  --position-x: 0;
  --position-y: 0;
  background: none;
  overflow: inherit;
  box-shadow: 0 0 12px rgba(90, 102, 117, 0.15);
  background-color: #FFFFFF;
  border-radius: 10px 0 0 0;
  width: calc(100% - var(--position-x));
  height: calc(100% - var(--position-y));
}
.app-component-window.app-component-fixed-window > .app-component-window-container {
  margin: 0;
  border-radius: 10px 0 0 0;
}
.app-component-window.app-component-fixed-window > .app-component-window-container > .app-component-window-title {
  border-top-left-radius: 10px;
  border-top-right-radius: 0;
}
.app-floating-component-pane {
  position: absolute;
  background-color: #FFFFFF;
  padding: 16px 24px;
  box-shadow: 0 2px 7px rgba(90, 102, 117, 0.25);
  border-radius: 5px;
  margin-top: 4px;
}
.app-component-form-errors {
  flex: 0 1 100%;
  line-height: 20px;
  margin-bottom: 14px;
  color: #7D859B;
}
.app-component-form-errors [data-object-name="content"] span {
  color: #FF6A00;
  margin-left: 5px;
  cursor: pointer;
  text-decoration: underline;
}
.app-component-form-errors [data-object-name="content"] span:not(:last-child)::after {
  content: ",";
}
.app-modules-contractsref-components-formtogglebox [data-object-name="executedtoggle"].-selected .toggle {
  background: green;
}
.app-ui-component.app-extended-selector-component .app-selector-popup-container {
  width: 100%;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(44, 48, 59, 0.1), 0 4px 12px rgba(44, 48, 59, 0.15);
  max-height: 250px;
  min-height: 200px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.app-ui-component.app-extended-selector-component .app-selector-popup-container.app-component-shown {
  animation-name: fadein;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.app-ui-component.app-extended-selector-component .app-selector-popup-container .app-component-popup-list-component {
  position: relative;
  box-shadow: none;
  flex-grow: 1;
  overflow: auto;
}
.app-ui-component.app-extended-selector-component .app-selector-popup-container .app-component-popup-list-component.app-component-shown {
  animation: unset;
}
.app-ui-component.app-extended-selector-component .app-selector-popup-container .app-ui-component.app-toolbar-selector-panel {
  padding: 6px 12px;
  background-color: #FFFFFF;
  border-top: 1px solid #d1d7e9;
  line-height: 22px;
}
.app-ui-component.app-extended-selector-component .app-selector-popup-container .app-ui-component.app-toolbar-selector-panel .app-toolbar-item {
  margin-right: 25px;
  position: relative;
}
.app-ui-component.app-extended-selector-component .app-selector-popup-container .app-ui-component.app-toolbar-selector-panel .app-toolbar-item:not(:last-child)::after {
  content: "·";
  right: -14px;
  top: 2px;
  font-size: 22px;
  position: absolute;
}
.app-component-toolbar .app-toolbar-item {
  color: #0076E0;
  cursor: pointer;
}
.app-component-toolbar .app-toolbar-item:hover {
  color: #DA5701;
}
.app-protocol-pane-component {
  color: #14151A;
  font-size: 14px;
  line-height: 20px;
}
.app-protocol-pane-component h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 24px 0 16px;
  padding: 0;
}
.app-protocol-pane-component h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  margin: 16px 0;
  padding: 0;
}
.app-protocol-pane-component a {
  color: #0076E0;
}
.app-ui-component.app-protocol-head-component {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-ui-component.app-protocol-head-component [data-object-name="semaphore-title"] {
  padding: 4px 12px;
  border-radius: 3px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 8px;
}
.app-ui-component.app-protocol-head-component.head-yellow, .app-ui-component.app-protocol-head-component.head-orange {
  color: #DA5701;
}
.app-ui-component.app-protocol-head-component.head-yellow [data-object-name="semaphore-title"], .app-ui-component.app-protocol-head-component.head-orange [data-object-name="semaphore-title"] {
  background-color: #FF9142;
}
.app-ui-component.app-protocol-head-component.head-red {
  color: #AB1C28;
}
.app-ui-component.app-protocol-head-component.head-red [data-object-name="semaphore-title"] {
  background-color: #ED3545;
}
.app-ui-component.app-protocol-head-component.head-green {
  color: #01922A;
}
.app-ui-component.app-protocol-head-component.head-green [data-object-name="semaphore-title"] {
  background-color: #00B333;
}
.app-ui-component.app-party-protocol-component {
  display: flex;
  flex-direction: column;
  color: #14151A;
  line-height: 20px;
}
.app-ui-component.app-party-protocol-component > span {
  margin: 2px 0;
}
.app-ui-component.app-party-protocol-component span.app-party-protocol-label {
  color: #5B6173;
}
.app-ui-component.app-protocol-conditions-component .app-component-list {
  /*display: flex;
		flex-direction: column;*/
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group {
  flex-direction: column;
  align-items: start;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group.app-component-shown {
  display: flex;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 24px 0 16px;
  padding: 0;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group > div {
  padding: 0;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group h4 {
  align-items: start;
  display: flex;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group h4 svg {
  margin-right: 9px;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group .app-component-list-item {
  display: flex;
  flex-direction: column;
  border-bottom: none;
  background: none;
  margin-bottom: 12px;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group .app-component-list-item:is(:last-child) {
  margin-bottom: 0;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group .app-component-list-item h4 {
  margin-top: 0;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group .app-component-list-item svg {
  margin-right: 9px;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group .app-component-list-item .app-list-item-desc, .app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group .app-component-list-item .app-list-item-desc p {
  line-height: 20px;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group:not(.app-component-list-group-expadableitems) .app-component-list-item {
  cursor: default;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group.app-component-list-group-expadableitems .app-component-list-item .app-list-item-desc {
  display: none;
  margin: 10px 0 10px 20px;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group.app-component-list-group-expadableitems .app-component-list-item.app-component-selected .app-list-item-title {
  font-weight: 600;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group.app-component-list-group-expadableitems .app-component-list-item.app-component-selected .app-list-item-title > svg {
  transform: rotate(180deg);
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group.app-component-list-group-expadableitems .app-component-list-item.app-component-selected .app-list-item-title ~ .app-list-item-desc {
  display: block;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group[data-object-name="checked-conditions"] .app-component-list-item {
  margin-bottom: 16px;
}
.app-ui-component.app-protocol-conditions-component .app-component-list .app-component-list-group[data-object-name="checked-conditions"] .app-component-list-item:is(:last-child) {
  margin-bottom: 0;
}
.app-editdocument-window-component .app-component-window-title {
  background-color: #F5F6FA;
}
.app-editdocument-window-component .app-component-window-container {
  border-radius: 0;
  height: 80vh;
  width: 80vw;
  max-width: 1400px;
}
.app-editdocument-window-component .app-component-window-content {
  background-color: #F5F6FA;
  height: 100%;
}
.tab-pane .app-ui-component.app-contract-editorpane-component {
  height: calc(100vh - 100px);
}
.app-ui-component.app-contract-editorpane-component {
  width: 100%;
  background-color: #F5F6FA;
  flex-direction: column;
  height: 100%;
}
.app-ui-component.app-contract-editorpane-component.app-component-shown {
  display: flex;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-header {
  margin: 10px 242px 10px;
  display: flex;
  flex-direction: row;
}
#tab-content .app-ui-component.app-contract-editorpane-component .contract-editorpane-header {
  margin-left: 257px;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-header .editor-download-button.app-component-flexbox {
  width: auto;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container {
  width: 100%;
  flex-grow: 1;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split {
  width: 100%;
  height: 100%;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-component-split-left {
  flex: 0 0 212px;
  min-width: 212px;
  max-width: 450px;
  box-sizing: content-box;
  padding-right: 30px;
}
#tab-content .app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-component-split-left {
  padding-left: 15px;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-component-split-left h1 {
  color: #000000;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-component-split-left [data-object-name="open-contract"] {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  color: #0076E0;
  line-height: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-component-split-handler {
  flex-basis: 0;
  background: none;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-form-component {
  width: 100%;
  height: 100%;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-form-component .app-component-field {
  margin-bottom: 0;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-form-component [data-object-name="document"] {
  height: 100%;
  display: flex;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-form-component [data-object-name="document"] [data-object-name="document-content"] {
  display: flex;
  flex-grow: 1;
}
.app-ui-component.app-contract-editorpane-component .contract-editorpane-container .app-ui-component.app-component-split .app-form-component [data-object-name="document"] [data-object-name="document-content"] > [data-object-name$="-container"] {
  border: none;
  border-radius: 0;
  flex-grow: 1;
}
.app-ui-component.app-document-fields-viewer-component > .app-component-pane > .app-field-container {
  display: inline-block;
  position: relative;
}
.app-ui-component.app-document-fields-viewer-component > .app-component-pane > .app-field-container [data-object-name$="-viewer"] {
  cursor: pointer;
  line-height: 32px;
  margin-bottom: 4px;
  padding-right: 17px;
}
.app-ui-component.app-document-fields-viewer-component > .app-component-pane > .app-field-container [data-object-name$="-viewer"]:hover {
  color: #DA5701;
}
.app-ui-component.app-document-fields-viewer-component > .app-component-pane > .app-field-container [data-object-name$="-viewer"]:hover:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='15' viewBox='0 0 11 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9757 0.891006C7.22643 0.398917 7.8286 0.203258 8.32069 0.45399L9.5087 1.05931C10.0008 1.31004 10.1965 1.91222 9.94572 2.40431L9.26473 3.74082L6.29471 2.22752L6.9757 0.891006Z' fill='%239DA5BE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.91797 2.96875L6.51197 3.27141L3.86296 8.4704L3.45863 7.79547L5.91797 2.96875Z' fill='%239DA5BE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.10547 3.57422L8.88748 4.4822L6.42815 9.30892L5.64446 9.37853L5.24075 8.70391L4.45645 8.77321L7.10547 3.57422Z' fill='%239DA5BE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.61174 10.2972L2.4826 13.3792L3.13672 9.03613L3.59348 9.73778L4.37169 9.66538L4.77855 10.3416L5.61174 10.2972Z' fill='%239DA5BE'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 9px;
}
.app-ui-component.app-document-fields-viewer-component > .app-component-pane > .app-field-container .app-component-field {
  margin-bottom: 4px;
}
.app-ui-component.app-document-fields-viewer-component > .app-component-pane > .app-field-container .app-component-field [data-object-name$="-title"] {
  display: none;
}
.app-contracts-page-component {
  width: 100%;
  height: 100%;
}
.app-contracts-page-component [data-object-name="contracts-pane"] {
  height: 100%;
  flex-direction: column;
}
.app-contracts-page-component [data-object-name="contracts-pane"].app-component-shown {
  display: flex;
}
.app-contracts-page-component [data-object-name="nodata"] {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.app-contracts-page-component [data-object-name="nodata"].app-component-shown {
  display: flex;
}
.app-contracts-page-component [data-object-name="nodata"] .nodata-message {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #7D859B;
}
.app-contracts-page-component [data-object-name="nodata"] .nodata-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.app-contracts-page-component [data-object-name="nodata"] .nodata-buttons button {
  width: 160px;
  margin: 0 5px;
}
.app-contracts-page-component [data-object-name="contracts-header"] {
  width: 100%;
  margin-bottom: 10px;
  flex-wrap: nowrap;
}
.app-contracts-page-component [data-object-name="contracts-header"] > * {
  margin-right: 10px;
}
.app-contracts-page-component [data-object-name="contracts-header"] [data-object-name="contract-search"] {
  margin-right: 0;
  margin-left: auto;
}
.app-contracts-page-component [data-object-name="contracts-header"] [data-object-name="add-contract"] .app-component-icon {
  margin-right: 0;
}
.app-contracts-page-component [data-object-name="contracts-header"] > [data-object-name="contracts-filter"] > * {
  margin-right: 10px;
}
.tab-pane .app-contracts-page-component {
  height: calc(100vh - 100px);
}
.app-risk-component-button[data-object-name="risklvl"] {
  border: 1px solid #0076E0;
  background: #FFFFFF;
}
.app-risk-component-button[data-object-name="risklvl"] span:not(.tip) {
  color: #0076E0;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-low {
  border: 1px solid #00B333;
  background-color: #00B333;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-low span {
  color: #FFFFFF;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-middle {
  border: 1px solid #FF9142;
  background-color: #FF9142;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-middle span {
  color: #FFFFFF;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-high {
  border: 1px solid #ED3545;
  background-color: #ED3545;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-high span {
  color: #FFFFFF;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-notavailable {
  border: 1px solid #C4C8D4;
  background-color: #C4C8D4;
}
.app-risk-component-button[data-object-name="risklvl"].risklvl-notavailable span {
  color: #FFFFFF;
}
.app-download-component-pane {
  width: 400px;
}
.app-download-component-pane .app-component-field {
  margin-bottom: 0;
}
.app-contract-grid-component {
  contain: strict;
}
.app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-rows .app-ui-row {
  height: 44px;
}
.app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-rows .app-ui-row .app-ui-row-cell {
  color: #7D859B;
}
.app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-rows .app-ui-row.not-executed:not(.executed) td.app-ui-row-cell[data-object-name$="-number"], .app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-rows .app-ui-row.not-executed:not(.executed) td.app-ui-row-cell[data-object-name$="-counterparty.name"] {
  color: #14151A;
}
.app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-rows [data-object-name$="-documents"] .app-file-viewer-component {
  justify-content: left;
}
.app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-rows [data-object-name$="-documents"] .app-file-viewer-component svg {
  width: 23px;
  height: 23px;
}
.app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-rows [data-object-name$="viewer-icon"] svg path {
  stroke: #7D859B;
}
.app-contract-grid-component [data-object-name="app-ui-grid-content"].app-ui-component .app-ui-grid-head .app-ui-header-columns td {
  text-transform: uppercase;
  font-size: 10px;
}
.app-component-icon[data-object-name="check-executed-icon"] path {
  fill: white;
}
.app-editcontract-window-component {
  contain: strict;
}
.app-editcontract-window-component .editcontract-window-container {
  padding-top: 16px;
}
.app-editcontract-window-component .editcontract-window-container form {
  display: flex;
  flex-wrap: wrap;
}
.app-editcontract-window-component .editcontract-window-container form > div {
  padding: 0 32px;
  box-sizing: content-box;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field {
  padding: 0;
  margin-bottom: 0;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] {
  border-bottom: 1px solid #E0E3EA;
  margin-bottom: 16px;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] > [data-object-name$="-title"] {
  font-weight: bold;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] .app-component-field {
  margin-right: 0;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] .app-component-field[data-object-name="base"] .app-component-field {
  margin-bottom: 0;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] .app-component-field[data-object-name="base"] [data-object-name="base-content-child"] {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] .app-component-field[data-object-name="base"] [data-object-name="base-content-child"] > div {
  flex-basis: 200px;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] .app-component-field[data-object-name="base"] [data-object-name="base-content-child"] > div[data-object-name="document"] {
  flex-basis: 100%;
  width: auto;
}
.app-editcontract-window-component .editcontract-window-container form .app-component-collapsible-field [data-object-name$="requisites"] .app-component-field[data-object-name="base"] [data-object-name="base-content-child"] > div[data-object-name="number"] {
  margin-top: 12px;
  margin-right: 10px;
}
.app-editcontract-window-component .editcontract-window-container form > [data-object-name="make_agreement"], .app-editcontract-window-component .editcontract-window-container form > [data-object-name="additional_fields"] {
  order: 1;
}
.app-editcontract-window-component .editcontract-window-container form > [data-object-name="date"] {
  flex-basis: 160px;
  padding: 0;
  vertical-align: top;
}
.app-editcontract-window-component .editcontract-window-container form > [data-object-name="date"] [data-object-name$="-title"]:empty {
  display: block;
}
.app-editcontract-window-component .editcontract-window-container [data-object-name="number"] {
  flex-basis: 200px;
  margin-right: 10px;
  padding-right: 0;
}
.app-editcontract-window-component .editcontract-window-footer {
  display: flex;
  align-items: center;
  margin-top: 0;
  flex-wrap: wrap;
  background: #F5F6FA;
  border-top: 1px solid #D9DCE3;
  padding: 14px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.app-editcontract-window-component .editcontract-window-footer button {
  font-family: ProximaNova;
  font-size: 14px;
  height: 32px;
  width: 85px;
  border: unset;
  border-radius: 2px;
  cursor: pointer;
}
.app-editcontract-window-component .editcontract-window-footer button.btn-save {
  background-color: #50C14E;
  color: #FFFFFF;
  border: 1px solid rgba(80, 193, 78, 0.05);
  margin-right: 10px;
  width: 94px;
}
.app-editcontract-window-component .editcontract-window-footer button.btn-save[disabled] {
  background-color: #DEE0E4;
}
.app-editcontract-window-component .editcontract-window-footer button.btn-cancel {
  color: #435466;
  background-color: #FFFFFF;
  border: 1px solid #D1D7E9;
  width: 94px;
}
.app-editcontract-window-component .editcontract-window-footer button.btn-delete {
  color: #435466;
  background-color: #FFFFFF;
  border: 1px solid transparent;
  width: 94px;
  margin-left: auto;
}
.app-editcontract-window-component .app-component-collapsible-bool-field input[type=checkbox]:checked ~ [data-object-name$="-content-child"] {
  display: flex;
}
.app-contract-card-component {
  overflow: hidden;
}
.app-contract-card-component > .app-component-window-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.app-contract-card-component > .app-component-window-container > .app-component-window-title {
  background: #F0F9FF;
  padding: 18px 30px 0;
  border-bottom: none;
  flex: 0 0 60px;
}
.app-contract-card-component > .app-component-window-container > .app-component-window-content {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app-contract-card-component > .app-component-window-container .app-viewer-loading:empty:after, .app-contract-card-component > .app-component-window-container .app-viewer-loading span:empty:after {
  content: "загрузка...";
  width: 200px;
  color: #CCCCCC;
  text-transform: lowercase;
}
.app-contract-card-component .contract-card-header {
  background: #F0F9FF;
  padding: 0 30px 18px;
  border-bottom: 1px solid #E0E3EA;
}
.app-contract-card-component .contract-card-header h1 {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #14151A;
  text-transform: uppercase;
}
.app-contract-card-component .contract-card-header button.risklvl-notverified {
  border-color: #0095FF;
  color: #0076E0;
}
.app-contract-card-component .editcontract-window-container {
  padding-top: 16px;
}
.app-contract-card-component .editcontract-window-container form > div {
  padding: 0 32px;
}
.app-contract-card-component .editcontract-window-container form .app-component-collapsible-field {
  padding: 0;
  margin-bottom: 0;
}
.app-contract-card-component .editcontract-window-container [data-object-name="number"] {
  width: 200px;
  margin-right: 10px;
  padding-right: 0;
}
.app-contract-card-component .editcontract-window-container [data-object-name="number"].app-component-shown {
  display: inline-block;
}
.app-contract-card-component .editcontract-window-container [data-object-name="date"] {
  width: 160px;
  padding: 0;
  vertical-align: top;
}
.app-contract-card-component .editcontract-window-container [data-object-name="date"].app-component-shown {
  display: inline-block;
}
.app-contract-card-component .contract-card-container {
  margin: 20px 30px;
  overflow-y: auto;
}
.app-contract-card-component .contract-card-container > .app-component-split .app-component-split-left {
  flex-basis: 60%;
}
.app-contract-card-component .contract-card-container > .app-component-split .app-component-split-right {
  flex: 0 1 auto;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="documents-info"] {
  padding: 8px 0;
  display: block;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="documents-info"] [data-object-name="document"] [data-object-name$="-content"] [data-object-name$="-container"] {
  display: flex;
  height: 20px;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="documents-info"] [data-object-name="document"] [data-object-name$="-content"] [data-object-name$="-container"] button[data-object-name="make-document"] {
  margin-left: 25px;
  position: relative;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="documents-info"] [data-object-name="document"] [data-object-name$="-content"] [data-object-name$="-container"] button[data-object-name="make-document"]:before {
  content: "·";
  left: -15px;
  top: 3px;
  font-size: 22px;
  position: absolute;
  color: #0076E0;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] {
  display: flex;
  flex-direction: column;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > div {
  display: flex;
  flex-basis: 50%;
  padding: 8px 0;
  /*order: 10;*/
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > div .app-component-pane {
  padding: 0;
  flex: 1;
  /*&:not(.app-field-collapsiblegroupfield) {
                            display: flex;
                        }*/
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > div .app-field-title {
  color: #7D859B;
  padding: 0 33px 0 0;
  flex-basis: 35%;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > div span {
  line-height: 140%;
  font-size: 14px;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] .app-collapsiblegroupfield-pane {
  padding: 0;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] .app-collapsiblegroupfield-pane .app-collapsible-viewer-component > div {
  align-items: flex-start;
  padding: 8px 0;
  flex-wrap: wrap;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] .app-collapsiblegroupfield-pane .app-collapsible-viewer-component > div.app-component-shown {
  display: flex;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] .app-collapsiblegroupfield-pane > .app-field-collapsiblegroupfield > .app-collapsible-viewer-component > div.app-object-pane {
  padding-bottom: 0;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] .app-collapsiblegroupfield-pane > .app-field-collapsiblegroupfield > .app-collapsible-viewer-component > div.app-object-pane > .app-field-title {
  flex-basis: 100%;
  padding-bottom: 8px;
  font-weight: bold;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > [data-object-name="type-pane"] {
  order: 4;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > [data-object-name="ownstate-pane"] {
  order: 5;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > [data-object-name="counterparty-pane"] {
  order: 1;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > [data-object-name="number-pane"] {
  order: 2;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > [data-object-name="date-pane"] {
  order: 3;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > [data-object-name="executed-pane"] {
  order: 6;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] > [data-object-name="additional_fields-pane"] {
  order: 7;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] [data-object-name$="-viewer"]:not(.app-collapsible-viewer-component) {
  position: relative;
  cursor: pointer;
  display: inline;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] [data-object-name$="-viewer"]:not(.app-collapsible-viewer-component):hover {
  color: #DA5701;
}
.app-contract-card-component .contract-card-container > .app-component-split [data-object-name="contracts-info"] [data-object-name$="-viewer"]:not(.app-collapsible-viewer-component):hover:before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='15' viewBox='0 0 11 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9757 0.891006C7.22643 0.398917 7.8286 0.203258 8.32069 0.45399L9.5087 1.05931C10.0008 1.31004 10.1965 1.91222 9.94572 2.40431L9.26473 3.74082L6.29471 2.22752L6.9757 0.891006Z' fill='%239DA5BE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.91797 2.96875L6.51197 3.27141L3.86296 8.4704L3.45863 7.79547L5.91797 2.96875Z' fill='%239DA5BE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.10547 3.57422L8.88748 4.4822L6.42815 9.30892L5.64446 9.37853L5.24075 8.70391L4.45645 8.77321L7.10547 3.57422Z' fill='%239DA5BE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.61174 10.2972L2.4826 13.3792L3.13672 9.03613L3.59348 9.73778L4.37169 9.66538L4.77855 10.3416L5.61174 10.2972Z' fill='%239DA5BE'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  position: absolute;
  left: -17px;
  top: 3px;
}
.app-ui-component.app-filter-form-component {
  display: flex;
  flex: 1 1 100%;
}
.app-ui-component.app-filter-form-component > div.app-ui-component, .app-ui-component.app-filter-form-component > button.app-ui-component {
  display: inline-block;
  order: 1;
}
.app-ui-component.app-filter-form-component > div.app-ui-component[data-object-name="filter-contract"], .app-ui-component.app-filter-form-component > button.app-ui-component[data-object-name="filter-contract"] {
  order: 2;
}
.app-ui-component.app-filter-form-component > div.app-ui-component[data-object-name="executed"], .app-ui-component.app-filter-form-component > button.app-ui-component[data-object-name="executed"] {
  display: inline-flex;
  align-items: center;
  width: auto;
  order: 3;
}
.app-ui-component.app-filter-form-component > div.app-ui-component[data-object-name="executed"] > span, .app-ui-component.app-filter-form-component > button.app-ui-component[data-object-name="executed"] > span {
  order: 2;
  height: auto;
}
.app-ui-component.app-filter-form-component > div.app-ui-component[data-object-name="executed"] > div, .app-ui-component.app-filter-form-component > button.app-ui-component[data-object-name="executed"] > div {
  order: 1;
}
.app-ui-component.app-filter-form-component > div.app-ui-component[data-object-name="term"], .app-ui-component.app-filter-form-component > button.app-ui-component[data-object-name="term"] {
  order: 7;
  margin-left: auto;
}
.app-simple-button-component.app-filter-button-component {
  display: flex;
}
.app-simple-button-component.app-filter-button-component span.span-count {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background-color: #4295FA;
  color: #FFFFFF;
  font-size: 12px;
  margin-right: 10px;
}
.app-simple-button-component.app-filter-button-component span.app-component-icon {
  height: 20px;
}
.app-filter-window-component {
  contain: strict;
}
.app-filter-window-component .app-component-window-content {
  position: relative;
}
.app-filter-window-component .filter-window-container {
  padding: 20px 30px;
}
.app-filter-window-component .filter-window-container form {
  display: flex;
  flex-direction: column;
}
.app-filter-window-component .filter-window-container form [data-object-name="date"] {
  order: -1;
}
.app-filter-window-component .filter-window-container form [data-object-name="date"] .app-component-pane [data-object-name="date-input"]:nth-child(1) {
  width: 158px;
  margin-right: 0;
  border-radius: 3px 0 0 3px;
}
.app-filter-window-component .filter-window-container form [data-object-name="date"] .app-component-pane [data-object-name="date-input"]:nth-child(2) {
  width: 134px;
  border-radius: 0 3px 3px 0;
  border-left: none;
}
.app-filter-window-component .filter-window-container form [data-object-name="date"] .app-component-pane [data-object-name="date-input"]:nth-child(2) .app-component-icon {
  display: none;
}
.app-filter-window-component .filter-window-container form .app-component-field {
  display: flex;
  flex-direction: row;
}
.app-filter-window-component .filter-window-container form .app-component-field:not(:last-child) {
  border-bottom: 1px solid #E0E3EA;
  padding-bottom: 12px;
}
.app-filter-window-component .filter-window-container form .app-component-field:last-child {
  margin-bottom: 0;
}
.app-filter-window-component .filter-window-container form .app-component-field[data-object-name="additional_fields"] {
  margin-bottom: 0;
}
.app-filter-window-component .filter-window-container form .app-component-field[data-object-name="additional_fields"] .app-component-field {
  margin-bottom: 0;
}
.app-filter-window-component .filter-window-container form .app-component-field > span {
  flex: 0 0 190px;
  line-height: 32px;
}
.app-filter-window-component .filter-window-container form .app-component-field > div {
  flex-grow: 1;
}
.app-filter-window-component .filter-window-footer {
  display: flex;
  align-items: center;
  margin-top: 0;
  background: #F5F6FA;
  border-top: 1px solid #D9DCE3;
  padding: 14px 30px;
}
.app-filter-window-component .filter-window-footer button {
  font-family: ProximaNova, sans-serif;
  font-size: 14px;
  height: 32px;
  border: unset;
  border-radius: 2px;
  cursor: pointer;
  color: #435466;
  background-color: #FFFFFF;
  border: 1px solid #D1D7E9;
  padding: 0 14px;
}
.app-filter-window-component .filter-window-footer button:not(:last-child) {
  margin-right: 10px;
}
.app-filter-window-component .filter-window-footer .btn-show {
  background-color: #50C14E;
  color: #FFFFFF;
  border: 1px solid rgba(80, 193, 78, 0.05);
}
.app-filter-window-component .filter-window-footer .btn-show[disabled] {
  background-color: #DEE0E4;
}
.app-filter-window-component .filter-window-footer .btn-reset svg {
  width: 9px;
  height: 9px;
}
.app-filter-window-component .filter-window-footer .btn-reset svg path {
  fill: #ED3545;
}
.app-filter-window-component .filter-window-footer .btn-reset[disabled] {
  background-color: #DEE0E4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #FFFFFF;
}
.app-filter-window-component .filter-window-footer .btn-reset[disabled] svg path {
  fill: #FFFFFF;
}
.app-filter-window-component .filter-window-footer .btn-cancel {
  width: 84px;
}
.app-protocol-window-component {
  contain: strict;
}
.app-protocol-window-component > .app-component-window-container > .app-component-window-content {
  padding: 20px 50px;
}
.app-protocol-window-component > .app-component-window-container > .app-component-window-content > .app-component-flexbox [data-object-name="protocol-pane"] {
  margin-right: 50px;
}
.app-protocol-window-component > .app-component-window-container > .app-component-window-content > .app-component-flexbox [data-object-name="buttons"] {
  align-content: flex-start;
  width: auto;
}
.app-ui-component.app-contracts-makedocument-button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  margin-left: -1px;
  height: 20px;
}
.app-ui-component.app-contracts-makedocument-button span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #0076E0;
}
