﻿@charset "UTF-8";
.ui-dialog {
  padding: 0;
}

.ui-dialog .ui-dialog-titlebar-close, .ui-dialog .ui-dialog-titlebar-maximize {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 100%;
  margin: 0;
  padding: 0;
}

.ui-tabs .ui-tabs-nav li {
  border-bottom-width: 0;
}

.ui-tabs .ui-tabs-panel {
  border-width: 0;
  background: none;
}

.ui-dialog .ui-dialog-content {
  padding: 0;
  background: none;
}

.ui-dialog .ui-dialog-buttonpane {
  border-width: 1px 0 0 0;
  background-image: none;
}

.ui-slider .ui-slider-range {
  border: 0;
  background-position: 0 0;
}

.ui-corner-all,
.ui-corner-top, .ui-corner-left, .ui-corner-right, .ui-corner-bottom,
.ui-corner-tr, .ui-corner-tl, .ui-corner-br, .ui-corner-bl {
  border-radius: 0 0 0 0;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: inherit;
  font-size: inherit;
}

.ui-widget-content {
  color: inherit;
}

.ui-widget-content a {
  color: inherit;
}

.ui-widget-header {
  font-weight: bold;
  font-size: 1.1em;
}

.ui-widget-header a {
  color: inherit;
}

/* Interaction states
----------------------------------*/
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: inherit;
  text-decoration: none;
}

.ui-state-focus,
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: inherit;
  text-decoration: none;
}

.ui-widget .ui-widget {
  font-size: inherit;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: inherit;
  font-size: inherit;
}

/*           UI TOOLTIP             */
/*----------------------------------*/
.ui-tooltip {
  padding: 0;
  box-shadow: none;
  border: none;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: 1;
}

.ui-widget-overlay {
  opacity: 0.5;
}

.abs {
  position: absolute;
}

.abs-full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.center-x {
  margin: 0 auto;
}

.center-y {
  position: absolute;
  max-width: 100%;
  bottom: 50%;
  -ms-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.center-y.center {
  width: 100%;
}

.clearfix:after, .pull-left:after, .pull-right:after {
  content: "";
  display: table;
  clear: both;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.inline {
  display: inline-block;
  vertical-align: top;
}

.noverflow {
  overflow: hidden;
}

.table {
  display: table;
}

.table-fixed {
  display: table;
  table-layout: fixed;
}

.tr {
  display: table-row;
}

.td {
  display: table-cell;
  vertical-align: top;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.noselect {
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
}

.nowrap {
  white-space: nowrap;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.word-wrap {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
}

.bold {
  font-weight: 800;
}

.italic {
  font-style: italic;
}

.fade-out {
  opacity: 0.3;
}

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

.concealed {
  display: none !important;
}

[data-wr-bold]:after {
  display: block;
  margin-top: -1px;
  height: 1px;
  overflow: hidden;
}

/*  Užitečné, když mám element široký dle obsahu a na nějakou akci (např.
    hover) se mění řez písma na tučné a nechci, aby tato změna ovlivnila
    šířku elementu. Pokud text v atributu odpovídá obsahu elementu, zajistí
    tento styl, že šířka elementu je taková, jako by byl text uvnitř vždy
    tučný a proto změna řezu písma šířku elementu neovlivní.
*/
[data-wr-bold]:after {
  content: attr(data-wr-bold);
  font-weight: bold;
}

.stripes, .barberpole {
  background-size: 30px 30px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 75%, transparent 75%, transparent);
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@-webkit-keyframes glowin {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes glowin {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes drop {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes drop {
  from {
    transform: translateY(-100%);
  }
}
@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 30px;
  }
}
.barberpole {
  animation: barberpole 0.82s linear infinite;
}

@keyframes highlight {
  0% {
    background-color: #FFB266;
  }
  100% {
    background-color: none;
  }
}
.gmenu {
  cursor: pointer;
  font-size: 0.8125rem;
  font-family: "Open Sans", "Segoe UI", sans-serif;
}

.gmenuSubmenu {
  padding: 0;
  margin: 0;
}
.gmenuSubmenu.ui-menu {
  padding: 0;
  margin: 0;
}
.gmenuSubmenu.ui-widget-content, .gmenuSubmenu.ui-widget-content > li {
  border: none;
  background-color: #1A1A1A;
}
.gmenuSubmenu .ui-menu-item {
  padding: 0.25rem 3rem 0.25rem 2rem;
  height: 1.75rem;
  color: #fff;
  background-color: #1A1A1A;
  border: 1px solid #1A1A1A;
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.gmenuSubmenu .ui-menu-item .gfield {
  height: 100%;
  padding: 0;
  margin: 0;
}
.gmenuSubmenu .ui-menu-item .gfield .gfield-table {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.gmenuSubmenu .ui-menu-item .gmenu-wg-wrp {
  width: 100%;
  height: 100%;
}
.gmenuSubmenu .ui-menu-item > .gmenu-icon.fa-stack, .gmenuSubmenu .ui-menu-item > .gmenu-icon.gi-stack {
  left: 0;
}
.gmenuSubmenu .ui-menu-item .fa-stack-2x {
  font-size: 1.5em;
}
.gmenuSubmenu .ui-menu-item .fa-stack-1x {
  font-size: 0.7em;
  line-height: 1.5rem;
}
.gmenuSubmenu .ui-menu-item.ui-state-disabled {
  opacity: 1;
  color: #5c5c5c;
}
.gmenuSubmenu .submenuIcon {
  color: #fff;
  position: absolute;
  right: 0.5rem;
  top: 0.4375rem;
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.gmenuSubmenu.ui-menu .ui-state-active, .gmenuSubmenu.ui-menu .ui-state-hover, .gmenuSubmenu.ui-menu .ui-state-focus {
  background: none;
  background-color: #2650b9;
  border-color: #2650b9;
  margin: 0;
}
.gmenuSubmenu .gmenuSeparator {
  color: #fff;
  overflow: hidden;
  display: block;
  font-size: 0.75rem;
  height: 1rem;
}
.gmenuSubmenu .gmenuSeparator::after {
  content: "";
  display: inline-block;
  height: 0.5625rem;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  border-top: 1px solid #fff;
}
.gmenuSubmenu .gmenu-item-hidden {
  display: none;
}
.gmenuSubmenu .gmenu-shift-item {
  width: 100%;
  text-align: center;
  padding: 0;
}
.gmenuSubmenu.ui-menu .ui-state-focus.gmenu-shift-item {
  background-color: #1A1A1A;
}
.gmenuSubmenu .gmenu-shifter {
  width: 50%;
  height: 100%;
  line-height: 25px;
  display: inline-block;
  color: #fff;
}
.gmenuSubmenu .gmenu-shifter:hover {
  background-color: #2650b9;
}
.gmenuSubmenu .gmenu-shifter.ui-state-active {
  background-color: black;
}

.gmenuSubmenu .ui-menu-item > .gmenu-icon {
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  font-size: 1rem;
  line-height: 1.25rem;
}
.gmenuSubmenu .ui-menu-item > .gmenu-icon.gi, .gmenuSubmenu .ui-menu-item > .gmenu-icon.fa {
  top: auto;
  color: #fff;
}
.gmenuSubmenu .ui-menu-item > .gmenu-icon.fa {
  left: 0.4375rem;
  width: 1em;
  text-align: center;
}
.gmenuSubmenu .ui-menu-item > .gmenu-icon.gi-stack {
  top: 3px;
}
.gmenuSubmenu .ui-menu-item > .gmenu-icon.g-color {
  border-radius: 100%;
  width: 1em;
  height: 1em;
  top: 0.5em;
}

.g-menu__text {
  float: left;
}

.g-badge.g-menu__badge {
  display: inline-block;
  position: static;
  float: right;
}

.g-menu-pnl-wrp {
  background-color: #1A1A1A;
  color: #fff;
  display: flex;
}

.g-menu-pnl-wrp__separator {
  background-color: #5c5c5c;
  height: 1px;
  margin: 0.5rem 0;
}

.g-menu-pnl--topspc {
  padding-top: 0.5rem;
}
.g-menu-pnl--bottomspc {
  padding-bottom: 0.5rem;
}
.g-menu-pnl--leftspc {
  padding-left: 0.5rem;
}
.g-menu-pnl--rightspc {
  padding-right: 0.5rem;
}

div.gmenuHorizontal {
  background-color: #f8f8f8;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 5px rgba(0, 0, 0, 0.075);
  background-image: linear-gradient(to bottom, #fff 0, #f8f8f8 100%);
  border: 1px solid #d8d8d8;
  background-repeat: repeat-x;
  width: 100%;
}

.gmenuHorizontal {
  float: left;
  color: #777;
}

.gmenuHorizontal:hover {
  /*background-color: #d8d8d8;*/
  color: black;
}

.gmenuHorizontal .ui-menu-item {
  padding-left: 0.5em;
}

.gmenuHeader li {
  padding: 5px 5px 5px 5px;
  margin: 0;
}

.gmenuHeader {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.gmenuHeaderHorizontalSelected {
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.075) inset;
  background-color: #d7d7d7;
}

.gmenuHeaderHorizontal {
  float: left;
}

.gmenuHeaderHorizontal li {
  display: inline;
}

.gmenuHeaderRight {
  float: right;
}

.gmenuSubmenuHorizontal {
  margin: 5px 0 0 -5px;
}

.gmenuSubmenuRight {
  right: 0;
  left: auto;
}

.gmenuSubmenu li {
  display: block;
  padding: 0.25rem 0.5rem;
  margin: 0;
  white-space: nowrap;
}
.gmenuSubmenu li.gmenuSeparatorItem {
  padding: 0 0.5rem;
}

.gmenuSubmenu .gmenuCategory {
  color: ButtonShadow;
}

.nonSelectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gmenu-item-disabled {
  opacity: 0.6;
}

/*------------------------- GTASKLIST ------------------------------------*/
.gtasklist {
  font-family: "Open Sans", "Segoe UI", sans-serif;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #0D1732;
  color: #C6CDE0;
  height: 100%;
  /* Pretizeni scrollbaru */
}
.gtasklist .gmenu {
  font-size: 0.75rem;
}
.gtasklist .g-tl-header {
  background-color: #FAFAFA;
  color: #222;
  line-height: 1.5rem;
  display: flex;
  align-items: baseline;
  height: 1.5rem;
  border-right: 1px solid #C6CDE0;
}
.gtasklist .g-tl-header__abbr {
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.gtasklist .g-tl-header__rev {
  font-size: 0.625rem;
  margin-left: 0.5rem;
  flex-grow: 1;
}
.gtasklist .g-tl-header__btn {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  width: 2.75rem;
  align-self: stretch;
}
.gtasklist .g-tl-header__btn:focus, .gtasklist .g-tl-header__btn:hover {
  background-color: #1D3E8F;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='white' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  color: #fff;
  border-right: 1px solid #1D3E8F;
  outline: none;
}
.gtasklist .g-tl-item-root,
.gtasklist .subList {
  padding: 0;
  margin: 0;
}
.gtasklist .g-tl-scrollable-items {
  scrollbar-width: thin;
  scrollbar-color: #C6CDE0;
  margin-right: 0.125rem;
}
.gtasklist .g-tl-scrollable-items::-webkit-scrollbar-thumb {
  background-color: #0D1732;
  border-radius: 6px;
  border: 3px solid #C6CDE0;
}
.gtasklist .g-tl-scrollable-items::-webkit-scrollbar-track {
  background-color: #0D1732;
}
.gtasklist .g-tl-scrollable-items::-webkit-scrollbar {
  width: 0.3215rem;
}
.gtasklist .g-tl-item-root {
  position: relative;
}
.gtasklist .g-badge {
  font-size: 0.8125rem;
  font-weight: 400;
  right: 2.3125rem;
  top: 0.5625rem;
  min-width: 1.5rem;
}
.gtasklist .g-tl-item {
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  position: relative;
  width: 100%;
  height: 2rem;
  display: inline-block;
  padding-left: 3.125rem;
}
.gtasklist .g-tl-item:hover {
  color: #fff;
}
.gtasklist .g-tl-item.g-tl-item--active, .gtasklist .g-tl-item.g-tl-item--marked {
  font-weight: 700;
  color: #fff;
  background-color: #2650b9;
}
.gtasklist .g-tl-item.g-tl-item--active .g-tl-item__icon, .gtasklist .g-tl-item.g-tl-item--marked .g-tl-item__icon {
  color: inherit;
}
.gtasklist .g-tl-item.g-tl-item--active .gi-bgw:before, .gtasklist .g-tl-item.g-tl-item--marked .gi-bgw:before {
  background-color: #fff;
}
.gtasklist .g-tl-item:not(.g-tl-item--level-0):not(.g-tl-item--level-1) {
  padding-top: 0.25rem;
}
.gtasklist .g-tl-item__icon {
  font-size: 1.2rem;
  width: 1.25rem;
  color: #C6CDE0;
  position: relative;
}
.gtasklist .g-tl-item__icon.fa-stack .fa-stack-1x {
  font-size: 0.6rem;
  top: -0.25rem;
}
.gtasklist .g-tl-item__icon.fa-stack .fa-stack-2x {
  font-size: 1.2rem;
  top: 0.375rem;
}
.gtasklist .fa-stack,
.gtasklist .gi-stack {
  vertical-align: top;
  top: -0.5rem;
}
.gtasklist .gi-stack {
  top: -0.75rem;
}
.gtasklist .g-tl-item__text {
  display: inline-block;
  width: calc(100% - 3rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gtasklist .g-tl-item__text--expanded {
  background-color: inherit;
  padding: 1rem 0 0 0;
}
.gtasklist .g-tl-html-content {
  display: inline-block;
}
.gtasklist .g-tl-item__expander {
  position: absolute;
  font-size: inherit;
  right: 1rem;
  padding-top: 0.125rem;
  top: auto;
}
.gtasklist .g-tl-item-wrp {
  list-style: none;
}
.gtasklist .g-tl-item-wrp.g-tl-item-wrp--favorite {
  background-color: black;
}
.gtasklist .g-tl-item-wrp.gmenu-item-disabled {
  opacity: 0.6;
}
.gtasklist .g-tl-item-wrp.gmenu-item-disabled .g-tl-item__icon {
  color: #fff;
}
.gtasklist .g-tl-sublist {
  background-color: #000;
  width: 100%;
  padding: 0;
}
.gtasklist .g-tl-item--level-0,
.gtasklist .g-tl-item--level-1 {
  height: 3rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
}
.gtasklist .g-tl-item--level-0 .g-tl-item__icon:not(.gi-stack):not(.fa-stack),
.gtasklist .g-tl-item--level-1 .g-tl-item__icon:not(.gi-stack):not(.fa-stack) {
  top: -0.125rem;
}
.gtasklist .g-tl-item--level-0:hover .g-tl-item__icon,
.gtasklist .g-tl-item--level-1:hover .g-tl-item__icon {
  color: #fff;
}
.gtasklist .g-tl-item--level-0:hover .g-tl-item__icon .gi-bgw:before,
.gtasklist .g-tl-item--level-1:hover .g-tl-item__icon .gi-bgw:before {
  background-color: #fff;
}
.gtasklist .g-tl-item--level-0 .g-tl-item__text,
.gtasklist .g-tl-item--level-1 .g-tl-item__text {
  top: -0.1875rem;
}
.gtasklist .g-tl-item--level-0 .g-badge,
.gtasklist .g-tl-item--level-1 .g-badge {
  top: 1rem;
}
.gtasklist .g-tl-item--level-0 {
  padding: 1rem;
}
.gtasklist .g-tl-item--level-0 .g-tl-item__icon {
  margin-right: 0.625rem;
}
.gtasklist .g-tl-item--level-0.g-tl-item--expanded:not(.g-tl-item--marked) {
  background-color: black;
  color: #fff;
}
.gtasklist .g-tl-item--level-0.g-tl-item--expanded:not(.g-tl-item--marked) .g-tl-item__icon {
  color: inherit;
}
.gtasklist .g-tl-item--level-1 {
  padding: 1rem 0 1rem 3.125rem;
}
.gtasklist .g-tl-item--level-1 .g-tl-item__icon {
  margin-right: 0.5rem;
}
.gtasklist .g-tl-item--level-1:before {
  content: "";
  background: #0D1732;
  position: absolute;
  top: 0;
  left: 3.25rem;
  height: 1px;
  width: 100%;
}
.gtasklist .g-tl-item--level-1.g-tl-item--marked:before {
  height: 0;
}
.gtasklist .gmenuSeparator {
  background-color: #4d5e8d;
  display: block;
  height: 1px;
}
.gtasklist.g-task-list-collapsed .g-tl-item:not(.g-tl-item--level-0):not(.g-tl-item--level-1) {
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.gtasklist.g-task-list-collapsed .g-tl-item--level-0.g-tl-item--expanded:not(.g-tl-item--level-0--inline) {
  background-color: black;
}
.gtasklist.g-task-list-collapsed .g-tl-item--level-1 {
  padding: 1rem 0 1rem 0.5rem;
}
.gtasklist.g-task-list-collapsed .g-tl-item--level-1:before {
  left: 0;
}
.gtasklist.g-task-list-collapsed .g-tl-header__btn {
  width: 3.25rem;
}
.gtasklist .g-tl-item-root--bottom {
  background-color: black;
  display: flex;
  flex-wrap: wrap;
}
.gtasklist .g-tl-item-root--bottom .g-tl-item-wrp {
  display: inline-block;
  width: 3.25rem;
  height: 3rem;
}
.gtasklist .g-tl-item-root--bottom .g-tl-item-wrp .g-badge {
  top: 1.5rem;
  left: 1.5rem;
}
.gtasklist .g-tl-item-root--bottom .g-tl-item__icon {
  color: inherit;
}
.gtasklist .g-tl-item-root--bottom a.g-tl-item:hover {
  background-color: #2650b9;
}
.gtasklist .g-tl-item-root--bottom .g-tl-item__text {
  display: none;
}
.gtasklist .g-tl-item-root--bottom .g-tl-item--level-0.g-tl-item__html {
  height: auto;
  width: auto;
}
.gtasklist .gi-bgw:before {
  background-color: #C6CDE0;
}
.gtasklist .mCSB_scrollTools {
  width: 0.5rem;
}
.gtasklist .mCSB_scrollTools .mCSB_dragger {
  z-index: 101;
}
.gtasklist .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 0.375rem;
}
.gtasklist .mCSB_scrollTools.mCSB_1_scrollbar.mCS-minimal.mCSB_scrollTools_vertical {
  right: 0.25rem;
}

/* Experimentalni (mozna ke smazani) - zobrazeni vybraneho inline u gtasklistu */
.gtasklist-inline.gtasklist-inline {
  background-color: black;
  border: none;
}
.gtasklist-inline.gtasklist-inline .g-link {
  color: white;
  border: none;
  opacity: 0.8;
}
.gtasklist-inline.gtasklist-inline .g-link:hover {
  opacity: 1;
}
.gtasklist-inline.gtasklist-inline .gform-section {
  padding: 1rem;
}
.gtasklist-inline.gtasklist-inline .gform-section label {
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: bold;
}
.gtasklist-inline.gtasklist-inline .ui-icon,
.gtasklist-inline.gtasklist-inline .ui-widget-content .ui-icon {
  background-image: url(images/ui-icons_2e83ff_256x240.png);
}

/*------------------------- GTASKLIST END---------------------------------*/
/*-------------------------GBUTTON-----------------------------------------*/
.g-button {
  font-family: "Open Sans", "Segoe UI", sans-serif;
  width: auto;
  border: 0 solid transparent;
  font-size: 0.8125rem;
  margin: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 2rem;
  cursor: pointer;
  white-space: nowrap;
  background-color: #E7EAF2;
  color: inherit;
  padding: 1px 0.5rem;
  position: relative;
  /*.gi-stack {
      //top: -0.1875rem;
      width: 1rem;
  }*/
}
.g-button__icon--activator.gi {
  width: auto;
}
.g-button__icon {
  font-size: 1rem;
}
.g-button__icon.gi {
  top: auto;
}
.g-button__icon.fa {
  top: 1px;
}
.g-button__icon.gi-stack {
  top: auto;
  width: 1rem;
}
.g-button__icon.gi-stack .gi:not(.gi-stack-fw) {
  top: auto;
}
.g-button__icon.fa-stack, .g-button__icon.gi-stack {
  font-size: 0.625rem;
}
.g-button.g-button--mb-activated:not(.g-button--primary), .g-button:hover {
  background-color: #C6CDE0;
}
.g-button:focus {
  background-color: #C6CDE0;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.g-button::-moz-focus-inner {
  border: 0;
}
.g-button.g-button--activator:focus, .g-button.g-button--activator:hover {
  background-color: #2650b9;
}
.g-button.g-button--activator:focus .gi, .g-button.g-button--activator:hover .gi {
  color: #fff;
}
.g-button:hover + .g-button--activator, .g-button:focus + .g-button--activator {
  background-color: rgba(198, 205, 224, 0.4);
}
.g-button--activator {
  padding: 0 0.1rem;
  vertical-align: top;
}
.g-button--activator:hover {
  background-color: #2650b9;
}
.g-button--activator:hover .gi {
  color: #fff;
}
.g-button--favorite {
  height: 100%;
  font-weight: normal;
  background-color: transparent;
  border: none;
  color: inherit;
  vertical-align: middle;
}
.g-button--favorite-tab {
  background-color: transparent;
  border: none;
  border-color: transparent;
}
.g-button--checked, .g-button--checked:hover, .g-button--checked:focus {
  background-color: #6699FF;
}
.g-button--checkable.g-button--checkable:hover {
  background-color: #6699FF;
}
.g-button--checkable.g-button--checkable:active {
  background-color: #2650b9;
}
.g-button--favorite-tab.g-button--mb-activated, .g-button--favorite-tab:hover, .g-button--favorite-tab:focus {
  border: none;
}
.g-button--small {
  height: 18px;
  line-height: 19px;
  box-sizing: content-box;
}
.g-button--activated {
  background-color: #2650b9;
}
.g-button--activated.g-button--activator .gi {
  color: #fff;
}
.g-button--disabled {
  opacity: 0.35;
}
.g-button--primary, .g-button--primary.ui-button {
  background-color: #1D3E8F;
  background-image: initial;
  color: #fff;
  border: none;
}
.g-button--primary:hover, .g-button--primary.ui-button:hover {
  background-color: #0D1732;
  color: #fff;
  border: none;
}
.g-button--primary:hover > .fa.g-button__icon--primary, .g-button--primary.ui-button:hover > .fa.g-button__icon--primary {
  color: #fff;
}
.g-button--primary.g-button--activated, .g-button--primary:focus, .g-button--primary.ui-button.g-button--activated, .g-button--primary.ui-button:focus {
  background-color: #0D1732;
  color: #fff;
  border: none;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='white' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
}
.g-button--primary:hover + .g-button--activator, .g-button--primary:focus + .g-button--activator {
  background-color: #1D3E8F;
}
.g-button--flexible {
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-button .g-badge {
  position: static;
  display: inline-block;
  line-height: 1rem;
}

img.g-button__icon {
  display: inline;
  vertical-align: -6px;
  width: 22px;
}

div.g-button__icon::after {
  content: " ";
  display: inline-block;
}

.g-unic-icon {
  font-size: 1rem;
  line-height: 1rem;
}

/*.fa.g-button__icon,
.gi.g-button__icon {
    vertical-align: 0;
    color: #0D1732;
}*/
.fa.g-button__icon--primary {
  color: #0D1732;
}

.g-button__text {
  padding: 0 0.4rem 0 0.4rem;
}

.gfield span.g-button__icon {
  font-weight: bold;
  line-height: 100%;
}

.g-button-progress {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0.5;
  background-color: #1d3e8f;
}

/* Styly gtoolbaru */
.gtoolbar {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans", "Segoe UI", sans-serif;
  display: flex;
}

.g-toolbar__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.g-toolbar__favorites {
  width: calc(100% - 2rem);
}
.g-toolbar__menu-btn {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  flex-grow: 1;
  width: 1rem;
  border: none;
  background-color: transparent;
  color: inherit;
}
.g-toolbar__menu-btn .gi {
  font-size: 1rem;
}

.g-toolbar__item {
  display: inline-block;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
.g-tab-header .g-toolbar__item .gfield {
  margin: 0;
}
.g-toolbar__item .gfield {
  height: 100%;
  padding: 0 0.25rem 0 0.25rem;
}
.g-toolbar__item .gfield .gfield-table {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.g-toolbar__item--placeholder {
  display: inline-block;
}

.gtoolbar .g-toolbar__menu-btn:hover,
.gtoolbar .g-toolbar__menu-btn:focus,
.gtoolbar .g-toolbar__menu-btn--active {
  background-color: #2650b9;
  color: #fff;
}
.gtoolbar .g-toolbar__menu-btn:hover:focus,
.gtoolbar .g-toolbar__menu-btn:focus:focus,
.gtoolbar .g-toolbar__menu-btn--active:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='white' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
}

/* Zmena pozadi pretahovane item ve favorites v toolbaru*/
.gtoolbar .ui-sortable-helper {
  background-color: #C6CDE0;
}

/* GPinnableCtmenu */
.gpinnablectmenu .gmenuSubmenu {
  padding: 0;
  margin: 0;
}
.gpinnablectmenu .gpctmenuPin {
  position: absolute;
  right: 1.5rem;
  top: 0.375rem;
  margin-left: 0;
  color: #fff;
  opacity: 0.4;
  cursor: pointer;
}
.gpinnablectmenu .gpctmenuPin.gpctmenuUnpinned {
  color: transparent;
}
.gpinnablectmenu .gpctmenuPin:hover, .gpinnablectmenu .gpctmenuPin.gpctmenuUnpinned:hover {
  opacity: 1;
  color: #fff;
}

.gctmenuSearch {
  font-family: "Open Sans", "Segoe UI", sans-serif;
  padding-left: 2rem;
  height: 1.875rem;
  position: relative;
  border: 1px solid #1A1A1A;
}

.gctmenuSearchIcon {
  float: left;
  left: 0.5rem;
  margin-top: 0.375rem;
  position: absolute;
  color: #C6CDE0;
  cursor: pointer;
  font-size: 1rem;
}

.g-tooltip {
  font-family: "Open Sans", "Segoe UI", sans-serif;
  padding: 0.25rem;
  z-index: 9999;
  max-width: 300px;
  word-break: break-word;
  overflow: hidden;
}

.g-tooltip__arrow-triangle {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 9998;
}

.g-tooltip__arrow {
  position: relative;
}
.g-tooltip__arrow:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.g-tooltip__arrow--top:before {
  bottom: 100%;
  border-bottom: 4px solid black;
  border-bottom-color: inherit;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.g-tooltip__arrow--top-r:before {
  bottom: 100%;
  border-bottom: 4px solid black;
  border-bottom-color: inherit;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  right: 1rem;
}
.g-tooltip__arrow--bottom:before {
  top: 100%;
  border-top: 4px solid black;
  border-top-color: inherit;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.g-tooltip__arrow--bottom-r:before {
  top: 100%;
  border-top: 4px solid black;
  border-top-color: inherit;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  right: 1rem;
}
.g-tooltip__arrow--left:before {
  top: 0.75rem;
  right: 100%;
  border-left: none;
  border-top: 4px solid transparent;
  border-right: 4px solid black;
  border-right-color: inherit;
  border-bottom: 4px solid transparent;
}
.g-tooltip__arrow--left-b:before {
  bottom: 0.75rem;
  right: 100%;
  border-left: none;
  border-top: 4px solid transparent;
  border-right: 4px solid black;
  border-right-color: inherit;
  border-bottom: 4px solid transparent;
}
.g-tooltip__arrow--right:before {
  top: 0.75rem;
  left: 100%;
  border-top: 4px solid transparent;
  border-left: 4px solid black;
  border-left-color: inherit;
  border-bottom: 4px solid transparent;
}
.g-tooltip__arrow--right-b:before {
  bottom: 0.75rem;
  left: 100%;
  border-top: 4px solid transparent;
  border-left: 4px solid black;
  border-left-color: inherit;
  border-bottom: 4px solid transparent;
}

.g-tooltip__header {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.g-tooltip__tip {
  color: #fff;
  font-size: 0.75rem;
}

.g-badge {
  position: absolute;
  border-radius: 0.5rem;
  padding: 0 0.25rem;
  text-align: center;
}

.gtasklist .g-badge.g-badge {
  border: 1px solid #0D1732;
}

.g-static__icon {
  margin-right: 0.25rem;
  font-size: 1rem;
}
.g-static + .g-badge {
  position: static;
  display: inline-block;
  cursor: default;
  margin-left: 0.25rem;
}

.g-link {
  margin: 0 0.25rem 0 0.25rem;
  display: inline-flex;
  align-items: center;
}
.g-link:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.g-link--disabled {
  opacity: 0.5;
}
.g-link__icon {
  font-size: 1rem;
}
.g-link__icon:after {
  content: " ";
}
.g-link__icon.gi {
  top: auto;
}
.g-link__icon.fa {
  top: 1px;
}
.g-link__icon.gi-stack {
  width: 1rem;
  top: auto;
}
.g-link__icon.gi-stack .gi {
  top: auto;
}
.g-link__icon + .g-link__text {
  margin: auto 0 auto 0.25rem;
}
.g-link__text {
  border-bottom: 0.0625rem solid transparent;
}
.g-link__text:hover {
  border-bottom: 0.0625rem solid #2650b9;
}
.g-link + .g-badge {
  position: static;
  display: inline-block;
  cursor: default;
}
.g-link + .g-link__menu, .g-link + .g-badge + .g-link__menu {
  color: #2650b9;
  text-decoration: none;
}

a.g-link,
.g-link--menu {
  cursor: pointer;
}

.g-link--decorated,
a.g-link {
  color: #2650b9;
  text-decoration: none;
}
.g-link--decorated--no-underline,
a.g-link--no-underline {
  border-bottom: none;
}

.g-doc-upl-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% - 2rem);
}
.g-doc-upl-panel > * {
  float: left;
}
.g-doc-upl-panel .gflashpanel__separator {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.g-doc-upl-panel .g-doc-upl {
  float: right;
}
.g-doc-upl-panel .g-doc-upl-save-as {
  margin-right: 0.5rem;
}
.g-doc-upl-panel .g-doc-upl-form {
  display: inline-block;
  width: auto;
  position: relative;
}
.g-doc-upl-panel .g-doc-upl-inp {
  display: none;
}
.g-doc-upl-panel .g-doc-upl-selfile {
  border: 1px solid #0D1732;
  padding: 0 0.5rem;
  cursor: pointer;
}

.g-doc-upl-inp,
.g-doc-upl-selfile {
  display: inline-block;
}

.g-check-icon {
  opacity: 0;
}
.g-check-icon.g-check-icon--checked {
  opacity: 1;
}

.ginlinedialog {
  overflow: auto;
}

.ginlinedialog__wrapper {
  position: absolute;
  background-color: #FAFAFA;
  outline: none;
  /*border: 1px solid $base-color-dark; // $base-color-active;*/
  /*box-shadow: 0 0 5px $base-color-dark; // $base-color-active;*/
  /*border: 1px solid $base-color-dark;*/
  border: 1px solid #C6CDE0;
}
.ginlinedialog__wrapper .gtoolbar.ginlinedialog__menubar {
  background-color: #E7EAF2;
  height: 2rem;
}
.ginlinedialog__wrapper .gbuttonpanel.ginlinedialog__commandbar {
  background: #FAFAFA;
  border-top: 1px solid #efefef;
  padding: 0.5rem;
}
.ginlinedialog__wrapper .gbuttonpanel.ginlinedialog__commandbar .g-button {
  height: 1.625rem;
  line-height: 1.625rem;
}
.ginlinedialog__wrapper.ginlinedialog__wrapper--shadow {
  -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.ginlinedialog__wrapper.ginlinedialog__wrapper--shadow-less {
  -moz-box-shadow: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}
.ginlinedialog__wrapper.ginlinedialog__wrapper--border-less {
  border-width: 0;
}

.ginlinedialog--light-shadow {
  box-shadow: 0px 4px 34px -10px rgba(0, 0, 0, 0.21);
}

/* gloadlink */
.loadlink-rotation-icon-class {
  margin: 0.1rem;
  font-size: 1rem;
}

.gloadlink-content {
  margin-top: 0.5rem;
  border: 1px solid gray;
}

.g-article {
  /*padding-left: 1rem;
  padding-right: 1rem;*/
  height: 100%;
  /*min-height: 100vh;*/
  display: flex;
  flex-direction: column;
  /*.g-article-toolbar.gbuttonpanel__items {
      .g-buttonpanel__item {
          margin-right: 0.5rem;
          background-color: lightgray;
          height: auto;
          margin-left: 0.5rem;
      }
      //.g-button__text {
      //color: #2650b9;
      //}
  }*/
}
.g-article .g-article-item {
  flex: 1;
}
.g-article h1.g-article-title {
  color: #1d3e8f;
}
.g-article .g-article-toolbar {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 0.5rem;
}
.g-article .g-article-toolbar .g-article-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50%;
}
.g-article .g-article-toolbar .g-article-tags div {
  background-color: #93a3b2;
  margin-right: 0.5rem;
  padding-bottom: 0.1rem;
  padding-top: 0.1rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  color: #FFFFFF;
}
.g-article .g-article-toolbar .g-article-menubar {
  width: 50%;
}
.g-article .g-article-item-body .input-area {
  min-height: 20rem;
  width: 100%;
}
.g-article .g-article-item-body .output-area {
  border: 1px solid lightgray;
}
.g-article .g-article-date {
  opacity: 0.5;
  margin-bottom: 2rem;
}
.g-article .g-article-author {
  opacity: 0.5;
}
.g-article .g-article-menu li {
  list-style-type: none;
  padding: 0.25rem;
  width: 2rem;
  /*:hover{
      background-color: aqua;
  }*/
}
.g-article .g-article-selected-text {
  color: #FFFFFF;
  background-color: #2650b9;
}
.g-article .g-article-paragraph {
  margin-bottom: 2rem;
}
.g-article .g-article-commandbar-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: 1rem;
  /*align-items: flex-end;*/
}
.g-article .g-article-commandbar-container .g-article-commandbar {
  width: 50%;
  /*align-items: flex-end;*/
}
.g-article .g-article-commandbar-container button {
  margin-right: 0.5rem;
}

.gactionmenu {
  background-color: #FAFAFA;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.gactionmenu:focus {
  outline: none;
}
.gactionmenu__headerWrp {
  padding: 0.25rem 0.25rem 0 0.25rem;
}
.gactionmenu__footerWrp {
  padding: 0.25rem;
}
.gactionmenu__frameWrp {
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
.gactionmenu__frame {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gactionmenu__header {
  border-bottom: 1px solid #E7EAF2;
  padding: 0.25rem 0 0.125rem 0;
  font-weight: bold;
}
.gactionmenu__header .gactionmenu__item .item__center {
  text-align: center;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 1px 0 1px 0;
}
.gactionmenu__header .gactionmenu__item .item__center .item__icon {
  margin-right: 0.5rem;
}
.gactionmenu__header-panel {
  display: flex;
  flex-direction: row-reverse;
}
.gactionmenu__menubar .g-button {
  background-color: transparent;
  height: 1.75rem;
}
.gactionmenu__menubar .g-button:last-of-type {
  padding-right: 0.25rem;
}
.gactionmenu__searbox-wrp {
  position: relative;
  flex-grow: 2;
  overflow: hidden;
  background-color: #e9e9e9;
}
.gactionmenu__searbox-wrp--focus {
  box-shadow: 0 0 5px #2650b9;
}
.gactionmenu__searchbox {
  padding: 0.375rem 1.875rem;
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #C6CDE0;
  /*&:focus {
      background-color: $base-color-fields;
  }*/
}
.gactionmenu__searbox-icon {
  position: absolute;
  font-size: 0.8125rem;
  top: 0.5rem;
  left: 0.5rem;
  color: #333;
}
.gactionmenu__items {
  position: relative;
  margin: 0.25rem 0;
}
.gactionmenu__footer {
  margin-top: auto;
  border-top: 1px solid #E7EAF2;
  padding: 0.25rem;
}
.gactionmenu__frame-wrapper {
  flex-grow: 1;
  border-right: 1px solid #E7EAF2;
}
.gactionmenu__frame-wrapper:last-of-type {
  border-right: none;
}
.gactionmenu__frame-wrapper--level0 .gactionmenu__header .item__center {
  padding: 0 2rem 0 2rem;
}
.gactionmenu__frame-wrapper--level0 .gactionmenu__item .item__left.item--back {
  display: inline-block;
}

.gactionmenu__item {
  display: flex;
  width: 100%;
  line-height: 1.75rem;
  position: relative;
  /* gactionmenu__item--iconless - modifikator pro skryti ikony (pak to musi mit vsechny itemy ve frame!) */
}
.gactionmenu__item.activable,
.gactionmenu__item .activable {
  cursor: pointer;
}
.gactionmenu__item.activable:hover,
.gactionmenu__item .activable:hover {
  background-color: #d7dbe9;
}
.gactionmenu__item.active {
  background-color: #C6CDE0;
}
.gactionmenu__item.selected::after {
  content: " ";
  position: absolute;
  width: 0.25rem;
  height: 100%;
  left: 0;
  background-color: #1D3E8F;
}
.gactionmenu__item .item__left {
  width: 1.75rem;
  padding: 0 0.5rem;
  font-size: 1rem;
}
.gactionmenu__item .item__left.item--back {
  display: none;
  position: absolute;
  left: 0.25rem;
}
.gactionmenu__item .item__icon {
  font-size: 1rem;
}
.gactionmenu__item .item__icon.gi-stack {
  line-height: 1.625rem;
  height: 1.625rem;
  width: 1rem;
  top: -0.125rem;
}
.gactionmenu__item .item__icon.fa-stack {
  font-size: 0.5rem;
  width: 1rem;
}
.gactionmenu__item .item__icon.g-unic-icon {
  display: table;
  width: 1rem;
  text-align: center;
  line-height: inherit;
}
.gactionmenu__item .item__icon.g-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  display: inline-block;
}
.gactionmenu__item .item__icon--navicon {
  font-size: 0.875rem;
}
.gactionmenu__item .item__center {
  flex-grow: 2;
  padding: 0 0.25rem;
  display: flex;
  align-items: baseline;
}
.gactionmenu__item .item__badge {
  padding: 0 0.25rem;
  min-width: 1.75rem;
  text-align: center;
}
.gactionmenu__item .item__caption {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 1px;
}
.gactionmenu__item .item__right {
  font-size: 1rem;
  min-width: 1.75rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gactionmenu__item .item__right--split {
  border-left: 1px solid #FAFAFA;
}
.gactionmenu__item .item__right--split:hover {
  background-color: #a5b0ce;
}
.gactionmenu__item.item__separator {
  width: 100%;
  overflow: hidden;
  line-height: 0.75rem;
}
.gactionmenu__item.item__separator.item__separator--labeded .separator {
  background-color: inherit;
  height: 1.5rem;
  line-height: 1.5rem;
  white-space: nowrap;
}
.gactionmenu__item.item__separator.item__separator--labeded .separator::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #c6cde0;
  position: relative;
  top: -0.25rem;
}
.gactionmenu__item .separator {
  height: 1px;
  width: calc(100% - 0.25rem);
  margin: 0.5rem 0 0.5rem 0.5rem;
  background-color: #C6CDE0;
}
.gactionmenu__item.item__category {
  padding: 0 0.5rem;
  opacity: 0.6;
}
.gactionmenu__item.item__html {
  padding: 0.5rem;
}
.gactionmenu__item .g-badge {
  position: static;
}
.gactionmenu__item .pin-wrp {
  padding: 0 0.5rem;
  cursor: pointer;
  max-height: 1.75rem;
}
.gactionmenu__item .pin-wrp:not(.pin-wrp--pinned) {
  display: none;
}
.gactionmenu__item .pin-wrp:hover {
  background-color: #a5b0ce;
}
.gactionmenu__item.pinnable.active .pin-wrp, .gactionmenu__item.pinnable:hover .pin-wrp {
  display: block;
}
.gactionmenu__item--iconless .item__left {
  display: none;
}

.gactionmenufavs-separator {
  background: repeating-linear-gradient(135deg, #F4F6F9, #F4F6F9 10px, #C6CDE0 10px, #C6CDE0 20px);
  font-style: italic;
}
.gactionmenufavs-separator .gbutton {
  display: none;
}

.gmenusettings__grid .structure-lead > span > i.gi-separator {
  display: none;
}
.gmenusettings__grid .structure-lead > span .separator {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 1rem);
  font-style: italic;
}
.gmenusettings__grid .structure-lead > span .separator:before, .gmenusettings__grid .structure-lead > span .separator:after {
  content: "";
  flex: 1;
  height: 1px;
  margin: 0 1em;
  height: 3px;
  box-shadow: 0 -0.5px 0 black, 0 0.5px 0 black;
}

.gbuttonpanel {
  vertical-align: bottom;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.gbuttonpanel__items {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: 1px;
}
.gbuttonpanel.gbuttonpanel--transparent {
  background-color: inherit;
}
.gbuttonpanel--bar {
  background: #E7EAF2;
}
.gbuttonpanel.gsubtasks {
  background-color: inherit;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.25rem;
  position: relative;
  border-bottom: 0.0625rem solid #C6CDE0;
  overflow: hidden;
}
.gbuttonpanel.gsubtasks .gbuttonpanel__items {
  overflow: visible;
}
.gbuttonpanel.gsubtasks .g-buttonpanel__item {
  height: 1.5rem;
}
.gbuttonpanel.gsubtasks .g-link--chbpnl-item, .gbuttonpanel.gsubtasks .g-static {
  border-bottom: none;
  color: #333;
  vertical-align: baseline;
  position: relative;
  padding: 0 0.75rem;
}
.gbuttonpanel.gsubtasks .glink::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  background-color: transparent;
  height: 2px;
  width: 100%;
}
.gbuttonpanel.gsubtasks .g-link {
  position: relative;
}
.gbuttonpanel.gsubtasks .g-link__text:hover {
  border-bottom-color: transparent;
}
.gbuttonpanel.gsubtasks .g-link--chbpnl-item-active {
  position: relative;
}
.gbuttonpanel.gsubtasks .g-link--chbpnl-item-active .g-link {
  color: #6699FF;
}
.gbuttonpanel.gsubtasks .g-link--chbpnl-item-active::after {
  background-color: #6699FF;
  transition: all 0.4s;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 2px;
  width: 100%;
}
.gbuttonpanel.gsubtasks .g-link:hover::after,
.gbuttonpanel.gsubtasks .g-link:focus::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  background-color: #C6CDE0;
  height: 2px;
  width: 100%;
  transition: width 1s;
}
.gbuttonpanel.gsubtasks .g-link + .g-badge,
.gbuttonpanel.gsubtasks .g-static + .g-badge {
  position: relative;
  left: -0.5rem;
}
.gbuttonpanel .g-color {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.5rem;
}

.gbuttonpanel .g-static {
  height: 2rem;
  display: flex;
  align-items: center;
  margin: 0 0.5rem 0 0.5rem;
}
.gbuttonpanel .g-static__icon {
  font-size: 1rem;
}

.gbuttonpanel .g-link {
  line-height: 1.5rem;
}

.g-buttonpanel__item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  position: relative;
}
.g-buttonpanel__item:last-child {
  margin-right: 0;
}
.g-buttonpanel__item.g-buttonpanel-item--hidden {
  display: none;
}
.g-buttonpanel__item.g-buttonpanel__item--menu.glink a {
  padding: 0 0.5rem;
  height: 1.5rem;
}
.g-buttonpanel__item:focus::before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  z-index: 999;
}

.g-buttonpanel__item--separator {
  position: relative;
  margin: 0 0.25rem;
  height: 1.5rem;
}
.g-buttonpanel__item--separator:after {
  background-color: #C6CDE0;
  content: "";
  position: absolute;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1px;
}

.g-buttonpanel__item--focused {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline: none;
}

@-moz-document url-prefix() {
  .g-buttonpanel__item--separator:after {
    top: 0.125rem;
    height: 100%;
  }
}
.g-datepicker {
  font-size: 0.8125rem;
  line-height: 1;
  background: #FAFAFA;
  -moz-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  border-radius: 0px;
  border: 1px solid #C6CDE0;
}

.g-datepicker__close {
  top: -1rem;
  position: absolute;
  right: -1rem;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-datepicker :focus, .g-datepicker :focus-visible,
.g-datepicker .flatpickr-current-month input.cur-year:focus,
.g-datepicker .flatpickr-current-month select.flatpickr-monthDropdown-months:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-datepicker.showTimeInput.hasTime .flatpickr-time {
  border-top-color: #C6CDE0;
}

.g-datepicker.arrowTop:before {
  border-bottom-color: #C6CDE0;
}

.g-datepicker.arrowTop:after {
  border-bottom-color: #FAFAFA;
}

.g-datepicker.arrowBottom:before {
  border-top-color: #C6CDE0;
}

.g-datepicker.arrowBottom:after {
  border-top-color: #FAFAFA;
}

.g-datepicker .flatpickr-month {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 2.2rem;
  line-height: inherit;
}

.g-datepicker .flatpickr-prev-month,
.g-datepicker .flatpickr-next-month {
  height: 2.2rem;
  line-height: inherit;
}

.g-datepicker .flatpickr-prev-month:hover,
.g-datepicker .flatpickr-next-month:hover {
  color: inherit;
  background-color: #C6CDE0;
}

.g-datepicker .flatpickr-prev-month:hover svg,
.g-datepicker .flatpickr-next-month:hover svg {
  fill: inherit;
}

.g-datepicker .numInputWrapper span {
  border-color: rgba(57, 57, 57, 0.05);
}

.g-datepicker .numInputWrapper span:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.g-datepicker .numInputWrapper span:active {
  background-color: rgba(0, 0, 0, 0.2);
}

.g-datepicker .numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
}

.g-datepicker .numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
}

.g-datepicker .numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.g-datepicker .numInputWrapper:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.g-datepicker .numInputWrapper:hover span, .g-datepicker .numInputWrapper input:focus + span, .g-datepicker .numInputWrapper input:focus + span + span {
  opacity: 1;
}

.g-datepicker .flatpickr-current-month {
  font-size: 1.125rem;
  height: 2.2rem;
  color: inherit;
}

.g-datepicker .flatpickr-current-month span.cur-month {
  font-weight: 700;
  color: inherit;
  margin-left: 1.5ch;
}

.g-datepicker .flatpickr-current-month span.cur-month:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.g-datepicker flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.g-datepicker .flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.g-datepicker .flatpickr-current-month input.cur-year {
  background-color: transparent;
  color: inherit;
}

.g-datepicker .flatpickr-current-month input.cur-year[disabled],
.g-datepicker .flatpickr-current-month input.cur-year[disabled]:hover {
  color: rgba(0, 0, 0, 0.5);
  background-color: transparent;
}

.g-datepicker .flatpickr-weekdays {
  background-color: transparent;
}

.g-datepicker span.flatpickr-weekday {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.54);
}

.g-datepicker .flatpickr-day {
  border-radius: 0;
  color: #333;
}

.g-datepicker .flatpickr-day.inRange,
.g-datepicker .flatpickr-day.prevMonthDay.inRange,
.g-datepicker .flatpickr-day.nextMonthDay.inRange,
.g-datepicker .flatpickr-day.today.inRange,
.g-datepicker .flatpickr-day.prevMonthDay.today.inRange,
.g-datepicker .flatpickr-day.nextMonthDay.today.inRange,
.g-datepicker .flatpickr-day:hover,
.g-datepicker .flatpickr-day.prevMonthDay:hover,
.g-datepicker .flatpickr-day.nextMonthDay:hover,
.g-datepicker .flatpickr-day button:focus,
.g-datepicker .flatpickr-day.prevMonthDay button:focus,
.g-datepicker .flatpickr-day.nextMonthDay button:focus {
  background-color: #C6CDE0;
  border-color: #C6CDE0;
}

.g-datepicker .flatpickr-day button:focus,
.g-datepicker .flatpickr-day.prevMonthDay button:focus,
.g-datepicker .flatpickr-day.nextMonthDay button:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-datepicker .flatpickr-day.today {
  border-color: #C6CDE0;
}

.g-datepicker .flatpickr-day.today:hover,
.g-datepicker .flatpickr-day.today:focus {
  border-color: #1D3E8F;
  background-color: #1D3E8F;
  color: #fff;
}

.g-datepicker .flatpickr-day.today:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-datepicker .flatpickr-day.selected,
.g-datepicker .flatpickr-day.startRange,
.g-datepicker .flatpickr-day.endRange,
.g-datepicker .flatpickr-day.selected.inRange,
.g-datepicker .flatpickr-day.startRange.inRange,
.g-datepicker .flatpickr-day.endRange.inRange,
.g-datepicker .flatpickr-day.selected button:focus,
.g-datepicker .flatpickr-day.startRange button:focus,
.g-datepicker .flatpickr-day.endRange button:focus,
.g-datepicker .flatpickr-day.selected:hover,
.g-datepicker .flatpickr-day.startRange:hover,
.g-datepicker .flatpickr-day.endRange:hover,
.g-datepicker .flatpickr-day.selected.prevMonthDay,
.g-datepicker .flatpickr-day.startRange.prevMonthDay,
.g-datepicker .flatpickr-day.endRange.prevMonthDay,
.g-datepicker .flatpickr-day.selected.nextMonthDay,
.g-datepicker .flatpickr-day.startRange.nextMonthDay,
.g-datepicker .flatpickr-day.endRange.nextMonthDay {
  background-color: #2650b9;
  color: #fff;
  border-color: #2650b9;
  box-shadow: none;
}

.g-datepicker .flatpickr-day.selected button:focus {
  box-shadow: black 0px 0px 3px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-datepicker .flatpickr-day.selected.endRange,
.g-datepicker .flatpickr-day.startRange.endRange,
.g-datepicker .flatpickr-day.endRange.endRange {
  border-radius: 0 50% 50% 0;
}

.g-datepicker .flatpickr-day.selected.startRange,
.g-datepicker .flatpickr-day.startRange.startRange,
.g-datepicker .flatpickr-day.endRange.startRange {
  border-radius: 50% 0 0 50%;
}

.g-datepicker .flatpickr-day.selected.startRange + .endRange,
.g-datepicker .flatpickr-day.startRange.startRange + .endRange,
.g-datepicker .flatpickr-day.endRange.startRange + .endRange {
  box-shadow: -5px 0 0 #2650b9;
}

.g-datepicker .flatpickr-day.selected.startRange.endRange,
.g-datepicker .flatpickr-day.startRange.startRange.endRange,
.g-datepicker .flatpickr-day.endRange.startRange.endRange {
  border-radius: 5px;
}

.g-datepicker .flatpickr-day.disabled,
.g-datepicker .flatpickr-day.disabled:hover,
.g-datepicker .flatpickr-day.prevMonthDay,
.g-datepicker .flatpickr-day.nextMonthDay,
.g-datepicker .flatpickr-day.notAllowed,
.g-datepicker .flatpickr-day.notAllowed.prevMonthDay,
.g-datepicker .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background-color: transparent;
  border-color: transparent;
}

.g-datepicker .flatpickr-day.week.selected {
  box-shadow: -5px 0 0 #2650b9, 5px 0 0 #2650b9;
}

.g-datepicker .flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #C6CDE0, 5px 0 0 #C6CDE0;
}

.g-datepicker .flatpickr-weekwrapper .flatpickr-weeks {
  box-shadow: 1px 0 0 #C6CDE0;
}

.g-datepicker .flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #333;
}

.g-datepicker .flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #333;
}

.g-datepicker .flatpickr-time input {
  background-color: transparent;
  box-shadow: none;
  color: #333;
  font-size: 0.8125rem;
}

.g-datepicker .flatpickr-time .flatpickr-time-separator,
.g-datepicker .flatpickr-time .flatpickr-am-pm {
  color: #333;
}

.g-datepicker .flatpickr-time .flatpickr-am-pm:hover,
.g-datepicker .flatpickr-time .flatpickr-am-pm:focus {
  background-color: #F4F6F9;
}

.g-datepicker .flatpickr-clear {
  height: 2rem;
  display: inline-block;
  width: 100%;
  line-height: 2rem;
  cursor: pointer;
  background-color: #E7EAF2;
}

.g-datepicker .flatpickr-confirm.visible:hover,
.g-datepicker .flatpickr-clear:hover {
  background-color: #C6CDE0;
}

.g-datepicker .flatpickr-clear .flatpickr-clear-icon {
  margin-right: 5px;
}

.g-datepicker .flatpickr-confirm {
  height: 2rem;
  max-height: 0px;
  display: none;
  width: 50%;
  line-height: 2rem;
  cursor: pointer;
  background-color: #E7EAF2;
}

.g-datepicker .flatpickr-clear:hover {
  background-color: #C6CDE0;
}

.g-datepicker .flatpickr-confirm svg path {
  fill: inherit;
}

.g-datepicker .flatpickr-confirm.visible {
  max-height: 2rem;
  display: inline-block;
}

.g-datepicker .flatpickr-clear.visible {
  display: inline-block;
  width: 50%;
  line-height: 2rem;
}

.gdialog.ui-dialog {
  overflow: visible;
  background: #FAFAFA;
  color: #222;
  border: 1px solid #0d1732;
  -moz-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
}
.gdialog.ui-dialog .ui-dialog-titlebar-close, .gdialog.ui-dialog .ui-dialog-titlebar-maximize {
  box-sizing: border-box;
  top: -1px;
  height: calc(100% + 1px);
  font-size: 16px;
}
.gdialog.ui-dialog .ui-dialog-titlebar-b1 {
  right: -1px;
}
.gdialog.ui-dialog .ui-dialog-titlebar-b2 {
  right: 27px;
}
.gdialog.ui-dialog .ui-cover {
  z-index: 1;
}
.gdialog.ui-dialog .ui-dialog-titlebar {
  background: #0D1732;
  color: #FAFAFA;
  font-size: 0.8125rem;
  border: none;
  padding: 0.2rem 0.5rem;
  z-index: 2;
}
.gdialog.ui-dialog .ui-dialog-titlebar .ui-button {
  background: transparent;
  border-color: transparent;
  color: inherit;
}
.gdialog.ui-dialog .ui-dialog-titlebar .ui-button:hover, .gdialog.ui-dialog .ui-dialog-titlebar .ui-button:focus, .gdialog.ui-dialog .ui-dialog-titlebar .ui-button:active {
  background: #222;
}
.gdialog.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close:hover, .gdialog.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close:focus, .gdialog.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close:active {
  background: #ED1E79;
}
.gdialog.ui-dialog .ui-dialog-title {
  width: 100%;
  padding-right: 48px;
}
.gdialog.ui-dialog .ui-dialog-toolbar {
  background: #E7EAF2;
  overflow: hidden;
  font-weight: 400;
}
.gdialog.ui-dialog .ui-dialog-toolbar .g-button:not(.g-button--activator) {
  min-width: 2rem;
}
.gdialog.ui-dialog .ui-dialog-toolbar .g-toolbar__item {
  height: 2rem;
}
.gdialog.ui-dialog .ui-dialog-toolbar .g-button__icon {
  font-size: 0.875rem;
}
.gdialog.ui-dialog .ui-dialog-statusbar {
  border-bottom: 1px solid #C6CDE0;
  padding: 0 0.25rem;
}
.gdialog.ui-dialog .ui-dialog-flashbar .gflashpanel__separator:before {
  content: "|";
  opacity: 0.7;
}
.gdialog.ui-dialog .ui-dialog-content {
  z-index: 0;
}
.gdialog.ui-dialog:not(.keyboard-focus) .ui-dialog-content:focus {
  outline: none;
}
.gdialog.ui-dialog .ui-dialog-buttonpane {
  font-size: 0.8125rem;
  background: transparent;
  padding: 0.5rem;
  line-height: normal;
}
.gdialog.ui-dialog .ui-dialog-buttonpane button,
.gdialog.ui-dialog .ui-dialog-buttonpane .g-static {
  margin: 0 0.25rem 0 0;
  height: 28px;
}
.gdialog.ui-dialog .ui-dialog-buttonpane button.ui-button-text-only .ui-button-text,
.gdialog.ui-dialog .ui-dialog-buttonpane .g-static.ui-button-text-only .ui-button-text {
  padding: 0;
}
.gdialog.ui-dialog .ui-dialog-buttonpane.gbuttonpanel button {
  margin: 0;
}
.gdialog.ui-dialog .ui-dialog-buttonpane.gbuttonpanel .g-buttonpanel__item, .gdialog.ui-dialog .ui-dialog-buttonpane.gbuttonpanel .g-static {
  margin-right: 4px;
}
.gdialog.ui-dialog .ui-dialog-buttonpane button:not(.g-button--activator):not(.g-buttonpanel__item--menu):not(.gcontrolbox-button) {
  min-width: 54px;
}
.gdialog.ui-dialog .ui-dialog-buttonpane button:not(.g-button):not(.g-button--primary) {
  border: none;
  background-color: #E7EAF2;
}

.statusbar {
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 700;
  min-height: 1.5rem;
}
.statusbar .g-button, .statusbar .g-static, .statusbar .g-link {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.8125rem;
  font-weight: inherit;
  padding: 0 0.25rem;
}
.statusbar .g-button:not(.g-button--primary):not(.g-button--checked), .statusbar .g-static:not(.g-button--primary):not(.g-button--checked), .statusbar .g-link:not(.g-button--primary):not(.g-button--checked) {
  background-color: transparent;
}
.statusbar .g-button:not(.g-button--activator), .statusbar .g-static:not(.g-button--activator).g-link:not(.g-link--menu) {
  min-width: 1.5rem;
}
.statusbar .g-link {
  margin: 0;
}
.statusbar .g-static {
  margin: 0 0.15rem;
  vertical-align: baseline;
}
.statusbar .g-button__text {
  padding: 0;
}
.statusbar--tight .g-link {
  padding: 0;
}
.statusbar .g-button:not([disabled]):not(.g-button--primary):hover, .statusbar .g-button:not([disabled]):not(.g-button--primary):focus, .statusbar .g-button:not([disabled]):not(.g-button--primary).g-button--activated {
  color: #2650b9;
}
.statusbar .g-toolbar__item {
  height: 1.5rem;
}
.statusbar .g-button__icon, .statusbar .g-static__icon {
  font-size: 0.875rem;
}
.statusbar .gi-stack {
  height: 1.5rem;
  line-height: 1.25rem;
}
.statusbar .g-buttonpanel__item {
  line-height: 1.5rem;
}
.statusbar .g-badge {
  line-height: 1rem;
}
.statusbar .g-buttonpanel__item--separator {
  height: 1rem;
}

.ui-dialog-titlebar-contentinfo {
  position: absolute;
  overflow: hidden;
  cursor: pointer;
  right: 60px;
  top: 50%;
  height: 22px;
  margin-top: -11px;
}

.contentinfo-cell {
  float: left;
  display: inline;
  margin: 0 5px;
  font-size: 10px;
}

.contentinfo-cell > h6 {
  font-size: 8px;
  margin: 0;
  text-align: center;
}

.contentIframe {
  width: 99.9%;
  height: 99.9%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

.dialog-icon {
  float: left;
  margin: 0 12px 0 0;
}

.ui-cover {
  background-color: rgba(231, 234, 242, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-cover > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: inline-block;
  text-align: center;
  padding: 0 1em;
  max-width: 90%;
  background-color: transparent;
  font-size: 0.8125rem;
  color: #0D1732;
  text-align: center;
}
.ui-cover .ui-cover-text, .ui-cover .ui-progress, .ui-cover .ui-preloader, .ui-cover .ui-cancel {
  margin: 0.5rem auto;
}
.ui-cover .ui-progress {
  max-width: 100%;
  width: 14rem;
}

.ui-cover-complex > div {
  background-color: #FAFAFA;
  border: 1px solid #C6CDE0;
}

.ui-preloader {
  width: 2rem;
  height: 2rem;
  background: url("images/preloader.gif") no-repeat;
  display: block;
}

.ui-progress {
  height: 0.25rem;
  background-color: #C6CDE0;
}
.ui-progress > div {
  height: 100%;
  max-width: 100%;
  background-color: #0D1732;
}

.g-dialog.ui-dialog {
  background: #FAFAFA;
  color: #222;
  border: 1px solid #0d1732;
  -moz-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
}
.g-dialog.ui-dialog .ui-dialog-titlebar {
  background: #0D1732;
  color: #FAFAFA;
  font-size: 0.8125rem;
  border: none;
  padding: 0.2rem 0.5rem;
  z-index: 2;
}
.g-dialog.ui-dialog .ui-dialog-titlebar .ui-button {
  background: transparent;
  border-color: transparent;
  color: inherit;
}
.g-dialog.ui-dialog .ui-dialog-titlebar .ui-button:hover, .g-dialog.ui-dialog .ui-dialog-titlebar .ui-button:focus, .g-dialog.ui-dialog .ui-dialog-titlebar .ui-button:active {
  background: #222;
}
.g-dialog.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close:hover, .g-dialog.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close:focus, .g-dialog.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close:active {
  background: #ED1E79;
}
.g-dialog.ui-dialog .ui-dialog-content {
  z-index: 0;
}
.g-dialog.ui-dialog .ui-cover {
  z-index: 1;
}
.g-dialog.ui-dialog:not(.keyboard-focus) .ui-dialog-content:focus {
  outline: none;
}
.g-dialog.ui-dialog .ui-dialog-titlebar-close, .g-dialog.ui-dialog .ui-dialog-titlebar-maximize {
  box-sizing: border-box;
  top: -1px;
  height: calc(100% + 1px);
  font-size: 16px;
}
.g-dialog.ui-dialog .ui-dialog-titlebar-b1 {
  right: -1px;
}
.g-dialog.ui-dialog .ui-dialog-titlebar-b2 {
  right: 27px;
}
.g-dialog.ui-dialog .ui-dialog-flashbar .gflashpanel__separator:before {
  content: "|";
  opacity: 0.7;
}

/*           UI gsidebar            */
.gsidebar.g-sidebar {
  position: relative;
  z-index: 1;
}

.g-sidebar-left, .g-sidebar-left > * {
  float: left;
}
.g-sidebar-left > .ui-sbpanel {
  border-right: 1px solid #C6CDE0;
}
.g-sidebar-left .g-sbp--absolute {
  position: absolute;
  margin-left: 2rem;
}
.g-sidebar-left .ui-sbpanel:not(.g-sbp--absolute) {
  margin-right: 2px;
}

.g-sidebar-right, .g-sidebar-right > * {
  float: right;
}
.g-sidebar-right > .ui-sbpanel {
  border-left: 1px solid #C6CDE0;
}
.g-sidebar-right .g-sbp--absolute {
  right: 0;
  position: absolute;
  margin-right: 2rem;
}
.g-sidebar-right .ui-sbpanel:not(.g-sbp--absolute) {
  margin-left: 2px;
}

.g-sidebar-rail {
  position: relative;
  height: 100%;
  background-color: #E7EAF2;
  overflow: hidden;
  padding-bottom: 1rem;
}
.g-sidebar-rail .g-sb-rail-menu {
  position: relative;
  width: 2rem;
  text-align: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100%;
}
.g-sidebar-rail .g-sb-rail-shift {
  position: absolute;
  width: 100%;
  background-color: #E7EAF2;
  list-style-type: none;
  padding: 0;
  margin: 0;
  bottom: 0;
  text-align: center;
}

.g-sb-rail-shift--disabled {
  opacity: 0.35;
}
.g-sb-rail-shift button {
  width: 50%;
  height: 1rem;
  line-height: 1rem;
  padding: 0;
  margin: 0;
}

.g-sb-rail-menu-leaf {
  cursor: pointer;
  padding: 0.5rem 0 0.25rem 0;
  /*    border-bottom: 1px solid $base-color-shadow; */
  border-left: 4px solid #C6CDE0;
}
.g-sb-rail-menu-leaf:hover {
  color: #1D3E8F;
}
.g-sb-rail-menu-leaf.leaf--active {
  color: #1D3E8F;
  border-left-color: #1D3E8F;
  background-color: #C6CDE0;
}
.g-sb-rail-menu-leaf:not(:first-child):before {
  background: #C6CDE0;
  display: block;
  content: " ";
  width: 1.5rem;
  height: 1px;
  margin: auto;
  margin-bottom: 8px;
  margin-top: -8px;
}
.g-sb-rail-menu-leaf .gstatic {
  display: inline-block;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  white-space: nowrap;
}
.g-sb-rail-menu-leaf .gbadge {
  display: inline-block;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  padding: 0.25rem 0;
  margin: 0;
}

.ui-sbpanel {
  height: 100%;
  background-color: #FAFAFA;
  z-index: 1;
  /* .ui-resizable-handle.ui-resizable-w:after {
       content: "\f053  \f054";
       font-family: 'FontAwesome';*/
  /* content: "\ea6d";
  font-family: 'gorico';
  transform: rotate(90deg);*/
  /*width: 28px;
  padding-top: 6px;*/
  /* padding: 25px; */
  /*border: 1px solid $base-color-tool;
      height: 28px;
      top: calc(50% - 11px);
      font-style: inherit;
      left: -11px;
      position: relative;
      font-size: 0.75rem;
      vertical-align: middle;
      text-align: center;
      border-radius: 50%;
      white-space: nowrap;
      background-color: $base-color-content;
      display: block;
  }

  .ui-resizable-handle.ui-resizable-w:hover:after {
      display: block !important;
  }*/
}
.ui-sbpanel:focus {
  outline: none;
}
.ui-sbpanel.g-sbp--hide {
  display: none;
}

.g-sbp-header {
  position: relative;
}

.g-sbp-content {
  height: 100%;
  overflow: auto;
}

.g-sbp-caption {
  padding: 0 1.25rem 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25rem;
  color: #fff;
  background-color: #1D3E8F;
}
.g-sbp-caption__icon {
  position: absolute;
  right: 0.125rem;
  top: 0.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #E7EAF2;
}
.g-sbp-caption__icon:hover {
  color: #C6CDE0;
}
.g-sbp-statusbar {
  border-bottom: 1px solid #C6CDE0;
}

.g-sbp-flashpanel .gflashpanel {
  margin: 0;
}

/*.g-rectangle-select {
    user-select: none;
}*/
.g-rectangle-select__selection {
  z-index: 9999;
  position: absolute;
  background-color: rgba(239, 28, 190, 0.6);
  border: 1px solid #aaf81a;
}

.g-tab-header {
  display: table;
  height: 2rem;
  cursor: pointer;
  padding: 0;
  font-size: 0.8125rem;
  margin: 0.5rem 0.5rem;
  margin-bottom: 0;
}
.g-tab-header.ui-state-default {
  background: transparent;
  border: 1px solid #E7EAF2;
  color: #222;
}
.g-tab-header.ui-state-active {
  background: #E7EAF2;
  border: 1px solid #E7EAF2;
  color: #222;
}
.g-tab-header.ui-state-default:hover {
  background-color: rgba(231, 234, 242, 0.6);
}
.g-tab-header .g-tab-header-text {
  display: table-cell;
  font-size: 0.8125rem;
  white-space: nowrap;
  padding: 0 0.25rem;
  vertical-align: middle;
  height: 2rem;
  font-weight: 400;
}
.g-tab-header .g-tab-header__empty {
  padding: 0;
}
.g-tab-header .g-tab-header-icon {
  margin-right: 3px;
}
.g-tab-header .g-tab-header-error-icon {
  margin-left: 3px;
}
.g-tab-header .g-tab-header-bar {
  display: table-cell;
  width: 100%;
  position: relative;
  vertical-align: top;
  padding-left: 1.5rem;
  font-weight: 400;
}
.g-tab-header .g-tab-header__empty ~ .g-tab-header-bar {
  padding-left: 0;
}
.g-tab-header .g-tab-header-barcontent {
  overflow: hidden;
}
.g-tab-header.ui-state-default, .g-tab-header.ui-state-active.g-tab-loading {
  margin-bottom: 0.25rem;
}
.g-tab-header.ui-state-active + .g-tab-content {
  margin-bottom: 0.5rem;
}
.g-tab-header.g-tab-locked {
  cursor: default;
}
.g-tab-header .gfield {
  display: inline-block;
  margin-right: 1rem;
}
.g-tab-header:focus {
  position: relative;
  outline-color: transparent;
}
.g-tab-header:focus::before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
}

.g-tab-content {
  margin: 0 0.5rem;
}
.g-tab-content.ggrid, .g-tab-content .ggrid {
  border-top: 1px solid #E7EAF2;
  border-left: 1px solid #E7EAF2;
  border-right: 1px solid #E7EAF2;
}
.g-tab-content, .g-tab-content.ggrid .field-box-parent, .g-tab-content .ggrid .field-box-parent {
  border-left: none;
}

.ginfobar__item {
  display: inline-block;
  margin: 0 0.25rem;
}

.ginfobar__item h3 {
  margin: 0;
  padding: 0;
}

.gflashpanel {
  display: flex;
  min-height: 1.5rem;
  box-sizing: border-box;
  margin: 0.5rem;
  border: 1px solid;
  padding: 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
}
.gflashpanel > * {
  padding: 0.25rem;
}
.gflashpanel > i {
  font-size: 1.125rem;
  text-align: center;
}
.gflashpanel > span {
  flex-grow: 1;
}
.gflashpanel .gflashpanel__icon {
  margin: auto;
}
.gflashpanel .gflashpanel__close {
  cursor: pointer;
  padding-right: 0;
}
.gflashpanel .gflashpanel__close:hover {
  opacity: 0.5;
}
.gflashpanel .gflashpanel__content {
  flex-grow: 1;
}
.gflashpanel .gflashpanel__content--collapsed {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.gflashpanel .gbadge {
  font-size: 0.5rem;
  line-height: 0.5rem;
  position: relative;
  top: -0.25rem;
  left: -0.25rem;
  margin: auto;
}
.gflashpanel .gbuttonpanel {
  padding-top: 0;
  margin: auto;
}

.gtabmanager.gbuttonpanel:not(.gsubtasks) {
  margin: 0.25rem 0.25rem 0.5rem 0.25rem;
}

.gform {
  display: flex;
  flex-flow: row wrap;
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
  box-sizing: border-box;
}

.gform-section {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  flex-grow: 1;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
}
.gform-section > *:not(.gform-row) {
  letter-spacing: 0.01em;
}
.gform-section > span[role=heading] {
  display: block;
  margin-bottom: 0.5rem;
  padding-bottom: 0.125rem;
  font-size: 0.8125rem;
  color: #707070;
  text-align: left;
  border-bottom: 1px solid #707070;
}

.w-12, body .size-S div.gform-row.gform-row-header > label:first-of-type, body .size-S div.gform-row.gform-row-header > .gform-row__spacer, html body .size-S div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-S html div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-M div.gform-row.gform-row-header > label:first-of-type, body .size-M div.gform-row.gform-row-header > .gform-row__spacer, html body .size-M div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-M html div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-L div.gform-row.gform-row-header > label:first-of-type, body .size-L div.gform-row.gform-row-header > .gform-row__spacer, html body .size-L div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-L html div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, .size-S .gform-row > div, html .size-S .gform-row > div.gform-section, .size-S html .gform-row > div.gform-section, .size-S .gform-row > label:first-of-type, .size-S .gform-row > .gform-row__spacer, html .size-S .gform-row > div.gform-section.gform-row__spacer, .size-S html .gform-row > div.gform-section.gform-row__spacer, .size-L .w-L-12, .size-L .gform-section.w-L-12, html .size-L div.gform-section.w-L-12, .size-L html div.gform-section.w-L-12, .size-L.gform-supplement-L-12 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-12 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-12 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-12 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-12.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-12.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-12 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-12 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-12 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-12 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-12 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-12 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-12 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-12 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-12.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-12.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-12.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-12.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-12 .gform-row > div, .size-L .gform-fields-L-12 div.gform-row > div, body .size-L div.gform-fields-L-12.gform-row > div, html .size-L.gform-fields-L-12 .gform-row > div.gform-section, .size-L.gform-fields-L-12 html .gform-row > div.gform-section, html .size-L .gform-fields-L-12 div.gform-row > div.gform-section, .size-L .gform-fields-L-12 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-12.gform-row > div.gform-section, body .size-L html div.gform-fields-L-12.gform-row > div.gform-section, .size-L.gform-label-L-12 .gform-row > label:first-of-type, .size-L.gform-label-L-12 .gform-row > .gform-row__spacer, .size-L .gform-label-L-12 div.gform-row > label:first-of-type, .size-L .gform-label-L-12 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-12.gform-row > label:first-of-type, html body .size-L div.gform-label-L-12.gform-row > .gform-row__spacer, html .size-L.gform-label-L-12 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-12 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-12 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-12 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-12.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-12, .size-M .gform-section.w-M-12, html .size-M div.gform-section.w-M-12, .size-M html div.gform-section.w-M-12, .size-M.gform-supplement-M-12 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-12 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-12 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-12 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-12.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-12.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-12 .gform-row > div, .size-M .gform-fields-M-12 div.gform-row > div, body .size-M div.gform-fields-M-12.gform-row > div, html .size-M.gform-fields-M-12 .gform-row > div.gform-section, .size-M.gform-fields-M-12 html .gform-row > div.gform-section, html .size-M .gform-fields-M-12 div.gform-row > div.gform-section, .size-M .gform-fields-M-12 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-12.gform-row > div.gform-section, body .size-M html div.gform-fields-M-12.gform-row > div.gform-section, .size-M.gform-label-M-12 .gform-row > label:first-of-type, .size-M.gform-label-M-12 .gform-row > .gform-row__spacer, .size-M .gform-label-M-12 div.gform-row > label:first-of-type, .size-M .gform-label-M-12 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-12.gform-row > label:first-of-type, html body .size-M div.gform-label-M-12.gform-row > .gform-row__spacer, html .size-M.gform-label-M-12 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-12 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-12 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-12 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-12.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-12, .size-S .gform-section.w-S-12, html .size-S div.gform-section.w-S-12, .size-S html div.gform-section.w-S-12, .size-S.gform-supplement-S-12 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-12 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-12 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-12 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-12.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-12.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-12 .gform-row > div, .size-S .gform-fields-S-12 div.gform-row > div, body .size-S div.gform-fields-S-12.gform-row > div, html .size-S.gform-fields-S-12 .gform-row > div.gform-section, .size-S.gform-fields-S-12 html .gform-row > div.gform-section, html .size-S .gform-fields-S-12 div.gform-row > div.gform-section, .size-S .gform-fields-S-12 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-12.gform-row > div.gform-section, body .size-S html div.gform-fields-S-12.gform-row > div.gform-section, .size-S.gform-label-S-12 .gform-row > label:first-of-type, .size-S.gform-label-S-12 .gform-row > .gform-row__spacer, .size-S .gform-label-S-12 div.gform-row > label:first-of-type, .size-S .gform-label-S-12 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-12.gform-row > label:first-of-type, html body .size-S div.gform-label-S-12.gform-row > .gform-row__spacer, html .size-S.gform-label-S-12 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-12 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-12 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-12 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-12.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-12, html body .size-S div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-S html div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, html body .size-M div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-M html div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, html body .size-L div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, body .size-L html div.gform-row.gform-row-header > div.gform-section.gform-row__spacer, html .size-S .gform-row > div.gform-section, .size-S html .gform-row > div.gform-section, html .size-S .gform-row > div.gform-section.gform-row__spacer, .size-S html .gform-row > div.gform-section.gform-row__spacer, html .size-L div.gform-section.w-L-12, .size-L html div.gform-section.w-L-12, html .size-L div.gform-section.w-L-12, .size-L html div.gform-section.w-L-12, html .size-L div.gform-section.w-L-12, .size-L html div.gform-section.w-L-12, html .size-L.gform-supplement-L-12 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-12 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-12 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-12 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-12 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-12 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-12 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-12 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-12.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-12.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-12.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-12.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L.gform-fields-L-12 .gform-row > div.gform-section, .size-L.gform-fields-L-12 html .gform-row > div.gform-section, html .size-L .gform-fields-L-12 div.gform-row > div.gform-section, .size-L .gform-fields-L-12 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-12.gform-row > div.gform-section, body .size-L html div.gform-fields-L-12.gform-row > div.gform-section, html .size-M div.gform-section.w-M-12, .size-M html div.gform-section.w-M-12, html .size-M div.gform-section.w-M-12, .size-M html div.gform-section.w-M-12, html .size-M div.gform-section.w-M-12, .size-M html div.gform-section.w-M-12, html .size-S div.gform-section.w-S-12, .size-S html div.gform-section.w-S-12, html .size-S div.gform-section.w-S-12, .size-S html div.gform-section.w-S-12, html .size-S div.gform-section.w-S-12, .size-S html div.gform-section.w-S-12, .w-100, .size-L.gform-L1 > div, .size-M.gform-M1 > div, .size-S.gform-S1 > div {
  width: 99.95%;
}

.w-4-8, .w-6, .size-L .w-L-6, .size-L .gform-section.w-L-6, html .size-L div.gform-section.w-L-6, .size-L html div.gform-section.w-L-6, .size-L.gform-supplement-L-6 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-6 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-6 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-6 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-6.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-6.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-6 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-6 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-6 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-6 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-6 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-6 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-6 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-6 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-6.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-6.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-6.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-6.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-6 .gform-row > div, .size-L .gform-fields-L-6 div.gform-row > div, body .size-L div.gform-fields-L-6.gform-row > div, html .size-L.gform-fields-L-6 .gform-row > div.gform-section, .size-L.gform-fields-L-6 html .gform-row > div.gform-section, html .size-L .gform-fields-L-6 div.gform-row > div.gform-section, .size-L .gform-fields-L-6 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-6.gform-row > div.gform-section, body .size-L html div.gform-fields-L-6.gform-row > div.gform-section, .size-L.gform-label-L-6 .gform-row > label:first-of-type, .size-L.gform-label-L-6 .gform-row > .gform-row__spacer, .size-L .gform-label-L-6 div.gform-row > label:first-of-type, .size-L .gform-label-L-6 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-6.gform-row > label:first-of-type, html body .size-L div.gform-label-L-6.gform-row > .gform-row__spacer, html .size-L.gform-label-L-6 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-6 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-6 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-6 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-6.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-6, .size-M .gform-section.w-M-6, html .size-M div.gform-section.w-M-6, .size-M html div.gform-section.w-M-6, .size-M.gform-supplement-M-6 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-6 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-6 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-6 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-6.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-6.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-6 .gform-row > div, .size-M .gform-fields-M-6 div.gform-row > div, body .size-M div.gform-fields-M-6.gform-row > div, html .size-M.gform-fields-M-6 .gform-row > div.gform-section, .size-M.gform-fields-M-6 html .gform-row > div.gform-section, html .size-M .gform-fields-M-6 div.gform-row > div.gform-section, .size-M .gform-fields-M-6 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-6.gform-row > div.gform-section, body .size-M html div.gform-fields-M-6.gform-row > div.gform-section, .size-M.gform-label-M-6 .gform-row > label:first-of-type, .size-M.gform-label-M-6 .gform-row > .gform-row__spacer, .size-M .gform-label-M-6 div.gform-row > label:first-of-type, .size-M .gform-label-M-6 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-6.gform-row > label:first-of-type, html body .size-M div.gform-label-M-6.gform-row > .gform-row__spacer, html .size-M.gform-label-M-6 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-6 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-6 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-6 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-6.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-6, .size-S .gform-section.w-S-6, html .size-S div.gform-section.w-S-6, .size-S html div.gform-section.w-S-6, .size-S.gform-supplement-S-6 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-6 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-6 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-6 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-6.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-6.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-6 .gform-row > div, .size-S .gform-fields-S-6 div.gform-row > div, body .size-S div.gform-fields-S-6.gform-row > div, html .size-S.gform-fields-S-6 .gform-row > div.gform-section, .size-S.gform-fields-S-6 html .gform-row > div.gform-section, html .size-S .gform-fields-S-6 div.gform-row > div.gform-section, .size-S .gform-fields-S-6 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-6.gform-row > div.gform-section, body .size-S html div.gform-fields-S-6.gform-row > div.gform-section, .size-S.gform-label-S-6 .gform-row > label:first-of-type, .size-S.gform-label-S-6 .gform-row > .gform-row__spacer, .size-S .gform-label-S-6 div.gform-row > label:first-of-type, .size-S .gform-label-S-6 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-6.gform-row > label:first-of-type, html body .size-S div.gform-label-S-6.gform-row > .gform-row__spacer, html .size-S.gform-label-S-6 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-6 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-6 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-6 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-6.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-6, html .size-L div.gform-section.w-L-6, .size-L html div.gform-section.w-L-6, html .size-L div.gform-section.w-L-6, .size-L html div.gform-section.w-L-6, html .size-L div.gform-section.w-L-6, .size-L html div.gform-section.w-L-6, html .size-L.gform-supplement-L-6 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-6 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-6 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-6 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-6 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-6 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-6 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-6 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-6.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-6.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-6.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-6.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L.gform-fields-L-6 .gform-row > div.gform-section, .size-L.gform-fields-L-6 html .gform-row > div.gform-section, html .size-L .gform-fields-L-6 div.gform-row > div.gform-section, .size-L .gform-fields-L-6 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-6.gform-row > div.gform-section, body .size-L html div.gform-fields-L-6.gform-row > div.gform-section, html .size-M div.gform-section.w-M-6, .size-M html div.gform-section.w-M-6, html .size-M div.gform-section.w-M-6, .size-M html div.gform-section.w-M-6, html .size-M div.gform-section.w-M-6, .size-M html div.gform-section.w-M-6, html .size-S div.gform-section.w-S-6, .size-S html div.gform-section.w-S-6, html .size-S div.gform-section.w-S-6, .size-S html div.gform-section.w-S-6, html .size-S div.gform-section.w-S-6, .size-S html div.gform-section.w-S-6, .size-L.gform-L2 > div, .size-M.gform-M2 > div {
  width: 49.95%;
}

.w-4, .size-L .w-L-4, .size-L .gform-section.w-L-4, html .size-L div.gform-section.w-L-4, .size-L html div.gform-section.w-L-4, .size-L.gform-supplement-L-4 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-4 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-4 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-4 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-4.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-4.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-4 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-4 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-4 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-4 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-4 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-4 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-4 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-4 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-4.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-4.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-4.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-4.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-4 .gform-row > div, .size-L .gform-fields-L-4 div.gform-row > div, body .size-L div.gform-fields-L-4.gform-row > div, html .size-L.gform-fields-L-4 .gform-row > div.gform-section, .size-L.gform-fields-L-4 html .gform-row > div.gform-section, html .size-L .gform-fields-L-4 div.gform-row > div.gform-section, .size-L .gform-fields-L-4 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-4.gform-row > div.gform-section, body .size-L html div.gform-fields-L-4.gform-row > div.gform-section, .size-L.gform-label-L-4 .gform-row > label:first-of-type, .size-L.gform-label-L-4 .gform-row > .gform-row__spacer, .size-L .gform-label-L-4 div.gform-row > label:first-of-type, .size-L .gform-label-L-4 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-4.gform-row > label:first-of-type, html body .size-L div.gform-label-L-4.gform-row > .gform-row__spacer, html .size-L.gform-label-L-4 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-4 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-4 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-4 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-4.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-4, .size-M .gform-section.w-M-4, html .size-M div.gform-section.w-M-4, .size-M html div.gform-section.w-M-4, .size-M.gform-supplement-M-4 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-4 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-4 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-4 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-4.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-4.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-4 .gform-row > div, .size-M .gform-fields-M-4 div.gform-row > div, body .size-M div.gform-fields-M-4.gform-row > div, html .size-M.gform-fields-M-4 .gform-row > div.gform-section, .size-M.gform-fields-M-4 html .gform-row > div.gform-section, html .size-M .gform-fields-M-4 div.gform-row > div.gform-section, .size-M .gform-fields-M-4 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-4.gform-row > div.gform-section, body .size-M html div.gform-fields-M-4.gform-row > div.gform-section, .size-M.gform-label-M-4 .gform-row > label:first-of-type, .size-M.gform-label-M-4 .gform-row > .gform-row__spacer, .size-M .gform-label-M-4 div.gform-row > label:first-of-type, .size-M .gform-label-M-4 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-4.gform-row > label:first-of-type, html body .size-M div.gform-label-M-4.gform-row > .gform-row__spacer, html .size-M.gform-label-M-4 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-4 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-4 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-4 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-4.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-4, .size-S .gform-section.w-S-4, html .size-S div.gform-section.w-S-4, .size-S html div.gform-section.w-S-4, .size-S.gform-supplement-S-4 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-4 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-4 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-4 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-4.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-4.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-4 .gform-row > div, .size-S .gform-fields-S-4 div.gform-row > div, body .size-S div.gform-fields-S-4.gform-row > div, html .size-S.gform-fields-S-4 .gform-row > div.gform-section, .size-S.gform-fields-S-4 html .gform-row > div.gform-section, html .size-S .gform-fields-S-4 div.gform-row > div.gform-section, .size-S .gform-fields-S-4 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-4.gform-row > div.gform-section, body .size-S html div.gform-fields-S-4.gform-row > div.gform-section, .size-S.gform-label-S-4 .gform-row > label:first-of-type, .size-S.gform-label-S-4 .gform-row > .gform-row__spacer, .size-S .gform-label-S-4 div.gform-row > label:first-of-type, .size-S .gform-label-S-4 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-4.gform-row > label:first-of-type, html body .size-S div.gform-label-S-4.gform-row > .gform-row__spacer, html .size-S.gform-label-S-4 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-4 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-4 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-4 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-4.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-4, html .size-L div.gform-section.w-L-4, .size-L html div.gform-section.w-L-4, html .size-L div.gform-section.w-L-4, .size-L html div.gform-section.w-L-4, html .size-L div.gform-section.w-L-4, .size-L html div.gform-section.w-L-4, html .size-L.gform-supplement-L-4 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-4 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-4 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-4 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-4 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-4 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-4 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-4 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-4.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-4.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-4.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-4.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L.gform-fields-L-4 .gform-row > div.gform-section, .size-L.gform-fields-L-4 html .gform-row > div.gform-section, html .size-L .gform-fields-L-4 div.gform-row > div.gform-section, .size-L .gform-fields-L-4 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-4.gform-row > div.gform-section, body .size-L html div.gform-fields-L-4.gform-row > div.gform-section, html .size-M div.gform-section.w-M-4, .size-M html div.gform-section.w-M-4, html .size-M div.gform-section.w-M-4, .size-M html div.gform-section.w-M-4, html .size-M div.gform-section.w-M-4, .size-M html div.gform-section.w-M-4, html .size-S div.gform-section.w-S-4, .size-S html div.gform-section.w-S-4, html .size-S div.gform-section.w-S-4, .size-S html div.gform-section.w-S-4, html .size-S div.gform-section.w-S-4, .size-S html div.gform-section.w-S-4, .size-L.gform-L3 > div, .size-M.gform-M3 > div {
  width: 33.2833333333%;
}

.w-8, .size-L .gform-row > div, html .size-L .gform-row > div.gform-section, .size-L html .gform-row > div.gform-section, .size-L .w-L-8, .size-L .gform-section.w-L-8, html .size-L div.gform-section.w-L-8, .size-L html div.gform-section.w-L-8, .size-L.gform-supplement-L-8 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-8 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-8 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-8 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-8.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-8.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-8 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-8 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-8 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-8 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-8 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-8 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-8 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-8 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-8.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-8.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-8.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-8.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-8 .gform-row > div, .size-L .gform-fields-L-8 div.gform-row > div, body .size-L div.gform-fields-L-8.gform-row > div, html .size-L.gform-fields-L-8 .gform-row > div.gform-section, .size-L.gform-fields-L-8 html .gform-row > div.gform-section, html .size-L .gform-fields-L-8 div.gform-row > div.gform-section, .size-L .gform-fields-L-8 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-8.gform-row > div.gform-section, body .size-L html div.gform-fields-L-8.gform-row > div.gform-section, .size-L.gform-label-L-8 .gform-row > label:first-of-type, .size-L.gform-label-L-8 .gform-row > .gform-row__spacer, .size-L .gform-label-L-8 div.gform-row > label:first-of-type, .size-L .gform-label-L-8 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-8.gform-row > label:first-of-type, html body .size-L div.gform-label-L-8.gform-row > .gform-row__spacer, html .size-L.gform-label-L-8 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-8 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-8 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-8 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-8.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-8, .size-M .gform-section.w-M-8, html .size-M div.gform-section.w-M-8, .size-M html div.gform-section.w-M-8, .size-M.gform-supplement-M-8 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-8 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-8 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-8 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-8.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-8.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-8 .gform-row > div, .size-M .gform-fields-M-8 div.gform-row > div, body .size-M div.gform-fields-M-8.gform-row > div, html .size-M.gform-fields-M-8 .gform-row > div.gform-section, .size-M.gform-fields-M-8 html .gform-row > div.gform-section, html .size-M .gform-fields-M-8 div.gform-row > div.gform-section, .size-M .gform-fields-M-8 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-8.gform-row > div.gform-section, body .size-M html div.gform-fields-M-8.gform-row > div.gform-section, .size-M.gform-label-M-8 .gform-row > label:first-of-type, .size-M.gform-label-M-8 .gform-row > .gform-row__spacer, .size-M .gform-label-M-8 div.gform-row > label:first-of-type, .size-M .gform-label-M-8 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-8.gform-row > label:first-of-type, html body .size-M div.gform-label-M-8.gform-row > .gform-row__spacer, html .size-M.gform-label-M-8 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-8 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-8 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-8 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-8.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-8, .size-S .gform-section.w-S-8, html .size-S div.gform-section.w-S-8, .size-S html div.gform-section.w-S-8, .size-S.gform-supplement-S-8 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-8 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-8 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-8 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-8.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-8.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-8 .gform-row > div, .size-S .gform-fields-S-8 div.gform-row > div, body .size-S div.gform-fields-S-8.gform-row > div, html .size-S.gform-fields-S-8 .gform-row > div.gform-section, .size-S.gform-fields-S-8 html .gform-row > div.gform-section, html .size-S .gform-fields-S-8 div.gform-row > div.gform-section, .size-S .gform-fields-S-8 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-8.gform-row > div.gform-section, body .size-S html div.gform-fields-S-8.gform-row > div.gform-section, .size-S.gform-label-S-8 .gform-row > label:first-of-type, .size-S.gform-label-S-8 .gform-row > .gform-row__spacer, .size-S .gform-label-S-8 div.gform-row > label:first-of-type, .size-S .gform-label-S-8 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-8.gform-row > label:first-of-type, html body .size-S div.gform-label-S-8.gform-row > .gform-row__spacer, html .size-S.gform-label-S-8 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-8 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-8 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-8 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-8.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-8, html .size-L .gform-row > div.gform-section, .size-L html .gform-row > div.gform-section, html .size-L div.gform-section.w-L-8, .size-L html div.gform-section.w-L-8, html .size-L div.gform-section.w-L-8, .size-L html div.gform-section.w-L-8, html .size-L div.gform-section.w-L-8, .size-L html div.gform-section.w-L-8, html .size-L.gform-supplement-L-8 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-8 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-8 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-8 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-8 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-8 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-8 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-8 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-8.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-8.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-8.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-8.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-8, .size-M html div.gform-section.w-M-8, html .size-M div.gform-section.w-M-8, .size-M html div.gform-section.w-M-8, html .size-M div.gform-section.w-M-8, .size-M html div.gform-section.w-M-8, html .size-S div.gform-section.w-S-8, .size-S html div.gform-section.w-S-8, html .size-S div.gform-section.w-S-8, .size-S html div.gform-section.w-S-8, html .size-S div.gform-section.w-S-8, .size-S html div.gform-section.w-S-8 {
  width: 66.6166666667%;
}

.w-2-8, .w-3, .size-M .gform-row > label:first-of-type, .size-M .gform-row > .gform-row__spacer, html .size-M .gform-row > div.gform-section.gform-row__spacer, .size-M html .gform-row > div.gform-section.gform-row__spacer, .size-L .gform-row > label:first-of-type, .size-L .gform-row > .gform-row__spacer, html .size-L .gform-row > div.gform-section.gform-row__spacer, .size-L html .gform-row > div.gform-section.gform-row__spacer, .size-L .w-L-3, .size-L .gform-section.w-L-3, html .size-L div.gform-section.w-L-3, .size-L html div.gform-section.w-L-3, .size-L.gform-supplement-L-3 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-3 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-3 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-3 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-3.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-3.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-3 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-3 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-3 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-3 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-3 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-3 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-3 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-3 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-3.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-3.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-3.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-3.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-3 .gform-row > div, .size-L .gform-fields-L-3 div.gform-row > div, body .size-L div.gform-fields-L-3.gform-row > div, html .size-L.gform-fields-L-3 .gform-row > div.gform-section, .size-L.gform-fields-L-3 html .gform-row > div.gform-section, html .size-L .gform-fields-L-3 div.gform-row > div.gform-section, .size-L .gform-fields-L-3 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-3.gform-row > div.gform-section, body .size-L html div.gform-fields-L-3.gform-row > div.gform-section, .size-L.gform-label-L-3 .gform-row > label:first-of-type, .size-L.gform-label-L-3 .gform-row > .gform-row__spacer, .size-L .gform-label-L-3 div.gform-row > label:first-of-type, .size-L .gform-label-L-3 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-3.gform-row > label:first-of-type, html body .size-L div.gform-label-L-3.gform-row > .gform-row__spacer, html .size-L.gform-label-L-3 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-3 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-3 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-3 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-3.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-3, .size-M .gform-section.w-M-3, html .size-M div.gform-section.w-M-3, .size-M html div.gform-section.w-M-3, .size-M.gform-supplement-M-3 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-3 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-3 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-3 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-3.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-3.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-3 .gform-row > div, .size-M .gform-fields-M-3 div.gform-row > div, body .size-M div.gform-fields-M-3.gform-row > div, html .size-M.gform-fields-M-3 .gform-row > div.gform-section, .size-M.gform-fields-M-3 html .gform-row > div.gform-section, html .size-M .gform-fields-M-3 div.gform-row > div.gform-section, .size-M .gform-fields-M-3 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-3.gform-row > div.gform-section, body .size-M html div.gform-fields-M-3.gform-row > div.gform-section, .size-M.gform-label-M-3 .gform-row > label:first-of-type, .size-M.gform-label-M-3 .gform-row > .gform-row__spacer, .size-M .gform-label-M-3 div.gform-row > label:first-of-type, .size-M .gform-label-M-3 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-3.gform-row > label:first-of-type, html body .size-M div.gform-label-M-3.gform-row > .gform-row__spacer, html .size-M.gform-label-M-3 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-3 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-3 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-3 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-3.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-3, .size-S .gform-section.w-S-3, html .size-S div.gform-section.w-S-3, .size-S html div.gform-section.w-S-3, .size-S.gform-supplement-S-3 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-3 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-3 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-3 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-3.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-3.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-3 .gform-row > div, .size-S .gform-fields-S-3 div.gform-row > div, body .size-S div.gform-fields-S-3.gform-row > div, html .size-S.gform-fields-S-3 .gform-row > div.gform-section, .size-S.gform-fields-S-3 html .gform-row > div.gform-section, html .size-S .gform-fields-S-3 div.gform-row > div.gform-section, .size-S .gform-fields-S-3 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-3.gform-row > div.gform-section, body .size-S html div.gform-fields-S-3.gform-row > div.gform-section, .size-S.gform-label-S-3 .gform-row > label:first-of-type, .size-S.gform-label-S-3 .gform-row > .gform-row__spacer, .size-S .gform-label-S-3 div.gform-row > label:first-of-type, .size-S .gform-label-S-3 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-3.gform-row > label:first-of-type, html body .size-S div.gform-label-S-3.gform-row > .gform-row__spacer, html .size-S.gform-label-S-3 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-3 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-3 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-3 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-3.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-3, html .size-M .gform-row > div.gform-section.gform-row__spacer, .size-M html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-row > div.gform-section.gform-row__spacer, .size-L html .gform-row > div.gform-section.gform-row__spacer, html .size-L div.gform-section.w-L-3, .size-L html div.gform-section.w-L-3, html .size-L div.gform-section.w-L-3, .size-L html div.gform-section.w-L-3, html .size-L div.gform-section.w-L-3, .size-L html div.gform-section.w-L-3, html .size-L.gform-supplement-L-3 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-3 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-3 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-3 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-3 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-3 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-3 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-3 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-3.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-3.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-3.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-3.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L.gform-fields-L-3 .gform-row > div.gform-section, .size-L.gform-fields-L-3 html .gform-row > div.gform-section, html .size-L .gform-fields-L-3 div.gform-row > div.gform-section, .size-L .gform-fields-L-3 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-3.gform-row > div.gform-section, body .size-L html div.gform-fields-L-3.gform-row > div.gform-section, html .size-M div.gform-section.w-M-3, .size-M html div.gform-section.w-M-3, html .size-M div.gform-section.w-M-3, .size-M html div.gform-section.w-M-3, html .size-M div.gform-section.w-M-3, .size-M html div.gform-section.w-M-3, html .size-S div.gform-section.w-S-3, .size-S html div.gform-section.w-S-3, html .size-S div.gform-section.w-S-3, .size-S html div.gform-section.w-S-3, html .size-S div.gform-section.w-S-3, .size-S html div.gform-section.w-S-3, .size-L.gform-L4 > div {
  width: 24.95%;
}

.w-6-8, .w-9, .size-M .gform-row > div, html .size-M .gform-row > div.gform-section, .size-M html .gform-row > div.gform-section, .size-L .w-L-9, .size-L .gform-section.w-L-9, html .size-L div.gform-section.w-L-9, .size-L html div.gform-section.w-L-9, .size-L.gform-supplement-L-9 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-9 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-9 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-9 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-9.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-9.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-9 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-9 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-9 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-9 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-9 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-9 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-9 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-9 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-9.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-9.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-9.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-9.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-9 .gform-row > div, .size-L .gform-fields-L-9 div.gform-row > div, body .size-L div.gform-fields-L-9.gform-row > div, html .size-L.gform-fields-L-9 .gform-row > div.gform-section, .size-L.gform-fields-L-9 html .gform-row > div.gform-section, html .size-L .gform-fields-L-9 div.gform-row > div.gform-section, .size-L .gform-fields-L-9 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-9.gform-row > div.gform-section, body .size-L html div.gform-fields-L-9.gform-row > div.gform-section, .size-L.gform-label-L-9 .gform-row > label:first-of-type, .size-L.gform-label-L-9 .gform-row > .gform-row__spacer, .size-L .gform-label-L-9 div.gform-row > label:first-of-type, .size-L .gform-label-L-9 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-9.gform-row > label:first-of-type, html body .size-L div.gform-label-L-9.gform-row > .gform-row__spacer, html .size-L.gform-label-L-9 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-9 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-9 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-9 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-9.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-9, .size-M .gform-section.w-M-9, html .size-M div.gform-section.w-M-9, .size-M html div.gform-section.w-M-9, .size-M.gform-supplement-M-9 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-9 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-9 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-9 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-9.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-9.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-9 .gform-row > div, .size-M .gform-fields-M-9 div.gform-row > div, body .size-M div.gform-fields-M-9.gform-row > div, html .size-M.gform-fields-M-9 .gform-row > div.gform-section, .size-M.gform-fields-M-9 html .gform-row > div.gform-section, html .size-M .gform-fields-M-9 div.gform-row > div.gform-section, .size-M .gform-fields-M-9 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-9.gform-row > div.gform-section, body .size-M html div.gform-fields-M-9.gform-row > div.gform-section, .size-M.gform-label-M-9 .gform-row > label:first-of-type, .size-M.gform-label-M-9 .gform-row > .gform-row__spacer, .size-M .gform-label-M-9 div.gform-row > label:first-of-type, .size-M .gform-label-M-9 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-9.gform-row > label:first-of-type, html body .size-M div.gform-label-M-9.gform-row > .gform-row__spacer, html .size-M.gform-label-M-9 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-9 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-9 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-9 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-9.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-9, .size-S .gform-section.w-S-9, html .size-S div.gform-section.w-S-9, .size-S html div.gform-section.w-S-9, .size-S.gform-supplement-S-9 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-9 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-9 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-9 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-9.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-9.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-9 .gform-row > div, .size-S .gform-fields-S-9 div.gform-row > div, body .size-S div.gform-fields-S-9.gform-row > div, html .size-S.gform-fields-S-9 .gform-row > div.gform-section, .size-S.gform-fields-S-9 html .gform-row > div.gform-section, html .size-S .gform-fields-S-9 div.gform-row > div.gform-section, .size-S .gform-fields-S-9 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-9.gform-row > div.gform-section, body .size-S html div.gform-fields-S-9.gform-row > div.gform-section, .size-S.gform-label-S-9 .gform-row > label:first-of-type, .size-S.gform-label-S-9 .gform-row > .gform-row__spacer, .size-S .gform-label-S-9 div.gform-row > label:first-of-type, .size-S .gform-label-S-9 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-9.gform-row > label:first-of-type, html body .size-S div.gform-label-S-9.gform-row > .gform-row__spacer, html .size-S.gform-label-S-9 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-9 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-9 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-9 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-9.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-9, html .size-M .gform-row > div.gform-section, .size-M html .gform-row > div.gform-section, html .size-L div.gform-section.w-L-9, .size-L html div.gform-section.w-L-9, html .size-L div.gform-section.w-L-9, .size-L html div.gform-section.w-L-9, html .size-L div.gform-section.w-L-9, .size-L html div.gform-section.w-L-9, html .size-L.gform-supplement-L-9 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-9 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-9 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-9 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-9 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-9 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-9 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-9 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-9.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-9.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-9.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-9.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L.gform-fields-L-9 .gform-row > div.gform-section, .size-L.gform-fields-L-9 html .gform-row > div.gform-section, html .size-L .gform-fields-L-9 div.gform-row > div.gform-section, .size-L .gform-fields-L-9 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-9.gform-row > div.gform-section, body .size-L html div.gform-fields-L-9.gform-row > div.gform-section, html .size-M div.gform-section.w-M-9, .size-M html div.gform-section.w-M-9, html .size-M div.gform-section.w-M-9, .size-M html div.gform-section.w-M-9, html .size-M div.gform-section.w-M-9, .size-M html div.gform-section.w-M-9, html .size-S div.gform-section.w-S-9, .size-S html div.gform-section.w-S-9, html .size-S div.gform-section.w-S-9, .size-S html div.gform-section.w-S-9, html .size-S div.gform-section.w-S-9, .size-S html div.gform-section.w-S-9 {
  width: 74.95%;
}

.w-1-5, .size-L.gform-L5 > div {
  width: 19.95%;
}

.w-2-5 {
  width: 39.95%;
}

.w-3-5 {
  width: 59.95%;
}

.w-4-5 {
  width: 79.95%;
}

.w-2, .size-L .w-L-2, .size-L .gform-section.w-L-2, html .size-L div.gform-section.w-L-2, .size-L html div.gform-section.w-L-2, .size-L.gform-supplement-L-2 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-2 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-2 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-2 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-2.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-2.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-2 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-2 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-2 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-2 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-2 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-2 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-2 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-2 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-2.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-2.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-2.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-2.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-2 .gform-row > div, .size-L .gform-fields-L-2 div.gform-row > div, body .size-L div.gform-fields-L-2.gform-row > div, html .size-L.gform-fields-L-2 .gform-row > div.gform-section, .size-L.gform-fields-L-2 html .gform-row > div.gform-section, html .size-L .gform-fields-L-2 div.gform-row > div.gform-section, .size-L .gform-fields-L-2 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-2.gform-row > div.gform-section, body .size-L html div.gform-fields-L-2.gform-row > div.gform-section, .size-L.gform-label-L-2 .gform-row > label:first-of-type, .size-L.gform-label-L-2 .gform-row > .gform-row__spacer, .size-L .gform-label-L-2 div.gform-row > label:first-of-type, .size-L .gform-label-L-2 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-2.gform-row > label:first-of-type, html body .size-L div.gform-label-L-2.gform-row > .gform-row__spacer, html .size-L.gform-label-L-2 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-2 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-2 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-2 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-2.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-2, .size-M .gform-section.w-M-2, html .size-M div.gform-section.w-M-2, .size-M html div.gform-section.w-M-2, .size-M.gform-supplement-M-2 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-2 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-2 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-2 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-2.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-2.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-2 .gform-row > div, .size-M .gform-fields-M-2 div.gform-row > div, body .size-M div.gform-fields-M-2.gform-row > div, html .size-M.gform-fields-M-2 .gform-row > div.gform-section, .size-M.gform-fields-M-2 html .gform-row > div.gform-section, html .size-M .gform-fields-M-2 div.gform-row > div.gform-section, .size-M .gform-fields-M-2 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-2.gform-row > div.gform-section, body .size-M html div.gform-fields-M-2.gform-row > div.gform-section, .size-M.gform-label-M-2 .gform-row > label:first-of-type, .size-M.gform-label-M-2 .gform-row > .gform-row__spacer, .size-M .gform-label-M-2 div.gform-row > label:first-of-type, .size-M .gform-label-M-2 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-2.gform-row > label:first-of-type, html body .size-M div.gform-label-M-2.gform-row > .gform-row__spacer, html .size-M.gform-label-M-2 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-2 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-2 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-2 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-2.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-2, .size-S .gform-section.w-S-2, html .size-S div.gform-section.w-S-2, .size-S html div.gform-section.w-S-2, .size-S.gform-supplement-S-2 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-2 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-2 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-2 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-2.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-2.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-2 .gform-row > div, .size-S .gform-fields-S-2 div.gform-row > div, body .size-S div.gform-fields-S-2.gform-row > div, html .size-S.gform-fields-S-2 .gform-row > div.gform-section, .size-S.gform-fields-S-2 html .gform-row > div.gform-section, html .size-S .gform-fields-S-2 div.gform-row > div.gform-section, .size-S .gform-fields-S-2 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-2.gform-row > div.gform-section, body .size-S html div.gform-fields-S-2.gform-row > div.gform-section, .size-S.gform-label-S-2 .gform-row > label:first-of-type, .size-S.gform-label-S-2 .gform-row > .gform-row__spacer, .size-S .gform-label-S-2 div.gform-row > label:first-of-type, .size-S .gform-label-S-2 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-2.gform-row > label:first-of-type, html body .size-S div.gform-label-S-2.gform-row > .gform-row__spacer, html .size-S.gform-label-S-2 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-2 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-2 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-2 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-2.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-2, html .size-L div.gform-section.w-L-2, .size-L html div.gform-section.w-L-2, html .size-L div.gform-section.w-L-2, .size-L html div.gform-section.w-L-2, html .size-L div.gform-section.w-L-2, .size-L html div.gform-section.w-L-2, html .size-L.gform-supplement-L-2 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-2 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-2 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-2 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-2 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-2 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-2 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-2 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-2.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-2.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-2.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-2.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-2, .size-M html div.gform-section.w-M-2, html .size-M div.gform-section.w-M-2, .size-M html div.gform-section.w-M-2, html .size-M div.gform-section.w-M-2, .size-M html div.gform-section.w-M-2, html .size-S div.gform-section.w-S-2, .size-S html div.gform-section.w-S-2, html .size-S div.gform-section.w-S-2, .size-S html div.gform-section.w-S-2, html .size-S div.gform-section.w-S-2, .size-S html div.gform-section.w-S-2 {
  width: 16.6166666667%;
}

.w-10, .size-L .w-L-10, .size-L .gform-section.w-L-10, html .size-L div.gform-section.w-L-10, .size-L html div.gform-section.w-L-10, .size-L.gform-supplement-L-10 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-10 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-10 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-10 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-10.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-10.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-10 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-10 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-10 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-10 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-10 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-10 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-10 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-10 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-10.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-10.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-10.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-10.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-10 .gform-row > div, .size-L .gform-fields-L-10 div.gform-row > div, body .size-L div.gform-fields-L-10.gform-row > div, html .size-L.gform-fields-L-10 .gform-row > div.gform-section, .size-L.gform-fields-L-10 html .gform-row > div.gform-section, html .size-L .gform-fields-L-10 div.gform-row > div.gform-section, .size-L .gform-fields-L-10 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-10.gform-row > div.gform-section, body .size-L html div.gform-fields-L-10.gform-row > div.gform-section, .size-L.gform-label-L-10 .gform-row > label:first-of-type, .size-L.gform-label-L-10 .gform-row > .gform-row__spacer, .size-L .gform-label-L-10 div.gform-row > label:first-of-type, .size-L .gform-label-L-10 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-10.gform-row > label:first-of-type, html body .size-L div.gform-label-L-10.gform-row > .gform-row__spacer, html .size-L.gform-label-L-10 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-10 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-10 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-10 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-10.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-10, .size-M .gform-section.w-M-10, html .size-M div.gform-section.w-M-10, .size-M html div.gform-section.w-M-10, .size-M.gform-supplement-M-10 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-10 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-10 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-10 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-10.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-10.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-10 .gform-row > div, .size-M .gform-fields-M-10 div.gform-row > div, body .size-M div.gform-fields-M-10.gform-row > div, html .size-M.gform-fields-M-10 .gform-row > div.gform-section, .size-M.gform-fields-M-10 html .gform-row > div.gform-section, html .size-M .gform-fields-M-10 div.gform-row > div.gform-section, .size-M .gform-fields-M-10 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-10.gform-row > div.gform-section, body .size-M html div.gform-fields-M-10.gform-row > div.gform-section, .size-M.gform-label-M-10 .gform-row > label:first-of-type, .size-M.gform-label-M-10 .gform-row > .gform-row__spacer, .size-M .gform-label-M-10 div.gform-row > label:first-of-type, .size-M .gform-label-M-10 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-10.gform-row > label:first-of-type, html body .size-M div.gform-label-M-10.gform-row > .gform-row__spacer, html .size-M.gform-label-M-10 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-10 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-10 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-10 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-10.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-10, .size-S .gform-section.w-S-10, html .size-S div.gform-section.w-S-10, .size-S html div.gform-section.w-S-10, .size-S.gform-supplement-S-10 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-10 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-10 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-10 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-10.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-10.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-10 .gform-row > div, .size-S .gform-fields-S-10 div.gform-row > div, body .size-S div.gform-fields-S-10.gform-row > div, html .size-S.gform-fields-S-10 .gform-row > div.gform-section, .size-S.gform-fields-S-10 html .gform-row > div.gform-section, html .size-S .gform-fields-S-10 div.gform-row > div.gform-section, .size-S .gform-fields-S-10 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-10.gform-row > div.gform-section, body .size-S html div.gform-fields-S-10.gform-row > div.gform-section, .size-S.gform-label-S-10 .gform-row > label:first-of-type, .size-S.gform-label-S-10 .gform-row > .gform-row__spacer, .size-S .gform-label-S-10 div.gform-row > label:first-of-type, .size-S .gform-label-S-10 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-10.gform-row > label:first-of-type, html body .size-S div.gform-label-S-10.gform-row > .gform-row__spacer, html .size-S.gform-label-S-10 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-10 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-10 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-10 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-10.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-10, html .size-L div.gform-section.w-L-10, .size-L html div.gform-section.w-L-10, html .size-L div.gform-section.w-L-10, .size-L html div.gform-section.w-L-10, html .size-L div.gform-section.w-L-10, .size-L html div.gform-section.w-L-10, html .size-L.gform-supplement-L-10 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-10 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-10 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-10 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-10 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-10 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-10 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-10 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-10.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-10.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-10.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-10.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-10, .size-M html div.gform-section.w-M-10, html .size-M div.gform-section.w-M-10, .size-M html div.gform-section.w-M-10, html .size-M div.gform-section.w-M-10, .size-M html div.gform-section.w-M-10, html .size-S div.gform-section.w-S-10, .size-S html div.gform-section.w-S-10, html .size-S div.gform-section.w-S-10, .size-S html div.gform-section.w-S-10, html .size-S div.gform-section.w-S-10, .size-S html div.gform-section.w-S-10 {
  width: 83.2833333333%;
}

.w-1-8 {
  width: 12.45%;
}

.w-3-8 {
  width: 37.45%;
}

.w-5-8 {
  width: 62.45%;
}

.w-7-8 {
  width: 87.45%;
}

.w-1, .size-L .gform-row > label ~ .gform-row__supplement, .size-L .gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .w-L-1, .size-L .gform-section.w-L-1, html .size-L div.gform-section.w-L-1, .size-L html div.gform-section.w-L-1, .size-L.gform-supplement-L-1 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-1 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-1 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-1 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-1.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-1.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-1 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-1 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-1 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-1 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-1 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-1 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-1 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-1 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-1.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-1.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-1.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-1.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-1 .gform-row > div, .size-L .gform-fields-L-1 div.gform-row > div, body .size-L div.gform-fields-L-1.gform-row > div, html .size-L.gform-fields-L-1 .gform-row > div.gform-section, .size-L.gform-fields-L-1 html .gform-row > div.gform-section, html .size-L .gform-fields-L-1 div.gform-row > div.gform-section, .size-L .gform-fields-L-1 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-1.gform-row > div.gform-section, body .size-L html div.gform-fields-L-1.gform-row > div.gform-section, .size-L.gform-label-L-1 .gform-row > label:first-of-type, .size-L.gform-label-L-1 .gform-row > .gform-row__spacer, .size-L .gform-label-L-1 div.gform-row > label:first-of-type, .size-L .gform-label-L-1 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-1.gform-row > label:first-of-type, html body .size-L div.gform-label-L-1.gform-row > .gform-row__spacer, html .size-L.gform-label-L-1 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-1 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-1 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-1 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-1.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-1, .size-M .gform-section.w-M-1, html .size-M div.gform-section.w-M-1, .size-M html div.gform-section.w-M-1, .size-M.gform-supplement-M-1 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-1 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-1 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-1 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-1.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-1.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-1 .gform-row > div, .size-M .gform-fields-M-1 div.gform-row > div, body .size-M div.gform-fields-M-1.gform-row > div, html .size-M.gform-fields-M-1 .gform-row > div.gform-section, .size-M.gform-fields-M-1 html .gform-row > div.gform-section, html .size-M .gform-fields-M-1 div.gform-row > div.gform-section, .size-M .gform-fields-M-1 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-1.gform-row > div.gform-section, body .size-M html div.gform-fields-M-1.gform-row > div.gform-section, .size-M.gform-label-M-1 .gform-row > label:first-of-type, .size-M.gform-label-M-1 .gform-row > .gform-row__spacer, .size-M .gform-label-M-1 div.gform-row > label:first-of-type, .size-M .gform-label-M-1 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-1.gform-row > label:first-of-type, html body .size-M div.gform-label-M-1.gform-row > .gform-row__spacer, html .size-M.gform-label-M-1 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-1 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-1 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-1 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-1.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-1, .size-S .gform-section.w-S-1, html .size-S div.gform-section.w-S-1, .size-S html div.gform-section.w-S-1, .size-S.gform-supplement-S-1 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-1 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-1 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-1 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-1.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-1.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-1 .gform-row > div, .size-S .gform-fields-S-1 div.gform-row > div, body .size-S div.gform-fields-S-1.gform-row > div, html .size-S.gform-fields-S-1 .gform-row > div.gform-section, .size-S.gform-fields-S-1 html .gform-row > div.gform-section, html .size-S .gform-fields-S-1 div.gform-row > div.gform-section, .size-S .gform-fields-S-1 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-1.gform-row > div.gform-section, body .size-S html div.gform-fields-S-1.gform-row > div.gform-section, .size-S.gform-label-S-1 .gform-row > label:first-of-type, .size-S.gform-label-S-1 .gform-row > .gform-row__spacer, .size-S .gform-label-S-1 div.gform-row > label:first-of-type, .size-S .gform-label-S-1 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-1.gform-row > label:first-of-type, html body .size-S div.gform-label-S-1.gform-row > .gform-row__spacer, html .size-S.gform-label-S-1 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-1 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-1 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-1 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-1.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-1, html .size-L .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L div.gform-section.w-L-1, .size-L html div.gform-section.w-L-1, html .size-L div.gform-section.w-L-1, .size-L html div.gform-section.w-L-1, html .size-L div.gform-section.w-L-1, .size-L html div.gform-section.w-L-1, html .size-L.gform-supplement-L-1 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-1 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-1 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-1 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-1 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-1 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-1 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-1 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-1.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-1.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-1.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-1.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-1, .size-M html div.gform-section.w-M-1, html .size-M div.gform-section.w-M-1, .size-M html div.gform-section.w-M-1, html .size-M div.gform-section.w-M-1, .size-M html div.gform-section.w-M-1, html .size-S div.gform-section.w-S-1, .size-S html div.gform-section.w-S-1, html .size-S div.gform-section.w-S-1, .size-S html div.gform-section.w-S-1, html .size-S div.gform-section.w-S-1, .size-S html div.gform-section.w-S-1 {
  width: 8.2833333333%;
}

.w-5, .size-L .w-L-5, .size-L .gform-section.w-L-5, html .size-L div.gform-section.w-L-5, .size-L html div.gform-section.w-L-5, .size-L.gform-supplement-L-5 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-5 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-5 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-5 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-5.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-5.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-5 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-5 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-5 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-5 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-5 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-5 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-5 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-5 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-5.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-5.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-5.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-5.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-5 .gform-row > div, .size-L .gform-fields-L-5 div.gform-row > div, body .size-L div.gform-fields-L-5.gform-row > div, html .size-L.gform-fields-L-5 .gform-row > div.gform-section, .size-L.gform-fields-L-5 html .gform-row > div.gform-section, html .size-L .gform-fields-L-5 div.gform-row > div.gform-section, .size-L .gform-fields-L-5 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-5.gform-row > div.gform-section, body .size-L html div.gform-fields-L-5.gform-row > div.gform-section, .size-L.gform-label-L-5 .gform-row > label:first-of-type, .size-L.gform-label-L-5 .gform-row > .gform-row__spacer, .size-L .gform-label-L-5 div.gform-row > label:first-of-type, .size-L .gform-label-L-5 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-5.gform-row > label:first-of-type, html body .size-L div.gform-label-L-5.gform-row > .gform-row__spacer, html .size-L.gform-label-L-5 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-5 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-5 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-5 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-5.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-5, .size-M .gform-section.w-M-5, html .size-M div.gform-section.w-M-5, .size-M html div.gform-section.w-M-5, .size-M.gform-supplement-M-5 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-5 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-5 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-5 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-5.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-5.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-5 .gform-row > div, .size-M .gform-fields-M-5 div.gform-row > div, body .size-M div.gform-fields-M-5.gform-row > div, html .size-M.gform-fields-M-5 .gform-row > div.gform-section, .size-M.gform-fields-M-5 html .gform-row > div.gform-section, html .size-M .gform-fields-M-5 div.gform-row > div.gform-section, .size-M .gform-fields-M-5 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-5.gform-row > div.gform-section, body .size-M html div.gform-fields-M-5.gform-row > div.gform-section, .size-M.gform-label-M-5 .gform-row > label:first-of-type, .size-M.gform-label-M-5 .gform-row > .gform-row__spacer, .size-M .gform-label-M-5 div.gform-row > label:first-of-type, .size-M .gform-label-M-5 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-5.gform-row > label:first-of-type, html body .size-M div.gform-label-M-5.gform-row > .gform-row__spacer, html .size-M.gform-label-M-5 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-5 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-5 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-5 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-5.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-5, .size-S .gform-section.w-S-5, html .size-S div.gform-section.w-S-5, .size-S html div.gform-section.w-S-5, .size-S.gform-supplement-S-5 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-5 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-5 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-5 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-5.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-5.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-5 .gform-row > div, .size-S .gform-fields-S-5 div.gform-row > div, body .size-S div.gform-fields-S-5.gform-row > div, html .size-S.gform-fields-S-5 .gform-row > div.gform-section, .size-S.gform-fields-S-5 html .gform-row > div.gform-section, html .size-S .gform-fields-S-5 div.gform-row > div.gform-section, .size-S .gform-fields-S-5 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-5.gform-row > div.gform-section, body .size-S html div.gform-fields-S-5.gform-row > div.gform-section, .size-S.gform-label-S-5 .gform-row > label:first-of-type, .size-S.gform-label-S-5 .gform-row > .gform-row__spacer, .size-S .gform-label-S-5 div.gform-row > label:first-of-type, .size-S .gform-label-S-5 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-5.gform-row > label:first-of-type, html body .size-S div.gform-label-S-5.gform-row > .gform-row__spacer, html .size-S.gform-label-S-5 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-5 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-5 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-5 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-5.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-5, html .size-L div.gform-section.w-L-5, .size-L html div.gform-section.w-L-5, html .size-L div.gform-section.w-L-5, .size-L html div.gform-section.w-L-5, html .size-L div.gform-section.w-L-5, .size-L html div.gform-section.w-L-5, html .size-L.gform-supplement-L-5 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-5 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-5 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-5 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-5 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-5 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-5 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-5 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-5.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-5.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-5.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-5.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-5, .size-M html div.gform-section.w-M-5, html .size-M div.gform-section.w-M-5, .size-M html div.gform-section.w-M-5, html .size-M div.gform-section.w-M-5, .size-M html div.gform-section.w-M-5, html .size-S div.gform-section.w-S-5, .size-S html div.gform-section.w-S-5, html .size-S div.gform-section.w-S-5, .size-S html div.gform-section.w-S-5, html .size-S div.gform-section.w-S-5, .size-S html div.gform-section.w-S-5 {
  width: 41.6166666667%;
}

.w-7, .size-L .w-L-7, .size-L .gform-section.w-L-7, html .size-L div.gform-section.w-L-7, .size-L html div.gform-section.w-L-7, .size-L.gform-supplement-L-7 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-7 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-7 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-7 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-7.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-7.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-7 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-7 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-7 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-7 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-7 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-7 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-7 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-7 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-7.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-7.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-7.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-7.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-7 .gform-row > div, .size-L .gform-fields-L-7 div.gform-row > div, body .size-L div.gform-fields-L-7.gform-row > div, html .size-L.gform-fields-L-7 .gform-row > div.gform-section, .size-L.gform-fields-L-7 html .gform-row > div.gform-section, html .size-L .gform-fields-L-7 div.gform-row > div.gform-section, .size-L .gform-fields-L-7 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-7.gform-row > div.gform-section, body .size-L html div.gform-fields-L-7.gform-row > div.gform-section, .size-L.gform-label-L-7 .gform-row > label:first-of-type, .size-L.gform-label-L-7 .gform-row > .gform-row__spacer, .size-L .gform-label-L-7 div.gform-row > label:first-of-type, .size-L .gform-label-L-7 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-7.gform-row > label:first-of-type, html body .size-L div.gform-label-L-7.gform-row > .gform-row__spacer, html .size-L.gform-label-L-7 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-7 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-7 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-7 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-7.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-7, .size-M .gform-section.w-M-7, html .size-M div.gform-section.w-M-7, .size-M html div.gform-section.w-M-7, .size-M.gform-supplement-M-7 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-7 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-7 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-7 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-7.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-7.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-7 .gform-row > div, .size-M .gform-fields-M-7 div.gform-row > div, body .size-M div.gform-fields-M-7.gform-row > div, html .size-M.gform-fields-M-7 .gform-row > div.gform-section, .size-M.gform-fields-M-7 html .gform-row > div.gform-section, html .size-M .gform-fields-M-7 div.gform-row > div.gform-section, .size-M .gform-fields-M-7 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-7.gform-row > div.gform-section, body .size-M html div.gform-fields-M-7.gform-row > div.gform-section, .size-M.gform-label-M-7 .gform-row > label:first-of-type, .size-M.gform-label-M-7 .gform-row > .gform-row__spacer, .size-M .gform-label-M-7 div.gform-row > label:first-of-type, .size-M .gform-label-M-7 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-7.gform-row > label:first-of-type, html body .size-M div.gform-label-M-7.gform-row > .gform-row__spacer, html .size-M.gform-label-M-7 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-7 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-7 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-7 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-7.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-7, .size-S .gform-section.w-S-7, html .size-S div.gform-section.w-S-7, .size-S html div.gform-section.w-S-7, .size-S.gform-supplement-S-7 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-7 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-7 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-7 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-7.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-7.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-7 .gform-row > div, .size-S .gform-fields-S-7 div.gform-row > div, body .size-S div.gform-fields-S-7.gform-row > div, html .size-S.gform-fields-S-7 .gform-row > div.gform-section, .size-S.gform-fields-S-7 html .gform-row > div.gform-section, html .size-S .gform-fields-S-7 div.gform-row > div.gform-section, .size-S .gform-fields-S-7 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-7.gform-row > div.gform-section, body .size-S html div.gform-fields-S-7.gform-row > div.gform-section, .size-S.gform-label-S-7 .gform-row > label:first-of-type, .size-S.gform-label-S-7 .gform-row > .gform-row__spacer, .size-S .gform-label-S-7 div.gform-row > label:first-of-type, .size-S .gform-label-S-7 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-7.gform-row > label:first-of-type, html body .size-S div.gform-label-S-7.gform-row > .gform-row__spacer, html .size-S.gform-label-S-7 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-7 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-7 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-7 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-7.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-7, html .size-L div.gform-section.w-L-7, .size-L html div.gform-section.w-L-7, html .size-L div.gform-section.w-L-7, .size-L html div.gform-section.w-L-7, html .size-L div.gform-section.w-L-7, .size-L html div.gform-section.w-L-7, html .size-L.gform-supplement-L-7 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-7 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-7 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-7 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-7 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-7 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-7 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-7 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-7.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-7.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-7.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-7.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-7, .size-M html div.gform-section.w-M-7, html .size-M div.gform-section.w-M-7, .size-M html div.gform-section.w-M-7, html .size-M div.gform-section.w-M-7, .size-M html div.gform-section.w-M-7, html .size-S div.gform-section.w-S-7, .size-S html div.gform-section.w-S-7, html .size-S div.gform-section.w-S-7, .size-S html div.gform-section.w-S-7, html .size-S div.gform-section.w-S-7, .size-S html div.gform-section.w-S-7 {
  width: 58.2833333333%;
}

.w-11, .size-L .w-L-11, .size-L .gform-section.w-L-11, html .size-L div.gform-section.w-L-11, .size-L html div.gform-section.w-L-11, .size-L.gform-supplement-L-11 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-11 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-11 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-11 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-11.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-11.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-11 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-11 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-11 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-11 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-11 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-11 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-11 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-11 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-11.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-11.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-11.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-11.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-11 .gform-row > div, .size-L .gform-fields-L-11 div.gform-row > div, body .size-L div.gform-fields-L-11.gform-row > div, html .size-L.gform-fields-L-11 .gform-row > div.gform-section, .size-L.gform-fields-L-11 html .gform-row > div.gform-section, html .size-L .gform-fields-L-11 div.gform-row > div.gform-section, .size-L .gform-fields-L-11 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-11.gform-row > div.gform-section, body .size-L html div.gform-fields-L-11.gform-row > div.gform-section, .size-L.gform-label-L-11 .gform-row > label:first-of-type, .size-L.gform-label-L-11 .gform-row > .gform-row__spacer, .size-L .gform-label-L-11 div.gform-row > label:first-of-type, .size-L .gform-label-L-11 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-11.gform-row > label:first-of-type, html body .size-L div.gform-label-L-11.gform-row > .gform-row__spacer, html .size-L.gform-label-L-11 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-11 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-11 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-11 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-11.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-11, .size-M .gform-section.w-M-11, html .size-M div.gform-section.w-M-11, .size-M html div.gform-section.w-M-11, .size-M.gform-supplement-M-11 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-11 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-11 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-11 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-11.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-11.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-11 .gform-row > div, .size-M .gform-fields-M-11 div.gform-row > div, body .size-M div.gform-fields-M-11.gform-row > div, html .size-M.gform-fields-M-11 .gform-row > div.gform-section, .size-M.gform-fields-M-11 html .gform-row > div.gform-section, html .size-M .gform-fields-M-11 div.gform-row > div.gform-section, .size-M .gform-fields-M-11 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-11.gform-row > div.gform-section, body .size-M html div.gform-fields-M-11.gform-row > div.gform-section, .size-M.gform-label-M-11 .gform-row > label:first-of-type, .size-M.gform-label-M-11 .gform-row > .gform-row__spacer, .size-M .gform-label-M-11 div.gform-row > label:first-of-type, .size-M .gform-label-M-11 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-11.gform-row > label:first-of-type, html body .size-M div.gform-label-M-11.gform-row > .gform-row__spacer, html .size-M.gform-label-M-11 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-11 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-11 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-11 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-11.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-11, .size-S .gform-section.w-S-11, html .size-S div.gform-section.w-S-11, .size-S html div.gform-section.w-S-11, .size-S.gform-supplement-S-11 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-11 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-11 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-11 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-11.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-11.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-11 .gform-row > div, .size-S .gform-fields-S-11 div.gform-row > div, body .size-S div.gform-fields-S-11.gform-row > div, html .size-S.gform-fields-S-11 .gform-row > div.gform-section, .size-S.gform-fields-S-11 html .gform-row > div.gform-section, html .size-S .gform-fields-S-11 div.gform-row > div.gform-section, .size-S .gform-fields-S-11 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-11.gform-row > div.gform-section, body .size-S html div.gform-fields-S-11.gform-row > div.gform-section, .size-S.gform-label-S-11 .gform-row > label:first-of-type, .size-S.gform-label-S-11 .gform-row > .gform-row__spacer, .size-S .gform-label-S-11 div.gform-row > label:first-of-type, .size-S .gform-label-S-11 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-11.gform-row > label:first-of-type, html body .size-S div.gform-label-S-11.gform-row > .gform-row__spacer, html .size-S.gform-label-S-11 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-11 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-11 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-11 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-11.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-11, html .size-L div.gform-section.w-L-11, .size-L html div.gform-section.w-L-11, html .size-L div.gform-section.w-L-11, .size-L html div.gform-section.w-L-11, html .size-L div.gform-section.w-L-11, .size-L html div.gform-section.w-L-11, html .size-L.gform-supplement-L-11 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-11 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-11 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-11 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-11 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-11 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-11 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-11 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-11.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-11.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-11.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-11.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-11, .size-M html div.gform-section.w-M-11, html .size-M div.gform-section.w-M-11, .size-M html div.gform-section.w-M-11, html .size-M div.gform-section.w-M-11, .size-M html div.gform-section.w-M-11, html .size-S div.gform-section.w-S-11, .size-S html div.gform-section.w-S-11, html .size-S div.gform-section.w-S-11, .size-S html div.gform-section.w-S-11, html .size-S div.gform-section.w-S-11, .size-S html div.gform-section.w-S-11 {
  width: 91.6166666667%;
}

.w-0, body .size-S div.gform-row.gform-row-header > label ~ .gform-row__supplement, body .size-S div.gform-row.gform-row-header > .gform-row__spacer ~ .gform-row__supplement, html body .size-S div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, body .size-S html div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, html body .size-S div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-S html div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-M div.gform-row.gform-row-header > label ~ .gform-row__supplement, body .size-M div.gform-row.gform-row-header > .gform-row__spacer ~ .gform-row__supplement, html body .size-M div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, body .size-M html div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, html body .size-M div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-M html div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L div.gform-row.gform-row-header > label ~ .gform-row__supplement, body .size-L div.gform-row.gform-row-header > .gform-row__spacer ~ .gform-row__supplement, html body .size-L div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-S div.gform-row.gform-row-header > div, html body .size-S div.gform-row.gform-row-header > div.gform-section, body .size-S html div.gform-row.gform-row-header > div.gform-section, body .size-M div.gform-row.gform-row-header > div, html body .size-M div.gform-row.gform-row-header > div.gform-section, body .size-M html div.gform-row.gform-row-header > div.gform-section, body .size-L div.gform-row.gform-row-header > div, html body .size-L div.gform-row.gform-row-header > div.gform-section, body .size-L html div.gform-row.gform-row-header > div.gform-section, .size-S .gform-row > label ~ .gform-row__supplement, .size-S .gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-S .gform-row > label ~ div.gform-section.gform-row__supplement, .size-S html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-S .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-S html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-M .gform-row > label ~ .gform-row__supplement, .size-M .gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-M .gform-row > label ~ div.gform-section.gform-row__supplement, .size-M html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-M .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-M html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .w-L-0, .size-L .gform-section.w-L-0, html .size-L div.gform-section.w-L-0, .size-L html div.gform-section.w-L-0, .size-L.gform-supplement-L-0 .gform-row > label ~ .gform-row__supplement, .size-L.gform-supplement-L-0 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-L .gform-supplement-L-0 div.gform-row > label ~ .gform-row__supplement, .size-L .gform-supplement-L-0 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-L div.gform-supplement-L-0.gform-row > label ~ .gform-row__supplement, body .size-L div.gform-supplement-L-0.gform-row > .gform-row__spacer ~ .gform-row__supplement, html .size-L.gform-supplement-L-0 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-0 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-0 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-0 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-0 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-0 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-0 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-0 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-0.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-0.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-0.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-0.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-fields-L-0 .gform-row > div, .size-L .gform-fields-L-0 div.gform-row > div, body .size-L div.gform-fields-L-0.gform-row > div, html .size-L.gform-fields-L-0 .gform-row > div.gform-section, .size-L.gform-fields-L-0 html .gform-row > div.gform-section, html .size-L .gform-fields-L-0 div.gform-row > div.gform-section, .size-L .gform-fields-L-0 html div.gform-row > div.gform-section, html body .size-L div.gform-fields-L-0.gform-row > div.gform-section, body .size-L html div.gform-fields-L-0.gform-row > div.gform-section, .size-L.gform-label-L-0 .gform-row > label:first-of-type, .size-L.gform-label-L-0 .gform-row > .gform-row__spacer, .size-L .gform-label-L-0 div.gform-row > label:first-of-type, .size-L .gform-label-L-0 div.gform-row > .gform-row__spacer, html body .size-L div.gform-label-L-0.gform-row > label:first-of-type, html body .size-L div.gform-label-L-0.gform-row > .gform-row__spacer, html .size-L.gform-label-L-0 .gform-row > div.gform-section.gform-row__spacer, .size-L.gform-label-L-0 html .gform-row > div.gform-section.gform-row__spacer, html .size-L .gform-label-L-0 div.gform-row > div.gform-section.gform-row__spacer, .size-L .gform-label-L-0 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-L div.gform-label-L-0.gform-row > div.gform-section.gform-row__spacer, .size-M .w-M-0, .size-M .gform-section.w-M-0, html .size-M div.gform-section.w-M-0, .size-M html div.gform-section.w-M-0, .size-M.gform-supplement-M-0 .gform-row > label ~ .gform-row__supplement, .size-M.gform-supplement-M-0 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M .gform-supplement-M-0 div.gform-row > label ~ .gform-row__supplement, .size-M .gform-supplement-M-0 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-M div.gform-supplement-M-0.gform-row > label ~ .gform-row__supplement, body .size-M div.gform-supplement-M-0.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-M.gform-fields-M-0 .gform-row > div, .size-M .gform-fields-M-0 div.gform-row > div, body .size-M div.gform-fields-M-0.gform-row > div, html .size-M.gform-fields-M-0 .gform-row > div.gform-section, .size-M.gform-fields-M-0 html .gform-row > div.gform-section, html .size-M .gform-fields-M-0 div.gform-row > div.gform-section, .size-M .gform-fields-M-0 html div.gform-row > div.gform-section, html body .size-M div.gform-fields-M-0.gform-row > div.gform-section, body .size-M html div.gform-fields-M-0.gform-row > div.gform-section, .size-M.gform-label-M-0 .gform-row > label:first-of-type, .size-M.gform-label-M-0 .gform-row > .gform-row__spacer, .size-M .gform-label-M-0 div.gform-row > label:first-of-type, .size-M .gform-label-M-0 div.gform-row > .gform-row__spacer, html body .size-M div.gform-label-M-0.gform-row > label:first-of-type, html body .size-M div.gform-label-M-0.gform-row > .gform-row__spacer, html .size-M.gform-label-M-0 .gform-row > div.gform-section.gform-row__spacer, .size-M.gform-label-M-0 html .gform-row > div.gform-section.gform-row__spacer, html .size-M .gform-label-M-0 div.gform-row > div.gform-section.gform-row__spacer, .size-M .gform-label-M-0 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-M div.gform-label-M-0.gform-row > div.gform-section.gform-row__spacer, .size-S .w-S-0, .size-S .gform-section.w-S-0, html .size-S div.gform-section.w-S-0, .size-S html div.gform-section.w-S-0, .size-S.gform-supplement-S-0 .gform-row > label ~ .gform-row__supplement, .size-S.gform-supplement-S-0 .gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S .gform-supplement-S-0 div.gform-row > label ~ .gform-row__supplement, .size-S .gform-supplement-S-0 div.gform-row > .gform-row__spacer ~ .gform-row__supplement, body .size-S div.gform-supplement-S-0.gform-row > label ~ .gform-row__supplement, body .size-S div.gform-supplement-S-0.gform-row > .gform-row__spacer ~ .gform-row__supplement, .size-S.gform-fields-S-0 .gform-row > div, .size-S .gform-fields-S-0 div.gform-row > div, body .size-S div.gform-fields-S-0.gform-row > div, html .size-S.gform-fields-S-0 .gform-row > div.gform-section, .size-S.gform-fields-S-0 html .gform-row > div.gform-section, html .size-S .gform-fields-S-0 div.gform-row > div.gform-section, .size-S .gform-fields-S-0 html div.gform-row > div.gform-section, html body .size-S div.gform-fields-S-0.gform-row > div.gform-section, body .size-S html div.gform-fields-S-0.gform-row > div.gform-section, .size-S.gform-label-S-0 .gform-row > label:first-of-type, .size-S.gform-label-S-0 .gform-row > .gform-row__spacer, .size-S .gform-label-S-0 div.gform-row > label:first-of-type, .size-S .gform-label-S-0 div.gform-row > .gform-row__spacer, html body .size-S div.gform-label-S-0.gform-row > label:first-of-type, html body .size-S div.gform-label-S-0.gform-row > .gform-row__spacer, html .size-S.gform-label-S-0 .gform-row > div.gform-section.gform-row__spacer, .size-S.gform-label-S-0 html .gform-row > div.gform-section.gform-row__spacer, html .size-S .gform-label-S-0 div.gform-row > div.gform-section.gform-row__spacer, .size-S .gform-label-S-0 html div.gform-row > div.gform-section.gform-row__spacer, html body .size-S div.gform-label-S-0.gform-row > div.gform-section.gform-row__spacer, html div.gform-section.w-0, html body .size-S div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, body .size-S html div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, html body .size-S div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-S html div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-M div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, body .size-M html div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, html body .size-M div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-M html div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-row.gform-row-header > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-row.gform-row-header > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-S div.gform-row.gform-row-header > div.gform-section, body .size-S html div.gform-row.gform-row-header > div.gform-section, html body .size-M div.gform-row.gform-row-header > div.gform-section, body .size-M html div.gform-row.gform-row-header > div.gform-section, html body .size-L div.gform-row.gform-row-header > div.gform-section, body .size-L html div.gform-row.gform-row-header > div.gform-section, html .size-S .gform-row > label ~ div.gform-section.gform-row__supplement, .size-S html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-S .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-S html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M .gform-row > label ~ div.gform-section.gform-row__supplement, .size-M html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-M .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-M html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L div.gform-section.w-L-0, .size-L html div.gform-section.w-L-0, html .size-L div.gform-section.w-L-0, .size-L html div.gform-section.w-L-0, html .size-L div.gform-section.w-L-0, .size-L html div.gform-section.w-L-0, html .size-L.gform-supplement-L-0 .gform-row > label ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-0 html .gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L.gform-supplement-L-0 .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L.gform-supplement-L-0 html .gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-0 div.gform-row > label ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-0 html div.gform-row > label ~ div.gform-section.gform-row__supplement, html .size-L .gform-supplement-L-0 div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, .size-L .gform-supplement-L-0 html div.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-0.gform-row > label ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-0.gform-row > label ~ div.gform-section.gform-row__supplement, html body .size-L div.gform-supplement-L-0.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, body .size-L html div.gform-supplement-L-0.gform-row > .gform-row__spacer ~ div.gform-section.gform-row__supplement, html .size-M div.gform-section.w-M-0, .size-M html div.gform-section.w-M-0, html .size-M div.gform-section.w-M-0, .size-M html div.gform-section.w-M-0, html .size-M div.gform-section.w-M-0, .size-M html div.gform-section.w-M-0, html .size-S div.gform-section.w-S-0, .size-S html div.gform-section.w-S-0, html .size-S div.gform-section.w-S-0, .size-S html div.gform-section.w-S-0, html .size-S div.gform-section.w-S-0, .size-S html div.gform-section.w-S-0 {
  width: 0;
}

.size-S {
  /*    @at-root {
        .hide-when-not-12.hide-when-not-12.hide-when-not-12 { @extend .w-h; }
      }
      :not(&.gform-label-S-12) .hide-when-not-12 {
          display:block;
      }*/
}
.size-M {
  /*    @at-root {
        .hide-when-not-12.hide-when-not-12.hide-when-not-12 { @extend .w-h; }
      }
      :not(&.gform-label-M-12) .hide-when-not-12 {
          display:block;
      }*/
}
.size-L {
  /*    @at-root {
        .hide-when-not-12.hide-when-not-12.hide-when-not-12 { @extend .w-h; }
      }
      :not(&.gform-label-L-12) .hide-when-not-12 {
          display:block;
      }*/
}
.gform-row {
  line-height: 0;
}
.gform-row > * {
  line-height: normal;
}
.gform-row > label, .gform-row > gform-row__spacer, .gform-row > .gform-row__supplement {
  letter-spacing: 0.01em;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  text-align: right;
  padding: 0.375rem 0 0 0;
}
.size-S.gform-label-S-12 .gform-row > label, .size-S .gform-label-S-12 .gform-row > label, .size-S.gform-label-S-12 .gform-row > gform-row__spacer, .size-S .gform-label-S-12 .gform-row > gform-row__spacer, .size-S.gform-label-S-12 .gform-row > .gform-row__supplement, .size-S .gform-label-S-12 .gform-row > .gform-row__supplement {
  text-align: left;
}
.size-S .gform-label-S-12.gform-row > label {
  text-align: left;
}

.size-M.gform-label-M-12 .gform-row > label, .size-M .gform-label-M-12 .gform-row > label, .size-M.gform-label-M-12 .gform-row > gform-row__spacer, .size-M .gform-label-M-12 .gform-row > gform-row__spacer, .size-M.gform-label-M-12 .gform-row > .gform-row__supplement, .size-M .gform-label-M-12 .gform-row > .gform-row__supplement {
  text-align: left;
}
.size-M .gform-label-M-12.gform-row > label {
  text-align: left;
}

.size-L.gform-label-L-12 .gform-row > label, .size-L .gform-label-L-12 .gform-row > label, .size-L.gform-label-L-12 .gform-row > gform-row__spacer, .size-L .gform-label-L-12 .gform-row > gform-row__spacer, .size-L.gform-label-L-12 .gform-row > .gform-row__supplement, .size-L .gform-label-L-12 .gform-row > .gform-row__supplement {
  text-align: left;
}
.size-L .gform-label-L-12.gform-row > label {
  text-align: left;
}

.gform-row > label:first-of-type:before, .gform-row > gform-row__spacer:first-of-type:before, .gform-row > .gform-row__supplement:first-of-type:before {
  content: " ";
  padding-left: 0.25rem;
}
.gform-row > label:first-of-type:after, .gform-row > gform-row__spacer:first-of-type:after, .gform-row > .gform-row__supplement:first-of-type:after {
  content: " ";
  padding-right: 0.25rem;
}
.gform-row > label:not(:empty):first-of-type:after {
  content: ":";
}
.gform-row > label ~ .gform-row__supplement, .gform-row > .gform-row__spacer ~ .gform-row__supplement {
  text-align: left;
}
.gform-row > label ~ .gform-row__supplement:before, .gform-row > .gform-row__spacer ~ .gform-row__supplement:before {
  content: " ";
  padding-left: 0.5rem;
}
.gform-row > div {
  display: inline-block;
  overflow: visible;
}
.gform-row > div > * {
  letter-spacing: 0.01em;
}
.gform-row .gform-field, .gform-row .gform-text {
  padding-bottom: 0.25rem;
  padding-left: 0.25rem;
}
.gform-row .gform-field.gform-field-close, .gform-row .gform-field-close.gform-text, .gform-row .gform-field.gform-field-tight, .gform-row .gform-field-tight.gform-text {
  padding-left: 0;
}

.gform-row-header {
  margin-bottom: 0.5rem;
}
.gform-row-header > label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid lightgrey;
}
.gform-row-header.gform-row-header2 > label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0D1732;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.gform-row-header.gform-row-header2 > label span {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  position: relative;
  padding: 0 0.25rem;
}
.gform-row-header.gform-row-header2 > label span:before, .gform-row-header.gform-row-header2 > label span:after {
  content: "";
  display: block;
  width: 1000px;
  position: absolute;
  top: 0.73em;
  border-top: 1px solid #0D1732;
}
.gform-row-header.gform-row-header2 > label span:before {
  right: 100%;
}
.gform-row-header.gform-row-header2 > label span:after {
  left: 100%;
}
.gform-row-header.gform-row-header2 > label:not(:empty):first-of-type:after {
  content: "";
}
.gform-row-header.gform-row .gform-text {
  padding-bottom: 0;
  padding-top: 0.75rem;
}
.gform-row-header > label ~ .gform-row__supplement, .gform-row-header > .gform-row__spacer ~ .gform-row__supplement {
  font-size: inherit;
  border-bottom: none;
  vertical-align: bottom;
}

.gform-error-report {
  display: flex;
  padding: 0 0.25rem;
  margin: 0.5rem 0;
}

.gform-error-icon {
  font-size: 1rem;
  width: 1.3em;
  text-align: center;
  flex-shrink: 0;
  margin-right: 0.25rem;
  cursor: default;
}

.ui-tooltip .gform-error-icon {
  font-size: 0.875rem;
  padding: 0 0.5rem 0 0;
}

.hinttext {
  cursor: help;
  line-height: 1rem;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hinttext:after {
  content: " ";
  border-bottom: 1px dotted #222;
  width: 100%;
  position: absolute;
  top: 0.95rem;
  left: 0;
}

.gform-field, .gform-text {
  vertical-align: top;
  display: inline-block;
}

.gform-text {
  padding-top: 0.4rem;
}

.gform-field.gform-text, .gform-text {
  padding-left: 0.5rem;
  padding-right: 0.25rem;
}

.w-h, .size-S .w-S-h, .size-S .gform-section.w-S-h, .size-S.gform-label-S-12 .hide-when-12, .size-S:not(.gform-label-S-12) .hide-when-not-12, .size-M .w-M-h, .size-M .gform-section.w-M-h, .size-M.gform-label-M-12 .hide-when-12, .size-M:not(.gform-label-M-12) .hide-when-not-12, .size-L .w-L-h, .size-L .gform-section.w-L-h, .size-L.gform-label-L-12 .hide-when-12, .size-L:not(.gform-label-L-12) .hide-when-not-12 {
  display: none;
}

.gform-field.gform-text:first-child, .gform-text:first-child {
  padding-left: calc(0.5rem + 1px);
}

.gform-fvm--hidden, .gform-row > .gform-fvm--hidden, .gcontrolbox .gfield-table > .gform-fvm--hidden {
  display: none;
}

.gform.gform-fvm .g-button__icon {
  font-size: 0.8125rem;
}
.gform.gform-fvm .gform-row .gform-field, .gform.gform-fvm .gform-row .gform-text {
  padding-left: 1.75rem;
}
.gform.gform-fvm .gform-row > label:not(:empty):first-of-type:after {
  content: "";
  padding: 0;
}
.gform.gform-fvm .gform-section {
  padding: 0.5rem 1rem;
}
.gform.gform-fvm .gform-row .gfield-mode-generated {
  padding-bottom: 0;
  padding-top: 0.375rem;
  padding-left: calc(2rem + 1px);
  display: inline-block;
}
.gform.gform-fvm .gform-row .gfield-mode-generated ul {
  margin: 0;
  padding-left: 0;
  width: 100%;
}
.gform.gform-fvm .gform-row .gfield-mode-generated li {
  display: inline-block;
  white-space: nowrap;
  padding: 0.125rem;
  padding-left: 0;
  position: relative;
}
.gform.gform-fvm .gform-row .gfield-mode-generated li > div {
  background-color: #E7EAF2;
  border: 1px solid #C6CDE0;
  padding: 0.125rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
.gform.gform-fvm .gform-row .gfield-mode-generated .js-gbtn-caption {
  vertical-align: top;
}
.gform.gform-fvm .gform-row .gfield-mode-generated .button-item {
  position: absolute;
  top: 0;
  right: 0;
  padding: calc(0.25rem + 1px);
  opacity: 0.5;
  font-size: 0.875rem;
}
.gform.gform-fvm .gform-row .gfield-mode-generated .button-item:hover {
  opacity: 1;
  cursor: pointer;
}
.gform.gform-fvm .gcontrolbox .gfield-table > .gfield-mode-generated {
  display: inline-block;
  padding-left: calc(0.25rem + 1px);
}
.gform.gform-fvm .gform-row .gcheck + .gfield-mode-generated label:not(:empty) {
  padding-right: 0.4rem;
}
.gform.gform-fvm .gform-row .gfield.gfield-mode-generated-parent,
.gform.gform-fvm .gform-row .gform-text {
  padding-bottom: 0;
}
.gform.gform-fvm .gform-row ~ label {
  color: #9ca0a6;
}
.gform.gform-fvm .gfield-mode-generated-parent:not(.gselectbox):not(.gfilefield) {
  width: auto;
}
.gform.gform-fvm .gfield-mode-generated-parent.gcontrolbox .gfield-table {
  border: none;
  background-color: unset;
}
.gform.gform-fvm .gfield-mode-generated-parent.gselectbox .gfield-table {
  height: auto;
}
.gform.gform-fvm .gfield-mode-generated-parent .gcontrolbox-buttons {
  padding-top: 0.25rem;
  padding-bottom: 0;
  text-align: left;
}
.gform.gform-fvm .gfield-mode-generated-parent .gcontrolbox-buttons button {
  padding: 0;
  height: auto;
  color: #2650b9;
  background-color: #FFFFFF;
  min-width: 0;
  border: 1px solid #C6CDE0;
  padding: 0.15rem;
}
.gform.gform-fvm .gfield-mode-generated-parent.gcontrolbox :not(.gcontrolbox-vertical) .gcontrolbox-buttons button {
  min-width: 0;
  border: 1px solid #C6CDE0;
  padding: 0.15rem;
}
.gform.gform-fvm .gfield-mode-generated-parent.gcontrolbox .gcontrolbox-vertical .gcontrolbox-buttons:not(:empty) {
  border-left: 0;
  padding-top: 0.5rem;
}
.gform.gform-fvm .gfield-mode-generated-parent.gcontrolbox .gcontrolbox-vertical .gcontrolbox-buttons:not(:empty) button {
  min-width: 0;
  border: 1px solid #C6CDE0;
}
.gform.gform-fvm .gfield-mode-generated-parent .gcontrolbox-states .gcontrolbox-state {
  height: auto;
  padding-bottom: 0;
  padding-top: 0.5rem;
}
.gform.gform-fvm .gfield-mode-generated-parent.gfield-focus .gfield-table {
  box-shadow: none;
}
.gform.gform-fvm .gform-field.gform-text:first-child, .gform.gform-fvm .gform-text:first-child {
  padding-left: calc(2rem + 1px);
}
.gform.gform-fvm .grequired .gfield-mode-generated-parent .gfield-table:before,
.gform.gform-fvm .grequired.gfield-mode-generated-parent .gfield-table:before {
  display: none;
}

.gform--view-mode .gform-row > label, .gform--view-mode .gform-row > .gform-row__spacer, .gform--view-mode .gform-row > .gform-row__supplement {
  padding-top: 0.2rem;
}
.gform--view-mode .gform-row .gform-field, .gform--view-mode .gform-row .gform-text {
  /* padding: 0; */
  padding-top: 0.2rem;
}
.gform--view-mode .gcontrolbox input, .gform--view-mode .gcontrolbox textarea, .gform--view-mode .gselectbox {
  /* padding: 0; */
  min-height: 0;
}
.gform--view-mode .gselectbox {
  padding-left: 0.25rem;
}
.gform--view-mode .gselectbox-item {
  padding: 0;
}
.gform--view-mode .gselectbox-itemc {
  padding-top: 0;
}
.gform--view-mode .gselectbox-vc {
  cursor: default;
  vertical-align: baseline;
}
.gform--view-mode .gnumberbox input {
  text-align: left;
}
.gform--view-mode .gcontrolbox .gfield-table {
  border: none;
  height: auto;
}
.gform--view-mode .gcontrolbox .gfield-table .gcontrolbox-buttons {
  display: none;
}
.gform--view-mode .gcontrolbox.gfield-focus .gfield-table {
  box-shadow: none;
}
.gform--view-mode .gcontrolbox .ui-resizable-s {
  border-bottom: 1px solid #efefef;
  padding-bottom: 0.5rem;
}
.gform--view-mode .ui-state-disabled {
  opacity: 1;
}

.gfield {
  line-height: normal;
}

.gdummyfield {
  min-height: 2rem;
}

.gstaticfield {
  min-height: inherit;
}
.gstaticfield.gfield-verifying .gform-text {
  width: 100%;
  background-color: lightgoldenrodyellow;
  color: transparent;
}
.gstaticfield .gform-text {
  font-weight: bold;
  padding-bottom: 0;
  padding-top: 0.375rem;
}

.gform-row .gform-field.gstaticfield, .gform-row .gstaticfield.gform-text {
  padding: 0;
}

.gcheck label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.gform-row .gcheck {
  margin-top: 0.31rem;
  margin-bottom: 0.31rem;
}
.gcheck input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.gcheck .gcheck-label:not(:empty) {
  margin-left: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gcheck.gfield-warning input + label .gcheck-check {
  border: 1px solid #FFB266;
  box-shadow: 0 0 5px #FFB266;
}
.gcheck.gfield-warning.flash input + label .gcheck-check {
  background-color: 0 0 5px #FFB266;
}
.gcheck.gfield-error input + label .gcheck-check {
  border: 1px solid #C63C3C;
  box-shadow: 0 0 5px #C63C3C;
}
.gcheck.gfield-error.flash input + label .gcheck-check {
  background-color: #C63C3C;
}
.gcheck input:focus + label .gcheck-check {
  box-shadow: 0 0 5px #2650b9;
  border: 1px solid #2650b9;
}
.gcheck input + label .gcheck-check {
  -webkit-appearance: none;
  -webkit-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  outline: none;
  background-color: #FFFFFF;
  border: 1px solid gray;
  padding: 9px;
  display: inline-block;
  position: relative;
}
.gcheck input:checked + label .gcheck-check:after {
  content: "✔";
  font-size: 14px;
  font-style: normal;
  font-family: "Open Sans", "Segoe UI", sans-serif, "Segoe UI Symbol";
  position: absolute;
  top: -1px;
  left: 3px;
  color: #6f6f6f;
}
.gcheck.ui-state-disabled input:checked + label .gcheck-check:after {
  color: #a2a2a2;
}
.gcheck input:indeterminate + label .gcheck-check:after {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 4px;
  background-color: #99a1a7;
  left: 4px;
  font-size: 32px;
}
.gcheck.gcheck-switch .gcheck-label:not(:empty) {
  display: block;
}
.gcheck.gcheck-switch input + label .gcheck-check {
  min-width: 2.5rem;
  height: 1.25rem;
  background-color: #C6CDE0;
  border-radius: 1.25rem;
  transition: all 0.3s;
  padding: 0;
}
.gcheck.gcheck-switch input + label .gcheck-check:after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  top: auto;
  background-color: #FFFFFF;
  left: auto;
  border-radius: 1.125rem;
  transition: all 0.3s;
}
.gcheck.gcheck-switch.ui-state-disabled input + label .gcheck-check:after {
  background-color: #e6e6e6;
}
.gcheck.gcheck-switch input:checked + label .gcheck-check:after {
  transform: translateX(1.25rem);
}
.gcheck.gcheck-switch input:checked + label .gcheck-check {
  background-color: #2650b9;
}
.gcheck.gcheck-switch.ui-state-disabled input:checked + label .gcheck-check {
  background-color: #90a9e8;
}
.gcheck.gcheck-switch.ui-state-disabled input:not(:checked) + label .gcheck-check {
  background-color: #cccccc;
}
.gcheck .gcheck-label {
  display: block;
}

.gradio {
  letter-spacing: -0.31em;
}
.gform-row .gradio {
  padding-top: 0.38rem;
}
.gradio input[type=radio] {
  opacity: 0;
  position: absolute;
}
.gradio label {
  cursor: pointer;
}
.gradio .gradio-label:not(:empty) {
  padding-right: 0.5rem;
}
.gradio.gfield-warning input + label .gradio-radio {
  border: 1px solid #FFB266;
  box-shadow: 0 0 5px #FFB266;
}
.gradio.gfield-warning.flash input + label .gradio-radio {
  background-color: #FFB266;
}
.gradio.gfield-error input + label .gradio-radio {
  border: 1px solid #C63C3C;
  box-shadow: 0 0 5px #C63C3C;
}
.gradio.gfield-error.flash input + label .gradio-radio {
  background-color: #C63C3C;
}
.gradio input:focus + label .gradio-radio {
  box-shadow: 0 0 5px #2650b9;
  border: 1px solid #2650b9;
}
.gradio .gradio-radio {
  -webkit-appearance: none;
  -webkit-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  outline: none;
  background-color: #FFFFFF;
  border: 1px solid gray;
  padding: 9px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  float: left;
  margin: 0 0.25rem 0 0;
}
.gradio input:checked + label .gradio-radio:after {
  content: " ";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  background-color: #6f6f6f;
  left: 4px;
  font-size: 32px;
  font-style: normal;
}
.gradio.ui-state-disabled input:checked + label .gradio-radio:after {
  background-color: #a2a2a2;
}

.gradio-item {
  display: inline-block;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.gradio-item.ui-state-disabled input + label .gradio-radio {
  background-color: #e6e6e6;
}

.gfield-table {
  display: table;
  width: 100%;
  height: 100%;
}

.gcontrolbox {
  /*.gcontrolbox-button:before {
      position: absolute;
      border-left: 1px solid grey;
      opacity: 0.8;
      content: " ";
      height: 100%;
      top: 0;*/
  /* left: 0; */
  /* FONT-VARIANT: JIS04; */
  /* left: 19%; */
  /*min-width: 2.15rem;
  }*/
  /*&.no-border .gcontrolbox-button:before {
      display: none;
  }*/
}
.gcontrolbox.ui-state-disabled {
  pointer-events: auto;
}
.gcontrolbox .gfield-table {
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  outline: none;
  background-color: #FFFFFF;
  border: 1px solid gray;
  padding: 0;
}
.gcontrolbox .gfield-table > div {
  display: table-cell;
  position: relative;
}
.gcontrolbox .tags {
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: flex;
  cursor: default;
  position: absolute;
  bottom: -0.25rem;
  right: 0;
  font-size: 8px;
  line-height: 8px;
  font-weight: 700;
  background-color: #FFFFFF;
}
.gcontrolbox .tags:empty {
  display: none;
}
.gcontrolbox .tag {
  padding: 0 0.125rem;
  outline: none;
}
.gcontrolbox .flag {
  max-width: 0.25rem;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  transition-duration: 1s;
  transition-delay: 0.5s;
}
.gcontrolbox .flag::before {
  content: attr(data-flag) " ";
  padding: 0.25rem;
  display: inline-block;
}
.gcontrolbox .flag:hover {
  max-width: 7rem;
}
.form-show-flags .gcontrolbox .flag {
  max-width: unset;
}
.gcontrolbox.no-border .gfield-table {
  border-color: transparent;
}
.gcontrolbox.transparent .gfield-table {
  background-color: transparent;
}
.gcontrolbox.gfield-focus .gfield-table {
  box-shadow: 0 0 5px #2650b9;
}
.gcontrolbox.gfield-warning .gfield-table {
  border-color: #FFB266;
  box-shadow: 0 0 5px 1px #FFB266;
}
.gcontrolbox.gfield-warning.flash .gfield-table {
  background-color: #FFB266;
}
.gcontrolbox.gfield-error .gfield-table {
  border-color: #C63C3C;
  box-shadow: 0 0 5px 1px #C63C3C;
}
.gcontrolbox.gfield-error.flash .gfield-table {
  background-color: #C63C3C;
}
.gcontrolbox.gfield-verifying .gfield-table {
  background-color: lightgoldenrodyellow;
}
.gcontrolbox.gfield-focus .gfield-table {
  border-color: #2650b9;
}
.gcontrolbox.gform-field-tight .gfield-table {
  border-right: none;
}
.gcontrolbox input, .gcontrolbox .gcontrolbox-state, .gcontrolbox .gcontrolbox-button {
  background-color: transparent;
  height: auto;
  margin: 0;
}
.gcontrolbox input, .gcontrolbox textarea {
  min-height: 1.75rem;
  border: none;
  outline: none;
  padding: 0 0.25rem;
  width: 100%;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}
.gcontrolbox .text-area {
  padding: 0.125rem 0;
}
.gcontrolbox textarea {
  display: block;
  overflow: auto;
  resize: none;
  background-color: transparent;
}
.gcontrolbox .textarea-user-height {
  height: calc(100% - 1px);
}
.gcontrolbox .ui-resizable-s {
  bottom: 0;
  height: 7px;
}
.gcontrolbox .gcontrolbox-states, .gcontrolbox .gcontrolbox-buttons, .gcontrolbox .gcontrolbox-factors {
  height: 100%;
  vertical-align: top;
  text-align: center;
  line-height: 0.01;
  color: #0D1732;
}
.gcontrolbox .gfield-table:not(.gcontrolbox-vertical) > div.gcontrolbox-states, .gcontrolbox .gfield-table:not(.gcontrolbox-vertical) > div.gcontrolbox-buttons, .gcontrolbox .gfield-table:not(.gcontrolbox-vertical) > div.gcontrolbox-factors {
  white-space: nowrap;
  vertical-align: top;
}
.gcontrolbox .gcontrolbox-factors {
  background-color: #E7EAF2;
}
.gcontrolbox .gcontrolbox-factors:hover {
  background-color: #C6CDE0;
}
.gcontrolbox.ui-state-disable .gcontrolbox-factors:hover {
  background-color: #E7EAF2;
}
.gcontrolbox .gcontrolbox-state {
  cursor: default;
  display: inline-flex;
  align-content: center;
  padding: 0.375rem 0.25rem;
}
.gcontrolbox .gcontrolbox-state.g-inactive-prefabState {
  color: grey;
}
.gcontrolbox .gcontrolbox-states.right .gcontrolbox-state:first-child {
  padding-left: 0;
  padding-right: 0.375rem;
}
.gcontrolbox .gcontrolbox-states.left .gcontrolbox-state:last-child {
  padding-right: 0;
}
.gcontrolbox .gcontrolbox-button {
  border-left: 1px solid grey;
  opacity: 0.8;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.gcontrolbox.no-border .gcontrolbox-button {
  border-left: none;
}
.gcontrolbox .gcontrolbox-button, .gcontrolbox .gcontrolbox-state {
  height: 1.75rem;
  line-height: 1rem;
  white-space: nowrap;
}
.gcontrolbox .gcontrolbox-factor {
  border-left: none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.gcontrolbox.no-border .gcontrolbox-button, .gcontrolbox.no-border .gcontrolbox-state {
  padding: 0 0.2rem;
  height: calc(1.5rem - 2px);
  line-height: 1;
}
.gcontrolbox.ui-state-disabled .gcontrolbox-vertical .gcontrolbox-buttons:not(:empty) {
  border-left: 1px solid rgba(128, 128, 128, 0.5);
}
.gcontrolbox .gcontrolbox-vertical .gcontrolbox-buttons:not(:empty) {
  border-left: 1px solid rgba(128, 128, 128, 0.8);
}
.gcontrolbox .gcontrolbox-vertical .gcontrolbox-buttons:not(:empty) .gcontrolbox-button {
  border-left: none;
  min-width: calc(2.15rem - 1px);
}
.gcontrolbox.no-border .gcontrolbox-vertical .gcontrolbox-buttons:not(:empty) {
  border-left: none;
}
.gcontrolbox .gcontrolbox-button {
  min-width: 2.15rem;
}
.gcontrolbox .gcontrolbox-factor, .gcontrolbox.no-border .gcontrolbox-button {
  min-width: 0;
}
.gcontrolbox .gcontrolbox-state .g-static__icon {
  margin: 0;
}
.gcontrolbox .gcontrolbox-button:not(.g-button--disabled):hover, .gcontrolbox .gcontrolbox-button:not(.g-button--disabled):focus {
  opacity: 1;
}
.gcontrolbox .gcontrolbox-button.g-button--disabled {
  opacity: 0.5;
}
.gcontrolbox button {
  color: inherit;
}

.gnumberbox input {
  text-align: right;
}
.gnumberbox.negative input {
  color: red;
}

.gselectbox .gfield-input {
  vertical-align: top;
}
.gselectbox .gfield-table {
  height: 1.75rem;
}

.gselectbox-vc {
  cursor: pointer;
  vertical-align: middle;
  max-width: 0;
}

.gselectbox-itemc {
  min-height: 1rem;
  display: inline-block;
  vertical-align: top;
  padding: 0.125rem;
  position: relative;
  max-width: 100%;
}
.gselectbox-itemc ~ input {
  min-height: 1.5rem;
}
.gselectbox-itemc .button-item {
  position: absolute;
  display: flex;
  align-items: center;
  max-height: 1.5rem;
  height: calc(100% - 2px);
  top: 0.125rem;
  right: 0.125rem;
  padding: 0.25rem;
  margin: 0;
  opacity: 0.8;
}
.gselectbox-itemc .button-item:hover {
  opacity: 1;
}
.gselectbox-itemc.ui-state-active {
  background-color: transparent;
  border: none;
}

.gselectbox-item {
  padding: 0.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid transparent;
}
.gselectbox-multi .gselectbox-item, .ui-selecting:not(.ui-state-active) > .gselectbox-item, .gselectbox-list:not(.ui-state-active):not(.ui-selecting):not(.ui-state-disabled):hover .gselectbox-item {
  background-color: #E7EAF2;
  border: 1px solid #C6CDE0;
  padding: 0.125rem 0.25rem;
}
.gselectbox-list .gselectbox-item {
  background-color: transparent;
  border: 1px solid transparent;
}
.ui-state-selected > .gselectbox-item {
  border: 1px solid #6699FF;
}
.ui-state-active > .gselectbox-item {
  background-color: #2650b9;
  color: #FAFAFA;
}

.gfield-input.invisible {
  min-height: 0 !important;
  height: 0 !important;
  float: left;
}

.suggestion-list {
  display: inline-block;
  background-color: #FAFAFA;
  border: 1px solid #C6CDE0;
  outline: none;
  position: absolute;
  overflow: auto;
  max-height: 16rem;
}

.suggestion-placeholder {
  border: 1px solid transparent;
  padding: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-item {
  border: 1px solid transparent;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
}
.suggestion-item > .statusbar {
  color: #C6CDE0;
}
.suggestion-item > span {
  padding: 0.25rem;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggestion-item.ui-state-disabled {
  background-color: rgba(198, 205, 224, 0.5);
}
.suggestion-item.ui-state-selected {
  background-color: #E7EAF2;
}
.suggestion-item:not(.ui-state-selected) .invisible {
  display: none;
}
.suggestion-item.ui-state-active {
  background-color: #C6CDE0;
  /*border: 1px solid gray;*/
}
.suggestion-item:not(.ui-state-disabled) {
  cursor: pointer;
}

.minifoto {
  float: left;
  padding: 0.1rem 0.25rem 0;
  margin-right: 0.25rem;
  font-size: 2rem;
  color: gray;
}
.minifoto.filefield-error {
  color: #C63C3C;
}
.minifoto.minifoto-error {
  color: #C63C3C;
  font-weight: 700;
}

.star {
  color: goldenrod;
  text-indent: 0.5rem;
  font-size: 1.1em;
}

.microfoto {
  float: left;
  padding: 0.05rem 0.125rem 0 0;
  margin-right: 0.125rem;
  font-size: 1rem;
  color: gray;
}

.gfilefield .gfield-table {
  min-height: 30px;
  height: 1.625rem;
}

.filefield-error {
  color: #C63C3C;
}

.gfilefield-progline {
  height: 0.15rem;
  background-color: #27B779;
}

.gfilefield-vc {
  cursor: pointer;
  vertical-align: middle;
  max-width: 0;
}

.gfilefield-itemc, .gfilefield .gfield-mode-generated {
  min-height: 1rem;
  display: inline-block;
  vertical-align: top;
  padding: 0.1rem;
  position: relative;
  max-width: 100%;
}
.gfilefield-itemc ~ input, .gfilefield .gfield-mode-generated ~ input {
  min-height: 1.5rem;
}
.gfilefield-itemc .button-item, .gfilefield .gfield-mode-generated .button-item {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem;
  opacity: 0.5;
  font-size: 0.875rem;
}
.gfilefield-itemc .button-item:hover, .gfilefield .gfield-mode-generated .button-item:hover {
  opacity: 1;
}
.gfilefield-itemc.ui-state-active, .gfilefield .gfield-mode-generated.ui-state-active {
  background-color: transparent;
  border: none;
}

.gfilefield .gfield-mode-generated {
  width: 100%;
}

.gfilefield-placeholder {
  opacity: 0.5;
  padding-left: 0.5rem;
}

.gfilefield-item {
  padding: 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid transparent;
}
.gselectbox-multi .gfilefield-item, .gfilefield-multi .gfilefield-item, .ui-selecting:not(.ui-state-active) > .gfilefield-item, .gselectbox-list:not(.ui-state-active):not(.ui-selecting):not(.ui-state-disabled):hover .gfilefield-item {
  background-color: #E7EAF2;
  border: 1px solid #C6CDE0;
}
.gfilefield-item .js-cancel-fileaction .js-field-content:hover {
  opacity: 0.2;
}
.gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover {
  display: block;
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 0%;
  transform: translate(-50%);
  padding: 1%;
  font-size: 2rem;
}
.gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.w-h, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-S .js-file-hover.w-S-h, .size-S .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.w-S-h, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-S.gform-label-S-12 .js-file-hover.hide-when-12, .size-S.gform-label-S-12 .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.hide-when-12, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-S:not(.gform-label-S-12) .js-file-hover.hide-when-not-12, .size-S:not(.gform-label-S-12) .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.hide-when-not-12, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-M .js-file-hover.w-M-h, .size-M .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.w-M-h, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-M.gform-label-M-12 .js-file-hover.hide-when-12, .size-M.gform-label-M-12 .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.hide-when-12, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-M:not(.gform-label-M-12) .js-file-hover.hide-when-not-12, .size-M:not(.gform-label-M-12) .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.hide-when-not-12, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-L .js-file-hover.w-L-h, .size-L .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.w-L-h, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-L.gform-label-L-12 .js-file-hover.hide-when-12, .size-L.gform-label-L-12 .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.hide-when-12, .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .size-L:not(.gform-label-L-12) .js-file-hover.hide-when-not-12, .size-L:not(.gform-label-L-12) .gfilefield-item .js-cancel-fileaction .js-cancel-filefield .js-file-hover.hide-when-not-12 {
  display: none;
}
.gselectbox-list .gfilefield-item, .gfilefield-list .gfilefield-item {
  background-color: transparent;
  border: 1px solid transparent;
}
.ui-state-selected > .gfilefield-item {
  border: 1px solid #6699FF;
}
.ui-state-active > .gfilefield-item {
  background-color: #2650b9;
  color: #fff;
}

.gdropzone[contenteditable] {
  caret-color: transparent;
}

.gmdfield-menu {
  background-color: #E7EAF2;
  position: relative;
}

.ui-state-disabled .gfield-table,
.ui-state-disabled.gradio .gradio-radio,
.ui-state-disabled.gcheck input + label .gcheck-check {
  background-color: #e6e6e6;
}

.leftRightInfo {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: baseline;
}
.leftRightInfo .mini {
  font-size: 0.625rem;
}
.leftRightInfo span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.leftRightInfo span:last-child {
  font-style: italic;
}

.doubleLineInfo {
  white-space: nowrap;
  padding: 0.25rem;
  position: relative;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.doubleLineInfo .mainInfo, .doubleLineInfo .iconInfo {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
}
.doubleLineInfo .mainInfo {
  text-overflow: ellipsis;
  overflow: hidden;
}
.doubleLineInfo .iconInfo > i {
  margin-right: 0.25rem;
  font-size: 2rem;
}
.doubleLineInfo .iconInfo {
  max-width: 2.5rem;
}
.doubleLineInfo .iconInfo:not(:empty) + .mainInfo {
  max-width: calc(100% - 2.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.gfieldassist--favorite + :not(.gfieldassist--favorite) {
  border-top: 1px solid #C6CDE0;
}
.gfieldassist__loader {
  font-size: 2rem;
  position: absolute;
  text-shadow: rgba(255, 255, 255, 0.145) 3px 0px 0px, rgba(255, 255, 255, 0.145) 2.83487px 0.981584px 0px, rgba(255, 255, 255, 0.145) 2.35766px 1.85511px 0px, rgba(255, 255, 255, 0.145) 1.62091px 2.52441px 0px, rgba(255, 255, 255, 0.145) 0.705713px 2.91581px 0px, rgba(255, 255, 255, 0.145) -0.287171px 2.98622px 0px, rgba(255, 255, 255, 0.145) -1.24844px 2.72789px 0px, rgba(255, 255, 255, 0.145) -2.07227px 2.16926px 0px, rgba(255, 255, 255, 0.145) -2.66798px 1.37182px 0px, rgba(255, 255, 255, 0.145) -2.96998px 0.42336px 0px, rgba(255, 255, 255, 0.145) -2.94502px -0.571704px 0px, rgba(255, 255, 255, 0.145) -2.59586px -1.50383px 0px, rgba(255, 255, 255, 0.145) -1.96093px -2.27041px 0px, rgba(255, 255, 255, 0.145) -1.11013px -2.78704px 0px, rgba(255, 255, 255, 0.145) -0.137119px -2.99686px 0px, rgba(255, 255, 255, 0.145) 0.850987px -2.87677px 0px, rgba(255, 255, 255, 0.145) 1.74541px -2.43999px 0px, rgba(255, 255, 255, 0.145) 2.44769px -1.73459px 0px, rgba(255, 255, 255, 0.145) 2.88051px -0.838247px 0px;
}
.gfieldassist__dialog .gactionmenu__item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: initial;
  position: relative;
  white-space: normal;
}
.gfieldassist__dialog .gactionmenu__item li {
  display: inline-block;
}
.gfieldassist__dialog .gactionmenu__item li > div {
  /* display: inline-block; */
  background-color: #E7EAF2;
  border: 1px solid #C6CDE0;
  margin: 2px;
  padding: 0.125rem 0.125rem;
}
.gfieldassist__dialog .item__caption {
  line-height: initial;
  padding: 0.25rem;
}
.gfieldassist__dialog .item__caption .gi {
  line-height: inherit;
}
.gfieldassist__dialog .gactionmenu__item.activable.active .pin-wrp, .gfieldassist__dialog .gactionmenu__item.activable:hover .pin-wrp {
  display: block;
  visibility: visible;
}
.gfieldassist__dialog .gactionmenu__item .pin-wrp:not(.pin-wrp--pinned) {
  visibility: hidden;
  display: block;
}
.gfieldassist__item--no-suggestion {
  font-style: italic;
}

.editor-panel {
  position: relative;
  float: left;
  display: block;
  width: 15rem;
  height: 100%;
  overflow: auto;
  border-right: solid 2px black;
}

.editor-connection-div {
  overflow: hidden;
}

.editor-form {
  position: relative;
  height: 100%;
  overflow: auto;
}
.editor-form .gform {
  margin: 3px 3px 3px 3px;
  padding: 1em 2px 1em 2px;
}
.editor-form .gform.editor--active {
  border-radius: 4px;
  background-color: #ffe4c4;
}
.editor-form .gform.editor--hover {
  border-radius: 4px;
  box-shadow: inset 0px 0px 4px 1px #ff9e2b;
}
.editor-form .gform-section.editor--active {
  border-radius: 4px;
  background-color: #90ee90;
}
.editor-form .gform-section.editor--hover {
  border-radius: 4px;
  box-shadow: inset 0px 0px 4px 1px #1ec71e;
}
.editor-form .gform-row.editor--active {
  border-radius: 4px;
  background-color: #87ceeb;
}
.editor-form .gform-row.editor--hover {
  border-radius: 4px;
  box-shadow: inset 0px 0px 4px 1px #1f8dba;
}
.editor-form .gform-field.editor--active, .editor-form .editor--active.gform-text {
  border-radius: 4px;
  background-color: #dda0dd;
}
.editor-form .gform-field.editor--hover, .editor-form .editor--hover.gform-text {
  border-radius: 4px;
  box-shadow: inset 0px 0px 4px 1px #a83ca8;
}

.g-login__body {
  background-color: #00376E;
  background-image: url("../gz.ashx/logo/login.jpg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100%;
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-login__body {
    display: inherit;
    -webkit-justify-content: unset;
    -moz-justify-content: unset;
    justify-content: unset;
    flex-direction: unset;
  }
}

.g-login__header {
  align-self: stretch;
  /* Dokud je hlavička prázdná, tak nemá cenu ji dávat padding - na malém rozlišení dělal mezeru nad obsahem, kterou nechceme. */
  /*padding: 0.5rem;*/
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-login__header {
    padding: 0.01rem;
  }
}

.g-login__content {
  width: 100%;
}
@media (min-width: 576px) {
  .g-login__content {
    min-width: 550px;
    max-width: 600px;
    width: 33%;
  }
  .g-login__content.g-login__is-parameter-selection-after-login {
    width: 100%;
    max-width: unset;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-login__content {
    margin: auto;
  }
}

.g-login__footer {
  align-self: stretch;
  text-align: right;
  padding: 0.5rem;
  color: #FFFFFF;
  opacity: 0.8;
}
.g-login__content-header {
  background-color: #FFFFFF;
  padding: 1rem;
}
@media (min-width: 768px) {
  .g-login__content-header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .g-login__content-header {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
  }
}
@media (min-width: 1200px) {
  .g-login__content-header {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 3rem;
  }
}

.g-login__content-main {
  background-color: #FFFFFF;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
.g-login__content-main.g-login__is-parameter-selection-after-login {
  padding: 1rem;
}
.g-login__content-main .gform-section {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .g-login__content-main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .g-login__content-main.g-login__is-parameter-selection-after-login {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .g-login__content-main {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }
  .g-login__content-main.g-login__is-parameter-selection-after-login {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .g-login__content-main {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
  }
  .g-login__content-main.g-login__is-parameter-selection-after-login {
    padding: 1rem;
  }
}

.g-login__content-footer {
  background-color: rgba(29, 62, 143, 0.75);
  display: flex;
  display: -webkit-flex; /* Safari */
  -webkit-justify-content: space-between; /* Chrome, Safari */
  -moz-justify-content: space-between; /* Mozilla Firefox */
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  padding: 1rem;
}
@media (min-width: 768px) {
  .g-login__content-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 992px) {
  .g-login__content-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .g-login__content-footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.g-login__content-footer-links {
  display: flex;
  display: -webkit-flex; /* Safari */
  -webkit-justify-content: flex-start; /* Chrome, Safari */
  -moz-justify-content: flex-start; /* Mozilla Firefox */
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .g-login__content-footer-links {
    -webkit-justify-content: flex-end; /* Chrome, Safari */
    -moz-justify-content: flex-end; /* Mozilla Firefox */
    justify-content: flex-end;
  }
}

.g-login__content-footer-links > .g-login__content-footer-link {
  text-decoration: none;
  color: #FFFFFF;
  align-content: space-around;
  opacity: 0.8;
  margin-right: 1rem;
}
.g-login__content-footer-links > .g-login__content-footer-link:hover {
  opacity: 1;
}
@media (min-width: 576px) {
  .g-login__content-footer-links > .g-login__content-footer-link {
    margin-right: 0;
    margin-left: 1rem;
  }
}

.g-login__content-footer > .g-login__content-footer-languages {
  align-self: flex-start;
  color: #FFFFFF;
}

.g-login__content-footer-language-flag {
  height: 12px;
  width: 17px;
  border: 1px solid black;
}

.g-login__content-footer-language-text {
  margin-left: 0.25rem;
}

.g-login__application-logo {
  height: 40px;
  object-fit: contain;
}

.g-login__application-name {
  color: #1D3E8F;
  margin-top: 1rem;
  margin-bottom: 0;
}

.g-login__login-step-title {
  color: #1D3E8F;
  margin-top: 0;
  margin-bottom: 0rem;
  font-size: 1.125rem;
  line-height: 2rem;
  font-weight: 400;
}

.g-login__login-step-subtitle {
  font-weight: 800;
  margin: 0;
  line-height: 1rem;
}

.g-login__control-buttons {
  display: flex;
  display: -webkit-flex; /* Safari */
  -webkit-justify-content: space-between; /* Chrome, Safari */
  -moz-justify-content: space-between; /* Mozilla Firefox */
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: baseline;
}

.g-login__login-additional-information {
  background-color: #F7F7F7;
  border: solid 1px #DADADA;
  padding: 0.5rem;
  margin-top: 1rem;
}
.g-login__login-additional-information.g-login__login-additional-information-important {
  border-color: #ED1E79;
  border-width: 2px;
  background-color: #FCDDEB;
}
.g-login__login-additional-information.g-login__login-additional-information-error {
  border-color: #C63C3C;
  border-width: 2px;
  background-color: #F7E2E2;
}
.g-login__login-additional-information.g-login__login-additional-information-warning {
  border-color: #FFB266;
  border-width: 2px;
  background-color: #FFF4E8;
}
.g-login__login-additional-information-header {
  margin: 0;
}

.g-login__login-additional-information-header-icon {
  margin-right: 0.35rem;
  margin-bottom: 0.15rem;
  font-weight: inherit;
}
.g-login__login-additional-information-header-icon.g-login__login-additional-information-important {
  color: #ED1E79;
}
.g-login__login-additional-information-header-icon.g-login__login-additional-information-error {
  color: #C63C3C;
}
.g-login__login-additional-information-header-icon.g-login__login-additional-information-warning {
  color: #FFB266;
}
.g-login__login-additional-information-header-icon.g-login__login-additional-information-info {
  color: #6699FF;
}

.g-login__login-additional-information-text {
  margin: 0;
}

.g-login__external-systems {
  display: flex;
  display: -webkit-flex; /* Safari */
  -webkit-justify-content: flex-start; /* Chrome, Safari */
  -moz-justify-content: flex-start; /* Mozilla Firefox */
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

a.g-login__btn-external-system {
  margin: 0.2rem;
  border-width: thin;
  border-color: #C6CDE0;
  border-style: solid;
  padding: 0;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 4rem;
  width: calc(100% - 0.4rem);
}
a.g-login__btn-external-system:hover, a.g-login__btn-external-system:active, a.g-login__btn-external-system:focus {
  background-color: #FFFFFF;
  border-color: #2650b9;
}
@media (min-width: 576px) {
  a.g-login__btn-external-system {
    width: calc(50% - 0.4rem);
  }
}
@media (min-width: 1200px) {
  a.g-login__btn-external-system {
    width: calc(33% - 0.4rem);
  }
}

.g-login__btn-external-system.g-login__btn--mojeid {
  background-image: url("../../gin/img/moje_id.jpg");
}
.g-login__btn-external-system.g-login__btn--mojeid:focus {
  background-image: url("../../gin/img/moje_id.jpg");
}

.g-login__btn-external-system.g-login__btn--datsch {
  background-image: url("../../gin/img/datove_schranky.jpg");
}
.g-login__btn-external-system.g-login__btn--datsch:focus {
  background-image: url("../../gin/img/datove_schranky.jpg");
}

.g-login__btn-external-system.g-login__btn--identita-obcana {
  background-image: url("../../gin/img/identita_obcana.png");
}
.g-login__btn-external-system.g-login__btn--identita-obcana:focus {
  background-image: url("../../gin/img/identita_obcana.png");
}

.g-login__btn-external-system.g-login__btn--vysocinaid {
  background-image: url("../../gin/img/VysocinaID.jpg");
  background-color: #02458D;
}
.g-login__btn-external-system.g-login__btn--vysocinaid:focus {
  background-image: url("../../gin/img/VysocinaID.jpg");
}
.g-login__btn-external-system.g-login__btn--vysocinaid:hover, .g-login__btn-external-system.g-login__btn--vysocinaid:active, .g-login__btn-external-system.g-login__btn--vysocinaid:focus {
  background-color: #02458D;
}

.g-login__btn {
  min-width: 6rem;
}

.g-login__btn--next {
  font-size: 0.9rem;
  font-weight: 800;
  margin-left: 1rem;
}

.g-login__section-separator {
  color: #0D1732;
  overflow: hidden;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-weight: normal;
}
.g-login__section-separator:before, .g-login__section-separator:after {
  background-color: #C6CDE0;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.g-login__section-separator:before {
  right: 0.5em;
  margin-left: -50%;
}
.g-login__section-separator:after {
  left: 0.5em;
  margin-right: -50%;
}

.g-login__content-main .gflashpanel {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.g-login__content-footer-languages .gform-section {
  padding: 0;
  border: none;
  background-color: transparent;
}
.g-login__content-footer-languages .g-login__content-footer-languages-field.gfield {
  width: 40px;
  padding: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-login__content-footer-languages .g-login__content-footer-languages-field.gfield {
    width: 50px;
  }
}
.g-login__content-footer-languages .g-login__content-footer-languages-field .gfield-table {
  height: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}
.g-login__content-footer-languages .g-login__content-footer-languages-field .g-button__icon {
  font-size: 0.5rem;
  color: #FFFFFF;
}
.g-login__content-footer-languages .g-login__content-footer-languages-field .gcontrolbox-buttons {
  text-align: left;
  padding: 0;
  border: none;
  background-color: transparent;
}
.g-login__content-footer-languages .g-login__content-footer-languages-field .gselectbox-item {
  margin-top: 3px;
  padding: 0;
  border: none;
  background-color: transparent;
}
.g-login__content-footer-languages .g-login__content-footer-languages-field .gcontrolbox-button {
  text-align: left;
  border: none;
  min-width: unset;
}
.g-login__content-footer-languages .g-login__content-footer-languages-field .gselectbox-itemc {
  padding: 0;
  border: none;
  background-color: transparent;
}

.g-login__login-image {
  text-align: center;
  padding: 2rem 0;
}

.g-login__login-image > img {
  height: auto;
  width: auto;
  max-width: 100%;
}

div.g-login__login-article-in-modal-window.garticle {
  padding: 0;
}
div.g-login__login-article-in-modal-window.garticle .g-article-toolbar {
  height: 0;
  margin: 0;
  padding: 0;
  display: none;
}
div.g-login__login-article-in-modal-window.garticle .g-article-item-footer {
  height: 0;
  margin: 0;
  padding: 0;
  display: none;
}

.g-login__login-breadcrumb .g-link {
  cursor: default;
}

.main-breadcrumbs-list > li.g-login__login-breadcrumb:first-child {
  padding-left: 0px;
}
.main-breadcrumbs-list > li.g-login__login-breadcrumb:first-child .g-link {
  margin-left: 0px;
}

.main-breadcrumbs-list > li.g-login__login-breadcrumb:last-child .g-link {
  margin-right: 0px;
}

.g-kpi-multirow {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  /*padding: 0.25rem;*/
  border-bottom: 1px solid lightgray;
  /*justify-content: space-between;*/
}
.g-kpi-multirow .g-kpi-multirow-header {
  font-size: 0.8125rem;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}
.g-kpi-multirow .g-kpi-multirow-header-right {
  /*justify-content: space-between;*/
  /*width: 50%;*/
  justify-content: flex-end;
  flex-direction: row;
  display: flex;
}
.g-kpi-multirow .g-kpi-multirow-header-date {
  opacity: 0.5;
  /*width: 50%;*/
}
.g-kpi-multirow .g-kpi-multirow-header-settings {
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  display: flex;
  color: gray;
  /*height: 100%;*/
  margin-left: 0.5rem;
  z-index: 2;
  position: absolute;
  right: 0.1rem;
  top: 0.1rem;
}
.g-kpi-multirow .g-kpi-multirow-header-settings-icon {
  margin-left: 0.25rem;
  opacity: 0.5;
}
.g-kpi-multirow .g-kpi-multirow-header-settings-icon:hover {
  opacity: unset;
}
.g-kpi-multirow .g-kpi-multirow-header-settings-icon__need-refresh {
  color: #ED1E79;
}
.g-kpi-multirow .g-kpi-multirow-header-settings-icon__need-refresh:hover {
  color: gray;
}
.g-kpi-multirow .g-kpi-multirow-header-left .g-kpi-multirow-header-title {
  margin-bottom: 0.15rem;
  font-weight: bold;
  /*text-transform: uppercase;*/
}
.g-kpi-multirow .g-kpi-multirow-body-primaryText .glink .g-link, .g-kpi-multirow .g-kpi-multirow-body-secondaryText .glink .g-link {
  margin: 0;
}
.g-kpi-multirow .g-kpi-multirow-body-primaryText .glink :hover > *, .g-kpi-multirow .g-kpi-multirow-body-secondaryText .glink :hover > * {
  text-decoration: underline;
}
.g-kpi-multirow .g-kpi-multirow-body-primaryText .glink .g-link__text:hover, .g-kpi-multirow .g-kpi-multirow-body-secondaryText .glink .g-link__text:hover {
  border-bottom: 0.0625rem solid transparent;
}

.positive-value {
  color: #27b779;
  fill: #27b779;
  font-weight: bold;
}

.negative-value {
  color: #ea2f4e;
  fill: #ea2f4e;
  font-weight: bold;
}

.neutral-value {
  color: #6699FF;
  fill: #6699FF;
  font-weight: bold;
}

.important-value {
  color: #ED1E79;
  font-weight: bold;
}

.warning-value {
  color: #FFB266;
  font-weight: bold;
}

.purple-value {
  color: #aa00be;
  font-weight: bold;
}

.yellow-value {
  color: #ffeb19;
  font-weight: bold;
}

.g-kpi-simple .g-kpi-simple-main {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  display: flex;
  flex-direction: row;
}
.g-kpi-simple .g-kpi-simple-header-text {
  font-size: 1rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  font-weight: bold;
}
.g-kpi-simple .g-kpi-simple-main-text {
  /*align-items: center;*/
  display: flex;
  width: 100%;
  flex-direction: column;
}
.g-kpi-simple .g-kpi-simple-main-value {
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: bold;
}
.g-kpi-simple .g-kpi-simple-value {
  padding-right: 0.1rem;
}
.g-kpi-simple .g-kpi-simple-unit {
  padding-right: 0.25rem;
}
.g-kpi-multirow-body {
  display: flex;
  /*flex-flow: row wrap;*/
  align-items: center;
  /*justify-content: flex-end;*/ /*space-between;*/
  width: 100%;
  height: 100%;
  /*padding-top: 0.25rem;
  padding-bottom: 0.25rem;*/
  /*line-height: 1.5rem;*/
}
.g-kpi-multirow-body .g-kpi-multirow-body-value {
  /*font-size: 1.15rem;*/
  font-weight: normal;
}
.g-kpi-multirow-body .g-kpi-multirow-body-unit {
  font-size: 1.25rem;
  /*font-weight: bold;*/
  /*padding-left: 0.25rem;*/
  font-weight: normal;
}
.g-kpi-multirow-body .g-kpi-multirow-body-text {
  font-size: 1.15rem;
  /*font-weight: bold;*/
  /*margin-left: 0.5rem;
  margin-right: 0.5rem;*/
  font-weight: bold;
  width: 100%;
}
.g-kpi-multirow-body .g-kpi-multirow-body-textWrapper {
  /*margin-left: 0.5rem;*/
  /*font-size: 1.15rem;*/
  width: 100%;
}
.g-kpi-multirow-body .g-kpi-multirow-body-primaryText {
  /*font-size: 1.15rem;*/
  /*font-weight: bold;*/
  /*margin-left: 0.5rem;*/
  font-weight: bold;
  width: 100%;
}
.g-kpi-multirow-body .g-kpi-multirow-body-secondaryText {
  width: 100%;
}
.g-kpi-multirow-body .g-kpi-multirow-body-icon {
  font-weight: normal;
  font-size: 1.75rem;
  text-align: center;
}
.g-kpi-multirow-body .g-kpi-multirow-body-icon .fa-stack {
  font-size: 0.5em;
}
.g-kpi-multirow-body .g-kpi-multirow-body-icon .fa-stack .gi-stack-fw {
  font-size: 1.5em;
}
.g-kpi-multirow-body .g-kpi-multirow-body-icon .gi-stack,
.g-kpi-multirow-body .g-kpi-multirow-body-icon .fa-stack {
  top: -0.125em;
}
.g-kpi-multirow-body .g-kpi-multirow-body-icon > *:not(.gi-stack):not(.fa-stack) {
  /*padding-right: 0.5rem;*/
}
.g-kpi-multirow-body .g-kpi-multirow-body-description {
  font-size: 0.75rem;
}
.g-kpi-multirow-body .g-kpi-multirow-body-description-row {
  display: flex;
  font-size: 0.8125rem;
  white-space: nowrap;
  width: 100%;
  padding-top: 0.15rem;
}
.g-kpi-multirow-body .g-kpi-multirow-body-description-row__vertical_mode {
  padding: 0.15rem;
}
.g-kpi-multirow-body .g-kpi-multirow-body-description-row--value-first {
  padding-left: 1rem;
  width: 70%;
  /*flex-grow: 2;*/
}
.g-kpi-multirow-body .g-kpi-multirow-body-value-row--value-first {
  /*flex-grow: 1;*/
  width: 30%;
  text-align: right;
  font-weight: bold;
}

.g-kpi-multirow-footer {
  /*display: flex;*/
  flex-flow: row wrap;
}
.g-kpi-multirow-footer .g-kpi-multirow-footer-left {
  /*width: 50%;*/
  display: flex;
  justify-content: flex-start;
}
.g-kpi-multirow-footer .g-kpi-multirow-footer-right {
  /*width: 50%;*/
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.main-chart {
  /*display: inline-block;
  vertical-align: top;*/
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}

.g-kpi {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  /*cursor: pointer;*/
}
.g-kpi .description {
  /*padding: 5px;*/
}
.g-kpi .description .small {
  font-size: 1em;
}
.g-kpi .description .normal {
  font-size: 1.5em;
}
.g-kpi .description .big {
  font-size: 2em;
}
.g-kpi .description .xl {
  font-size: 2.5em;
}
.g-kpi .main-text {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 5px;
  /*padding-top: 3px;*/
}
.g-kpi .bar {
  fill: #C6CDE0;
}
.g-kpi .bar:hover {
  fill: #c63c3c;
}
.g-kpi .bar--negative {
  fill: #ea2f4e;
}
.g-kpi .bar--positive {
  fill: #27b779;
}
.g-kpi .selected {
  fill: #ea2f4e;
}
.g-kpi .axis--x path {
  /*display: none;*/
}
.g-kpi .line {
  fill: none;
  stroke: #C6CDE0;
  stroke-width: 1.5px;
}
.g-kpi .area {
  stroke: #C6CDE0;
  fill: #C6CDE0;
}
.g-kpi .arc text {
  font: 10px sans-serif;
  text-anchor: middle;
}
.g-kpi .arc path {
  stroke: #fff;
}
.g-kpi .neutral-value-black {
  color: #000000;
  fill: #000000;
  font-weight: bold;
}
.g-kpi .polyline {
  opacity: 0.3;
  stroke: black;
  stroke-width: 2px;
  fill: none;
}
.g-kpi .title {
  font-weight: bold;
}
.g-kpi .g-link {
  font-weight: bold;
  margin: 0px;
}
.g-kpi .g-link .small {
  font-size: 1em;
}
.g-kpi .g-link .normal {
  font-size: 1.5em;
}
.g-kpi .g-link .big {
  font-size: 2em;
}
.g-kpi .g-link .xl {
  font-size: 2.5em;
}
.g-kpi .text {
  /*margin-left: 5px;*/
  display: inline-block;
  font-weight: bold;
}
.g-kpi .text .small {
  font-size: 1em;
}
.g-kpi .text .normal {
  font-size: 1.5em;
}
.g-kpi .text .big {
  font-size: 2em;
}
.g-kpi .text .xl {
  font-size: 2.5em;
}
.g-kpi .bullet {
  font: 10px sans-serif;
}
.g-kpi .bullet .marker {
  stroke: #000;
  stroke-width: 2px;
}
.g-kpi .bullet .tick line {
  stroke: #666;
  stroke-width: 0.5px;
}
.g-kpi .bullet .range.s0 {
  fill: #eee;
}
.g-kpi .bullet .range.s1 {
  fill: #ddd;
}
.g-kpi .bullet .range.s2 {
  fill: #ccc;
}
.g-kpi .bullet .measure.s0 {
  fill: lightsteelblue;
}
.g-kpi .bullet .measure.s1 {
  fill: steelblue;
}
.g-kpi .bullet .title {
  font-size: 14px;
  font-weight: bold;
}
.g-kpi .bullet .subtitle {
  fill: #999;
}
.g-kpi .progress-meter .border-left {
  fill: #27B779;
}
.g-kpi .progress-meter .border-right {
  fill: #C63C3C;
}
.g-kpi .progress-meter .border {
  fill: #1D3E8F;
}
.g-kpi .progress-meter .background {
  fill: #ccc;
}
.g-kpi .progress-meter .foreground {
  fill: #1D3E8F;
}
.g-kpi .progress-meter .gaugeText {
  font-size: 0.8rem;
  font-weight: bold;
  fill: #1D3E8F;
}
.g-kpi .progress-meter .gauge4Text {
  font-size: 0.55rem;
  font-weight: bold;
  fill: #1D3E8F;
}

.timeLine.node {
  cursor: pointer;
}
.timeLine.node circle {
  fill: #fff;
  /*stroke: #91b5d5; 
          ;
          stroke-width: 3px;*/
}
.timeLine.node text {
  font: 12px sans-serif;
}
.timeLine.link {
  fill: none;
  stroke: #91b5d5;
  stroke-width: 2px;
}
.timeLine.arrow {
  fill: #91b5d5;
  stroke: #91b5d5;
  stroke-width: 1px;
}

.value-card-wrapper {
  font-weight: bold;
  height: 100%;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-around !important;
  justify-content: space-between !important;
  align-items: center;
  justify-content: center;
}

.vertical {
  flex-direction: column;
}

.horizontal {
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.value-card-icon {
  padding-right: 0.2rem;
  text-align: center;
  font-size: 1.75rem;
}

.value-card-value {
  padding-right: 0.2rem;
  text-align: center;
  font-size: 1.75rem;
}

.value-card-text {
  padding-right: 0.2rem;
  text-align: center;
}

.value-card-unit {
  /*padding-right: 0.2rem;*/
  text-align: center;
  font-size: 1.75rem;
}

.g-kpipanel {
  margin-top: 10px;
  margin-bottom: 10px;
  /*display: block;*/
  /*cursor: pointer;*/
}
.g-kpipanel .wrapper {
  width: 100%;
  /*display: table;*/
  /*height: 80px;*/
  overflow: hidden;
  position: relative;
}
.g-kpipanel .carousel {
  width: calc(100% - 40px);
  overflow: hidden;
  position: relative;
  left: 20px;
  display: inline-block;
  /*position: relative;*/
  /*display: table-cell;*/
}
.g-kpipanel .inner {
  display: inline-block;
  display: flex;
  width: 100%;
  /*background: #F0F0F0;*/
  white-space: nowrap;
  /*position: relative;*/
  /*padding: 5px;*/
}
.g-kpipanel .left_scroll, .g-kpipanel .right_scroll {
  /*display: table-cell;*/
  /*height: 70px;*/
  width: 20px;
  position: absolute;
  text-align: center;
  /*display: inline-block;*/
  min-height: 66px;
}
.g-kpipanel .left_scroll {
  left: 0px;
  padding-left: 3px;
}
.g-kpipanel .right_scroll {
  right: 0px;
  padding-left: 5px;
}
.g-kpipanel .items {
  background-color: #FFFFFF;
  border: 1px solid #d9d9d9;
  padding-top: 2px;
  padding-bottom: 2px;
  min-height: 66px;
  max-height: 66px;
  display: inline-block;
  /*margin-left: 10px;  
  margin-right: 10px;*/
  margin-right: 5px;
  padding-left: 5px;
  /*position: relative;*/
}
.g-kpipanel .items:hover {
  background-color: #E7EAF2;
}
.g-kpipanel .items:active {
  background-color: #999;
}
.g-kpipanel .items_toggled {
  background-color: #E7EAF2;
}
.g-kpipanel .item_placeholder_carousel {
  background-color: #E7EAF2;
  display: inline-block;
}
.g-kpipanel .item_placeholder_panel {
  background-color: #E7EAF2;
  float: left;
}

.timeLineArrow {
  stroke-width: 3;
  stroke: #000;
}

.bullet {
  font: 10px sans-serif;
}

.bullet .marker {
  stroke: #000;
  opacity: 0.7;
  stroke-width: 2px;
}

.bullet .tick line {
  stroke: #666;
  stroke-width: 0.5px;
}

.bullet .range.s0 {
  fill: #eee;
}

.bullet .range.s1 {
  fill: #ddd;
}

.bullet .range.s2 {
  fill: #ccc;
}

.bullet .measure.s0 {
  fill: #6699FF;
}

.bullet .title {
  font-size: 14px;
  font-weight: bold;
}

.bullet .subtitle {
  fill: #999;
}

.g-rap-card {
  /*width: 15rem;*/
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-content: stretch;
  margin-bottom: 1.5rem;
  padding: 0.7rem;
  /*&.items-toggled {
      background-color: #E7EAF2;
  }*/
}
.g-rap-card li {
  margin-left: 0px !important;
}
.g-rap-card .g-card-header {
  font-weight: bold;
  padding-bottom: 0.7rem;
  /*text-align: justify;*/
}
.g-rap-card h2.g-card-header-text {
  font-size: 1rem;
  /*white-space: nowrap;*/
  /*overflow: hidden;*/
  /*padding: 0.6rem 0rem 0.6rem 0.6rem;*/
  /*text-overflow: ellipsis;*/
  margin: 0rem;
  padding: 0rem;
  margin-block-start: 0em;
  margin-block-end: 0em;
}
.g-rap-card .g-card-main {
  padding-bottom: 0.7rem;
  /*width: 100%;*/
}
.g-rap-card .g-card-main .g-card-main-date {
  /*padding-bottom: 0.7rem;*/
  /*padding: 0.6rem 0.25rem;
  display: inline-block;
  width: 100%;*/
}
.g-rap-card .g-card-main .g-card-main-date .g-card-main-date-item {
  padding-bottom: 0.7rem;
  /*padding: 0.25rem;
  text-align: center;*/
}
.g-rap-card .g-card-main .g-card-main-date .g-card-main-date-item i {
  margin-right: 0.3rem;
}
.g-rap-card .g-card-main .g-card-main-date .g-card-main-date-item span {
  font-weight: bold;
}
.g-rap-card .g-card-main .g-card-main-date .g-card-main-date-item div {
  font-weight: bold;
  color: #ED1E79;
}
.g-rap-card .g-card-main .g-card-main-text {
  /*padding: 0.3rem 0.25rem;*/
  /*display: inline-block;*/
  width: 100%;
  text-align: justify;
  margin-bottom: 0.7rem;
}
.g-rap-card .g-card-main .g-card-main-info {
  /*padding: 0 0.25rem;*/
  /*display: inline-block;*/
  margin-bottom: 0.7rem;
  width: 100%;
  padding: 0.3rem;
  display: flex;
  flex-direction: row;
  /*border: 1px solid #C6CDE0;
  background: #f7f7f7; /*#E7EAF2;*/
}
.g-rap-card .g-card-main .g-card-main-info .g-card-main-info-icon {
  /*color: #6699FF;*/
  margin-right: 0.3rem;
  font-size: 1rem;
}
.g-rap-card .g-card-main .g-card-main-info.g-card-main-info-success {
  border-color: #27B779;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(39, 183, 121, 0.2);
}
.g-rap-card .g-card-main .g-card-main-info.g-card-main-info-important {
  border-color: #ED1E79;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(237, 30, 121, 0.2);
}
.g-rap-card .g-card-main .g-card-main-info.g-card-main-info-error {
  border-color: #C63C3C;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(198, 60, 60, 0.2);
}
.g-rap-card .g-card-main .g-card-main-info.g-card-main-info-warning {
  border-color: #FFB266;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(255, 178, 102, 0.2);
}
.g-rap-card .g-card-main .g-card-main-info.g-card-main-info-info {
  border-color: #ababab;
  border-width: 1px;
  border-style: solid;
  background-color: #F7F7F7;
}
.g-rap-card .g-card-main ul {
  list-style: none;
  /*padding-left: 0.5rem;*/
  /*padding-left: 0px;
  margin-left: 0px;*/
  padding-inline-start: 15px;
  margin-block-start: 0rem;
  margin-top: 0rem;
}
.g-rap-card .g-card-footer {
  /*display: table;
  padding: 1.5rem;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;*/
  /*.g-card-footer-buttons {
      display: table-cell;
      vertical-align: middle;
      text-align: center;
  }*/
}

.gbasepanel .flex-item {
  margin-left: 0.7rem;
  margin-top: 0.7rem;
}

/*.g-card {
    vertical-align: top;

    &.items-toggled {
        background-color: #E7EAF2;
    }
}*/
.gbasepanel {
  /*.flex-item-toggled--visible--always .flex-item-toggled {
      background-image: $btn-focus-image;*/
  /*background-color: lighten($base-color-text, 65%);*/
  /*border: 1px solid $base-color-favorite; //#6699ff;
      box-shadow: 0px 0px 5px 0px $base-color-favorite; //#6699ff;*/
  /*}*/
  /*.flex-control-panel {
      background-color: $base-color-tool; //#E7EAF2;
  }*/
  /*.toolbar-top-overlap {
      position: absolute;
      top: 0px;
      right: 0px;
  }*/
}
.gbasepanel dd {
  display: block;
  margin-inline-start: 0px;
  margin: 0px;
}
.gbasepanel dl {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin: 0px;
}
.gbasepanel .gi-stack {
  /*width: 28px;*/
  /*font-size: 1.2rem;*/
  /*top: -0.4rem;*/
  left: -0.6rem;
}
.gbasepanel .basepanel-commandbar {
  margin-top: 1rem;
  margin-left: 0.25rem;
  color: #6699FF;
}
.gbasepanel .panel-custom-backround {
  background-color: #E7EAF2;
}
.gbasepanel .flex-container {
  /*padding-bottom: 0.3rem;*/
  padding: 0.25rem;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row nowrap;
  flex-direction: row;
  display: flex;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  /*padding: 0.5rem;*/
}
.gbasepanel .flex-wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.gbasepanel .flex-wrapper ul {
  list-style: none;
  padding: 0rem;
  margin: 0rem;
  list-style-position: inside;
}
.gbasepanel .flex-wrapper li {
  padding: 0rem;
  margin: 0.25rem;
}
.gbasepanel .flex-item {
  /*background-color: $base-color-fields;*/
  flex: 0 0 auto;
  /*margin-left: 0.5rem;
  margin-top: 0.5rem;*/
  margin: 0.25rem;
  position: relative;
  cursor: pointer;
  min-width: 2rem;
  border: 1px solid #C6CDE0;
  /*padding: 0.7rem;*/
  background-color: #FFFFFF;
}
.gbasepanel .flex-item.paneltoolbar-top {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.gbasepanel .flex-item.paneltoolbar-right {
  padding-right: 2.5rem;
}
.gbasepanel .flex-item.paneltoolbar-right .flex-item-content {
  z-index: 1;
}
.gbasepanel .flex-item-hover {
  background-color: #eeeeee !important;
}
.gbasepanel .flex-item-disabled {
  cursor: not-allowed;
}
.gbasepanel .flex-item-disabled span {
  color: lightgray;
}
.gbasepanel .flex-item-disabled div {
  color: lightgray;
}
.gbasepanel .flex-item-disabled:hover {
  background-color: transparent;
}
.gbasepanel .flex-item-toggled--unvisible {
  background-image: none;
  /*  border: 1px solid $base-color-shadow;
  box-shadow: none;*/
}
.gbasepanel .flex-item-toggled--visible {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  border-color: transparent;
  /*background-color: lighten($base-color-text, 65%);*/
  /*border: 1px solid $base-color-favorite; //#6699ff;
  box-shadow: 0px 0px 5px 0px $base-color-favorite; //#6699ff;*/
}
.gbasepanel .flex-item-content {
  width: 100%;
}
.gbasepanel .flex-item-content-wrapper {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.gbasepanel .button-panel-top {
  width: 100%;
  top: 0px;
  position: static;
  padding-right: 0.25rem;
}
.gbasepanel .button-panel-bottom {
  width: 100%;
  bottom: 0px;
  position: static;
}
.gbasepanel .button-panel-item {
  color: gray;
  opacity: 0.5;
}
.gbasepanel .button-panel-item:hover {
  color: #000000;
  opacity: 1;
}
.gbasepanel .overlap {
  position: absolute;
  z-index: 1;
  left: 0rem;
}
.gbasepanel .arrow-container {
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.gbasepanel .flex-control-panel {
  /*background-color: $base-color-fields;*/
  /*display: inline-block;*/
  flex: 0 0 auto;
  /*width: 2rem;*/
}
.gbasepanel .flex-control-panel:hover {
  /* background-color: $base-color-tool;*/
}
.gbasepanel .flex-control-panel:active {
  /*background-color: #FFFFFF;*/
}
.gbasepanel .favorites-panel {
  /*border-bottom: 1px solid gray;*/
  padding: 0.5rem;
}
.gbasepanel .others-section {
  /*margin-bottom: 0.5rem;*/
  margin-top: 1rem;
  padding-left: 0.5rem;
  font-weight: bold;
}
.gbasepanel .favorites-section {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  font-weight: bold;
}
.gbasepanel .ico-container {
  width: 3rem;
  align-items: center;
  display: flex;
  opacity: 0.75;
}
.gbasepanel .ico-container > i {
  font-size: 1rem;
}
.gbasepanel .placeholder {
  /*background-color: red;//#f3f3f3;*/
  background-color: lightgray;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  width: 100%;
  height: 60px;
  opacity: 0.75;
}
.gbasepanel .placeholder-horizontal {
  /*background-color: red;//#f3f3f3;*/
  background-color: lightgray;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  width: 250px;
  height: 60px;
  opacity: 0.75;
}
.gbasepanel .flex-container--inline-mode {
  z-index: 2;
  border: 1px solid transparent;
  /*max-height: "";*/
  overflow: auto;
  flex-wrap: nowrap;
  width: calc(100% - 2rem);
  flex-direction: row;
  flex: 1 1 auto;
  /*display: flex;*/
  height: 100%;
}
.gbasepanel .flex-container--inline-mode-opened {
  border: 1px solid lightgray;
  background-color: #FFFFFF;
}
.gbasepanel .flex-container--modules-mode {
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
  /*overflow: "";
  max-height: "";*/
}
.gbasepanel .flex-container--modules-mode__flex-item {
  border: none;
}
.gbasepanel .flex-container--modules-mode__flex-item-content {
  padding: 1rem;
}
.gbasepanel .flex-container--vertical-mode {
  width: 100%;
  flex-direction: column;
}
.gbasepanel .flex-container--vertical-mode__flex-item {
  width: calc(100% - 0.5rem);
  border-color: transparent;
  /*border-bottom: 1px solid silver;*/
  background-color: transparent;
  /*margin-left: 0rem;*/
}
.gbasepanel .flex-container--vertical-mode__flex-item__flex-item-content {
  width: 100%;
}
.gbasepanel .flex-container--inline-mode__flex-item-content {
  width: 100%;
}
.gbasepanel .flex-container--panel-mode {
  flex-wrap: wrap;
}
.gbasepanel .flex-container--panel-mode li {
  overflow: auto;
}
.gbasepanel .flex-container-empty-value-text-wrapper {
  width: calc(100% - 0.5rem);
  height: 100%;
  min-height: 2rem;
  align-content: center;
  align-items: center;
  display: flex;
  border: 1px solid #E7EAF2;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #f7f7f7;
}
.gbasepanel .flex-container-empty-value-text {
  font-weight: bold;
}
.gbasepanel .g-kpi-multirow-body-description-row__horizontal_mode {
  flex-wrap: wrap;
  max-width: 400px;
  display: flex;
}
.gbasepanel h3.g-kpi-multirow-header-title {
  margin: 0rem;
  padding: 0rem;
  font-size: 0.8125rem;
}
.gbasepanel .gpanel-colums-1 > li {
  width: calc(99.95% - 0.5rem);
}
.gbasepanel .gpanel-colums-2 > li {
  width: calc(49.95% - 0.5rem);
}
.gbasepanel .gpanel-colums-3 > li {
  width: calc(33.2833333333% - 0.5rem);
}
.gbasepanel .gpanel-colums-4 > li {
  width: calc(24.95% - 0.5rem);
}
.gbasepanel .gpanel-colums-5 > li {
  width: calc(19.95% - 0.5rem);
}
.gbasepanel .gpanel-colums-6 > li {
  width: calc(16.6166666667% - 0.5rem);
}
.gbasepanel .gpanel-colums-7 > li {
  width: calc(14.2357142857% - 0.5rem);
}
.gbasepanel .gpanel-colums-8 > li {
  width: calc(12.45% - 0.5rem);
}
.gbasepanel .gpanel-colums-9 > li {
  width: calc(11.0611111111% - 0.5rem);
}

.g-basepanel-universal {
  padding: 1rem;
}
.g-basepanel-universal .g-basepanel-universal-header {
  /*font-size: 0.75rem;*/
  /*flex-direction: row;*/
  /*justify-content: space-between;*/
  /*display: flex;*/
}
.g-basepanel-universal .g-basepanel-universal-header .g-basepanel-universal-header-title {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.g-basepanel-universal .g-basepanel-universal-header .g-basepanel-universal-header-subtitle {
  font-size: 0.8125rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.g-basepanel-universal .g-basepanel-universal-header-right {
  /*justify-content: space-between;*/
  /*width: 50%;*/
  justify-content: flex-end;
  flex-direction: row;
  display: flex;
}
.g-basepanel-universal .g-basepanel-universal-header-date {
  opacity: 0.5;
  /*width: 50%;*/
}
.g-basepanel-universal .g-basepanel-universal-header-settings {
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  display: flex;
  color: gray;
  /*height: 100%;*/
  margin-left: 0.5rem;
  z-index: 2;
  position: absolute;
  right: 0.1rem;
  top: 0.1rem;
}
.g-basepanel-universal .g-basepanel-universal-header-settings-icon {
  margin-left: 0.25rem;
  opacity: 0.5;
}
.g-basepanel-universal .g-basepanel-universal-header-settings-icon:hover {
  opacity: unset;
}
.g-basepanel-universal .g-basepanel-universal-header-settings-icon__need-refresh {
  color: #ED1E79;
}
.g-basepanel-universal .g-basepanel-universal-header-settings-icon__need-refresh:hover {
  color: gray;
}
.g-basepanel-universal .positive-value {
  color: #27b779;
  fill: #27b779;
  font-weight: bold;
}
.g-basepanel-universal .negative-value {
  color: #ea2f4e;
  fill: #ea2f4e;
  font-weight: bold;
}
.g-basepanel-universal .neutral-value {
  color: #6699FF;
  fill: #6699FF;
  font-weight: bold;
}
.g-basepanel-universal .important-value {
  color: #ED1E79;
  font-weight: bold;
}
.g-basepanel-universal .warning-value {
  color: #FFB266;
  font-weight: bold;
}
.g-basepanel-universal .purple-value {
  color: #aa00be;
  font-weight: bold;
}
.g-basepanel-universal .yellow-value {
  color: #ffeb19;
  font-weight: bold;
}
.g-basepanel-universal .g-basepanel-universal-main-info-value {
  margin: 0 0.25rem 0 0.25rem;
}
.g-basepanel-universal .g-basepanel-universal-main {
  /*.g-basepanel-universal-main-text {

      width: 100%;
      text-align: justify;
      margin-bottom: 0.7rem;
  }*/
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-text {
  margin-bottom: 0.7rem;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-info {
  /*padding: 0 0.25rem;*/
  /*display: inline-block;*/
  margin-bottom: 0.7rem;
  width: 100%;
  padding: 0.3rem;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-info .g-basepanel-universal-main-info-icon {
  /*color: #6699FF;*/
  margin-right: 0.3rem;
  font-size: 1rem;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-info.g-basepanel-universal-main-info-success {
  border-color: #27B779;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(39, 183, 121, 0.2);
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-info.g-basepanel-universal-main-info-important {
  border-color: #ED1E79;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(237, 30, 121, 0.2);
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-info.g-basepanel-universal-main-info-error {
  border-color: #C63C3C;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(198, 60, 60, 0.2);
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-info.g-basepanel-universal-main-info-warning {
  border-color: #FFB266;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(255, 178, 102, 0.2);
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-main-info.g-basepanel-universal-main-info-info {
  border-color: #ababab;
  border-width: 1px;
  border-style: solid;
  background-color: #F7F7F7;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.7rem;
  align-items: center;
  width: 100%;
  height: 100%;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-value {
  /*font-size: 1.15rem;*/
  font-weight: normal;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-unit {
  font-size: 0.8125rem;
  font-weight: bold;
  padding-left: 0.25rem;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-text {
  font-size: 0.8125rem;
  font-weight: bold;
  width: 100%;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-textWrapper {
  width: 100%;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-primaryText {
  font-weight: bold;
  width: 100%;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal--body-secondaryText {
  width: 100%;
  color: gray;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-icon {
  font-weight: normal;
  font-size: 0.8125rem;
  text-align: center;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-description {
  font-size: 0.8125rem;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-kpi-multirow-body-flag {
  /*margin-left: 0.5rem;*/
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-description-row {
  display: flex;
  font-size: 0.8125rem;
  /*justify-content: space-between;*/
  /*white-space: nowrap;
  width: 100%;*/
  padding: 0.15rem;
  color: red;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-description-row__vertical_mode {
  padding: 0.15rem;
  display: flex;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-description-row--value-first {
  padding-left: 1rem;
  width: 90%;
  /*flex-grow: 2;*/
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal-body .g-basepanel-universal-body-value-row--value-first {
  /*flex-grow: 1;*/
  width: 10%;
  text-align: right;
  font-weight: bold;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal--footer {
  /*display: flex;*/
  flex-flow: row wrap;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal--footer .g-basepanel-universal--footer-left {
  /*width: 50%;*/
  display: flex;
  justify-content: flex-start;
}
.g-basepanel-universal .g-basepanel-universal-main .g-basepanel-universal--footer .g-basepanel-universal--footer-right {
  /*width: 50%;*/
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.gadatemplate {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 16px;
  padding-right: 16px;
}
.gadatemplate .gadatemplate-header {
  padding-bottom: 1.5rem;
  font-weight: bold;
}
.gadatemplate .gadatemplate-header .gadatemplate-header-icon {
  padding-right: 0.5rem;
}
.gadatemplate .gadatemplate-date {
  padding-bottom: 16px;
}
.gadatemplate .gadatemplate-user {
  padding-bottom: 16px;
}
.gadatemplate .gadatemplate-state {
  padding-bottom: 16px;
}

.gtrainingtemplate {
  width: 250px;
  height: 100%;
  position: relative;
}
.gtrainingtemplate .link {
  text-decoration: none;
}
.gtrainingtemplate .header-image {
  width: 250px;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-bottom: 0.5rem;
}
.gtrainingtemplate .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.gtrainingtemplate .container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}
.gtrainingtemplate .footer {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}
.gtrainingtemplate .new_tag {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #d2201e;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.033em;
}

.grsstemplate .main {
  padding-bottom: 0.25rem;
  border: 1px solid lightGray;
}
.grsstemplate .link {
  text-decoration: none;
}
.grsstemplate .text {
  padding: 0.25rem;
}
.grsstemplate .date {
  font-size: 0.75rem;
  padding-left: 0.25rem;
  color: #707070;
}

.gdashboardrsstemplate .main {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  /* border: 1px solid lightGray;*/
}
.gdashboardrsstemplate .title {
  font-weight: bold;
}
.gdashboardrsstemplate .description {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}
.gdashboardrsstemplate .link {
  text-decoration: none;
}
.gdashboardrsstemplate .date {
  color: #707070;
}

.slgmodulestemplate .main {
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.slgmodulestemplate .title {
  font-weight: bold;
}
.slgmodulestemplate .text {
  padding-left: 1rem;
}
.slgmodulestemplate .description {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}
.slgmodulestemplate .link {
  text-decoration: none;
}
.slgmodulestemplate .icon {
  width: 48px;
}
.slgmodulestemplate .date {
  color: #707070;
}

.gbasepanel-table {
  display: table;
  background-color: transparent;
  padding: 0.5rem;
  width: 100%;
  min-width: 350px;
}
.gbasepanel-table .row {
  display: table-row;
  text-align: left;
  background-color: transparent;
}
.gbasepanel-table .cell {
  vertical-align: middle;
  display: table-cell;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.gbasepanel-table .value-cell {
  text-align: right;
  font-size: 2.5rem;
  font-weight: bold;
  padding-right: 0.75rem;
  padding-left: 0.5rem;
  width: 5%;
  line-height: 2.5rem;
  vertical-align: middle;
}
.gbasepanel-table .info-cell {
  text-align: left;
  width: 80%;
  vertical-align: middle;
}
.gbasepanel-table .state-cell {
  text-align: right;
  width: 15%;
  vertical-align: middle;
  padding-left: 1rem;
}
.gbasepanel-table .primary-text {
  font-weight: bold;
}
.gbasepanel-table .secondary-text {
  font-weight: normal;
}
.gbasepanel-table .shadow-text {
  color: #707070;
  font-weight: bold;
}
.gbasepanel-table .icon {
  font-size: 1.75rem;
  /*padding-right: 0.5rem;*/
}
.gbasepanel-table .row__horizontal_mode {
  flex-wrap: wrap;
  display: flex;
}
.gbasepanel-table .command-bar-row {
  display: table-caption;
  caption-side: bottom;
  padding-left: 0.25rem;
}

.gbasepanel .flex-container--vertical-mode {
  margin-left: 0px !important;
}

.gdashboardpanel__main--toggled {
  border: 2px solid lightGreen;
  box-shadow: 0px 0px 5px 0px lightGreen;
  width: 100%;
}

.gdashboardpanel {
  max-width: 1920px;
}
.gdashboardpanel .four-zones {
  width: calc(25% - 4rem);
}
.gdashboardpanel .top-panel {
  border: 1px solid #E7EAF2;
  /*flex-direction: column;
  width: 100%;*/
}
.gdashboardpanel .main-content {
  display: flex;
  padding: 0.75rem;
}
.gdashboardpanel .horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.gdashboardpanel .vertical {
  flex-direction: column;
}
.gdashboardpanel .flex-container {
  margin-left: 0px;
}
.gdashboardpanel .gdashboardpanel_wrapper--visible {
  padding: 1rem;
  margin-right: 0.5rem;
  /*margin-top: 1rem;*/
  box-shadow: 0px 0px 5px 0px #000000;
}
.gdashboardpanel .gdashboardpanel_wrapper {
  width: 100%;
  min-width: 350px;
}
.gdashboardpanel .gdashboardpanel_wrapper--hover {
  background-color: #E7EAF2;
}
.gdashboardpanel .gdashboardpanel_wrapper--hidden {
  box-shadow: none;
  padding: 0rem;
  margin-right: 0rem;
}
.gdashboardpanel .gdashboardpanel-placeholder {
  /*border: 1px dotted black;*/
  background-color: lightgray;
  opacity: 0.7;
  margin: 0 1em 1em 0;
  height: 50px;
}
.gdashboardpanel .gdashboardpanel_container {
  padding: 0.5rem;
  min-width: 350px;
}
.gdashboardpanel .gdashboardpanel_container--toggled {
  border: 2px solid red;
  box-shadow: 0px 0px 5px 0px red;
}
.gdashboardpanel .gdashboardpanel__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
}
.gdashboardpanel h2.gdashboardpanel__header__title {
  font-weight: bold;
  /*font-size: 1rem;*/
  margin: 0rem;
  padding: 0rem;
  margin-block-start: 0em;
  margin-block-end: 0em;
  /*   margin-bottom: 0.5rem;
  padding-bottom: 0.125rem;*/
  font-size: 0.8125rem;
  color: #707070;
  text-align: left;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.gdashboardpanel .gdashboardpanel__header__buttons {
  opacity: 0.75 !important;
}
.gdashboardpanel .gdashboard_placeholder {
  /*background-color: red;//#f3f3f3;*/
  background-color: #6699ff;
  height: 7rem;
  /*padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  width: 33.33%;*/
  /*min-height: 768px;*/
  /*height: 100vh;*/
  opacity: 0.25;
}
.gdashboardpanel .gdashboardpanel--toggled {
  border: 2px solid #6699ff;
  box-shadow: 0px 0px 5px 0px #6699ff;
}
.gdashboardpanel .gdashboard-menu-icon {
  font-size: 1rem;
  font-weight: bold;
}

.gdashboardpanel_preview_container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.gdashboardpanel_preview {
  width: 50%;
}

.gdashboardpanel_preview_grid {
  width: 50%;
}

.gdashboard-view--toggled {
  border: 2px solid orange;
  box-shadow: 0px 0px 5px 0px orange;
}

.dashboard-logo {
  margin-bottom: 1rem;
  margin-left: 0.5rem;
}

.gdashboard-view {
  padding: 0.5rem;
  min-height: 100px;
  position: relative;
  background-color: #FFFFFF;
}
.gdashboard-view .gdashboard-view-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  /* color: #707070;*/
  text-align: left;
  border-bottom: 1px solid #707070;
}
.gdashboard-view .gdashboard-view-header__title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.gdashboard-view .gdashboard-view-header__buttons {
  opacity: 0.75 !important;
}

.gdashboard {
  max-width: 1920px;
  /*.gdashboard-zone--hidden {
      box-shadow: none;
      padding: 0rem;
      margin-right: 0rem;
  }*/
  /*.gdashboard-placeholder {        
      background-color: lightgray;
      opacity: 0.7;
      margin: 0 1em 1em 0;
      height: 50px;
  }*/
  /*.gdashboardpanel_container {
      padding: 0.5rem;
  }*/
  /*.gdashboardpanel_container--toggled {
      border: 2px solid red;
      box-shadow: 0px 0px 5px 0px red;
  }*/
}
.gdashboard .gdashboard-main {
  /*height: 100vh;*/
  letter-spacing: -0.31em;
}
.gdashboard .background {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  /*min-height: 100%;*/
  background-repeat: no-repeat;
}
.gdashboard .four-zones {
  width: calc(25% - 4rem);
}
.gdashboard .top-panel {
  /* border: 1px solid #E7EAF2;*/
  /*flex-direction: column;
  width: 100%;*/
}
.gdashboard .main-content {
  display: flex;
  padding: 0.75rem;
}
.gdashboard .horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.gdashboard .vertical {
  flex-direction: column;
}
.gdashboard .flex-container {
  margin-left: 0px;
}
.gdashboard .gdashboard-zone--visible {
  /*padding: 0.5rem;*/
  /*margin-right: 0.5rem;*/
  /*margin-top: 1rem;*/
  /*box-shadow: 0px 0px 5px 0px #000000;*/
  border: 1px solid lightgray;
  min-height: 350px !important;
}
.gdashboard .gdashboard-zone {
  /*width: 100%;*/
  padding: 0.5rem;
  min-width: 150px;
  min-height: 100px;
  letter-spacing: initial;
}
.gdashboard .gdashboard-zone--hover {
  background-color: #E7EAF2;
}
.gdashboard .gdashboard-zone--toggled {
  border: 2px solid lightGreen;
  box-shadow: 0px 0px 5px 0px lightGreen;
}
.gdashboard .gdashboard_placeholder {
  /*background-color: red;//#f3f3f3;*/
  background-color: #6699ff;
  height: 7rem;
  /*padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  width: 33.33%;*/
  /*min-height: 768px;*/
  /*height: 100vh;*/
  opacity: 0.25;
}
.gdashboard .gdashboard--toggled {
  border: 2px solid #6699ff;
  box-shadow: 0px 0px 5px 0px #6699ff;
}
.gdashboard .gdashboard-menu-icon {
  font-size: 1rem;
  font-weight: bold;
}

.gdashboard_preview_container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.gdashboard_preview {
  width: 50%;
}

.gdashboard_preview_grid {
  width: 50%;
}

.gdashboard_header_zone {
  width: 100%;
  padding: 0.25rem;
}
.gdashboard_header_zone .module_header {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.gdashboard_header_zone .module_header .module_icon {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
}
.gdashboard-paging {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: row;
}
.gdashboard-paging .pages-description {
  width: 15%;
  font-weight: bold;
  padding-top: 2px;
}
.gdashboard-paging .pages {
  width: 85%;
}

.itemTemplateViewPort .suggestion-item:nth-child(2n+1) .dashboard-item-template-selection {
  background-color: #E7EAF2;
}

.ol-popup {
  position: absolute;
  background-color: white;
  -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 350px;
}

.ol-popup:after, .ol-popup:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.ol-popup:after {
  border-top-color: white;
  border-width: 10px;
  left: 48px;
  margin-left: -10px;
}

.ol-popup:before {
  border-top-color: #cccccc;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}

.ol-popup-closer {
  text-decoration: none;
  position: absolute;
  top: 2px;
  right: 8px;
}

.ol-popup-closer:after {
  content: "✖";
}

/***********************************************************
* g-outline styly
*/
.g-outline {
  background-color: white;
  counter-reset: gtab-counter;
}

.g-outline__item {
  cursor: pointer;
  display: none;
  line-height: 3rem;
  padding: 0 0.2rem;
  padding-left: 3rem;
  position: relative;
}

.g-outline__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.g-outline__state-error > .g-outline__item {
  color: red;
}

[data-goutline-level="0"] > .g-outline__branch > .g-outline__item {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}
[data-goutline-level="0"] > .g-outline__branch > .g-outline__item::before {
  background-color: #C3CAD8;
  content: "";
  display: block;
  height: 3rem;
  left: 1.5rem;
  position: absolute;
  top: -1.5rem;
  transform: translateX(-50%);
  width: 1px;
}
[data-goutline-level="0"] > .g-outline__branch > .g-outline__item::after {
  background-color: #fff;
  border: 0.125rem solid #C3CAD8;
  border-radius: 50%;
  color: #C3CAD8;
  content: counter(gtab-counter);
  counter-increment: gtab-counter;
  display: block;
  font-weight: 800;
  height: 2rem;
  left: 0.5rem;
  line-height: 1.75rem;
  position: absolute;
  text-align: center;
  top: 0.5rem;
  width: 2rem;
  z-index: 1;
}
[data-goutline-level="0"] > .g-outline__branch:first-child > .g-outline__item::before {
  display: none;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active .g-outline__item {
  display: block;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active > .g-outline__item::before {
  background-color: #C3CAD8;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active > .g-outline__item::after {
  color: #6699FF;
  border-color: #6699FF;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active-through > .g-outline__item::before {
  background-color: #C3CAD8;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active-through > .g-outline__item::after {
  color: #C3CAD8;
  border-color: #C3CAD8;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active-parent .g-outline__item {
  display: block;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active-parent > .g-outline__item::before {
  background-color: #C3CAD8;
}
[data-goutline-level="0"] > .g-outline__branch.g-outline__state-active-parent > .g-outline__item::after {
  color: #6699FF;
  border-color: #6699FF;
}

[data-goutline-level="1"] > .g-outline__branch > .g-outline__item::before {
  background-color: #C3CAD8;
  content: "";
  display: block;
  height: 3rem;
  left: 1.5rem;
  position: absolute;
  top: -1.5rem;
  transform: translateX(-50%);
  width: 1px;
}
[data-goutline-level="1"] > .g-outline__branch > .g-outline__item::after {
  background-color: #6699FF;
  border-radius: 50%;
  content: "";
  display: none;
  height: 0.5rem;
  left: 1.25rem;
  position: absolute;
  top: 1.25rem;
  width: 0.5rem;
  z-index: 1;
}
[data-goutline-level="1"] > .g-outline__branch.g-outline__state-active > .g-outline__item {
  color: #6699FF;
  font-weight: 800;
}
[data-goutline-level="1"] > .g-outline__branch.g-outline__state-active > .g-outline__item::after {
  display: block;
}
[data-goutline-level="1"] > .g-outline__branch.g-outline__state-active > .g-outline__item::before {
  background-color: #6699FF;
}
[data-goutline-level="1"] > .g-outline__branch.g-outline__state-active-through > .g-outline__item::before {
  background-color: #6699FF;
}
[data-goutline-level="1"] > .g-outline__branch.g-outline__state-active-parent > .g-outline__item::before {
  background-color: #6699FF;
}

.g-progress-bar__bar {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 999;
}

.g-progress-bar__indicator {
  position: absolute;
  height: 100%;
  width: 100%;
  left: -100%;
  -moz-transition: left 161ms;
  -o-transition: left 161ms;
  -webkit-transition: left 161ms;
  transition: left 161ms;
}

.g-progress-bar--pending {
  -moz-animation: pending 1.618s infinite;
  -o-animation: pending 1.618s infinite;
  -webkit-animation: pending 1.618s infinite;
  animation: pending 1.618s infinite;
}

.g-progress-bar__fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.33);
  z-index: 997;
}

@-moz-keyframes pending {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes pending {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
@keyframes pending {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
.gscrollbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2rem;
  z-index: 999;
}
.gscrollbar .gscrollbar-slider, .gscrollbar .gscrollbar-slider-indicator {
  position: absolute;
  left: 0;
  width: 1rem;
}
.gscrollbar .gscrollbar-slider-indicator {
  background-color: hsla(160deg, 0%, 50%, 0.5);
  opacity: 0;
}
.gscrollbar:hover .gscrollbar-slider-indicator {
  opacity: 1 !important;
}

.g-tiny-grid__tr--filtered .g-tiny-grid__td, .g-tiny-grid__scroll-wrapper .g-tiny-grid__thead .g-tiny-grid__td,
.g-tiny-grid__scroll-wrapper .g-tiny-grid__thead .g-tiny-grid__th,
.g-tiny-grid__scroll-wrapper .g-tiny-grid__tfoot .g-tiny-grid__td,
.g-tiny-grid__scroll-wrapper .g-tiny-grid__tfoot .g-tiny-grid__th {
  transform: scaleY(0);
  height: 0 !important;
  line-height: 0;
  border: none !important;
  padding-top: 0;
  padding-bottom: 0;
}

.g-tiny-grid__thead {
  color: #808080;
  text-transform: uppercase;
  font-size: 0.6rem;
  border-bottom: 1px solid #C3CAD8;
}

.g-tiny-grid__tbody .g-tiny-grid__td {
  height: 1.5rem;
  padding: 0 0.25rem;
  vertical-align: middle;
  color: #2650B9;
  border-top: 1px solid #C3CAD8;
}
.g-tiny-grid__tbody .g-tiny-grid__tr:first-child .g-tiny-grid__td {
  border-top-style: none;
}

.g-tiny-grid__tfoot {
  background-color: #ccc;
  border-top: 1px solid #C3CAD8;
}

.g-login__content-main .g-tiny-grid__tfoot {
  /* V loginu vynucuje border-top scrollbar, tak jej zmenim na bottom. */
  border-top: unset;
  border-bottom: 1px solid #C3CAD8;
}

.g-tiny-grid__th {
  font-weight: 800;
  vertical-align: bottom;
  padding: 0.25rem 0.25rem;
}

.g-tiny-grid__tr--selected .g-tiny-grid__td {
  background-color: hsl(223deg, 66%, 44%);
  color: #fff;
}

.g-tiny-grid__tr--focused .g-tiny-grid__td {
  background-color: hsl(223deg, 66%, 28%);
  color: #fff;
}

.g-tiny-grid__td--row-number {
  background-color: #ccc;
  color: #000;
}

.g-tiny-grid__filters .g-tiny-grid__th {
  padding: 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  position: relative;
}
.g-tiny-grid__filters input[type=text] {
  border: none;
  text-decoration: underline;
  font-weight: 800;
  letter-spacing: 0.01rem;
  /*&::placeholder { // css4 (Firefox 51+)
      @content;
  }*/
}
.g-tiny-grid__filters input[type=text]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 400;
  text-decoration: underline;
  font-style: italic;
  color: #808080;
}
.g-tiny-grid__filters input[type=text]::-moz-placeholder {
  font-weight: 400;
  text-decoration: underline;
  font-style: italic;
  color: #808080;
}
.g-tiny-grid__filters input[type=text]:-ms-input-placeholder {
  font-weight: 400;
  text-decoration: underline;
  font-style: italic;
  color: #808080;
}
.g-tiny-grid__filters input[type=text]:-moz-placeholder {
  font-weight: 400;
  text-decoration: underline;
  font-style: italic;
  color: #808080;
}
.g-tiny-grid__filters input[type=text]:focus {
  outline: none;
}

.g-tiny-grid__td--tooltip {
  text-align: right;
}

.g-tiny-grid {
  min-width: 100%;
}
.g-tiny-grid:not(.g-tiny-grid--scroll-body) {
  display: table;
}
.g-tiny-grid.g-tiny-grid--scroll-body {
  height: calc(100% - 1px);
  max-height: 100%;
  position: relative;
}
.g-tiny-grid.g-tiny-grid--scroll-body > .g-tiny-grid__thead, .g-tiny-grid.g-tiny-grid--scroll-body > .g-tiny-grid__tfoot {
  display: table;
  width: 100%;
}

.g-tiny-grid__thead {
  display: table-header-group;
}

.g-tiny-grid__tbody {
  display: table-row-group;
}

.g-tiny-grid__tfoot {
  display: table-footer-group;
}

.g-tiny-grid__tr {
  display: table-row;
  /* 03.06.2019 - TFeik */
  /* Změna kurzoru z textu "I" na "ruku". */
  cursor: pointer;
}

.g-tiny-grid__th,
.g-tiny-grid__td {
  display: table-cell;
}
.g-tiny-grid__th input,
.g-tiny-grid__td input {
  width: 100%;
}

.g-tiny-grid__td.g-tiny-grid__td--dummy:after {
  content: "";
}

.g-tiny-grid__scroll-wrapper {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}
.g-tiny-grid__scroll-wrapper .g-tiny-grid__thead,
.g-tiny-grid__scroll-wrapper .g-tiny-grid__tfoot {
  height: 0;
}
.g-tiny-grid__tr--filtered {
  line-height: 0;
}
.g-tiny-grid__tr--filtered input {
  display: none;
}

.g-tiny-grid__th--sortable {
  cursor: pointer;
}
.g-tiny-grid__th--sortable:after {
  height: 100%;
  vertical-align: bottom;
  font: normal normal normal 14px/1 FontAwesome;
  color: transparent;
}
.g-tiny-grid__th--sortable.g-tiny-grid__th--sorted-asc:after {
  color: inherit;
  content: " \f15d";
}
.g-tiny-grid__th--sortable.g-tiny-grid__th--sorted-desc:after {
  color: inherit;
  content: " \f15e";
}

input[name=gtinygrid-selected-row] {
  position: absolute;
  transform: scaleY(0);
  width: 0;
}

.g-tiny-grid--row-numbering {
  counter-reset: row-counter;
}
.g-tiny-grid--row-numbering .g-tiny-grid__td--row-number {
  width: 1em;
  text-align: right;
}
.g-tiny-grid--row-numbering .g-tiny-grid__td--row-number:after {
  content: counter(row-counter);
  counter-increment: row-counter;
}

.ggrid {
  position: relative;
  border-bottom: none;
  box-sizing: border-box;
  z-index: 0;
}
.ggrid + .ggrid {
  margin-top: 0.5rem;
}
.ggrid.border {
  border: 1px solid #C6CDE0;
}
.ggrid .info-panel:not(:empty) {
  border-top: 1px solid #E7EAF2;
}
.ggrid .grouping-info {
  display: flex;
  background-color: rgba(102, 153, 255, 0.2);
}
.ggrid .grouping-info > span, .ggrid .grouping-info > a {
  padding: 0.125rem 0.25rem 0;
  border-bottom: none;
}
.ggrid .grouping-info > .gfield {
  flex-grow: 1;
}
.ggrid .grouping-info .gselectbox-item {
  background-color: #FFFFFF;
}
.ggrid .check-counter {
  padding: 0 0.25rem;
}
.ggrid .search-box {
  width: 13rem;
}
.ggrid .profile-box {
  width: 12rem;
}
.ggrid .field-box {
  /*    position: relative;
  top: -2px;
  margin: 0;
  padding: 0;
  line-height: 1rem;*/
  vertical-align: top;
  font-weight: 400;
}
.ggrid .field-box input {
  min-height: 0;
}
.ggrid .field-box .gfield-table {
  border-color: transparent;
  height: 1rem;
}
.ggrid .field-box .gcontrolbox-button, .ggrid .field-box .gcontrolbox-state {
  padding: 0;
  border: none;
  min-width: 1rem;
  max-height: 1.125rem;
}
.ggrid .field-box .gselectbox-itemc, .ggrid .field-box .gselectbox-item {
  padding-top: 0;
  padding-bottom: 0;
}
.ggrid .field-box-parent {
  border-left: 1px solid #E7EAF2;
  border-right: 1px solid #E7EAF2;
}
.ggrid .header {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E7EAF2;
  border-bottom: 3px solid #E7EAF2;
}
.ggrid .header .row {
  position: relative;
  min-height: 1.5rem;
  background-color: rgba(231, 234, 242, 0);
}
.ggrid .header .cell {
  display: flex;
}
.ggrid .header .highlight {
  background-color: rgba(0, 0, 0, 0.2);
}
.ggrid .sort-indicator, .ggrid .menu-activator, .ggrid .resize-holder {
  flex-shrink: 0;
}
.ggrid .resizer {
  width: 2px;
  z-index: 1;
  position: absolute;
  height: 100%;
  background-color: rgba(13, 23, 50, 0.4);
}
.ggrid .caption {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.25rem;
  flex-grow: 1;
}
.ggrid .caption--light {
  text-overflow: clip;
  font-size: 1rem;
}
.ggrid .sort-indicator {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #C6CDE0;
  padding: 0 0.125rem;
}
.ggrid .menu-activator {
  background-color: transparent;
  height: 100%;
  line-height: inherit;
  padding: 0;
}
.ggrid .menu-activator:hover, .ggrid .menu-activator:focus {
  background-color: #E7EAF2;
}
.ggrid .menu-activator .g-button__text {
  display: none;
}
.ggrid .menu-activator .g-button__icon {
  margin-left: -2px;
}
.ggrid .resize-holder {
  cursor: col-resize;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0.25rem;
  z-index: 1;
}
.ggrid .viewport {
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  overflow: auto;
  position: relative;
  border-bottom: 1px solid #E7EAF2;
  outline: none;
}
.ggrid .viewport:focus {
  outline: 1px dotted #C6CDE0;
}
.ggrid .container {
  position: relative;
}
.ggrid .container > i {
  display: inline-block;
  padding: 0.25rem;
}
.ggrid div.row { /* div zvysuje specificitu na 0021, pak lze pouzivat g-state-transbackground, ktery meni border-color se specificitou 0020 */
  cursor: pointer;
  position: absolute;
  border-bottom: 1px solid #E7EAF2;
}
.ggrid .cell {
  position: absolute;
  height: 100%;
  border-right: 1px solid #E7EAF2;
  outline: none;
  padding: 0 0.25rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ggrid div.row-delimeter {
  border-bottom-color: #a5b0ce;
}
.ggrid .no-ellipsis {
  text-overflow: clip;
}
.ggrid .no-border, .ggrid .no-render {
  border-right: none;
}
.ggrid .no-render {
  z-index: -1;
}
.ggrid .editing {
  overflow: visible;
}
.ggrid .bottom-panel {
  display: flex;
  border-bottom: 1px solid #E7EAF2;
  min-height: 1.5rem;
}
.ggrid .status-panel {
  display: inline-block;
  line-height: 1.5rem;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ggrid .status-widget {
  float: right;
  line-height: 1.5rem;
  display: inline-block;
  padding: 0 0.5rem;
  white-space: nowrap;
  border-left: 1px solid #E7EAF2;
}
.ggrid .status-errors {
  display: inline-block;
  white-space: nowrap;
}
.ggrid .status-errors:not(:empty) {
  border-right: 1px solid #E7EAF2;
}
.ggrid .ui-hover:not(.editing, .dragged)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-color: #2650b9;
  z-index: -1;
}
.ggrid .ui-disabled {
  color: #707070;
}
.ggrid .ui-disabled:not(.editing, .dragged)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 230, 230, 0.6);
  z-index: -1;
}
.ggrid .ui-disabled .ui-disabled:not(.ui-selected)::before {
  display: none;
}
.ggrid .ui-selected:not(.editing, .dragged)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-color: #2650b9;
  z-index: -1;
}
.ggrid .structure-lead > i:first-of-type {
  text-align: right;
  padding-right: 0.25rem;
  width: 0.75rem;
  display: inline-block;
  font-size: 1rem;
  vertical-align: bottom;
}
.ggrid .structure-lead > i:first-of-type:hover {
  color: #1D3E8F;
}
.ggrid .l1 .structure-lead > i:first-of-type {
  width: 1.5rem;
}
.ggrid .l1 .structure-lead.ui-selected::before, .ggrid .l1 .structure-lead.ui-hover::before {
  left: 0.75rem;
}
.ggrid .l2 .structure-lead > i:first-of-type {
  width: 2.25rem;
}
.ggrid .l2 .structure-lead.ui-selected::before, .ggrid .l2 .structure-lead.ui-hover::before {
  left: 1.5rem;
}
.ggrid .l3 .structure-lead > i:first-of-type {
  width: 3rem;
}
.ggrid .l3 .structure-lead.ui-selected::before, .ggrid .l3 .structure-lead.ui-hover::before {
  left: 2.25rem;
}
.ggrid .l4 .structure-lead > i:first-of-type {
  width: 3.75rem;
}
.ggrid .l4 .structure-lead.ui-selected::before, .ggrid .l4 .structure-lead.ui-hover::before {
  left: 3rem;
}
.ggrid .l5 .structure-lead > i:first-of-type {
  width: 4.5rem;
}
.ggrid .l5 .structure-lead.ui-selected::before, .ggrid .l5 .structure-lead.ui-hover::before {
  left: 3.75rem;
}
.ggrid .l6 .structure-lead > i:first-of-type {
  width: 5.25rem;
}
.ggrid .l6 .structure-lead.ui-selected::before, .ggrid .l6 .structure-lead.ui-hover::before {
  left: 4.5rem;
}
.ggrid .l7 .structure-lead > i:first-of-type {
  width: 6rem;
}
.ggrid .l7 .structure-lead.ui-selected::before, .ggrid .l7 .structure-lead.ui-hover::before {
  left: 5.25rem;
}
.ggrid .l8 .structure-lead > i:first-of-type {
  width: 6.75rem;
}
.ggrid .l8 .structure-lead.ui-selected::before, .ggrid .l8 .structure-lead.ui-hover::before {
  left: 6rem;
}
.ggrid .l9 .structure-lead > i:first-of-type {
  width: 7.5rem;
}
.ggrid .l9 .structure-lead.ui-selected::before, .ggrid .l9 .structure-lead.ui-hover::before {
  left: 6.75rem;
}
.ggrid .l10 .structure-lead > i:first-of-type {
  width: 8.25rem;
}
.ggrid .l10 .structure-lead.ui-selected::before, .ggrid .l10 .structure-lead.ui-hover::before {
  left: 7.5rem;
}
.ggrid .l11 .structure-lead > i:first-of-type {
  width: 9rem;
}
.ggrid .l11 .structure-lead.ui-selected::before, .ggrid .l11 .structure-lead.ui-hover::before {
  left: 8.25rem;
}
.ggrid .l12 .structure-lead > i:first-of-type {
  width: 9.75rem;
}
.ggrid .l12 .structure-lead.ui-selected::before, .ggrid .l12 .structure-lead.ui-hover::before {
  left: 9rem;
}
.ggrid .l13 .structure-lead > i:first-of-type {
  width: 10.5rem;
}
.ggrid .l13 .structure-lead.ui-selected::before, .ggrid .l13 .structure-lead.ui-hover::before {
  left: 9.75rem;
}
.ggrid .l14 .structure-lead > i:first-of-type {
  width: 11.25rem;
}
.ggrid .l14 .structure-lead.ui-selected::before, .ggrid .l14 .structure-lead.ui-hover::before {
  left: 10.5rem;
}
.ggrid .l15 .structure-lead > i:first-of-type {
  width: 12rem;
}
.ggrid .l15 .structure-lead.ui-selected::before, .ggrid .l15 .structure-lead.ui-hover::before {
  left: 11.25rem;
}
.ggrid .l16 .structure-lead > i:first-of-type {
  width: 12.75rem;
}
.ggrid .l16 .structure-lead.ui-selected::before, .ggrid .l16 .structure-lead.ui-hover::before {
  left: 12rem;
}
.ggrid .l17 .structure-lead > i:first-of-type {
  width: 13.5rem;
}
.ggrid .l17 .structure-lead.ui-selected::before, .ggrid .l17 .structure-lead.ui-hover::before {
  left: 12.75rem;
}
.ggrid .l18 .structure-lead > i:first-of-type {
  width: 14.25rem;
}
.ggrid .l18 .structure-lead.ui-selected::before, .ggrid .l18 .structure-lead.ui-hover::before {
  left: 13.5rem;
}
.ggrid .l19 .structure-lead > i:first-of-type {
  width: 15rem;
}
.ggrid .l19 .structure-lead.ui-selected::before, .ggrid .l19 .structure-lead.ui-hover::before {
  left: 14.25rem;
}
.ggrid .structure-lead-inactive {
  opacity: 0.35;
}
.ggrid .row.group {
  background-color: rgba(0, 0, 0, 0.2);
}
.ggrid .row.editing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAFAFA;
  z-index: -1;
}
.ggrid .row.editing {
  box-shadow: 0 0 15px 3px #2650b9;
  transition: box-shadow 0.2s ease-in-out;
  z-index: 1;
}
.ggrid .row.editing.flash {
  box-shadow: none;
}
.ggrid .row.dragged {
  z-index: 1;
  background-color: #E7EAF2;
}
.ggrid .confirm-panel {
  position: absolute;
  box-shadow: 0px 0px 10px 0px gray;
  background: #FAFAFA;
}
.ggrid .fieldcell {
  text-overflow: clip;
  padding: 0;
}
.ggrid .fieldcell :not(.ui-state-disabled) .gfield-table {
  background: transparent;
}
.ggrid .fieldcell .gfield-table {
  height: 1.5rem;
}
.ggrid .fieldcell .gselectbox-itemc {
  padding: 1px;
}
.ggrid .fieldcell .gselectbox-item {
  padding-top: 0px;
  padding-bottom: 1px;
}
.ggrid .fieldcell input, .ggrid .fieldcell textarea {
  min-height: 1.38rem;
}
.ggrid .fieldcell input[type=checkbox], .ggrid .fieldcell input[type=radio] {
  min-height: 0;
}
.ggrid .gfield {
  height: 100%;
  line-height: normal;
}
.ggrid .gcheck {
  display: flex;
  align-items: center;
  padding: 0 0.125rem;
}
.ggrid .scroll-helper {
  position: absolute;
  background: #ffffb3;
  border: 1px solid #C6CDE0;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
  padding: 0.25rem;
}
.ggrid .drag-helper {
  position: absolute;
  opacity: 0.85;
  padding: 0 0.125rem;
  background-color: rgba(0, 0, 0, 0.3);
}
.ggrid .warning {
  background-color: rgba(255, 178, 102, 0.3);
}
.ggrid .error {
  background-color: rgba(198, 60, 60, 0.3);
}
.ggrid .marked {
  background-color: #ffffb3;
  z-index: 2;
}
.ggrid .group-header-count {
  font-size: 0.8em;
  padding: 0 0.25rem;
}
.ggrid .ui-resizable-s {
  bottom: -5px;
  height: 7px;
}
.ggrid.ui-resizable {
  margin-bottom: 5px;
}

.ggrid.fixed-resize-mode .row {
  width: 9999px;
}
.ggrid.fixed-resize-mode .viewport {
  overflow-x: hidden !important;
}

label.ggrid-error-report {
  cursor: pointer;
}
label.ggrid-error-report:hover {
  text-decoration: underline;
}

.mouse-overlay {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.drag-handle-v {
  cursor: move;
}
.drag-handle-v span {
  display: inline-block;
  width: 8px;
  height: 16px;
  vertical-align: middle;
  margin-top: -2px;
}
.drag-handle-v span, .drag-handle-v span ::before {
  background-image: radial-gradient(#707070 40%, transparent 40%);
  background-size: 4px 4px;
  background-repeat: repeat;
}
.drag-handle-v span ::before {
  content: "";
  display: block;
  width: 100%;
  height: 33%;
}

.grid-cell-icon {
  font-size: 1rem;
}
.grid-cell-icon.gi-stack {
  line-height: 1.25rem;
  width: 1.3rem;
}
.grid-cell-icon.fa-stack {
  font-size: 0.75rem;
}

.profile-box-menu {
  background-color: #0D1732;
  color: #fff;
}

.filter-header.filter-header--link > span, .filter-header.filter-header--link .gloadlink__caption {
  margin-left: 0.75rem;
}
.filter-header.filter-header--link {
  margin-top: 0.75rem;
}
.filter-header .filter-header--linkpanel {
  display: inline;
}
.filter-header .gloadlink__caption {
  display: inline-block;
}

.ggridfiltervariant {
  margin-top: 0.5rem;
}

.ggridfilterfield--empty .gselectbox-item {
  display: inline;
  color: #C6CDE0;
}

.ui-selected .ggridfilterfield--empty .gselectbox-item {
  color: #222;
}

.ggridfilterfield {
  background-color: #FFFFFF;
}

.ui-disabled .ggridfilterfield {
  background-color: #e6e6e6;
}

.ui-selected .ggridfilterfield {
  background-color: transparent;
}

.col-ref {
  font-weight: 700;
}

.col-ref:before {
  content: "[";
}

.col-ref:after {
  content: "]";
}

.formula-text {
  font-family: monospace;
}

.formula__input .tag-parent {
  padding: 0.45rem 0;
}
.formula__input .gcontrolbox-state:first-child {
  padding-right: 0;
}

.formula__result-preview {
  padding: 0.25rem 0;
}

.formula-analysis__tree {
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow: auto;
  white-space: nowrap;
}
.formula-analysis__tree .formula-analysis__buttons {
  display: inline-block;
}
.formula-analysis__tree [data-type-of] {
  font-weight: 400;
  border-bottom: 1px dashed;
  cursor: help;
}
.formula-analysis__tree--result {
  padding-left: 1rem;
}
.formula-analysis__tree--result + .formula-analysis__tree--formula {
  padding-top: 0.75rem;
}
.formula-analysis__tree--result span:last-child {
  font-weight: 700;
}
.formula-analysis__tree--formula:last-child, .formula-analysis__tree--formula:last-child .gi, .formula-analysis__tree--formula:last-child .fa {
  font-weight: 700;
}
.formula-analysis__tree--result:before {
  content: "  ";
  padding-left: 1.125em;
}
.formula-analysis__tree--formula + .formula-analysis__tree--result:before {
  content: "⮡ ";
  font-weight: 700;
  padding-left: 0;
}
.formula-analysis__tree .formula-analysis__tree--formula + .formula-analysis__tree--formula {
  padding-top: 0.75rem;
}
.formula-analysis__tree .formula-analysis__tree--formula .g-state-error {
  display: inline-block;
  border-bottom: 3px double #C63C3C;
}

.formula-help__fnc-name, .formula-help__fnc-usage, .formula-help__fnc-desc, .formula-help__fnc-name:after, .formula-help__fnc-usage:after, .formula-help__icon, .formula-help__icon-name, .formula-help__icon:after, .formula-help__icon-name:after {
  vertical-align: top;
  display: inline-block;
}
.formula-help__fnc-name:after, .formula-help__fnc-usage:after, .formula-help__icon:after, .formula-help__icon-name:after {
  content: "|";
  padding: 0 0.5em;
}
.formula-help__fnc-desc, .formula-help__icon-desc {
  white-space: normal;
}
.formula-help__col-desc, .formula-help__icon-name {
  font-weight: 700;
}

/*************************************************/
.ggrid-condf__list .doubleLineInfo .iconInfo, .ggrid .ggrid-condf__list .doubleLineInfo .iconInfo {
  max-width: 3.5rem;
}
.ggrid-condf__list .doubleLineInfo .iconInfo:not(:empty) + .mainInfo, .ggrid .ggrid-condf__list .doubleLineInfo .iconInfo:not(:empty) + .mainInfo {
  max-width: calc(100% - 3.5rem);
}
.ggrid-condf__list .doubleLineInfo .ggrid-condf__item-template, .ggrid-condf__list .doubleLineInfo .ggrid .ggrid-condf__item-template, .ggrid .ggrid-condf__list .doubleLineInfo .ggrid-condf__item-template, .ggrid .ggrid-condf__list .doubleLineInfo .ggrid .ggrid-condf__item-template {
  display: inline-block;
  margin: 0 0.5rem 0 0;
}
.ggrid-condf__list .singleLineInfo .ggrid-condf__item-template, .ggrid-condf__list .singleLineInfo .ggrid .ggrid-condf__item-template, .ggrid .ggrid-condf__list .singleLineInfo .ggrid-condf__item-template, .ggrid .ggrid-condf__list .singleLineInfo .ggrid .ggrid-condf__item-template {
  vertical-align: middle;
  display: inline-block;
  margin: 0 0.25rem 0 0.25rem;
}
.ggrid-condf__list .singleLineInfo .ggrid-condf__main-info, .ggrid-condf__list .singleLineInfo .ggrid .ggrid-condf__main-info, .ggrid .ggrid-condf__list .singleLineInfo .ggrid-condf__main-info, .ggrid .ggrid-condf__list .singleLineInfo .ggrid .ggrid-condf__main-info {
  width: calc(100% - 3rem);
}
.ggrid-condf__list .ggrid-condf__main-info, .ggrid-condf__list .ggrid .ggrid-condf__main-info, .ggrid .ggrid-condf__list .ggrid-condf__main-info, .ggrid .ggrid-condf__list .ggrid .ggrid-condf__main-info {
  display: inline-flex;
  flex: 0 1 auto;
  width: 100%;
  flex-wrap: wrap;
}
.ggrid-condf__list .formula-text, .ggrid .ggrid-condf__list .formula-text {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ggrid-condf__list .ggrid-condf__column-list, .ggrid-condf__list .ggrid .ggrid-condf__column-list, .ggrid .ggrid-condf__list .ggrid-condf__column-list, .ggrid .ggrid-condf__list .ggrid .ggrid-condf__column-list {
  display: inline-block;
  white-space: pre-wrap;
}
.ggrid-condf__list .ggrid-condf__column-list .g-badge, .ggrid-condf__list .ggrid .ggrid-condf__column-list .g-badge, .ggrid .ggrid-condf__list .ggrid-condf__column-list .g-badge, .ggrid .ggrid-condf__list .ggrid .ggrid-condf__column-list .g-badge {
  position: static;
  display: inline-block;
  margin: 0 0.15rem 0.15rem 0;
}
.ggrid-condf__list .formula-text, .ggrid .ggrid-condf__list .formula-text {
  margin: 0 0.5rem 0.15rem 0;
}
.ggrid-condf__item-template, .ggrid .ggrid-condf__item-template {
  padding: 0 0.25rem;
  border: 1px solid #C6CDE0;
}
.ggrid-condf-bg, .ggrid .ggrid-condf-bg {
  /*        &-lighgray {
      background-color: rgb(237,237,237);
  }

  &-gray {
      background-color: rgb(219,219,219);
  }

  &-darkgray {
      background-color: rgb(201,201,201);
  }

  &-lightred {
      background-color: rgb(255, 204, 204);
  }

  &-red {
      background-color: rgb(255, 153, 153);
  }

  &-darkred {
      background-color: rgb(255, 101, 101);
  }

  &-lightyellow {
      background-color: rgb(255,242,204);
  }

  &-yellow {
      background-color: rgb(254,229,153);
  }

  &-darkyellow {
      background-color: rgb(255,217,101);
  }

  &-lightgreen {
      background-color: rgb(226,239,217);
  }

  &-green {
      background-color: rgb(197,224,179);
  }

  &-darkgreen {
      background-color: rgb(168,208,141)
  }

  &-lightblue {
      background-color: rgb(222,235,246);
  }

  &-blue {
      background-color: rgb(189,215,238);
  }

  &-darkblue {
      background-color: rgb(156,195,229);
  }

  &-lightorange {
      background-color: rgb(251,229,213);
  }

  &-orange {
      background-color: rgb(247,203,172);
  }

  &-darkorange {
      background-color: rgb(244,177,131);
  }

  &-lightpurple {
      background-color: rgb(235,221,246)
  }

  &-purple {
      background-color: rgb(215,187,237);
  }

  &-darkpurple {
      background-color: rgb(195,154,228);
  }*/
}
.ggrid-condf-bg-black, .ggrid .ggrid-condf-bg-black {
  background-color: rgba(0, 0, 0, 0.65);
}
.ggrid-condf-bg-white, .ggrid .ggrid-condf-bg-white {
  background-color: rgba(255, 255, 255, 0.65);
}
.ggrid-condf-bg-lightgray, .ggrid .ggrid-condf-bg-lightgray {
  background-color: rgba(229, 229, 229, 0.5);
}
.ggrid-condf-bg-gray, .ggrid .ggrid-condf-bg-gray {
  background-color: rgba(177, 177, 177, 0.5);
}
.ggrid-condf-bg-darkgray, .ggrid .ggrid-condf-bg-darkgray {
  background-color: rgba(127, 127, 127, 0.5);
}
.ggrid-condf-bg-lightred, .ggrid .ggrid-condf-bg-lightred {
  background-color: rgba(255, 153, 153, 0.5);
}
.ggrid-condf-bg-red, .ggrid .ggrid-condf-bg-red {
  background-color: rgba(255, 51, 51, 0.5);
}
.ggrid-condf-bg-darkred, .ggrid .ggrid-condf-bg-darkred {
  background-color: rgba(255, 0, 0, 0.5);
}
.ggrid-condf-bg-lightyellow, .ggrid .ggrid-condf-bg-lightyellow {
  background-color: rgba(255, 229, 153, 0.5);
}
.ggrid-condf-bg-yellow, .ggrid .ggrid-condf-bg-yellow {
  background-color: rgba(253, 203, 51, 0.5);
}
.ggrid-condf-bg-darkyellow, .ggrid .ggrid-condf-bg-darkyellow {
  background-color: rgba(255, 179, 0, 0.5);
}
.ggrid-condf-bg-lightgreen, .ggrid .ggrid-condf-bg-lightgreen {
  background-color: rgba(197, 223, 179, 0.5);
}
.ggrid-condf-bg-green, .ggrid .ggrid-condf-bg-green {
  background-color: rgba(139, 193, 103, 0.5);
}
.ggrid-condf-bg-darkgreen, .ggrid .ggrid-condf-bg-darkgreen {
  background-color: rgba(81, 161, 27, 0.5);
}
.ggrid-condf-bg-lightblue, .ggrid .ggrid-condf-bg-lightblue {
  background-color: rgba(189, 215, 237, 0.5);
}
.ggrid-condf-bg-blue, .ggrid .ggrid-condf-bg-blue {
  background-color: rgba(123, 175, 221, 0.5);
}
.ggrid-condf-bg-darkblue, .ggrid .ggrid-condf-bg-darkblue {
  background-color: rgba(57, 135, 203, 0.5);
}
.ggrid-condf-bg-lightorange, .ggrid .ggrid-condf-bg-lightorange {
  background-color: rgba(247, 203, 171, 0.5);
}
.ggrid-condf-bg-orange, .ggrid .ggrid-condf-bg-orange {
  background-color: rgba(239, 151, 89, 0.5);
}
.ggrid-condf-bg-darkorange, .ggrid .ggrid-condf-bg-darkorange {
  background-color: rgba(233, 99, 7, 0.5);
}
.ggrid-condf-bg-lightpurple, .ggrid .ggrid-condf-bg-lightpurple {
  background-color: rgba(215, 187, 237, 0.5);
}
.ggrid-condf-bg-purple, .ggrid .ggrid-condf-bg-purple {
  background-color: rgba(175, 119, 219, 0.5);
}
.ggrid-condf-bg-darkpurple, .ggrid .ggrid-condf-bg-darkpurple {
  background-color: rgba(135, 53, 201, 0.5);
}
.ggrid-condf-text-black, .ggrid .ggrid-condf-text-black {
  color: black;
}
.ggrid-condf-text-white, .ggrid .ggrid-condf-text-white {
  color: white;
}
.ggrid-condf-text-gray, .ggrid .ggrid-condf-text-gray {
  color: #707070;
}
.ggrid-condf-text-red, .ggrid .ggrid-condf-text-red {
  color: rgb(225, 0, 0);
}
.ggrid-condf-text-yellow, .ggrid .ggrid-condf-text-yellow {
  color: rgb(255, 191, 0);
}
.ggrid-condf-text-green, .ggrid .ggrid-condf-text-green {
  color: rgb(112, 173, 71);
}
.ggrid-condf-text-blue, .ggrid .ggrid-condf-text-blue {
  color: rgb(91, 155, 213);
}
.ggrid-condf-text-orange, .ggrid .ggrid-condf-text-orange {
  color: rgb(237, 125, 49);
}
.ggrid-condf-text-purple, .ggrid .ggrid-condf-text-purple {
  color: rgb(155, 87, 211);
}
.ggrid-condf-style-bold, .ggrid-condf-style-bold .gi, .ggrid-condf-style-bold .fa, .ggrid .ggrid-condf-style-bold, .ggrid .ggrid-condf-style-bold .gi, .ggrid .ggrid-condf-style-bold .fa {
  font-weight: 700;
}
.ggrid-condf-style-italic, .ggrid .ggrid-condf-style-italic {
  font-style: italic;
}
.ggrid-condf-style-underline, .ggrid .ggrid-condf-style-underline {
  text-decoration: underline;
}
.ggrid-condf-style-linethrough, .ggrid .ggrid-condf-style-linethrough {
  text-decoration: line-through;
}

/*filtry*/
.gform-section.gform-filterSection {
  flex-grow: 0;
}

a.g-link .gfilterPinFalse {
  /*color: #E7EAF2;*/
  color: rgba(148, 148, 148, 0.5);
}

a.g-link .gfilterPinTrue {
  /*color: #C6CDE0;*/
  color: rgb(128, 128, 128);
}

.gform-row > label ~ label.gfilterFavoritePinLabel:before {
  padding-left: 0rem;
}

.gfilterFavoritePinLabel {
  font-size: 1.1rem;
}

.gform-section.gfilterpanel-section {
  padding-bottom: 0rem;
  padding-top: 0rem;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.gform-section.gfilterpanel-mainSection {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
  padding-bottom: 0rem;
}

.gfilterpanel-DeleteButInFavorite {
  padding-top: 0.5rem;
  padding-right: 1.5rem;
  display: inline-block;
}

.gfilterpanel {
  background-color: #F4F6F9;
  /* $base-color-light  */
}

.gfiltepanel-link-like-button button.g-button {
  background-color: transparent;
}

.gfiltepanel-selbox-s-vyhledanejma-kriteriema .gfilterpanel-multi-item {
  display: flex;
  flex-wrap: wrap;
}
.gfiltepanel-selbox-s-vyhledanejma-kriteriema .gfilterpanel-multi-item .gselectbox-item {
  margin: 2px;
}

ul.gfilterpanel-vyhledana-kriteria {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.gfiltepanel-vyber-predvolenych-filtru .gfield-table {
  border-color: transparent;
}
.gfiltepanel-vyber-predvolenych-filtru .gcontrolbox-buttons.right {
  border-color: transparent;
}
.gfiltepanel-vyber-predvolenych-filtru .gselectbox-vc {
  background-color: #fafafa;
}
.gfiltepanel-vyber-predvolenych-filtru .gcontrolbox-buttons.right > .gcontrolbox-button {
  height: calc(2rem - 1px);
}

.gfiltepanel-selbox-s-vyhledanejma-kriteriema .gfield-table {
  border-color: transparent;
}
.gfiltepanel-selbox-s-vyhledanejma-kriteriema .gcontrolbox-buttons.right {
  border-color: transparent;
}
.gfiltepanel-selbox-s-vyhledanejma-kriteriema .gselectbox-vc {
  background-color: #fafafa;
}

.gfilterpanel .gfilterpanel-widget-visible-focus::before {
  content: " ";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  z-index: 999;
}

.gpidbar {
  position: relative;
  display: inline-block;
  width: 13.7rem;
  padding: 0.25rem;
  box-sizing: border-box;
  border: solid 0.05rem #C6CDE0;
  border-radius: 0.4rem;
  text-align: center;
  overflow: hidden;
  padding-top: 0.7rem;
  background-color: #FFFFFF;
}

.gpidbar-code {
  font-family: AlfaPID;
  font-size: 3rem;
  line-height: 1;
  overflow: hidden;
  user-select: none;
  vertical-align: text-top;
}

.gpidbar-clipboardbutton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.gpidbar-clipboardbutton:hover, .gpidbar-clipboardbutton:focus, .gpidbar-clipboardbutton:active, .gpidbar-clipboardbutton.js-pending {
  opacity: 0.9;
}

.gpidbar-clipboardbutton .g-button__icon {
  font-size: 1.5rem;
  vertical-align: middle;
  padding: 0.5rem 0 0.75rem;
}

.gcomparator {
  width: 100%;
  height: 50px;
}
.gcomparator table {
  border-spacing: 0;
  min-width: 100%;
  position: relative;
  border-right: 0.125rem solid #C6CDE0;
  border-bottom: 0.125rem solid #C6CDE0;
}
.gcomparator thead tr {
  position: relative;
}
.gcomparator thead th {
  position: sticky;
  top: 0;
}
.gcomparator tbody:last-child {
  border-bottom: 0.125rem solid #C6CDE0;
}
tbody tr:last-child .gcomparator__cell--selected {
  border-bottom: 0.0625rem solid #1D3E8F !important;
}
.gcomparator__cell {
  word-wrap: break-word;
  border-right: 0.0625rem solid #E7EAF2;
  border-bottom: 0.0625rem solid #E7EAF2;
  padding: 0 0.4rem;
}
.gcomparator__row:last-child > .gcomparator__cell {
  border-bottom: 0;
}
.gcomparator__header-cell {
  border-left: 0.125rem solid #C6CDE0;
  border-right: 0.125rem solid #C6CDE0;
  border-bottom: 0.0625rem solid #C6CDE0;
  background-color: #E7EAF2;
  position: relative;
  z-index: 1;
  height: 1.4375rem;
}
.gcomparator__group-cell {
  display: flex;
  padding-top: 0.125rem;
}
.gcomparator__header-cell .gcomparator__group-action {
  width: 1.375rem;
}
.gcomparator__header-cell button {
  height: 1.2rem;
  margin-left: -0.375rem;
  width: 1.25rem;
}
.gcomparator__header-cell button:hover, .gcomparator__header-cell button:focus {
  background-color: transparent;
  cursor: pointer;
}
.gcomparator__header-cell > span {
  margin-left: -0.5rem;
}
.gcomparator__header-cell i {
  color: #707070;
}
.gcomparator__action-cell, .gcomparator__item-header-cell {
  border-top: 0.125rem solid #C6CDE0;
  border-right: 0.0625rem solid #C6CDE0;
  border-bottom: 0.125rem solid #C6CDE0;
  background: #E7EAF2;
  min-width: 12rem;
  position: relative;
  padding: 0;
  z-index: 3;
  padding-bottom: 0.2rem;
}
.gcomparator__action-cell {
  border-left: 0.125rem solid #C6CDE0;
  z-index: 4;
}
.gcomparator__action-cell .g-buttonpanel__item--menu {
  display: none;
}
.gcomparator__action-cell .gshortcut {
  padding: 0 5px;
}
.gcomparator__item-header-cell {
  vertical-align: top;
}
.gcomparator__item-header-cell--selected {
  border-bottom: 0.125rem solid #1D3E8F;
  border-right-color: #1D3E8F;
  border-left: 0.0625rem solid #1D3E8F;
  border-top-color: #1D3E8F;
  background-color: #C6CDE0;
}
.gcomparator__item-header-cell--selected .gcomparator__select-button button {
  height: auto;
  font-weight: 700 !important;
}
.gcomparator__row--user-hidden, .gcomparator__row--hidden, .gcomparator__row--group-hidden {
  display: none;
}
.gcomparator__table-body--difference-visible .gcomparator__cell--different {
  background: #d7dbe9;
  position: relative;
  z-index: 0;
}
.gcomparator__table-body--difference-visible .gcomparator__cell--group {
  background: #E7EAF2;
  position: relative;
  z-index: 0;
}
.gcomparator__row--clickable {
  height: 100%;
}
.gcomparator__row--clickable td {
  height: 100%;
}
.gcomparator__table-body--clickable .gcomparator__row--clickable .gcomparator__header-cell {
  border-left: 0.125rem solid #2650b9;
}
.gcomparator__row--clickable .gcomparator__cell.gbutton {
  padding: 0;
}
.gcomparator__row--clickable .g-button {
  width: 100%;
  height: 100% !important;
  padding: 0;
  line-height: inherit;
  vertical-align: top;
  display: inline-block;
}
.gcomparator__row--clickable .g-button:not(.g-state-background) {
  background-color: transparent;
  text-align: left;
  border: 0;
}
.gcomparator__table-body--clickable .gcomparator__row--clickable:not(.gcomparator__row--field-disabled) .gcomparator__cell:hover {
  background-color: #E7EAF2;
  cursor: pointer;
}
.gcomparator__table-body .gcomparator__row--clickable:not(.gcomparator__row--field-disabled) .gcomparator__cell:active {
  background-color: #C6CDE0;
  cursor: pointer;
}
.gcomparator__table-body .gcomparator__row:not(.gcomparator__row--clickable) .gcomparator__cell:not(.gcomparator__header-cell), .gcomparator__row--field-disabled .gcomparator__cell:not(.gcomparator__header-cell) {
  background-color: #e6e6e6;
  z-index: -1;
  position: relative;
}
.gcomparator__cell--group {
  background-color: #E7EAF2;
  border-right: 0.0625rem solid #C6CDE0;
  border-bottom: 0.0625rem solid #C6CDE0;
  border-top: 0.0625rem solid #C6CDE0;
}
.gcomparator__row--selected .gcomparator__header-cell, .gcomparator__table-body--clickable .gcomparator__row--clickable .gcomparator__header-cell:hover {
  position: relative;
  box-shadow: #2650b9 0 0 0.06rem 0.06rem;
  border-left: 0.125rem solid #2650b9;
  z-index: 2;
  background-color: #E7EAF2;
  cursor: pointer;
}
.gcomparator__row--selected .gcomparator__cell--selected {
  font-weight: bold;
}
.gcomparator__cell--selected {
  border-left: 0.0625rem solid #2650b9;
  border-right: 0.0625rem solid #2650b9;
}
.gcomparator__row--selected .gcomparator__cell:not(.gcomparator__header-cell) {
  border-right: 0.0625rem solid #2650b9;
  border-bottom: 0.0625rem solid transparent;
  border: 0.0625rem solid #2650b9;
}
.gcomparator__table--sorting .gcomparator__cell:not(.gcomparator__header-cell) {
  background: #fff;
  color: #fff;
}
.gcomparator__item-header-cell .gcomparator__item-handle {
  padding-top: 0.125rem;
  cursor: move;
  height: 1.2rem;
  text-align: right;
}
.gcomparator__item-header-cell .gcomparator__item-remove-button, .gcomparator__item-header-cell .gcomparator__item-context-button {
  cursor: pointer;
  display: inline-block;
  height: 1rem;
}
.gcomparator__item-context-button button, .gcomparator__item-remove-button button {
  height: 1rem;
  line-height: 1rem;
  background-color: transparent;
}
.gcomparator__item-action-panel {
  display: flex;
  vertical-align: baseline;
  width: 100%;
  position: relative;
  white-space: nowrap;
}
.gcomparator__item-header-cell button:hover, .gcomparator__item-header-cell button:focus {
  background-color: transparent;
}
.gcomparator__item-header-cell--selected button {
  background-color: #C6CDE0;
}
.gcomparator__move-left-button button, .gcomparator__select-button button, .gcomparator__move-right-button button {
  height: 1.2rem;
  line-height: 1.2rem;
}
.gcomparator__select-button button {
  width: 100%;
}
.gcomparator__select-button {
  width: calc(100% - 4rem);
}
.gcomparator__row-filter-form.size-L .gform-section {
  column-count: 3;
}
.gcomparator__row-filter-form.size-M .gform-section {
  column-count: 2;
}
.gcomparator__row-filter-form.size-S .gform-section {
  column-count: 1;
}

.g-notification__left .fa-balance-scale {
  font-size: 1.6rem;
}

.gwizard__steps {
  border-bottom: 1px solid #c6cde0;
  background-color: #fafafa;
}

.gwizard__steps .g-link--chbpnl-item {
  font-size: 1.5em;
  border-bottom: none;
  color: #333; /*$dark-text-default;*/
  position: relative;
}

.gwizard__steps .fa.fa-angle-right.g-static__icon {
  font-size: 1.5em;
  border-bottom: none;
  position: relative;
}

.gwizard__steps .g-link--chbpnl-item-active .js-glink-text.g-link__text {
  color: #6699FF; /*$base-color-active;*/
}

.gwizard__steps .g-link--chbpnl-item-active .gwizard__icon {
  color: #6699FF; /*$base-color-active;*/
}

.gwizard__step__icon {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  color: #6699FF;
  font-weight: bold;
  vertical-align: text-top;
  margin-top: -0.2rem;
}

.gwizard__steps .g-link--chbpnl-item-active.g-static {
  border-bottom: none;
}

.gwizard__steps .g-link:focus {
  outline: none;
  outline-width: 0;
  /*border-bottom: 0.0625rem solid cornflowerblue;*/
  padding-bottom: 0.05rem;
}

.gwizard__steps .gi-stack {
  top: -0.125rem;
}

.gwizard__steps.gbuttonpanel.gsubtasks {
  margin: 0;
}

.gwizard__steps .gbuttonpanel.gsubtasks.g-link--chbpnl-item.gbuttonpanel.gsubtasks.g-static {
  color: #333;
}

.gwizard__icon {
  font-size: 0.8rem;
  vertical-align: text-top;
}

.gwizard__steps .js-static.gstatic.g-static.gwizard__separator {
  margin: 0;
  position: relative;
  left: 0.2rem;
  top: 0.1rem;
  color: #333;
  margin-right: 0.3rem;
}

.gwizard__steps .js-glink-text.g-link__text {
  font-size: 1rem;
  vertical-align: top;
  margin-left: 0.1rem;
}

.gwizard__steps .g-link.js-glink.g-link--chbpnl-item.gwizard__step__back {
  color: #6699FF;
}

.gwizard__steps .g-link.js-glink.g-link--chbpnl-item.gwizard__step__disable {
  color: #333;
}

.gwizard__steps .js-gbuttonpanel-link {
  top: 0.1rem;
  position: relative;
}

.g-event-proposal {
  opacity: 0.5;
  border: 1px solid gray;
  width: 14.25rem;
}

.g-calendar-new-inlinedialog {
  background-color: white;
  overflow: hidden;
  width: 278px;
}

.g-calendar-new-inlinedialog .g-tl-scrollable-items {
  scrollbar-width: thin;
  scrollbar-color: #C6CDE0;
  margin-right: 0.125rem;
}
.g-calendar-new-inlinedialog .g-tl-scrollable-items::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 6px;
  border: 3px solid #C6CDE0;
}
.g-calendar-new-inlinedialog .g-tl-scrollable-items::-webkit-scrollbar-track {
  background-color: white;
}
.g-calendar-new-inlinedialog .g-tl-scrollable-items::-webkit-scrollbar {
  width: 0.3215rem;
}

.g-calendar-new-inlinedialog .g-calendar-flatpickr :focus, .g-calendar-new-inlinedialog .g-calendar-flatpickr :focus-visible,
.g-calendar-new-inlinedialog .g-calendar-flatpickr .flatpickr-current-month input.cur-year:focus,
.g-calendar-new-inlinedialog .g-calendar-flatpickr .flatpickr-current-month select.flatpickr-monthDropdown-months:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-calendar-new-inlinedialog .g-calendar-flatpickr {
  width: 100%;
  text-align: center;
  padding-left: 14px;
}

.g-calendar-new-inlinedialog .g-calendar-flatpickr .flatpickr-calendar {
  font-size: 13px;
  width: 250px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.g-calendar-new-inlinedialog .dayContainer {
  width: 250px;
  min-width: 250px;
  max-width: 250px;
}

.g-calendar-new-inlinedialog .flatpickr-weekdays {
  width: 81%;
}

.g-calendar-new-inlinedialog .flatpickr-months, .g-calendar-new-inlinedialog .flatpickr-months .flatpickr-month {
  height: 1.5rem;
}

.g-calendar-new-inlinedialog .flatpickr-current-month {
  line-height: 1.5rem;
  height: 1.5rem;
  font-size: 13px;
}

.g-calendar-new-inlinedialog .flatpickr-months .flatpickr-prev-month, .g-calendar-new-inlinedialog .flatpickr-months .flatpickr-next-month {
  line-height: 1rem;
  height: 1.5rem;
  font-size: 16px;
}

.g-calendar-new-inlinedialog .flatpickr-current-month .flatpickr-current-month .numInputWrapper {
  width: 6.5ch;
}

.g-calendar-new-inlinedialog .numInput.cur-year {
  font-weight: bold;
  padding: 0 0 0 0;
}

.g-calendar-new-inlinedialog .flatpickr-current-month span.cur-month {
  padding-right: 0.2rem;
}

.g-calendar-new-inlinedialog .flatpickr-months .flatpickr-prev-month {
  padding: 0.3rem 0.75rem;
  color: #959ea9;
}

.g-calendar-new-inlinedialog .flatpickr-months .flatpickr-prev-month:hover {
  color: black;
}

.g-calendar-new-inlinedialog .flatpickr-months .flatpickr-next-month {
  padding: 0.3rem 0.75rem;
  color: #959ea9;
}

.g-calendar-new-inlinedialog .flatpickr-months .flatpickr-next-month:hover {
  color: black;
}

.g-calendar-new-inlinedialog .g-calendar-bars {
  display: inline-flex;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.g-calendar-new-inlinedialog .g-calendar-switch {
  margin-left: 25px;
  position: relative;
  width: 40%;
  font-weight: bold;
  font-size: 13px;
}

.g-calendar-new-inlinedialog .g-calendar-switch-date {
  position: absolute;
  top: 50%;
  /*    left: 35%;*/
  transform: translate(0%, -50%);
}

.g-calendar-new-inlinedialog .g-calendar-menu {
  width: 100%;
  display: inline-flex;
}

.g-calendar-new-inlinedialog .g-calendar-menu-left {
  display: inline-flex;
}

.g-calendar-new-inlinedialog .g-calendar-menu-left .g-calendar-menu-buttons {
  margin-left: 0.2rem;
}

.g-calendar-new-inlinedialog .g-calendar-menu-left .g-calendar-menu-buttons .fa-angle-left {
  position: relative;
  left: -1px;
}

.g-calendar-new-inlinedialog .g-calendar-menu-right {
  margin-right: 25px;
  width: 100%;
}

.g-calendar-new-inlinedialog .g-calendar-menu-right .g-calendar-menu-buttons {
  float: right;
  margin-left: 0.2rem;
}

.g-calendar-new-inlinedialog .g-calendar-bars .g-button {
  padding: 0.4rem;
  background-color: white;
}

.g-calendar-new-inlinedialog .g-calendar-bars .g-button:hover {
  background-color: #E7EAF2;
}

.g-calendar-new-inlinedialog .g-calendar-bars .g-button .g-button__icon.gi {
  font-weight: bold;
  font-size: 0.75rem;
}

.g-calendar-new-inlinedialog .flatpickr-day.selected,
.g-calendar-new-inlinedialog .flatpickr-day.startRange,
.g-calendar-new-inlinedialog .flatpickr-day.endRange,
.g-calendar-new-inlinedialog .flatpickr-day.selected.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.startRange.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.endRange.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.selected button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.startRange button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.endRange button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.selected:hover,
.g-calendar-new-inlinedialog .flatpickr-day.startRange:hover,
.g-calendar-new-inlinedialog .flatpickr-day.endRange:hover,
.g-calendar-new-inlinedialog .flatpickr-day.selected.prevMonthDay,
.g-calendar-new-inlinedialog .flatpickr-day.startRange.prevMonthDay,
.g-calendar-new-inlinedialog .flatpickr-day.endRange.prevMonthDay,
.g-calendar-new-inlinedialog .flatpickr-day.selected.nextMonthDay,
.g-calendar-new-inlinedialog .flatpickr-day.startRange.nextMonthDay,
.g-calendar-new-inlinedialog .flatpickr-day.endRange.nextMonthDay {
  background-color: #f4f6f9;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: black;
  border-color: #c6cde0;
  border-radius: 0;
}
.g-calendar-new-inlinedialog .flatpickr-day.selected button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.startRange button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.endRange button:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-calendar-new-inlinedialog .flatpickr-day.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.prevMonthDay.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.nextMonthDay.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.today.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.prevMonthDay.today.inRange,
.g-calendar-new-inlinedialog .flatpickr-day.nextMonthDay.today.inRange,
.g-calendar-new-inlinedialog .flatpickr-day:hover,
.g-calendar-new-inlinedialog .flatpickr-day.prevMonthDay:hover,
.g-calendar-new-inlinedialog .flatpickr-day.nextMonthDay:hover,
.g-calendar-new-inlinedialog .flatpickr-day button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.prevMonthDay button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.nextMonthDay button:focus {
  cursor: pointer;
  outline: 0;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  border-radius: 0;
}
.g-calendar-new-inlinedialog .flatpickr-day button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.prevMonthDay button:focus,
.g-calendar-new-inlinedialog .flatpickr-day.nextMonthDay button:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-calendar-new-inlinedialog .flatpickr-day.today {
  border-radius: 0;
}

.g-calendar-new-inlinedialog .flatpickr-day.today:hover,
.g-calendar-new-inlinedialog .flatpickr-day.today button:focus {
  border-color: #959ea9;
  background-color: #959ea9;
  color: #fff;
  border-radius: 0;
}

.g-calendar-new-inlinedialog .flatpickr-day.today button:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-calendar-new-inlinedialog .g-calendar-flatpickr .flatpickr-current-month {
  padding: 0;
}

.g-calendar-new-inlinedialog .g-header {
  display: flex;
  margin-bottom: 10px;
}

.g-calendar-new-inlinedialog .g-header .g-clock .g-time {
  font-size: 42px;
  padding-left: 21px;
  padding-top: 11px;
  color: black;
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-size: 2.5rem;
  font-weight: normal;
}

.g-calendar-new-inlinedialog .g-header .g-clock .g-date {
  padding-left: 25px;
}

.g-calendar-new-inlinedialog .g-header .g-clock .g-date:hover {
  font-weight: bold;
  cursor: pointer;
}

.g-calendar-new-inlinedialog .g-event-list {
  padding-left: 25px;
  padding-bottom: 25px;
}

.g-calendar-new-inlinedialog .g-event-scrollbar {
  height: 19rem;
}

.g-calendar-new-inlinedialog .g-event {
  display: inline-flex;
  height: 4rem;
  /*width: 100%;*/
}

.g-event-confirm {
  color: white;
  max-width: 0.25rem;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  transition-duration: 1s;
  transition-delay: 0.5s;
  background: #6699ff;
  height: 4rem;
  position: absolute;
  z-index: 10;
}

.g-event-confirm:before {
  content: attr(data-flag) " ";
  padding: 0.25rem;
  display: inline-block;
}

.g-event-confirm:hover {
  max-width: 4rem;
}

.g-calendar-new-inlinedialog .g-event-separator {
  height: 0.5rem;
}

.g-calendar-new-inlinedialog .g-event .g-event-datetime {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 2;
  width: 49.2px;
}

.g-calendar-new-inlinedialog .g-event .g-event-datetime-background {
  /*z-index: 1;
  width: 49.2px;  
  position: absolute;
  height: 3rem;*/
}

.g-calendar-new-inlinedialog .g-event .g-event-text-main {
  position: relative;
  white-space: nowrap;
  width: 11.2rem;
  margin-top: auto;
  margin-bottom: auto;
}

.g-calendar-new-inlinedialog .g-event .g-event-text-main.only-title {
  margin-top: 0.8rem;
}

.g-calendar-new-inlinedialog .g-event .g-event-text-main.without-date {
  width: 14.2rem;
  padding-left: 0.5rem;
}

.g-calendar-new-inlinedialog .g-event .g-event-focus {
  width: 100%;
  display: inline-flex;
}

.g-calendar-new-inlinedialog .g-event .g-event-text-title {
  font-weight: bold;
}

.g-calendar-new-inlinedialog .g-event .g-event-footer {
  width: 100%;
  background-color: white;
  z-index: 1;
}

.g-calendar-new-inlinedialog .g-event .g-event-fade {
  background: -webkit-linear-gradient(0deg, black 70%, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.g-calendar-new-inlinedialog .g-event:hover {
  cursor: pointer;
  opacity: 0.5;
}

.g-calendar-new-inlinedialog .g-event-empty-day {
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: bold;
}

/* vizuální příznak počtu událostí */
.g-calendar-new-inlinedialog .flatpickr-day .g-balls-event {
  /*width: 4px;
  height: 4px;*/
  background-color: #69f;
  position: absolute;
  border-radius: 50%;
  bottom: 0.2rem;
  padding: 0.15rem;
}

/* BIG */
.g-calendar-new-inlinedialog .flatpickr-day .g-big-flag-event .g-balls-event.g-one {
  left: 0.5rem;
}

.g-calendar-new-inlinedialog .flatpickr-day .g-big-flag-event .g-balls-event.g-two {
  left: 0.9rem;
}

.g-calendar-new-inlinedialog .flatpickr-day .g-big-flag-event .g-balls-event {
  left: 1.35rem;
}

/* MEDIUM */
.g-calendar-new-inlinedialog .flatpickr-day .g-medium-flag-event .g-balls-event.g-one {
  left: 0.7rem;
}

.g-calendar-new-inlinedialog .flatpickr-day .g-medium-flag-event .g-balls-event.g-two {
  left: 1.15rem;
}

/* SMALL  -1,5px */
.g-calendar-new-inlinedialog .flatpickr-day .g-small-flag-event .g-balls-event.g-one {
  left: calc(50% - 2px);
}

.marquee {
  width: 15rem;
  line-height: 50px;
  background-color: white;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee linear infinite;
  margin-top: auto;
  margin-bottom: auto;
}

.marquee p.marquee-speed-slow {
  animation-duration: 5s;
}

.marquee p.marquee-speed-medium {
  animation-duration: 10s;
}

.marquee p.marquee-speed-fast {
  animation-duration: 15s;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-150%, 0);
  }
}
html,
body {
  /*height: 100%;
  background-color: #b33;*/
}

.g-calendar-inlinedialog .g-header .christmas {
  /*margin-top: $size/-2;
  margin-left: $size/-2;*/
  margin-top: 1.7rem;
  margin-left: 1rem;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  background-color: #0C1E42;
  background-image: radial-gradient(circle at 50% 18%, yellow 3%, transparent 3.5%), linear-gradient(60deg, #7dae41 8%, transparent 8.5%), linear-gradient(-60deg, #79a83f 8%, transparent 8.5%), linear-gradient(60deg, #75a33d 10%, transparent 10.5%), linear-gradient(-60deg, #719d3b 10%, transparent 10.5%), linear-gradient(60deg, #6d9839 12%, transparent 12.5%), linear-gradient(-60deg, #699237 12%, transparent 12.5%), linear-gradient(80deg, #855726 5%, transparent 5.5%), linear-gradient(-80deg, #7f5324 5%, transparent 5.5%);
  background-position: 0 0, 25px 20px, 25px 20px, 25px 27.7777777778px, 25px 27.7777777778px, 25px 35.7142857143px, 25px 35.7142857143px, 25px 40px, 25px 40px;
}
.g-calendar-inlinedialog .g-header .christmas:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: rotate(-15deg);
  background-image: radial-gradient(circle at 30% 30%, #fff 1.5%, transparent 2.5%), radial-gradient(circle at 80% 70%, #fff 1.5%, transparent 2.5%), radial-gradient(circle at 30% 50%, #fff 1%, transparent 2%), radial-gradient(circle at 70% 85%, #fff 1%, transparent 2%);
  background-size: 100% 100%, 100% 100%, 50% 100%, 50% 50%;
  background-position: 0 0, 0 0, 0 0, 0 0;
  animation: snow 6s linear infinite forwards;
}
@keyframes snow {
  100% {
    background-position: 0px 50px, 0 50px, 0px 50px, 0px 50px;
  }
}

.gcalendar-interval-days {
  margin: 1rem;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 1rem;
}

/** komponenta GCALENDAR */
/* The animation code */
@keyframes example {
  0% {
    background-color: black;
  }
  50% {
    background-color: #9c27b0;
  }
  100% {
    background-color: black;
  }
}
.g-event-calendar-event-animation-start {
  background-color: black;
  animation-name: example;
  animation-duration: 2s;
}

.g-calendar-inlinedialog .g-search {
  height: 4rem;
  width: 20rem;
  background-color: white;
}

.g-calendar-inlinedialog .g-search .g-search-header {
  height: 1rem;
  width: 100%;
}

.g-calendar-inlinedialog .g-search .g-search-header-left {
  float: left;
  display: inline-flex;
}

.g-calendar-inlinedialog .g-search .g-search-header-right {
  float: right;
  display: inline-flex;
}

.g-calendar-inlinedialog .g-search .g-search-header-right .gcalendar-search-button-exit {
  font-size: 1.5rem;
  margin-top: -0.5rem;
}

.g-calendar-inlinedialog .g-search .g-search-header-right .gcalendar-search-button-exit:hover {
  cursor: pointer;
  font-weight: bold;
}

.g-calendar-inlinedialog .g-search .g-search-body {
  margin-left: 2rem;
  margin-right: 2rem;
}

/****FLATPICKR ****/
.g-calendar-inlinedialog .g-flatpickr-calendar {
  width: 100%;
  text-align: center;
  margin: 0;
  margin-top: 0.5rem;
}

.g-calendar-inlinedialog .g-flatpickr-calendar .flatpickr-calendar {
  display: inline-block;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.g-calendar-inlinedialog .g-flatpickr-calendar .flatpickr-current-month {
  padding: 0;
}

/******* zobrazeni agendy *******/
.g-calendar-inlinedialog .g-event-showbar {
  position: absolute;
  right: 0.2rem;
}

.g-calendar-inlinedialog .g-event-showbar-text {
  display: inline-flex;
}

.g-calendar-inlinedialog .g-event-showbar-text:hover {
  cursor: pointer;
  opacity: 0.7;
}

.g-calendar-inlinedialog .g-event-showbar-text .g-event-showbar-icon {
  font-size: 2rem;
}

/***************/
/* hlavička centra upozornění */
.g-calendar-inlinedialog .g-header {
  display: flex;
}

.g-calendar-inlinedialog .g-header .g-clock .g-time {
  font-size: 42px;
  padding-left: 21px;
  padding-top: 1px;
  color: black;
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-size: 3rem;
  font-weight: normal;
}

.g-calendar-inlinedialog .g-header .g-clock .g-date {
  padding-left: 25px;
}

.g-calendar-inlinedialog .g-header .g-clock .g-date:hover {
  font-weight: bold;
  cursor: pointer;
}

/* titulek centra upozornění */
.g-calendar-inlinedialog .g-title {
  pointer-events: none;
  opacity: 0.5;
  font-size: 1.5rem;
  margin-left: 1.25rem;
  margin-right: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* tlačítko v nadpisu centra upozornění */
.g-calendar-inlinedialog .g-new-event-button {
  margin-left: 19.1rem;
  margin-top: 0.4rem;
  margin-right: 1rem;
  position: absolute;
}

/* změna průhlednosti při najetí na tlačítko */
.g-calendar-inlinedialog .g-new-event-button:hover {
  opacity: 0.5;
}

/* komponenta flatpickr */
.g-calendar-inlinedialog .g-flatpickr-calendar {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

.g-calendar-inlinedialog .g-flatpickr-calendar .flatpickr-calendar {
  display: inline-block;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.g-calendar-inlinedialog .g-flatpickr-calendar .flatpickr-day.today {
  border-radius: 0;
}

.g-calendar-inlinedialog .g-flatpickr-calendar .flatpickr-day.today:hover,
.g-calendar-inlinedialog .flatpickr-day.today:focus {
  border-color: #959ea9;
  background-color: #959ea9;
  color: #fff;
  border-radius: 0;
}
.g-calendar-inlinedialog .flatpickr-day.today:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-calendar-inlinedialog .g-flatpickr-calendar .flatpickr-day.selected,
.g-calendar-inlinedialog .flatpickr-day.startRange,
.g-calendar-inlinedialog .flatpickr-day.endRange,
.g-calendar-inlinedialog .flatpickr-day.selected.inRange,
.g-calendar-inlinedialog .flatpickr-day.startRange.inRange,
.g-calendar-inlinedialog .flatpickr-day.endRange.inRange,
.g-calendar-inlinedialog .flatpickr-day.selected:focus,
.g-calendar-inlinedialog .flatpickr-day.startRange:focus,
.g-calendar-inlinedialog .flatpickr-day.endRange:focus,
.g-calendar-inlinedialog .flatpickr-day.selected:hover,
.g-calendar-inlinedialog .flatpickr-day.startRange:hover,
.g-calendar-inlinedialog .flatpickr-day.endRange:hover,
.g-calendar-inlinedialog .flatpickr-day.selected.prevMonthDay,
.g-calendar-inlinedialog .flatpickr-day.startRange.prevMonthDay,
.g-calendar-inlinedialog .flatpickr-day.endRange.prevMonthDay,
.g-calendar-inlinedialog .flatpickr-day.selected.nextMonthDay,
.g-calendar-inlinedialog .flatpickr-day.startRange.nextMonthDay,
.g-calendar-inlinedialog .flatpickr-day.endRange.nextMonthDay {
  background-color: #f4f6f9;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: black;
  border-color: #c6cde0;
  border-radius: 0;
}
.g-calendar-inlinedialog .flatpickr-day.selected:focus, .g-calendar-inlinedialog .flatpickr-day.startRange:focus, .g-calendar-inlinedialog .flatpickr-day.endRange:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.g-calendar-inlinedialog .g-flatpickr-calendar .flatpickr-day.inRange,
.g-calendar-inlinedialog .flatpickr-day.prevMonthDay.inRange,
.g-calendar-inlinedialog .flatpickr-day.nextMonthDay.inRange,
.g-calendar-inlinedialog .flatpickr-day.today.inRange,
.g-calendar-inlinedialog .flatpickr-day.prevMonthDay.today.inRange,
.g-calendar-inlinedialog .flatpickr-day.nextMonthDay.today.inRange,
.g-calendar-inlinedialog .flatpickr-day:hover,
.g-calendar-inlinedialog .flatpickr-day.prevMonthDay:hover,
.g-calendar-inlinedialog .flatpickr-day.nextMonthDay:hover,
.g-calendar-inlinedialog .flatpickr-day:focus,
.g-calendar-inlinedialog .flatpickr-day.prevMonthDay:focus,
.g-calendar-inlinedialog .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  border-radius: 0;
}
.g-calendar-inlinedialog .flatpickr-day:focus, .g-calendar-inlinedialog .flatpickr-day.prevMonthDay:focus, .g-calendar-inlinedialog .flatpickr-day.nextMonthDay:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

/* vizuální příznak počtu událostí */
.g-calendar-inlinedialog .flatpickr-day .g-balls-event {
  /*width: 4px;
  height: 4px;*/
  background-color: navy;
  position: absolute;
  border-radius: 50%;
  bottom: 0.2rem;
  padding: 0.15rem;
}

/* BIG */
.g-calendar-inlinedialog .flatpickr-day .g-big-flag-event .g-balls-event.g-one {
  left: 0.5rem;
}

.g-calendar-inlinedialog .flatpickr-day .g-big-flag-event .g-balls-event.g-two {
  left: 1rem;
}

.g-calendar-inlinedialog .flatpickr-day .g-big-flag-event .g-balls-event {
  left: 1.5rem;
}

/* MEDIUM */
.g-calendar-inlinedialog .flatpickr-day .g-medium-flag-event .g-balls-event.g-one {
  left: 0.8rem;
}

.g-calendar-inlinedialog .flatpickr-day .g-medium-flag-event .g-balls-event.g-two {
  left: 1.25rem;
}

/* SMALL */
.g-calendar-inlinedialog .flatpickr-day .g-small-flag-event .g-balls-event.g-one {
  left: calc(50% - 1.5px);
}

/* šipky doleva-doprava na kalendáři */
.g-calendar-inlinedialog .g-month-angle {
  font-size: 1.5rem;
  top: -0.4rem;
}

/* přepínač mezi dny na vybraném dnu */
.g-calendar-inlinedialog .g-event-switch {
  padding-bottom: 0.3rem;
}

.g-calendar-inlinedialog .g-event-switch .g-event-switch-child {
  display: flex;
  margin-top: 0.3rem;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

.year_button {
  width: 4rem;
  font-size: 1rem;
  margin-left: 1rem;
  cursor: default;
  border: 0;
}

/* text data přepínače */
.g-calendar-inlinedialog .g-day-date-text {
  pointer-events: none;
  font-size: 1.2rem;
  text-align: center;
  width: 16rem;
  font-weight: normal;
  margin-top: auto;
  margin-bottom: auto;
}

/* leva sipka prochazeni dnu */
.g-calendar-inlinedialog .g-day-left-angle {
  font-size: 1.5rem;
  cursor: pointer;
  padding-left: 0.7rem;
  padding-right: 0.5rem;
}

.g-calendar-inlinedialog .g-day-left-angle:hover {
  opacity: 0.5;
}

/* prava sipka prochazeni dnu */
.g-calendar-inlinedialog .g-day-right-angle {
  font-size: 1.5rem;
  cursor: pointer;
  padding-left: 0.4rem;
  padding-right: 0.5rem;
}

.g-calendar-inlinedialog .g-day-right-angle:hover {
  opacity: 0.5;
}

.g-calendar-inlinedialog .g-event-list {
  margin-top: 0.85rem;
  margin-bottom: 0.5rem;
}

/* události na vybraném dni */
.g-calendar-inlinedialog .g-event-scrollbar {
  height: 21rem;
  /*padding-right: 1rem;*/
}

.g-calendar-inlinedialog .g-event-empty-day {
  font-size: 1rem;
  margin-top: 1rem;
  margin-left: 2rem;
  font-weight: bold;
}

.g-calendar-inlinedialog .g-event {
  padding-top: 0.15rem;
  padding-right: 1.5rem;
  padding-bottom: 0.15rem;
  display: inline-flex;
  height: 3rem;
}

.g-calendar-inlinedialog .g-event:hover {
  cursor: pointer;
}

.g-calendar-inlinedialog .g-event .g-event-state {
  width: 1rem;
  background-color: navy;
}

.g-calendar-inlinedialog .g-event .g-event-state.g-event-old {
  background-color: #C6CDE0;
}

.g-calendar-inlinedialog .g-event .g-event-state.g-event-ongoing {
  background-color: #27B779;
}

.g-calendar-inlinedialog .g-event .g-event-datetime {
  background-color: white;
  width: 5rem;
  font-weight: normal;
  font-size: 0.7rem;
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  z-index: 2;
}

.g-calendar-inlinedialog .g-event .g-event-text {
  position: relative;
  text-align: left;
  margin-top: auto;
  margin-bottom: auto;
  font-weight: normal;
  margin-right: 0.5rem;
  white-space: nowrap;
  min-width: 12rem;
}

.g-calendar-inlinedialog .g-event .g-event-remove-button {
  text-align: center;
  margin: auto;
  width: 1.4rem;
  color: lightgray;
  cursor: pointer;
  font-size: 1rem;
}

.g-calendar-inlinedialog .g-event .g-event-remove-button:hover {
  color: black;
}

.g-calendar-inlinedialog .g-event .g-event-separator {
  width: 1rem;
}

/* odstranění všech událostí dne */
.g-calendar-inlinedialog .g-remove-all-events {
  height: 2rem;
}

.g-calendar-inlinedialog .g-remove-all-events-text {
  padding-top: 0.3rem;
  font-size: 0.9rem;
  opacity: 0.4;
  width: 5.25rem;
  margin-left: 16rem;
  cursor: pointer;
}

.g-calendar-inlinedialog .g-remove-all-events-text:hover {
  opacity: 1;
}

/*************** SCROLLBAR BASE CSS ***************/
.g-calendar-inlinedialog .scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.g-calendar-inlinedialog .scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.g-calendar-inlinedialog .scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.g-calendar-inlinedialog .scroll-element {
  display: none;
}

.g-calendar-inlinedialog .scroll-element, .scroll-element div {
  box-sizing: content-box;
}

.g-calendar-inlinedialog .scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.g-calendar-inlinedialog .scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.g-calendar-inlinedialog .scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.g-calendar-inlinedialog .scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.g-calendar-inlinedialog .scroll-textarea > .scroll-content > textarea {
  border: none !important;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.g-calendar-inlinedialog .scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/
.g-calendar-inlinedialog .scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* update scrollbar offset if both scrolls are visible */
.g-calendar-inlinedialog .scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.g-calendar-inlinedialog .scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

.g-calendar-inlinedialog .g-gcalendarfilterelement-calendar {
  margin-left: 0.5rem;
  margin-top: 0.5rem;
}

.g-calendar-event-field-hidden {
  display: none;
}

.gdayoverview-footer {
  text-align: center;
  padding: 0.5rem;
  color: navy;
  font-weight: bold;
}

.gdayoverview-footer:hover {
  opacity: 0.7;
  cursor: pointer;
}

.gdayoverview-no-event {
  padding: 0.2rem;
  color: gray;
}

.gdayoverview-day {
  background: gainsboro;
  font-weight: bold;
  border-bottom: 1px solid #c6cde0;
  border-top: 1px solid #c6cde0;
  padding: 0.2rem;
}

.gdayoverview-list {
  background-color: red;
  height: 65rem;
}

.gdayoverview {
  height: 760px;
  background-color: white;
  width: 320px;
  overflow: hidden;
}

.gdayoverview-header {
  height: 3rem;
  padding: 0.2rem;
  border-bottom: 1px solid #c6cde0;
}

.gdayoverview-header .gdayoverview-today-text {
  font-size: 1rem;
  font-weight: bold;
}

.gdayoverview-header .gdayoverview-today-date:hover {
  cursor: pointer;
  font-weight: bold;
}

.gdayoverview-event-container {
  min-height: 50px;
}

.gloadlink .hideborder {
  border: none;
}

.g-notification {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  background-color: #FAFAFA;
  padding: 0.5rem;
  border: 1px solid #ebebeb;
}
.g-notification.g-notification--collapsed {
  background-color: #FAFAFA;
}
.g-notification--not-visited {
  border-left: 0.25rem solid #2650b9;
}
.g-notification--state-important {
  border-color: #ED1E79;
}
.g-notification--state-error {
  border-color: #C63C3C;
}
.g-notification--state-warning {
  border-color: #FFB266;
}
.g-notification--state-success {
  border-color: #27B779;
}
.g-notification--state-info {
  border-color: #6699FF;
}
.g-notification__left {
  float: left;
  font-size: 2rem;
  width: 2rem;
  margin-right: 0.5rem;
  color: #333;
  position: relative;
}
.g-notification__left .g-badge {
  font-size: 0.75rem;
  top: 0;
  left: 1rem;
}
.g-notification__title {
  font-weight: bold;
}
.g-notification__meta {
  font-size: 10px;
  color: #7b8b99;
}
.g-notification__center {
  float: left;
  width: calc(100% - 5.25rem);
  border-right: 1px solid #C6CDE0;
  padding-right: 0.25rem;
  margin-right: 0.25rem;
  cursor: pointer;
}
.g-notification__center:focus {
  position: relative;
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.g-notification__center:focus::before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  z-index: 999;
}
.g-notification__center--toast {
  width: calc(100% - 3.25rem);
  border-right: none;
}
.g-notification__content--collapsed {
  height: 3rem;
  overflow: hidden;
  border-color: #d0d0d0;
  position: relative;
}
.g-notification__content--toast {
  overflow: hidden;
  position: relative;
  max-height: 6rem;
}
.g-notification__text-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.25rem;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #FAFAFA 100%);
}
.g-notification__center--toast .g-notification__text-fade {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #f3f4f9 100%);
}
.g-notification__progress {
  text-align: center;
  overflow: hidden;
  margin-top: 0.5rem;
}
.g-notification__progress-text {
  color: #0D1732;
  font-size: 0.75rem;
}
.g-notification__progressbar.ui-progressbar {
  height: 0.5rem;
}
.g-notification__progressbar.ui-progressbar .ui-progressbar-value {
  background: none;
  background-color: #0D1732;
  border: none;
  margin: 0;
}
.g-notification__cmdbar {
  background: none;
}
.g-notification__cmdbar .g-button {
  margin-left: 0.25rem;
}
.g-notification__right {
  float: left;
  width: 2.5rem;
  text-align: center;
}
.g-notification__right .g-link {
  color: #1b2951;
  position: relative;
  left: 0.125rem;
  top: 0.375rem;
  display: inline-block;
  outline-style: none;
}
.g-notification__close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.5rem;
  color: transparent;
}
.g-notification__close:hover {
  background-color: #0D1732;
  color: white;
  cursor: pointer;
}
.g-notification__dt {
  height: 1.75rem;
}

.g-notification-placeholder {
  height: 80px;
  width: 100%;
  background-color: yellow;
  display: inline-block;
}

.g-notification-toast.g-notification {
  margin: 0;
}
.g-notification-list__header {
  margin-bottom: 1rem;
}
.g-notification-list__header-bar {
  background-color: transparent;
}
.g-notification-list__header-title {
  float: left;
  font-size: 1.5rem;
  color: #333;
}
.g-notification-list__header-action {
  float: right;
  position: relative;
  top: 14px;
  margin-right: 0.25rem;
  outline-style: none;
  font-weight: bold;
}
.g-notification-list__group-title {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  border-bottom: 1px solid #C6CDE0;
  margin: 0.5rem 0;
  line-height: 1.5rem;
}

.g-notification-anidiv {
  position: absolute;
  background-color: #E7EAF2;
}

.gshortcutfield.gfield {
  margin-bottom: 0.5rem;
}
.gshortcutfield td {
  line-height: 1;
}
.gshortcutfield kbd.gshortcutfield__kbd_outer {
  border: 1px solid grey;
  padding: 0.2rem;
  border-radius: 0.25rem;
  margin: 0.2rem;
}
.gshortcutfield td:first-child:after {
  content: ":";
}
.gshortcutfield.ui-state-disabled td:first-child {
  color: #6f6f6f;
}
.gshortcutfield.ui-state-disabled kbd {
  background-color: #e6e6e6;
}

.gshortcutpreview__viewer {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 1rem;
  padding: 0.5rem;
  border: 1px solid #0d1732;
  -moz-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 7px 7px 60px 0 rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
}
.gshortcutpreview__viewer .gshortcutpreview__viewer__text_area, .gshortcutpreview__viewer .gshortcutpreview__viewer__close_btn, .gshortcutpreview__viewer .gshortcutpreview__viewer__help_area {
  display: inline-block;
  vertical-align: middle;
}
.gshortcutpreview__viewer .gshortcutpreview__viewer__text_area {
  margin-left: 0.5rem;
}

.gmousehold__loader {
  font-size: 2rem;
  position: absolute;
  text-shadow: rgba(255, 255, 255, 0.145) 3px 0px 0px, rgba(255, 255, 255, 0.145) 2.83487px 0.981584px 0px, rgba(255, 255, 255, 0.145) 2.35766px 1.85511px 0px, rgba(255, 255, 255, 0.145) 1.62091px 2.52441px 0px, rgba(255, 255, 255, 0.145) 0.705713px 2.91581px 0px, rgba(255, 255, 255, 0.145) -0.287171px 2.98622px 0px, rgba(255, 255, 255, 0.145) -1.24844px 2.72789px 0px, rgba(255, 255, 255, 0.145) -2.07227px 2.16926px 0px, rgba(255, 255, 255, 0.145) -2.66798px 1.37182px 0px, rgba(255, 255, 255, 0.145) -2.96998px 0.42336px 0px, rgba(255, 255, 255, 0.145) -2.94502px -0.571704px 0px, rgba(255, 255, 255, 0.145) -2.59586px -1.50383px 0px, rgba(255, 255, 255, 0.145) -1.96093px -2.27041px 0px, rgba(255, 255, 255, 0.145) -1.11013px -2.78704px 0px, rgba(255, 255, 255, 0.145) -0.137119px -2.99686px 0px, rgba(255, 255, 255, 0.145) 0.850987px -2.87677px 0px, rgba(255, 255, 255, 0.145) 1.74541px -2.43999px 0px, rgba(255, 255, 255, 0.145) 2.44769px -1.73459px 0px, rgba(255, 255, 255, 0.145) 2.88051px -0.838247px 0px;
}

.gfilepreview {
  border-top: 1px solid rgb(198, 205, 224);
}

.gfilepreview_content.pdfViewer {
  background: #f4f6f9; /*#C6CDE0;*/
  overflow: auto;
  position: relative;
  /* text-align: center;*/
}
.gfilepreview_content.pdfViewer .page {
  /*position: relative;*/
  margin: 0.5rem auto;
  /*display: block;
  text-align: center;*/
  border: none;
}
.gfilepreview_content.pdfViewer.scrollHorizontal {
  /*white-space: nowrap;*/
  margin: 0;
}
.gfilepreview_content.pdfViewer.scrollHorizontal .page {
  /*display: inline-block;*/
  margin: 0.5rem;
}
.gfilepreview_content.pdfViewer.scrollWrapped {
  margin: 0;
}
.gfilepreview_content.pdfViewer.scrollWrapped .page {
  /*display: inline-block;*/
  /*text-align: initial;*/
  margin: 0.5rem;
}
.gfilepreview_content.pdfViewer .spread .page {
  margin: 0.5rem;
}

/*.gfilepreview__image {
    display: flex;
    justify-content: center;
    align-items: center;    
}*/
body:not(.gfilepreview_dragging) .gfilepreview_draggable {
  cursor: move;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab;
}

html body.gfilepreview_dragging {
  cursor: move !important;
  cursor: -moz-grabbing !important;
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
}

.pdfpagenav .pdfpagenav-current {
  display: inline-block;
  vertical-align: middle;
}

.pdfpagenav .pdfpagenav-current input {
  width: calc(4ch + 0.5rem);
}

.pdfpagenav .pdfpagenav-count {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.25rem;
}

.pdfzoom {
  max-width: 14em;
  width: 100%;
}

.pdfFindBar {
  border-bottom: 1px solid #C6CDE0;
}

.gfilepreview-warning {
  text-align: center;
  margin: 2rem 0.5rem;
}

.gfilepreview-warning > i {
  text-align: center;
  display: block;
  font-size: 5rem;
}

.gfilepreview__office-frame {
  position: relative;
}

.gfilepreview__filename {
  background: #c6cde0;
  color: #222;
  padding: 0.125rem 0;
  border-top: 0.25rem solid #e7eaf2;
}

.gfilepreview__filename > i {
  padding: 0 0.5rem;
}

.gfilepreview__text-renderer {
  text-align: left;
  white-space: pre;
  padding: 0 1rem;
}
.gfilepreview__text-renderer--wrap {
  white-space: pre-wrap;
  word-break: break-all;
}

.g-anonymizer .textLayer--text-selected, .g-anonymizer__text-layer--text-selected {
  background: rgba(0, 0, 0, 0.85);
}
.g-anonymizer .textLayer--text-anonymized, .g-anonymizer__text-layer--text-anonymized {
  background: rgba(0, 0, 0, 0.85);
}
.g-anonymizer .textLayer--text-deanonymized, .g-anonymizer__text-layer--text-deanonymized {
  background: none;
}
.g-anonymizer__text-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: 0% 0%;
  opacity: 0.2;
}
.g-anonymizer__text-layer .highlight {
  background-color: rgb(180, 0, 170);
}
.g-anonymizer__text-layer .highlight.selected {
  background-color: rgb(0, 100, 0);
}
.g-anonymizer__text-layer .g-anonymizer__text-layer--text-anonymized.highlight, .g-anonymizer__text-layer .g-anonymizer__text-layer--text-anonymized.highlight.selected {
  background: rgba(0, 0, 0, 0.85);
}
.g-anonymizer__text-layer span {
  cursor: text;
  position: absolute;
}
.g-anonymizer__area.ui-draggable-disabled .ui-resizable-handle {
  cursor: default;
}
.g-anonymizer__area--active {
  cursor: move;
  z-index: 1;
}
.g-anonymizer__area--active:focus {
  outline: none;
}
.g-anonymizer__area--active .ui-resizable-ne, .g-anonymizer__area--active .ui-resizable-se, .g-anonymizer__area--active .ui-resizable-nw, .g-anonymizer__area--active .ui-resizable-sw {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.5);
  width: 20px;
  height: 20px;
  /* transform: scale(2); */
}
.g-anonymizer__area--active .ui-resizable-ne:hover, .g-anonymizer__area--active .ui-resizable-se:hover, .g-anonymizer__area--active .ui-resizable-nw:hover, .g-anonymizer__area--active .ui-resizable-sw:hover {
  border: 1px solid #6699ff;
  box-shadow: 0px 0px 2px 2px #6699ff;
}
.g-anonymizer__area--active .ui-resizable-ne {
  right: -10px;
  top: -10px;
}
.g-anonymizer__area--active .ui-resizable-se {
  right: -10px;
  bottom: -10px;
}
.g-anonymizer__area--active .ui-resizable-sw {
  left: -10px;
  bottom: -10px;
}
.g-anonymizer__area--active .ui-resizable-nw {
  left: -10px;
  top: -10px;
}

.g-canvas-drawer__layer {
  cursor: auto;
}
.g-canvas-drawer__layer--active {
  cursor: crosshair;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.g-canvas-drawer__object.ui-draggable-disabled .ui-resizable-handle {
  cursor: default;
}
.g-canvas-drawer__object:hover {
  cursor: pointer;
}
.g-canvas-drawer__object--active.ui-draggable:hover {
  cursor: move;
}
.g-canvas-drawer__object--active {
  z-index: 1;
  box-shadow: 0 0 5px #2650b9;
}
.g-canvas-drawer__object--active:focus {
  outline: none;
}
.g-canvas-drawer__object--active .ui-resizable-ne, .g-canvas-drawer__object--active .ui-resizable-se, .g-canvas-drawer__object--active .ui-resizable-nw, .g-canvas-drawer__object--active .ui-resizable-sw {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.5);
  width: 20px;
  height: 20px;
  background-image: none;
  /* transform: scale(2); */
}
.g-canvas-drawer__object--active .ui-resizable-ne:hover, .g-canvas-drawer__object--active .ui-resizable-se:hover, .g-canvas-drawer__object--active .ui-resizable-nw:hover, .g-canvas-drawer__object--active .ui-resizable-sw:hover {
  border: 1px solid #6699ff;
  box-shadow: 0px 0px 2px 2px #6699ff;
}
.g-canvas-drawer__object--active .ui-resizable-ne {
  right: -10px;
  top: -10px;
}
.g-canvas-drawer__object--active .ui-resizable-se {
  right: -10px;
  bottom: -10px;
}
.g-canvas-drawer__object--active .ui-resizable-sw {
  left: -10px;
  bottom: -10px;
}
.g-canvas-drawer__object--active .ui-resizable-nw {
  left: -10px;
  top: -10px;
}

.g-preview {
  overflow: hidden;
}

.g-preview .g-preview__tab-div {
  position: relative;
}

.g-preview .g-preview__disabled-element {
  padding: 0.5rem;
}

.g-preview .g-preview__content-element {
  position: relative;
  min-height: 50px;
}

.g-preview__external-link {
  right: 0;
  position: absolute;
  top: 0.85rem;
}

.g-preview__external-link a {
  padding: 0.25rem 0 0 0.25rem;
}

.g-preview__info-content {
  text-align: center;
  margin: 2rem 0.5rem;
}

.g-preview__info-header {
  font-weight: 700;
}

.g-preview__info-content > i {
  text-align: center;
  display: block;
  font-size: 5rem;
}

.w100 {
  width: 100%;
}

.h100, .gform-row.h100 > div {
  height: 100%;
}

.pr {
  position: relative;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.spaced {
  min-width: 1.25rem;
  padding: 0 0.5rem;
}

.hidden {
  display: none !important;
}

.hidden-block {
  visibility: hidden !important;
}

.focusdummy {
  width: 0;
  height: 0;
  min-height: 0;
  padding: 0;
  border: none;
  outline: none;
  position: absolute;
}

.data-deleted {
  color: #7b7b7b;
  font-style: italic;
}

.data-new {
  font-weight: bold;
}

.detail-header, .ui-dialog-content.detail-header {
  padding: 0.5rem;
  overflow: auto;
  display: block;
  background: #F4F6F9;
}

.detail-content, .ui-dialog-content.detail-content {
  padding: 0.5rem;
  overflow: auto;
  display: block;
}

.detail-grid, .ui-dialog-content.detail-grid {
  overflow: auto;
  display: block;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Chrome/Safari/Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   not supported by any browser */
}

.textselect {
  -webkit-user-select: text; /* Chrome/Safari/Opera */
  -moz-user-select: text; /* Firefox */
  -ms-user-select: text; /* Internet Explorer/Edge */
  user-select: text; /* Non-prefixed version, currently
   not supported by any browser */
}

div.gcontent:empty {
  display: none;
}

.g-drag-handle-s {
  display: block;
  position: relative;
  margin: auto;
  top: -4px;
}

/* mCustomScrollbar */
.mCSB_inside > .mCSB_container {
  margin-right: 0;
}

/* mCustomScorllbarDetail */
.mCS-gor-dark-theme.mCSB_scrollTools {
  width: 8px;
}

.mCS-gor-dark-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #e7eaf2;
  opacity: 1;
}

.mCS-gor-dark-theme.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-gor-dark-theme.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #0d1732;
  opacity: 0.85;
}

.mCS-gor-dark-theme.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-gor-dark-theme.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #0d1732;
  opacity: 1;
}

.gi {
  display: inline-block;
}

.gi-rot90 {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.gi-rot180 {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gi-rot270 {
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.gi-rotX180 {
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.gi-rotY180 {
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.icon-with-text {
  padding-right: 0.25rem;
}

.gi-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.gi-stack-bg,
.gi-stack-fw {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.gi-stack-bg {
  font-size: 1em;
  line-height: inherit;
}

.gi-stack-fw {
  font-size: 0.75em;
  line-height: inherit;
}
.gi-stack-fw.gi-stack-fw-full {
  font-size: 1em;
}

.gi-bgw:not(.g-state-text) {
  color: #333;
}

.gi-bgw::before,
.gi-bgw--rect::before {
  background-color: #FAFAFA;
}

.gi-bgw::before {
  border-radius: 50%;
}

.gi-stack-pos--rb {
  top: 0.5em;
  left: 0.5em;
}

.gi-stack-pos--rt {
  top: -0.25em;
  left: 0.5em;
}

.gi-stack-pos--lb {
  top: 0.5em;
  left: -0.5em;
}

.gi-stack-pos--lt {
  top: -0.25em;
  left: -0.5em;
}

[class*=g-state-] .g-state-info.g-state-transbackground, .g-state-info.g-state-transbackground, [class*=g-state-] .g-state-info .g-state-transbackground, .g-state-info .g-state-transbackground {
  background-color: rgba(102, 153, 255, 0.2);
  border-color: #6699FF;
}
[class*=g-state-] .g-state-info.g-state-lightbackground, .g-state-info.g-state-lightbackground, [class*=g-state-] .g-state-info .g-state-lightbackground, .g-state-info .g-state-lightbackground {
  background-color: #bfd3fc;
  border-color: #6699FF;
}
[class*=g-state-] .g-state-info.g-state-background, .g-state-info.g-state-background, [class*=g-state-] .g-state-info .g-state-background, .g-state-info .g-state-background {
  background-color: #6699FF;
  border-color: #6699FF;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-info.g-state-text, .g-state-info.g-state-text, [class*=g-state-] .g-state-info .g-state-text, .g-state-info .g-state-text, [class*=g-state-] .g-state-text .g-state-info, .g-state-text .g-state-info {
  color: #6699FF;
}

[class*=g-state-] .g-state-warning.g-state-transbackground, .g-state-warning.g-state-transbackground, [class*=g-state-] .g-state-warning .g-state-transbackground, .g-state-warning .g-state-transbackground {
  background-color: rgba(255, 178, 102, 0.2);
  border-color: #FFB266;
}
[class*=g-state-] .g-state-warning.g-state-lightbackground, .g-state-warning.g-state-lightbackground, [class*=g-state-] .g-state-warning .g-state-lightbackground, .g-state-warning .g-state-lightbackground {
  background-color: #fcddbf;
  border-color: #FFB266;
}
[class*=g-state-] .g-state-warning.g-state-background, .g-state-warning.g-state-background, [class*=g-state-] .g-state-warning .g-state-background, .g-state-warning .g-state-background {
  background-color: #FFB266;
  border-color: #FFB266;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-warning.g-state-text, .g-state-warning.g-state-text, [class*=g-state-] .g-state-warning .g-state-text, .g-state-warning .g-state-text, [class*=g-state-] .g-state-text .g-state-warning, .g-state-text .g-state-warning {
  color: #FFB266;
}

[class*=g-state-] .g-state-success.g-state-transbackground, .g-state-success.g-state-transbackground, [class*=g-state-] .g-state-success .g-state-transbackground, .g-state-success .g-state-transbackground {
  background-color: rgba(39, 183, 121, 0.2);
  border-color: #27B779;
}
[class*=g-state-] .g-state-success.g-state-lightbackground, .g-state-success.g-state-lightbackground, [class*=g-state-] .g-state-success .g-state-lightbackground, .g-state-success .g-state-lightbackground {
  background-color: #a6dfc6;
  border-color: #27B779;
}
[class*=g-state-] .g-state-success.g-state-background, .g-state-success.g-state-background, [class*=g-state-] .g-state-success .g-state-background, .g-state-success .g-state-background {
  background-color: #27B779;
  border-color: #27B779;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-success.g-state-text, .g-state-success.g-state-text, [class*=g-state-] .g-state-success .g-state-text, .g-state-success .g-state-text, [class*=g-state-] .g-state-text .g-state-success, .g-state-text .g-state-success {
  color: #27B779;
}

[class*=g-state-] .g-state-error.g-state-transbackground, .g-state-error.g-state-transbackground, [class*=g-state-] .g-state-error .g-state-transbackground, .g-state-error .g-state-transbackground {
  background-color: rgba(198, 60, 60, 0.2);
  border-color: #C63C3C;
}
[class*=g-state-] .g-state-error.g-state-lightbackground, .g-state-error.g-state-lightbackground, [class*=g-state-] .g-state-error .g-state-lightbackground, .g-state-error .g-state-lightbackground {
  background-color: #e5aeae;
  border-color: #C63C3C;
}
[class*=g-state-] .g-state-error.g-state-background, .g-state-error.g-state-background, [class*=g-state-] .g-state-error .g-state-background, .g-state-error .g-state-background {
  background-color: #C63C3C;
  border-color: #C63C3C;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-error.g-state-text, .g-state-error.g-state-text, [class*=g-state-] .g-state-error .g-state-text, .g-state-error .g-state-text, [class*=g-state-] .g-state-text .g-state-error, .g-state-text .g-state-error {
  color: #C63C3C;
}

[class*=g-state-] .g-state-important.g-state-transbackground, .g-state-important.g-state-transbackground, [class*=g-state-] .g-state-important .g-state-transbackground, .g-state-important .g-state-transbackground {
  background-color: rgba(237, 30, 121, 0.2);
  border-color: #ED1E79;
}
[class*=g-state-] .g-state-important.g-state-lightbackground, .g-state-important.g-state-lightbackground, [class*=g-state-] .g-state-important .g-state-lightbackground, .g-state-important .g-state-lightbackground {
  background-color: #f5a2c6;
  border-color: #ED1E79;
}
[class*=g-state-] .g-state-important.g-state-background, .g-state-important.g-state-background, [class*=g-state-] .g-state-important .g-state-background, .g-state-important .g-state-background {
  background-color: #ED1E79;
  border-color: #ED1E79;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-important.g-state-text, .g-state-important.g-state-text, [class*=g-state-] .g-state-important .g-state-text, .g-state-important .g-state-text, [class*=g-state-] .g-state-text .g-state-important, .g-state-text .g-state-important {
  color: #ED1E79;
}

[class*=g-state-] .g-state-active.g-state-transbackground, .g-state-active.g-state-transbackground, [class*=g-state-] .g-state-active .g-state-transbackground, .g-state-active .g-state-transbackground {
  background-color: rgba(38, 80, 185, 0.2);
  border-color: #2650b9;
}
[class*=g-state-] .g-state-active.g-state-lightbackground, .g-state-active.g-state-lightbackground, [class*=g-state-] .g-state-active .g-state-lightbackground, .g-state-active .g-state-lightbackground {
  background-color: #a5b6e0;
  border-color: #2650b9;
}
[class*=g-state-] .g-state-active.g-state-background, .g-state-active.g-state-background, [class*=g-state-] .g-state-active .g-state-background, .g-state-active .g-state-background {
  background-color: #2650b9;
  border-color: #2650b9;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-active.g-state-text, .g-state-active.g-state-text, [class*=g-state-] .g-state-active .g-state-text, .g-state-active .g-state-text, [class*=g-state-] .g-state-text .g-state-active, .g-state-text .g-state-active {
  color: #2650b9;
}

[class*=g-state-] .g-state-inactive.g-state-transbackground, .g-state-inactive.g-state-transbackground, [class*=g-state-] .g-state-inactive .g-state-transbackground, .g-state-inactive .g-state-transbackground {
  background-color: rgba(198, 205, 224, 0.2);
  border-color: #C6CDE0;
}
[class*=g-state-] .g-state-inactive.g-state-lightbackground, .g-state-inactive.g-state-lightbackground, [class*=g-state-] .g-state-inactive .g-state-lightbackground, .g-state-inactive .g-state-lightbackground {
  background-color: #e5e8f0;
  border-color: #C6CDE0;
}
[class*=g-state-] .g-state-inactive.g-state-background, .g-state-inactive.g-state-background, [class*=g-state-] .g-state-inactive .g-state-background, .g-state-inactive .g-state-background {
  background-color: #C6CDE0;
  border-color: #C6CDE0;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-inactive.g-state-text, .g-state-inactive.g-state-text, [class*=g-state-] .g-state-inactive .g-state-text, .g-state-inactive .g-state-text, [class*=g-state-] .g-state-text .g-state-inactive, .g-state-text .g-state-inactive {
  color: #C6CDE0;
}

[class*=g-state-] .g-state-favorite.g-state-transbackground, .g-state-favorite.g-state-transbackground, [class*=g-state-] .g-state-favorite .g-state-transbackground, .g-state-favorite .g-state-transbackground {
  background-color: rgba(254, 182, 59, 0.2);
  border-color: #feb63b;
}
[class*=g-state-] .g-state-favorite.g-state-lightbackground, .g-state-favorite.g-state-lightbackground, [class*=g-state-] .g-state-favorite .g-state-lightbackground, .g-state-favorite .g-state-lightbackground {
  background-color: #fcdfae;
  border-color: #feb63b;
}
[class*=g-state-] .g-state-favorite.g-state-background, .g-state-favorite.g-state-background, [class*=g-state-] .g-state-favorite .g-state-background, .g-state-favorite .g-state-background {
  background-color: #feb63b;
  border-color: #feb63b;
  color: #FAFAFA;
}
[class*=g-state-] .g-state-favorite.g-state-text, .g-state-favorite.g-state-text, [class*=g-state-] .g-state-favorite .g-state-text, .g-state-favorite .g-state-text, [class*=g-state-] .g-state-text .g-state-favorite, .g-state-text .g-state-favorite {
  color: #feb63b;
}

.g-marker-inactive::after, .g-marker-important::after, .g-marker-success::after, .g-marker-warning::after, .g-marker-error::after, .g-marker-info::after, .g-marker::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 0.25rem;
}

.g-marker {
  position: relative;
}

.g-marker::after {
  border-right-color: #1D3E8F;
  border-top-color: #1D3E8F;
}

.g-marker-info {
  position: relative;
}

.g-marker-info::after {
  border-right-color: #6699FF;
  border-top-color: #6699FF;
}

.g-marker-error {
  position: relative;
}

.g-marker-error::after {
  border-right-color: #C63C3C;
  border-top-color: #C63C3C;
}

.g-marker-warning {
  position: relative;
}

.g-marker-warning::after {
  border-right-color: #FFB266;
  border-top-color: #FFB266;
}

.g-marker-success {
  position: relative;
}

.g-marker-success::after {
  border-right-color: #27B779;
  border-top-color: #27B779;
}

.g-marker-important {
  position: relative;
}

.g-marker-important::after {
  border-right-color: #ED1E79;
  border-top-color: #ED1E79;
}

.g-marker-inactive {
  position: relative;
}

.g-marker-inactive::after {
  border-right-color: #C6CDE0;
  border-top-color: #C6CDE0;
}

.card {
  width: 100%;
  height: 100%;
  padding: 5px;
  border: 1px solid gray;
  margin: 10px;
}
.card h3 {
  padding-left: 5px;
}
.card div:first-of-type {
  display: block;
  text-align: center;
}
.card div:last-of-type {
  padding: 5px;
  line-height: 1.5em;
  overflow: hidden;
}
.card img {
  border: 0px none;
  width: 200px;
}

.inline-shadow {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);
}

.gmaximize-active {
  background-color: #FAFAFA;
  position: fixed;
  top: 3rem !important;
  height: calc(100% - 3rem) !important;
  left: 0 !important;
  width: 100% !important;
}

.gmarkdown blockquote {
  padding: 0.5rem 1rem;
  margin: 0 0 1rem;
  border-left: 5px solid #C6CDE0;
}
.gmarkdown code {
  background-color: #E7EAF2;
  border: 1px solid #C6CDE0;
}
.gmarkdown pre {
  display: block;
  padding: 0.5rem;
  margin: 0 0 0.5rem;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre-wrap;
  background-color: #E7EAF2;
  border: 1px solid #C6CDE0;
}
.gmarkdown pre code {
  background-color: inherit;
  border: 0;
}
.gmarkdown table {
  width: 100%;
  max-width: 100%;
  border: 1px solid #C6CDE0;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.gmarkdown table thead th,
.gmarkdown table tfoot th {
  background-color: #E7EAF2;
}
.gmarkdown table caption {
  padding: 0.5rem;
}
.gmarkdown table th,
.gmarkdown table td {
  padding: 0.5rem;
  border: 1px solid #C6CDE0;
}
.gmarkdown hr {
  border: 0;
  border-top: 1px solid #C6CDE0;
}
.gmarkdown img {
  max-width: 100%;
}

html {
  font-size: 16px;
}

body, html {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  overflow: auto;
}

*, *:before, *:after {
  box-sizing: inherit; /* aby se box-sizing defaultne dedil z rootu komponent na jejich podrizene prvky */
}

body.gwebapp {
  font-family: "Open Sans", "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #222;
  box-sizing: border-box;
  min-height: 480px;
  overflow: hidden;
}

.gtasklist, .gmenu {
  font-family: inherit;
}

#main {
  height: 100%;
  background-color: #FAFAFA;
}

.main-topbar {
  display: flex;
  width: 100%;
  min-height: 3rem;
  border-bottom: 1px solid #C6CDE0;
}

.main-logo {
  width: 16.25rem;
  min-width: 16.25rem;
  vertical-align: middle;
  padding: 0 0.5rem;
  white-space: nowrap;
}
.main.mobile .main-logo {
  display: none;
}
.main-logo #smalllogo {
  color: #1D3E8F;
  margin-top: 0.3125rem;
  text-align: center;
}
.main:not(.main--collapsed) .main-logo #smalllogo {
  display: none;
}
.main-logo #largelogo {
  vertical-align: middle;
  width: 100%;
  height: 2.75rem;
}
.main--collapsed .main-logo #largelogo {
  display: none;
}
.main--collapsed .main-logo {
  width: 3.25rem;
  min-width: 3.25rem;
}
.main-logo:focus {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}

.ginfobar__item {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1rem;
}
.ginfobar__item h3 {
  font-size: 0.625rem;
  color: #707070;
  text-transform: uppercase;
}
.ginfobar__item--activable {
  text-align: left;
}
.ginfobar__item--activable:hover h3, .ginfobar__item--activable:focus h3 {
  color: #fff;
}

.gactionmenu__item.active .ginfobar__item h3 {
  color: #fff;
}

.main-commandbar {
  flex-grow: 2;
  width: 1px;
}

.main-logo {
  cursor: pointer;
  text-align: center;
  min-width: 3.25rem;
}
.main-logo:hover {
  background-color: #E7EAF2;
}

.main-logo, .main-tasklist-command {
  border-right: 1px solid #C6CDE0;
}

div.logout-timer {
  position: relative;
  width: 4rem;
}
div.logout-timer .ui-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
}

.main-commandbar, .main-tasklist-command {
  white-space: nowrap;
  background: transparent;
}
.main-commandbar .g-button, .main-commandbar .g-static, .main-tasklist-command .g-button, .main-tasklist-command .g-static {
  font-size: 1.125rem;
  height: calc(3rem - 1px); /* border */
  min-width: 3rem;
}
.main-commandbar .g-button:not(:hover, :focus, .g-button--mb-activated, g-button--activated), .main-commandbar .g-static:not(:hover, :focus, .g-button--mb-activated, g-button--activated), .main-tasklist-command .g-button:not(:hover, :focus, .g-button--mb-activated, g-button--activated), .main-tasklist-command .g-static:not(:hover, :focus, .g-button--mb-activated, g-button--activated) {
  background: transparent;
  border-color: transparent;
}
.main-commandbar .g-button.g-button--activator, .main-commandbar .g-static.g-button--activator, .main-tasklist-command .g-button.g-button--activator, .main-tasklist-command .g-static.g-button--activator {
  min-width: 0;
}
.main-commandbar .g-button.main-more-menuitem, .main-commandbar .g-static.main-more-menuitem, .main-tasklist-command .g-button.main-more-menuitem, .main-tasklist-command .g-static.main-more-menuitem {
  min-width: 0;
}
.main-commandbar .g-button.main-more-menuitem .g-button__icon--activator, .main-commandbar .g-static.main-more-menuitem .g-button__icon--activator, .main-tasklist-command .g-button.main-more-menuitem .g-button__icon--activator, .main-tasklist-command .g-static.main-more-menuitem .g-button__icon--activator {
  display: none;
}
.main-commandbar .g-button .g-button__text, .main-commandbar .g-static .g-button__text, .main-tasklist-command .g-button .g-button__text, .main-tasklist-command .g-static .g-button__text {
  padding: 0;
}
.main-commandbar .g-badge, .main-tasklist-command .g-badge {
  font-size: 0.5rem;
}
.main-commandbar .g-button__icon, .main-tasklist-command .g-button__icon {
  font-size: inherit;
}
.main-commandbar .g-button__icon.fa-stack, .main-tasklist-command .g-button__icon.fa-stack {
  font-size: 0.625rem;
}

.main-notificationcenter__wrapper {
  height: calc(100% - 2rem);
  box-shadow: unset;
  z-index: 110;
}

.main-notificationcenter {
  width: 25rem;
  height: 100%;
  background-color: #f3f4f9;
  padding: 0.5rem;
}

.g-notification.g-notification-toast {
  background-color: #f3f4f9;
}

.main-tasklist {
  /*width:250px;*/
  height: calc(100% - 3rem);
  float: left;
}
.mobile .main-tasklist {
  position: absolute;
  z-index: 1;
}
.mobile .main-tasklist.g-task-list-collapsed {
  display: none;
}

.main-breadcrumbs {
  border-bottom: 1px solid #C6CDE0;
  padding: 0 0.5rem 0 0;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  max-height: calc(1.5rem + 1px);
  display: flex;
}
.main-breadcrumbs .main-breadcrumbs-wrapper {
  display: inline-block;
  flex: 0 1 auto;
  overflow: hidden;
}
.main-breadcrumbs > *:not(.main-breadcrumbs-wrapper) {
  flex: 0 0 auto;
  overflow: hidden;
}
.main-breadcrumbs .breadcrumb-close {
  line-height: 1.5rem;
}
.main-breadcrumbs .breadcrumb-close .g-link {
  color: #222;
  vertical-align: middle;
}
.main-breadcrumbs .breadcrumb-close:hover .g-link {
  color: #C63C3C;
}
.main-breadcrumbs > .breadcrumb-back {
  align-self: center;
  border-right: 1px solid #C6CDE0;
}
.main-breadcrumbs > .breadcrumb-back .g-link {
  margin: 0;
  padding: 0.25rem 0.5rem;
}
.main-breadcrumbs > .breadcrumb-back:hover {
  background-color: #1D3E8F;
  border-right: 1px solid #1D3E8F;
}
.main-breadcrumbs > .breadcrumb-back:hover .g-link {
  color: #F4F6F9;
}

.main-breadcrumbs-list {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-breadcrumbs-list > li {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 auto;
  flex-shrink: 1000;
  position: relative;
  transition: transform ease-in-out 0.3s;
  font-size: 0.8125rem;
  display: inline-block;
  white-space: nowrap;
  margin: 0;
}
.main-breadcrumbs-list > li > * {
  display: inline;
}
.main-breadcrumbs-list > li > *:nth-child(2):not(.g-link) {
  padding-left: 0.25rem;
}
.main-breadcrumbs-list > li .sep:before {
  content: ">";
  color: #C6CDE0;
  padding: 0 0.25rem 0 0;
  transition: all 300ms;
}
.main-breadcrumbs-list > li:hover {
  flex: 1 0 auto;
}
.main-breadcrumbs-list > li:hover .sep:before {
  padding: 0 0.0625rem 0 0.1875rem;
}
.main-breadcrumbs-list > li:hover:not(:last-of-type) {
  opacity: 1;
}
.main-breadcrumbs-list > li:hover:not(:last-of-type) ~ li {
  transition: transform ease-in-out 0.4s;
  opacity: 0.2;
}
.main-breadcrumbs-list > li:first-child {
  flex: 0 0 auto;
  flex-shrink: 10;
  padding-left: 0.25rem;
}
.main-breadcrumbs-list > li:first-child:hover {
  flex-shrink: 0;
}
.main-breadcrumbs-list > li:first-child .sep {
  display: none;
}
.main-breadcrumbs-list > li:last-child {
  flex: 1 0 auto !important;
}
.main-breadcrumbs-list > li:last-child:hover {
  flex: 1 0 auto !important;
}
.main-breadcrumbs-list > li:nth-last-child(2) {
  flex: 0 0 auto;
  flex-shrink: 50;
}
.main-breadcrumbs-list > li:nth-last-child(2):hover {
  flex-shrink: 0;
}
.main-breadcrumbs-list > li:not(:last-of-type) {
  padding-right: 0.25rem;
}
.main-breadcrumbs-list > li:last-of-type {
  font-weight: 700;
}

.main-breadcrumbs.main-breadcrumbs--empty {
  border-bottom-width: 0;
}
.main-breadcrumbs.main-breadcrumbs--empty > * {
  display: none;
}

.activity-dialog.ui-dialog-docked {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 0; /* bylo zakomentovano, ale bez tohoto se menu skryva pod panely */
  /*position: relative !important;*/
  display: none !important;
}
.activity-dialog.ui-dialog-docked:last-of-type {
  display: inline-block !important;
}
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-toolbar__wrapper > .g-button,
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-buttonpanel__item > .g-button,
.activity-dialog.ui-dialog-docked .menubar .g-toolbar__wrapper > .g-button,
.activity-dialog.ui-dialog-docked .menubar .g-buttonpanel__item > .g-button {
  height: 3rem;
}
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-toolbar__wrapper > .g-button:not(.g-button--activator),
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-buttonpanel__item > .g-button:not(.g-button--activator),
.activity-dialog.ui-dialog-docked .menubar .g-toolbar__wrapper > .g-button:not(.g-button--activator),
.activity-dialog.ui-dialog-docked .menubar .g-buttonpanel__item > .g-button:not(.g-button--activator) {
  min-width: 3rem;
}
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-toolbar__wrapper > .g-button .g-button__icon:not(.fa-stack):not(.gi-stack),
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-buttonpanel__item > .g-button .g-button__icon:not(.fa-stack):not(.gi-stack),
.activity-dialog.ui-dialog-docked .menubar .g-toolbar__wrapper > .g-button .g-button__icon:not(.fa-stack):not(.gi-stack),
.activity-dialog.ui-dialog-docked .menubar .g-buttonpanel__item > .g-button .g-button__icon:not(.fa-stack):not(.gi-stack) {
  font-size: 1.3125rem;
}
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-toolbar__wrapper > .g-button .g-button__icon.gi-stack, .activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-toolbar__wrapper > .g-button .g-button__icon.fa-stack,
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-buttonpanel__item > .g-button .g-button__icon.gi-stack,
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-buttonpanel__item > .g-button .g-button__icon.fa-stack,
.activity-dialog.ui-dialog-docked .menubar .g-toolbar__wrapper > .g-button .g-button__icon.gi-stack,
.activity-dialog.ui-dialog-docked .menubar .g-toolbar__wrapper > .g-button .g-button__icon.fa-stack,
.activity-dialog.ui-dialog-docked .menubar .g-buttonpanel__item > .g-button .g-button__icon.gi-stack,
.activity-dialog.ui-dialog-docked .menubar .g-buttonpanel__item > .g-button .g-button__icon.fa-stack {
  font-size: 1.3125rem;
}
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-toolbar__wrapper > .g-button .g-button__icon.gi-stack,
.activity-dialog.ui-dialog-docked .ui-dialog-toolbar .g-buttonpanel__item > .g-button .g-button__icon.gi-stack,
.activity-dialog.ui-dialog-docked .menubar .g-toolbar__wrapper > .g-button .g-button__icon.gi-stack,
.activity-dialog.ui-dialog-docked .menubar .g-buttonpanel__item > .g-button .g-button__icon.gi-stack {
  width: 1.3125rem;
}

.main-logout-menuitem.ui-state-focus, .main-logout-menuitem:hover {
  background-color: #ED1E79 !important;
}

.main-user.main-user--pict.g-button {
  border-left: 1px solid lightslategray;
  margin-left: 0.5rem;
  padding-left: 0;
}
.main-user .ginfobar__item {
  text-align: right;
}
.main-user.main-user--pict .ginfobar__item {
  display: flex;
  align-items: center;
}
.main-user .user-pict {
  height: 2.5rem;
  width: 2.5rem;
  margin-right: 0.25rem;
}
.main-user .user-wrap {
  display: inline-block;
}
.main-user .user-name {
  display: block;
  width: 100%;
}
.main-user .user-function {
  font-size: 0.625rem;
  display: block;
}
.gactionmenu .main-user {
  padding: 0.25rem 0.25rem 0 0.25rem;
  line-height: normal;
}
.gactionmenu .main-user .ginfobar__item {
  text-align: left;
}
.gactionmenu .main-user .user-wrap {
  margin-top: 0.25rem;
}
.gactionmenu .main-user .user-name, .gactionmenu .main-user .user-function {
  font-size: 0.75rem;
}
.gactionmenu .main-user .user-function {
  font-weight: normal;
}
.gactionmenu .main-user .item__left {
  display: none;
}
.gactionmenu .main-user .item__caption {
  overflow: auto;
  white-space: initial;
}

.userpanel-infos {
  padding: 0.5rem;
  background-color: #F4F6F9;
  border: 0.25rem solid #0D1732;
  color: #222;
}
.userpanel-infos .minifoto {
  font-size: 2.75rem;
}
.userpanel-infos .user {
  font-size: 1.125rem;
}
.userpanel-infos .session {
  color: #0D1732;
}
.userpanel-infos table {
  width: 100%;
}
.userpanel-infos table td {
  font-weight: 700;
}
.userpanel-infos table td:first-of-type {
  font-weight: 400;
}

.g-app-launcher {
  padding: 0.75rem;
  max-height: 320px;
}
.g-app-launcher--no-apps {
  text-align: center;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
}
.g-app-launcher__item {
  position: relative;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
}
.g-app-launcher__item .g-button {
  display: block;
  height: auto;
  width: 100%;
  word-break: break-word;
  white-space: normal;
  line-height: 1rem;
  overflow: hidden;
}
.g-app-launcher__item .g-button .g-button__text {
  display: block;
  font-weight: bold;
  padding: 0;
}
.g-app-launcher__item .g-button:first-child {
  padding: 0.75rem;
  background: transparent;
}
.g-app-launcher__item .g-button:nth-child(2) {
  height: auto;
  line-height: 1rem;
  display: none;
}
.g-app-launcher__item .g-button, .g-app-launcher__item--current .g-button:first-child {
  border: 1px solid #C6CDE0;
}
.g-app-launcher__item:not(.g-app-launcher__item--current) .g-button:first-child {
  border: 1px solid transparent;
}
.g-app-launcher__item:not(.g-app-launcher__item--current) .g-button:first-child:focus {
  border: 1px solid #E7EAF2;
}
.g-app-launcher__item img {
  max-width: 48px;
  max-height: 48px;
  min-width: 48px;
  min-height: 48px;
}
.g-app-launcher__item .g-button__icon:not(.g-unic-icon) {
  font-size: inherit;
}
.g-app-launcher__item:hover {
  cursor: pointer;
}
.g-app-launcher__item:hover .g-button, .g-app-launcher__item .g-button:first-child.g-button--mb-activated {
  background-color: #E7EAF2;
}
.g-app-launcher__item:not(.g-app-launcher__item--current):hover .g-button:first-child {
  border: 1px solid #E7EAF2;
}
.g-app-launcher__item:hover .g-button:nth-child(1), .g-app-launcher__item .g-button:nth-child(1).g-button--activated {
  display: block;
}

.g-app-launcher__item.g-app-launcher__item--with-menu {
  margin-bottom: 0;
}

.g-app-launcher {
  width: 10rem;
}

.analysis-highlight {
  background: lightyellow !important;
}
.analysis-highlight > * {
  opacity: 0.5;
}

/*****************************************************
 * PLACEHOLDERY
 *****************************************************/
::webkit-input-placeholder {
  font-style: italic;
  color: silver;
}

::-moz-placeholder {
  font-style: italic;
  color: silver;
}

:-ms-input-placeholder {
  font-style: italic;
  color: silver;
}

/*.ggrid--vertical-intervals {
    .gform-vertical-interval-value {
        line-height: 12px;
        font-size: 10px;

        letter-spacing: 1px;
        opacity: 1;
        display: inherit;
    }

    .gformbox.gform-vertical-interval-value .gfield-table {
        border: none;
    }

    .g-cfu-filter .gselectbox-itemc,
    .g-cfu-filter .gselectbox-item,
    .fieldcell.g-cfu-filter .gselectbox-itemc,
    .gform-vertical-interval-value .gselectbox-item {
        border: none;
        padding: 0;
    }

    .gfield.gform-vertical-interval-value {
        display: inherit;
        padding: 0 2px;
    }
}*/
.g-cfu-filter:hover {
  background-color: #E7EAF2;
}
.g-cfu-filter .g-cfu-emptyval {
  display: inline;
  color: #C6CDE0;
}

/* opravuje uskoceni hodnoty v editoru stranou*/
.ggrid .header .g-cfu-filter {
  overflow: visible;
}

.ggrid .viewport .cell:not(.editing) .g-cfu-value {
  line-height: 1.625rem;
}

.g-cfu-emptyval {
  display: none;
}

.g-cfu-value__end.g-cfu-value--same {
  display: none;
}

.g-cfu-nonfilter {
  background-color: #e6e6e6;
}

.g-search-bar {
  flex-grow: 2;
  max-width: 300px;
  justify-content: flex-end;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .g-search-bar {
    flex-grow: 0;
    min-width: 300px;
  }
}
.g-search-field__print-area .gactionmenu__header {
  text-align: center;
}
.g-search-field__print-area .gactionmenu__header h3 + div {
  font-weight: normal;
}
.g-search-field__print-area .gactionmenu__header > div:first-child {
  padding: 0.5rem;
}
.g-search-field__print-area .gactionmenu__header > div.g-search-field--action-enabled:hover {
  cursor: pointer;
  background-color: #C6CDE0;
}
.g-search-field__print-area .g-search-field__header-item__icon .fa-stack, .g-search-field__print-area .g-search-field__header-item__icon .gi-stack {
  font-size: 2rem;
}
.g-search-field__print-area .g-search-field__header-item__icon > i, .g-search-field__print-area .g-search-field__header-item__icon img {
  font-size: 4rem;
  max-height: 4rem;
}
.g-search-field__print-area .gactionmenu__frame-wrapper--level0 .gactionmenu__item .item__center {
  padding: 0.25rem;
}
.g-search-field__print-area .gactionmenu__frame-wrapper--level0 .gactionmenu__item .item__left {
  min-width: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.g-search-field__print-area .gactionmenu__frame-wrapper--level0 .gactionmenu__item .item__left :not(.fa-stack):not(.gi-stack) i, .g-search-field__print-area .gactionmenu__frame-wrapper--level0 .gactionmenu__item .item__left img {
  font-size: 1.5rem;
  max-height: 1.5rem;
}
.g-search-field__print-area .gactionmenu__frame-wrapper--level0 .g-search-field__item__text > div {
  font-weight: bold;
  line-height: 1.25rem;
}
.g-search-field__print-area .gactionmenu__frame-wrapper--level0 .g-search-field__item__text > div + div {
  line-height: 1rem;
  font-weight: normal;
}

.g-search-field__search-icon {
  text-align: center;
  font-size: 0.8125rem;
  top: 0;
  padding: 0 0.25rem 0 0.5rem;
}

.g-search-field--loading {
  -webkit-animation: g-search-field--color-change 1s infinite;
  -moz-animation: g-search-field--color-change 1s infinite;
  -o-animation: g-search-field--color-change 1s infinite;
  -ms-animation: g-search-field--color-change 1s infinite;
  animation: g-search-field--color-change 1s infinite;
}

@-webkit-keyframes g-search-field--color-change {
  0% {
    color: rgba(34, 34, 34, 0.5);
  }
  50% {
    color: #222222;
  }
  100% {
    color: rgba(34, 34, 34, 0.5);
  }
}
@-moz-keyframes g-search-field--color-change {
  0% {
    color: rgba(34, 34, 34, 0.5);
  }
  50% {
    color: #222222;
  }
  100% {
    color: rgba(34, 34, 34, 0.5);
  }
}
@-ms-keyframes g-search-field--color-change {
  0% {
    color: rgba(34, 34, 34, 0.5);
  }
  50% {
    color: #222222;
  }
  100% {
    color: rgba(34, 34, 34, 0.5);
  }
}
@-o-keyframes g-search-field--color-change {
  0% {
    color: rgba(34, 34, 34, 0.5);
  }
  50% {
    color: #222222;
  }
  100% {
    color: rgba(34, 34, 34, 0.5);
  }
}
@keyframes g-search-field--color-change {
  0% {
    color: rgba(34, 34, 34, 0.5);
  }
  50% {
    color: #222222;
  }
  100% {
    color: rgba(34, 34, 34, 0.5);
  }
}
.g-search-field__domain-area {
  font-weight: bold;
  background-color: #0d1732;
  color: #eee;
  display: none;
  padding: 0.2rem 0.25rem;
  min-height: 1.625rem;
  position: relative;
  outline: none;
  vertical-align: middle;
  border: 1px solid #0d1732;
  text-overflow: ellipsis;
  overflow: hidden;
}

.g-search-field__domain-area:not(:empty) {
  display: inline-block;
  min-width: 3rem;
  margin-left: 0.375rem;
}

.g-search-field__domain-area span:not(.visually-hidden):after {
  content: " : ";
}

.gsearchfield.gfield-focus > div {
  box-shadow: 0 0 5px #2650b9;
  border-color: #2650b9;
}

.gsearchfield {
  min-width: 180px;
  max-width: 600px;
  padding: 0.5rem;
  margin: 0 auto;
}
.gsearchfield.searchfield-expanding {
  margin: 0;
}
.gsearchfield .g-search-field__domain-area:not(:empty) + input {
  max-width: calc(100% - 4rem);
}
.gsearchfield input {
  min-height: 1.625rem;
  border: none;
  outline: none;
  background: transparent;
  height: auto;
  position: relative;
  padding: 0.15rem 0.25rem 0 0.5rem;
  vertical-align: middle;
  flex-grow: 1;
  max-width: calc(100% - 1.5rem);
}
.gsearchfield input::-ms-clear {
  display: none;
}
.gsearchfield input::placeholder {
  font-size: 0.8125rem;
  color: #707070;
}
.gsearchfield > div:not(.g-search-field__domain-area) {
  outline: none;
  background: #FFFFFF;
  border: 1px solid gray;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.gsearchfield__best-result .separator span + span:not(:empty):before {
  content: " // ";
}

.searchfield-no-dialog {
  padding: 0.75rem;
}
.searchfield-no-dialog .gsearchfield {
  width: 50%;
  max-width: unset;
  margin: 1rem 0rem 0rem 0rem;
  padding-left: 0.75rem;
  padding-right: 1.5rem;
}
.searchfield-no-dialog .gsearchfield > div {
  height: 2.25rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper {
  padding: 0.75rem 1.5rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper .gactionmenu__item > .item__center > .item__caption {
  font-weight: bold;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child {
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__items > .item__separator > .separator {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__items > .item__separator:first-child > .separator {
  margin-top: 0.5rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__item {
  min-height: 3.75rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__item > .item__left {
  width: unset;
  padding: 0.5rem 0.75rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__item > .item__left .item__icon {
  font-size: 2.5rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__item > .item__left .item__icon.gi-stack {
  width: 2.5rem;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__item > .item__left img.item__icon {
  width: 2.5rem;
  height: 2.5rem;
  max-height: unset;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__item > .item__center > span {
  display: none;
}
.searchfield-no-dialog .gactionmenu__frame-wrapper:first-child .gactionmenu__item > .item__right {
  border: 0;
  font-size: 2.5rem;
  padding: 0 1rem;
}

.ghelper-ginlinedialog {
  background-color: #fffce0;
}

.ghelper-cover .btnExit {
  font-size: 3rem;
  color: white;
  position: absolute;
}

.ghelper-cover .btnExit:hover {
  opacity: 0.75;
  cursor: pointer;
}

.ghelper-cover .transparent {
  /* Modern!
  /* Firefox 0.9+, Safari 2?, Chrome any?
  /* Opera 9+, IE 9+ */
  opacity: 0.8;
}

.ghelper-cover .ghelper-buttons-width {
  width: 10rem;
}

.g-stepper .transparent {
  /* Modern!
  /* Firefox 0.9+, Safari 2?, Chrome any?
  /* Opera 9+, IE 9+ */
  opacity: 0.6;
}

.g-stepper {
  z-index: 200;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g-stepper-border .g-stepper-border-child {
  background-color: black;
  position: absolute;
}

.stepper-helper-layer-header-exit-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  color: black;
}

.stepper-helper-layer-header-exit-button:hover {
  background-color: #C6CDE0;
  cursor: pointer;
}

.stepper-page-overlay {
  position: fixed;
  background-color: #000;
  z-index: 999999;
  opacity: 0.6;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.stepper-highlighted-element-stage {
  position: absolute;
  z-index: 9999998;
  /*box-shadow: 1px 1px 5px 5px #2650b9;*/ /* #2650b9 - světle modrá */ /* #1d3e8f*/
  border: 0.2rem solid #6699FF;
  /*border: 1px solid #777;
  border: 1px solid rgba(0,0,0,.5);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0,0,0,.4);*/
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.stepper-helper-layer-body {
  min-height: 3.5rem;
  font-size: 12px;
  font-weight: normal;
  color: #222;
  line-height: 18.5px;
  margin-bottom: 4rem;
}

.stepper-helper-layer-footer-bullets ul li a.stepper-helper-layer-footer-bullets-highlight {
  background-color: #1d3e8f;
}

.stepper-highlighted-element {
  border: none;
  position: relative;
  z-index: 9999999 !important;
}

.stepper-helper-layer-wrapper {
  background-color: white;
}

.stepper-helper-layer {
  min-height: 20rem;
  min-width: 22rem;
  background-color: white;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  height: auto;
}

.stepper-helper-layer-header {
  /*margin-bottom: 24px;*/
  height: 30px;
}

.stepper-helper-layer-header-title {
  font-size: 16px;
  font-weight: bold;
  color: rgb(34, 34, 34);
}

.stepper-helper-layer-body {
  overflow: auto;
  height: 200px;
}

.stepper-helper-layer-footer-buttons {
  display: inline-flex;
}

.stepper-helper-layer-footer-button .g-button {
  height: 1.5rem;
  width: 4rem;
}

.stepper-helper-layer-footer-button.next {
  margin-left: 6px;
}

.stepper-helper-layer-footer {
  display: inline-flex;
  margin-bottom: 1rem;
  /** vycentrování prvků v zápátí na střed */
  text-align: center;
  /** následující čtyři parametry jsou pro ukotvení zápátí dole v inlinedialogu*/
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.stepper-helper-layer-footer-left {
  width: 100%;
  display: inline-block;
  min-width: 10rem;
  margin-left: 1rem;
  text-align: right;
}

.stepper-helper-layer-footer-right {
  text-align: right;
  margin: auto;
  margin-right: 1rem;
  margin-left: 1rem;
}

.stepper-helper-layer-footer-bullets ul {
  /*min-width: 8rem;*/
  display: inline-block;
  margin: 0;
  padding: 0;
  /* For IE, the outcast */
  zoom: 1;
  *display: inline;
}

.stepper-helper-layer-footer-bullets ul li {
  box-sizing: content-box;
  list-style: none;
  float: left;
  margin: 0.2rem;
}

.stepper-helper-layer-footer-bullets ul li a {
  box-sizing: content-box;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: #ccc;
  border-radius: 2rem;
  -moz-border-radius: 2rem;
  -webkit-border-radius: 2rem;
  text-decoration: none;
  cursor: pointer;
}

.stepper-helper-layer-footer-bullets ul li a:hover {
  background: #999;
}

.ui-dialog.ui-widget.stepper-initial-z-index {
  z-index: initial;
}

.stepper-helper-layer-footer-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

.gnote-colorbar {
  overflow: hidden;
}

.gnote-colorbar .container {
  height: 2rem;
  display: inline-flex;
  width: 100%;
}

.gnote-colorbar .container .color {
  height: 100%;
  width: 2rem;
}

.gnote-colorbar .container .color:hover {
  cursor: pointer;
  border: 1px solid gray;
}

.gnote-colorbar .container .white {
  background-color: #ffffff;
}

.gnote-colorbar .container .grey {
  background-color: #dde2ee;
}

.gnote-colorbar .container .blue {
  background-color: #e8f0ff;
}

.gnote-colorbar .container .pink {
  background-color: #fcddeb;
}

.gnote-colorbar .container .green {
  background-color: #dff4eb;
}

.gnote-colorbar .container .yellow {
  background-color: #fff4e8;
}

.gnote-colorbar .container .orange {
  background-color: #f7e2e2;
}

.gnote .gnote-header {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid lightgray;
}

.gnote_header_text_type:hover {
  cursor: pointer;
  font-weight: bold;
}

.gnote .gnote-header-buttons-left {
  float: left;
}

.gnote .gnote-header-buttons-right {
  float: right;
}

.gnote .gnote-header-buttons-right.hidden {
  display: none;
}

.gnote .gnote-header-buttons-right-search {
  display: flex;
  border: 1px solid darkgray;
  background-color: white;
  height: 1.4rem;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-left {
  font-size: larger;
  margin-right: 0.2em;
  margin-left: 0.1rem;
  font-weight: bold;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-input {
  border: none;
  width: 6.5rem;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-input:focus {
  outline: none;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-right {
  font-size: medium;
  margin-right: 0.1rem;
  opacity: 0.8;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-right:hover {
  cursor: pointer;
  opacity: 1;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-right--hidden {
  visibility: hidden;
  font-size: medium;
  margin-right: 0.1rem;
  opacity: 0.8;
}

.gnote .gnote-header-buttons-clear {
  clear: both;
}

.gnote .gnote-header-menu {
  width: 100%;
}

.gnote .gnote-header-menu .gnote-header-menu-left {
  float: left;
  display: inline-flex;
}

.gnote .gnote-answer-type {
  margin-top: -1px;
}

.gnote .gnote-answer-type * {
  margin: 0;
  padding: 0;
  height: 1rem;
  width: 4rem;
}

.gnote .gnote-answer-type .gcontrolbox-buttons.right {
  display: none;
}

.gnote .gnote-answer-type:hover {
  color: black;
}

.gnote .gnote-answer-type .gfield-table {
  background: inherit;
  border: none;
}

.note-list {
  font-size: 0.7rem;
  color: gray;
  margin-left: 0.3rem;
}

.note-list:hover {
  cursor: pointer;
  color: black;
}

.gnote-type {
  margin-right: 0.5rem;
  width: 8rem;
}

.gnote-type .gfield-table {
  border: none;
  background-color: #fafafa;
}

.gnote-type .gcontrolbox-buttons {
  border: none;
}

.gnote-type .gfield-table .selector-arrow {
  border: none;
}

.gnote .gnote-header-menu-left-name {
  width: 13rem;
  border-bottom: 1px solid lightgray;
}

.gnote .gnote-header-menu-left-name .gfield-table {
  border: none;
  background-color: #fafafa;
}

.gnote .gnote-header-menu .gnote-header-menu-left .gnote-header-menu-left-name .gfield-table .gcontrolbox-buttons.right {
  border: none;
}

.gnote .gnote-header-menu-left-name .gfield-table .selector-arrow {
  border: none;
}

.gnote .gnote-header-menu .gnote-header-menu-right {
  float: right;
  display: inline-flex;
}

.gnote .gnote-header-menu-right-context-menu {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.gnote .gnote-header-buttons-right-search-icon-right-exit {
  font-size: 1.5rem;
}

.gnote .gnote-header-menu.clear {
  clear: both;
}

.gnote .gnote-header-new-note {
  margin-top: 0.3rem;
}

.gnote .gnote-header-new-note-save {
  margin-top: 1rem;
  text-align: right;
  color: white;
}

.gnote .gnote-header-new-todo-save {
  margin-top: 1rem;
  text-align: right;
  color: white;
}

.gnote .gnote-header-menu-right-context-menu:hover {
  cursor: pointer;
  opacity: 0.7;
}

.gnote .gnote-header-buttons-right-search-icon-right-exit:hover {
  cursor: pointer;
  opacity: 0.7;
}

@media screen and (max-width: 143px) {
  .gnote .gnote-header-buttons-left-note {
    height: auto;
    width: 100%;
  }
}
.gnote .gnote-header-buttons-left-note--hidden {
  visibility: hidden;
}

.gnote .gnote-header-new-todo-item {
  display: inline-flex;
  width: 100%;
  height: 2rem;
  padding-bottom: 1px;
  margin-top: 7px;
}

.gnote .gnote-header-new-todo-item:hover {
  border-bottom: 1px solid lightgray;
  padding: 0px;
}

.gnote .gnote-header-new-todo-item-sortable {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  margin-right: 0.5rem;
  color: gray;
  visibility: hidden;
}

.gnote .gnote-header-new-todo-item-sortable--visible:hover {
  color: black;
  cursor: move;
}

.gnote .gnote-header-new-todo-item-sortable--visible {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  margin-right: 0.5rem;
  color: gray;
  visibility: visible;
}

.gnote .gnote-header-new-todo-item-check {
  margin-top: 3px;
  margin-right: 5px;
}

.gnote .gnote-header-new-todo-item-value .gfield-table {
  border: none;
  background-color: #fafafa;
  height: 1rem;
}

.gnote .gnote-header-new-todo-item-value .gfield-table.gnote-header-new-todo-item-value--edite {
  outline: 1px solid gray;
  background-color: white;
}

.gnote .gnote-header-new-todo-item-buttons {
  text-align: right;
  font-size: 1.5rem;
  position: absolute;
  right: 1rem;
}

.gnote .gnote-header-new-todo-item-remove {
  visibility: hidden;
  top: -0.1rem;
}

.gnote .gnote-header-new-todo-item-remove--visible {
  top: -0.1rem;
  visibility: visible;
}

.gnote .gnote-header-new-todo-item-remove--visible:hover {
  cursor: pointer;
  opacity: 0.5;
}

.gnote .gnote-body-list-note {
  margin: 1rem;
}

.gnote-body-list-note-base {
  border: 1px solid darkgray;
  margin-top: 1rem;
  border-radius: 0.1rem;
  background-color: white;
  position: relative;
}

.gnote-body-list-note-item .gnote-body-list-note-item-new {
  height: 0.4rem;
  width: 0.4rem;
  background-color: dodgerblue;
  border-radius: 1rem;
  position: absolute;
  margin: 0.1rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  color: gray;
  display: inline-flex;
}

.gnote-body-list-note-item-header-new {
  height: 0.4rem;
  width: 0.4rem;
  background-color: dodgerblue;
  border-radius: 5rem;
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-text {
  font-style: italic;
  width: 100%;
  font-size: 0.6rem;
  display: flex;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons {
  display: inline-flex;
  color: black;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-color {
  color: gray;
  font-size: 0.6rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-color:hover {
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-update {
  color: gray;
  font-size: 0.6rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-remove {
  margin-left: 0.3rem;
  color: gray;
  font-size: 0.6rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-remove:hover {
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-update:hover {
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons-update:hover {
  opacity: 0.5;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons-remove {
  margin-left: 0.5rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons-remove:hover {
  opacity: 0.5;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-body {
  padding: 0.5rem;
  word-break: break-word;
  margin: 0.3rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-body-textarea {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.gnote-body-list-note-item-gbuttonpanel-footer-separator {
  border-top: 1px solid darkgray;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

.gnote-todo-update {
  margin: 1rem;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-left {
  float: left;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right {
  float: right;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  font-weight: bold;
  color: navy;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-answer {
  cursor: pointer;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-list {
  cursor: pointer;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-answer:hover {
  opacity: 0.7;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-list:hover {
  opacity: 0.7;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-clear {
  clear: both;
}

/** answer */
.gnote-list-answer {
  font-size: 2rem;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
}

.gnote-list-answer:hover {
  opacity: 0.7;
}

/* RESIZE */
.gnote .gnote-header .gnote-header-buttons-left.gnote-header-resize-left {
  width: 100%;
  float: none;
}

.gnote .gnote-header .gnote-header-buttons-left.gnote-header-resize-left .g-button {
  width: 100%;
}

.gnote .gnote-header .gnote-header-buttons-right.gnote-header-resize-right {
  width: 100%;
  float: none;
  margin-top: 0.5rem;
}

.gnote .gnote-header .gnote-header-buttons-right.gnote-header-resize-right .gnote-header-buttons-right-search-input {
  width: 13rem;
}

.gnote .gnote_header_text_author {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gnote .gnote_header_text_date {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gnote .gnote_text_separator {
  margin-left: 0.1rem;
  margin-right: 0.2rem;
}

.gnote-body-list-note-item-header.gnote-flexoff {
  display: block;
}

.gcolorpicker .gcolorpicker__parent.gcolorpicker__parent_clicked {
  cursor: pointer;
}

.gcolorpicker .gcolorpicker__parent.gcolorpicker__parent_clicked:hover {
  opacity: 0.3;
}

.gcolorpicker_empty {
  color: white;
}

.gcolorpicker__inlinedialog .item_text.gcolorpicker_empty {
  color: black;
}

.gcolorpicker__text.gcolorpicker_empty {
  color: black;
}

.gcolorpicker_notmarked {
  color: lightgray;
}

.gcolorpicker_gray {
  color: lightgray;
}

.gcolorpicker_white {
  color: white;
}

.gcolorpicker_red {
  color: #e1001e;
}

.gcolorpicker_green {
  color: #3cb44b;
}

.gcolorpicker_blue {
  color: #00d7ff;
}

.gcolorpicker_purple {
  color: #aa00be;
}

.gcolorpicker_yellow {
  color: #ffeb19;
}

.gcolorpicker__inlinedialog .item_text.gcolorpicker_notmarked {
  color: black;
}

.gcolorpicker__text.gcolorpicker_notmarked {
  color: black;
}

.gcolorpicker .gcolorpicker__parent .gcolorpicker__text.with_icon {
  padding: 0px 10px;
}

.gcolorpicker .gcolorpicker__child {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  font-size: 1rem;
}

.gcolorpicker__inlinedialog {
  overflow: hidden;
}

.gcolorpicker__inlinedialog.inlinepicker__text {
  margin: 0.5rem;
}

.gcolorpicker__inlinedialog.inlinepicker__text .item_text {
  margin-bottom: 0.1rem;
}

.gcolorpicker__inlinedialog.inlinepicker__text .item_text:hover {
  opacity: 0.3;
}

.gcolorpicker__inlinedialog .item {
  cursor: pointer;
}

.gcolorpicker__inlinedialog .item_icon {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  margin: 0.2rem;
  position: relative;
  font-size: 1.4rem;
}

.gcolorpicker__inlinedialog .item_icon:hover {
  opacity: 0.3;
}

.gform .gform-field.gcolorpickerfield .gcolorpicker__parent, .gform .gcolorpickerfield.gform-text .gcolorpicker__parent {
  position: relative;
  top: 6px;
  float: left;
}

.statusbar .gcolorpicker {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.gnote-colorbar {
  overflow: hidden;
}

.gnote-colorbar .container {
  height: 2rem;
  display: inline-flex;
  width: 100%;
}

.gnote-colorbar .container .color {
  height: 100%;
  width: 2rem;
}

.gnote-colorbar .container .color:hover {
  cursor: pointer;
  border: 1px solid gray;
}

.gnote-colorbar .container .white {
  background-color: #ffffff;
}

.gnote-colorbar .container .grey {
  background-color: #dde2ee;
}

.gnote-colorbar .container .blue {
  background-color: #e8f0ff;
}

.gnote-colorbar .container .pink {
  background-color: #fcddeb;
}

.gnote-colorbar .container .green {
  background-color: #dff4eb;
}

.gnote-colorbar .container .yellow {
  background-color: #fff4e8;
}

.gnote-colorbar .container .orange {
  background-color: #f7e2e2;
}

.gnote .gnote-header {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid lightgray;
}

.gnote_header_text_type:hover {
  cursor: pointer;
  font-weight: bold;
}

.gnote .gnote-header-buttons-left {
  float: left;
}

.gnote .gnote-header-buttons-right {
  float: right;
}

.gnote .gnote-header-buttons-right.hidden {
  display: none;
}

.gnote .gnote-header-buttons-right-search {
  display: flex;
  border: 1px solid darkgray;
  background-color: white;
  height: 1.4rem;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-left {
  font-size: larger;
  margin-right: 0.2em;
  margin-left: 0.1rem;
  font-weight: bold;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-input {
  border: none;
  width: 6.5rem;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-input:focus {
  outline: none;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-right {
  font-size: medium;
  margin-right: 0.1rem;
  opacity: 0.8;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-right:hover {
  cursor: pointer;
  opacity: 1;
}

.gnote .gnote-header-buttons-right-search .gnote-header-buttons-right-search-icon-right--hidden {
  visibility: hidden;
  font-size: medium;
  margin-right: 0.1rem;
  opacity: 0.8;
}

.gnote .gnote-header-buttons-clear {
  clear: both;
}

.gnote .gnote-header-menu {
  width: 100%;
}

.gnote .gnote-header-menu .gnote-header-menu-left {
  float: left;
  display: inline-flex;
}

.gnote .gnote-answer-type {
  margin-top: -1px;
}

.gnote .gnote-answer-type * {
  margin: 0;
  padding: 0;
  height: 1rem;
  width: 4rem;
}

.gnote .gnote-answer-type .gcontrolbox-buttons.right {
  display: none;
}

.gnote .gnote-answer-type:hover {
  color: black;
}

.gnote .gnote-answer-type .gfield-table {
  background: inherit;
  border: none;
}

.note-list {
  font-size: 0.7rem;
  color: gray;
  margin-left: 0.3rem;
}

.note-list:hover {
  cursor: pointer;
  color: black;
}

.gnote-type {
  margin-right: 0.5rem;
  width: 8rem;
}

.gnote-type .gfield-table {
  border: none;
  background-color: #fafafa;
}

.gnote-type .gcontrolbox-buttons {
  border: none;
}

.gnote-type .gfield-table .selector-arrow {
  border: none;
}

.gnote .gnote-header-menu-left-name {
  width: 13rem;
  border-bottom: 1px solid lightgray;
}

.gnote .gnote-header-menu-left-name .gfield-table {
  border: none;
  background-color: #fafafa;
}

.gnote .gnote-header-menu .gnote-header-menu-left .gnote-header-menu-left-name .gfield-table .gcontrolbox-buttons.right {
  border: none;
}

.gnote .gnote-header-menu-left-name .gfield-table .selector-arrow {
  border: none;
}

.gnote .gnote-header-menu .gnote-header-menu-right {
  float: right;
  display: inline-flex;
}

.gnote .gnote-header-menu-right-context-menu {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.gnote .gnote-header-buttons-right-search-icon-right-exit {
  font-size: 1.5rem;
}

.gnote .gnote-header-menu.clear {
  clear: both;
}

.gnote .gnote-header-new-note {
  margin-top: 0.3rem;
}

.gnote .gnote-header-new-note-save {
  margin-top: 1rem;
  text-align: right;
  color: white;
}

.gnote .gnote-header-new-todo-save {
  margin-top: 1rem;
  text-align: right;
  color: white;
}

.gnote .gnote-header-menu-right-context-menu:hover {
  cursor: pointer;
  opacity: 0.7;
}

.gnote .gnote-header-buttons-right-search-icon-right-exit:hover {
  cursor: pointer;
  opacity: 0.7;
}

@media screen and (max-width: 143px) {
  .gnote .gnote-header-buttons-left-note {
    height: auto;
    width: 100%;
  }
}
.gnote .gnote-header-buttons-left-note--hidden {
  visibility: hidden;
}

.gnote .gnote-header-new-todo-item {
  display: inline-flex;
  width: 100%;
  height: 2rem;
  padding-bottom: 1px;
  margin-top: 7px;
}

.gnote .gnote-header-new-todo-item:hover {
  border-bottom: 1px solid lightgray;
  padding: 0px;
}

.gnote .gnote-header-new-todo-item-sortable {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  margin-right: 0.5rem;
  color: gray;
  visibility: hidden;
}

.gnote .gnote-header-new-todo-item-sortable--visible:hover {
  color: black;
  cursor: move;
}

.gnote .gnote-header-new-todo-item-sortable--visible {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  margin-right: 0.5rem;
  color: gray;
  visibility: visible;
}

.gnote .gnote-header-new-todo-item-check {
  margin-top: 3px;
  margin-right: 5px;
}

.gnote .gnote-header-new-todo-item-value .gfield-table {
  border: none;
  background-color: #fafafa;
  height: 1rem;
}

.gnote .gnote-header-new-todo-item-value .gfield-table.gnote-header-new-todo-item-value--edite {
  outline: 1px solid gray;
  background-color: white;
}

.gnote .gnote-header-new-todo-item-buttons {
  text-align: right;
  font-size: 1.5rem;
  position: absolute;
  right: 1rem;
}

.gnote .gnote-header-new-todo-item-remove {
  visibility: hidden;
  top: -0.1rem;
}

.gnote .gnote-header-new-todo-item-remove--visible {
  top: -0.1rem;
  visibility: visible;
}

.gnote .gnote-header-new-todo-item-remove--visible:hover {
  cursor: pointer;
  opacity: 0.5;
}

.gnote .gnote-body-list-note {
  margin: 1rem;
}

.gnote-body-list-note-base {
  border: 1px solid darkgray;
  margin-top: 1rem;
  border-radius: 0.1rem;
  background-color: white;
  position: relative;
}

.gnote-body-list-note-item .gnote-body-list-note-item-new {
  height: 0.4rem;
  width: 0.4rem;
  background-color: dodgerblue;
  border-radius: 1rem;
  position: absolute;
  margin: 0.1rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  color: gray;
  display: inline-flex;
}

.gnote-body-list-note-item-header-new {
  height: 0.4rem;
  width: 0.4rem;
  background-color: dodgerblue;
  border-radius: 5rem;
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-text {
  font-style: italic;
  width: 100%;
  font-size: 0.6rem;
  display: flex;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons {
  display: inline-flex;
  color: black;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-color {
  color: gray;
  font-size: 0.6rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-color:hover {
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-update {
  color: gray;
  font-size: 0.6rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-remove {
  margin-left: 0.3rem;
  color: gray;
  font-size: 0.6rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-remove:hover {
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons .note-update:hover {
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons-update:hover {
  opacity: 0.5;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons-remove {
  margin-left: 0.5rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-header-buttons-remove:hover {
  opacity: 0.5;
  cursor: pointer;
}

.gnote-body-list-note-item .gnote-body-list-note-item-body {
  padding: 0.5rem;
  word-break: break-word;
  margin: 0.3rem;
}

.gnote-body-list-note-item .gnote-body-list-note-item-body-textarea {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.gnote-body-list-note-item-gbuttonpanel-footer-separator {
  border-top: 1px solid darkgray;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

.gnote-todo-update {
  margin: 1rem;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-left {
  float: left;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right {
  float: right;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  font-weight: bold;
  color: navy;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-answer {
  cursor: pointer;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-list {
  cursor: pointer;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-answer:hover {
  opacity: 0.7;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-right-list:hover {
  opacity: 0.7;
}

.gnote-body-list-note-item-gbuttonpanel-answerfooter-clear {
  clear: both;
}

/** answer */
.gnote-list-answer {
  font-size: 2rem;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
}

.gnote-list-answer:hover {
  opacity: 0.7;
}

/* RESIZE */
.gnote .gnote-header .gnote-header-buttons-left.gnote-header-resize-left {
  width: 100%;
  float: none;
}

.gnote .gnote-header .gnote-header-buttons-left.gnote-header-resize-left .g-button {
  width: 100%;
}

.gnote .gnote-header .gnote-header-buttons-right.gnote-header-resize-right {
  width: 100%;
  float: none;
  margin-top: 0.5rem;
}

.gnote .gnote-header .gnote-header-buttons-right.gnote-header-resize-right .gnote-header-buttons-right-search-input {
  width: 13rem;
}

.gnote .gnote_header_text_author {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gnote .gnote_header_text_date {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gnote .gnote_text_separator {
  margin-left: 0.1rem;
  margin-right: 0.2rem;
}

.gnote-body-list-note-item-header.gnote-flexoff {
  display: block;
}

.grid-cert-list-ico {
  font-size: 1rem;
}

.certIcon {
  float: left;
  padding: 0.1rem 0.25rem 0;
  font-size: 2.6rem;
}
.certIcon i {
  font-size: 2.6rem;
}
.certWarning .certIcon:before {
  content: "\f071";
  position: absolute;
  right: 2%;
  z-index: 10;
  font-family: "Segoe UI", "Open Sans", FontAwesome, sans-serif;
  color: #FFB266;
  font-size: 1rem;
}

.certDialog .flex-item {
  max-width: 13rem;
  width: calc(100% - 0.5rem);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0.3rem;
}
.certDialog .certCard.ui-disabled {
  color: #6f6f6f;
  background-color: #E7EAF2;
}
.certDialog .certInfo {
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.certDialog .gbasepanel {
  height: calc(100% - 0.75rem);
}
.certDialog .gbasepanel .flex-wrapper.noCertData {
  height: inherit;
}
.certDialog .gbasepanel .flex-container-empty-value-text {
  font-weight: normal;
}
.certDialog .gbasepanel .flex-container-empty-value-text i {
  font-size: 3rem;
  display: block;
  text-align: center;
}
.certDialog .gbasepanel .flex-container-empty-value-text-wrapper {
  margin-bottom: 0rem;
}
.certDialog .flex-container-empty-value-text > div {
  font-style: italic;
}

.g-pdfannotator__side-panel ul {
  list-style: none;
  padding-left: 0;
}

.g-pdfannotator__tooltip .g-tooltip__header, .g-pdfannotator__tooltip .g-tooltip__tip {
  color: #222;
}

.admin-mode-main {
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: flex;
}

.admin-mode-panel {
  width: 350px;
  flex-grow: 1;
}

.selectSettingDb .gi-arrow-down {
  display: none;
}

.admin-mode-nav-assist {
  position: absolute;
  right: 0;
  white-space: nowrap;
  font-size: 7pt;
  z-index: 50;
  cursor: pointer;
  color: initial;
}

.gcontentpicker {
  height: 100%;
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: #0D1732;
  margin-right: 0.125rem;
  /* --- menu override --- */
  /* Tento hnus zde musi byt :-( padding mi sice posle udalost 'actionrun', ale akce se nespusti, pokud se nekline na .item__icon nebo .item__center */
  /* --- menu override end --- */
  /* Overrides pro mcustomscrollbar (bude-li mozne jej pouzit) */
}
.gcontentpicker::-webkit-scrollbar-thumb {
  background-color: #F4F6F9;
  border-radius: 6px;
  border: 3px solid #0D1732;
}
.gcontentpicker::-webkit-scrollbar-track {
  background-color: #F4F6F9;
}
.gcontentpicker::-webkit-scrollbar {
  width: 0.3215rem;
}
.gcontentpicker__wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-wrap: nowrap;
  padding: 0.5rem 0;
  justify-items: stretch;
}
.gcontentpicker__menu {
  flex: 0 0 auto;
}
.gcontentpicker__content {
  flex: 1 1 auto;
  padding: 0.5rem 2rem;
  position: relative;
}
@media screen and (min-width: 1601px) {
  .gcontentpicker__content {
    padding: 0.5rem 4rem;
  }
}
.gcontentpicker__menu:not(.hidden) + .gcontentpicker__content {
  border-left: 2px dotted #E7EAF2;
}
.gcontentpicker__menu-opener {
  cursor: pointer;
}
.gcontentpicker .menu-opener__back {
  padding: 0.5rem;
  width: 2rem;
}
.gcontentpicker .menu-opener__back:hover {
  background-color: #E7EAF2;
}
.gcontentpicker .gactionmenu__frame-wrapper {
  border-right: 2px dotted #E7EAF2;
}
.gcontentpicker .gactionmenu__frame-wrapper:last-child {
  border-right: 2px dotted transparent;
}
.gcontentpicker .gactionmenu__items {
  flex-grow: 1;
  padding: 0.5rem;
}
.gcontentpicker .gactionmenu__item {
  line-height: normal;
  align-items: center;
  color: #222;
}
.gcontentpicker .gactionmenu__item.active, .gcontentpicker .gactionmenu__item.selected {
  color: #000;
  background-color: initial;
  opacity: 1;
}
.gcontentpicker .gactionmenu__item.active::after, .gcontentpicker .gactionmenu__item.selected::after {
  top: 0;
  width: 0.125rem;
}
.gcontentpicker .gactionmenu__item.activable:hover {
  background-color: #E7EAF2;
}
.gcontentpicker .gactionmenu__item.active {
  background-color: #f1f3f7;
}
.gcontentpicker .gactionmenu__item.selected {
  background-color: #C6CDE0;
}
.gcontentpicker .gactionmenu__item .item__left:not(.item--back) {
  width: auto;
}
.gcontentpicker .gactionmenu__item .item__left:not(.item--back) .item__icon {
  font-size: 1.5rem;
  /* Kopirovani stylu fa-fw */
  width: 1.28571429em;
  text-align: center;
}
.gcontentpicker .gactionmenu__item .item__center {
  align-items: center;
}
.gcontentpicker .gactionmenu__item .item__caption {
  white-space: normal;
  overflow: auto;
}
.gcontentpicker .gactionmenu__item > * {
  padding: 0.5rem 0.25rem;
}
.gcontentpicker .gactionmenu__item > *:first-child,
.gcontentpicker .gactionmenu__item.gactionmenu__item--iconless > .item__center {
  padding-left: 0.75rem;
}
.gcontentpicker .gactionmenu__item > *:last-child {
  padding-right: 0.5rem;
}
.gcontentpicker .gactionmenu__header {
  border: none;
  position: relative;
  padding-bottom: 0.875rem;
}
.gcontentpicker .gactionmenu__header:after {
  content: " ";
  position: absolute;
  height: 1px;
  background-color: #E7EAF2;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0;
}
.gcontentpicker .gactionmenu__header .gactionmenu__item {
  line-height: 1.75rem;
}
.gcontentpicker .gactionmenu__header .gactionmenu__item .item--back {
  top: -0.125rem;
  left: 0.5rem;
  padding: 0.5rem;
  line-height: 1rem;
}
.gcontentpicker .gactionmenu__header .gactionmenu__item .item__center {
  padding: 0 3.25rem 0 1.75rem;
}
.gcontentpicker .gactionmenu--headers-hidden .gactionmenu__header {
  display: none;
}
.gcontentpicker .mCustomScrollBox {
  min-height: 100%;
}
.gcontentpicker .mCustomScrollBox .mCSB_container {
  display: flex;
  min-height: 100%;
}

.gtable table {
  border-collapse: collapse;
  width: 100%;
}
.gtable .virtual-header {
  display: none;
}
.gtable .gtable-header {
  cursor: pointer;
  background-color: #E7EAF2;
  font-weight: 700;
}
.gtable .g-button__text {
  padding: 0;
  margin: 0 0.4rem;
  font-size: 0.8125rem;
  height: 20px;
}
.gtable .g-button__icon {
  padding-top: 0.1875rem;
}
.gtable .statusbar button {
  font-weight: normal;
  color: #2650b9;
  margin-top: -0.125rem;
  padding-left: 0;
}
.gtable .statusbar button span:hover {
  border-bottom: 1px solid #2650b9;
}
.gtable .gtable-empty {
  text-align: center;
  padding-top: 10px;
}
.gtable .gtable-header-0 {
  background-color: #C6CDE0 !important;
}
.gtable .gtable-header .fa-chevron-down {
  padding-right: 10px;
}
.gtable .gtable-header .fa-chevron-right {
  padding-right: 13px;
}
.gtable .gtable-header th {
  padding: 12px 12px 12px;
  font-size: 0.8125rem;
  text-align: left;
  border-bottom: 1px solid #cfcfcf;
}
.gtable .gtable-row td {
  padding: 12px 20px 12px;
  font-size: 0.8125rem;
  border-bottom: 1px solid #cfcfcf;
  vertical-align: middle;
}
.gtable .gtable-row:hover {
  background-color: #E7EAF2;
}
.gtable .gtable-hrow th {
  padding: 12px 20px 12px;
  font-size: 0.8125rem;
  border-bottom: 1px solid #cfcfcf;
}
.gtable .gtable-hrow th {
  padding: 12px 20px 12px;
  font-size: 0.8125rem;
  border-bottom: 1px solid #cfcfcf;
}
.gtable .gtable-hrow td {
  padding: 12px 20px 12px;
  font-size: 0.8125rem;
  border-bottom: 1px solid #cfcfcf;
}
.gtable .grid-cell-icon {
  font-size: 1.3125rem;
}
.gtable .g-table-responsive-header {
  display: none;
  color: #000000;
  text-align: left;
}
.gtable .gtable-responsive .gtable-empty {
  padding-left: 20px;
}
.gtable .gtable-responsive .g-table-responsive-header {
  display: table-cell;
  text-align: right !important;
  font-weight: 400 !important;
  width: 120px;
}
.gtable .gtable-responsive .gtable-header {
  padding: 0px;
}
.gtable .gtable-responsive .gtable-row td {
  display: table-row;
}
.gtable .gtable-responsive .gtable-row td > * {
  padding: 4px 22px;
  text-align: left;
}
.gtable .gtable-responsive .gtable-hrow {
  display: none;
}
.gtable .gtable-responsive table, .gtable .gtable-responsive th, .gtable .gtable-responsive tr {
  display: block;
  width: 100% !important;
}
.gtable .gtable-responsive tr {
  padding: 10px 0;
}
.gtable .gtable-responsive td {
  display: flex;
  width: 100% !important;
}
.gtable .gtable-responsive thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.gtable .gtable-responsive .gtable-row td {
  border-bottom: none;
}
.gtable .gtable-responsive .gtable-row {
  border-bottom: 1px solid #cfcfcf;
}
.gtable .gtable-responsive .gtable-row:hover {
  background-color: #FAFAFA;
}

.gtable-medium {
  word-break: break-all;
  white-space: pre-wrap;
}

.goverlaytips {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /*&-animate img {
      width: 100%;
  }*/
}
.goverlaytips-dialog {
  padding: 0.9375rem;
  width: 50%;
  z-index: 10001;
  max-width: 62.5rem;
  background-color: #FAFAFA;
  box-shadow: 0 0 1.25rem -0.31rem rgba(0, 0, 0, 0.5);
}
.goverlaytips-upper-panel {
  display: flex;
  justify-content: flex-end;
  height: 2.125rem;
}
.goverlaytips-close-button {
  cursor: pointer;
  font-size: 1.5em;
  margin-top: -0.4em;
  color: #E7EAF2;
}
.goverlaytips-close-button:hover {
  color: #C6CDE0;
}
.goverlaytips-down-panel {
  display: flex;
  justify-content: center;
  padding: 1.25rem;
}
.goverlaytips-down-panel > span {
  padding: 0 0.625rem 0 0.625rem;
}
.goverlaytips-down-panel button {
  width: 6.25rem;
}
.goverlaytips-button-panel {
  height: 10%;
}
.goverlaytips-content {
  height: calc(100% - 6.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.goverlaytips-content > div {
  padding: 0.625rem 1.25rem 0.625rem 1.25rem;
  margin-top: -1rem;
}
.goverlaytips-header {
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 1.25rem;
  padding-bottom: 1.4rem;
}
.goverlaytips-description {
  font-size: 0.8rem;
  padding: 2.1%;
  display: flex;
  line-height: 1.8em;
  align-items: center;
  width: calc(96% - 180px);
}
.goverlaytips-textpart {
  display: flex;
  align-items: center;
}
.goverlaytips-animate {
  text-align: center;
  margin: 0 1.25rem;
}
.goverlaytips-ie-img {
  width: 500px;
}
.goverlaytips-picture {
  margin: 1.5rem;
  border-radius: 50%;
  width: 11.25rem;
}
.goverlaytips-dots {
  margin-top: 1.25rem;
  margin-bottom: 0.8rem;
  display: flex;
}
.goverlaytips-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin: 0 0.188rem;
  background-color: #F4F6F9;
}
.goverlaytips-dot.active {
  background-color: #1D3E8F;
}
@media (max-width: 1100px) {
  .goverlaytips-dialog {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .goverlaytips {
    /*&-content {
        margin-left: 3rem;
        margin-right: 3rem;
    }*/
  }
  .goverlaytips-dialog {
    width: 100%;
    height: initial;
  }
}
@media (max-width: 576px) {
  .goverlaytips {
    align-items: center;
    justify-content: flex-start;
    background-color: #FAFAFA;
    /*&-ie-img {
        width: auto;
        height: 100px;
    }*/
  }
  .goverlaytips-dialog {
    width: 100%;
    max-height: initial;
    border: none;
    box-shadow: none;
    height: initial;
  }
  .goverlaytips-content {
    width: initial;
    height: auto;
    margin-left: 0;
  }
  .goverlaytips-textpart {
    flex-direction: column;
  }
  .goverlaytips-description {
    width: 100%;
  }
  .goverlaytips-animate {
    margin: 0;
  }
  .goverlaytips-header {
    margin: 0;
    text-align: center;
  }
  .goverlaytips-dots {
    margin: 0;
    padding-bottom: 1.25rem;
  }
  .goverlaytips-dot {
    background-color: #C6CDE0;
  }
}
@media (max-height: 600px) {
  .goverlaytips {
    justify-content: flex-start;
  }
  .goverlaytips-dialog {
    justify-content: flex-start;
    max-height: none;
  }
  .goverlaytips-content {
    margin-top: -1.5rem;
  }
  .goverlaytips-picture {
    width: 7rem;
  }
}
@media (max-height: 770px) {
  .goverlaytips-picture {
    width: 9rem;
  }
}

.gmodal {
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
.gmodal-dialog {
  padding: 2rem;
  width: 50%;
  background-color: #FAFAFA;
  box-shadow: 0 0 1.25rem -0.31rem rgba(0, 0, 0, 0.5);
}
.gmodal-cnt-dialog {
  margin-top: -1.5rem;
}
.gmodal-close-button {
  text-align: right;
  font-size: 2rem;
  margin-top: -1.7rem;
  margin-right: -0.7rem;
  color: #E7EAF2;
  cursor: pointer;
}
.gmodal-close-button:hover {
  color: #C6CDE0;
}
.gmodal-small-height {
  align-items: flex-start !important;
}
.gmodal-resize-m .gmodal-dialog {
  width: 70% !important;
}
.gmodal-resize-s .gmodal-dialog {
  width: 90% !important;
}
.gmodal-resize-xs .gmodal-dialog {
  width: 100% !important;
}

.g-contentwrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.g-contentwrapper__top .menubar {
  background-color: #E7EAF2;
}
.g-contentwrapper__top .statusbar {
  min-height: unset;
  border-bottom: 1px solid #C6CDE0;
  padding: 0 0.25rem;
}
.g-contentwrapper__top .statusbar:empty {
  border-width: 0;
}
.g-contentwrapper__middle {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  flex-grow: 2;
  position: relative;
}
.g-contentwrapper__top,
.g-contentwrapper .g-cwpanel,
.g-contentwrapper .bm--bottom {
  flex-shrink: 0;
  flex-grow: 0;
}
.g-contentwrapper__middle {
  height: 100%;
}
.g-contentwrapper__middle .bm {
  width: 2.5rem;
  min-width: 2.5rem;
  padding: 0.25rem 0;
}
.g-contentwrapper__middle .bm .glink {
  position: relative;
}
.g-contentwrapper__middle .bm .g-link {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0;
}
.g-contentwrapper__middle .bm .g-link__icon {
  font-size: 1.5rem;
  color: #333;
}
.g-contentwrapper__middle .bm .g-link__icon.gi-stack {
  width: 1rem;
  height: 1.5rem;
  line-height: 1.5rem;
  left: -0.25rem;
}
.g-contentwrapper__middle .bm .g-link__text {
  font-size: 0.75rem;
}
.g-contentwrapper__middle .bm .g-badge {
  position: absolute;
  top: 0;
  left: 0.25rem;
  font-size: 0.5rem;
}
.g-contentwrapper__middle .bm.bm--left .g-link__text {
  border-left: 0.125rem solid transparent;
  border-bottom: 1px solid transparent;
}
.g-contentwrapper__middle .bm.bm--left .g-link__text:hover {
  border-left: 0.125rem solid #2650b9;
}
.g-contentwrapper__middle .bm.bm--right .g-link__text {
  border-right: 0.125rem solid transparent;
  border-bottom: 1px solid transparent;
}
.g-contentwrapper__middle .bm.bm--right .g-link__text:hover {
  border-right: 0.125rem solid #2650b9;
}
.g-contentwrapper__middle .g-cwpanel:not(.g-cwpanel--maximized) {
  width: 200px;
  min-width: 200px;
}
.g-contentwrapper__middle .cwcenter {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}
.g-contentwrapper__middle .cwcenter .cwcontent {
  flex-grow: 2;
  flex-shrink: 2;
  overflow: auto;
}
.g-contentwrapper__middle .cwcenter .cwcommandbar {
  flex-grow: 0;
  flex-shrink: 0;
  /* Z ui-dialog-buttonpane */
  font-size: 0.8125rem;
  background: transparent;
  padding: 0.5rem;
  line-height: normal;
}
.g-contentwrapper__middle .cwcenter .cwcommandbar .g-buttonpanel__item,
.g-contentwrapper__middle .cwcenter .cwcommandbar .g-static {
  margin-right: 0.25rem;
}
.g-contentwrapper__middle .cwcenter .cwcommandbar:empty {
  border-width: 0;
  padding: 0;
}
.g-contentwrapper .bm {
  background-color: #E7EAF2;
  overflow: hidden;
}
.g-contentwrapper .bm--temporarily_hidden {
  display: none;
}
.g-contentwrapper .bm--left {
  border-right: 1px solid #C6CDE0;
}
.g-contentwrapper .bm--left .bm--selected::before {
  left: 0;
  top: 0;
  bottom: 0;
  right: 2.25rem;
}
.g-contentwrapper .bm--right {
  border-left: 1px solid #C6CDE0;
}
.g-contentwrapper .bm--right .bm--selected::before {
  left: 2.25rem;
  top: 0;
  bottom: 0;
  right: 0;
}
.g-contentwrapper .bm {
  scrollbar-width: thin;
  scrollbar-color: #E7EAF2;
}
.g-contentwrapper .bm::-webkit-scrollbar-thumb {
  background-color: #C6CDE0;
  border-radius: 6px;
  border: 3px solid #E7EAF2;
}
.g-contentwrapper .bm::-webkit-scrollbar-track {
  background-color: #E7EAF2;
}
.g-contentwrapper .bm--left,
.g-contentwrapper .bm--right {
  overflow-y: auto;
}
.g-contentwrapper .bm--left::-webkit-scrollbar,
.g-contentwrapper .bm--right::-webkit-scrollbar {
  width: 0.5rem;
}
.g-contentwrapper .bm--bottom {
  overflow-x: auto;
}
.g-contentwrapper .bm--bottom::-webkit-scrollbar {
  height: 0.5rem;
}
.g-contentwrapper .bm--bottom {
  border-top: 1px solid #C6CDE0;
  display: flex;
}
.g-contentwrapper .bm--bottom .bm--selected {
  position: relative;
}
.g-contentwrapper .bm--bottom .bm--selected a.g-link::before {
  content: "";
  position: absolute;
  background-color: #2650b9;
  top: 2rem;
  left: 0;
  right: 0;
  bottom: 0;
}
.g-contentwrapper .bm--bottom .bm--selected .g-link__text {
  border-color: transparent;
}
.g-contentwrapper .bm--bottom .g-link {
  padding: 0.5rem 0.25rem;
}
.g-contentwrapper .bm--selected::before {
  content: "";
  position: absolute;
  background-color: #2650b9;
}
.g-contentwrapper .bm__item-wrapper {
  position: relative;
}
.g-contentwrapper .ui-widget-content {
  border: none;
  border-bottom: 1px solid #efefef;
}
.g-contentwrapper--on-window {
  height: calc(100% - 27px);
}
.g-contentwrapper__detached-subcontent {
  display: none;
}
.g-contentwrapper .g-cwpanel--maximized {
  width: calc(100% - 2.5rem);
}
.g-contentwrapper .g-cwpanel--maximized.g-cwpanel--bottom {
  width: 100%;
  height: calc(100% - 2.25rem);
}

.g-cwpanel {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  isolation: isolate;
}
.g-cwpanel .cwheader {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.g-cwpanel .cwheader__title {
  padding: 0.25rem 0.25rem;
  background-color: #1D3E8F;
  color: #fff;
  min-height: 1rem;
}
.g-cwpanel .cwheader__titlebar {
  flex-grow: 2;
  background-color: #1D3E8F;
  color: #fff;
  display: flex;
  align-items: center;
}
.g-cwpanel .cwheader__titlebar .g-link {
  color: #fff;
}
.g-cwpanel .cwheader__menubar, .g-cwpanel .cwheader__flashbar, .g-cwpanel .cwheader__statusbar {
  width: 100%;
}
.g-cwpanel .cwheader__menubar {
  background-color: #E7EAF2;
}
.g-cwpanel .cwheader__statusbar {
  min-height: unset;
}
.g-cwpanel .cwfooter {
  width: 100%;
  border-top: 1px solid #efefef;
}
.g-cwpanel .cwfooter__commandbar {
  margin: 0.25rem;
}
.g-cwpanel .cwfooter__commandbar .g-buttonpanel__item {
  margin: 0.25rem 0.25rem 0.25rem 0;
}
.g-cwpanel .cwfooter__commandbar:empty {
  margin: 0;
}
.g-cwpanel .cwcontent {
  flex-shrink: 2;
  flex-grow: 2;
  overflow: auto;
  padding: 0.25rem;
}
.g-cwpanel .cwheader,
.g-cwpanel .cwfooter {
  flex-shrink: 0;
  flex-grow: 0;
}
.g-cwpanel--left {
  border-right: 1px solid #C6CDE0;
}
.g-cwpanel--right {
  border-left: 1px solid #C6CDE0;
}
.g-cwpanel--maximized {
  width: 100%;
}

.g-cwpanel--active.g-cwpanel .cwheader__titlebar,
.g-cwpanel--active.g-cwpanel .cwheader__title {
  background-color: #222;
}

.gsignpost {
  /*    .signpost-header {
      background-color: brown;
  }*/
}
.gsignpost .header-icon {
  display: flex;
}
.gsignpost .header-icon .icon {
  font-size: 4rem;
  margin-top: 0rem;
  margin-left: 1rem;
}
.gsignpost .header-icon span {
  font-size: 1.125rem;
  margin-top: 1.75rem;
  margin-left: 1rem;
  font-weight: 800;
}
.gsignpost .signpost-cnt {
  padding-bottom: 0.5rem;
}
.gsignpost .large.signpost-cnt.size-L .menu-item {
  width: 24%;
}
.gsignpost .signpost-cnt.size-L .menu-item {
  width: 32%;
}
.gsignpost .signpost-cnt.size-M .menu-item {
  width: 48%;
}
.gsignpost .signpost-cnt.size-S .menu-item {
  width: 98%;
}
.gsignpost .signpost-cnt .menu-item {
  border: none;
  background-color: #FAFAFA;
  overflow: hidden;
}
.gsignpost .signpost-cnt .g-kpi-multirow {
  padding: 0.1rem;
}
.gsignpost .signpost-cnt .menu-item .g-kpi-multirow-body-primaryText {
  font-weight: normal;
}
.gsignpost .signpost-cnt .flex-item-content-wrapper:focus-visible {
  outline: none;
}
.gsignpost .signpost-cnt .flex-item-toggled--visible {
  background-image: none;
}
.gsignpost .signpost-cnt .g-kpi-multirow-body-icon {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  font-size: 1.2rem;
  text-align: left;
  width: 4rem;
}
.gsignpost .signpost-cnt .open-in-new-tab {
  display: none;
}
.gsignpost .signpost-cnt .flex-item-hover .open-in-new-tab {
  display: list-item !important;
}
.gsignpost .kpi-signpost .js-gbuttonpanel-button .gi-arrow-down {
  display: none !important;
}
.gsignpost .oddelovac {
  margin: 1rem;
  border-top: #bdbaba;
  border-left: #bdbaba;
}
.gsignpost .gdashboardpanel__header__buttons .statusbar {
  min-width: 0;
}
.gsignpost .gdashboardpanel_container {
  padding: 0;
}
