/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
/*
**** IN THIS FILE BASE PARAMETRES STORED *****
*/
/*
**** COMMON ELEMENTS HEIGHT *****
*/
/*
**** COMMON RADIUS *****
*/
/*
**** MARGIN LEFT/RIGHT *****
*/
/**
** Margin for large tables so they not stick to the grid
*/
/*
**** TITLE INPUT WIDTH *****
*/
/*
**** SYNC SMALL ICON WIDTH *****
*/
/*
****INPUT ANIM
*/
/*
** REPORTS
*/
/*
**** DROPDOWN *****
*/
/*
**** CONTENT WRAPPERS DIMENSIONS *****
*/
/*
**** HINT DIMENSIONS *****
*/
/*
**** ROADMAP ****
*/
/*
**** Multipage basic styles ****
*/
/**
* Min height
*/
/**
**** TEMPUS AI *****
*/
/*
**** LESS MIXINS FOR AI-AWARE LAYOUTS *****
*/
/**
 * .sidebar-calc-width() - Mixin for calculating widths that account for AI sidebar
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-width();                    // width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(100vw, 50px);         // width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-width(90vw);                // width: calc(90vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(45vw, 100px);         // width: calc(45vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * IMPORTANT NOTES:
 * 1. SCROLLBAR ISSUE: 100vw includes scrollbar width, which can cause horizontal overflow.
 *    Consider using width: 100% on child elements when possible, especially inside flex/grid containers.
 *
 * 2. FLEX/GRID CHILDREN: If using this on flex or grid children, ensure they have min-width: 0
 *    to prevent overflow issues.
 *
 * 3. HORIZONTAL PADDING: Avoid using this mixin on elements with horizontal padding or borders.
 *    Instead, use it on a wrapper element and add padding to an inner element.
 *
 * 4. WHEN NOT TO USE:
 *    - Elements inside a sized container (use width: 100% instead)
 *    - Modal/dialog content (usually constrained by max-width)
 *    - Elements that should scroll horizontally
 *
 * 5. WHEN TO USE:
 *    - Full-width sections that need to span the viewport minus the sidebar
 *    - Absolute/fixed positioned overlays
 *    - Elements that explicitly need to relate to viewport width
 *    - Modals/popups that need percentage-based viewport widths (90vw, 45vw, etc.)
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/**
 * .sidebar-calc-max-width() - Mixin for max-width that accounts for AI sidebar
 *
 * Safer alternative to .sidebar-calc-width() for constraining element size without causing overflow.
 * Use this when you want to limit width but allow the element to be smaller if needed.
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-max-width();                  // max-width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(100vw, 50px);       // max-width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-max-width(45vw);              // max-width: calc(45vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(40vw, 100px);       // max-width: calc(40vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/*!
 * jQuery UI Bootstrap (0.5)
 * http://addyosmani.github.com/jquery-ui-bootstrap
 *
 * Copyright 2012 - 2013, Addy Osmani
 * Dual licensed under the MIT or GPL Version 2 licenses.
 *
 * Portions copyright jQuery UI & Twitter Bootstrap
 */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
}
.ui-helper-clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.ui-helper-clearfix {
  /*display: inline-block; */
  display: block;
  min-height: 0;
  /* support: IE7 */
}
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix {
  height: 1%;
}
/* end clearfix */
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
}
.ui-front {
  z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
 * jQuery UI Resizable 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/resizable/
 */
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  z-index: 99999;
  display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
/*
 * jQuery UI Selectable 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/selectable/
 */
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted #000000;
}
/*
 * jQuery UI CSS Framework 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 *
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff 50% 50% repeat-x;
  color: #404040;
}
/*
.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url('../../bower_components/jqueryuibootstrap/css/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png') 50% 50% repeat-x; color: #404040; }
*/
.ui-widget-content a {
  color: #404040;
}
.ui-widget-header {
  font-weight: bold;
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border: 1px solid #666;
}
.ui-widget-header a {
  color: #222222;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 14px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear background-image;
  -moz-transition: 0.1s linear background-image;
  -ms-transition: 0.1s linear background-image;
  -o-transition: 0.1s linear background-image;
  transition: 0.1s linear background-image;
  overflow: visible;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
  color: #212121;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #aaaaaa;
  font-weight: normal;
  color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}
.ui-widget :active {
  outline: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight p,
.ui-state-error p,
.ui-state-default p {
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  margin: 7px 15px;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  position: relative;
  margin-bottom: 18px;
  color: #404040;
  background-color: #eedc94;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
  background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
  background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  background-image: linear-gradient(top, #fceec1, #eedc94);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #eedc94 #eedc94 #e4c652;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  position: relative;
  margin-bottom: 18px;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  background-color: #c43c35;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: alpha(opacity=70);
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: alpha(opacity=35);
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: alpha(opacity=35);
}
/* For IE8 - See #6059 */
/* Icons
----------------------------------*/
/* states and ../images */
.ui-icon {
  width: 16px;
  height: 16px;
  background-image: url(../../content/assets/9e16235d714c9cb9acde.png);
}
.ui-widget-content .ui-icon {
  background-image: url(../../content/assets/9e16235d714c9cb9acde.png);
}
.ui-widget-header .ui-icon {
  background-image: url(../../content/assets/9e16235d714c9cb9acde.png);
}
.ui-state-default .ui-icon {
  background-image: url(../../content/assets/9e16235d714c9cb9acde.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url(../../content/assets/064a1e2c5c56e4c87775.png);
}
.ui-state-active .ui-icon {
  background-image: url(../../content/assets/064a1e2c5c56e4c87775.png);
}
.ui-state-highlight .ui-icon {
  background-image: url(../../content/assets/523ce6a7cb2380197213.png);
}
/*
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url('../../bower_components/jqueryuibootstrap/css/custom-theme/images/ui-icons_f6cf3b_256x240.png'); }
*/
/* positioning */
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-off {
  background-position: -96px -144px;
}
.ui-icon-radio-on {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  -khtml-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  -khtml-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -khtml-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -khtml-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa url(../../content/assets/0dbff28d6250316ac91f.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(../../content/assets/0dbff28d6250316ac91f.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/*
 * jQuery UI Accordion 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/accordion/
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion {
  width: 100%;
}
.ui-accordion .ui-accordion-header {
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  zoom: 1;
  font-weight: bold;
}
.ui-accordion .ui-accordion-li-fix {
  display: inline;
}
.ui-accordion .ui-accordion-header-active {
  border-bottom: 0 !important;
}
.ui-accordion .ui-accordion-header a {
  display: block;
  font-size: 1em;
  padding: 0.5em 0.5em 0.5em 1.7em;
}
.ui-accordion-icons .ui-accordion-header a {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  margin-top: -2px;
  position: relative;
  top: 1px;
  margin-bottom: 2px;
  overflow: auto;
  display: none;
  zoom: 1;
}
.ui-accordion .ui-accordion-content-active {
  display: block;
}
/*
 * jQuery UI Autocomplete 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/autocomplete/
 */
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
/*
 * jQuery UI Button 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */
.ui-button {
  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  padding: 5px 14px 6px;
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear background-image;
  -moz-transition: 0.1s linear background-image;
  -ms-transition: 0.1s linear background-image;
  -o-transition: 0.1s linear background-image;
  transition: 0.1s linear background-image;
  overflow: visible;
}
/* the overflow property removes extra width in IE */
.ui-button-primary {
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ui-button-success {
  color: #ffffff;
  background-color: #57a957;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -ms-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(top, #62c462, #57a957);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #57a957 #57a957 #3d773d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ui-button-error {
  color: #ffffff;
  background-color: #c43c35;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ui-button-icon-only {
  width: 2.2em;
}
/* to make room for the icon, a width needs to be set here */
/* button elements seem to need a little more width */
.ui-button-icons-only {
  width: 3.4em;
}
button.ui-button-icons-only {
  width: 3.7em;
}
/*button text element */
.ui-button .ui-button-text {
  display: block;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
  /*tempfix*/
  display: none;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}
.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
/* input.ui-button { padding: .4em 1em; } */
/*button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  top: 50%;
  margin-top: -3px;
  margin-bottom: 3px;
}
.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}
/*button sets*/
.ui-buttonset {
  margin-right: 7px;
}
.ui-buttonset .ui-state-active {
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.4em;
}
/* workarounds */
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* reset extra padding in Firefox */
/*
 * jQuery UI Menu 1.10.0
 *
* Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  float: left;
  outline: none;
}
.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  zoom: 1;
  float: left;
  clear: left;
  width: 100%;
}
.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  zoom: 1;
  font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: 0;
  color: #ffffff;
  background: #0064cd;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
/* Fix problem with border in ui-state-active */
.ui-menu .ui-menu-item a.ui-state-active {
  padding: 1px 0.4em;
}
.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
  cursor: default;
}
/* icon support */
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}
/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}
/* right-aligned */
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}
.ui-menu {
  width: 200px;
  margin-bottom: 2em;
}
/*
 * jQuery UI spinner 1.10.0
 *
* Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}
.ui-spinner-input {
  border: none;
  background: none;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}
.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
/* more specificity required here to overide default borders */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}
/* vertical centre icon */
.ui-spinner-up {
  top: 0;
}
.ui-spinner-down {
  bottom: 0;
}
/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px;
}
/*
 * jQuery UI Dialog 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  width: 300px;
  overflow: hidden;
  outline: 0;
  background-clip: padding-box;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px 6px 6px 6px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  /*left: 50%;
  margin-left: -280px;*/
  outline: medium none;
  position: fixed;
  /*top: 10%;
  width: 560px;*/
  z-index: 1050;
}
.ui-dialog .ui-dialog-titlebar {
  /*padding: .4em 1em;*/
  position: relative;
  border: 0px 0px 0px 1px solid;
  border-color: white;
  padding: 5px 15px;
  font-size: 18px;
  text-decoration: none;
  background: none;
  -moz-border-radius-bottomright: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -khtml-border-bottom-right-radius: 0px;
  -moz-border-radius-bottomleft: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -khtml-border-bottom-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom: 1px solid #ccc;
}
.ui-dialog .ui-dialog-title {
  float: left;
  color: #404040;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 19px;
  margin: -20px 0 0 0;
  padding: 1px;
  height: 18px;
  font-size: 20px;
  font-weight: bold;
  line-height: 13.5px;
  text-shadow: 0 1px 0 #ffffff;
  filter: alpha(opacity=25);
  -khtml-opacity: 0.25;
  -moz-opacity: 0.25;
  opacity: 0.25;
  background: none;
  border-width: 0;
  border: none;
  box-shadow: none;
}
.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
  margin: 1px;
  text-indent: 9999px;
}
.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
  padding: 1px;
  filter: alpha(opacity=90);
  -khtml-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
  zoom: 1;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 0.5em 0 0 0;
  background-color: #f5f5f5;
  padding: 5px 15px 5px;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  zoom: 1;
  margin-bottom: 0;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
/*
 * jQuery UI Slider 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ui-slider-horizontal {
  height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
/*
 * jQuery UI Tabs 1.9.2
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tabs/
 */
.ui-tabs .ui-tabs-nav {
  background: none;
  border-color: #ddd;
  border-style: solid;
  border-width: 0 0 1px;
}
.ui-tabs {
  position: relative;
  padding: 0.2em;
  zoom: 1;
  border: 0px;
}
/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav li:hover,
.ui-tabs .ui-tabs-nav li a:hover {
  background: whiteSmoke;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0px;
  color: #00438A;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
  border-bottom: 1px solid #DDD;
}
.ui-tabs .ui-tabs-nav li {
  text-decoration: none;
  list-style: none;
  float: left;
  position: relative;
  top: 1px;
  padding: 0px 0px 1px 0px;
  white-space: nowrap;
  background: none;
  border: 0px;
}
.ui-tabs-nav .ui-state-default {
  -webkit-box-shadow: 0px 0px 0px #ffffff;
  /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow: 0px 0px 0px #ffffff;
  /* FF3.5 - 3.6 */
  box-shadow: 0px 0px 0px #ffffff;
  /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
}
.ui-tabs .ui-tabs-nav li a {
  float: left;
  text-decoration: none;
  cursor: text;
  padding: 0 15px;
  margin-right: 2px;
  line-height: 34px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: 0;
  padding-bottom: 0px;
  outline: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-state-processing a {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: #ffffff;
  cursor: default;
  color: gray;
  outline: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  background-color: #ffffff;
  outline: none;
  border: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active:hover {
  background: #ffffff;
  outline: none;
  margin-bottom: 0px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text;
}
.ui-tabs .ui-tabs-nav li a,
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer;
  color: #0069D6;
  background: none;
  font-weight: normal;
  margin-bottom: -1px;
}
/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.ui-tabs-panel .ui-button {
  text-decoration: none;
}
.ui-tabs .ui-tabs-hide {
  display: none !important;
}
/* IE fix for background inheritance from ui-widget*/
.ui-tabs .ui-tabs-nav li {
  filter: none;
}
/*
 * jQuery UI Tooltip 1.9.0
 *
 * Copyright 2012-10-11, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tooltip/
 */
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -o-box-shadow: 0 0 5px #ddd;
  -moz-box-shadow: 0 0 5px #ddd;
  -webkit-box-shadow: 0 0 5px #ddd;
  /*box-shadow: 0 2px 5px #ddd;*/
  box-shadow: inset 0 1px 0 #ffffff;
}
body .ui-tooltip {
  border-width: 2px;
}
/*
 * jQuery UI Datepicker 1.9.0
 *
 * Copyright 2012-10-11, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/datepicker/
 */
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
  border: 0px;
  font-weight: bold;
  width: 100%;
  padding: 4px 0;
  background-color: #f5f5f5;
  color: #808080;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  /*top: 1px;*/
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  /*left:1px;*/
}
.ui-datepicker .ui-datepicker-next-hover {
  /*right:1px;*/
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0em;
}
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
  display: none;
  /*sorry for IE5*/
  display: block;
  /*sorry for IE5*/
  position: absolute;
  /*must have*/
  z-index: -1;
  /*must have*/
  filter: mask();
  /*must have*/
  top: -4px;
  /*must have*/
  left: -4px;
  /*must have*/
  width: 200px;
  /*must have*/
  height: 200px;
  /*must have*/
}
.ui-datepicker th {
  font-weight: bold;
  color: gray;
}
.ui-datepicker-today a:hover {
  background-color: #808080;
  color: #ffffff;
}
.ui-datepicker-today a {
  background-color: #BFBFBF;
  cursor: pointer;
  padding: 0 4px;
  margin-bottom: 0px;
}
.ui-datepicker td a {
  margin-bottom: 0px;
  border: 0px;
}
.ui-datepicker td:hover {
  color: #ffffff;
}
.ui-datepicker td .ui-state-default {
  border: 0px;
  background: none;
  margin-bottom: 0px;
  padding: 5px;
  color: gray;
  text-align: center;
  filter: none;
}
.ui-datepicker td .ui-state-active {
  background: #BFBFBF;
  margin-bottom: 0px;
  font-size: normal;
  text-shadow: 0px;
  color: #ffffff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.ui-datepicker td .ui-state-hover {
  color: #ffffff;
  background: #0064cd;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
}
/*
 * jQuery UI Progressbar 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar {
  height: 2em;
  text-align: left;
}
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
  /*this can be removed if ui-widget-header is blue*/
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
/*** Input field styling from Bootstrap **/
input,
textarea {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
input:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}
input[type=file]:focus,
input[type=checkbox]:focus,
select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 1px dotted #666;
}
input[type="text"],
input[type="password"],
.ui-autocomplete-input,
textarea,
.uneditable-input {
  display: inline-block;
  padding: 4px;
  font-size: 14px;
  line-height: 18px;
  color: #808080;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
/**Toolbar**/
.ui-toolbar {
  padding: 7px 14px;
  margin: 0 0 18px;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}
/***Dialog fixes**/
.ui-dialog-buttonset .ui-button:nth-child(2) {
  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  padding: 5px 14px 6px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 14px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  -ms-transition: 0.1s linear all;
  -o-transition: 0.1s linear all;
  transition: 0.1s linear all;
  overflow: visible;
}
/***Wijmo Theming**/
div.wijmo-wijmenu {
  padding: 0 20px;
  background-color: #222;
  background-color: #222222;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
  background-image: -moz-linear-gradient(top, #333333, #222222);
  background-image: -ms-linear-gradient(top, #333333, #222222);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
  background-image: -webkit-linear-gradient(top, #333333, #222222);
  background-image: -o-linear-gradient(top, #333333, #222222);
  background-image: linear-gradient(top, #333333, #222222);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.wijmo-wijmenu .ui-state-default {
  box-shadow: none;
  color: #BFBFBF;
}
.wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text {
  color: #BFBFBF;
}
.wijmo-wijmenu .ui-state-hover {
  background: #444;
  background: rgba(255, 255, 255, 0.05);
}
.wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text {
  color: #ffffff;
}
div.wijmo-wijmenu .ui-widget-header h3 {
  position: relative;
  margin-top: 1px;
  padding: 0;
}
.wijmo-wijmenu h3 a {
  color: #FFFFFF;
  display: block;
  float: left;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  margin-left: -20px;
  margin-top: 1px;
  padding: 8px 20px 12px;
}
.wijmo-wijmenu h3 a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  text-decoration: none;
}
.wijmo-wijmenu .ui-widget-header {
  border: 0px;
}
.wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child {
  padding: 0.3em 0;
}
div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child {
  background: #333;
  border: 0;
  margin: 0;
  padding: 6px 0;
  width: 160px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
div.wijmo-wijmenu .wijmo-wijmenu-item {
  margin: 0;
  border: 0;
}
.wijmo-wijmenu a.wijmo-wijmenu-link {
  margin: 0;
  line-height: 19px;
  padding: 10px 10px 11px;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link {
  display: block;
  float: none;
  padding: 4px 15px;
  width: auto;
}
div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text {
  float: none;
}
.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
  background: #191919;
}
.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator {
  padding: 5px 0;
  background-image: none;
  background-color: #222;
  border-top: 1px solid #444;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
}
.wijmo-wijmenu .wijmo-wijmenu-item input {
  -moz-transition: none 0s ease 0s;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #111111;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  margin: 5px 10px 0 10px;
  padding: 4px 9px;
  width: 100px;
}
.wijmo-wijmenu .wijmo-wijmenu-item input:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}
.wijmo-wijmenu .wijmo-wijmenu-item input:focus {
  background-color: #FFFFFF;
  border: 0 none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  color: #404040;
  outline: 0 none;
  padding: 5px 10px;
  text-shadow: 0 1px 0 #FFFFFF;
}
.wijmo-wijmenu .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  text-shadow: none;
}
.wijmo-wijmenu .ui-state-default {
  box-shadow: none;
  color: #BFBFBF;
  filter: none;
}

.attr-icons {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attr-icons.project-io {
  color: var(--sg-secondary-color, #106df9);
}
.attr-icons.resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.assignment-doc-io {
  color: #d36b3f;
}
.attr-icons.budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
.attr-icons.spm-io {
  color: #9437ab;
  zoom: 0.8;
}
/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
/*
**** IN THIS FILE BASE PARAMETRES STORED *****
*/
/*
**** COMMON ELEMENTS HEIGHT *****
*/
/*
**** COMMON RADIUS *****
*/
/*
**** MARGIN LEFT/RIGHT *****
*/
/**
** Margin for large tables so they not stick to the grid
*/
/*
**** TITLE INPUT WIDTH *****
*/
/*
**** SYNC SMALL ICON WIDTH *****
*/
/*
****INPUT ANIM
*/
/*
** REPORTS
*/
/*
**** DROPDOWN *****
*/
/*
**** CONTENT WRAPPERS DIMENSIONS *****
*/
/*
**** HINT DIMENSIONS *****
*/
/*
**** ROADMAP ****
*/
/*
**** Multipage basic styles ****
*/
/**
* Min height
*/
/**
**** TEMPUS AI *****
*/
/*
**** LESS MIXINS FOR AI-AWARE LAYOUTS *****
*/
/**
 * .sidebar-calc-width() - Mixin for calculating widths that account for AI sidebar
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-width();                    // width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(100vw, 50px);         // width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-width(90vw);                // width: calc(90vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(45vw, 100px);         // width: calc(45vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * IMPORTANT NOTES:
 * 1. SCROLLBAR ISSUE: 100vw includes scrollbar width, which can cause horizontal overflow.
 *    Consider using width: 100% on child elements when possible, especially inside flex/grid containers.
 *
 * 2. FLEX/GRID CHILDREN: If using this on flex or grid children, ensure they have min-width: 0
 *    to prevent overflow issues.
 *
 * 3. HORIZONTAL PADDING: Avoid using this mixin on elements with horizontal padding or borders.
 *    Instead, use it on a wrapper element and add padding to an inner element.
 *
 * 4. WHEN NOT TO USE:
 *    - Elements inside a sized container (use width: 100% instead)
 *    - Modal/dialog content (usually constrained by max-width)
 *    - Elements that should scroll horizontally
 *
 * 5. WHEN TO USE:
 *    - Full-width sections that need to span the viewport minus the sidebar
 *    - Absolute/fixed positioned overlays
 *    - Elements that explicitly need to relate to viewport width
 *    - Modals/popups that need percentage-based viewport widths (90vw, 45vw, etc.)
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/**
 * .sidebar-calc-max-width() - Mixin for max-width that accounts for AI sidebar
 *
 * Safer alternative to .sidebar-calc-width() for constraining element size without causing overflow.
 * Use this when you want to limit width but allow the element to be smaller if needed.
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-max-width();                  // max-width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(100vw, 50px);       // max-width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-max-width(45vw);              // max-width: calc(45vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(40vw, 100px);       // max-width: calc(40vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/*------------------------------------*\
    _ICONS.LESS
\*------------------------------------*/
/**
 * icons.less icons mixins and sets
 **/
/****************LAYOUT POPUP****************************/
.headset-io:before {
  content: '\f590';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.project-grid-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.projects-kanban-io:before {
  content: '\f51c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.assignment-doc-io:before {
  content: '\f15c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-o-notch:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.milestone-io:before {
  content: '\f024';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sheets-io:before {
  content: '\f0ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-io:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-round-io:before {
  content: '\f056';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.double-line:before {
  content: '\f7a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.focus-io:before {
  content: '\f05b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sorting-none-io:before {
  content: '\f05e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.unlink-io:before {
  content: '\f127';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shift-io:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-tack:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.readonly-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.date-io:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.date-value-io:before {
  content: '\f783';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.up-io:before {
  content: '\e919';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-up-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thumb-down-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.stop-circle-io:before {
  content: '\e15c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.hand-stop-io:before {
  content: '\e928';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.auditlog-io:before {
  content: '\e02f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.skillmatrix-io:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.categories-io:before {
  content: '\f5fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmap-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmaps-io:before {
  content: '\f277';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.partial-io:before {
  content: '\e891';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-project-io:before {
  content: '\e925';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-resource-io:before {
  content: '\e922';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.file-excel-io:before {
  content: '\f1c3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-csv-io:before {
  content: '\f6dd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-pdf-io:before {
  content: '\f1c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.full-arrow-up-io:before {
  content: '\f062';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pause-io:before {
  content: '\f04c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-desc:before {
  content: '\f161';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.return-io:before {
  content: '\e116';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.customfield-layout-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ***********
*/
.resourcemgmt-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-team-io:before {
  content: '\f500';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moon-io:before {
  content: '\f186';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sun-io:before {
  content: '\f185';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheetmgmt-io:before {
  content: '\44';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mytimesheet-io:before {
  content: '\43';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpa-io:before {
  content: '\42';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpafg-io:before {
  content: '\41';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.adminsettings-io:before {
  content: '\e94f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.helplink-io:before {
  content: '\f059';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bell-io:before {
  content: '\f0f3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-request-io:before {
  content: '\e94b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resource-request-io:before {
  content: '\e94c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.budget-nav-io:before {
  content: '\e94d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.side-bar-io:before {
  content: '\e950';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ENDED***********
*/
/*
* SHAPE ICONS
 */
.square-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.manager-io:before {
  content: '\f508';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-io:before {
  content: '\e3a6';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-up-io:before {
  content: '\ea32';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-down-io:before {
  content: '\ea36';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-left-io:before {
  content: '\ea38';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-right-io:before {
  content: '\ea34';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  content: '\e953';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  font-size: 1.2em;
}
.pin-io-active:before {
  content: '\e946';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io-active:before {
  font-size: 1.2em;
}
.thumbtack-io:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approve-shield-io:before {
  content: '\e8e8';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thunder-io:before {
  content: '\e3e7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.star-circle-io:before {
  content: '\e8d0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.angle-down-io:before {
  content: '\f107';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-down-io:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
/*
* SHAPE ICONS ENDED
 */
.doc-export-io:before {
  content: '\f56e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-up-io:before {
  content: '\f151';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-down-io:before {
  content: '\f150';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-left-io:before {
  content: '\f036';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-center-io:before {
  content: '\f037';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-right-io:before {
  content: '\f038';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.decimal-left-io:before {
  content: '\e942';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.decimal-right-io:before {
  content: '\e943';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-open-io:before {
  content: '\e944';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-close-io:before {
  content: '\e945';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resources-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pencil-alt-io:before {
  content: '\f303';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.stream-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.colored_icon.project-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.resource-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.colored_icon.customfield-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.icon-report-color:before {
  color: #d36b3f;
}
.colored_icon.assignment-doc-io:before {
  color: #d36b3f;
}
.colored_icon.milestone-io:before {
  color: var(--sg-warning-color, #ffc107);
}
.colored_icon.budget-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.gopuram-io:before {
  content: '\f664';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.money-bill-alt-io:before {
  content: '\f3d1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-square-io:before {
  content: '\f14a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thermometer-half-io:before {
  content: '\f2c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.list-alt-io:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.angle-double-right-io:before {
  content: '\f101';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-cog-io:before {
  content: '\f4fe';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.cog-io:before {
  content: '\f013';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.users-cog-io:before {
  content: '\f509';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.exclamation-triangle-io:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-circle-io:before {
  content: '\f058';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.url-io:before {
  content: '\f0c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.matrix-io:before {
  content: '\f84c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-solid-io:before {
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.interval-io:before {
  content: '\f337';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.advanced-rate-io:before {
  content: '\f51e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.default-icon-color {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.goals-io:before {
  content: '\f091';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tachometer-io:before {
  content: '\f3fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.weight-io:before {
  content: '\f496';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.hands-helping-io:before {
  content: '\f4c4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.diagram-io:before {
  content: '\f542';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.captions-io:before {
  content: '\f20a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelskills:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelskills:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelresources:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelresources:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelprojects:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelprojects:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-msprojectserversql {
  vertical-align: middle;
  display: inline-block;
}
.sync-msprojectserversql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-exceladmintime:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladmintime:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-exceladvancedrates:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladvancedrates:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelsheet:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelsheet:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelassignments:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelassignments:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelattributes:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelattributes:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelfinancials:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelfinancials:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-ppmpro {
  margin-top: 0;
  vertical-align: top;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: contain;
  background-color: var(--sg-legacy-PpmPro, #6369d0);
}
/****************PAGE COMMON*********************************/
.loginsct_menu.k-popup {
  padding: 10px;
  margin-left: auto;
  margin-top: 10px;
  width: auto !important;
  overflow: hidden;
}
.loginsct_menu.k-popup .k-list .k-item {
  font-size: 14px;
  padding-top: 3px;
  width: auto !important;
  cursor: pointer;
}
.loginsct_menu.k-popup .k-list .k-item.k-state-focused {
  box-shadow: none;
}
.loginsct_menu.k-popup .k-list .k-item.k-state-focused:not(.k-state-selected, .k-state-hover, :hover) {
  background: inherit;
}
.loginsct_menu.k-popup .k-list .k-item span {
  white-space: nowrap;
  padding-left: 24px;
  padding-right: 10px;
  position: relative;
}
.loginsct_menu.k-popup .k-list .k-item span:before {
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translate(-50%, -50%);
}
.loginsct_menu.k-popup .k-list .k-item span:before {
  margin-right: 10px;
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.loginsct_menu.k-popup .k-list .k-item.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
  background: transparent !important;
  color: var(--sg-color-legacy-656565, #656565);
}
.loginsct_header .avatar-box .e-avatar {
  background-color: color-mix(in srgb, var(--sg-color-legacy-ffffff, #ffffff), transparent 85%);
}
.loginsct_name {
  display: block;
  margin-left: 5px;
  color: var(--sg-color-legacy-ffffff, #ffffff) !important;
  cursor: pointer;
  font-size: 12px;
  max-width: 120px;
  width: auto;
  overflow: hidden !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: nowrap;
  padding-right: 20px;
}
.loginsct_name:after {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 5px;
  color: inherit;
}
.loginsct_name.resource-io:before {
  margin-right: 5px;
  vertical-align: top;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  text-indent: 1px;
}
.login_section {
  float: right;
  margin-top: 0;
  padding: 5px 0;
  border-radius: 6px;
  position: relative;
  display: flex;
}
.login_section span.k-dropdown {
  width: auto;
  max-width: 145px;
  line-height: 26px;
  display: block;
}
.login_section:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.login_section #progress,
.login_section #spinner {
  display: none !important;
}
.login_section .exit_icon {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  margin-left: 5px;
  cursor: pointer;
}
.login_section .exit_icon:hover {
  color: var(--sg-color-legacy-9fdbff, #9fdbff);
}
.base-row {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -ms-user-select: none;
  cursor: default;
}
.flat-row {
  display: block;
  background-color: var(--sg-secondary-color, #106df9);
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.11);
  height: 30px;
}
.manage_calendar .e-datewidget {
  display: inline-block;
  height: 26px;
  width: 166px;
}
.manage_calendar .sg_ej_datepicker.e-datewidget .e-in-wrap {
  border-radius: 0px;
  border: 1px solid var(--sg-table-border-color, #c7c7c7);
  background-color: var(--sg-color-legacy-ffffff, #ffffff);
  padding: 0px;
}
.manage_calendar .sg_ej_datepicker.e-datewidget .e-in-wrap input.e-input {
  margin: 0px;
  padding: 4px;
}
.manage_resource-capacities .e-datewidget {
  width: 140px;
}
.manage_resource-capacities .sg_ej_datepicker.e-datewidget .e-in-wrap {
  border-radius: 6px;
  border: 1px solid var(--sg-table-border-color, #c7c7c7);
  background-color: transparent;
  padding-left: 11px;
}
.manage_resource-capacities .sg_ej_datepicker.e-datewidget .e-in-wrap input.e-input {
  font-weight: 600;
}
.manage_calendar .labelcl,
.manage_resource-capacities .labelcl {
  color: var(--sg-color-legacy-838383, #838383);
}
.manage_calendar .supergrid-component.handsontable:not(.individual) .sg_lftheader__content,
.manage_resource-capacities .supergrid-component.handsontable:not(.individual) .sg_lftheader__content {
  padding-left: 90px;
}
.manage_calendar tbody td,
.manage_resource-capacities tbody td {
  padding-left: 15px;
  padding-right: 15px;
}
.manage_resource-capacities .superGrid {
  height: calc(100vh - 220px);
}
.manage_admintime .name-wrapper .sg_ctmfl__newfieldcreate {
  margin-top: 8px;
}
.manage_admintime .sg_dominantUnit {
  margin-top: 0px !important;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}
.manage_admintime .sg_dominantUnit .sg_dominantUnit__marker {
  margin-right: 5px;
}
.manage_admintime .sg_ctmfl__editfielsection input,
.manage_admintime .sg_ctmfl__newfielsection .sg_ctmfl__newfielinput input {
  min-width: 140px;
  max-width: 490px;
}
.sg-profile {
  padding-top: 10px;
}
.sg-profile .manage_profile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sg-profile .token-text {
  width: 330px;
  color: var(--sg-text-color, #000000);
  background: none;
  border: 0;
  font-size: 14px;
  font-family: "Figtree";
  padding: 0;
  margin: 0;
  height: 37px;
  resize: none;
}
.sg-profile .copy-io {
  vertical-align: top;
  display: inline-block;
  color: var(--sg-color-legacy-f9b17d, #f9b17d);
  cursor: pointer;
}
.sg-profile .layt_tokenExpire {
  color: var(--sg-color-legacy-da9f74, #da9f74);
}
.sg-profile .layt_tokenData {
  background-color: var(--sg-color-legacy-fffdda, #fffdda);
  border-radius: 5px;
  display: inline-block;
  padding: 15px;
  margin-bottom: 10px;
  width: 420px;
}
.sg-profile .layt_tokenData .transparent-button {
  margin-top: 10px;
  border-color: var(--sg-color-legacy-f9b17d, #f9b17d);
  color: var(--sg-color-legacy-ff7972, #ff7972);
}
.sg-profile .status {
  left: 100%;
  margin-left: 7px;
}
.sg-profile .password-management .moderinput_labeled {
  display: flex;
  align-items: center;
}
.sg-profile .api-token-management .moderinput_labeled {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sg-profile .api-token-management .moderinput_labeled .field-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
}
.sg-profile .api-token-management__row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.sg-profile .api-token-management__label {
  width: 240px;
  margin: 0;
}
.sg-profile .input_switch .moderinput_labeled {
  display: inline-block;
  vertical-align: middle;
  width: 500px;
}
.sg-profile .input_switch .sg_groupbuttonsection {
  display: inline-block;
  vertical-align: middle;
}
.width-250 {
  width: 250px;
  min-width: 250px;
}
body.no-footer .main-footer,
body.no-footer .footer-spacer {
  display: none !important;
}
.sg_accessrights_dropdown--overflow {
  margin-left: 5px;
}
.sg_accessrights_dropdown span[type="Resource"]:before,
.sg_accessrights_dropdown span[type="Actee"]:before,
.sg_accessrights_dropdown span[type="Actor"]:before,
.sg_accessrights_dropdown li[type="Resource"]:before,
.sg_accessrights_dropdown li[type="Actee"]:before,
.sg_accessrights_dropdown li[type="Actor"]:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="Resource"]:before,
.sg_accessrights_dropdown span[type="Actee"]:before,
.sg_accessrights_dropdown span[type="Actor"]:before,
.sg_accessrights_dropdown li[type="Resource"]:before,
.sg_accessrights_dropdown li[type="Actee"]:before,
.sg_accessrights_dropdown li[type="Actor"]:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="Resource"]:before,
.sg_accessrights_dropdown span[type="Actee"]:before,
.sg_accessrights_dropdown span[type="Actor"]:before,
.sg_accessrights_dropdown li[type="Resource"]:before,
.sg_accessrights_dropdown li[type="Actee"]:before,
.sg_accessrights_dropdown li[type="Actor"]:before {
  margin-right: 2px;
}
.sg_accessrights_dropdown span[type="AllResources"]:before,
.sg_accessrights_dropdown span[type="AllActees"]:before,
.sg_accessrights_dropdown span[type="AllActors"]:before,
.sg_accessrights_dropdown span[type="AllDevotes"]:before,
.sg_accessrights_dropdown span[type="AllManagers"]:before,
.sg_accessrights_dropdown li[type="AllResources"]:before,
.sg_accessrights_dropdown li[type="AllActees"]:before,
.sg_accessrights_dropdown li[type="AllActors"]:before,
.sg_accessrights_dropdown li[type="AllDevotes"]:before,
.sg_accessrights_dropdown li[type="AllManagers"]:before {
  content: '\e937';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="AllResources"]:before,
.sg_accessrights_dropdown span[type="AllActees"]:before,
.sg_accessrights_dropdown span[type="AllActors"]:before,
.sg_accessrights_dropdown span[type="AllDevotes"]:before,
.sg_accessrights_dropdown span[type="AllManagers"]:before,
.sg_accessrights_dropdown li[type="AllResources"]:before,
.sg_accessrights_dropdown li[type="AllActees"]:before,
.sg_accessrights_dropdown li[type="AllActors"]:before,
.sg_accessrights_dropdown li[type="AllDevotes"]:before,
.sg_accessrights_dropdown li[type="AllManagers"]:before {
  margin-right: 2px;
  font-size: 11px;
}
.sg_accessrights_dropdown span[type="AllResources"].user-ic:before,
.sg_accessrights_dropdown span[type="AllActees"].user-ic:before,
.sg_accessrights_dropdown span[type="AllActors"].user-ic:before,
.sg_accessrights_dropdown span[type="AllDevotes"].user-ic:before,
.sg_accessrights_dropdown span[type="AllManagers"].user-ic:before,
.sg_accessrights_dropdown li[type="AllResources"].user-ic:before,
.sg_accessrights_dropdown li[type="AllActees"].user-ic:before,
.sg_accessrights_dropdown li[type="AllActors"].user-ic:before,
.sg_accessrights_dropdown li[type="AllDevotes"].user-ic:before,
.sg_accessrights_dropdown li[type="AllManagers"].user-ic:before {
  margin: 0;
  font-size: 10px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_accessrights_dropdown span[type="Project"]:before,
.sg_accessrights_dropdown li[type="Project"]:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="Project"].project-template:before,
.sg_accessrights_dropdown li[type="Project"].project-template:before {
  content: "\f5ae";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="ProjectSecurityGroup"]:before,
.sg_accessrights_dropdown li[type="ProjectSecurityGroup"]:before {
  content: '\e60c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="ProjectSecurityGroup"].user-ic:before,
.sg_accessrights_dropdown li[type="ProjectSecurityGroup"].user-ic:before {
  margin: 0;
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_accessrights_dropdown span[type="ActeeGlobalRole"]:before,
.sg_accessrights_dropdown span[type="ActorGlobalRole"]:before,
.sg_accessrights_dropdown span[type="GlobalRole"]:before,
.sg_accessrights_dropdown li[type="ActeeGlobalRole"]:before,
.sg_accessrights_dropdown li[type="ActorGlobalRole"]:before,
.sg_accessrights_dropdown li[type="GlobalRole"]:before {
  content: '\f29a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="ActeeGlobalRole"]:before,
.sg_accessrights_dropdown span[type="ActorGlobalRole"]:before,
.sg_accessrights_dropdown span[type="GlobalRole"]:before,
.sg_accessrights_dropdown li[type="ActeeGlobalRole"]:before,
.sg_accessrights_dropdown li[type="ActorGlobalRole"]:before,
.sg_accessrights_dropdown li[type="GlobalRole"]:before {
  font-size: 15px;
  margin: 0 3px 0 0px;
  vertical-align: top;
}
.sg_accessrights_dropdown span[type="ActeeGlobalRole"].user-ic:before,
.sg_accessrights_dropdown span[type="ActorGlobalRole"].user-ic:before,
.sg_accessrights_dropdown span[type="GlobalRole"].user-ic:before,
.sg_accessrights_dropdown li[type="ActeeGlobalRole"].user-ic:before,
.sg_accessrights_dropdown li[type="ActorGlobalRole"].user-ic:before,
.sg_accessrights_dropdown li[type="GlobalRole"].user-ic:before {
  margin: 0;
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_accessrights_dropdown span[type="ResourceSecurityGroup"]:before,
.sg_accessrights_dropdown span[type="ActeeSecurityGroup"]:before,
.sg_accessrights_dropdown span[type="ActorSecurityGroup"]:before,
.sg_accessrights_dropdown li[type="ResourceSecurityGroup"]:before,
.sg_accessrights_dropdown li[type="ActeeSecurityGroup"]:before,
.sg_accessrights_dropdown li[type="ActorSecurityGroup"]:before {
  content: '\e022';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="ResourceSecurityGroup"]:before,
.sg_accessrights_dropdown span[type="ActeeSecurityGroup"]:before,
.sg_accessrights_dropdown span[type="ActorSecurityGroup"]:before,
.sg_accessrights_dropdown li[type="ResourceSecurityGroup"]:before,
.sg_accessrights_dropdown li[type="ActeeSecurityGroup"]:before,
.sg_accessrights_dropdown li[type="ActorSecurityGroup"]:before {
  font-size: 16px;
  margin: 0 3px 0 0px;
  vertical-align: top;
}
.sg_accessrights_dropdown span[type="ResourceSecurityGroup"].user-ic:before,
.sg_accessrights_dropdown span[type="ActeeSecurityGroup"].user-ic:before,
.sg_accessrights_dropdown span[type="ActorSecurityGroup"].user-ic:before,
.sg_accessrights_dropdown li[type="ResourceSecurityGroup"].user-ic:before,
.sg_accessrights_dropdown li[type="ActeeSecurityGroup"].user-ic:before,
.sg_accessrights_dropdown li[type="ActorSecurityGroup"].user-ic:before {
  margin: 0;
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_accessrights_dropdown span[type="AllProjects"]:before,
.sg_accessrights_dropdown li[type="AllProjects"]:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="AllProjects"]:before,
.sg_accessrights_dropdown li[type="AllProjects"]:before {
  margin-right: 4px;
}
.sg_accessrights_dropdown span[type="AllProjects"].user-ic:before,
.sg_accessrights_dropdown li[type="AllProjects"].user-ic:before {
  margin: 0;
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_accessrights_dropdown .k-multiselect-wrap li:first-child {
  margin: 0;
  word-wrap: break-word;
  max-width: 100%;
}
.sg_accessrights_dropdown span[type="GlobalRole"].report_security {
  margin-right: 2px;
}
.sg_accessrights_dropdown span[type="GlobalRole"].report_security:before {
  content: '\f29a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_accessrights_dropdown span[type="GlobalRole"].report_security:before {
  font-size: 15px;
  margin: 0 3px 0 0;
  vertical-align: top;
}
.sg_accessrights_dropdown span[type="GlobalRole"].report_security.user-ic:before {
  margin: 0;
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.flex-spacer {
  flex: 1;
}
/****************COMMON PAGES END*****************************/
.sg-title,
.sg-title h1 {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -ms-user-select: none;
  display: inline-block;
  font-size: 21px;
  line-height: 2;
  font-weight: normal;
  margin: 0;
  padding: 0;
  cursor: default;
  color: var(--sg-text-color, #000000);
}
.sg-title .bubble-action.sg_dominantUnit {
  font-size: 9px;
}
.sg-title .bubble-action.sg_dominantUnit .sg_dominantUnit__marker {
  vertical-align: middle;
  margin: 0;
}
.sg-title .sg_dominantUnit {
  margin-top: 10px;
  color: var(--sg-legacy-grayColor, #656565);
}
.sg-title .sg_dominantUnit .sg_dominantUnit__marker {
  position: static;
  margin-top: 0;
  display: inline-block;
  vertical-align: top;
}
.sg-save-button {
  position: relative;
  top: -3px;
}
.sg_subtitle {
  font-weight: 300;
  font-size: 18px;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
.sg_subtitle2 {
  font-weight: 100;
  font-size: 16px;
}
.sg_subtitle3 {
  font-size: 18px;
}
.sg-small-label {
  font-size: 9px;
  line-height: 1;
  color: var(--sg-text-color, #000000);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.cell-enabled-false::before {
  display: none;
}
.cell-enabled-false > a,
.cell-enabled-false > span {
  font-style: italic;
  color: var(--sg-legacy-grey, #6f6f6f);
}
.cell-enabled-false .avatar-box .e-avatar {
  background-color: var(--sg-legacy-grey, #6f6f6f);
}
@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(219, 8, 0, 0.5) inset;
  }
  100% {
    box-shadow: 0 0 10px rgba(219, 8, 0, 0.5) inset;
  }
}
@keyframes slideOutLeft {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: -100%;
  }
}
@keyframes inputHighlighter {
  from {
    background: var(--sg-secondary-color, #106df9);
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes slideOutRight {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tileRubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
body.headless {
  background-color: var(--sg-bg-color, #ffffff) !important;
}
body.headless .main-header,
body.headless .main-footer,
body.headless .footer-spacer,
body.headless .sg-title {
  display: none;
}
body.headless #main-wrapper {
  min-height: calc(100vh);
}
body.headless .multi-view-header {
  display: none;
}
body.sg-theme-dark .handsontable,
body.sg-theme-light .handsontable {
  color: var(--sg-text-color, #000000);
  font-size: 14px;
  font-family: "Figtree";
}
body.sg-theme-dark .handsontable a,
body.sg-theme-light .handsontable a {
  color: var(--sg-legacy-link-cl, #0735cc);
}
body.sg-theme-dark .handsontable .htDimmed,
body.sg-theme-light .handsontable .htDimmed {
  color: var(--sg-text-color, #000000);
}
body.sg-theme-dark .handsontable th,
body.sg-theme-light .handsontable th {
  color: var(--sg-text-color, #000000);
}
body.sg-theme-dark .handsontable tr,
body.sg-theme-light .handsontable tr {
  background-color: var(--sg-bg-color, #ffffff);
}
body.sg-theme-dark .handsontable th.current,
body.sg-theme-light .handsontable th.current {
  border: 2px solid var(--sg-secondary-color, #106df9) !important;
}
body.sg-theme-dark .handsontable .spreadsheet-parent .handsontable .htFocusCatcher,
body.sg-theme-light .handsontable .spreadsheet-parent .handsontable .htFocusCatcher {
  display: none;
}
body.sg-theme-dark revo-grid[theme='default'],
body.sg-theme-light revo-grid[theme='default'],
body.sg-theme-dark revo-grid:not([theme]),
body.sg-theme-light revo-grid:not([theme]) {
  border: 1px solid var(--sg-cell-border-color, #e4e4e4);
}
body.sg-theme-dark revo-grid[theme='default'] revogr-data .rgCell.disabled,
body.sg-theme-light revo-grid[theme='default'] revogr-data .rgCell.disabled,
body.sg-theme-dark revo-grid:not([theme]) revogr-data .rgCell.disabled,
body.sg-theme-light revo-grid:not([theme]) revogr-data .rgCell.disabled {
  background-color: transparent;
}
body.sg-theme-dark revogr-edit,
body.sg-theme-light revogr-edit {
  background-color: var(--sg-input-bg-color, #ffffff);
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-viewport-scroll.colPinStart,
body.sg-theme-light revo-grid[theme='compact'] revogr-viewport-scroll.colPinStart,
body.sg-theme-dark revo-grid[theme='material'] revogr-viewport-scroll.colPinStart,
body.sg-theme-light revo-grid[theme='material'] revogr-viewport-scroll.colPinStart {
  box-shadow: none;
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-viewport-scroll.colPinStart .group-rgRow,
body.sg-theme-light revo-grid[theme='compact'] revogr-viewport-scroll.colPinStart .group-rgRow,
body.sg-theme-dark revo-grid[theme='material'] revogr-viewport-scroll.colPinStart .group-rgRow,
body.sg-theme-light revo-grid[theme='material'] revogr-viewport-scroll.colPinStart .group-rgRow {
  box-shadow: -1px 0 0 var(--sg-cell-border-color, #e4e4e4) inset;
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-viewport-scroll.colPinStart revogr-data .focused-rgRow .rgCell:first-child:before,
body.sg-theme-light revo-grid[theme='compact'] revogr-viewport-scroll.colPinStart revogr-data .focused-rgRow .rgCell:first-child:before,
body.sg-theme-dark revo-grid[theme='material'] revogr-viewport-scroll.colPinStart revogr-data .focused-rgRow .rgCell:first-child:before,
body.sg-theme-light revo-grid[theme='material'] revogr-viewport-scroll.colPinStart revogr-data .focused-rgRow .rgCell:first-child:before {
  content: '';
  display: block;
  width: 5px;
  height: 100%;
  background-color: var(--sg-secondary-color, #106df9);
  position: absolute;
  left: 0;
  top: 0;
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-header .header-rgRow,
body.sg-theme-light revo-grid[theme='compact'] revogr-header .header-rgRow,
body.sg-theme-dark revo-grid[theme='material'] revogr-header .header-rgRow,
body.sg-theme-light revo-grid[theme='material'] revogr-header .header-rgRow {
  box-shadow: 0 -1px 0 0 var(--sg-cell-border-color, #e4e4e4) inset;
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-header .rgHeaderCell i,
body.sg-theme-light revo-grid[theme='compact'] revogr-header .rgHeaderCell i,
body.sg-theme-dark revo-grid[theme='material'] revogr-header .rgHeaderCell i,
body.sg-theme-light revo-grid[theme='material'] revogr-header .rgHeaderCell i {
  font-style: normal;
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-header .rgHeaderCell.sortable:hover,
body.sg-theme-light revo-grid[theme='compact'] revogr-header .rgHeaderCell.sortable:hover,
body.sg-theme-dark revo-grid[theme='material'] revogr-header .rgHeaderCell.sortable:hover,
body.sg-theme-light revo-grid[theme='material'] revogr-header .rgHeaderCell.sortable:hover {
  background-color: var(--sg-grid-rgRow-focused-disabled, #f7f9fc80);
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-header .rgHeaderCell.focused-cell,
body.sg-theme-light revo-grid[theme='compact'] revogr-header .rgHeaderCell.focused-cell,
body.sg-theme-dark revo-grid[theme='material'] revogr-header .rgHeaderCell.focused-cell,
body.sg-theme-light revo-grid[theme='material'] revogr-header .rgHeaderCell.focused-cell {
  background-color: var(--sg-legacy-alt-row-bg, #f7f9fc);
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-data .rgCell,
body.sg-theme-light revo-grid[theme='compact'] revogr-data .rgCell,
body.sg-theme-dark revo-grid[theme='material'] revogr-data .rgCell,
body.sg-theme-light revo-grid[theme='material'] revogr-data .rgCell {
  color: var(--sg-text-color, #000000);
}
body.sg-theme-dark revo-grid[theme='compact'] revogr-data .rgCell.disabled,
body.sg-theme-light revo-grid[theme='compact'] revogr-data .rgCell.disabled,
body.sg-theme-dark revo-grid[theme='material'] revogr-data .rgCell.disabled,
body.sg-theme-light revo-grid[theme='material'] revogr-data .rgCell.disabled {
  background-color: var(--sg-grid-not-editable-bg-color, #f4f4f4);
}
:root {
  --spm-other-strategies-color: var(--sg-color-legacy-d4d4d4, #d4d4d4);
  --sg-input-height: 34px;
  /**
   * AI Sidebar Width
   * Default: 0px (sidebar hidden)
   * Set to 400px when .ai-sidebar-visible class is present at viewport >= 1440px
   * Used by .sidebar-calc-width() mixin to calculate layout widths that account for the sidebar
   */
  --ai-sidebar-width: 0px;
}
html {
  margin: 0;
  width: 100%;
  height: 100%;
}
html.no-scroll {
  overflow-y: initial !important;
}
body,
button,
input,
select,
textarea {
  font-size: 14px;
  font-family: "Figtree";
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
  color: var(--sg-text-color, #000000);
}
dialog {
  text-align: left;
}
body.sg-theme-dark {
  --sg-danger-bg-color: #160304;
  --sg-warning-background-color-dynamic: #1a1400;
  --sg-alt-text-color: #bababa;
  --sg-input-border-color: #787878;
  --sg-table-border-color: #454545;
  --sg-light-border-color: #111111;
  --sg-legacy-buttonIconColor: #b8b8b8;
  --sg-cell-border-color: #595959;
  --sg-button-border-color: #595959;
  --sg-cell-busy-bg-color: #1a1a1a;
  --sg-color-button-transparent-background-hover: #1a1a1a;
  --sg-modal-close-btn-bg-color: #595959;
  --sg-color-legacy-ecf4ff: #000b1a;
  --sg-color-legacy-e9edff: #00051a;
  --sg-legacy-bg-neutral: #54626e;
  --sg-color-legacy-gray-light: #0d0d0d;
  --sg-legacy-tab-inactive-color: #515151;
  --sg-color-bg-primary: #000b1a;
  --sg-grid-light-bg-color: #212121;
  --sg-grid-select-plugin-bg-color: #0b0b0b;
  --sg-grid-select-plugin-bg-color-odd: #111111;
  --sg-grid-not-editable-bg-color: #111111;
  --sg-grid-not-editable-bg-color-odd: #0b0b0b;
  --sg-grid-na-bg-color: #383838;
  --sg-grid-total-bg-color: #515151;
  --sg-grid-hover-bg-color: #6a6a6a;
  --sg-grid-rgRow-disabled: #1a1a1a;
  --sg-grid-rgRow-focused-disabled: #2b2b2b80;
  --sg-grid-header-shadow-color: #ffffff08;
  --sg-viewport-scroll-colPinStart: #ffffff33;
  --sg-gantt-content-divider-color: #111111;
  --sg-handsontable-border-color: #999999;
  --sg-bg-color: #191a1b;
  --sg-bg-color-alt: #1c1e21;
  --sg-bg-color-disabled: #32353a;
  --sg-button-text-color: #111111;
  --sg-dropdown-text-color: #ffffff;
  --sg-popup-select-item-bg-color: #1e1e1e;
  --sg-quicksearch-input-bg-color: #0b0b0b;
  --sg-textarea-bg-color: #515151;
  --sg-input-bg-color: #3a3a3a;
  --sg-input-accent-bg-color: #515151;
  --sg-input-hover-bg-color: #6a6a6a;
  --sg-list-item-selected-color: #323234;
  --sg-list-item-selected-hover-color: #3b3b3b;
  --sg-list-item-selected-text-color: #ffffff;
  --sg-attribute-management-header-bg-color: #0c0c0c;
  --sg-navlog-bg-color: #130b00;
  --sg-hint-text-color: #111111;
  --sg-legacy-pageHeadingBorder: #1e1e1e;
  --sg-legacy-mainBg: #2b2b2b;
  --sg-legacy-hvAct: #0f0706;
  --sg-legacy-blue-medium-dark: #454545;
  --sg-legacy-grayColor: #9a9a9a;
  --sg-legacy-grayHighlight: #62381f;
  --sg-color-bubble-button-bg: #0d0d0d;
  --sg-legacy-link-cl: #3a99f8;
  --sg-legacy-blue-bg-fldspanel: #2d1100;
  --sg-legacy-blueentity: #c44c00;
  --sg-legacy-tableHeaderColor: #805f53;
  --sg-legacy-yellow-active-color: #000225;
  --sg-legacy-yellow-active-font-color: #337eb7;
  --sg-legacy-markStatusColor: #100704;
  --sg-legacy-highlightedRowBg: #083612;
  --sg-legacy-SGBeige: #805f53;
  --sg-legacy-tableRowHoveBg: #0e0f00;
  --sg-legacy-tabswitch-selected-bg: #100704;
  --sg-legacy-tabswitch-disabled-bg: #080808;
  --sg-legacy-required-color: #29e6e6;
  --sg-legacy-mainBgGray: #080603;
  --sg-legacy-blueDark: #cd9c7e;
  --sg-legacy-blueBorder: #271a13;
  --sg-legacy-orangeS: #1a88ef;
  --sg-legacy-yellowS: #003ef8;
  --sg-legacy-orangeSLight: #010b19;
  --sg-legacy-violetTableHeaderBg: #0e0f00;
  --sg-legacy-tooltip-color: #787c31;
  --sg-legacy-grey: #909090;
  --sg-legacy-BudgetC: #00ffff;
  --sg-legacy-EGHoverSelectedButton: #3a3f28;
  --sg-legacy-input-border-hover-color: #8b5504;
  --sg-legacy-PopLowPriorityC: #9a9a9a;
  --sg-green-bg-color: #0b5210;
  --sg-yellow-bg-color: #4d3e00;
  --sg-legacy-ExcelLight: #1c0417;
  --sg-legacy-WorkFrontIcon: #1a88ef;
  --sg-legacy-onboardingBackground: #000d4a;
  --sg-legacy-onboardingcolor: #6ea6d7;
  --sg-legacy-failColor: #00c3c3;
  --sg-legacy-SGRed: #500909;
  --sg-legacy-SGYellow: #0c2336;
  --sg-legacy-SGOrange: #001330;
  --sg-legacy-SGOrangeSelected: #04003b;
  --sg-legacy-SGgray: #0b0b0b;
  --sg-legacy-SGBlue: #161200;
  --sg-legacy-SGgrayLight: #0b0b0b;
  --sg-legacy-SGHdBg: #100704;
  --sg-legacy-greyCancelButton: #8588a1;
  --sg-legacy-errorCl: #245658;
  --sg-legacy-SGHdClForeground: #cd9c7e;
  --sg-legacy-SGGreenBar: #801f79;
  --sg-legacy-SGBlueBar: #b47654;
  --sg-legacy-SGDisabledBar: #64534b;
  --sg-legacy-HeadBorder: #2d1100;
  --sg-legacy-HeadBorderSelect: #6f532b;
  --sg-legacy-PopGreenColor: #7b3065;
  --sg-legacy-row-bg: #2b2b2b;
  --sg-legacy-alt-row-bg: #171717;
  --sg-legacy-HeaderLinkColor: #c47b3f;
  --sg-legacy-LGray: #797979;
  --sg-legacy-table-row-fix-bg: #24001c;
  --sg-legacy-table-row-fix-color: #765f7d;
  --sg-legacy-sync-progress-color: #392c38;
  --sg-legacy-report-bg: #2d1100;
  --sg-legacy-report-revo-grid-border: #0e0e0e;
  --sg-report-revo-grid-border-light: #171717;
  --sg-legacy-report-panels-bg: #100704;
  --sg-legacy-report-bg-highglighted: #3f1b06;
  --sg-legacy-pivotcfg-fldspanel-lbl-color: #794d35;
  --sg-legacy-pivotcfg-gray-border-color: #0e0e0e;
  --sg-legacy-pivottbl-headcolor: #da876c;
  --sg-legacy-pivot-rowbg-0: #000000;
  --sg-legacy-pivot-rowbg-1: #2a0808;
  --sg-legacy-pivot-rowbg-2: #13000f;
  --sg-legacy-pivot-rowbg-3: #1f2500;
  --sg-legacy-pivot-rowbg-4: #000225;
  --sg-legacy-pivot-border-color: #210d06;
  --sg-legacy-ld-report-light-color: #2a0027;
  --sg-legacy-dashboard-report-color: #281002;
  --sg-legacy-pivot-head-buttons-color: #b47654;
  --sg-legacy-dashboard-report-headcl: #b47654;
  --sg-legacy-additional-section-bg: #100704;
  --sg-legacy-rep-addit-sec-active-bg: #91351b;
  --sg-legacy-rr-pending-fr: #aeb736;
  --sg-legacy-rr-rejected-fr: #58adfe;
  --sg-legacy-rr-approved-fr: #d9814d;
  --sg-legacy-rr-delegate-fr: #a961c9;
  --sg-legacy-rr-partiallyapprove-fr: #8B7A8E;
  --sg-legacy-tab-inactive-fr: #ffffff;
  --sg-legacy-planned-color: #0e1300;
  --sg-legacy-google-color: #00a0c0;
  --sg-legacy-ms-color: #d56e00;
  --sg-legacy-saml-color: #1990d1;
  --sg-legacy-ts-opened-period-color: #892b49;
  --sg-legacy-activeColorHead: #c44c00;
  --sg-legacy-oddRowBorder: #0b0b0b;
  --sg-legacy-uninq-legend: #75411a;
  --sg-legacy-required-legend: #25608b;
  --sg-legacy-partial-legend-light: #1e1c00;
  --sg-legacy-totalBg: #171717;
  --sg-legacy-totalBgDarker: #1f1f1f;
  --sg-legacy-blue-bubble: #c93f0f;
  --sg-legacy-icon-view-color: #2b2b2b;
  --sg-legacy-hint-bg-color: #393939;
  --sg-grid-cell-focused-plain-bg-color: #121316;
  --sg-grid-cell-focused-red-bg-color: #140000;
  --sg-grid-cell-focused-green-bg-color: #065115;
  --sg-legacy-sm-hint-bg-color: #8e5635;
  --sg-legacy-muted: #909090;
  --sg-legacy-item-hover-color: #272727;
  --sg-legacy-arrowDownColor: #2b2b2b;
  --sg-legacy-material-blue-bg: #000713;
  --sg-legacy-material-blue-border: #221401;
  --sg-legacy-material-border-grey: #1e1e1e;
  --sg-legacy-warning-color: #00868d;
  --sg-legacy-supergrid-g-color: #080808;
  --sg-legacy-template-indicator: #0e2d68;
  --sg-legacy-resource-team-indicator: #26504f;
  --sg-legacy-recommend-pink: #391c36;
  --sg-legacy-recommend-font-color: #ffffff;
  --sg-color-legacy-fff2b5: #1b3e62;
  --sg-assignment-tab-active-color: #272727;
  --sg-legacy-recommend-switch-slider-color: #575800;
  --sg-legacy-non-zero: #6c1f01;
  --sg-legacy-sort-icon-color: #393939;
  --sg-legacy-required-asterisk-color: #00ffff;
  --sg-legacy-darkGray: #a7a7a7;
  --sg-resource-request-io-color: #0454b3;
  --sg-color-legacy-838383: #7c7c7c;
  --sg-color-legacy-ddebfe: #010922;
  --sg-color-legacy-9d9dbb: #626244;
  --sg-color-legacy-915928: #6ea6d7;
  --sg-text-color: #fffefe;
  --sg-color-legacy-e8e8e8: #171717;
  --sg-color-legacy-656565: #9a9a9a;
  --sg-color-legacy-95b9d4: #6a462b;
  --sg-color-legacy-868686: #797979;
  --sg-color-legacy-dcdaff: #232500;
  --sg-color-legacy-979797: #686868;
  --sg-color-legacy-f1f1f1: #0e0e0e;
  --sg-color-legacy-e1e1e1: #1e1e1e;
  --sg-color-legacy-999999: #666666;
  --sg-color-legacy-3bb3ff: #c44c00;
  --sg-color-legacy-7fa0ac: #805f53;
  --sg-color-legacy-6f6f6f: #909090;
  --sg-color-legacy-f3faf3: #0c050c;
  --sg-color-legacy-ededed: #121212;
  --sg-color-legacy-aaaaaa: #555555;
  --sg-color-legacy-f7f9fc: #080603;
  --sg-color-legacy-def2f9: #210d06;
  --sg-color-legacy-d8d8d8: #272727;
  --sg-color-legacy-888888: #777777;
  --sg-color-legacy-4b5458: #b4aba7;
  --sg-color-legacy-70caff: #8f3500;
  --sg-color-legacy-d43c30: #2bc3cf;
  --sg-color-legacy-ffc107: #8c4701;
  --sg-alert-button-text-color: #bcdffe;
  --sg-alert-box-border-color: #fe7f6c;
  --sg-color-legacy-2ba6cb: #d45934;
  --sg-color-legacy-970b0e: #68f4f1;
  --sg-alert-box-success-border-color: #ba85e5;
  --sg-color-legacy-5da423: #a25bdc;
  --sg-color-legacy-e66f2e: #1990d1;
  --sg-color-legacy-ff7b33: #0084cc;
  --sg-color-legacy-b23f3f: #4dc0c0;
  --sg-color-legacy-b9b9b9: #464646;
  --sg-color-legacy-0366ab: #fc9954;
  --sg-color-legacy-1d1d1d: #e2e2e2;
  --sg-color-legacy-81c05f: #7e3fa0;
  --sg-color-legacy-ea4e82: #15b17d;
  --sg-btn-group-input-success-focused-bg-color: #875dac;
  --sg-color-legacy-cc8148: #337eb7;
  --sg-btn-group-input-danger-focused-bg-color: #1f90b3;
  --sg-status-block-approved-bg-color: #384438;
  --sg-color-legacy-a4cfaa: #5b3055;
  --sg-color-legacy-e69057: #196fa8;
  --sg-color-legacy-5e96ff: #a16900;
  --sg-color-legacy-ff5eb6: #00a149;
  --sg-bubble-action-violet-bg-color: #374e2b;
  --sg-color-legacy-3a8dbd: #c57242;
  --sg-color-legacy-2b2b2b: #d4d4d4;
  --sg-color-legacy-a4afc6: #5b5039;
  --sg-color-legacy-6683ae: #997c51;
  --sg-color-legacy-185abd: #e7a542;
  --sg-power-point-io-color: #3bc1e3;
  --sg-archive-io-color: #fc7c78;
  --sg-image-io-color: #2b5ced;
  --sg-audio-io-color: #70f297;
  --sg-color-legacy-52a0ff: #ad5f00;
  --sg-color-legacy-78808b: #877f74;
  --sg-color-legacy-4a9a4c: #b565b3;
  --sg-color-legacy-fce9ea: #031615;
  --sg-gridsort-color: #393939;
  --sg-color-legacy-f7f7f7: #080808;
  --sg-scribe-message-action-color: #b4a694;
  --sg-texteditor-tagsline-color: #ffffff;
  --sg-color-legacy-fff5de: #000a21;
  --sg-color-legacy-777777: #888888;
  --sg-color-legacy-7bb4ff: #844b00;
  --sg-color-legacy-dbe2fa: #241d05;
  --sg-legend-milestones-circle-bg-color: #ef8ce4;
  --sg-legend-milestones-diamond-bg-color: #74ff74;
  --sg-legend-milestones-multiple-bg-color: #03cd4b;
  --sg-color-legacy-7f8caf: #807350;
  --sg-color-legacy-375078: #c8af87;
  --sg-color-legacy-202c46: #dfd3b9;
  --sg-color-legacy-4b77c1: #b4883e;
  --sg-color-legacy-e92020: #16dfdf;
  --sg-color-legacy-267eb2: #d9814d;
  --sg-color-legacy-d7effd: #281002;
  --sg-color-legacy-eff8fb: #100704;
  --sg-color-legacy-b6e4f6: #491b09;
  --sg-calendar-start-week-color: #f424eb;
  --sg-color-legacy-d8f4fd: #270b02;
  --sg-color-legacy-c0e4f9: #3f1b06;
  --sg-color-legacy-b2b2b2: #4d4d4d;
  --sg-color-legacy-36c0f0: #c93f0f;
  --sg-timesheets-details-header-cell-info-color: #d5ccc4;
  --sg-color-legacy-c58c90: #3a736f;
  --sg-color-legacy-c29ef3: #3d610c;
  --sg-color-legacy-bbecc1: #44133e;
  --sg-color-legacy-207e5e: #df81a1;
  --sg-color-legacy-c3d2da: #3c2d25;
  --sg-color-legacy-518294: #ae7d6b;
  --sg-tmsht-assignment-pop-k-group-color: #ae9c6b;
  --sg-color-legacy-585858: #a7a7a7;
  --sg-color-legacy-fffbf3: #00040c;
  --sg-timesheets-details-header-deleted-cell-color: #7e9cbb;
  --sg-color-legacy-8783ce: #787c31;
  --sg-vm-icon-star-color: #886005;
  --sg-selected-mixin-bg-color: #ff6408;
  --sg-color-legacy-eba714: #1458eb;
  --sg-handsontable-td-violet-bg-color: #0e1300;
  --sg-highlight-period-bg: #006465;
  --sg-highlight-period-color: #84cf9a;
  --sg-color-legacy-ff9b9a: #006465;
  --sg-headtx-green-color: #46ca84;
  --sg-color-legacy-005dee: #ffa211;
  --sg-color-legacy-d7ddef: #282210;
  --sg-color-legacy-222222: #dddddd;
  --sg-color-legacy-4b89ab: #b47654;
  --sg-template-sheet-name-color: #9ad092;
  --sg-color-legacy-71a9ca: #8e5635;
  --sg-color-legacy-f0f2f4: #0f0d0b;
  --sg-color-legacy-666666: #999999;
  --sg-color-legacy-ff8866: #007799;
  --sg-color-legacy-7bde95: #84216a;
  --sg-sourcestable-link-color: #ff6031;
  --sg-color-legacy-5b99af: #a46650;
  --sg-color-legacy-fffdda: #000225;
  --sg-add-milestone-shadow-color: #b67fac;
  --sg-color-legacy-758d9a: #8a7265;
  --sg-color-legacy-6b7f5e: #9480a1;
  --sg-color-legacy-89ffac: #760053;
  --sg-color-legacy-c1eedc: #3e1123;
  --sg-rolemanage-gbl-col-bg-color: #392c38;
  --sg-color-legacy-cdf0e2: #320f1d;
  --sg-color-legacy-7d683a: #8297c5;
  --sg-color-legacy-dfefde: #201021;
  --sg-color-legacy-575962: #a8a69d;
  --sg-color-legacy-f63400: #09cbff;
  --sg-color-legacy-bdb400: #424bff;
  --sg-color-legacy-ccdec3: #33213c;
  --sg-color-legacy-7ab65a: #8549a5;
  --sg-color-legacy-bfb1a4: #404e5b;
  --sg-color-legacy-f2f2f9: #0d0d06;
  --sg-color-legacy-dff5f1: #200a0e;
  --sg-color-legacy-b6d6c6: #492939;
  --sg-color-legacy-ff5f3f: #00a0c0;
  --sg-color-legacy-953500: #ff9c66;
  --sg-color-legacy-326381: #cd9c7e;
  --sg-color-legacy-5970e7: #a68f18;
  --sg-color-legacy-747369: #8b8c96;
  --sg-color-legacy-c2e3af: #3d1c50;
  --sg-color-legacy-424d3c: #bdb2c3;
  --sg-color-legacy-f3d7a6: #0c2859;
  --sg-color-legacy-fff3b0: #000c4f;
  --sg-color-legacy-feba94: #01456b;
  --sg-color-legacy-3b84c0: #c47b3f;
  --sg-color-legacy-89a082: #765f7d;
  --sg-color-legacy-e1e3ff: #1e1c00;
  --sg-color-legacy-fffeec: #000113;
  --sg-color-legacy-2cd0ff: #d32f00;
  --sg-color-legacy-f1f0ff: #0e0f00;
  --sg-color-legacy-76d4b6: #892b49;
  --sg-color-legacy-cbd4ff: #342b00;
  --sg-color-legacy-ffdfdf: #002020;
  --sg-color-legacy-ffb4b4: #004b4b;
  --sg-color-legacy-dddddd: #222222;
  --sg-color-legacy-cccccc: #333333;
  --sg-color-legacy-cbffbe: #340041;
  --sg-color-legacy-8e8c9c: #717363;
  --sg-color-legacy-fcf614: #0309eb;
  --sg-color-legacy-d3ff79: #2c0086;
  --sg-color-legacy-b3ffed: #4c0012;
  --sg-color-legacy-dbcdff: #243200;
  --sg-color-legacy-d36b3f: #2c94c0;
  --sg-color-legacy-ea9226: #156dd9;
  --sg-color-legacy-80b918: #7f46e7;
  --sg-color-legacy-9bd918: #6426e7;
  --sg-color-legacy-0735cc: #f8ca33;
  --sg-color-legacy-29e1b5: #d61e4a;
  --sg-color-legacy-300068: #cfff97;
  --sg-color-legacy-560bad: #a9f452;
  --sg-color-legacy-7600c3: #89ff3c;
  --sg-color-legacy-b40099: #4bff66;
  --sg-color-legacy-3d3d3d: #c2c2c2;
  --sg-color-legacy-8c99c6: #736639;
  --sg-color-legacy-737585: #8c8a7a;
  --sg-color-legacy-333333: #cccccc;
  --sg-color-legacy-ff5555: #00aaaa;
  --sg-color-legacy-190e46: #e6f1b9;
  --sg-color-legacy-9bacb4: #64534b;
  --sg-color-legacy-3f7793: #c0886c;
  --sg-color-legacy-eeff90: #11006f;
  --sg-color-legacy-e2f5ff: #1d0a00;
  --sg-color-legacy-97ccbb: #683344;
  --sg-color-legacy-7d89a6: #827659;
  --sg-color-legacy-aa72e1: #558d1e;
  --sg-color-legacy-f9b17d: #064e82;
  --sg-color-legacy-da9f74: #25608b;
  --sg-color-legacy-ff7972: #00868d;
  --sg-color-legacy-594300: #a6bcff;
  --sg-color-legacy-d8e5ec: #271a13;
  --sg-color-legacy-b0f8ff: #4f0700;
  --sg-color-legacy-cbd2ec: #342d13;
  --sg-color-legacy-aac7ff: #553800;
  --sg-color-legacy-66dd77: #992288;
  --sg-color-legacy-7fe086: #801f79;
  --sg-color-legacy-d03e6f: #2fc190;
  --sg-color-legacy-807500: #7f8aff;
  --sg-color-legacy-e46a6a: #1b9595;
  --sg-color-legacy-2cd053: #d32fac;
  --sg-color-legacy-a6bfa2: #59405d;
  --sg-color-legacy-6e94bb: #916b44;
  --sg-color-legacy-dc0000: #23ffff;
  --sg-color-legacy-ffb4a2: #004b5d;
  --sg-color-legacy-f4634f: #0b9cb0;
  --sg-color-legacy-d89625: #2769da;
  --sg-color-legacy-2eb8bb: #d14744;
  --sg-color-legacy-808080: #7f7f7f;
  --sg-color-legacy-dfe1e7: #201e18;
  --sg-color-legacy-eef5ff: #110a00;
  --sg-color-legacy-e86262: #179d9d;
  --sg-color-legacy-ff6600: #0099ff;
  --sg-color-legacy-efefef: #101010;
  --sg-color-legacy-bbdbec: #442413;
  --sg-color-legacy-d7d7d7: #282828;
  --sg-color-legacy-172b4d: #e8d4b2;
  --sg-color-legacy-020099: #fdff66;
  --sg-color-legacy-f5f5f5: #0a0a0a;
  --sg-color-legacy-14298b: #ebd674;
  --sg-color-legacy-a4a4a6: #5b5b59;
  --sg-color-legacy-ffa2a2: #005d5d;
  --sg-color-legacy-00f003: #ff0ffc;
  --sg-color-legacy-e4606d: #1b9f92;
  --sg-color-legacy-a5a5a5: #5a5a5a;
  --sg-color-legacy-2a8ef8: #d57107;
  --sg-color-legacy-989898: #676767;
  --sg-color-legacy-eaf9f4: #15060b;
  --sg-color-legacy-4fc8a1: #b0375e;
  --sg-color-legacy-7f7f7f: #808080;
  --sg-color-legacy-d4eeff: #2b1100;
  --sg-color-legacy-262626: #d9d9d9;
  --sg-color-legacy-1281f7: #ed7e08;
  --sg-color-legacy-d6d6d6: #292929;
  --sg-color-legacy-bd2130: #42decf;
  --sg-color-legacy-dbdbdb: #242424;
  --sg-color-legacy-2e2f32: #d1d0cd;
  --sg-color-legacy-e4ebf5: #1b140a;
  --sg-color-legacy-8db7d1: #72482e;
  --sg-color-legacy-596977: #a69688;
  --sg-color-legacy-e3f3f8: #1c0c07;
  --sg-color-legacy-e7e7e7: #181818;
  --sg-color-legacy-ecf1f8: #070f13;
  --sg-color-legacy-d3e5ff: #2c1a00;
  --sg-color-legacy-3f3f3f: #c0c0c0;
  --sg-color-legacy-0768ce: #f89731;
  --sg-color-legacy-d32535: #2cdaca;
  --sg-color-legacy-4b4b4b: #b4b4b4;
  --sg-color-legacy-c6e6f1: #39190e;
  --sg-color-legacy-8abcda: #754325;
  --sg-color-legacy-c53062: #3acf9d;
  --sg-color-legacy-435de4: #bca21b;
  --sg-color-legacy-226f9d: #dd9062;
  --sg-color-legacy-2f4467: #d0bb98;
  --sg-color-legacy-404d5c: #bfb2a3;
  --sg-color-legacy-4f56ca: #b0a935;
  --sg-color-legacy-026b6e: #fd9491;
  --sg-color-legacy-ecb100: #134eff;
  --sg-color-legacy-ddebff: #221400;
  --sg-color-legacy-e4e8eb: #1b1714;
  --sg-color-legacy-076dd8: #f89227;
  --sg-color-legacy-ffe04f: #001fb0;
  --sg-color-legacy-fff0ab: #000f54;
  --sg-color-legacy-ffee9c: #001163;
  --sg-color-legacy-bbe2c0: #441d3f;
  --sg-color-legacy-bfe5fc: #401a03;
  --sg-color-legacy-b09500: #4f6aff;
  --sg-color-legacy-31e155: #ce1eaa;
  --sg-color-legacy-ff6868: #009797;
  --sg-color-legacy-005701: #ffa8fe;
  --sg-color-legacy-9fdbff: #602400;
  --sg-color-legacy-6f8867: #907798;
  --sg-color-legacy-83c5cd: #7c3a32;
  --sg-color-legacy-61c5e2: #9e3a1d;
  --sg-color-legacy-dff1f7: #200e08;
  --sg-color-legacy-e7f4f9: #180b06;
  --sg-color-legacy-885026: #77afd9;
  --sg-color-legacy-e2eeff: #1d1100;
  --sg-color-legacy-cdf8d6: #320729;
  --sg-color-legacy-ececec: #131313;
  --sg-color-legacy-dbeff6: #241009;
  --sg-color-legacy-fffcc1: #00033e;
  --sg-color-legacy-006101: #ffffff;
  --sg-color-legacy-c7dae4: #313e5e;
  --sg-color-legacy-c2c4c8: #3d3b37;
  --sg-color-legacy-086fdd: #f79022;
  --sg-color-legacy-dedede: #212121;
  --sg-color-legacy-d3d8de: #2c2721;
  --sg-color-legacy-e3e1f8: #1c1e07;
  --sg-header-bg-color-1: #1e1e1e;
  --sg-header-bg-color-2: #1e1e1e;
  --sg-shadow: 0 7px 30px 0 color-mix(in srgb, #000000, transparent 5%),
  0 0 0 1px color-mix(in srgb, #ffffff, transparent 60%), 0 0 80px color-mix(in srgb, #ffffff, transparent 98%) inset;
  --sg-disabled-grid-grayed-color: #a7a7a7;
  --sg-license-background: #57626d;
  --sg-combo-box-selected-item-color: #44aaee;
  --sg-roadmap-boolean-bg: #1e1e1e;
  --sg-ficsal-color-hover: #121100;
  --sg-fiscal-color: #0b0b0b;
  --sg-search-result: #ffffff;
}
body.sg-theme-dark revo-grid {
  --revo-grid-text: #fffefe;
}
body {
  --sg-primary-color: #008a02;
  --sg-secondary-color: #106df9;
  --sg-readonly-legend: #ff9a52;
  --sg-color-legacy-ddebfe: #ddebfe;
  --sg-color-legacy-ecf1f8: #ecf1f8;
}
button {
  color: inherit;
}
strong {
  font-weight: 600;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.flex-right {
  display: flex;
  flex-direction: row-reverse;
}
.no-wrap {
  white-space: nowrap;
}
.ovh {
  overflow: hidden;
}
input.default {
  font-family: "Figtree";
}
.base-row {
  margin: 0 50px;
  text-align: left;
  clear: both;
}
.multi-view-header .base-row + .base-row,
.d-flex .base-row + .base-row {
  margin-left: 0;
}
.size-container {
  container-type: inline-size;
}
@container (max-width: 1420px) {
  .add-assignment-label,
  .options-label {
    display: none;
  }
}
@container (max-width: 1350px) {
  .base-row,
  .sg-milestones .sg_tabmenusection,
  .sg_updateproject .sg-rrlist_actionpanel {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .sg_updateproject .sg_allocation__controls,
  .content-row .resource-panel,
  .attributes-tab,
  .clone-team-wrapper,
  .grid-configuration-row--header,
  .grid-configuration-row,
  .sg-sheets .k-spreadsheet .k-tabstrip,
  .sg-wf-projectview .content-holder {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .sg-milestones .sg_update__datesupd {
    margin-left: 30px !important;
  }
  .allocation-grid-header .ui-customcssradio input + .ui-button-text::before,
  .allocation-grid-header .ui-customcssradio input + .ui-button-text .icon {
    margin: 0 !important;
  }
  .allocation-grid-header .ui-customcssradio input + .ui-button-text .ui-button-text-name {
    display: none;
  }
}
@container (max-width: 980px) {
  .insert-columns-label,
  .group-by-label {
    display: none;
  }
}
*:focus-visible {
  outline: 2px solid #50beff;
}
#main,
#main-wrapper,
.mainhl {
  box-sizing: border-box;
}
#main.impersonation-mode-is-active,
#main-wrapper.impersonation-mode-is-active,
.mainhl.impersonation-mode-is-active {
  padding-top: 5px;
}
#main-wrapper {
  position: relative;
  min-height: calc(100vh - 30px - 60px - 5px);
}
#main-wrapper > .loader {
  min-height: calc(100% - 60px);
}
.page-animation-enter-active,
.page-animation-leave-active {
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: ease;
}
.page-animation-enter,
.page-animation-leave-active {
  opacity: 0;
}
.page-animation-leave-active {
  display: none!important;
}
.scale-enter-active,
.scale-leave-active {
  transition: all 0.5s ease;
}
.scale-enter-from,
.scale-leave-to {
  opacity: 0;
  transform: scale(0.9);
}
.main-globalhl {
  min-height: 100%;
}
.main-globalhl.overflow-h {
  overflow: hidden;
}
.main-globalhl.main-globalhl-content {
  display: flex;
}
.main-footer {
  text-align: left;
  font-size: 11px;
  height: 30px;
  margin-top: -30px;
  line-height: 30px;
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
  color: #b2b2b2;
}
.footer-spacer {
  height: 30px;
}
.main-header {
  height: 60px;
}
.main-header .external-links {
  float: right;
  margin-top: 18px;
  padding: 5px 0px;
}
.main-header .external-links a {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  padding: 8px;
  text-decoration: none;
}
.main-header .logo {
  background: url(../../content/assets/da33cfdf1e3640d29f8a.svg) no-repeat center;
  background-size: contain;
  width: 128px;
  height: 37px;
  cursor: pointer;
}
.main-header .loginsct_header {
  height: 40px;
  box-sizing: border-box;
  align-items: center;
}
.main-header .loginsct_header .avatar-box {
  display: flex;
}
/****************PAGES COLORS*****************************/
body {
  background-color: var(--sg-legacy-mainBgGray, #f7f9fc);
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
}
body.no-scroll {
  overflow: hidden;
}
body .loader {
  background-color: var(--sg-legacy-mainBgGray, #f7f9fc);
}
body .loader.loader__transparent {
  background-color: transparent;
}
body .main-footer {
  background-color: var(--sg-legacy-mainBgGray, #f7f9fc);
}
body .main-header {
  background: var(--sg-header-bg-color-1, var(--sg-legacy-blueDef, #0874e7));
}
body .sg_navmenu__li:before {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body .sg_tablist > li.selected {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body .layt_popup {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body .layt_popup:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body .sg_popupviews {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body .sg_popupviews:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body .sg_popupviews.rightplace:before {
  border-color: transparent var(--sg-legacy-blueDef, #0874e7) transparent transparent;
}
body .sg_popupviews.leftplace:before {
  border-color: transparent transparent transparent var(--sg-legacy-blueDef, #0874e7);
}
body .layt_rlmnt_headerBox {
  background: var(--sg-bg-color, #ffffff);
  border-top: 1px solid var(--sg-table-border-color, #c7c7c7);
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.03);
}
body .multi-view-header {
  box-shadow: inset 0 -1px 0 var(--sg-color-legacy-e8e8e8, #e8e8e8);
}
body .e-search-icon {
  color: var(--sg-color-legacy-656565, #656565) !important;
  opacity: 1 !important;
}
body .loader {
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
}
body .loader.loader__transparent {
  background-color: transparent;
}
body .main-footer {
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
}
body .main-header {
  background: var(--sg-header-bg-color-1, var(--sg-legacy-blueDef, #0874e7));
}
body .sg_navmenu__li:before {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body .sg_tablist > li.selected {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body .layt_popup {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body .layt_popup:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body .sg_popupviews {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body .sg_popupviews:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body .sg_popupviews.rightplace:before {
  border-color: transparent var(--sg-legacy-blueDef, #0874e7) transparent transparent;
}
body .sg_popupviews.leftplace:before {
  border-color: transparent transparent transparent var(--sg-legacy-blueDef, #0874e7);
}
body .layt_rlmnt_headerBox {
  background: var(--sg-bg-color, #ffffff);
  border-top: 1px solid var(--sg-table-border-color, #c7c7c7);
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.03);
}
body.white {
  background-color: var(--sg-color-legacy-ffffff, #ffffff);
}
body.white .loader {
  background-color: var(--sg-color-legacy-ffffff, #ffffff);
}
body.white .loader.loader__transparent {
  background-color: transparent;
}
body.white .main-footer {
  background-color: var(--sg-color-legacy-ffffff, #ffffff);
}
body.white .main-header {
  background: var(--sg-header-bg-color-1, var(--sg-legacy-blueDef, #0874e7));
}
body.white .sg_navmenu__li:before {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body.white .sg_tablist > li.selected {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body.white .layt_popup {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body.white .layt_popup:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body.white .sg_popupviews {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body.white .sg_popupviews:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body.white .sg_popupviews.rightplace:before {
  border-color: transparent var(--sg-legacy-blueDef, #0874e7) transparent transparent;
}
body.white .sg_popupviews.leftplace:before {
  border-color: transparent transparent transparent var(--sg-legacy-blueDef, #0874e7);
}
body.white .layt_rlmnt_headerBox {
  background: var(--sg-bg-color, #ffffff);
  border-top: 1px solid var(--sg-table-border-color, #c7c7c7);
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.03);
}
body.impersonation {
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
}
body.impersonation .loader {
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
}
body.impersonation .loader.loader__transparent {
  background-color: transparent;
}
body.impersonation .main-footer {
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
}
body.impersonation .main-header {
  background: var(--sg-header-bg-color-1, var(--sg-legacy-blueDef, #0874e7));
}
body.impersonation .sg_navmenu__li:before {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body.impersonation .sg_tablist > li.selected {
  background-color: var(--sg-color-legacy-3a8dbd, #3a8dbd);
}
body.impersonation .layt_popup {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body.impersonation .layt_popup:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body.impersonation .sg_popupviews {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
body.impersonation .sg_popupviews:before {
  border-bottom-color: var(--sg-legacy-blueDef, #0874e7);
}
body.impersonation .sg_popupviews.rightplace:before {
  border-color: transparent var(--sg-legacy-blueDef, #0874e7) transparent transparent;
}
body.impersonation .sg_popupviews.leftplace:before {
  border-color: transparent transparent transparent var(--sg-legacy-blueDef, #0874e7);
}
body.impersonation .layt_rlmnt_headerBox {
  background: var(--sg-bg-color, #ffffff);
  border-top: 1px solid var(--sg-table-border-color, #c7c7c7);
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.03);
}
.ql-mention-list-container {
  background: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000);
}
/****************PAGES COLORS END*****************************/
revo-grid revogr-scroll-virtual.horizontal {
  z-index: 0;
}
.widgets-editing--hide-scroll revo-grid revogr-scroll-virtual.vertical {
  z-index: 0;
}
/********* TEMPUS AI **********/
/*
**** AI SIDEBAR RESPONSIVE BEHAVIOR *****
*/
@media screen and (min-width: 1600px) {
  .ai-sidebar-visible {
    --ai-sidebar-width: 400px;
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: 1fr;
    grid-template-areas: "main sidebar";
  }
  .ai-sidebar-visible > .main-globalhl {
    grid-area: main;
    max-width: calc(100vw - var(--ai-sidebar-width) - 0px);
  }
  .ai-sidebar-visible > .sidebar-container {
    grid-area: sidebar;
    width: 400px;
    min-width: 400px;
  }
}

/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
/*
**** IN THIS FILE BASE PARAMETRES STORED *****
*/
/*
**** COMMON ELEMENTS HEIGHT *****
*/
/*
**** COMMON RADIUS *****
*/
/*
**** MARGIN LEFT/RIGHT *****
*/
/**
** Margin for large tables so they not stick to the grid
*/
/*
**** TITLE INPUT WIDTH *****
*/
/*
**** SYNC SMALL ICON WIDTH *****
*/
/*
****INPUT ANIM
*/
/*
** REPORTS
*/
/*
**** DROPDOWN *****
*/
/*
**** CONTENT WRAPPERS DIMENSIONS *****
*/
/*
**** HINT DIMENSIONS *****
*/
/*
**** ROADMAP ****
*/
/*
**** Multipage basic styles ****
*/
/**
* Min height
*/
/**
**** TEMPUS AI *****
*/
/*
**** LESS MIXINS FOR AI-AWARE LAYOUTS *****
*/
/**
 * .sidebar-calc-width() - Mixin for calculating widths that account for AI sidebar
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-width();                    // width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(100vw, 50px);         // width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-width(90vw);                // width: calc(90vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(45vw, 100px);         // width: calc(45vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * IMPORTANT NOTES:
 * 1. SCROLLBAR ISSUE: 100vw includes scrollbar width, which can cause horizontal overflow.
 *    Consider using width: 100% on child elements when possible, especially inside flex/grid containers.
 *
 * 2. FLEX/GRID CHILDREN: If using this on flex or grid children, ensure they have min-width: 0
 *    to prevent overflow issues.
 *
 * 3. HORIZONTAL PADDING: Avoid using this mixin on elements with horizontal padding or borders.
 *    Instead, use it on a wrapper element and add padding to an inner element.
 *
 * 4. WHEN NOT TO USE:
 *    - Elements inside a sized container (use width: 100% instead)
 *    - Modal/dialog content (usually constrained by max-width)
 *    - Elements that should scroll horizontally
 *
 * 5. WHEN TO USE:
 *    - Full-width sections that need to span the viewport minus the sidebar
 *    - Absolute/fixed positioned overlays
 *    - Elements that explicitly need to relate to viewport width
 *    - Modals/popups that need percentage-based viewport widths (90vw, 45vw, etc.)
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/**
 * .sidebar-calc-max-width() - Mixin for max-width that accounts for AI sidebar
 *
 * Safer alternative to .sidebar-calc-width() for constraining element size without causing overflow.
 * Use this when you want to limit width but allow the element to be smaller if needed.
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-max-width();                  // max-width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(100vw, 50px);       // max-width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-max-width(45vw);              // max-width: calc(45vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(40vw, 100px);       // max-width: calc(40vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(219, 8, 0, 0.5) inset;
  }
  100% {
    box-shadow: 0 0 10px rgba(219, 8, 0, 0.5) inset;
  }
}
@keyframes slideOutLeft {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: -100%;
  }
}
@keyframes inputHighlighter {
  from {
    background: var(--sg-secondary-color, #106df9);
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes slideOutRight {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tileRubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.attr-icons {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attr-icons.project-io {
  color: var(--sg-secondary-color, #106df9);
}
.attr-icons.resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.assignment-doc-io {
  color: #d36b3f;
}
.attr-icons.budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
.attr-icons.spm-io {
  color: #9437ab;
  zoom: 0.8;
}
/*------------------------------------*\
    _ICONS.LESS
\*------------------------------------*/
/**
 * icons.less icons mixins and sets
 **/
/****************LAYOUT POPUP****************************/
.headset-io:before {
  content: '\f590';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.project-grid-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.projects-kanban-io:before {
  content: '\f51c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.assignment-doc-io:before {
  content: '\f15c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-o-notch:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.milestone-io:before {
  content: '\f024';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sheets-io:before {
  content: '\f0ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-io:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-round-io:before {
  content: '\f056';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.double-line:before {
  content: '\f7a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.focus-io:before {
  content: '\f05b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sorting-none-io:before {
  content: '\f05e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.unlink-io:before {
  content: '\f127';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shift-io:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-tack:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.readonly-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.date-io:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.date-value-io:before {
  content: '\f783';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.up-io:before {
  content: '\e919';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-up-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thumb-down-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.stop-circle-io:before {
  content: '\e15c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.hand-stop-io:before {
  content: '\e928';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.auditlog-io:before {
  content: '\e02f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.skillmatrix-io:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.categories-io:before {
  content: '\f5fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmap-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmaps-io:before {
  content: '\f277';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.partial-io:before {
  content: '\e891';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-project-io:before {
  content: '\e925';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-resource-io:before {
  content: '\e922';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.file-excel-io:before {
  content: '\f1c3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-csv-io:before {
  content: '\f6dd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-pdf-io:before {
  content: '\f1c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.full-arrow-up-io:before {
  content: '\f062';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pause-io:before {
  content: '\f04c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-desc:before {
  content: '\f161';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.return-io:before {
  content: '\e116';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.customfield-layout-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ***********
*/
.resourcemgmt-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-team-io:before {
  content: '\f500';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moon-io:before {
  content: '\f186';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sun-io:before {
  content: '\f185';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheetmgmt-io:before {
  content: '\44';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mytimesheet-io:before {
  content: '\43';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpa-io:before {
  content: '\42';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpafg-io:before {
  content: '\41';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.adminsettings-io:before {
  content: '\e94f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.helplink-io:before {
  content: '\f059';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bell-io:before {
  content: '\f0f3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-request-io:before {
  content: '\e94b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resource-request-io:before {
  content: '\e94c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.budget-nav-io:before {
  content: '\e94d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.side-bar-io:before {
  content: '\e950';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ENDED***********
*/
/*
* SHAPE ICONS
 */
.square-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.manager-io:before {
  content: '\f508';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-io:before {
  content: '\e3a6';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-up-io:before {
  content: '\ea32';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-down-io:before {
  content: '\ea36';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-left-io:before {
  content: '\ea38';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-right-io:before {
  content: '\ea34';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  content: '\e953';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  font-size: 1.2em;
}
.pin-io-active:before {
  content: '\e946';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io-active:before {
  font-size: 1.2em;
}
.thumbtack-io:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approve-shield-io:before {
  content: '\e8e8';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thunder-io:before {
  content: '\e3e7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.star-circle-io:before {
  content: '\e8d0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.angle-down-io:before {
  content: '\f107';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-down-io:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
/*
* SHAPE ICONS ENDED
 */
.doc-export-io:before {
  content: '\f56e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-up-io:before {
  content: '\f151';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-down-io:before {
  content: '\f150';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-left-io:before {
  content: '\f036';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-center-io:before {
  content: '\f037';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-right-io:before {
  content: '\f038';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.decimal-left-io:before {
  content: '\e942';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.decimal-right-io:before {
  content: '\e943';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-open-io:before {
  content: '\e944';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-close-io:before {
  content: '\e945';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resources-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pencil-alt-io:before {
  content: '\f303';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.stream-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.colored_icon.project-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.resource-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.colored_icon.customfield-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.icon-report-color:before {
  color: #d36b3f;
}
.colored_icon.assignment-doc-io:before {
  color: #d36b3f;
}
.colored_icon.milestone-io:before {
  color: var(--sg-warning-color, #ffc107);
}
.colored_icon.budget-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.gopuram-io:before {
  content: '\f664';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.money-bill-alt-io:before {
  content: '\f3d1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-square-io:before {
  content: '\f14a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thermometer-half-io:before {
  content: '\f2c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.list-alt-io:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.angle-double-right-io:before {
  content: '\f101';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-cog-io:before {
  content: '\f4fe';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.cog-io:before {
  content: '\f013';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.users-cog-io:before {
  content: '\f509';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.exclamation-triangle-io:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-circle-io:before {
  content: '\f058';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.url-io:before {
  content: '\f0c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.matrix-io:before {
  content: '\f84c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-solid-io:before {
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.interval-io:before {
  content: '\f337';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.advanced-rate-io:before {
  content: '\f51e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.default-icon-color {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.goals-io:before {
  content: '\f091';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tachometer-io:before {
  content: '\f3fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.weight-io:before {
  content: '\f496';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.hands-helping-io:before {
  content: '\f4c4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.diagram-io:before {
  content: '\f542';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.captions-io:before {
  content: '\f20a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelskills:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelskills:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelresources:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelresources:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelprojects:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelprojects:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-msprojectserversql {
  vertical-align: middle;
  display: inline-block;
}
.sync-msprojectserversql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-exceladmintime:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladmintime:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-exceladvancedrates:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladvancedrates:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelsheet:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelsheet:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelassignments:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelassignments:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelattributes:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelattributes:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelfinancials:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelfinancials:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-ppmpro {
  margin-top: 0;
  vertical-align: top;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: contain;
  background-color: var(--sg-legacy-PpmPro, #6369d0);
}
span.permission.tagitem-enabled-false,
span.permission.tagitem-enabled-true {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
span.permission[type="GlobalRole"]:before {
  content: '\f29a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
span.permission[type="GlobalRole"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 15px;
  margin: 0 5px 0 5px;
  vertical-align: top;
}
span.permission[type="SecurityGroup"]:before {
  content: '\e022';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
span.permission[type="SecurityGroup"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 14px;
  margin: 0 5px 0 5px;
  vertical-align: top;
}
span.permission[type="Resource"]:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
span.permission[type="Resource"]:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
span.permission[type="Resource"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 16px;
  margin: 0 5px 0 5px;
  vertical-align: top;
}
span.permission[type="Resource"].tagitem-enabled-false {
  font-style: italic;
  color: var(--sg-legacy-grey, #6f6f6f);
}
span.permission[type="AllResources"]:before {
  content: '\e937';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
span.permission[type="AllResources"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 16px;
  margin: 0 5px 0 5px;
  vertical-align: top;
}
span.permission[type="NoAccess"]:before {
  content: '\e938';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
span.permission[type="NoAccess"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 16px;
  margin: 0 5px 0 5px;
  vertical-align: top;
}
@font-face {
  font-family: 'FontAwesome';
  src: url(../../content/assets/eeccf4f66002c6f2ba24.woff) format('woff'), url(../../content/assets/be9ee23c0c6390141475.ttf) format('truetype'), url(../../content/assets/7a8b4f130182d19a2d7c.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontSGtempus';
  src: url(../../content/assets/9b11f62028be17fb6ef8.woff) format('woff'), url(../../content/assets/699af9c2a1e458d13bbc.ttf) format('truetype'), url(../../content/assets/cedd688a444ef8e3bafa.svg#sgtempusfont) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
/* BEGIN Light */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/63b97f17bfc430a76ee1.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}
/* END Light */
/* BEGIN Light Italic */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/a877f9da647d04c86a17.ttf) format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: fallback;
}
/* END Light Italic */
/* BEGIN Regular */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/eb52c4570a34a02898c8.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Figtree";
  src: local(-apple-system), local(system-ui), local(Roboto), local(Helvetica), local(sans-serif);
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
  unicode-range: U+0400-04FF;
}
/* END Regular */
/* BEGIN Italic */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/1ef8e95e487a6e7a9637.ttf) format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: fallback;
}
/* END Italic */
/* BEGIN Medium */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/9f5bdeaa4791672a1407.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Figtree";
  src: local(-apple-system), local(system-ui), local(Roboto), local(Helvetica), local(sans-serif);
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
  unicode-range: U+0400-04FF;
}
/* END Medium */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/e7c36b47e6cec9d98046.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Figtree";
  src: local(-apple-system), local(system-ui), local(Roboto), local(Helvetica), local(sans-serif);
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
  unicode-range: U+0400-04FF;
}
/* END Semibold */
/* BEGIN Semibold Italic */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/708c8e5e5bd268990af1.ttf) format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: fallback;
}
/* END Semibold Italic */
/* BEGIN Bold */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/20d002e242f16b5005ac.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Figtree";
  src: local(-apple-system), local(system-ui), local(Roboto), local(Helvetica), local(sans-serif);
  font-weight: bold;
  font-style: normal;
  font-display: fallback;
  unicode-range: U+0400-04FF;
}
/* END Bold */
/* BEGIN Bold Italic */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/99fd495aabad0794351b.ttf) format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: fallback;
}
/* END Bold Italic */
/* BEGIN Extrabold */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/4f69ac3b22741c171be3.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Figtree";
  src: local(-apple-system), local(system-ui), local(Roboto), local(Helvetica), local(sans-serif);
  font-weight: 800;
  font-style: normal;
  font-display: fallback;
  unicode-range: U+0400-04FF;
}
/* END Extrabold */
/* BEGIN Extrabold Italic */
@font-face {
  font-family: "Figtree";
  src: url(../../content/assets/b902af14dae9ff73eee1.ttf) format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: fallback;
}
/* END Extrabold Italic */
/* fira-sans-regular - latin */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url(../../content/assets/5d1414b677a219a114f9.eot);
  /* IE9 Compat Modes */
  src: local(''), url(../../content/assets/5d1414b677a219a114f9.eot?#iefix) format('embedded-opentype'), /* IE6-IE8 */ url(../../content/assets/684226288210a40c6acc.woff2) format('woff2'), /* Super Modern Browsers */ url(../../content/assets/638c6c27dba69db97f1d.woff) format('woff'), /* Modern Browsers */ url(../../content/assets/8bee959bc90c6c2d1f9e.ttf) format('truetype'), /* Safari, Android, iOS */ url(../../content/assets/b419c8f4c12a1fe9c2f2.svg#FiraSans) format('svg');
  /* Legacy iOS */
}
/* fira-sans-600 - latin */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 600;
  src: url(../../content/assets/b4af5f9a2ee436e0179e.eot);
  /* IE9 Compat Modes */
  src: local(''), url(../../content/assets/b4af5f9a2ee436e0179e.eot?#iefix) format('embedded-opentype'), /* IE6-IE8 */ url(../../content/assets/c10b11db763fa3ff0aff.woff2) format('woff2'), /* Super Modern Browsers */ url(../../content/assets/61d0cc1a0f546f0933be.woff) format('woff'), /* Modern Browsers */ url(../../content/assets/b4aa3b0a2a914cacbd39.ttf) format('truetype'), /* Safari, Android, iOS */ url(../../content/assets/9ac3cb4abbc0711e96d1.svg#FiraSans) format('svg');
  /* Legacy iOS */
}
.not-supported-browser {
  background: var(--sg-legacy-mainBg, #f7f9fc);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10000000;
  text-align: center;
}
.not-supported-browser .content-wrapper,
.not-supported-browser .main-content-wrapper {
  margin: 0 auto;
}
.not-supported-browser .main-content-wrapper {
  width: 460px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -270px;
  margin-left: -230px;
}
.not-supported-browser .line0 {
  margin-left: -20px;
}
.not-supported-browser .line0 .logo {
  vertical-align: top;
  margin: auto;
  background: url(../../content/assets/42a53009d9bba28e077f.svg) no-repeat center;
  background-size: contain;
  width: 128px;
  height: 37px;
}
.not-supported-browser .line1 {
  margin-top: 64px;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.15px;
  text-align: center;
  color: var(--sg-text-color, #000000);
}
.not-supported-browser .line2 {
  margin-top: 60px;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: var(--sg-color-legacy-4b5458, #4b5458);
}
.not-supported-browser .line3 {
  margin-top: 25px;
  width: 100%;
  text-align: center;
}
.not-supported-browser .line4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 33px;
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 11px;
}
.not-supported-browser .browser {
  display: inline-block;
  margin: 0 16.5px 0 16.5px;
}
.not-supported-browser .browser .icon {
  display: block;
  width: 50px;
  height: 50px;
}
.not-supported-browser .browser .icon.chrome {
  background: url(../../content/assets/67e8158779e1edc7b8e9.svg) no-repeat;
}
.not-supported-browser .browser .icon.edge {
  background: url(../../content/assets/711a72d059867f30a265.svg) no-repeat;
}
.not-supported-browser .browser .icon.firefox {
  background: url(../../content/assets/71937d75ccafc3d2a7a0.svg) no-repeat;
}
.not-supported-browser .browser .icon.safari {
  background: url(../../content/assets/507788bcd7e41b7b5eb4.svg) no-repeat;
}
.not-supported-browser .browser .title {
  display: block;
  padding-top: 8px;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.36px;
  text-align: center;
  color: var(--sg-color-legacy-656565, #656565);
}
.alert-box {
  position: relative;
  display: block;
  padding: 0.6875em 1.3125em 0.75em 0.6875em;
  border-color: var(--sg-alert-box-border-color, #018093);
  background-color: var(--sg-color-legacy-2ba6cb, #2ba6cb);
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: bold;
  font-size: 0.875em;
  z-index: 10000;
}
.alert-box.alert {
  border: 1px solid var(--sg-color-legacy-970b0e, #970b0e);
  background-color: var(--sg-color-legacy-d61919, #d61919);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.alert-box.success {
  border-color: var(--sg-alert-box-success-border-color, #457a1a);
  background-color: var(--sg-color-legacy-5da423, #5da423);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.alert-box.ng-enter {
  opacity: 0;
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
}
.alert-box.ng-enter.ng-enter-active {
  opacity: 1;
}
.alert-box.ng-leave {
  opacity: 1;
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
}
.alert-box.ng-leave.ng-leave-active {
  opacity: 0;
}
/*=====menu======*/
.sg_menu-top {
  height: 42px;
  border-bottom: 3px solid var(--sg-color-legacy-e66f2e, #e66f2e);
  background-color: var(--sg-color-legacy-ff7b33, #ff7b33);
  -webkit-box-shadow: 0 4px 0 var(--sg-color-legacy-d4d4d4, #d4d4d4);
  box-shadow: 0 4px 0 var(--sg-color-legacy-d4d4d4, #d4d4d4);
  text-align: center;
}
.sg_mn__list {
  display: block;
  margin: 0 50px 0 50px;
  padding: 0;
  list-style: none;
  text-align: left;
  white-space: nowrap;
  position: relative;
}
.sg_mnlst__li:first-child {
  margin-left: -10px;
}
.sg_mnlst__li {
  display: inline-block;
  margin: 0 10px;
  height: 39px;
  line-height: 42px;
  cursor: pointer;
}
.sg_mnlst__li.logoutlink {
  right: 0;
  top: 0;
  position: absolute;
}
.sg_mnlst__li a {
  display: inline-block;
  padding: 0 10px;
  height: 39px;
  font-weight: bold;
  line-height: 42px;
}
.sg_mnlst__li a,
.sg_mnlst__li a:visited {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  text-decoration: none;
}
.sg_mnlst__li.selected {
  border-bottom: 3px solid var(--sg-color-legacy-b23f3f, #b23f3f);
  -webkit-box-shadow: 0 3px 0 var(--sg-color-legacy-b23f3f, #b23f3f);
  box-shadow: 0 3px 0 var(--sg-color-legacy-b23f3f, #b23f3f);
  color: var(--sg-text-color, #000000);
  cursor: default;
}
.sg_mnlst__li.selected a,
.sg_mnlst__li.selected a:visited {
  color: var(--sg-text-color, #000000);
  cursor: default;
}
/*=====end menu======*/
.sg_gray-date {
  color: var(--sg-color-legacy-b9b9b9, #b9b9b9);
  text-transform: uppercase;
  font-size: 11px;
}
.sg_txtgray-color {
  color: var(--sg-color-legacy-b9b9b9, #b9b9b9);
}
.sg_txtblue-color {
  color: var(--sg-color-legacy-0366ab, #0366ab);
}
.sg_txtsmall-light {
  color: var(--sg-color-legacy-b9b9b9, #b9b9b9);
  font-size: 11px;
}
.top-arr {
  background-position: -94px -123px;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.warning .top-arr {
  background-position: -94px -147px;
}
.sg_global-hl {
  text-align: left;
  min-height: 100px;
  z-index: 10;
}
.sg_filterbutton {
  float: right;
}
.sg_filter__buttonsel.ui-multiselect-header {
  margin-bottom: 2px;
}
.head_button__selected .sg_head__buttontitle {
  color: var(--sg-color-legacy-ff7b33, #ff7b33);
}
.sg_tasktbl-hl {
  margin-left: -40px;
}
.sg_overscrollablearea {
  position: relative;
  overflow: hidden;
  margin-left: -60px;
  padding-left: 60px;
}
/*context-menu*/
.sg_contextmenu {
  position: absolute;
  z-index: 1000;
  display: none;
  padding: 5px;
}
.sg_contextmenu.edit_item {
  position: absolute;
  background-color: rgba(122, 202, 87, 0.85);
  box-shadow: 0 10px 43px rgba(0, 0, 0, 0.3);
  width: 190px;
}
.sg_contextmenu.edit_columns {
  position: absolute;
  display: block;
  background-color: var(--sg-bg-color, #ffffff);
}
.sg_contextmenu.edit_columns {
  white-space: nowrap;
}
.sg_managecolumnpopupli {
  padding-right: 25px;
}
.sg_cntmn__sublist {
  margin-left: 22px;
}
.sg_edit_status {
  position: absolute;
}
.sg_role__cell {
  white-space: nowrap;
}
.sg_roles__grpsl {
  float: left;
  margin-left: -50px;
  height: 50px;
}
.sg_roles__header {
  white-space: nowrap;
  font-size: 0;
}
.sg_roles__header.sg_edtblhd__cell {
  padding: 0;
  border-right: none;
}
.sg_edtblhd__cells {
  padding: 0 10px;
}
.sg_roles__header .sg_edtblhd__th {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  overflow: hidden;
}
.sg_roles__grpsl.header_hl {
  height: 32px;
}
.sg_roles__leftclm {
  float: left;
  margin-left: -12px;
  width: 140px;
}
.sg_rolesnames__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.horizontalscroll {
  position: relative;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  height: 14px;
  border-radius: 2px;
  background-color: var(--sg-color-legacy-eeeeee, #eeeeee);
}
.scroll-content {
  float: left;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background-image: none;
}
.ui-icon-triangle-1-s.ui-icon {
  background: none;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: var(--sg-text-color, #000000) transparent transparent transparent;
  display: inline-block;
  height: 0;
  width: 0;
  margin-right: 0;
  margin-top: 6px;
  vertical-align: top;
}
.ui-icon.ui-icon-circle-triangle-w,
.ui-icon.ui-icon-circle-triangle-e {
  height: 16px;
  width: 16px;
}
.ui-icon.ui-icon-circle-triangle-w {
  background-position: -11px -153px;
}
.ui-icon.ui-icon-circle-triangle-e {
  background-position: -41px -153px;
}
.ui-autocomplete .highlight {
  font-weight: bold;
}
.ui-resizable-e {
  width: 15px;
}
.sg_role-textname {
  display: block;
  overflow: hidden;
  margin-right: 5px;
}
.context-additemsg {
  margin-left: -20px;
}
.sg_edtbl__rmvbtn {
  cursor: pointer;
}
.sg_edtbl__rmvbtn .recycle-icon {
  vertical-align: middle;
  margin-right: 5px;
}
.sg_actionicons__right {
  cursor: pointer;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
}
.sg_edtbl__line.actionsline {
  text-align: right;
}
.sg_navigation__link {
  cursor: pointer;
}
.sg_navigation__link:hover {
  text-decoration: underline;
  color: var(--sg-color-legacy-0366ab, #0366ab);
}
.sg_edtblhd__cellrm.sg_edtblhd__cellactions {
  border-right: none;
  border-left: none;
  position: relative;
  z-index: 1;
}
.sg_gantt-hl {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 5px;
  top: 60px;
}
.sg_contextmenu__submit {
  border: 1px solid;
  border-radius: 8px;
  line-height: 30px;
  padding: 0 10px;
  cursor: pointer;
  width: 30px;
  margin: 10px auto 0 auto;
}
.sg_gr__expandArrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--sg-color-legacy-1d1d1d, #1d1d1d);
  overflow: hidden;
  font-size: 0;
  float: right;
  margin-top: 20px;
}
.sg_gr__expandArrow.expanded {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent var(--sg-color-legacy-0874e7, #0874e7) transparent;
}
.sg_modeview__save {
  line-height: 35px;
  border-radius: 0 3px 3px 0;
}
.layt_contextActionLine {
  position: absolute;
  right: -33px;
  z-index: 30;
}
.layt_saveBtn__tp {
  display: inline-block;
  width: 20px;
  background-color: var(--sg-color-legacy-81c05f, #81c05f);
  height: 100%;
  cursor: pointer;
  margin-right: -6px;
  vertical-align: top;
  text-align: left;
}
.sgtxtcstm_fld {
  margin-right: 30px;
}
.sgtxtcstm_fld .layt_contextActionLine {
  right: -43px;
}
.invalid-row-label {
  font-size: 14px;
  color: var(--sg-legacy-grayColor, #656565);
}
.invalid-row-label:before {
  content: '';
  background-color: var(--sg-legacy-SGBeige, #fff5de);
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  margin-right: 4px;
}

/*!
 * Quill Editor v2.0.2-dev.5
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/stylus-loader/dist/cjs.js!./assets/snow.styl ***!
  \*************************************************************************************************************/
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set: none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
@supports (display: contents) {
  .ql-editor li[data-list=bullet] > .ql-ui,
  .ql-editor li[data-list=ordered] > .ql-ui {
    display: contents;
  }
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: '\2022';
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: '\2611';
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: '\2610';
}
@supports (counter-set: none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) '. ';
}
@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: 0.3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor li > .ql-ui {
  position: static;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}


/****************SERVER STYLES***************************/
/*********

 "A" - CAPITAL LETTER MEANS SERVER STYLE

.GreenColor --> green color
.SuccessIcon  --> success operation

.OrangeColor  --> conflict color
.ConflictIcon   --> conflict operation

.BlueColor  --> inprogress color
.ProgressIcon --> inprogress operation

.RedColor --> fail color
.FailIcon --> fail operation

.GrayColor --> gray color

*********/
/*
**Colors
*/
.GreenColor {
  color: var(--sg-primary-button-color, #008a02);
}
.BlueColor {
  color: var(--sg-legacy-blueDef, #0874e7);
}
.OrangeColor {
  color: #eba714;
}
.RedColor {
  color: var(--sg-legacy-failColor, #ff3c3c);
}
.GrayColor {
  color: var(--sg-legacy-grayColor, #656565);
}
/*
**Icons
*/
.SuccessIcon:before,
.ProgressIcon:before,
.ConflictIcon:before,
.FailIcon:before,
.ProjectIcon:before,
.TaskIcon:before,
.ResourceIcon:before,
.CustomFieldIcon:before {
  display: inline-block;
  text-align: left;
  width: 15px;
  font-size: 12px;
  vertical-align: middle;
  margin-top: -3px;
}
.SuccessIcon:before {
  content: '\f164';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.SuccessIcon:before {
  content: '\f164';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ProgressIcon:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ProgressIcon:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ProgressIcon:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ProgressIcon:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ConflictIcon:before {
  content: '\e626';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ConflictIcon:before {
  content: '\e626';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.FailIcon:before {
  content: '\f165';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.FailIcon:before {
  content: '\f165';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ProjectIcon:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ProjectIcon:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ProjectIcon:before {
  width: 14px;
  margin-top: -2px;
}
.ResourceIcon:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ResourceIcon:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ResourceIcon:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ResourceIcon:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ResourceIcon:before {
  font-size: 12px;
  width: 12px;
  margin-left: -2px;
}
.CustomFieldIcon:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.CustomFieldIcon:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.CustomFieldIcon:before {
  font-size: 12px;
  width: 15px;
}
/****************SERVER STYLES END************************/
/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
/*
**** IN THIS FILE BASE PARAMETRES STORED *****
*/
/*
**** COMMON ELEMENTS HEIGHT *****
*/
/*
**** COMMON RADIUS *****
*/
/*
**** MARGIN LEFT/RIGHT *****
*/
/**
** Margin for large tables so they not stick to the grid
*/
/*
**** TITLE INPUT WIDTH *****
*/
/*
**** SYNC SMALL ICON WIDTH *****
*/
/*
****INPUT ANIM
*/
/*
** REPORTS
*/
/*
**** DROPDOWN *****
*/
/*
**** CONTENT WRAPPERS DIMENSIONS *****
*/
/*
**** HINT DIMENSIONS *****
*/
/*
**** ROADMAP ****
*/
/*
**** Multipage basic styles ****
*/
/**
* Min height
*/
/**
**** TEMPUS AI *****
*/
/*
**** LESS MIXINS FOR AI-AWARE LAYOUTS *****
*/
/**
 * .sidebar-calc-width() - Mixin for calculating widths that account for AI sidebar
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-width();                    // width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(100vw, 50px);         // width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-width(90vw);                // width: calc(90vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(45vw, 100px);         // width: calc(45vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * IMPORTANT NOTES:
 * 1. SCROLLBAR ISSUE: 100vw includes scrollbar width, which can cause horizontal overflow.
 *    Consider using width: 100% on child elements when possible, especially inside flex/grid containers.
 *
 * 2. FLEX/GRID CHILDREN: If using this on flex or grid children, ensure they have min-width: 0
 *    to prevent overflow issues.
 *
 * 3. HORIZONTAL PADDING: Avoid using this mixin on elements with horizontal padding or borders.
 *    Instead, use it on a wrapper element and add padding to an inner element.
 *
 * 4. WHEN NOT TO USE:
 *    - Elements inside a sized container (use width: 100% instead)
 *    - Modal/dialog content (usually constrained by max-width)
 *    - Elements that should scroll horizontally
 *
 * 5. WHEN TO USE:
 *    - Full-width sections that need to span the viewport minus the sidebar
 *    - Absolute/fixed positioned overlays
 *    - Elements that explicitly need to relate to viewport width
 *    - Modals/popups that need percentage-based viewport widths (90vw, 45vw, etc.)
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/**
 * .sidebar-calc-max-width() - Mixin for max-width that accounts for AI sidebar
 *
 * Safer alternative to .sidebar-calc-width() for constraining element size without causing overflow.
 * Use this when you want to limit width but allow the element to be smaller if needed.
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-max-width();                  // max-width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(100vw, 50px);       // max-width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-max-width(45vw);              // max-width: calc(45vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(40vw, 100px);       // max-width: calc(40vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
.attr-icons {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attr-icons.project-io {
  color: var(--sg-secondary-color, #106df9);
}
.attr-icons.resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.assignment-doc-io {
  color: #d36b3f;
}
.attr-icons.budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
.attr-icons.spm-io {
  color: #9437ab;
  zoom: 0.8;
}
/*------------------------------------*\
    _ICONS.LESS
\*------------------------------------*/
/**
 * icons.less icons mixins and sets
 **/
/****************LAYOUT POPUP****************************/
.headset-io:before {
  content: '\f590';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.project-grid-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.projects-kanban-io:before {
  content: '\f51c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.assignment-doc-io:before {
  content: '\f15c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-o-notch:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.milestone-io:before {
  content: '\f024';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sheets-io:before {
  content: '\f0ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-io:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-round-io:before {
  content: '\f056';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.double-line:before {
  content: '\f7a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.focus-io:before {
  content: '\f05b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sorting-none-io:before {
  content: '\f05e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.unlink-io:before {
  content: '\f127';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shift-io:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-tack:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.readonly-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.date-io:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.date-value-io:before {
  content: '\f783';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.up-io:before {
  content: '\e919';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-up-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thumb-down-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.stop-circle-io:before {
  content: '\e15c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.hand-stop-io:before {
  content: '\e928';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.auditlog-io:before {
  content: '\e02f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.skillmatrix-io:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.categories-io:before {
  content: '\f5fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmap-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmaps-io:before {
  content: '\f277';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.partial-io:before {
  content: '\e891';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-project-io:before {
  content: '\e925';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-resource-io:before {
  content: '\e922';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.file-excel-io:before {
  content: '\f1c3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-csv-io:before {
  content: '\f6dd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-pdf-io:before {
  content: '\f1c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.full-arrow-up-io:before {
  content: '\f062';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pause-io:before {
  content: '\f04c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-desc:before {
  content: '\f161';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.return-io:before {
  content: '\e116';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.customfield-layout-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ***********
*/
.resourcemgmt-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-team-io:before {
  content: '\f500';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moon-io:before {
  content: '\f186';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sun-io:before {
  content: '\f185';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheetmgmt-io:before {
  content: '\44';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mytimesheet-io:before {
  content: '\43';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpa-io:before {
  content: '\42';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpafg-io:before {
  content: '\41';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.adminsettings-io:before {
  content: '\e94f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.helplink-io:before {
  content: '\f059';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bell-io:before {
  content: '\f0f3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-request-io:before {
  content: '\e94b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resource-request-io:before {
  content: '\e94c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.budget-nav-io:before {
  content: '\e94d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.side-bar-io:before {
  content: '\e950';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ENDED***********
*/
/*
* SHAPE ICONS
 */
.square-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.manager-io:before {
  content: '\f508';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-io:before {
  content: '\e3a6';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-up-io:before {
  content: '\ea32';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-down-io:before {
  content: '\ea36';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-left-io:before {
  content: '\ea38';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-right-io:before {
  content: '\ea34';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  content: '\e953';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  font-size: 1.2em;
}
.pin-io-active:before {
  content: '\e946';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io-active:before {
  font-size: 1.2em;
}
.thumbtack-io:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approve-shield-io:before {
  content: '\e8e8';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thunder-io:before {
  content: '\e3e7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.star-circle-io:before {
  content: '\e8d0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.angle-down-io:before {
  content: '\f107';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-down-io:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
/*
* SHAPE ICONS ENDED
 */
.doc-export-io:before {
  content: '\f56e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-up-io:before {
  content: '\f151';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-down-io:before {
  content: '\f150';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-left-io:before {
  content: '\f036';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-center-io:before {
  content: '\f037';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-right-io:before {
  content: '\f038';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.decimal-left-io:before {
  content: '\e942';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.decimal-right-io:before {
  content: '\e943';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-open-io:before {
  content: '\e944';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-close-io:before {
  content: '\e945';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resources-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pencil-alt-io:before {
  content: '\f303';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.stream-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.colored_icon.project-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.resource-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.colored_icon.customfield-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.icon-report-color:before {
  color: #d36b3f;
}
.colored_icon.assignment-doc-io:before {
  color: #d36b3f;
}
.colored_icon.milestone-io:before {
  color: var(--sg-warning-color, #ffc107);
}
.colored_icon.budget-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.gopuram-io:before {
  content: '\f664';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.money-bill-alt-io:before {
  content: '\f3d1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-square-io:before {
  content: '\f14a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thermometer-half-io:before {
  content: '\f2c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.list-alt-io:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.angle-double-right-io:before {
  content: '\f101';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-cog-io:before {
  content: '\f4fe';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.cog-io:before {
  content: '\f013';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.users-cog-io:before {
  content: '\f509';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.exclamation-triangle-io:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-circle-io:before {
  content: '\f058';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.url-io:before {
  content: '\f0c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.matrix-io:before {
  content: '\f84c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-solid-io:before {
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.interval-io:before {
  content: '\f337';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.advanced-rate-io:before {
  content: '\f51e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.default-icon-color {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.goals-io:before {
  content: '\f091';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tachometer-io:before {
  content: '\f3fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.weight-io:before {
  content: '\f496';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.hands-helping-io:before {
  content: '\f4c4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.diagram-io:before {
  content: '\f542';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.captions-io:before {
  content: '\f20a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelskills:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelskills:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelresources:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelresources:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelresources:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelprojects:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelprojects:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-msprojectserversql {
  vertical-align: middle;
  display: inline-block;
}
.sync-msprojectserversql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-exceladmintime:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladmintime:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladmintime:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-exceladvancedrates:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladvancedrates:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladvancedrates:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelsheet:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelsheet:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelsheet:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelassignments:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelassignments:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelassignments:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelattributes:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelattributes:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelattributes:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelfinancials:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelfinancials:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelfinancials:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-ppmpro {
  margin-top: 0;
  vertical-align: top;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: contain;
  background-color: var(--sg-legacy-PpmPro, #6369d0);
}
@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(219, 8, 0, 0.5) inset;
  }
  100% {
    box-shadow: 0 0 10px rgba(219, 8, 0, 0.5) inset;
  }
}
@keyframes slideOutLeft {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: -100%;
  }
}
@keyframes inputHighlighter {
  from {
    background: var(--sg-secondary-color, #106df9);
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes slideOutRight {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tileRubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
progress,
progress[role] {
  /* polyfill */
  /* Turns off styling - not usually needed, but good to know. */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* gets rid of default border in Firefox and Opera. */
  border: none;
  /* Needs to be in here for Safari polyfill so background images work as expected. */
  background-size: auto;
  display: inline-block;
  position: relative;
  vertical-align: -0.2em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/** Polyfill **/
progress[role] {
  display: inline-block;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
progress[aria-valuenow]:before {
  content: "";
  display: block;
  height: 100%;
}
/* Overlay */
progress[role]:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* Overlay */
progress[role] + span.progressvalue {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  top: -7px;
  left: 0;
}
/** progress bar color */
.cf-progress {
  width: 100%;
  height: 7px;
  vertical-align: middle;
  /* Firefox/IE */
  background-color: var(--sg-color-legacy-dbe2fa, #dbe2fa);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /** progress value color */
  /* Firefox */
  /* Chrome */
  /* IE */
}
.cf-progress::-webkit-progress-bar {
  background-color: var(--sg-color-legacy-dbe2fa, #dbe2fa);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.cf-progress[role] {
  width: 100%;
  height: 7px;
}
.cf-progress::-moz-progress-bar {
  background-color: var(--sg-secondary-color, #106df9);
  /* Firefox */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.cf-progress::-webkit-progress-value {
  background-color: var(--sg-secondary-color, #106df9);
  /* Firefox */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.cf-progress[aria-valuenow]:before {
  background-color: var(--sg-secondary-color, #106df9);
  /* Firefox */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.loader-content {
  position: absolute;
  top: 100px;
  right: 0;
  left: 0;
  z-index: 10;
  overflow: auto;
  margin: auto;
  width: 32px;
  height: 32px;
  background-color: var(--sg-text-color, #000000);
  mask-image: url(../../content/assets/2373941927e4b20e28b9.svg);
  mask-size: 100%;
}
.k-loading-image {
  background: url(../../content/assets/4b01ca501fadf65135bf.gif) no-repeat top center;
}
.k-loading-image::before {
  content: none !important;
}
.k-loading-image::after {
  content: none !important;
}
.loader {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100100;
  background: var(--sg-legacy-mainBg, #f7f9fc);
}
.top-level-panel {
  height: 26px;
  z-index: 100098;
  padding: 0 50px;
  box-shadow: 0 -3px 17px 0 rgba(0, 0, 0, 0.05), 0 6px 17px 0 rgba(0, 0, 0, 0.05), 0 26px 17px 0 rgba(0, 0, 0, 0.05);
}
.top-level-panel .panel-btn {
  height: 26px;
  line-height: 26px;
  padding: 0 40px 0 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  border-radius: 2px;
}
.top-level-panel .panel-btn:before {
  position: absolute;
  right: 6px;
  font-size: 16px;
}
.top-level-panel .panel-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.partiallyapprove-io {
  color: var(--sg-legacy-rr-partiallyapprove-fr, #9437ab);
}
.partiallyapprove-io:before {
  content: '\f0a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pending-io {
  color: var(--sg-legacy-rr-pending-fr, #5148c9);
}
.pending-io:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pending-io:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pending-io:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pending-io:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approved-io {
  color: var(--sg-legacy-rr-approved-fr, #267eb2);
}
.approved-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.disapproved-io {
  color: var(--sg-legacy-rr-rejected-fr, #a75201);
}
.disapproved-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.delegated-io {
  color: var(--sg-legacy-rr-delegate-fr, #569e36);
}
.delegated-io:before {
  content: '\f01e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.kind-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 8px;
  text-align: center;
  line-height: 12px;
  display: inline-block;
  vertical-align: top;
}
.kind-icon.resource-kind {
  background-color: var(--sg-color-legacy-bbecc1, #bbecc1);
  color: var(--sg-color-legacy-207e5e, #207e5e);
}
.kind-icon.resource-kind:after {
  content: 'D';
}
.kind-icon.project-kind {
  background-color: #dcdaff;
  color: #635ec2;
}
.kind-icon.project-kind:after {
  content: 'A';
}
/*
********************ICONS*******************************
*/
.piggy-bank-io:before {
  content: '\f4d3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.wallet-io:before {
  content: '\f555';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.comments-io:before {
  content: "\f27a";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.comments-many-io:before {
  content: "\f086";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-security-io:before {
  content: '\f505';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.add-assignment-io:before {
  content: '\f234';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.insight-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.insight-setting-io:before {
  content: '\f1de';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.insight-status-io:before {
  content: '\f242';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.info-circle-io:before {
  content: '\f05a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.snapshots-add-io:before {
  content: '\e439';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bg-fill-color-io:before {
  content: '\f575';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.font-color-io:before {
  content: '\f031';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.text-bold-io:before {
  content: '\f032';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.dependency-io:before {
  content: '\e940';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.project-grid-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.dependency-break-io:before {
  content: '\e941';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.text-strikethrough-io:before {
  content: '\f033';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.text-stroked-io:before {
  content: '\f0cc';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.text-underline-io:before {
  content: '\f0cd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.text-italic-io:before {
  content: '\f033';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheetentry-io:before {
  content: '\e93c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.consolidated-io:before {
  content: '\e93e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.assignment-request-io:before {
  content: '\e936';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.period-list-io:before {
  content: '\e93d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.allocations-io:before {
  content: '\f2c2';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.zoom-out-io:before {
  content: '\f010';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.zoom-in-io:before {
  content: '\f00e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.zoom-to-fit-io:before {
  content: '\f0b2';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.extra-io:before {
  content: '\f141';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.blanklink-io:before {
  content: '\f360';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-dot-io:before {
  content: '\f192';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.expanded-section-io:before {
  content: '\f07c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.access-man-io:before {
  content: '\e939';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-list-io:before {
  content: '\e85d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-folder-io:before {
  content: '\e932';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mysheet-io:before {
  content: '\e955';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mysheet-io:before {
  font-size: 1.4em;
}
.mysheet-io.active:before {
  content: '\e954';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mysheet-io.active:before {
  font-size: 1.4em;
}
.impersonation-io:before {
  content: '\e936';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.resource-replace-io:before {
  content: '\e935';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.tiles-io:before {
  content: '\e900';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bars-io:before {
  content: '\f0c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.no-access-io:before {
  content: '\e938';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.workflow-io:before {
  content: '\e0d7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.files-io:before {
  content: '\f56e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.form-io:before {
  content: '\f0ae';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.snapshots-io:before {
  content: '\e412';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.settings-io:before {
  content: '\f013';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.view-io:before {
  content: '\f06e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.templated-sheet-io:before {
  content: '\f02b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.google-io:before {
  content: '\f1a0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.external-io:before {
  content: '\f08e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ms-io:before {
  content: '\f17a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.saml-io:before {
  content: '\e930';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.approve-io:before {
  content: '\f00c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.keyboard-io:before {
  content: '\f11c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.keyboard-io:before {
  content: '\f11c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-move-right-io:before {
  content: '\f30b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.exit-io:before {
  content: '\f090';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.left-arr-io:before {
  content: '\f104';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.readonly-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.right-arr-io:before {
  content: '\f105';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.no-data-io:before {
  content: '\e888';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.chevron-up-io:before {
  content: '\f077';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chevron-down-io:before {
  content: '\f078';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chevron-left-io:before {
  content: '\f053';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chevron-right-io:before {
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.milestone-io:before {
  content: '\f024';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.tmsh-appr-io:before {
  content: '\e862';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.tmsh-archive-io:before {
  content: '\e54c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.tmsh-settings-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.tmsh-period-io:before {
  content: '\e046';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-pointer-left-io:before {
  content: '\e207';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-pointer-right-io:before {
  content: '\e208';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.copy-from-prev:before {
  content: '\e93f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.selected_icon {
  font-size: 14px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.selected_icon:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.selected_icon:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.close-io:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-io:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.tmsheet-io:before {
  content: '\e927';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.table-io:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.copy-io {
  display: inline-block;
  font-size: 12px;
}
.copy-io:before {
  content: '\f24d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.copy-io:hover {
  color: var(--sg-secondary-color, #106df9);
}
.copy-io:before {
  content: '\f24d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.copy-io.disabled,
.copy-io.disabled:hover {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
  cursor: default;
}
.draginfo-io:before {
  content: '\e60e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.return-io:before {
  content: '\e116';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.groups-io:before {
  content: '\f036';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-tack-io:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.search-io:before,
.k-icon.k-i-zoom:before {
  content: '\f002';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.capacity-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.star-io:before {
  content: '\f5c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.starwhole-io:before {
  content: '\f005';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.close-round-io:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.close-round-io:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.keyboard-io:before {
  content: '\f11c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.keyboard-io:before {
  content: '\f11c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resources-io:before {
  content: '\e937';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.team-resources-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.team-resources-io--after:after {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approve-circle-io:before {
  content: '\f058';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resourceRole-io:before {
  content: '\e022';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.project-access-io:before {
  content: '\e16a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.infostar-io:before {
  content: '\f069';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.close-circle-io:before {
  content: '\e5c9';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bulk-project-io:before {
  content: '\e89b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bulk-project-io:before {
  content: '\e89b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bulkflat-project-io:before {
  content: '\e617';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.section-io:before {
  content: '\f03c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-upload-io:before {
  content: '\f574';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.drag-io:before {
  content: '\f142\f142';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.drag-vertical-io {
  font-size: 20px;
  display: block;
  line-height: 6px;
}
.drag-vertical-io:before {
  content: '...\00000a...';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.drag-vertical-io::before {
  white-space: pre-line;
}
.key-io:before {
  content: '\f084';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tasks-io:before {
  content: '\f0ca';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tasks-io:before {
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.general-settings-io:before {
  content: '\f031';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.email-io:before {
  content: '\f0e0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timemanage-io:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.interval-io:before {
  content: '\f337';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-o-notch-io:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.delete-io {
  font-size: 12px;
}
.delete-io:before {
  content: '\f1f8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.gantt-io:before {
  content: '\e605';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.info-io:before {
  content: '\f129';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.globe-io:before {
  content: '\f0ac';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.template-io:before {
  content: "\f5ae";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.create-template-io:before {
  content: "\f14b";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.recycle-icon,
.unassign-icon {
  display: inline-block;
  font-size: 12px;
}
.recycle-icon.disabled,
.unassign-icon.disabled,
.recycle-icon.disabled:hover,
.unassign-icon.disabled:hover {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
  cursor: default;
}
.recycle-icon.busy:before,
.unassign-icon.busy:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid var(--sg-legacy-grayColor, #656565);
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.recycle-icon.busy:before,
.unassign-icon.busy:before {
  margin: 0 !important;
}
.recycle-icon {
  font-size: 12px;
}
.recycle-icon:before {
  content: '\f1f8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.recycle-icon:before {
  content: '\f1f8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.histback-io:before {
  content: '\f1da';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.unassign-icon:before {
  content: '\f235';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.workflow-project-io {
  display: inline-block;
  font-size: 12px;
  color: var(--sg-legacy-grayColor, #656565);
}
.workflow-project-io:hover {
  color: var(--sg-secondary-color, #106df9);
}
.workflow-project-io:before {
  content: '\f55b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.workflow-project-io.disabled,
.workflow-project-io.disabled:hover {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
  cursor: default;
}
.clone-pure-io {
  display: inline-block;
  font-size: 12px;
}
.clone-pure-io:before {
  content: '\f24d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.clone-pure-io:hover {
  color: var(--sg-secondary-color, #106df9);
}
.clone-pure-io:before {
  content: '\f24d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.clone-pure-io.disabled,
.clone-pure-io.disabled:hover {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
  cursor: default;
}
.clone-io {
  display: inline-block;
  font-size: 12px;
}
.clone-io:hover {
  color: var(--sg-secondary-color, #106df9);
}
.clone-io:before {
  content: '\f24d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.clone-io.disabled,
.clone-io.disabled:hover {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
  cursor: default;
}
.folder-open-io:before {
  content: '\f07c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.replace-resource-global-io {
  display: inline-block;
  font-size: 12px;
  color: var(--sg-legacy-grayColor, #656565);
}
.replace-resource-global-io:hover {
  color: var(--sg-secondary-color, #106df9);
}
.replace-resource-global-io:before {
  content: '\e949';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.replace-resource-global-io.disabled,
.replace-resource-global-io.disabled:hover {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
  cursor: default;
}
.shift-io {
  display: inline-block;
  font-size: 12px;
}
.shift-io:hover {
  color: var(--sg-secondary-color, #106df9);
}
.shift-io:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shift-io.disabled,
.shift-io.disabled:hover {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
  cursor: default;
}
.sorting-up-io:before {
  content: '\f30c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.refresh-io:before {
  content: '\f021';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.budget-io:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.finger-control-io:before {
  content: '\e91d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shared-io:before {
  content: '\f074';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.warning-io:before {
  content: '\e626';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.warning3-io:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.plus-io:before {
  content: '\f067';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-right:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.comment-io:before {
  content: '\f075';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.comment-dots-io:before {
  content: '\f4ad';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.positivenego-io:before {
  content: '\e918';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.minus-io:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pivotgrid-io:before {
  content: '\e803';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pivotchart-io:before {
  content: '\e917';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.resourceallocationgrid-io:before {
  content: '\e8f1';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.resourceallocationchart-io:before {
  content: '\e99d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.rar2-io:before {
  content: '\e99d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.portfolioplanner-io:before {
  content: '\f51c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.dashboard-io:before {
  content: '\ea6e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.clear-icon {
  display: inline-block;
  width: 12px;
  font-size: 12px;
  color: var(--sg-legacy-grayColor, #656565);
}
.clear-icon:hover {
  color: var(--sg-secondary-color, #106df9);
}
.clear-icon:before {
  content: '\e91b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.edit-icon {
  display: inline-block;
  font-size: 12px;
  text-align: center;
}
.edit-icon:before {
  content: '\f304';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.edit-icon:before {
  content: '\f304';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.edit-io:before {
  content: '\f304';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.structure-io:before {
  content: '\f0e8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.structure-project-io:before {
  content: '\e925';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-resource-io:before {
  content: '\e922';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg-collapseicon {
  width: 24px;
  height: 24px;
  color: var(--sg-legacy-Smartsheet, #267eb2);
  display: inline-block;
  margin: 0 18px 0 -46px;
  vertical-align: top;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  font-size: 18px;
  text-align: right;
}
.sg-collapseicon:before {
  content: '\f0d7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg-collapseicon:before {
  content: '\f0d7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg-collapseicon.expand:before {
  content: '\f0da';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg-collapseicon.expand:before {
  content: '\f0da';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg-collapseicon.expand:before {
  top: 6px;
  bottom: 6px;
  width: 3px;
  left: 50%;
  margin-left: -1.5px;
}
.layt_resourceIcon:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.layt_resourceIcon:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_resourceIcon:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.layt_resourceIcon:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_resourceIcon:before {
  margin-right: 5px;
}
.rows-io:before {
  content: '\e20e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.columns-io:before {
  content: '\f0db';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.filters-io:before {
  content: '\f0b0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.subscribe-io:before {
  content: '\f0fe';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.reverse-io:before {
  content: '\e2d1';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.project-io:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.rr-cf-io:before {
  content: '\f2c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.folder-io:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.folder-io:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.calendar-io,
.k-icon.k-i-calendar {
  background-image: none !important;
}
.calendar-io:before,
.k-icon.k-i-calendar:before {
  content: '\f133';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.calendar-io:before,
.k-icon.k-i-calendar:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.list-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bug-io:before {
  content: '\f188';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.customfield-io:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.customfield-layout-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.balance-scale-io:before {
  content: '\f24e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.prioritization-io:before {
  content: '\f3fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.task-io:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.skillmatrix-io:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheet-io:before,
.tsaudit-io:before,
.tsstatus-io:before {
  content: '\e862';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.timesheet-io:before,
.tsaudit-io:before,
.tsstatus-io:before {
  content: '\e862';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-down-io:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.collapsearrow-io:before {
  content: '\f0d7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expandarrow-io:before {
  content: '\f0da';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.plus-round-io:before {
  content: '\f055';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-round-io:before {
  content: '\f056';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-asc-io:before {
  content: '\e90e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sort-desc-io:before {
  content: '\e90f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-asc-io:before {
  content: '\f160';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-desc-io:before {
  content: '\f161';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.measures-io:before {
  content: 'Σ';
  font-family: "Figtree";
  font-weight: 400;
  font-style: normal;
}
.measures-io:before {
  font-weight: 600;
}
.resolve-io:before {
  content: '\e026';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.assignment-io:before {
  content: '\e7fe';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.assignments-io:before {
  content: '\e246';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.eye-slash-io:before {
  content: '\f070';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bulk-resource-io:before {
  content: '\e94e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bulk-project-io:before {
  content: '\e89b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bulk-project-io:before {
  content: '\e89b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ad-directory-io:before {
  content: '\e920';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.user-management-io:before {
  content: '\e8d3';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.user-check-io:before {
  content: '\f4fc';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.projectgroup-io:before {
  content: '\e60c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.unlock-io:before {
  content: '\f3c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.lock-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.lock-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tags-io:before {
  content: '\f02c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chess-knight-io:before {
  content: '\f441';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.target-io:before {
  content: '\f192';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chess-board-io:before {
  content: '\f43c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.planned-io {
  display: inline-block;
}
.planned-io:after {
  content: '';
  border: 2px solid #e791f0;
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
}
.actual-io {
  display: inline-block;
}
.actual-io:after {
  display: inline-block;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid #009614;
  background-color: #009614;
}
.layt_sg-lc_icon {
  cursor: default;
  font-size: 14px;
}
.layt_sg-lc_icon.locked {
  color: var(--sg-legacy-orangeColor, #e65100);
}
.layt_sg-lc_icon.locked:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_sg-lc_icon.locked:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_sg-lc_icon.locked:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_sg-lc_icon.locked:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_sg-lc_icon.locked:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_sg-lc_icon.checkout-io {
  color: var(--sg-legacy-blueentity, #3bb3ff);
}
.layt_sg-lc_icon.open {
  margin-right: 4px;
}
.layt_sg-lc_icon.open:before {
  content: '\f3c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_sg-lc_icon.open:before {
  content: '\f3c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.lock-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.lock-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.checkout-io:before {
  content: '\f502';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.clock-io:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.clock-io:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.required-io:before {
  content: '*';
  color: #d61919;
}
.isunique-ic:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.isunique-ic:before {
  background-color: var(--sg-legacy-blueDef, #0874e7);
}
.readonly-ic:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.readonly-ic:before {
  background-color: var(--sg-legacy-orangeS, #e57710);
}
/*
********************ICONS END****************************
*/
/*
***************SYNC ICONS REFRESHED**********************
*/
.smallic-excel {
  font-size: 24px;
  color: var(--sg-primary-button-color, #008a02);
  vertical-align: middle;
  display: inline-block;
}
.smallic-excel:before {
  content: '\e600';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smallic-smartsheet {
  font-size: 24px;
  color: var(--sg-primary-button-color, #008a02);
  vertical-align: middle;
  display: inline-block;
}
.smallic-smartsheet:before {
  content: '\e91c';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smallic-jira {
  font-size: 24px;
  color: var(--sg-legacy-JiraColor, #375078);
  vertical-align: middle;
  display: inline-block;
}
.smallic-jira:before {
  content: '\e601';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smallic-workfront {
  font-size: 24px;
  color: var(--sg-legacy-WorkFrontIcon, #e57710);
  vertical-align: middle;
  display: inline-block;
}
.smallic-workfront:before {
  content: '\e92d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smallic-msproject {
  font-size: 24px;
  color: var(--sg-primary-button-color, #008a02);
  vertical-align: middle;
  display: inline-block;
}
.smallic-msproject:before {
  content: '\e602';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smallic-mpp {
  font-size: 24px;
  color: var(--sg-legacy-MppColor, #038387);
  vertical-align: middle;
  display: inline-block;
}
.smallic-mpp:before {
  content: '\e60d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smallic-msprojectsql {
  font-size: 24px;
  color: var(--sg-legacy-violetS, #5970e7);
  vertical-align: middle;
  display: inline-block;
}
.smallic-msprojectsql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
/*
*large
*/
.largeic-excel {
  font-size: 52px;
  vertical-align: middle;
  display: inline-block;
}
.largeic-excel:before {
  content: '\e600';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.largeic-smartsheet {
  font-size: 52px;
  vertical-align: middle;
  display: inline-block;
}
.largeic-smartsheet:before {
  content: '\e91c';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.largeic-jira {
  font-size: 52px;
  vertical-align: middle;
  display: inline-block;
}
.largeic-jira:before {
  content: '\e601';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.largeic-workfront {
  font-size: 52px;
  vertical-align: middle;
  display: inline-block;
}
.largeic-workfront:before {
  content: '\e92d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.largeic-msproject {
  font-size: 52px;
  vertical-align: middle;
  display: inline-block;
}
.largeic-msproject:before {
  content: '\e602';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.largeic-mpp {
  font-size: 52px;
  vertical-align: middle;
  display: inline-block;
}
.largeic-mpp:before {
  content: '\e60d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.largeic-msprojectsql {
  font-size: 52px;
  vertical-align: middle;
  display: inline-block;
}
.largeic-msprojectsql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.collapse-io:before {
  content: '\f422';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.collapse-io[disabled] {
  color: var(--sg-legacy-grayColor, #656565);
}
.expand-io:before {
  content: '\f424';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.expand-io[disabled] {
  color: var(--sg-legacy-grayColor, #656565);
}
.indent-io:before {
  content: '\e947';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.outdent-io:before {
  content: '\e948';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.critical-io:before {
  content: '\e94a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.link-io:before {
  content: '\e940';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.link-io:before {
  content: '\e940';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.link-break-io:before {
  content: '\e941';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.link-break-io:before {
  content: '\e941';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.remove-record-io:before {
  content: '\f2ed';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.undo-io:before {
  content: '\f0e2';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.redo-io:before {
  content: '\f01e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.less-than-io:before {
  content: '\f536';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.grater-than-io:before {
  content: '\f531';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.greater-than-equal-io:before {
  content: '\f532';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.replace-advance-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-edit-io:before {
  content: '\f4ff';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
/*
*tiles
*/
.smalltile-jira {
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  vertical-align: middle;
  background-color: var(--sg-legacy-JiraColor, #375078);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.smalltile-jira:before {
  content: '\e601';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smalltile-jira:before {
  opacity: 0.95;
}
.smalltile-msproject {
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  vertical-align: middle;
  background-color: var(--sg-primary-button-color, #008a02);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.smalltile-msproject:before {
  content: '\e602';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smalltile-msproject:before {
  opacity: 0.95;
}
.smalltile-mpp {
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  vertical-align: middle;
  background-color: var(--sg-legacy-MppColor, #038387);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.smalltile-mpp:before {
  content: '\e60d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smalltile-mpp:before {
  opacity: 0.95;
}
.smalltile-msprojectsql {
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  vertical-align: middle;
  background-color: var(--sg-legacy-violetS, #5970e7);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.smalltile-msprojectsql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smalltile-msprojectsql:before {
  opacity: 0.95;
}
.smalltile-excel {
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  vertical-align: middle;
  background-color: var(--sg-primary-button-color, #008a02);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.smalltile-excel:before {
  content: '\e600';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smalltile-excel:before {
  opacity: 0.95;
}
.smalltile-smartsheet {
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  vertical-align: middle;
  background-color: var(--sg-legacy-Smartsheet, #267eb2);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.smalltile-smartsheet:before {
  content: '\e91c';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smalltile-smartsheet:before {
  opacity: 0.95;
}
.smalltile-workfront {
  font-size: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  vertical-align: middle;
  background-color: var(--sg-legacy-WorkFront, #4b596b);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.smalltile-workfront:before {
  content: '\e92d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.smalltile-workfront:before {
  opacity: 0.95;
}
.pdf-io {
  color: var(--sg-legacy-pdfColor, #ff0000);
}
.pdf-io:before {
  content: '\e911';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pdf-io[disabled] {
  color: var(--sg-legacy-grayColor, #656565);
}
.excel-flat-io {
  color: var(--sg-primary-button-color, #008a02);
}
.excel-flat-io:before {
  content: '\f1c3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.csv-io {
  color: var(--sg-primary-button-color, #008a02);
}
.csv-io:before {
  content: '\e92e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.csv-flat-io {
  color: var(--sg-primary-button-color, #008a02);
}
.csv-flat-io:before {
  content: '\e92f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excel,
.excel-io,
.sync-excelprojects,
.sync-excelresources,
.sync-excelskills,
.sync-exceladmintime,
.sync-excelcustomfields,
.sync-excelassignments,
.sync-excelsheets,
.sync-excelrate,
.sync-excelteamresourcemembers,
.sync-excelfinancials {
  vertical-align: middle;
  display: inline-block;
  vertical-align: top;
  color: var(--sg-primary-button-color, #008a02);
}
.sync-excel:before,
.excel-io:before,
.sync-excelprojects:before,
.sync-excelresources:before,
.sync-excelskills:before,
.sync-exceladmintime:before,
.sync-excelcustomfields:before,
.sync-excelassignments:before,
.sync-excelsheets:before,
.sync-excelrate:before,
.sync-excelteamresourcemembers:before,
.sync-excelfinancials:before {
  content: '\e600';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-excel[disabled],
.excel-io[disabled],
.sync-excelprojects[disabled],
.sync-excelresources[disabled],
.sync-excelskills[disabled],
.sync-exceladmintime[disabled],
.sync-excelcustomfields[disabled],
.sync-excelassignments[disabled],
.sync-excelsheets[disabled],
.sync-excelrate[disabled],
.sync-excelteamresourcemembers[disabled],
.sync-excelfinancials[disabled] {
  color: var(--sg-legacy-grayColor, #656565);
}
.sync-jira {
  vertical-align: middle;
  display: inline-block;
  vertical-align: top;
  color: var(--sg-legacy-JiraColor, #375078);
}
.sync-jira:before {
  content: '\e601';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-msproject {
  vertical-align: middle;
  display: inline-block;
  vertical-align: top;
  color: var(--sg-primary-button-color, #008a02);
}
.sync-msproject:before {
  content: '\e602';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-mpp {
  vertical-align: middle;
  display: inline-block;
  vertical-align: top;
  color: var(--sg-legacy-MppColor, #038387);
}
.sync-mpp:before {
  content: '\e60d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-msprojectsql {
  vertical-align: middle;
  display: inline-block;
  vertical-align: top;
  color: var(--sg-legacy-violetS, #5970e7);
}
.sync-msprojectsql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-smartsheet {
  vertical-align: middle;
  display: inline-block;
  vertical-align: top;
  color: var(--sg-legacy-Smartsheet, #267eb2);
}
.sync-smartsheet:before {
  content: '\e91c';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-workfront {
  vertical-align: middle;
  display: inline-block;
  vertical-align: top;
  color: var(--sg-legacy-WorkFrontIcon, #e57710);
}
.sync-workfront:before {
  content: '\e92d';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-workfront:before {
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sync-ppmprotile {
  vertical-align: top;
  width: 22px;
  height: 22px;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: contain;
}
.sync-ppmpro {
  vertical-align: top;
  width: 14px !important;
  height: 14px;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: 10px 10px;
  background-color: var(--sg-legacy-PpmPro, #6369d0);
  display: inline-block;
  border-radius: 4px;
  margin-top: 11px;
}
.sg-statusrich > span {
  vertical-align: top;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  margin: 5px 5px 0 3px;
}
/*
***************SYNC ICONS END****************************
*/
/*
* SHAPE ICONS
 */
.shape-alert-io:before {
  content: '\e928';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-stop-io:before {
  content: '\e15c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-thumbUp-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-thumbDown-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-square-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shape-diamond-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shape-diamond-io:before {
  transform: rotate(45deg);
  display: inline-block;
}
.shape-circle-io:before {
  content: '\e3a6';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-triangle-io:before {
  content: '\e926';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-up-io:before {
  content: '\f0d8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shape-arrow-up-io:before {
  content: '\ea32';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-arrow-down-io:before {
  content: '\ea36';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-arrow-left-io:before {
  content: '\ea38';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-arrow-right-io:before {
  content: '\ea34';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-pin-io:before {
  content: '\e953';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-pin-io:before {
  font-size: 1.2em;
}
.shape-pin-io.pinned:before {
  content: '\e946';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-pin-io.pinned:before {
  font-size: 1.2em;
}
.repeat-io {
  color: var(--sg-legacy-rr-delegate-fr, #569e36);
}
.repeat-io:before {
  content: '\f01e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.repeat-io:before {
  content: '\f01e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.manager-io:before {
  content: '\f508';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shape-approve-io:before {
  content: '\e8e8';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-warning-io:before {
  content: '\e626';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-warning-io:before {
  content: '\e626';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-thunder-io:before {
  content: '\e3e7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.shape-star-io:before {
  content: '\e8d0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.close-round-io:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.close-round-io:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumbsUp-io:before {
  content: '\f164';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thumbsDown-io:before {
  content: '\f165';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shape {
  display: inline-block;
  line-height: 1;
  width: 11px;
  height: 11px;
}
.shape.shape-diamond {
  transform: rotate(45deg);
  width: 9px;
  height: 9px;
}
.shape.shape-square {
  width: 10px;
  height: 10px;
}
.shape.shape-circle {
  border-radius: 50%;
}
.shape.shadow {
  opacity: 0;
  border-radius: 50%;
  transform: rotate(0deg) scale(2, 2);
}
.shape.shadow:hover {
  opacity: 0.2;
}
.demand-planning-icon {
  width: 16px;
  height: 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 12px;
  display: inline-block;
  vertical-align: top;
  color: #9437ab;
}
.demand-planning-icon:before {
  content: '\e55a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/** SHAPE ICONS ENDED */
.play-io:before {
  content: '\f04b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.arrow-circle-up-io:before {
  content: '\f0aa';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.arrow-circle-down-io:before {
  content: '\f0ab';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.arrow-circle-left-io:before {
  content: '\f0a8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.arrow-right-angler {
  width: 8px;
  height: 9px;
  display: inline-block;
  background-position: -77px -51px;
}
.input-calendar-icon {
  position: absolute;
  top: 15px;
  right: -5px;
  display: inline-block;
  width: 10px;
  height: 11px;
  background-position: -15px -102px;
}
.input-edit-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-position: -45px -102px;
}
.draggable-icon {
  display: inline-block;
  width: 25px;
  height: 28px;
  background-position: -69px 0;
}
.input-remove-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-position: -11px -123px;
}
.enter-white-icon {
  display: inline-block;
  width: 13px;
  height: 6px;
  background-position: -45px -80px;
}
.showgantticon {
  width: 16px ;
  height: 13px;
  background-position: -42px -195px;
  display: inline-block;
}
.columns-icon {
  display: inline-block;
  width: 11px;
  height: 10px;
  background-position: -13px -9px;
}
.customfields-icon {
  display: inline-block;
  width: 10px;
  height: 8px;
  background-position: -31px -22px;
}
.hierarchy-icon {
  display: inline-block;
  width: 11px;
  height: 10px;
  background-position: -31px -177px;
}
.hierarchy_selected .hierarchy-icon {
  background-position: -42px -177px;
}
.assignee-icon {
  display: inline-block;
  width: 9px;
  height: 12px;
  background-position: -13px -32px;
}
.time-icongray {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-position: -31px -196px;
}
.folder-img-icon {
  background: url(../../content/assets/b5a0e850dc385fd59c2d.svg) no-repeat center;
  background-size: contain;
}
.screen-img-icon {
  background: url(../../content/assets/f32b2b51b9cd33988aad.svg) no-repeat center;
  background-size: contain;
}
.view-focus-io {
  background: url(../../content/assets/52f56a5515f4e4228cbe.svg) no-repeat center;
  background-size: contain;
}
.category-img-icon {
  background: url(../../content/assets/ef02df26a58f01faaba3.svg) no-repeat center;
  background-size: contain;
}
.expand-img-io:before {
  background: url(../../content/assets/3dd9d8d761eada4dd903.svg) no-repeat center;
  background-size: contain;
  content: "";
  width: 20px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}
.icon-spacer {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}
.calendar-fiscal-io:before {
  content: "\f251";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.var-brackets:before {
  content: '\e951';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.svg-icon {
  width: 1em;
  height: 1em;
}
.search-clear-icon {
  color: var(--sg-legacy-buttonIconColor, #484848);
  font-size: 12px;
  transition: 0.2s ease;
  cursor: default;
  opacity: 0.9;
}
.search-clear-icon:hover {
  opacity: 1;
}
.icon_sg:before {
  width: 43px;
  text-align: center;
}
.icon_sg:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_wf:before {
  width: 43px;
  text-align: center;
}
.icon_wf:before {
  content: '\e0d7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.icon_wf:before {
  content: '\e0d7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.icon_bool:before {
  width: 43px;
  text-align: center;
}
.icon_bool:before {
  content: '\f205';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_calc:before {
  width: 43px;
  text-align: center;
}
.icon_calc:before {
  content: '\f1ec';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_cas:before {
  width: 43px;
  text-align: center;
}
.icon_cas:before {
  content: '\f664';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_ccy:before {
  width: 43px;
  text-align: center;
}
.icon_ccy:before {
  content: '\f3d1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_date:before {
  width: 43px;
  text-align: center;
}
.icon_date:before {
  content: '\f783';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_hie:before {
  width: 43px;
  text-align: center;
}
.icon_hie:before {
  content: '\f0e8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_hie:before {
  content: '\f0e8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_msel:before {
  width: 43px;
  text-align: center;
}
.icon_msel:before {
  content: '\f14a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_num:before {
  content: '#';
  font-family: "Figtree";
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  width: 43px;
}
.icon_\%:before {
  content: '%';
  font-family: "Figtree";
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  width: 43px;
}
.icon_pre:before {
  content: '#.##';
  font-family: "Figtree";
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  width: 43px;
  white-space: nowrap;
}
.icon_rng:before,
.icon_prgr:before {
  width: 43px;
  text-align: center;
}
.icon_rng:before,
.icon_prgr:before {
  content: '\e952';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.icon_res:before {
  width: 43px;
  text-align: center;
}
.icon_res:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_res:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_mres:before {
  width: 43px;
  text-align: center;
}
.icon_mres:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_sel:before {
  width: 43px;
  text-align: center;
}
.icon_sel:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_str:before {
  width: 43px;
  text-align: center;
}
.icon_str:before {
  content: '\f7a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_tag:before {
  width: 43px;
  text-align: center;
}
.icon_tag:before {
  content: '\f02c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_tag:before {
  content: '\f02c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_txt:before {
  width: 43px;
  text-align: center;
}
.icon_txt:before {
  content: '\f0c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_txt:before {
  content: '\f0c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_url:before {
  width: 43px;
  text-align: center;
}
.icon_url:before {
  content: '\f0c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.icon_mtx:before {
  width: 43px;
  text-align: center;
}
.icon_mtx:before {
  content: '\f84c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.loading-io:before {
  content: '\f110';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.spin-io {
  animation: spin 2s infinite linear;
}
.spm-io:before {
  content: '\f6fc';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.diagram-io:before {
  content: '\f542';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.captions-io:before {
  content: '\f20a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tempus-ai-io:before {
  content: '\f5dc';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-icon.k-i-x:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-icon.k-i-x:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-icon.k-i-x:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-icon.k-i-x:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-icon.k-i-x:before {
  content: '\f057';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.component-tile {
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff);
}
.component-flat-tile {
  background: var(--sg-bg-color, #ffffff);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.sg_export__button {
  color: var(--sg-primary-button-color, #008a02) !important;
  border: 1px solid var(--sg-button-border-color, #cccccc) !important;
  border-radius: 10px;
  background-color: transparent;
  min-height: 34px;
  min-width: 34px;
  line-height: 32px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
.sg_export__button:before {
  vertical-align: top;
}
.sg_export__button:before {
  content: '\e600';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sg_export__button:hover {
  background-color: rgba(20, 41, 139, 0.03) !important;
  border-color: color-mix(in srgb, var(--sg-button-border-color, #cccccc), transparent 77%) !important;
}
.sg_export__button:focus {
  outline: 2px solid #50beff;
}
.sg_export__button.sg_export__button--csv {
  color: var(--sg-primary-button-color, #008a02);
  color: var(--sg-primary-button-color, #008a02) !important;
}
.sg_export__button.sg_export__button--csv:before {
  content: '\e92e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_export__button.sg_export__button--csv:before {
  content: '\e92e';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_export__button_placeholder {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  color: var(--sg-primary-button-color, #008a02) !important;
  border: 1px solid var(--sg-input-border-color, #c7c7c7) !important;
  border-radius: 10px;
  background-color: transparent;
  box-sizing: border-box;
  min-height: 34px;
  min-width: 34px;
  cursor: wait;
}
.sg_export__button_placeholder .sg_export__button_placeholder-icon {
  display: inline-block;
  animation: spin 2s infinite linear;
}
.sg_export__button_placeholder .sg_export__button_placeholder-icon:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.link {
  color: var(--sg-legacy-link-cl, #0735cc);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 0;
}
.link:hover {
  color: #dc3545;
}
.link.disabled,
.link.disabled:hover {
  border-bottom: 0;
  color: var(--sg-legacy-grayColor, #656565);
  cursor: default;
}
.layt_typeroleSaveBtn {
  float: right;
  width: 20px;
  background-color: var(--sg-legacy-highlightedRowBg, #dbffe3);
  height: 33px;
  cursor: pointer;
  margin-right: -6px;
  text-align: center;
}
.layt_typeroleSaveBtn:after {
  font-family: FontAwesome;
  content: "\f00c";
  width: 8px;
  height: 9px;
  font-size: 11px;
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.layt_typeroleClearBtn {
  position: absolute;
  right: -14px;
  top: -2px;
  width: 20px;
  height: 33px;
  cursor: pointer;
  margin-right: -6px;
  background-color: var(--sg-legacy-greyCancelButton, #7a775e);
  text-align: center;
  border-radius: 0 2px 2px 0;
}
.layt_typeroleClearBtn:after {
  font-family: FontAwesome;
  content: "\f00d";
  display: inline-block;
  font-size: 11px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_sort_div {
  position: absolute;
  top: 11px;
  right: 2px;
}
.sg_sort_div.sorting_down,
.sg_sort_div.sorting_up {
  display: inline-block;
  width: 8px;
  height: 10px;
}
.sg_sort_div.sorting_down:before,
.sg_sort_div.sorting_up:before {
  color: rgba(0, 0, 55, 0.3);
  font-size: 10px;
}
.sg_sort_div.sorting_down:before {
  content: '\f30c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sort_div.sorting_down:before {
  content: '\f30c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sort_div.sorting_up:before {
  content: '\f309';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg-user-item {
  display: inline-block;
  vertical-align: top;
  border-radius: 30px;
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 14px;
  line-height: 11px;
  min-height: 24px;
}
.sg-user-item .new-user-ic,
.sg-user-item .user-ic {
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  margin: 2px 3px 0 2px;
}
.sg-user-item .new-user-ic.avatar-box .e-avatar,
.sg-user-item .user-ic.avatar-box .e-avatar {
  width: 100%;
  height: 100%;
}
.sg-user-item .new-user-ic {
  width: 21px;
  height: 21px;
  color: var(--sg-color-legacy-d4d4d4, #d4d4d4);
  font-size: 16px;
  line-height: 16px;
  border: 2px solid;
  box-sizing: border-box;
  text-shadow: 0 0 1px var(--sg-color-legacy-d4d4d4, #d4d4d4);
}
.sg-user-item .new-user-ic:before {
  content: '\e145';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg-user-item .user-ic {
  background: var(--sg-secondary-color, #106df9);
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-size: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.sg-user-item .k-i-close {
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
}
.sg-user-item .user-name {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 18px;
  padding: 3px 0;
}
.sg-user-item.resource-enabled-false .user-name {
  font-style: italic;
  color: var(--sg-legacy-grey, #6f6f6f);
}
.sg-user-item.resource-enabled-false .user-ic,
.sg-user-item.resource-enabled-false .resource-ic {
  background-color: var(--sg-legacy-grey, #6f6f6f);
}
.button-simple {
  background-color: var(--sg-color-legacy-eff8fb, #eff8fb);
  display: inline-block;
  height: 34px;
  line-height: 34px;
  min-width: 34px;
  font-size: 14px;
  border-radius: 12px;
  padding: 0 5px;
  cursor: pointer;
  color: var(--sg-secondary-color, #106df9);
  white-space: nowrap;
  box-sizing: border-box;
}
.button-simple:hover:not(.disabled) {
  background-color: var(--sg-color-legacy-dbeff6, #dbeff6);
}
.button-simple.highlighted:not(.disabled) {
  background-color: var(--sg-legacy-yellow-active-color, #fffdda);
  color: var(--sg-legacy-yellow-active-font-color, #cc8148);
}
.button-simple.highlighted:not(.disabled):hover {
  background-color: var(--sg-color-legacy-fffcc1, #fffcc1);
}
.button-simple.active:not(.disabled) {
  background-color: var(--sg-legacy-blueDef, #0874e7);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.button-simple.active:not(.disabled):hover {
  background-color: var(--sg-color-legacy-1281f7, #1281f7);
}
.button-simple.disabled {
  background-color: var(--sg-table-border-color, #c7c7c7);
  color: var(--sg-color-legacy-979797, #979797);
  cursor: default;
}
.button-simple.material-flat {
  border: 1px solid var(--sg-button-border-color, #cccccc);
  border-radius: 12px;
  background: inherit;
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.button-simple.material-flat:before {
  opacity: 0.8;
}
.button-simple.material-flat:hover:not(.disabled) {
  background-color: color-mix(in srgb, var(--sg-color-legacy-14298b, #14298b), transparent 97%);
  border-color: color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 77%);
}
.focus-container:focus-within {
  outline: 2px solid #50beff;
}
.button-simple-rec {
  text-decoration: none;
  background-color: transparent;
  display: inline-block;
  height: 34px;
  line-height: 32px;
  min-width: 34px;
  font-size: 14px;
  border-radius: 10px;
  padding: 0 8px;
  cursor: pointer;
  color: var(--sg-text-color, #000000);
  white-space: nowrap;
  box-sizing: border-box;
  border: 1px solid var(--sg-button-border-color, #cccccc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  gap: 6px;
}
.button-simple-rec:before {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.button-simple-rec.pure {
  padding: 0 15px;
}
.button-simple-rec.orange {
  color: var(--sg-legacy-orangeColor, #e65100);
}
.button-simple-rec.orange:before {
  color: var(--sg-legacy-orangeColor, #e65100);
}
.button-simple-rec.red {
  color: var(--sg-color-legacy-ff0000, #ff0000);
}
.button-simple-rec.red:before {
  color: var(--sg-color-legacy-ff0000, #ff0000);
}
.button-simple-rec .arrow-down-io {
  margin: 0 8px;
  color: var(--sg-color-legacy-d4d4d4, #d4d4d4);
}
.button-simple-rec:hover:not(.disabled) {
  background-color: rgba(20, 41, 139, 0.03);
}
.button-simple-rec.disabled {
  color: var(--sg-color-legacy-979797, #979797);
  cursor: default;
}
.button-simple-rec .k-widget.k-dropdown {
  padding: 0;
  width: auto;
}
.button-simple-rec .k-widget.k-dropdown .k-dropdown-wrap > .k-input {
  width: auto;
  color: var(--sg-secondary-color, #106df9);
}
.button-simple-rec .k-widget.k-dropdown .k-icon {
  margin-top: -3px;
  color: var(--sg-color-legacy-d4d4d4, #d4d4d4);
}
.button-simple-rec .e-control-wrapper.e-input-group {
  border: 0 !important;
  margin: 0 -5px;
  width: auto !important;
  margin-bottom: 0 !important;
  background: none;
  height: auto;
}
.button-simple-rec .e-control-wrapper.e-input-group .e-ddl-icon.e-input-group-icon {
  background: none;
  margin-top: 3px !important;
  margin-right: 4px !important;
  padding: 0px;
}
.button-simple-rec .e-control-wrapper.e-input-group.e-input-group {
  color: var(--sg-secondary-color, #106df9);
  font-weight: 600;
}
.button-simple-rec .e-control-wrapper.e-input-group.e-input-group:not(.e-float-icon-left):not(.e-float-input)::before,
.button-simple-rec .e-control-wrapper.e-input-group.e-input-group:not(.e-float-icon-left):not(.e-float-input)::after {
  display: none;
}
.button-simple-rec.single {
  cursor: default;
  border: 0;
}
.button-simple-rec.material-flat:not(.single) {
  border: 1px solid var(--sg-button-border-color, #cccccc);
  border-radius: 10px;
  background: inherit;
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.button-simple-rec.material-flat:not(.single) .k-widget.k-dropdown .k-dropdown-wrap > .k-input {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.button-simple-rec.material-flat:not(.single) .k-widget.k-dropdown .k-icon {
  margin-top: 0;
}
.button-simple-rec.material-flat:not(.single):before {
  opacity: 0.8;
}
.button-simple-rec.material-flat:not(.single):hover:not(.disabled) {
  background-color: color-mix(in srgb, var(--sg-color-legacy-14298b, #14298b), transparent 97%);
  border-color: color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 77%);
}
.button-simple-rec.material-flat:not(.single).shadow:not(.single) {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
}
/****************INPUT BUTTONS**************************/
.button-simple.sg_rsgridhd__mode,
.sg_rsgridhd__mode {
  display: inline-block;
  vertical-align: top;
  line-height: 25px;
}
.button-simple.sg_rsgridhd__mode .k-state-default > .k-select,
.sg_rsgridhd__mode .k-state-default > .k-select {
  line-height: 18px;
}
.button-simple.sg_rsgridhd__mode .tgl-bool + .tgl-btn,
.sg_rsgridhd__mode .tgl-bool + .tgl-btn {
  display: inline-block;
  vertical-align: middle;
}
.sg_switch-item {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  line-height: 26px;
}
.sg_switch-single {
  background-color: #fff9e6;
  text-transform: uppercase;
  font-size: 11px;
  padding: 5px;
  border-radius: 4px;
  line-height: 21px;
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0.6px;
  color: #000000;
}
.roundanimated {
  width: 34px;
  height: 34px;
  line-height: 34px;
  cursor: pointer;
  position: relative;
  text-align: center;
  display: inline-block;
}
.roundanimated.disabled {
  cursor: default;
}
.roundanimated:hover:not(.disabled) {
  color: var(--sg-color-legacy-ffffff, #ffffff) !important;
}
.roundanimated:hover:not(.disabled):after {
  background-color: var(--sg-legacy-violetS, #5970e7);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.roundanimated:hover:not(.disabled):before {
  z-index: 1;
  position: relative;
}
.roundanimated:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  z-index: -1;
  transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.roundanimated.busy {
  cursor: default;
}
.roundanimated.busy:after {
  display: none;
}
.roundanimated.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid var(--sg-legacy-grayColor, #656565);
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.roundanimated.busy:before {
  vertical-align: middle;
}
.roundanimated.busy.disabled {
  opacity: 1;
}
.smsg_mdl__buttongray {
  border-radius: 28px;
  height: 33px;
  line-height: 33px;
  padding: 0 15px;
  font-size: 14px;
  cursor: pointer;
}
.smsg_mdl__buttonblue {
  border-radius: 28px;
  height: 34px;
  line-height: 34px;
  padding: 0 15px;
  font-size: 14px;
  cursor: pointer;
}
.greennewplus {
  cursor: pointer;
  line-height: 35px;
  color: var(--sg-primary-button-color, #008a02);
  padding: 0 10px 0 2px;
  margin: 10px 0 0 0;
  display: inline-block;
}
.greennewplus:before {
  content: '\f055';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.greennewplus:before {
  font-size: 35px;
  vertical-align: middle;
  margin-right: 10px;
}
.yellow-button {
  border-width: 0 !important;
  background: #ffce51 !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  letter-spacing: 0.1px;
  min-width: 50px;
  text-transform: none;
  color: #000000;
}
.yellow-button:hover {
  background: color-mix(in srgb, #ffce51, #000000 5%) !important;
  box-shadow: 0;
}
.yellow-button.disabled,
.yellow-button[disabled],
.yellow-button.disabled:hover {
  pointer-events: none;
}
.yellow-button.disabled,
.yellow-button[disabled],
.yellow-button.disabled:hover,
.yellow-button.disabled:hover,
.yellow-button[disabled]:hover,
.yellow-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.yellow-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.yellow-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.yellow-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.yellow-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.yellow-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.yellow-button.busy:hover {
  background-color: #ffce51;
}
.lightgreen-button {
  border-width: 0 !important;
  background: var(--sg-primary-button-color, #008a02) !important;
  height: 34px !important;
  line-height: 34px !important;
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.lightgreen-button:hover {
  background: color-mix(in srgb, var(--sg-primary-button-color, #008a02), #000000 5%) !important;
  box-shadow: 0;
}
.lightgreen-button.disabled,
.lightgreen-button[disabled],
.lightgreen-button.disabled:hover {
  pointer-events: none;
}
.lightgreen-button.disabled,
.lightgreen-button[disabled],
.lightgreen-button.disabled:hover,
.lightgreen-button.disabled:hover,
.lightgreen-button[disabled]:hover,
.lightgreen-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.lightgreen-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.lightgreen-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.lightgreen-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.lightgreen-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.lightgreen-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.lightgreen-button.busy:hover {
  background-color: var(--sg-primary-button-color, #008a02);
}
.green-button {
  border-width: 0 !important;
  background: var(--sg-primary-button-color, #008a02) !important;
  height: 34px !important;
  line-height: 34px !important;
  font-weight: normal;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  background-color: var(--sg-primary-button-color, #008a02);
  height: 34px;
  letter-spacing: 0.1px;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
  padding: 0 12px;
  text-transform: none;
  border-radius: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  cursor: pointer;
}
.green-button:hover {
  background: color-mix(in srgb, var(--sg-primary-button-color, #008a02), #000000 5%) !important;
  box-shadow: 0;
}
.green-button.disabled,
.green-button[disabled],
.green-button.disabled:hover {
  pointer-events: none;
}
.green-button.disabled,
.green-button[disabled],
.green-button.disabled:hover,
.green-button.disabled:hover,
.green-button[disabled]:hover,
.green-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.green-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.green-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.green-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.green-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.green-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.green-button.busy:hover {
  background-color: var(--sg-primary-button-color, #008a02);
}
.green-button.template-button {
  background-color: var(--sg-legacy-template-indicator, #008575) !important;
}
.green-button.template-button:not(.busy):before {
  content: "\f5ae";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.green-button.template-button:not(.busy):before {
  content: "\f5ae";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.blue-3d-button {
  border-width: 0 !important;
  background: var(--sg-legacy-blueDef, #0874e7) !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  letter-spacing: 0.1px;
}
.blue-3d-button:hover {
  background: color-mix(in srgb, var(--sg-legacy-blueDef, #0874e7), #000000 5%) !important;
  box-shadow: 0;
}
.blue-3d-button.disabled,
.blue-3d-button[disabled],
.blue-3d-button.disabled:hover {
  pointer-events: none;
}
.blue-3d-button.disabled,
.blue-3d-button[disabled],
.blue-3d-button.disabled:hover,
.blue-3d-button.disabled:hover,
.blue-3d-button[disabled]:hover,
.blue-3d-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.blue-3d-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.blue-3d-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.blue-3d-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.blue-3d-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.blue-3d-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.blue-3d-button.busy:hover {
  background-color: var(--sg-legacy-blueDef, #0874e7);
}
.blue-3d-button:hover:not(.disabled):not([disabled]):not(.busy) {
  background-image: var(--sg-color-legacy-086fdd, #086fdd);
}
.blue-3d-button.disabled,
.blue-3d-button[disabled],
.blue-3d-button.disabled:hover,
.blue-3d-button.disabled:hover,
.blue-3d-button[disabled]:hover,
.blue-3d-button.disabled:hover:hover {
  background: var(--sg-bg-color-disabled, #e8eef6);
  box-shadow: none;
}
.white-button {
  border-width: 0 !important;
  background: #ffffff !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  color: var(--sg-color-legacy-3bb3ff, #3bb3ff);
  letter-spacing: 0.1px;
}
.white-button:hover {
  background: color-mix(in srgb, #ffffff, #000000 5%) !important;
  box-shadow: 0;
}
.white-button.disabled,
.white-button[disabled],
.white-button.disabled:hover {
  pointer-events: none;
}
.white-button.disabled,
.white-button[disabled],
.white-button.disabled:hover,
.white-button.disabled:hover,
.white-button[disabled]:hover,
.white-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.white-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.white-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.white-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.white-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.white-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.white-button.busy:hover {
  background-color: #ffffff;
}
.white-button:hover {
  background-color: var(--sg-color-legacy-d8f4fd, #d8f4fd);
}
.red-button {
  border-width: 0 !important;
  background: #dc3545 !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
}
.red-button:hover {
  background: color-mix(in srgb, #dc3545, #000000 5%) !important;
  box-shadow: 0;
}
.red-button.disabled,
.red-button[disabled],
.red-button.disabled:hover {
  pointer-events: none;
}
.red-button.disabled,
.red-button[disabled],
.red-button.disabled:hover,
.red-button.disabled:hover,
.red-button[disabled]:hover,
.red-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.red-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.red-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.red-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.red-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.red-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.red-button.busy:hover {
  background-color: #dc3545;
}
.light-blue-button {
  background-color: rgba(218, 242, 255, 0.8);
  color: var(--sg-color-legacy-3bb3ff, #3bb3ff);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 12px;
  padding: 8px 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.light-blue-button:focus {
  border: none;
  outline: none;
}
.light-blue-button:hover {
  background-color: rgba(198, 235, 255, 0.8);
}
.blue-button {
  border-width: 0 !important;
  background: var(--sg-secondary-color, #106df9) !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
}
.blue-button:hover {
  background: color-mix(in srgb, var(--sg-secondary-color, #106df9), #000000 5%) !important;
  box-shadow: 0;
}
.blue-button.disabled,
.blue-button[disabled],
.blue-button.disabled:hover {
  pointer-events: none;
}
.blue-button.disabled,
.blue-button[disabled],
.blue-button.disabled:hover,
.blue-button.disabled:hover,
.blue-button[disabled]:hover,
.blue-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.blue-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.blue-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.blue-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.blue-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.blue-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.blue-button.busy:hover {
  background-color: var(--sg-secondary-color, #106df9);
}
.transparent-button {
  border-width: 1 !important;
  background: transparent !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 32px !important;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  border: 1px solid var(--sg-button-border-color, #cccccc);
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  text-transform: none;
}
.transparent-button:hover {
  background: color-mix(in srgb, transparent, #000000 5%) !important;
  box-shadow: 0;
}
.transparent-button.disabled,
.transparent-button[disabled],
.transparent-button.disabled:hover {
  pointer-events: none;
}
.transparent-button.disabled,
.transparent-button[disabled],
.transparent-button.disabled:hover,
.transparent-button.disabled:hover,
.transparent-button[disabled]:hover,
.transparent-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.transparent-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.transparent-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.transparent-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.transparent-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.transparent-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.transparent-button.busy:hover {
  background-color: transparent;
}
.transparent-button:hover {
  border-color: var(--sg-color-legacy-c2c4c8, #c2c4c8);
}
.transparent-button-green {
  border-width: 1 !important;
  background: transparent !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 32px !important;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  border: 1px solid var(--sg-primary-button-color, #008a02);
  color: var(--sg-color-legacy-006101, #006101);
  font-weight: 400;
}
.transparent-button-green:hover {
  background: color-mix(in srgb, transparent, #000000 5%) !important;
  box-shadow: 0;
}
.transparent-button-green.disabled,
.transparent-button-green[disabled],
.transparent-button-green.disabled:hover {
  pointer-events: none;
}
.transparent-button-green.disabled,
.transparent-button-green[disabled],
.transparent-button-green.disabled:hover,
.transparent-button-green.disabled:hover,
.transparent-button-green[disabled]:hover,
.transparent-button-green.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.transparent-button-green.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.transparent-button-green:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.transparent-button-green.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.transparent-button-green.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.transparent-button-green.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.transparent-button-green.busy:hover {
  background-color: transparent;
}
.transparent-button-green:hover {
  border-color: var(--sg-color-legacy-007102, #007102);
}
.pastel-button-blue {
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  border-width: 1 !important;
  background: transparent !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 32px !important;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  border: 1px solid var(--sg-button-border-color, #cccccc);
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  text-transform: none;
}
.pastel-button-blue:hover {
  background: color-mix(in srgb, transparent, #000000 5%) !important;
  box-shadow: 0;
}
.pastel-button-blue.disabled,
.pastel-button-blue[disabled],
.pastel-button-blue.disabled:hover {
  pointer-events: none;
}
.pastel-button-blue.disabled,
.pastel-button-blue[disabled],
.pastel-button-blue.disabled:hover,
.pastel-button-blue.disabled:hover,
.pastel-button-blue[disabled]:hover,
.pastel-button-blue.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.pastel-button-blue.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.pastel-button-blue:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.pastel-button-blue.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.pastel-button-blue.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.pastel-button-blue.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.pastel-button-blue.busy:hover {
  background-color: transparent;
}
.pastel-button-blue:hover {
  border-color: var(--sg-color-legacy-c2c4c8, #c2c4c8);
}
.pastel-button-blue:hover {
  background: color-mix(in srgb, transparent, #000000 5%) !important;
  box-shadow: 0;
}
.pastel-button-blue.disabled,
.pastel-button-blue[disabled],
.pastel-button-blue.disabled:hover {
  pointer-events: none;
}
.pastel-button-blue.disabled,
.pastel-button-blue[disabled],
.pastel-button-blue.disabled:hover,
.pastel-button-blue.disabled:hover,
.pastel-button-blue[disabled]:hover,
.pastel-button-blue.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.pastel-button-blue.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.pastel-button-blue:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.pastel-button-blue.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.pastel-button-blue.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.pastel-button-blue.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.pastel-button-blue.busy:hover {
  background-color: transparent;
}
.pastel-button-blue:hover {
  border-color: var(--sg-color-legacy-c2c4c8, #c2c4c8);
}
.pastel-button-blue.busy:before {
  border-color: var(--sg-text-color, #000000);
}
.green-transparent-button {
  border-width: 1 !important;
  background: transparent !important;
  height: 34px !important;
  line-height: 34px !important;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: normal;
  border-radius: 12px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 32px !important;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  border: 1px solid var(--sg-color-legacy-00f003, #00f003);
  color: var(--sg-primary-button-color, #008a02);
  font-weight: 400;
}
.green-transparent-button:hover {
  background: color-mix(in srgb, transparent, #000000 5%) !important;
  box-shadow: 0;
}
.green-transparent-button.disabled,
.green-transparent-button[disabled],
.green-transparent-button.disabled:hover {
  pointer-events: none;
}
.green-transparent-button.disabled,
.green-transparent-button[disabled],
.green-transparent-button.disabled:hover,
.green-transparent-button.disabled:hover,
.green-transparent-button[disabled]:hover,
.green-transparent-button.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.green-transparent-button.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.green-transparent-button:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.green-transparent-button.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.green-transparent-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.green-transparent-button.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.green-transparent-button.busy:hover {
  background-color: transparent;
}
.green-transparent-button:hover {
  border-color: var(--sg-primary-button-color, #008a02);
}
.toggle-expand {
  height: 0;
  width: 0;
  position: absolute;
  outline: none !important;
}
.toggle-expand + span:before {
  content: '\f422';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.toggle-expand + span:before {
  content: '\f422';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.toggle-expand + span[disabled] {
  color: var(--sg-legacy-grayColor, #656565);
}
.toggle-expand:checked + span:before {
  content: '\f424';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.toggle-expand:checked + span:before {
  content: '\f424';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.toggle-expand:checked + span[disabled] {
  color: var(--sg-legacy-grayColor, #656565);
}
.bubble-corner-button {
  border-radius: 8px;
  height: 24px;
  line-height: 22px;
  background: var(--sg-color-legacy-f4f4f4, #f4f4f4);
  padding: 0 8px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  box-sizing: border-box;
}
.bubble-corner-button.blank {
  background: transparent;
  border: 1px solid var(--sg-color-legacy-f4f4f4, #f4f4f4);
}
.bubble-corner-button.blue {
  background-color: var(--sg-legacy-blueDef, #0874e7);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.bubble-button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  box-sizing: border-box !important;
  border: 1px solid;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  position: relative;
  color: var(--sg-legacy-buttonIconColor, #484848);
  border-color: color-mix(in srgb, var(--sg-legacy-buttonIconColor, #484848), transparent 70%);
}
.bubble-button.disabled,
.bubble-button.busy {
  cursor: default;
}
.bubble-button.sm {
  width: 24px;
  height: 24px;
}
.bubble-button.xs {
  width: 16px;
  height: 16px;
}
.bubble-button:hover:not(.disabled) {
  color: var(--sg-color-legacy-ffffff, #ffffff) !important;
  border-color: transparent;
}
.bubble-button:hover:not(.disabled):after {
  background-color: var(--sg-legacy-buttonIconColor, #484848);
  border: 1px solid var(--sg-legacy-buttonIconColor, #484848);
  width: 100%;
  height: 100%;
  left: -1px;
  top: -1px;
  z-index: 0;
}
.bubble-button:hover:not(.disabled):before {
  z-index: 1;
  position: relative;
}
.bubble-button.clean {
  border: 0;
  background-color: transparent;
}
.bubble-button.transparent {
  border: 0;
  background-color: transparent;
}
.bubble-button.red {
  color: var(--sg-color-legacy-ec6a5d, #ec6a5d);
  border-color: color-mix(in srgb, var(--sg-color-legacy-ec6a5d, #ec6a5d), transparent 70%);
}
.bubble-button.red:hover:not(.disabled):after {
  background-color: var(--sg-color-legacy-ec6a5d, #ec6a5d);
  border-color: var(--sg-color-legacy-ec6a5d, #ec6a5d);
}
.bubble-button.orange {
  color: var(--sg-legacy-orangeColor, #e65100);
  border-color: color-mix(in srgb, var(--sg-legacy-orangeColor, #e65100), transparent 70%);
}
.bubble-button.orange:hover:not(.disabled):after {
  background-color: var(--sg-legacy-orangeColor, #e65100);
  border-color: var(--sg-legacy-orangeColor, #e65100);
}
.bubble-button.blue-over {
  color: var(--sg-color-legacy-868686, #868686);
  border-color: color-mix(in srgb, var(--sg-color-legacy-868686, #868686), transparent 70%);
}
.bubble-button.blue-over:hover:not(.disabled):after {
  background-color: var(--sg-secondary-color, #106df9);
  border-color: var(--sg-secondary-color, #106df9);
}
.bubble-button.orangeFill {
  border-color: var(--sg-color-legacy-ff7b33, #ff7b33);
  background-color: var(--sg-color-legacy-ff7b33, #ff7b33);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.bubble-button.orangeFill:hover:not(.disabled):after {
  background-color: var(--sg-color-legacy-ec6a5d, #ec6a5d);
  border-color: var(--sg-color-legacy-ec6a5d, #ec6a5d);
}
.bubble-button:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  z-index: -1;
  transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bubble-button.busy {
  border-color: transparent;
}
.bubble-button.busy:after {
  display: none;
}
.bubble-button.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid var(--sg-legacy-grayColor, #656565);
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.bubble-button.busy:before {
  vertical-align: middle;
}
.bubble-button.busy.disabled {
  opacity: 1;
}
.bubble-button.inline {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.sg_clmnchs__ch-btn {
  background-color: transparent;
  display: inline-block;
  height: 34px;
  line-height: 32px;
  min-width: 34px;
  font-size: 14px;
  border-radius: 10px;
  padding: 0 8px;
  cursor: pointer;
  color: var(--sg-text-color, #000000);
  white-space: nowrap;
  box-sizing: border-box;
  border: 1px solid var(--sg-button-border-color, #cccccc);
  vertical-align: top;
}
.sg_clmnchs__ch-btn:before {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.sg_clmnchs__ch-btn:before {
  margin-right: 5px;
}
.sg_clmnchs__ch-btn .arrow-down-io {
  color: var(--sg-color-legacy-d4d4d4, #d4d4d4);
  margin-left: 5px;
}
.sg_clmnchs__ch-btn.columns-io:before {
  font-size: 14px;
}
.sg_clmnchs__ch-btn.head_button__selected:hover {
  background-color: var(--sg-legacy-blue-medium-dark, #def2f9);
}
.sg_clmnchs__ch-btn.highlighted:before,
.sg_clmnchs__ch-btn.highlighted {
  color: var(--sg-text-color, #000000);
}
.sg_clmnchs__ch-btn.head_button__selected,
.sg_clmnchs__ch-btn.k-state-border-down,
.sg_clmnchs__ch-btn.active {
  background-color: var(--sg-legacy-SGHdBg, #eff8fb);
}
.sg_clmnchs__ch-btn.head_button__selected:before,
.sg_clmnchs__ch-btn.k-state-border-down:before,
.sg_clmnchs__ch-btn.active:before,
.sg_clmnchs__ch-btn.head_button__selected,
.sg_clmnchs__ch-btn.k-state-border-down,
.sg_clmnchs__ch-btn.active {
  color: var(--sg-text-color, #000000);
}
.sg_clmnchs__ch-btn.head_button__selected .arrow-down-io:before,
.sg_clmnchs__ch-btn.k-state-border-down .arrow-down-io:before,
.sg_clmnchs__ch-btn.active .arrow-down-io:before {
  transform: rotate(180deg);
  display: inline-block;
}
.sg_material_button {
  border: 1px solid var(--sg-button-border-color, #cccccc);
  border-radius: 10px;
  padding: 7px 8px;
  background-color: transparent;
  min-height: 34px;
  box-sizing: border-box;
  cursor: pointer;
  color: var(--sg-legacy-buttonIconColor, #484848);
  line-height: normal;
}
.sg_material_button:hover {
  background-color: color-mix(in srgb, var(--sg-color-legacy-14298b, #14298b), transparent 97%);
  border-color: color-mix(in srgb, var(--sg-button-border-color, #cccccc), transparent 77%);
}
.sg_material_button.shadow {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
}
.sg_material_button.w-indicator {
  position: relative;
}
.sg_material_button.w-indicator .changes-indicator {
  position: absolute;
  background: #5e9eff;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  right: 0;
  top: -6px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
}
.sg_material_button .icon {
  opacity: 0.8;
  font-size: 12px;
}
.sg_material_button .arrow-down-io {
  color: var(--sg-color-legacy-d4d4d4, #d4d4d4);
}
.material-mode-select .prop-filter:focus-within .dropdown {
  outline: 2px solid #50beff;
}
.material-mode-select .prop-filter .dropdown {
  max-height: 30px;
  height: 30px;
  border-color: var(--sg-input-border-color, #c7c7c7);
  border-radius: 10px;
  transition: 0.2s;
}
.material-mode-select .prop-filter .dropdown:hover {
  background-color: rgba(20, 41, 139, 0.03);
  border-color: rgba(0, 0, 0, 0.23);
}
.material-mode-select .prop-filter .dropdown .k-dropdown-wrap .k-input {
  color: var(--sg-legacy-buttonIconColor, #484848);
  font-weight: 400;
}
.sg-color-picker {
  position: absolute;
  height: auto;
  z-index: 4;
  display: none;
  overflow: hidden;
  background: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000);
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%)) !important;
  border: none !important;
  border-radius: 10px !important;
}
.sg-color-picker:focus {
  outline: none;
}
.sg-color-picker.open {
  display: inline-block;
}
.sg-color-picker .boxpicker {
  text-align: center;
  z-index: 6;
}
.sg-color-picker .boxpicker.color_picker {
  border-spacing: 5px;
}
.sg-color-picker .boxpicker.shape_picker .box-item {
  position: relative;
  vertical-align: middle;
  text-align: center;
}
.sg-color-picker .boxpicker.shape_picker .box-item.selected .shape {
  border: 2px solid var(--sg-color-legacy-2cd0ff, #2cd0ff);
}
.sg-color-picker .boxpicker.shape_picker .box-item.selected .shape.shape-diamond {
  width: 10px;
  height: 10px;
}
.sg-color-picker .boxpicker.shape_picker .box-item .shape {
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  width: 18px;
  height: 18px;
}
.sg-color-picker .boxpicker.shape_picker .box-item .shape.shape-diamond {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
}
.sg-color-picker .boxpicker.shape_picker .box-item .shape.shape-circle {
  border-radius: 50%;
}
/****************LAYOUT POPUP****************************/
.layt_popup_some,
.layt_popup_all,
.layt_popup_none {
  background: none;
  display: inline-block;
  border: 1px solid;
  padding: 0;
  margin: 5px 4px 0 0;
  vertical-align: top;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  color: var(--sg-legacy-PopLowPriorityC, #656565);
  margin-right: 3px;
}
.layt_popup_some:after,
.layt_popup_all:after,
.layt_popup_none:after {
  content: '';
  position: absolute;
}
.layt_popup_some:after,
.layt_popup_all:after,
.layt_popup_none:after {
  width: 0;
  height: 0;
  border: 4px solid;
  border-radius: 4px;
  left: 2px;
  top: 2px;
}
.layt_popup_some:after {
  border-radius: 0;
  border-width: 3px;
  left: 3px;
  top: 3px;
}
.layt_popup_none:after {
  display: none;
}
#editPopup {
  display: none;
  z-index: 1000;
  color: #b2b2b2;
}
#editPopup label {
  margin-right: 5px;
}
#editPopup label:last-child {
  margin-right: 0;
}
#editPopup .layt_popup {
  background-color: var(--sg-bg-color, #ffffff);
  border: none;
  color: var(--sg-text-color, #000000);
  border-radius: 6px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.06);
}
#editPopup .layt_noAccess {
  color: var(--sg-color-legacy-838383, #838383);
}
#editPopup .layt_noAccess .info_pop {
  visibility: hidden;
}
#editPopup .moderinput_labeled {
  margin: 0 15px;
}
#editPopup .moderinput_labeled.sg_entpop_tags_input {
  width: 250px !important;
}
#editPopup .moderinput_labeled.sg_entpop_tags_input input.tags_input {
  padding-right: 20px;
  width: 100%;
}
#editPopup .moderinput_labeled input[type="text"] {
  padding: 0 0 0 70px;
  height: 34px;
  width: 110px;
  border-color: var(--sg-legacy-PopLowPriorityC, #656565);
  color: var(--sg-text-color, #000000);
}
#editPopup .moderinput_labeled input[type="text"] + label {
  color: var(--sg-legacy-PopLowPriorityC, #656565);
}
#editPopup .moderinput_labeled input[type="text"]:focus + label {
  color: var(--sg-color-legacy-7f7f7f, #7f7f7f);
}
#editPopup .moderinput_labeled .return-io {
  position: absolute;
  right: 0;
  top: 8px;
  font-size: 11px;
  width: 20px;
  height: 20px;
  display: block;
  text-align: center;
  cursor: pointer;
  z-index: 3;
}
.checkBoxesAreSquare .layt_popup_some,
.checkBoxesAreSquare .layt_popup_all,
.checkBoxesAreSquare .layt_popup_none {
  background: none;
  display: inline-block;
  margin: 5px 4px 0 0;
  vertical-align: top;
  position: relative;
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 3px;
  border: 1px solid;
  text-align: center;
  line-height: 16px;
  font-size: 10px;
}
.checkBoxesAreSquare .layt_popup_some:after,
.checkBoxesAreSquare .layt_popup_all:after,
.checkBoxesAreSquare .layt_popup_none:after {
  content: '';
  position: absolute;
}
.checkBoxesAreSquare .layt_popup_some:after,
.checkBoxesAreSquare .layt_popup_all:after,
.checkBoxesAreSquare .layt_popup_none:after {
  border-radius: 2px;
  left: 3px;
  top: 3px;
  border-width: 4px;
}
.checkBoxesAreSquare .layt_popup_all {
  background: none;
  display: inline-block;
  margin: 5px 4px 0 0;
  vertical-align: top;
  position: relative;
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 3px;
  border: 1px solid;
  text-align: center;
  line-height: 16px;
  font-size: 10px;
}
.checkBoxesAreSquare .layt_popup_all:after {
  content: '';
  position: absolute;
}
.checkBoxesAreSquare .layt_popup_all:after {
  border-radius: 2px;
  left: 3px;
  top: 3px;
  border-width: 4px;
}
.checkBoxesAreSquare .layt_popup_all:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.checkBoxesAreSquare .layt_popup_all:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.checkBoxesAreSquare .layt_popup_all:after {
  display: none;
}
.layt_popup,
.k-popup,
.k-menu .k-group {
  background-color: var(--sg-bg-color, #ffffff);
  border: 2px solid transparent;
  z-index: 1000;
  padding: 0;
  color: var(--sg-text-color, #000000);
  border-radius: 2px;
}
.layt_popup,
.k-menu .k-group {
  display: none;
}
.layt_popup {
  position: absolute;
}
.layt_popup:before,
.layt_popup:after {
  display: none;
}
.layt_popActionLine {
  margin: 5px 10px 5px 15px;
  text-align: left;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-size: 14px;
  white-space: nowrap;
}
.layt_popActionLine .innerAction {
  display: inline-block;
}
.layt_popupSave {
  font-weight: normal;
  padding: 0 15px;
  margin-right: 4px;
  position: relative;
}
.layt_popupSave.layt_popupSaveWait {
  cursor: default;
  box-shadow: none;
}
.layt_popupSave.layt_popupSaveWait:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid var(--sg-color-legacy-ffffff, #ffffff);
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.layt_popupSave.layt_popupSaveWait:before {
  margin: 6px 5px 0 -7px;
  vertical-align: top;
}
.layt_yellowmsg,
.layt_dateinstruction {
  background-color: var(--sg-legacy-onboardingBackground, #fff2b5);
  line-height: 18px;
  border-radius: 5px;
  color: var(--sg-legacy-onboardingcolor, #915928);
  position: relative;
  clear: both;
  padding: 5px 10px;
}
/****************LAYOUT POPUP END****************************/
.lock_pop {
  padding: 5px 15px;
  line-height: 24px;
  display: none;
}
.lock_pop .layt_lockTooltipHeader {
  margin: 0 0 3px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  padding-bottom: 3px;
  width: 100%;
}
/****************ROLES TOOLTIP END****************************/
.layt_rolesPermstip {
  display: none;
}
.layt_rolesPermstip.sg_popupviews {
  padding: 5px 10px;
  line-height: 24px;
  align-items: flex-start;
  max-width: 510px;
  flex-flow: row wrap;
  gap: 0 !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 10px;
  background-color: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000) !important;
  font-size: 14px;
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%));
  border-radius: 8px;
  z-index: 11000;
}
.layt_rolesPermstip.sg_popupviews:before,
.layt_rolesPermstip.sg_popupviews:after {
  content: none;
}
.layt_rolesPermstip.sg_popupviews[level="1"] {
  width: 250px;
}
.layt_rolesPermstip.sg_popupviews[level="2"] {
  width: 500px;
}
.layt_rolesPermstip.sg_popupviews[level="3"] {
  width: 750px;
}
.layt_rolesPermstip li {
  width: 250px;
  padding: 5px 0;
}
.layt_rolesPermstip .layt_rolesTooltipHeader {
  margin: 0 10px 8px 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  padding-bottom: 6px;
  width: 100%;
}
.layt_rolesPermstip .edit:before,
.layt_rolesPermstip .grant:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .edit:before,
.layt_rolesPermstip .grant:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .view:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .view:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .none:before,
.layt_rolesPermstip .deny:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .none:before,
.layt_rolesPermstip .deny:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .checkedIcon {
  vertical-align: top;
  margin-right: 8px;
}
.layt_rolesPermstip .checkedIcon:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .checkedIcon:before {
  content: '\e603';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.layt_rolesPermstip .icon {
  width: 13px;
  height: 12px;
  float: left;
  vertical-align: top;
  margin-right: 8px;
  line-height: 20px;
}
.layt_rolesPermstip .text {
  display: block;
  overflow: hidden;
  line-height: 16px;
}
.layt_rolesPermstip.rls_permstip.showTooltip,
.layt_rolesPermstip.showTooltip {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 100300;
}
/****************ROLES TOOLTIP END****************************/
/****************MULTISELECT POPUP****************************/
.ui-menu.ui-widget-content {
  border: none;
  background: var(--sg-bg-color, #ffffff);
  color: #2b2b2b;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: 0;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  background: none;
  background: var(--sg-secondary-color, #106df9);
  text-shadow: none;
  border: none;
  border-radius: 0;
}
.ui-state-default,
.ui-widget-content,
.ui-widget-header,
.ui-state-default .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  text-shadow: none;
}
.ui-multiselect {
  border-radius: 0;
  box-shadow: none;
}
.ui-multiselect-filter {
  float: none;
  margin: 0;
  font-size: inherit;
  position: relative;
}
.ui-multiselect-filter:before {
  content: '\f002';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ui-multiselect-filter:before {
  content: '\f002';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ui-multiselect-filter:before {
  position: absolute;
  z-index: -1;
}
.ui-multiselect-filter input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  padding: 0;
  margin: 0;
  min-height: 28px;
  font-size: inherit;
  position: relative;
}
.ui-multiselect-filter input:focus {
  box-shadow: none;
  outline: none;
}
.ui-multiselect-hasfilter .ui-helper-reset {
  display: none;
}
.ui-multiselect-checkboxes {
  overflow-x: hidden;
  border: 0;
}
.ui-multiselect-checkboxes li {
  padding-right: 0;
}
.ui-multiselect-menu.sg_modeview__buttonsel {
  width: auto !important;
}
.ui-multiselect-menu.ui-widget-content .ui-widget-header {
  border: none;
  border-radius: 0;
  border: 0;
  margin: 0 -3px;
  padding: 3px 6px 3px 6px;
}
.ui-multiselect-single .ui-multiselect-checkboxes .ui-corner-all,
.ui-multiselect-single .ui-multiselect-checkboxes .ui-corner-bottom,
.ui-multiselect-single .ui-multiselect-checkboxes .ui-corner-right,
.ui-multiselect-single .ui-multiselect-checkboxes .ui-corner-br {
  border-radius: 0;
}
.ui-multiselect-single .ui-multiselect-checkboxes .ui-state-hover {
  background-color: var(--sg-legacy-hvAct, #f0f8f9);
}
.ui-multiselect-single .ui-multiselect-checkboxes label {
  border-radius: 0;
  border: none;
  padding: 0 !important;
  line-height: 25px;
}
.ui-multiselect-single .ui-multiselect-checkboxes label > span {
  padding: 0 5px;
  white-space: nowrap;
}
/****************MULTISELECT POPUP END****************************/
.k-tooltip-content .sg_accessrights_dropdown span:before {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  opacity: 0.7;
  display: inline-block;
  margin-right: 5px;
}
.ui-tooltip,
.k-widget.k-tooltip.k-popup {
  text-align: left;
  max-height: calc(98vh);
  overflow: hidden;
  background: unset;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 10px;
  background-color: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000) !important;
  font-size: 14px;
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%));
  border-radius: 8px;
}
.ui-tooltip .k-callout,
.k-widget.k-tooltip.k-popup .k-callout {
  display: none;
}
.ui-tooltip.ui-widget-shadow,
.k-widget.k-tooltip.k-popup.ui-widget-shadow {
  opacity: 1;
}
.ui-tooltip.sg-tooltip,
.k-widget.k-tooltip.k-popup.sg-tooltip {
  z-index: 100102;
}
.e-tooltip-wrap.e-popup {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 10px;
  background-color: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000) !important;
  font-size: 14px;
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%));
  border-radius: 8px;
  opacity: 1;
}
.e-tooltip-wrap.e-popup[id^=richtexteditor_] {
  transform: translateY(100%);
}
.e-tooltip-wrap .e-tip-content {
  color: var(--sg-text-color, #000000) !important;
  font-size: 13px !important;
}
.e-tooltip-wrap .e-arrow-tip.e-tip-bottom,
.e-tooltip-wrap .e-arrow-tip.e-tip-top,
.e-tooltip-wrap .e-arrow-tip.e-tip-left,
.e-tooltip-wrap .e-arrow-tip.e-tip-right {
  height: 0 !important;
  width: 0 !important;
}
.loader_progress {
  display: inline-block;
  vertical-align: top;
}
.loader_progress:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  margin-top: -4px;
  margin-right: 10px;
  width: 32px;
  height: 32px;
  background: url(../../content/assets/4b01ca501fadf65135bf.gif) no-repeat center;
}
.sg_dropdown {
  height: auto !important;
  background: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000);
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%)) !important;
  border: none !important;
  border-radius: 10px !important;
  min-width: 50px;
}
.sg_dropdown__filterable {
  min-width: 220px !important;
  height: auto !important;
  padding: 10px 0 !important;
  overflow-x: hidden;
  font-weight: normal;
  background: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000);
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%)) !important;
  border: none !important;
  border-radius: 10px !important;
}
.sg_dropdown__filterable.drag {
  padding-left: 15px !important;
}
.sg_dropdown__filterable.acr li {
  padding-right: 30px !important;
}
.sg_dropdown__filterable .sg_cf_type_acronym {
  top: 2px;
}
.sg_dropdown__filterable li {
  padding: 5px 5px 5px 10px !important;
  line-height: 16px !important;
  min-height: auto !important;
  font-weight: normal;
}
.sg_dropdown__filterable li .list-item {
  display: inline-flex;
  align-items: flex-start;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}
.sg_dropdown__filterable li .list-item.list-item__deactivated {
  pointer-events: none;
  color: var(--sg-color-legacy-888888, #888888);
  text-decoration: line-through;
}
.sg_dropdown__filterable li input[type="checkbox"] {
  margin: 2px 5px;
}
.sg_dropdown__filterable .name_fl {
  overflow: hidden;
}
.sg_dropdown__filterable .shape {
  width: auto;
}
.sg_dropdown .resource-enabled-false .user-name {
  font-style: italic;
  color: var(--sg-legacy-grey, #6f6f6f);
}
.sg_dropdown .resource-enabled-false .wf-pop-permissions-ic {
  color: var(--sg-legacy-grey, #6f6f6f);
}
.k-animation-container.k-animation-container-shown.k-animation-container-relative {
  z-index: 100200 !important;
}
/****************TAB BUTTON********************************/
.sg_groupbuttonsection.button-simple-rec {
  overflow: hidden;
  padding: 0;
}
.sg_groupbuttonsection.button-simple-rec:hover {
  border-color: var(--sg-table-border-color, #c7c7c7);
}
.sg_groupbuttonsection.button-simple-rec input {
  display: none;
}
.sg_groupbuttonsection.button-simple-rec input + span {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  min-width: 30px;
}
.sg_groupbuttonsection.button-simple-rec input:not(:disabled) + span {
  cursor: pointer;
}
.sg_groupbuttonsection.button-simple-rec input:checked + span {
  border-color: var(--sg-legacy-activeColorHead, #3bb3ff);
  background-color: var(--sg-legacy-activeColorHead, #3bb3ff);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_groupbuttonsection {
  font-size: 0;
  overflow: hidden;
  white-space: nowrap;
}
.sg_groupbuttonsection .ui-customcssradio {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  height: 34px;
  line-height: 34px;
}
.sg_groupbuttonsection .ui-customcssradio:first-child input[type="radio"] + span,
.sg_groupbuttonsection .ui-customcssradio.first-tab input[type="radio"] + span {
  border-radius: 8px 2px 2px 8px;
  margin-left: 0;
}
.sg_groupbuttonsection .ui-customcssradio:first-child input[type="radio"]:checked + span,
.sg_groupbuttonsection .ui-customcssradio.first-tab input[type="radio"]:checked + span {
  box-shadow: none;
}
.sg_groupbuttonsection .ui-customcssradio:last-child input[type="radio"] + span,
.sg_groupbuttonsection .ui-customcssradio.last-tab input[type="radio"] + span {
  border-radius: 2px 8px 8px 2px;
}
.sg_groupbuttonsection .ui-customcssradio:last-child input[type="radio"]:checked + span,
.sg_groupbuttonsection .ui-customcssradio.last-tab input[type="radio"]:checked + span {
  box-shadow: none;
}
.sg_groupbuttonsection .ui-customcssradio input[type="radio"] {
  display: none;
}
.sg_groupbuttonsection .ui-customcssradio input[type="radio"]:disabled:checked + span {
  background-color: var(--sg-color-legacy-7f7f7f, #7f7f7f) !important;
}
.sg_groupbuttonsection .ui-customcssradio input[type="radio"]:disabled + span {
  cursor: default;
  color: var(--sg-legacy-grayColor, #656565);
}
.sg_groupbuttonsection .ui-customcssradio input[type="radio"] + span {
  position: relative;
  background: none;
  vertical-align: top;
  display: inline-block;
  padding: 0 12px;
  border: 1px solid var(--sg-button-border-color, #cccccc);
  margin-left: -1px;
  cursor: pointer;
  height: 34px;
  box-sizing: border-box;
}
.sg_groupbuttonsection .ui-customcssradio input[type="radio"]:not(:disabled):not(:checked) + span:hover {
  background-color: var(--sg-color-legacy-e2eeff, #e2eeff);
}
.sg_groupbuttonsection .ui-customcssradio input[type="radio"]:checked + span {
  padding: 0 12px;
  z-index: 1;
  cursor: default;
  background-color: var(--sg-secondary-color, #106df9);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.ui-buttonset {
  font-size: 0;
  margin-right: 0;
  vertical-align: top;
  /* Corner radius */
}
.ui-buttonset .ui-corner-all,
.ui-buttonset .ui-corner-top,
.ui-buttonset .ui-corner-left,
.ui-buttonset .ui-corner-tl {
  border-top-left-radius: 4px;
}
.ui-buttonset .ui-corner-all,
.ui-buttonset .ui-corner-top,
.ui-buttonset .ui-corner-right,
.ui-buttonset .ui-corner-tr {
  border-top-right-radius: 4px;
}
.ui-buttonset .ui-corner-all,
.ui-buttonset .ui-corner-bottom,
.ui-buttonset .ui-corner-left,
.ui-buttonset .ui-corner-bl {
  border-bottom-left-radius: 4px;
}
.ui-buttonset .ui-corner-all,
.ui-buttonset .ui-corner-bottom,
.ui-buttonset .ui-corner-right,
.ui-buttonset .ui-corner-br {
  border-bottom-right-radius: 4px;
}
.ui-buttonset .ui-state-active,
.ui-buttonset .ui-button {
  box-shadow: none;
  text-shadow: none;
}
.ui-buttonset.selectTab {
  vertical-align: top;
  text-align: left;
  position: relative;
  z-index: 5;
}
.ui-buttonset.selectTab .chosen-container .chosen-results li {
  padding-left: 10px;
}
.ui-buttonset.selectTab .chosen-container .chosen-results li.active-result {
  display: list-item !important;
}
.ui-buttonset.selectTab .chosen-drop {
  font-weight: normal;
  width: inherit;
  min-width: 100%;
  margin-left: -1px;
  padding: 5px 14px;
}
.ui-buttonset.selectTab .ui-button {
  width: inherit !important;
  padding: 0 2px;
}
.ui-buttonset.selectTab .ui-button .chosen-single {
  border: none;
  border-radius: 0;
  height: 40px;
  line-height: 46px;
  text-align: left;
}
.ui-buttonset.selectTab .ui-button .chosen-single div b {
  display: inline-block;
  height: 18px;
}
.ui-buttonset .ui-button {
  position: relative;
  background: none;
  vertical-align: top;
  display: inline-block;
  padding: 0 12px;
  line-height: 25px;
}
.ui-buttonset .ui-button.ui-state-active {
  cursor: default;
  padding: 0 12px;
  z-index: 1;
  background-color: var(--sg-secondary-color, #106df9);
  border-color: var(--sg-secondary-color, #106df9);
}
.ui-button-text-only {
  font-size: 14px;
}
/****************TAB BUTTON END********************************/
.sg-tabswitch .ui-customcssradio {
  position: relative;
  margin-left: 15px;
  display: inline-block;
}
.sg-tabswitch input[type="radio"] {
  display: none;
}
.sg-tabswitch input[type="radio"] + span {
  padding: 0 15px;
  border-radius: 15px;
  color: var(--sg-color-legacy-656565, #656565);
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
}
.sg-tabswitch input[type="radio"]:not(:checked) + span:hover {
  background-color: var(--sg-legacy-tabswitch-selected-bg, #eff8fb);
}
.sg-tabswitch input[type="radio"]:checked:disabled + span {
  cursor: default;
  color: var(--sg-legacy-grayColor, #656565);
  background-color: var(--sg-legacy-tabswitch-disabled-bg, #f7f7f7);
}
.sg-tabswitch input[type="radio"]:checked + span {
  cursor: default;
  color: var(--sg-color-legacy-3bb3ff, #3bb3ff);
  background-color: var(--sg-legacy-tabswitch-selected-bg, #eff8fb);
}
.sg-tabswitch .bubble-button {
  width: 28px;
  height: 28px;
  line-height: 26px;
  font-size: 10px !important;
  color: var(--sg-color-legacy-656565, #656565);
  background-color: var(--sg-bg-color, #ffffff);
  -webkit-font-smoothing: antialiased;
}
.sg-tabswitch .bubble-button:hover {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  background-color: var(--sg-color-legacy-888888, #888888);
  border: 1px solid var(--sg-color-legacy-868686, #868686);
}
.inline-tab-switch {
  white-space: nowrap;
}
.inline-tab-switch label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  color: var(--sg-text-color, #000000);
  padding: 0 10px;
}
.inline-tab-switch label:before {
  margin-right: 4px;
  font-size: 12px;
  opacity: 0.7;
}
.inline-tab-switch label.time input + span:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.time input + span:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.time input + span:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.time input + span:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.gantt input + span:before {
  content: '\e605';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.gantt input + span:before {
  content: '\e605';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.manday input + span:before {
  content: '\e936';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.cost input + span.USD:before {
  content: '$';
}
.inline-tab-switch label.cost input + span.GBR:before {
  content: '£';
}
.inline-tab-switch label.cost input + span.EUR:before {
  content: '€';
}
.inline-tab-switch label.fte input + span:before {
  font-size: 12px;
  /* align icon by center vertically in one line with text aside */
  position: relative;
  top: -0.3px;
}
.inline-tab-switch label.fte input + span:before {
  content: '\f7a5\f7a5';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.fte input + span:before {
  content: '\f7a5\f7a5';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.fte-percent input + span:before {
  content: '\f541';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.story-points input + span:before {
  content: '\f192';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label.story-points input + span:before {
  content: '\f192';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.inline-tab-switch label input:checked + span {
  color: var(--sg-legacy-blueDef, #0874e7);
  box-shadow: 0 1px 0 var(--sg-legacy-blueDef, #0874e7);
  font-weight: bold;
}
.inline-tab-switch label input + span {
  height: 100%;
  display: inline-flex;
  align-items: baseline;
  padding: 20px 0;
}
.inline-tab-switch label input + span:before {
  margin-right: 6px;
}
.inline-tab-switch label .label-wrapper-icon {
  font-style: normal;
  margin-right: 6px;
}
.inline-tab-switch .sg_dominantUnit__marker {
  color: var(--sg-color-legacy-ffce51, #ffce51);
  top: 8px;
  right: 0;
}
.ui-button,
.ui-customcssradio {
  box-shadow: none;
}
.ui-button .ui-button-text:before,
.ui-customcssradio .ui-button-text:before {
  margin-right: 4px;
  font-size: 12px;
}
.ui-button.time .ui-button-text:before,
.ui-customcssradio.time .ui-button-text:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ui-button.time .ui-button-text:before,
.ui-customcssradio.time .ui-button-text:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-button.time .ui-button-text:before,
.ui-customcssradio.time .ui-button-text:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ui-button.time .ui-button-text:before,
.ui-customcssradio.time .ui-button-text:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-button.gantt .ui-button-text:before,
.ui-customcssradio.gantt .ui-button-text:before {
  content: '\e605';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ui-button.gantt .ui-button-text:before,
.ui-customcssradio.gantt .ui-button-text:before {
  content: '\e605';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ui-button.manday .ui-button-text:before,
.ui-customcssradio.manday .ui-button-text:before {
  content: '\e936';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.ui-button.story-points .ui-button-text:before,
.ui-customcssradio.story-points .ui-button-text:before {
  content: '\f192';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-button.story-points .ui-button-text:before,
.ui-customcssradio.story-points .ui-button-text:before {
  content: '\f192';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-button.cost .ui-button-text:before,
.ui-customcssradio.cost .ui-button-text:before {
  font-size: 12px;
}
.ui-button.cost.USD .ui-button-text:before,
.ui-customcssradio.cost.USD .ui-button-text:before {
  content: '$';
}
.ui-button.cost.GBR .ui-button-text:before,
.ui-customcssradio.cost.GBR .ui-button-text:before {
  content: '£';
}
.ui-button.cost.EUR .ui-button-text:before,
.ui-customcssradio.cost.EUR .ui-button-text:before {
  content: '€';
}
.ui-button.fte .ui-button-text:before,
.ui-customcssradio.fte .ui-button-text:before {
  font-size: 9px;
}
.ui-button.fte .ui-button-text:before,
.ui-customcssradio.fte .ui-button-text:before {
  content: '\f7a5\f7a5';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-button.fte .ui-button-text:before,
.ui-customcssradio.fte .ui-button-text:before {
  content: '\f7a5\f7a5';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-button.fte-percent .ui-button-text:before,
.ui-customcssradio.fte-percent .ui-button-text:before {
  content: '\f541';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.fte-io:before {
  content: '\f7a5\f7a5';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-button-text .addon {
  display: none;
  position: absolute;
  right: 8px;
  top: 4px;
}
.ui-button-text .addon .button-material {
  height: 24px;
  min-height: 24px;
  width: 24px;
  overflow: hidden;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 10px;
}
.ui-button-text .addon .button-material.active {
  border-color: var(--sg-secondary-color, #106df9) !important;
}
.sg-rep__config_view.sg_groupbuttonsection input[type=radio]:checked + * .addon {
  display: inline-block;
}
.sg_tabmenusection {
  border-bottom: 1px solid var(--sg-legacy-blueBorder, #d8e5ec);
}
.sg_tabmenusection.filled {
  border: 0;
}
.sg_tabmenusection.filled .ui-customcssradio input[type="radio"]:checked + span {
  border: 0;
  margin: 0;
}
.sg_tabmenusection.filled .chosen-container-single,
.sg_tabmenusection.filled .ui-customcssradio input[type="radio"]:checked + span {
  position: relative;
}
.sg_tabmenusection.filled .ui-customcssradio input[type="radio"] + span,
.sg_tabmenusection.filled .customcsscheckbox input[type="checkbox"] + span {
  height: 50px;
  line-height: 50px;
}
.sg_tabmenusection.filled .ui-customcssradio input[type="radio"]:not(:checked):not(:disabled) + span:hover,
.sg_tabmenusection.filled .customcsscheckbox input[type="checkbox"]:not(:checked):not(:disabled) + span:hover {
  z-index: 2;
  position: relative;
}
.sg_tabmenusection.filled .ui-buttonset .ui-button {
  height: 50px;
  line-height: 50px;
}
.sg_tabmenusection.filled .ui-buttonset .ui-button .k-dropdown-wrap .k-input {
  height: auto;
}
.sg_tabmenusection.filled .chosen-container-single .chosen-single > span {
  color: var(--sg-legacy-tableHeaderColor, #7fa0ac);
  letter-spacing: 0.3px;
}
.sg_tabmenusection .ui-buttonset {
  display: inline-block;
}
.sg_tabmenusection .ui-buttonset .ui-button {
  border: none;
  display: inline-block;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  color: var(--sg-color-legacy-4b4b4b, #4b4b4b);
  cursor: pointer;
}
.sg_tabmenusection .ui-buttonset .ui-button:hover {
  color: var(--sg-text-color, #000000);
}
.sg_tabmenusection .ui-buttonset .ui-button:hover {
  color: var(--sg-text-color, #000000);
}
.sg_tabmenusection .ui-buttonset .ui-button:hover {
  color: var(--sg-text-color, #000000);
}
.sg_tabmenusection .ui-buttonset .ui-button.ui-state-active {
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
  margin-bottom: -1px;
  color: var(--sg-text-color, #000000);
  border-radius: 8px 8px 0 0;
  border: 1px solid;
  border-color: var(--sg-legacy-blueBorder, #d8e5ec) var(--sg-legacy-blueBorder, #d8e5ec) var(--sg-legacy-mainBg, #f7f9fc) var(--sg-legacy-blueBorder, #d8e5ec);
  font-weight: 600;
  cursor: default;
  cursor: pointer;
}
.sg_tabmenusection .ui-customcssradio input[type="radio"] {
  position: absolute;
  height: 0;
  width: 0;
  outline: none !important;
}
.sg_tabmenusection .ui-customcssradio input[type="radio"]:disabled + span,
.sg_tabmenusection .ui-customcssradio input[type="radio"]:disabled:checked + span {
  cursor: default;
  color: var(--sg-legacy-grayColor, #656565) !important;
}
.sg_tabmenusection .ui-customcssradio input[type="radio"]:disabled:hover + span {
  color: var(--sg-legacy-grayColor, #656565);
}
.sg_tabmenusection .ui-customcssradio input[type="radio"] + span {
  cursor: default;
  padding: 0 10px;
  z-index: 1;
  border: none;
  display: inline-block;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  color: var(--sg-color-legacy-4b4b4b, #4b4b4b);
  cursor: pointer;
}
.sg_tabmenusection .ui-customcssradio input[type="radio"] + span:hover {
  color: var(--sg-text-color, #000000);
}
.sg_tabmenusection .ui-customcssradio input[type="radio"] + span:hover {
  color: var(--sg-text-color, #000000);
}
.sg_tabmenusection .ui-customcssradio input[type="radio"]:checked + span {
  margin: 0 0 0 -1px;
  position: relative;
  background: none;
  vertical-align: top;
  display: inline-block;
  padding: 0 10px;
  background-color: var(--sg-legacy-mainBg, #f7f9fc);
  margin-bottom: -1px;
  color: var(--sg-text-color, #000000);
  border-radius: 8px 8px 0 0;
  border: 1px solid;
  border-color: var(--sg-legacy-blueBorder, #d8e5ec) var(--sg-legacy-blueBorder, #d8e5ec) var(--sg-legacy-mainBg, #f7f9fc) var(--sg-legacy-blueBorder, #d8e5ec);
  font-weight: 600;
  cursor: default;
}
.sg_tabmenusection .spa-columns .layt_columns-selector {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  top: 30px;
}
.sg_tabmenusection .spa-columns .layt_columns-selector .k-multiselect-wrap.k-floatwrap {
  display: none;
}
.sg_tabmenusection .modeSwitcher .sg_dominantUnit__marker {
  color: var(--sg-color-legacy-ffce51, #ffce51);
  top: 4px;
  right: 3px;
  line-height: 5px;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio {
  display: inline-block;
  vertical-align: top;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio.cost .icon {
  font-size: 14px !important;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio.manday .ui-button-text:before {
  font-size: 13px !important;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"] + span {
  padding-top: 18px !important;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"] + span.ui-button-text {
  line-height: 15px;
  height: 50px;
  text-align: center;
  padding: 8px 8px 0;
  font-weight: normal;
  box-sizing: border-box;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"] + span.ui-button-text:before,
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"] + span.ui-button-text .icon {
  display: inline;
  height: 17px;
  font-size: 12px;
  margin: 0;
  margin-right: 5px;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"]:checked + span {
  color: var(--sg-legacy-link-cl, #0735cc);
  font-weight: 600;
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"]:not(:checked) + span.ui-button-text {
  color: var(--sg-text-color, #000000);
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"]:not(:checked) + span.ui-button-text:hover {
  color: var(--sg-legacy-link-cl, #0735cc);
}
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"]:checked + span,
.sg_tabmenusection .modeSwitcher .ui-customcssradio input[type="radio"]:not(:checked) + span:hover {
  background-color: initial !important;
  border-bottom: 2px solid var(--sg-legacy-link-cl, #0735cc);
}
.sg__list_sourcestable .shared-io {
  font-size: 10px;
  color: var(--sg-legacy-grayColor, #656565);
  float: right;
  margin-right: 8px;
  line-height: 16px;
  vertical-align: top;
  margin-top: 9px;
}
.sg__list_sourcestable .recycle-icon {
  cursor: pointer;
}
.sg__list_sourcestable .livedata-text {
  color: var(--sg-primary-button-color, #008a02);
}
.sg__list_sourcestable .resource-io {
  color: var(--sg-legacy-grayColor, #656565);
  padding-right: 3px;
  font-size: 12px;
}
.sg_sourcestable {
  position: relative;
}
.sg_sourcestable .moreclmn {
  width: 40px;
}
.sg_sourcestable .icon {
  margin-left: 4px;
}
.sg_sourcestable tr.highlighted-row {
  background-color: var(--sg-legacy-highlightedRowBg, #dbffe3) !important;
}
.sg_sourcestable tr.highlighted-row:hover,
.sg_sourcestable tr.highlighted-row:hover td:first-child:before,
.sg_sourcestable tr.highlighted-row:hover td:last-child:before {
  background-color: var(--sg-color-legacy-cdf8d6, #cdf8d6);
}
.sg_sourcestable tr.highlighted-row td,
.sg_sourcestable tr.highlighted-row td:first-child:before,
.sg_sourcestable tr.highlighted-row td:last-child:before {
  box-shadow: 0 1px 0 var(--sg-legacy-mainBg, #f7f9fc);
}
.sg_sourcestable tr.highlighted-row td:first-child {
  position: relative;
}
.sg_sourcestable tr.highlighted-row td:last-child {
  position: relative;
}
.sg_sourcestable td.layt_total > div {
  display: inline-block;
  margin-right: 8px;
}
.sg_sourcestable td.layt_total > div:before {
  font-size: 12px;
  color: var(--sg-legacy-grayColor, #656565);
  margin-right: 2px;
}
.sg_sourcestable td.more:first-child {
  padding: 0 15px;
}
.sg_sourcestable .layt_date,
.sg_sourcestable td.timetaken {
  color: var(--sg-legacy-grayColor, #656565);
}
.sg_sourcestable .project:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .project:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .skill:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .projectcustomfield:before,
.sg_sourcestable .assignmentcustomfield:before,
.sg_sourcestable .resourcecustomfield:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .projectcustomfield:before,
.sg_sourcestable .assignmentcustomfield:before,
.sg_sourcestable .resourcecustomfield:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .resource:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .resource:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .resource:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .resource:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .skill:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .sorting-asc,
.sg_sourcestable .sorting-desc {
  display: inline-block;
  width: 8px;
  height: 10px;
}
.sg_sourcestable .sorting-asc:before,
.sg_sourcestable .sorting-desc:before {
  color: rgba(0, 0, 55, 0.3);
  font-size: 10px;
}
.sg_sourcestable .sorting-asc:before {
  content: '\f30c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .sorting-asc:before {
  content: '\f30c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .sorting-desc:before {
  content: '\f309';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .tags-io {
  font-size: 12px;
  display: inline-block;
  width: 40px;
  margin-left: -40px;
  text-align: center;
  position: relative;
}
.sg_sourcestable tr.layt_topFixed:hover td:first-child {
  background-color: var(--sg-legacy-tableRowHoveBg, #f1f0ff);
}
.sg_sourcestable tr.layt_topFixed .recycle-icon {
  color: var(--sg-legacy-table-row-fix-color, #89a082);
}
.sg_sourcestable tr.layt_topFixed .recycle-icon:hover {
  color: var(--sg-color-legacy-6f8867, #6f8867);
}
.sg_sourcestable tr.layt_topFixed td.more {
  background-color: transparent;
}
.sg_sourcestable tr.layt_topFixed td.layt_date {
  color: var(--sg-legacy-table-row-fix-color, #89a082);
  text-transform: none;
  font-size: 14px;
}
.sg_sourcestable .recycle-icon {
  cursor: pointer;
}
.sg_sourcestable th,
.sg_sourcestable td {
  padding: 0 10px;
  border: 1px solid rgba(166, 166, 166, 0.15);
}
.sg_sourcestable th:first-child,
.sg_sourcestable td:first-child {
  padding-left: 50px;
  border-left: none;
}
.sg_sourcestable th:last-child,
.sg_sourcestable td:last-child {
  padding-right: 50px;
  border-right: none;
}
.sg_sourcestable td {
  line-height: 32px;
  word-wrap: break-word;
}
.sg_sourcestable td.entity:before {
  width: 25px;
  text-align: center;
  color: var(--sg-color-legacy-868686, #868686);
  margin-right: 5px;
}
.sg_sourcestable td.checked {
  background-color: var(--sg-primary-button-color, #008a02);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.sg_sourcestable th {
  line-height: 36px;
  font-weight: 600;
  box-shadow: 0px 4px 3px 0px var(--sg-grid-header-shadow-color, #00000008);
}
.sg_sourcestable th[data-header-id] {
  cursor: pointer;
}
.sg_sourcestable th[data-header-id].disabled {
  cursor: default;
  pointer-events: none;
}
.sg_sourcestable .sg_tbl {
  width: 100%;
  table-layout: fixed;
  margin: 15px 0 20px 0;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: var(--sg-bg-color, #ffffff);
}
.sg_sourcestable tbody tr:hover {
  background-color: var(--sg-legacy-tableRowHoveBg, #f1f0ff);
}
.sg_sourcestable.readonly tr:hover td,
.sg_sourcestable tbody.readonly tr:hover td {
  background-color: transparent;
}
.sg_sourcestable .schedule {
  background-image: none !important;
}
.sg_sourcestable .schedule:before {
  display: inline-block;
  text-align: left;
  width: 15px;
  font-size: 12px;
  vertical-align: middle;
  margin-top: -3px;
}
.sg_sourcestable .schedule:before {
  content: '\f133';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .schedule:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .schedule:before {
  content: '\f133';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .schedule:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_sourcestable .manual:before {
  display: inline-block;
  text-align: left;
  width: 15px;
  font-size: 12px;
  vertical-align: middle;
  margin-top: -3px;
}
.sg_sourcestable .manual:before {
  content: '\f0a6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
input[type="text"].textbox-material {
  border: 1px solid var(--sg-input-border-color, #c7c7c7);
  box-sizing: border-box;
  border-radius: 6px;
}
input[type="text"].textbox-material:focus {
  outline: 2px solid var(--sg-secondary-color, #106df9);
  border-color: transparent;
}
input[type="text"].textbox-material.l {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
}
input[type="text"].textbox-material.m {
  height: 34px;
  font-size: 14px;
}
/*------------------------------------*\
    INPUT.LESS
\*------------------------------------*/
/**
 * input.less acts as a base stylesheet which descibe inputs behaviour
 **/
.moderinput_labeled {
  display: flex;
  position: relative;
}
.moderinput_labeled > * {
  order: 2;
}
.moderinput_labeled.wide {
  width: 750px !important;
}
.moderinput_labeled.u-wide {
  width: 1000px !important;
}
.moderinput_labeled textarea {
  border: 0;
  border-bottom: 1px solid transparent;
  width: 500px;
  border-radius: 0;
  background-color: var(--sg-textarea-bg-color, #efefef);
  color: var(--sg-text-color, #000000);
  display: block;
  box-sizing: border-box;
}
.moderinput_labeled .layt_customFieldControl {
  display: inline-block;
}
.moderinput_labeled .calculated_field {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.moderinput_labeled input[type="text"],
.moderinput_labeled input[type="password"],
.moderinput_labeled input[type="search"],
.moderinput_labeled .k-dropdown .k-dropdown-wrap,
.moderinput_labeled .e-control-wrapper,
.moderinput_labeled .k-multiselect .k-multiselect-wrap {
  box-sizing: border-box;
  background: none;
  border: 0;
  line-height: 18px;
  height: auto;
  z-index: 1;
  cursor: pointer;
}
.moderinput_labeled:not(.base-styles) input[type="text"],
.moderinput_labeled input[type="password"],
.moderinput_labeled input[type="search"],
.moderinput_labeled .k-dropdown,
.moderinput_labeled .k-multiselect,
.moderinput_labeled .e-control-wrapper,
.moderinput_labeled .calculated_field {
  border-radius: 4px;
  color: var(--sg-text-color, #000000);
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--sg-input-border-color, #c7c7c7);
  height: 34px;
  max-width: 660px;
}
.moderinput_labeled:not(.base-styles) input[type="text"]:hover,
.moderinput_labeled input[type="password"]:hover,
.moderinput_labeled input[type="search"]:hover,
.moderinput_labeled .k-dropdown:hover,
.moderinput_labeled .k-multiselect:hover,
.moderinput_labeled .e-control-wrapper:hover,
.moderinput_labeled .calculated_field:hover {
  border-color: var(--sg-legacy-color-active, #44aaee);
}
.moderinput_labeled:not(.base-styles) input[type="text"]:focus,
.moderinput_labeled input[type="password"]:focus,
.moderinput_labeled input[type="search"]:focus,
.moderinput_labeled .k-dropdown:focus,
.moderinput_labeled .k-multiselect:focus,
.moderinput_labeled .e-control-wrapper:focus,
.moderinput_labeled .calculated_field:focus {
  outline: 1px solid color-mix(in srgb, var(--sg-legacy-color-active, #44aaee), transparent 20%);
  border-color: color-mix(in srgb, var(--sg-legacy-color-active, #44aaee), transparent 20%);
  position: relative;
  z-index: 1;
}
.moderinput_labeled .k-dropdown .k-input,
.moderinput_labeled .k-multiselect-wrap {
  padding-left: 8px;
}
.moderinput_labeled input[type="text"]#viewPopFilter {
  padding: 0 0 0 20px;
  height: 40px;
  border: none;
}
.moderinput_labeled:not(.base-styles) input[type="text"]:not(.filter-input),
.moderinput_labeled input[type="password"] {
  width: 100%;
  transition: width 0.5s ease-in-out;
}
.moderinput_labeled .e-switch-wrapper {
  padding: 7px 0;
}
.moderinput_labeled .e-switch-wrapper .e-switch-inner.e-switch-active {
  background-color: transparent;
}
.moderinput_labeled .k-multiselect.k-state-focused,
.moderinput_labeled .k-dropdown.k-state-focused {
  box-shadow: none;
}
.moderinput_labeled .k-multiselect.k-state-disabled,
.moderinput_labeled .k-dropdown.k-state-disabled,
.moderinput_labeled .k-multiselect.disabled,
.moderinput_labeled .k-dropdown.disabled {
  background: none;
}
.moderinput_labeled .k-multiselect.k-state-disabled ul li,
.moderinput_labeled .k-dropdown.k-state-disabled ul li,
.moderinput_labeled .k-multiselect.disabled ul li,
.moderinput_labeled .k-dropdown.disabled ul li {
  pointer-events: none;
  background: none;
  padding-right: 10px;
  color: var(--sg-legacy-grayColor, #656565);
}
.moderinput_labeled .k-multiselect.k-state-disabled ul li > *,
.moderinput_labeled .k-dropdown.k-state-disabled ul li > *,
.moderinput_labeled .k-multiselect.disabled ul li > *,
.moderinput_labeled .k-dropdown.disabled ul li > * {
  display: inline-block;
}
.moderinput_labeled .k-multiselect.k-state-disabled ul li:not(:last-child):after,
.moderinput_labeled .k-dropdown.k-state-disabled ul li:not(:last-child):after,
.moderinput_labeled .k-multiselect.disabled ul li:not(:last-child):after,
.moderinput_labeled .k-dropdown.disabled ul li:not(:last-child):after {
  content: ',';
}
.moderinput_labeled .k-multiselect.k-state-disabled .k-select,
.moderinput_labeled .k-dropdown.k-state-disabled .k-select,
.moderinput_labeled .k-multiselect.disabled .k-select,
.moderinput_labeled .k-dropdown.disabled .k-select,
.moderinput_labeled .k-multiselect.k-state-disabled .drag-io,
.moderinput_labeled .k-dropdown.k-state-disabled .drag-io,
.moderinput_labeled .k-multiselect.disabled .drag-io,
.moderinput_labeled .k-dropdown.disabled .drag-io {
  display: none !important;
}
.moderinput_labeled .k-multiselect.k-state-disabled ~ label,
.moderinput_labeled .k-dropdown.k-state-disabled ~ label,
.moderinput_labeled .k-multiselect.disabled ~ label,
.moderinput_labeled .k-dropdown.disabled ~ label,
.moderinput_labeled .k-multiselect.k-state-disabled .k-input,
.moderinput_labeled .k-dropdown.k-state-disabled .k-input,
.moderinput_labeled .k-multiselect.disabled .k-input,
.moderinput_labeled .k-dropdown.disabled .k-input {
  color: var(--sg-legacy-grayColor, #656565);
}
.moderinput_labeled .k-multiselect .k-input,
.moderinput_labeled .k-dropdown .k-input {
  margin-top: 3px;
  text-indent: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  display: block;
  height: initial;
  word-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.moderinput_labeled .k-multiselect .k-icon,
.moderinput_labeled .k-dropdown .k-icon {
  display: inline-block;
  margin-left: -3px;
  font-size: 14px;
}
.moderinput_labeled .k-multiselect {
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 0;
}
.moderinput_labeled .k-multiselect:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moderinput_labeled .k-multiselect:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moderinput_labeled .k-multiselect:before {
  position: absolute;
  right: 10px;
  top: 10px;
}
.moderinput_labeled .k-multiselect.k-header.k-state-hover,
.moderinput_labeled .k-multiselect.k-header.k-state-focused {
  box-shadow: none;
  background: none;
}
.moderinput_labeled .k-multiselect.k-no-click .tags-lst .tagItem {
  color: var(--sg-legacy-grayColor, #656565);
}
.moderinput_labeled .k-multiselect.k-state-disabled {
  pointer-events: none;
}
.moderinput_labeled .k-multiselect .k-multiselect-wrap {
  border: none;
  min-height: initial;
}
.moderinput_labeled .k-multiselect .k-multiselect-wrap > .k-clear-value {
  display: none;
}
.moderinput_labeled .k-multiselect .k-multiselect-wrap > .k-icon.k-i-close {
  display: none !important;
}
.moderinput_labeled .k-multiselect .drag-io {
  font-size: 9px;
  padding: 1px 5px;
}
.moderinput_labeled .k-multiselect .k-button.k-state-hover {
  background: transparent;
}
.moderinput_labeled .k-multiselect .k-button .k-select {
  display: inline-block;
}
.moderinput_labeled .k-multiselect .k-button:active,
.moderinput_labeled .k-multiselect .k-button.active {
  color: initial;
  border: 1px solid var(--sg-secondary-color, #106df9);
  background: var(--sg-color-legacy-74aafb, #74aafb);
}
.moderinput_labeled .k-dropdown {
  box-sizing: border-box;
}
.moderinput_labeled .k-dropdown .k-dropdown-wrap {
  border: none;
  min-height: initial;
  box-shadow: none;
}
.moderinput_labeled .wrapper .link {
  line-height: 38px;
}
.moderinput_labeled .calculated_field {
  cursor: text;
  width: 250px;
  min-height: inherit;
  line-height: 18px;
  padding: 9px 0 0 0;
}
.moderinput_labeled .k-dropdown,
.moderinput_labeled .k-multiselect,
.moderinput_labeled .wrapper {
  background: transparent;
  box-sizing: border-box;
  flex-grow: 1;
}
.moderinput_labeled .k-dropdown,
.moderinput_labeled .k-multiselect,
.moderinput_labeled .e-control-wrapper,
.moderinput_labeled .wrapper {
  margin-top: 0;
}
.moderinput_labeled .k-dropdown .k-dropdown-wrap,
.moderinput_labeled .k-multiselect .k-multiselect-wrap {
  line-height: 18px;
  flex-grow: 1;
  color: inherit;
}
.moderinput_labeled .k-dropdown .k-dropdown-wrap .shape,
.moderinput_labeled .k-multiselect .k-multiselect-wrap .shape {
  margin-right: 4px;
}
.moderinput_labeled .k-multiselect .k-multiselect-wrap {
  padding-top: 6px;
}
.moderinput_labeled label:not(.ui-customcssradio):not(.tgl-btn):not(.vm-switch) {
  box-sizing: border-box;
  font-size: 14px;
  position: relative;
  z-index: 0;
  width: 250px;
  line-height: 18px;
  padding: 10px 0;
  min-height: 18px;
  text-align: left;
  vertical-align: top;
  order: 1;
}
.moderinput_labeled.singleline input[type="text"],
.moderinput_labeled.singleline input[type="password"],
.moderinput_labeled.singleline .k-dropdown,
.moderinput_labeled.singleline .k-dropdown,
.moderinput_labeled.singleline .k-multiselect,
.moderinput_labeled.singleline .k-datepicker,
.moderinput_labeled.singleline .calculated_field {
  position: relative;
  z-index: 1;
}
.moderinput_labeled.singleline .k-dropdown {
  width: auto;
}
.moderinput_labeled.fluentwidth {
  width: auto !important;
}
.moderinput_labeled.fluentwidth input[type="text"],
.moderinput_labeled.fluentwidth input[type="password"] {
  box-sizing: content-box;
  width: auto;
}
.moderinput_labeled.rounded {
  border: 1px solid var(--sg-input-border-color, #c7c7c7);
  border-radius: 9px;
}
.moderinput_labeled.rounded .k-dropdown {
  border: 0;
}
.moderinput_labeled.rounded .k-input {
  color: var(--sg-secondary-color, #106df9);
}
.moderinput_labeled.rounded label {
  padding-left: 15px !important;
}
/*------------------------------------*\
    INPUT.LESS
\*------------------------------------*/
/**
 * input.less acts as a base stylesheet which descibe inputs behaviour
 **/
.gantt_grid_editor_placeholder div[role="cell"] {
  background-color: #ffc737;
}
.gantt_grid_editor_placeholder input[type="text"] {
  color: var(--sg-text-color, #000000);
  min-height: auto;
}
input.sg_entity__quicksearch[type="text"],
input.sg_entity__quicksearch[type="search"] {
  height: 34px;
  min-height: 34px;
  width: 100%;
  border: solid 1px var(--sg-cell-border-color, #e4e4e4);
  background-color: transparent;
  color: var(--sg-text-color, #000000);
  padding: 8px 10px 8px 30px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: width 0.2s ease-in-out;
  box-sizing: border-box;
}
input {
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff);
}
input[type="text"]::-ms-clear,
input[type="search"]::-ms-clear,
input[type="password"]::-ms-clear,
input.ui-date-input::-ms-clear,
input.k-datepicker::-ms-clear {
  display: none;
}
input[type="text"]:disabled,
input[type="search"]:disabled,
input[type="password"]:disabled,
input.ui-date-input:disabled,
input.k-datepicker:disabled {
  background-color: var(--sg-bg-color-disabled, #e8eef6);
}
input.ui-date-input,
input.k-datepicker {
  font-family: "Figtree";
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}
input[type="password"]:focus,
input[type="text"]:focus,
input[type="date"]:focus,
input.ui-date-input,
input.k-datepicker {
  outline: none;
  box-shadow: none;
}
input::placeholder {
  color: var(--sg-legacy-grayColor, #656565) !important;
}
input.error,
.chosen-container-single.error {
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-name: glow;
}
input.error .chosen-single.chosen-default,
.chosen-container-single.error .chosen-single.chosen-default {
  background-color: transparent;
}
input.kendo-chosen-container,
.chosen-container-single.kendo-chosen-container {
  text-indent: 0;
  padding: 0;
}
input.kendo-chosen-container .chosen-single,
.chosen-container-single.kendo-chosen-container .chosen-single {
  padding: 0;
}
input.kendo-chosen-container .chosen-single span,
.chosen-container-single.kendo-chosen-container .chosen-single span {
  margin-right: 0px !important;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  background: none !important;
  font-size: 12px;
  margin-top: -3px;
  opacity: 0.7;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  color: #dc3545;
}
select.error + button.ui-multiselect {
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-name: glow;
}
select.errorBoxBlink + button.ui-multiselect {
  -webkit-animation-name: errorBoxBlink;
  animation-name: errorBoxBlink;
}
select.animatedLong + button.ui-multiselect {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
input.ui-date-input,
input[type="text"],
input[type="date"],
input[type="password"],
input[type="search"],
input[type="number"],
.k-datepicker input {
  background-color: transparent;
  color: var(--sg-text-color, #000000);
  border-radius: 2px;
  border: 1px solid var(--sg-input-border-color, #c7c7c7);
  min-height: 34px;
  padding: 4px;
  box-sizing: border-box;
}
input.ui-date-input,
.k-datepicker input {
  box-sizing: border-box;
}
.ui-autocomplete {
  max-height: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 102;
}
.ui-autocomplete a:before {
  font-size: 10px;
  width: 20px;
  text-align: left;
  display: inline-block;
}
.ui-autocomplete a.finantialCategoryPositive:before {
  content: '\f067';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-autocomplete a.finantialCategoryPositive:before {
  content: '\f067';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-autocomplete a.finantialCategoryPositive:before {
  color: var(--sg-primary-button-color, #008a02);
}
.ui-autocomplete a.finantialCategoryNegative:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-autocomplete a.finantialCategoryNegative:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.ui-autocomplete a.finantialCategoryNegative:before {
  color: var(--sg-legacy-negativeColor, #ac330e);
}
.nowrapselect {
  min-width: 230px !important;
}
.nowrapselect .k-list .k-item {
  white-space: nowrap;
}
.rangetypeselect .chosen-results li {
  white-space: nowrap;
}
.rangetypeselect .k-select .k-icon {
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translate(0, -50%);
}
.rangetypeselect.chosen-container-single .chosen-single span,
.rangetypeselect .chosen-container-single .chosen-single span {
  margin-right: 7px !important;
}
.rangetypeselect.chosen-container-single .chosen-single span:last-child,
.rangetypeselect .chosen-container-single .chosen-single span:last-child {
  margin-right: 0 !important;
}
.rangetypeselect .e-list-item[data-value="Planned"]:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 9px;
  border: 4.5px solid;
  width: 7px;
  height: 7px;
  margin: -4px 4.5px 0 0;
  border: 2px solid #e791f0;
  color: #e791f0;
}
.rangetypeselect .e-list-item[data-value="Actual"]:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 11px;
  border: 5.5px solid;
  width: 7px;
  height: 7px;
  border: 2px solid var(--sg-primary-button-color, #008a02);
  margin: -4px 4.5px 0 0;
  color: var(--sg-primary-button-color, #008a02);
  background-color: var(--sg-primary-button-color, #008a02);
}
.rangetypeselect .e-list-item[data-value="Forecast"]:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 11px;
  border: 5.5px solid;
  width: 7px;
  height: 7px;
  border: 2px solid var(--sg-legacy-ForecastC, #ff9a52);
  margin: -4px 4.5px 0 0;
  color: var(--sg-legacy-ForecastC, #ff9a52);
  background-color: var(--sg-legacy-ForecastC, #ff9a52);
}
.rangetypeselect .e-list-item[data-value="Remaining"]:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 8px 4px;
  border-color: transparent transparent var(--sg-legacy-grayColor, #656565);
  margin: -4px 3px 0 1px;
  display: inline-block;
}
.rangetypeselect .data-type {
  padding: 5px;
}
.rangetypeselect .data-type.Planned:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 9px;
  border: 4.5px solid;
  width: 7px;
  height: 7px;
  margin: -4px 4.5px 0 0;
  border: 2px solid #e791f0;
  color: #e791f0;
}
.rangetypeselect .data-type.Actual:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 11px;
  border: 5.5px solid;
  width: 7px;
  height: 7px;
  border: 2px solid var(--sg-primary-button-color, #008a02);
  margin: -4px 4.5px 0 0;
  color: var(--sg-primary-button-color, #008a02);
  background-color: var(--sg-primary-button-color, #008a02);
}
.rangetypeselect .data-type.Remaining:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 8px 4px;
  border-color: transparent transparent var(--sg-legacy-grayColor, #656565);
  margin: -4px 3px 0 1px;
  display: inline-block;
}
.rangetypeselect .layt_selchosen {
  margin-right: 5px;
}
.rangetypeselect .layt_selchosen.planned:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 9px;
  border: 4.5px solid;
  width: 7px;
  height: 7px;
  margin: -4px 4.5px 0 0;
  border: 2px solid #e791f0;
  color: #e791f0;
}
.rangetypeselect .layt_selchosen.actual:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 11px;
  border: 5.5px solid;
  width: 7px;
  height: 7px;
  border: 2px solid var(--sg-primary-button-color, #008a02);
  margin: -4px 4.5px 0 0;
  color: var(--sg-primary-button-color, #008a02);
  background-color: var(--sg-primary-button-color, #008a02);
}
.rangetypeselect .layt_selchosen.forecast:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 11px;
  border: 5.5px solid;
  width: 7px;
  height: 7px;
  border: 2px solid var(--sg-legacy-ForecastC, #ff9a52);
  margin: -4px 4.5px 0 0;
  color: var(--sg-legacy-ForecastC, #ff9a52);
  background-color: var(--sg-legacy-ForecastC, #ff9a52);
}
.rangetypeselect .layt_selchosen.remaining:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 8px 4px;
  border-color: transparent transparent var(--sg-legacy-grayColor, #656565);
  margin: -4px 3px 0 1px;
  display: inline-block;
}
.rangetypeselect .layt_selchosen.budget:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.rangetypeselect .layt_selchosen.budget:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.rangetypeselect .layt_selchosen.budget:before {
  color: var(--sg-legacy-blueDef, #0874e7);
  font-size: 10px;
  margin-right: 3px;
}
.rangetypeselect .chosen-results {
  margin: 0 -14px;
  padding: 0;
}
.chosen-disabled {
  opacity: 1 !important;
  cursor: default;
}
.chosen-disabled.chosen-container-single .chosen-single {
  background-color: var(--sg-bg-color-disabled, #e8eef6);
}
.chosen-disabled .search-choice-close {
  display: none;
}
.chosen-container .chosen-drop {
  background: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000);
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%)) !important;
  border: none !important;
  border-radius: 10px !important;
}
.chosen-container .chosen-results {
  max-height: 150px;
}
.chosen-container .chosen-results li.highlighted {
  background: var(--sg-color-legacy-def2f9, #def2f9);
  color: var(--sg-text-color, #000000);
}
.chosen-container-multi .chosen-choices {
  background: transparent;
  border-radius: 0;
  border-color: var(--sg-table-border-color, #c7c7c7);
  box-shadow: none;
}
.chosen-container-multi .chosen-choices li.search-choice {
  background: none;
  border: none;
  box-shadow: none;
}
.chosen-container-active {
  box-shadow: none;
}
.chosen-container-active.chosen-with-drop .chosen-single div b:before {
  content: '\f0d8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chosen-container-active.chosen-with-drop .chosen-single div b:before {
  content: '\f0d8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chosen-container-single .chosen-single {
  background: var(--sg-bg-color, #ffffff);
  border-radius: 2px;
  border-color: var(--sg-table-border-color, #c7c7c7);
  box-shadow: none;
  height: 26px;
}
.chosen-container-single .chosen-single:focus {
  outline: none;
}
.chosen-container-single .chosen-single div b {
  background: none !important;
}
.chosen-container-single .chosen-single div b:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chosen-container-single .chosen-single div b:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.chosen-container-single .chosen-single div b:before {
  font-size: 14px;
  line-height: 14px;
}
.chosen-container-single .chosen-single span {
  display: inline-block;
  margin-right: 0;
}
.chosen-container-single .chosen-single > span {
  color: var(--sg-text-color, #000000);
  display: block;
  margin-right: 25px;
}
.chosen-container-single .chosen-single abbr {
  display: none;
}
.chosen-container-single.chosen-container-active .chosen-single {
  border-color: var(--sg-table-border-color, #c7c7c7);
}
.chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single {
  background: transparent;
  box-shadow: none;
  border-color: var(--sg-table-border-color, #c7c7c7);
}
.chosen-container-single.chosen-container .chosen-results {
  padding: 0;
}
.chosen-container-single.chosen-container .chosen-results li.highlighted {
  background: var(--sg-legacy-hvAct, #f0f8f9);
  color: var(--sg-text-color, #000000);
}
.chosen-container-single .chosen-search {
  display: none;
}
.chosen-container-single .chosen-search input[type=text] {
  border-color: var(--sg-input-border-color, #c7c7c7);
  border-width: 0 0 1px 0;
  padding-bottom: 5px;
  position: static;
}
.moderinput_daterange {
  width: 500px !important;
}
.moderinput_daterange label {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 14px;
  position: relative;
  z-index: 0;
  width: 240px;
  line-height: 18px;
  padding: 16px 0;
  min-height: 18px;
  text-align: left;
}
.moderinput_daterange__date {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--sg-legacy-SGHdBg, #eff8fb);
  display: inline-block;
  vertical-align: middle;
}
.moderinput_daterange__date input {
  font-weight: 600;
  border: 0;
  padding: 4px 28px 4px 8px;
  color: var(--sg-color-legacy-267eb2, #267eb2) !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent !important;
  width: 113px;
  min-height: initial;
  height: 28px;
  line-height: 20px;
}
.moderinput_daterange__date input::placeholder {
  color: var(--sg-color-legacy-267eb2, #267eb2) !important;
}
.moderinput_daterange__date .date-io {
  color: var(--sg-legacy-blueDef, #0874e7);
  position: absolute;
  top: 0;
  line-height: 28px;
  right: 8px;
  pointer-events: none;
}
.moderinput_daterange__date .date-io:before {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.moderinput_daterange .up-io {
  display: inline-block;
  vertical-align: middle;
  color: var(--sg-legacy-tableHeaderColor, #7fa0ac);
  padding: 0 4px;
}
.moderinput_daterange .up-io:before {
  display: inline-block;
  transform: rotate(90deg);
}
.moderswitch .labeled {
  width: 250px;
  display: inline-block;
  vertical-align: top;
  height: 18px;
  line-height: 18px;
  padding: 12px 0;
}
.moderswitch .labeled.nosize {
  width: auto;
  margin-right: 5px;
}
.moderswitch .tgl + .tgl-btn {
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
}
.animate-holder-input {
  position: relative;
  display: inline-block;
  vertical-align: top;
  /* LABEL ======================================= */
  /* active state */
  /* active state */
  /* BOTTOM BARS ================================= */
}
.animate-holder-input input,
.animate-holder-input .k-dropdown.k-header {
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  padding: 0;
  display: block;
  width: auto;
  border: none;
  border-bottom: 2px solid var(--sg-input-border-color, #c7c7c7);
  border-radius: 0;
  height: 40px;
  transition: width 0.5s ease-in-out;
}
.animate-holder-input input .k-input,
.animate-holder-input .k-dropdown.k-header .k-input {
  text-indent: 0;
}
.animate-holder-input input:focus,
.animate-holder-input .k-dropdown.k-header:focus {
  outline: none;
}
.animate-holder-input input:hover,
.animate-holder-input .k-dropdown.k-header:hover {
  border-bottom-color: #74aafb;
}
.animate-holder-input input:hover ~ label,
.animate-holder-input .k-dropdown.k-header:hover ~ label {
  color: var(--sg-secondary-color, #106df9);
}
.animate-holder-input label {
  color: var(--sg-color-legacy-999999, #999999);
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 5px;
  transition: 0.2s ease all;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.animate-holder-input input:focus ~ label,
.animate-holder-input input:valid ~ label,
.animate-holder-input input[type="text"]:disabled ~ label,
.animate-holder-input .k-dropdown ~ label {
  top: -4px;
  font-size: 9px;
  line-height: 1;
  color: var(--sg-text-color, #000000);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.animate-holder-input input[type="text"]:disabled {
  background: transparent;
  color: var(--sg-legacy-darkGray, #585858);
  border-color: transparent;
}
.animate-holder-input input[type="text"]:disabled ~ label {
  color: var(--sg-legacy-darkGray, #585858);
}
.animate-holder-input input:focus ~ .bar:before,
.animate-holder-input input:focus ~ .bar:after {
  width: 50%;
}
.animate-holder-input input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}
.animate-holder-input .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
.animate-holder-input .bar {
  position: relative;
  display: block;
  min-width: 120px;
}
.animate-holder-input .bar:before,
.animate-holder-input .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: var(--sg-secondary-color, #106df9);
  transition: 0.2s ease all;
}
.animate-holder-input .bar:before {
  left: 50%;
}
.animate-holder-input .bar:after {
  right: 50%;
}
input.sg_ctmfl__newfielval {
  box-shadow: initial;
}
input.sg_ctmfl__newfielval ~ .status-wrapper .status,
input.sg_update__fieldinput ~ .status-wrapper .status,
input.sg_ctmfl__calculatedval ~ .status-wrapper .status,
input.field-input ~ .status-wrapper .status {
  margin-left: 8px;
}
input.sg_ctmfl__newfielval.invalid ~ span.status,
input.sg_update__fieldinput.invalid ~ span.status,
input.sg_ctmfl__calculatedval.invalid ~ span.status,
input.field-input.invalid ~ span.status,
input.sg_ctmfl__newfielval.invalid ~ .status-wrapper .status,
input.sg_update__fieldinput.invalid ~ .status-wrapper .status,
input.sg_ctmfl__calculatedval.invalid ~ .status-wrapper .status,
input.field-input.invalid ~ .status-wrapper .status {
  color: #e92020;
}
input.sg_ctmfl__newfielval.invalid ~ span.status:before,
input.sg_update__fieldinput.invalid ~ span.status:before,
input.sg_ctmfl__calculatedval.invalid ~ span.status:before,
input.field-input.invalid ~ span.status:before,
input.sg_ctmfl__newfielval.invalid ~ .status-wrapper .status:before,
input.sg_update__fieldinput.invalid ~ .status-wrapper .status:before,
input.sg_ctmfl__calculatedval.invalid ~ .status-wrapper .status:before,
input.field-input.invalid ~ .status-wrapper .status:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
input.sg_ctmfl__newfielval.invalid ~ span.status:before,
input.sg_update__fieldinput.invalid ~ span.status:before,
input.sg_ctmfl__calculatedval.invalid ~ span.status:before,
input.field-input.invalid ~ span.status:before,
input.sg_ctmfl__newfielval.invalid ~ .status-wrapper .status:before,
input.sg_update__fieldinput.invalid ~ .status-wrapper .status:before,
input.sg_ctmfl__calculatedval.invalid ~ .status-wrapper .status:before,
input.field-input.invalid ~ .status-wrapper .status:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
input.sg_ctmfl__newfielval.valid ~ span.status,
input.sg_update__fieldinput.valid ~ span.status,
input.sg_ctmfl__calculatedval.valid ~ span.status,
input.field-input.valid ~ span.status,
input.sg_ctmfl__newfielval.valid ~ .status-wrapper .status,
input.sg_update__fieldinput.valid ~ .status-wrapper .status,
input.sg_ctmfl__calculatedval.valid ~ .status-wrapper .status,
input.field-input.valid ~ .status-wrapper .status {
  color: var(--sg-primary-button-color, #008a02);
}
input.sg_ctmfl__newfielval.valid ~ span.status:before,
input.sg_update__fieldinput.valid ~ span.status:before,
input.sg_ctmfl__calculatedval.valid ~ span.status:before,
input.field-input.valid ~ span.status:before,
input.sg_ctmfl__newfielval.valid ~ .status-wrapper .status:before,
input.sg_update__fieldinput.valid ~ .status-wrapper .status:before,
input.sg_ctmfl__calculatedval.valid ~ .status-wrapper .status:before,
input.field-input.valid ~ .status-wrapper .status:before {
  content: '\f00c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
input.sg_ctmfl__newfielval.valid ~ span.status:before,
input.sg_update__fieldinput.valid ~ span.status:before,
input.sg_ctmfl__calculatedval.valid ~ span.status:before,
input.field-input.valid ~ span.status:before,
input.sg_ctmfl__newfielval.valid ~ .status-wrapper .status:before,
input.sg_update__fieldinput.valid ~ .status-wrapper .status:before,
input.sg_ctmfl__calculatedval.valid ~ .status-wrapper .status:before,
input.field-input.valid ~ .status-wrapper .status:before {
  content: '\f00c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
input.sg_ctmfl__newfielval.checking ~ span.status,
input.sg_update__fieldinput.checking ~ span.status,
input.sg_ctmfl__calculatedval.checking ~ span.status,
input.field-input.checking ~ span.status,
input.sg_ctmfl__newfielval.checking ~ .status-wrapper .status,
input.sg_update__fieldinput.checking ~ .status-wrapper .status,
input.sg_ctmfl__calculatedval.checking ~ .status-wrapper .status,
input.field-input.checking ~ .status-wrapper .status {
  position: relative;
}
input.sg_ctmfl__newfielval.checking ~ span.status:before,
input.sg_update__fieldinput.checking ~ span.status:before,
input.sg_ctmfl__calculatedval.checking ~ span.status:before,
input.field-input.checking ~ span.status:before,
input.sg_ctmfl__newfielval.checking ~ .status-wrapper .status:before,
input.sg_update__fieldinput.checking ~ .status-wrapper .status:before,
input.sg_ctmfl__calculatedval.checking ~ .status-wrapper .status:before,
input.field-input.checking ~ .status-wrapper .status:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid var(--sg-color-legacy-888888, #888888);
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
input.sg_ctmfl__newfielval.checking ~ span.status:before,
input.sg_update__fieldinput.checking ~ span.status:before,
input.sg_ctmfl__calculatedval.checking ~ span.status:before,
input.field-input.checking ~ span.status:before,
input.sg_ctmfl__newfielval.checking ~ .status-wrapper .status:before,
input.sg_update__fieldinput.checking ~ .status-wrapper .status:before,
input.sg_ctmfl__calculatedval.checking ~ .status-wrapper .status:before,
input.field-input.checking ~ .status-wrapper .status:before {
  position: absolute;
  z-index: 2;
  left: -4px;
  top: 1px;
}
.k-state-selected.k-state-focused .list-item__deactivated {
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.list-item__deactivated {
  color: var(--sg-color-legacy-888888, #888888);
  text-decoration: line-through;
}
.list-item-enabled-false,
.k-dropdown.field-enabled-false .k-input {
  font-style: italic;
  color: var(--sg-legacy-grey, #6f6f6f);
}
.k-list .rangetypeselect .data-type {
  cursor: pointer;
  white-space: nowrap;
}
.k-list .rangetypeselect .data-type.selected {
  background-color: var(--sg-color-legacy-f1f1f1, #f1f1f1);
}
.k-list .rangetypeselect .data-type:hover {
  background-color: var(--sg-color-legacy-ededed, #ededed);
}
.input-shorted {
  max-width: 330px !important;
}
/*------------------------------------*\
    QUICKSEARCH.LESS
\*------------------------------------*/
/**
 * quicksearch.less describe quicksearch field
 **/
.sg_entity__quicksearch::-webkit-input-placeholder {
  color: var(--sg-color-legacy-979797, #979797);
}
.sg_entity__quicksearch:-placeholder {
  color: var(--sg-color-legacy-979797, #979797);
}
.sg_entity__quicksearch:-moz-placeholder {
  color: var(--sg-color-legacy-979797, #979797);
}
.sg_entity__quicksearch::-moz-placeholder {
  color: var(--sg-color-legacy-979797, #979797);
}
.sg_entity__quicksearch:-ms-input-placeholder {
  color: var(--sg-color-legacy-979797, #979797);
}
.sg_entity__quicksearch_wrapper {
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
.sg_entity__quicksearch_wrapper .search-io {
  color: var(--sg-legacy-grayColor, #656565);
  position: absolute;
  left: 10px;
  top: 6px;
  line-height: 18px;
  font-size: 12px;
}
/****************QUICK SEARCH SKEW**************************/
.sg_quickSearch__skew {
  position: relative;
}
.sg_quickSearch__skew.disabled {
  visibility: hidden;
}
.sg_quickSearch__skew .search-io {
  color: var(--sg-legacy-grayColor, #656565);
  position: absolute;
  left: 0;
  top: 11px;
  line-height: 18px;
  font-size: 12px;
}
.sg_quickSearch__skew:before {
  content: "";
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 38px 18px;
  border-color: transparent transparent var(--sg-color-legacy-ffffff, #ffffff) transparent;
  position: absolute;
  left: -18px;
}
.sg_quickSearch__skew input {
  background-color: var(--sg-color-legacy-ffffff, #ffffff);
  font-size: 14px;
  border: 0;
  width: 100%;
  color: var(--sg-color-legacy-9dc7e0, #9dc7e0);
  height: 38px;
  float: right;
  padding-left: 18px;
}
/****************END QUICK SEARCH SKEW**************************/
/*------------------------------------*\
    AUTOCOMPLETE.LESS
\*------------------------------------*/
/**
 * autocomplete.less describe autocomplete dropdown
 **/
.sg-autocompletedropdown-container {
  height: fit-content !important;
  width: 300px !important;
}
.sg-autocompletedropdown-container .sg-autocompletedropdown {
  width: 300px !important;
}
.sg-autocompletedropdown {
  overflow: hidden;
}
.sg-autocompletedropdown .ui-state-active {
  background-color: var(--sg-legacy-SGHdBg, #eff8fb);
  border: 0;
}
.sg-autocompletedropdown .finantialCategoryPositive:before {
  content: '\f067';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg-autocompletedropdown .finantialCategoryPositive:before {
  content: '\f067';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg-autocompletedropdown .finantialCategoryPositive:before {
  color: var(--sg-primary-button-color, #008a02);
  padding-right: 10px;
}
.sg-autocompletedropdown .finantialCategoryNegative:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg-autocompletedropdown .finantialCategoryNegative:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg-autocompletedropdown .finantialCategoryNegative:before {
  color: var(--sg-legacy-negativeColor, #ac330e);
  padding-right: 10px;
}
.sg-autocompletedropdown .team-resources-io--after::after {
  color: var(--sg-legacy-resource-team-indicator, #008575);
  margin-left: 5px;
}
.sg-autocompletedropdown .demand-planning {
  color: #9437ab;
}
.k-animation-container .listitem-enabled-false,
.sg-autocompletedropdown .listitem-enabled-false {
  font-style: italic;
  color: var(--sg-legacy-grey, #6f6f6f);
}
/*------------------------------------*\
    TOGGLEBUTTON.LESS
\*------------------------------------*/
/**
 * togglebutton.less describe switch
 **/
.tgl {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl + .tgl-btn {
  box-sizing: border-box;
}
.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl *::selection,
.tgl *:after::selection,
.tgl *:before::selection,
.tgl + .tgl-btn::selection {
  background: none;
}
.tgl:focus + .tgl-btn {
  outline: 2px solid #50beff;
  outline-offset: 2px;
}
.tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 2.5em;
  height: 20px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.tgl + .tgl-btn:after,
.tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}
.tgl + .tgl-btn:after {
  left: 0;
}
.tgl + .tgl-btn:before {
  display: none;
}
.tgl:checked + .tgl-btn:after {
  left: 50%;
}
.tgl-bool + .tgl-btn {
  background: var(--sg-legacy-tab-inactive-color, #e5eef9);
  border-radius: 2em;
  padding: 2px;
  transition: box-shadow 0.2s ease;
  border: 0;
  overflow: hidden;
}
.tgl-bool + .tgl-btn span {
  display: inline-block;
  width: 100%;
  position: absolute;
  line-height: 1.8em;
  font-weight: 600;
  font-size: 0;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.tgl-bool + .tgl-btn span:first-child {
  text-align: left;
  right: 100%;
}
.tgl-bool + .tgl-btn span:last-child {
  text-align: right;
  right: 9%;
  color: var(--sg-text-color, #000000);
}
.tgl-bool + .tgl-btn:after {
  border-radius: 2em;
  background: #ffffff;
  transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.4s ease, margin 0.4s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 1px rgba(0, 0, 0, 0.08);
}
.tgl-bool + .tgl-btn:hover:after {
  will-change: padding;
}
.tgl-bool + .tgl-btn:active {
  box-shadow: inset 0 0 0 2em var(--sg-color-legacy-eeeeee, #eeeeee);
}
.tgl-bool + .tgl-btn:active:after {
  padding-right: 0.8em;
}
.tgl-bool:checked + .tgl-btn {
  background: var(--sg-secondary-color, #106df9);
}
.tgl-bool:checked + .tgl-btn span:first-child {
  right: -10%;
}
.tgl-bool:checked + .tgl-btn span:last-child {
  right: -100%;
}
.tgl-bool:checked + .tgl-btn:active {
  box-shadow: none;
}
.tgl-bool:checked + .tgl-btn:active:after {
  margin-left: -0.8em;
}
.tgl-bool:disabled:checked + .tgl-btn,
.tgl-bool:disabled + .tgl-btn {
  background: var(--sg-bg-color-disabled, #e8eef6);
  cursor: default;
}
.tgl-bool:disabled:checked + .tgl-btn span,
.tgl-bool:disabled + .tgl-btn span {
  color: var(--sg-text-color, #000000);
}
.vm-switch {
  background-color: var(--sg-legacy-tab-inactive-color, #e5eef9);
  display: inline-block;
  position: relative;
  height: 20px;
  width: 35px;
  border-radius: 2em;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}
.vm-switch.focused {
  outline: 2px solid var(--sg-color-legacy-68a0c3, #68a0c3);
}
.vm-switch .vm-switch-button {
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  left: -2px;
  transition: all 0.3s linear;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 1px rgba(0, 0, 0, 0.08);
}
.vm-switch .vm-switch-button:hover {
  background-color: var(--sg-bg-color, #ffffff);
}
.vm-switch.toggled {
  background-color: var(--sg-secondary-color, #106df9);
}
.vm-switch.toggled.focused {
  outline: 2px solid var(--sg-color-legacy-419cff, #419cff);
}
.vm-switch.toggled .vm-switch-button {
  left: calc(100% - 18px + 2px);
}
.vm-switch.disabled {
  background-color: var(--sg-color-legacy-8db7d1, #8db7d1);
}
.vm-switch.disabled .vm-switch-button {
  background-color: var(--sg-color-legacy-596977, #596977);
}
.vm-switch .vm-switch-input {
  visibility: hidden;
  position: absolute;
}
/*------------------------------------*\
    DATESKEW.LESS
\*------------------------------------*/
/**
 * dateskew.less describe switch
 **/
/*DATESKEW*/
.sg-datepicker .sg-date-skew .k-picker-wrap:after {
  content: none;
}
.sg-datepicker .sg-date-skew .k-picker-wrap.k-state-focused {
  background-color: var(--sg-bg-color, #ffffff);
  outline: 2px solid var(--sg-color-legacy-2a91ff, #2a91ff);
}
.sg-datepicker .sg-date-skew .k-picker-wrap.k-state-focused .k-select {
  background-color: var(--sg-bg-color, #ffffff);
}
/*END DATE SKEW*/
.sg-date-rounded {
  display: flex;
  align-items: center;
}
.sg-date-rounded .daterange-wrapper__label {
  font-size: 14px;
  text-align: left;
  color: var(--sg-color-legacy-838383, #838383);
  margin-right: 10px;
}
.sg-date-rounded .daterange-wrapper__label--end {
  margin-left: 20px;
}
.sg-date-rounded.dp-holder {
  position: relative;
  opacity: 0.6;
}
.sg-date-rounded.dp-holder input {
  padding: 4px 8px;
  width: 130px;
  background-color: var(--sg-color-legacy-ecf4ff, #ecf4ff);
  color: var(--sg-text-color, #000000);
  border-radius: 8px;
  border: 1px solid var(--sg-legacy-material-blue-border, #ddebfe);
}
.sg-date-rounded.dp-holder .date-io {
  position: absolute;
  z-index: 1;
  top: 7px;
  right: 12px;
  color: var(--sg-legacy-bg-neutral, #6c757d);
}
.moderinput_labeled__dropcf,
.sg-datepicker.moderinput_labeled__input {
  border-bottom: none;
}
.moderinput_labeled__dropcf .k-picker-wrap,
.sg-datepicker.moderinput_labeled__input .k-picker-wrap {
  width: 100%;
  border: none !important;
  outline: none!important;
  box-shadow: none!important;
}
.moderinput_labeled__dropcf .k-picker-wrap .k-input,
.sg-datepicker.moderinput_labeled__input .k-picker-wrap .k-input {
  width: 100%;
}
.moderinput_labeled__dropcf .k-picker-wrap.k-state-focused:after,
.sg-datepicker.moderinput_labeled__input .k-picker-wrap.k-state-focused:after {
  content: none;
}
.moderinput_labeled__dropcf .k-widget.k-datepicker,
.sg-datepicker.moderinput_labeled__input .k-widget.k-datepicker {
  width: 100%;
}
.ui-date-input .sg-datepicker .k-datepicker {
  width: 100%;
}
.filter-term-date {
  width: 180px;
}
.filter-term-date .k-widget.k-datepicker {
  width: 180px;
}
.filter-term-date .k-widget .k-picker-wrap {
  border: 1px solid var(--sg-input-border-color, #c7c7c7) !important;
}
.filter-term-date .k-widget .k-picker-wrap .k-dateinput-wrap {
  background-color: transparent;
}
.sg_line__groupbuttonsection {
  display: inline-block;
}
.sg_line__groupbuttonsection input[type="radio"] {
  display: none;
}
.sg_line__groupbuttonsection input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--sg-text-color, #000000);
}
.sg_line__groupbuttonsection input[type="radio"]:not(:checked) + span {
  color: var(--sg-legacy-blueDef, #0874e7);
  cursor: pointer;
}
.sg_line__groupbuttonsection input[type="radio"]:not(:checked) + span:hover {
  color: #dc3545;
}
.sg_line__groupbuttonsection input[type="radio"] + span {
  display: inline-block;
  padding: 0 3px;
}
.sg-text-switch {
  white-space: normal;
  line-height: 24px;
}
.sg-text-switch label {
  white-space: nowrap;
}
.sg-text-switch label:not(:last-child):after {
  content: '/';
  color: var(--sg-legacy-grayColor, #656565);
  display: inline-block;
  padding: 0 2px;
}
.sg-text-switch input[type="radio"] {
  display: none;
}
.sg-text-switch input[type="radio"]:not(:checked) + span {
  color: var(--sg-legacy-blueDef, #0874e7);
  cursor: pointer;
}
.sg-text-switch input[type="radio"]:not(:checked) + span:hover {
  color: var(--sg-legacy-link-hover-cl, #e46a6a);
}
.sg-text-switch input[type="radio"]:checked {
  color: var(--sg-text-color, #000000);
  font-weight: 600;
}
.sg_update__cflayt {
  -webkit-user-select: initial;
  -moz-user-select: initial;
  user-select: initial;
  -ms-user-select: initial;
}
.sg_update__cflayt .customFieldsList_layt {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled {
  padding: 0 7px;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-readOnly {
  background-color: var(--sg-color-legacy-f7f7f7, #f7f7f7);
  border-color: var(--sg-color-legacy-ffffff, #ffffff) !important;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-readOnly * {
  color: var(--sg-legacy-grayColor, #656565) !important;
  opacity: 1 !important;
  background-color: var(--sg-color-legacy-f7f7f7, #f7f7f7) !important;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-readOnly .sg_update__fieldtext {
  border: none !important;
  resize: none;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-rich-readOnly {
  background-color: var(--sg-color-legacy-f7f7f7, #f7f7f7);
  border-color: var(--sg-color-legacy-ffffff, #ffffff) !important;
  padding-bottom: 7px;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-rich-readOnly * {
  pointer-events: none!important;
  opacity: 0.9 !important;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-rich-readOnly .rich-text-attr-view.disabled {
  background-color: #ffffff !important;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-rich-readOnly .rich-text-editor {
  background-color: #ffffff !important;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.sg-rich-readOnly .rich-text-editor .e-toolbar-wrapper {
  background-color: #ffffff !important;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled.no-bottom-border {
  border-bottom: none;
}
.sg_update__cflayt .customFieldsList_layt .moderinput_labeled .sg-datepicker .k-picker-wrap {
  border: none;
}
.sg_update__cflayt .customFieldsList_layt .sg_update__fieldtext,
.sg_update__cflayt .customFieldsList_layt .k-input,
.sg_update__cflayt .customFieldsList_layt .k-button {
  color: var(--sg-text-color, #000000) !important;
}
.sg_update__cflayt .customFieldsList_layt .sg_update__fieldtext {
  background-color: var(--sg-color-legacy-ffffff, #ffffff) !important;
  border: thin solid var(--sg-table-border-color, #c7c7c7);
  border-radius: 4px !important;
  color: var(--sg-text-color, #000000) !important;
}
.sg_update__cflayt .customFieldsList_layt .field-status {
  display: table-cell;
  padding-left: 20px;
  vertical-align: middle;
}
.sg_update__cflayt .customFieldsList_layt .field-status .bubble-action {
  margin-right: 5px;
}
.sg_update__cflayt .customFieldsList_layt > li {
  display: table-row;
}
.sg-customfields-table .field-status {
  display: table-cell;
  padding-left: 20px;
  vertical-align: middle;
}
.sg-customfields-table .field-status .bubble-action {
  margin-right: 5px;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) .customFieldControl.cascade + label,
.sg-customfields-table .moderinput_labeled:not(.singleline) .cascade-dropdown-view + label {
  font-weight: 600;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) .customFieldControl.text,
.sg-customfields-table .moderinput_labeled:not(.singleline) .customFieldControl.cascade,
.sg-customfields-table .moderinput_labeled:not(.singleline) .cf-richtext-string,
.sg-customfields-table .moderinput_labeled:not(.singleline) textarea {
  display: table-footer-group;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) .customFieldControl.text + label,
.sg-customfields-table .moderinput_labeled:not(.singleline) .customFieldControl.cascade + label,
.sg-customfields-table .moderinput_labeled:not(.singleline) .cf-richtext-string + label,
.sg-customfields-table .moderinput_labeled:not(.singleline) textarea + label {
  float: none !important;
  display: table-header-group;
  position: static;
  line-height: 30px;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) input[type="text"][disabled] {
  pointer-events: none;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) input[type="text"],
.sg-customfields-table .moderinput_labeled:not(.singleline) input[type="password"],
.sg-customfields-table .moderinput_labeled:not(.singleline) input[type="search"],
.sg-customfields-table .moderinput_labeled:not(.singleline) .k-multiselect,
.sg-customfields-table .moderinput_labeled:not(.singleline) .k-widget,
.sg-customfields-table .moderinput_labeled:not(.singleline) .calculated_field {
  position: relative;
  width: 250px !important;
  box-sizing: border-box;
  float: right;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) .calculated_field,
.sg-customfields-table .moderinput_labeled:not(.singleline) .k-multiselect,
.sg-customfields-table .moderinput_labeled:not(.singleline) .k-widget,
.sg-customfields-table .moderinput_labeled:not(.singleline) label {
  display: table-cell;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) label {
  padding-right: 10px;
  z-index: 0;
  word-wrap: break-word;
}
.sg-customfields-table .moderinput_labeled:not(.singleline) > span {
  display: block;
}
.sg-customfields-table .moderinput_labeled .k-dropdown .k-input {
  color: var(--sg-text-color, #000000);
}
.sg-customfields-table .moderinput_labeled .k-multiselect.toggle-close.k-state-border-up:before {
  transform: rotate(180deg);
  display: inline-block;
}
.sg-base-center {
  margin: 0 auto;
  max-width: 1250px;
}
.sg-material-listview {
  background: var(--sg-bg-color, #ffffff);
  border: 1px solid rgba(86, 86, 86, 0.16);
  box-shadow: 0px 3px 5px 0 color-mix(in srgb, black, transparent 95%);
  border-radius: 8px;
}
.material-list-item {
  min-height: 75px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  padding: 20px 30px;
  z-index: 1;
}
.material-list-item.material-list-item_highlighted {
  background-color: var(--sg-legacy-hvAct, #f0f8f9);
}
.material-list-item:not(:first-child) {
  border-top: 1px solid var(--sg-input-border-color, #c7c7c7);
}
.material-list-item:first-child {
  border-radius: 8px 8px 0 0;
}
.material-list-item:hover {
  background-color: var(--sg-color-legacy-f1f1f1, #f1f1f1);
}
.material-list-item:not(:first-child) {
  border-top: 1px solid var(--sg-input-border-color, #c7c7c7);
}
.material-list-item .bubble-button {
  margin-left: 5px;
  margin-top: 5px;
  border: 0;
  display: inline-flex;
}
.multi-view-page {
  display: flex;
  flex-direction: column;
}
.multi-view-wrapper {
  position: relative;
}
.multi-view-header {
  box-shadow: inset 0 -1px 0 var(--sg-color-legacy-e8e8e8, #e8e8e8);
  width: 100%;
}
.multi-view-header .base-row {
  min-height: 58px;
  display: flex;
  align-items: center;
}
.multi-view-header .sg-tabswitch {
  align-self: flex-end;
  display: flex;
  align-items: center;
}
.multi-view-header .sg-tabswitch input[type="radio"] + span {
  color: var(--sg-text-color, #000000);
  height: 58px;
  line-height: 58px;
  border-radius: 0;
  padding: 0;
  margin-left: 15px;
}
.multi-view-header .sg-tabswitch input[type="radio"]:disabled + span {
  cursor: default;
  color: var(--sg-legacy-grayColor, #656565);
}
.multi-view-header .sg-tabswitch input[type="radio"]:checked + span {
  color: var(--sg-legacy-link-cl, #0735cc);
  font-weight: 600;
  background-color: transparent;
  box-shadow: 0 -1px 0 var(--sg-legacy-blueDef, #0874e7) inset;
}
.multi-view-header .sg-tabswitch input[type="radio"]:not(:checked) + span:hover {
  background-color: transparent;
  color: #dc3545;
}
.multi-view-header .animate-holder-input {
  margin-right: 8px;
  line-height: 36px;
}
.multi-view-header .animate-holder-input input[type="text"] {
  border-bottom-width: 1px;
  padding-top: 14px;
  height: 58px;
  font-weight: 600;
  text-overflow: ellipsis;
}
.multi-view-header .animate-holder-input input[type="text"]:disabled {
  border-color: transparent;
}
.multi-view-header .animate-holder-input input[type="text"] ~ label {
  top: 14px;
}
.multi-view-header .sg_groupbuttonsection {
  margin-left: 8px;
}
.multi-view-header .sg_export__button,
.multi-view-header .green-button,
.multi-view-header .transparent-button-green,
.multi-view-header .pastel-button-blue {
  margin-left: 8px;
}
.header_navigation {
  margin-top: -16px;
  width: auto !important;
}
.header_navigation_dropdown {
  width: 300px !important;
  overflow: hidden;
}
.header_navigation_dropdown .k-list {
  padding: 15px 0;
}
.header_navigation_dropdown .k-list li.k-item {
  padding: 0 !important;
  box-sizing: border-box;
  pointer-events: none;
}
.header_navigation_dropdown .k-list li.k-item:focus {
  box-shadow: inset 0 0 0 2px color-mix(in srgb, transparent, var(--sg-text-color, #000000) 13%);
}
.header_navigation_dropdown .k-list li.k-item.k-state-selected:not(.k-state-hover) {
  background-color: transparent;
}
.header_navigation_dropdown .k-list li.k-item > span {
  display: flex;
  position: relative;
  padding: 10px 32px 10px 10px;
  height: 34px;
  box-sizing: border-box;
  pointer-events: all;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header_navigation_dropdown .k-list li.k-item > span:before {
  padding: 0 8px;
  box-sizing: border-box;
  width: 32px;
  display: inline-block;
  font-size: 14px;
}
.header_navigation_dropdown .k-list li.k-item .notify-bubble {
  position: absolute;
  box-sizing: border-box;
  padding: 2px 5px;
  min-width: 25px;
  text-align: center;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  color: #ffffff;
  background-color: #ff3c3c;
  border-radius: 10px;
}
.header_navigation_dropdown .k-list li.k-item .seperator {
  cursor: default;
  background-color: var(--sg-bg-color, #ffffff);
  pointer-events: none;
}
.header_navigation_dropdown .k-list li.k-item .seperator:before {
  content: '';
  width: calc(300px - 70px);
  height: 2px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(0, -50%);
  background-color: var(--sg-color-legacy-eeeeee, #eeeeee);
}
.header_navigation_dropdown .k-list li.k-item .external-url {
  font-weight: 600;
  padding-left: 40px;
  color: var(--sg-legacy-blueDef, #0874e7);
}
.header_navigation_dropdown .k-list li.k-item .spm-io:before {
  color: #9437ab;
}
.header_navigation_dropdown .k-list li.k-item .project-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.header_navigation_dropdown .k-list li.k-item .resourcemgmt-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.header_navigation_dropdown .k-list li.k-item .timesheetmgmt-io:before,
.header_navigation_dropdown .k-list li.k-item .mytimesheet-io:before {
  color: #018093;
  font-size: 16px;
}
.header_navigation_dropdown .k-list li.k-item .report-io:before {
  color: #d36b3f;
}
.header_navigation_dropdown .k-list li.k-item .bpafg-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.header_navigation_dropdown .k-list li.k-item .adminsettings-io:before {
  padding: 0 6px;
  font-size: 22px;
  color: var(--sg-primary-button-color, #008a02);
}
.header_navigation_dropdown .k-list li.k-item .logo-io:before {
  color: #9437ab;
}
.header_navigation_dropdown .k-list li.k-item .comments-io:before {
  color: #d36b3f;
}
.header_navigation_dropdown .k-list li.k-item .bulk-resource-io:before {
  padding: 0 6px;
  font-size: 22px;
  color: #d36b3f;
}
.header_navigation_dropdown .k-list li.k-item .roadmaps-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.header_navigation_dropdown .k-list li.k-item .budget-nav-io:before {
  padding: 0 6px;
  font-size: 22px;
  color: var(--sg-secondary-color, #106df9);
}
.header_navigation_dropdown .k-list li.k-item .all-resource-request-io:before,
.header_navigation_dropdown .k-list li.k-item .resource-request-io:before {
  padding: 0 6px;
  font-size: 22px;
  color: #9437ab;
}
.sg-admintime {
  padding-top: 10px;
}
.sg-admintime .sg_dominantUnit {
  margin-top: 0 !important;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}
.sg-admintime .sg_dominantUnit .sg_dominantUnit__marker {
  margin-right: 5px;
}
.entity-item[type="Resource"]:before,
.entity-item[type="Actee"]:before,
.entity-item[type="Actor"]:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="Resource"]:before,
.entity-item[type="Actee"]:before,
.entity-item[type="Actor"]:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="Resource"]:before,
.entity-item[type="Actee"]:before,
.entity-item[type="Actor"]:before {
  content: '\e90a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="Resource"]:before,
.entity-item[type="Actee"]:before,
.entity-item[type="Actor"]:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="Resource"]:before,
.entity-item[type="Actee"]:before,
.entity-item[type="Actor"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  margin-right: 2px;
}
.entity-item[type="AllResources"]:before,
.entity-item[type="AllActees"]:before,
.entity-item[type="AllActors"]:before,
.entity-item[type="AllDevotes"]:before,
.entity-item[type="AllManagers"]:before {
  content: '\e937';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="AllResources"]:before,
.entity-item[type="AllActees"]:before,
.entity-item[type="AllActors"]:before,
.entity-item[type="AllDevotes"]:before,
.entity-item[type="AllManagers"]:before {
  content: '\e937';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="AllResources"]:before,
.entity-item[type="AllActees"]:before,
.entity-item[type="AllActors"]:before,
.entity-item[type="AllDevotes"]:before,
.entity-item[type="AllManagers"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  margin-right: 2px;
  font-size: 11px;
}
.entity-item[type="Project"]:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="Project"]:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="Project"]:before {
  margin-right: 4px;
  color: var(--sg-legacy-grayColor, #656565);
}
.entity-item[type="Project"].project-template:before {
  content: "\f5ae";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="Project"].project-template:before {
  content: "\f5ae";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="ProjectSecurityGroup"]:before {
  content: '\e60c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="ProjectSecurityGroup"]:before {
  content: '\e60c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="ProjectSecurityGroup"]:before {
  margin-right: 4px;
  color: var(--sg-legacy-grayColor, #656565);
}
.entity-item[type="ActeeGlobalRole"]:before,
.entity-item[type="ActorGlobalRole"]:before,
.entity-item[type="GlobalRole"]:before {
  content: '\f29a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="ActeeGlobalRole"]:before,
.entity-item[type="ActorGlobalRole"]:before,
.entity-item[type="GlobalRole"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 15px;
  margin: 0 3px 0 -4px;
  vertical-align: top;
}
.entity-item[type="ResourceSecurityGroup"]:before,
.entity-item[type="ActeeSecurityGroup"]:before,
.entity-item[type="ActorSecurityGroup"]:before {
  content: '\e022';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="ResourceSecurityGroup"]:before,
.entity-item[type="ActeeSecurityGroup"]:before,
.entity-item[type="ActorSecurityGroup"]:before {
  content: '\e022';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="ResourceSecurityGroup"]:before,
.entity-item[type="ActeeSecurityGroup"]:before,
.entity-item[type="ActorSecurityGroup"]:before {
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 16px;
  margin: 0 3px 0 -5px;
  vertical-align: top;
}
.entity-item[type="AllProjects"]:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.entity-item[type="AllProjects"]:before {
  margin-right: 4px;
  color: var(--sg-legacy-grayColor, #656565);
}
.sg-radio-chips {
  display: inline-flex;
  flex-wrap: wrap;
  height: 30px;
  line-height: 30px;
  border-radius: 8px;
  border: 1px solid var(--sg-button-border-color, #cccccc);
}
.sg-radio-chips.sg_projectPlanKind {
  margin-left: 15px;
  position: relative;
}
.sg-radio-chips label {
  display: flex;
}
.sg-radio-chips label:first-child span {
  border-radius: 8px 0 0 8px;
}
.sg-radio-chips label:last-child span {
  border-radius: 0 8px 8px 0;
}
.sg-radio-chips label span {
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: var(--sg-text-color, #000000);
  letter-spacing: 0.3px;
}
.sg-radio-chips input[type="radio"] {
  display: none;
}
.sg-radio-chips input[type="radio"]:checked + span {
  background-color: var(--sg-secondary-color, #106df9);
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-weight: 600;
}
.pd-a15 {
  padding: 150px !important;
}
.pd-x15 {
  padding-left: 150px !important;
  padding-right: 150px !important;
}
.pd-y15 {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
.pd-l15 {
  padding-left: 150px !important;
}
.m-l15 {
  margin-left: 150px !important;
}
.pd-r15 {
  padding-right: 150px !important;
}
.m-r15 {
  margin-right: 150px !important;
}
.pd-b15 {
  padding-bottom: 150px !important;
}
.m-b15 {
  margin-bottom: 150px !important;
}
.pd-t15 {
  padding-top: 150px !important;
}
.m-t15 {
  margin-top: 150px !important;
}
.pd-a14 {
  padding: 140px !important;
}
.pd-x14 {
  padding-left: 140px !important;
  padding-right: 140px !important;
}
.pd-y14 {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}
.pd-l14 {
  padding-left: 140px !important;
}
.m-l14 {
  margin-left: 140px !important;
}
.pd-r14 {
  padding-right: 140px !important;
}
.m-r14 {
  margin-right: 140px !important;
}
.pd-b14 {
  padding-bottom: 140px !important;
}
.m-b14 {
  margin-bottom: 140px !important;
}
.pd-t14 {
  padding-top: 140px !important;
}
.m-t14 {
  margin-top: 140px !important;
}
.pd-a13 {
  padding: 130px !important;
}
.pd-x13 {
  padding-left: 130px !important;
  padding-right: 130px !important;
}
.pd-y13 {
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}
.pd-l13 {
  padding-left: 130px !important;
}
.m-l13 {
  margin-left: 130px !important;
}
.pd-r13 {
  padding-right: 130px !important;
}
.m-r13 {
  margin-right: 130px !important;
}
.pd-b13 {
  padding-bottom: 130px !important;
}
.m-b13 {
  margin-bottom: 130px !important;
}
.pd-t13 {
  padding-top: 130px !important;
}
.m-t13 {
  margin-top: 130px !important;
}
.pd-a12 {
  padding: 120px !important;
}
.pd-x12 {
  padding-left: 120px !important;
  padding-right: 120px !important;
}
.pd-y12 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}
.pd-l12 {
  padding-left: 120px !important;
}
.m-l12 {
  margin-left: 120px !important;
}
.pd-r12 {
  padding-right: 120px !important;
}
.m-r12 {
  margin-right: 120px !important;
}
.pd-b12 {
  padding-bottom: 120px !important;
}
.m-b12 {
  margin-bottom: 120px !important;
}
.pd-t12 {
  padding-top: 120px !important;
}
.m-t12 {
  margin-top: 120px !important;
}
.pd-a11 {
  padding: 110px !important;
}
.pd-x11 {
  padding-left: 110px !important;
  padding-right: 110px !important;
}
.pd-y11 {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}
.pd-l11 {
  padding-left: 110px !important;
}
.m-l11 {
  margin-left: 110px !important;
}
.pd-r11 {
  padding-right: 110px !important;
}
.m-r11 {
  margin-right: 110px !important;
}
.pd-b11 {
  padding-bottom: 110px !important;
}
.m-b11 {
  margin-bottom: 110px !important;
}
.pd-t11 {
  padding-top: 110px !important;
}
.m-t11 {
  margin-top: 110px !important;
}
.pd-a10 {
  padding: 100px !important;
}
.pd-x10 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.pd-y10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.pd-l10 {
  padding-left: 100px !important;
}
.m-l10 {
  margin-left: 100px !important;
}
.pd-r10 {
  padding-right: 100px !important;
}
.m-r10 {
  margin-right: 100px !important;
}
.pd-b10 {
  padding-bottom: 100px !important;
}
.m-b10 {
  margin-bottom: 100px !important;
}
.pd-t10 {
  padding-top: 100px !important;
}
.m-t10 {
  margin-top: 100px !important;
}
.pd-a9 {
  padding: 90px !important;
}
.pd-x9 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}
.pd-y9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
.pd-l9 {
  padding-left: 90px !important;
}
.m-l9 {
  margin-left: 90px !important;
}
.pd-r9 {
  padding-right: 90px !important;
}
.m-r9 {
  margin-right: 90px !important;
}
.pd-b9 {
  padding-bottom: 90px !important;
}
.m-b9 {
  margin-bottom: 90px !important;
}
.pd-t9 {
  padding-top: 90px !important;
}
.m-t9 {
  margin-top: 90px !important;
}
.pd-a8 {
  padding: 80px !important;
}
.pd-x8 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}
.pd-y8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.pd-l8 {
  padding-left: 80px !important;
}
.m-l8 {
  margin-left: 80px !important;
}
.pd-r8 {
  padding-right: 80px !important;
}
.m-r8 {
  margin-right: 80px !important;
}
.pd-b8 {
  padding-bottom: 80px !important;
}
.m-b8 {
  margin-bottom: 80px !important;
}
.pd-t8 {
  padding-top: 80px !important;
}
.m-t8 {
  margin-top: 80px !important;
}
.pd-a7 {
  padding: 70px !important;
}
.pd-x7 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}
.pd-y7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.pd-l7 {
  padding-left: 70px !important;
}
.m-l7 {
  margin-left: 70px !important;
}
.pd-r7 {
  padding-right: 70px !important;
}
.m-r7 {
  margin-right: 70px !important;
}
.pd-b7 {
  padding-bottom: 70px !important;
}
.m-b7 {
  margin-bottom: 70px !important;
}
.pd-t7 {
  padding-top: 70px !important;
}
.m-t7 {
  margin-top: 70px !important;
}
.pd-a6 {
  padding: 60px !important;
}
.pd-x6 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.pd-y6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.pd-l6 {
  padding-left: 60px !important;
}
.m-l6 {
  margin-left: 60px !important;
}
.pd-r6 {
  padding-right: 60px !important;
}
.m-r6 {
  margin-right: 60px !important;
}
.pd-b6 {
  padding-bottom: 60px !important;
}
.m-b6 {
  margin-bottom: 60px !important;
}
.pd-t6 {
  padding-top: 60px !important;
}
.m-t6 {
  margin-top: 60px !important;
}
.pd-a5 {
  padding: 50px !important;
}
.pd-x5 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.pd-y5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.pd-l5 {
  padding-left: 50px !important;
}
.m-l5 {
  margin-left: 50px !important;
}
.pd-r5 {
  padding-right: 50px !important;
}
.m-r5 {
  margin-right: 50px !important;
}
.pd-b5 {
  padding-bottom: 50px !important;
}
.m-b5 {
  margin-bottom: 50px !important;
}
.pd-t5 {
  padding-top: 50px !important;
}
.m-t5 {
  margin-top: 50px !important;
}
.pd-a4 {
  padding: 40px !important;
}
.pd-x4 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.pd-y4 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.pd-l4 {
  padding-left: 40px !important;
}
.m-l4 {
  margin-left: 40px !important;
}
.pd-r4 {
  padding-right: 40px !important;
}
.m-r4 {
  margin-right: 40px !important;
}
.pd-b4 {
  padding-bottom: 40px !important;
}
.m-b4 {
  margin-bottom: 40px !important;
}
.pd-t4 {
  padding-top: 40px !important;
}
.m-t4 {
  margin-top: 40px !important;
}
.pd-a3 {
  padding: 30px !important;
}
.pd-x3 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.pd-y3 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.pd-l3 {
  padding-left: 30px !important;
}
.m-l3 {
  margin-left: 30px !important;
}
.pd-r3 {
  padding-right: 30px !important;
}
.m-r3 {
  margin-right: 30px !important;
}
.pd-b3 {
  padding-bottom: 30px !important;
}
.m-b3 {
  margin-bottom: 30px !important;
}
.pd-t3 {
  padding-top: 30px !important;
}
.m-t3 {
  margin-top: 30px !important;
}
.pd-a2 {
  padding: 20px !important;
}
.pd-x2 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.pd-y2 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.pd-l2 {
  padding-left: 20px !important;
}
.m-l2 {
  margin-left: 20px !important;
}
.pd-r2 {
  padding-right: 20px !important;
}
.m-r2 {
  margin-right: 20px !important;
}
.pd-b2 {
  padding-bottom: 20px !important;
}
.m-b2 {
  margin-bottom: 20px !important;
}
.pd-t2 {
  padding-top: 20px !important;
}
.m-t2 {
  margin-top: 20px !important;
}
.pd-a1 {
  padding: 10px !important;
}
.pd-x1 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.pd-y1 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.pd-l1 {
  padding-left: 10px !important;
}
.m-l1 {
  margin-left: 10px !important;
}
.pd-r1 {
  padding-right: 10px !important;
}
.m-r1 {
  margin-right: 10px !important;
}
.pd-b1 {
  padding-bottom: 10px !important;
}
.m-b1 {
  margin-bottom: 10px !important;
}
.pd-t1 {
  padding-top: 10px !important;
}
.m-t1 {
  margin-top: 10px !important;
}
.pd-a0 {
  padding: 0px !important;
}
.pd-x0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.pd-y0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.pd-l0 {
  padding-left: 0px !important;
}
.m-l0 {
  margin-left: 0px !important;
}
.pd-r0 {
  padding-right: 0px !important;
}
.m-r0 {
  margin-right: 0px !important;
}
.pd-b0 {
  padding-bottom: 0px !important;
}
.m-b0 {
  margin-bottom: 0px !important;
}
.pd-t0 {
  padding-top: 0px !important;
}
.m-t0 {
  margin-top: 0px !important;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex !important;
}
.shrink-0 {
  flex-shrink: 0 !important;
}
.grow {
  flex-grow: 1;
}
.d-flex.direction-column,
.d-inline-flex.direction-column {
  flex-direction: column;
}
.d-flex.direction-row,
.d-inline-flex.direction-row {
  flex-direction: row;
}
.d-flex.shrink-0,
.d-inline-flex.shrink-0 {
  flex-shrink: 0;
}
.d-flex.align-top,
.d-inline-flex.align-top {
  align-items: flex-start;
}
.d-flex.align-end,
.d-inline-flex.align-end {
  align-items: flex-end;
}
.d-flex.align-center,
.d-inline-flex.align-center {
  align-items: center;
}
.d-flex.align-base,
.d-inline-flex.align-base {
  align-items: baseline;
}
.d-flex.wrap,
.d-inline-flex.wrap {
  flex-wrap: wrap;
}
.d-flex.wrap-reverse,
.d-inline-flex.wrap-reverse {
  flex-wrap: wrap-reverse;
}
.justify-center {
  justify-content: center;
  justify-items: center;
}
.justify-end {
  justify-content: flex-end;
  justify-items: end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-stretch {
  justify-content: stretch;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: end;
}
.align-top {
  align-items: flex-start;
}
.align-stretch {
  align-items: stretch;
}
.align-content-center {
  align-content: center;
}
.align-self-top {
  align-self: flex-start;
}
.align-self-end {
  align-self: flex-end;
}
.align-self-center {
  align-self: center;
}
.align-self-stretch {
  align-self: stretch;
}
.flex-grow-15 {
  flex-grow: 15;
}
.flex-grow-14 {
  flex-grow: 14;
}
.flex-grow-13 {
  flex-grow: 13;
}
.flex-grow-12 {
  flex-grow: 12;
}
.flex-grow-11 {
  flex-grow: 11;
}
.flex-grow-10 {
  flex-grow: 10;
}
.flex-grow-9 {
  flex-grow: 9;
}
.flex-grow-8 {
  flex-grow: 8;
}
.flex-grow-7 {
  flex-grow: 7;
}
.flex-grow-6 {
  flex-grow: 6;
}
.flex-grow-5 {
  flex-grow: 5;
}
.flex-grow-4 {
  flex-grow: 4;
}
.flex-grow-3 {
  flex-grow: 3;
}
.flex-grow-2 {
  flex-grow: 2;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-gap-15 {
  gap: 15px;
}
.flex-gap-14 {
  gap: 14px;
}
.flex-gap-13 {
  gap: 13px;
}
.flex-gap-12 {
  gap: 12px;
}
.flex-gap-11 {
  gap: 11px;
}
.flex-gap-10 {
  gap: 10px;
}
.flex-gap-9 {
  gap: 9px;
}
.flex-gap-8 {
  gap: 8px;
}
.flex-gap-7 {
  gap: 7px;
}
.flex-gap-6 {
  gap: 6px;
}
.flex-gap-5 {
  gap: 5px;
}
.flex-gap-4 {
  gap: 4px;
}
.flex-gap-3 {
  gap: 3px;
}
.flex-gap-2 {
  gap: 2px;
}
.flex-gap-1 {
  gap: 1px;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.align-text-right {
  text-align: right;
}
.align-text-center {
  text-align: center;
}
.non-zero {
  background-color: var(--sg-legacy-non-zero, #93e0fe) !important;
  border-top-color: var(--sg-legacy-non-zero, #93e0fe) !important;
  border-bottom-color: var(--sg-legacy-non-zero, #93e0fe) !important;
}
.button-material {
  color: var(--sg-text-color, #000000);
  border: 1px solid var(--sg-button-border-color, #cccccc) !important;
  border-radius: 10px;
  background-color: transparent;
  min-height: 34px;
  box-sizing: border-box;
  gap: 6px;
  cursor: pointer;
  padding: 5px 8px;
}
.button-material:hover {
  background-color: color-mix(in srgb, #14298b, transparent 97%);
  border-color: color-mix(in srgb, black, transparent 77%);
}
.button-material .k-select {
  display: inline-block;
  text-align: right;
  color: var(--sg-color-legacy-d4d4d4, #d4d4d4);
  font-size: 12px;
}
.button-material .k-select > .k-icon {
  height: 100%;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: end;
}
.button-material .k-select > .k-icon::before {
  vertical-align: middle;
}
.button-material .icon {
  font-size: 12px;
  font-style: normal;
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.button-material.red {
  color: var(--sg-color-legacy-d61919, #d61919);
  border: 1px solid #e4606d !important;
}
.sg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  line-height: 18px;
  padding: 0 5px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 9px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  min-width: 15px;
  background-color: var(--sg-legacy-bg-neutral, #6c757d);
}
.sg-badge.font-9 {
  font-size: 9px;
}
.sg-badge.font-10 {
  font-size: 10px;
  line-height: 18px;
  padding: 0 3px;
}
.sg-badge.font-11 {
  font-size: 11px;
}
.sg-badge.font-12 {
  font-size: 12px;
  line-height: 21px;
  padding: 0 5px;
}
.sg-badge.font-14 {
  font-size: 14px;
  line-height: 25px;
  padding: 0 7px;
}
.sg-badge.primary,
.sg-badge[status="submitted"],
.sg-badge.financials,
.sg-badge.live-data,
.sg-badge.green,
.sg-badge.budget {
  background-color: var(--sg-primary-button-color, #008a02) !important;
}
.sg-badge.secondary,
.sg-badge.timesheets-status,
.sg-badge[status="new"],
.sg-badge.allocation,
.sg-badge.dark-blue,
.sg-badge.prioritization {
  background-color: var(--sg-secondary-color, #106df9);
}
.sg-badge.bg-neutral,
.sg-badge.schedule,
.sg-badge.gray,
.sg-badge.dark-green {
  background-color: var(--sg-legacy-bg-neutral, #6c757d);
}
.sg-badge.bg-danger,
.sg-badge[status="rejected"],
.sg-badge.red,
.sg-badge.request,
.sg-badge.requestView {
  background-color: #dc3545;
}
.sg-badge.bg-warning,
.sg-badge[status="draft"],
.sg-badge.yellow,
.sg-badge.milestones {
  background-color: var(--sg-warning-color, #ffc107);
  color: #212529;
}
.sg-badge.bg-info,
.sg-badge.blue,
.sg-badge.attributes {
  background-color: #93e0fe;
  color: #212529;
}
.sg-badge.bg-pale-blue,
.sg-badge.pale-blue {
  background-color: #018093;
}
.sg-badge.bg-light,
.sg-badge[status="mark"],
.sg-badge[status="archived"],
.sg-badge[status="approved"] {
  background-color: #e0e7f1;
  color: #212529;
}
.sg-badge.outline {
  background-color: #e0e7f1;
  color: #212529;
  text-transform: none;
  font-weight: normal;
  font-size: inherit;
  line-height: 18px;
  letter-spacing: 0.2px;
}
.sg-badge.bg-dark {
  background-color: #2a333b;
}
.sg-badge.bg-required,
.sg-badge.bg-required-legend {
  background-color: #ffffff00;
  color: var(--sg-color-legacy-ff0000, #ff0000);
  font-size: 16px;
}
.sg-badge.bg-mint {
  background-color: #4be4df;
  color: #212529;
}
.sg-badge.bg-berry,
.sg-badge.pink,
.sg-badge.violet {
  background-color: #eeafd3;
  color: #212529;
}
.sg-badge.bg-grass,
.sg-badge.sheets {
  background-color: #8da334;
}
.sg-badge.bg-violet,
.sg-badge[status="retracted"],
.sg-badge.dark-violet,
.sg-badge.buildteam,
.sg-badge.workflow {
  background-color: #9437ab;
}
.sg-badge.bg-sand,
.sg-badge.brown,
.sg-badge.auditlog {
  background-color: #d36b3f;
}
.sg-badge.bg-tree,
.sg-badge.snapshots {
  background-color: #926354;
}
.sg-badge.documents {
  background-color: #018093;
}
.sg-badge.green_light,
.sg-badge.gray {
  color: #ffffff !important;
}
.ql-read-view {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-read-view > * {
  cursor: text;
}
.ql-read-view p,
.ql-read-view ol,
.ql-read-view pre,
.ql-read-view blockquote,
.ql-read-view h1,
.ql-read-view h2,
.ql-read-view h3,
.ql-read-view h4,
.ql-read-view h5,
.ql-read-view h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set: none) {
  .ql-read-view p,
  .ql-read-view h1,
  .ql-read-view h2,
  .ql-read-view h3,
  .ql-read-view h4,
  .ql-read-view h5,
  .ql-read-view h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view p,
  .ql-read-view h1,
  .ql-read-view h2,
  .ql-read-view h3,
  .ql-read-view h4,
  .ql-read-view h5,
  .ql-read-view h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-read-view table {
  border-collapse: collapse;
}
.ql-read-view td {
  border: 1px solid #000000;
  padding: 2px 5px;
}
.ql-read-view ol {
  padding-left: 1.5em;
}
.ql-read-view li {
  list-style-type: none;
  padding-left: 1.5em;
}
.ql-read-view li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
@supports (display: contents) {
  .ql-read-view li[data-list=bullet] > .ql-ui,
  .ql-read-view li[data-list=ordered] > .ql-ui {
    display: contents;
  }
}
.ql-read-view li[data-list=checked] > .ql-ui,
.ql-read-view li[data-list=unchecked] > .ql-ui {
  color: #777777;
}
.ql-read-view li[data-list=bullet] > .ql-ui:before {
  content: '\2022';
}
.ql-read-view li[data-list=checked] > .ql-ui:before {
  content: '\2611';
}
.ql-read-view li[data-list=unchecked] > .ql-ui:before {
  content: '\2610';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-read-view li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) '. ';
}
.ql-read-view li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-read-view li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-read-view li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-read-view li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-read-view li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-read-view li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-read-view li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-read-view li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-read-view li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) '. ';
}
@supports (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set: none) {
  .ql-read-view li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-read-view li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-read-view li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) '. ';
}
.ql-read-view .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-read-view li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-read-view .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-read-view li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-read-view .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-read-view li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-read-view .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-read-view li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-read-view .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-read-view li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-read-view .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-read-view li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-read-view .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-read-view li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-read-view .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-read-view li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-read-view .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-read-view li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-read-view .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-read-view li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-read-view .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-read-view li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-read-view .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-read-view li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-read-view .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-read-view li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-read-view .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-read-view li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-read-view .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-read-view li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-read-view .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-read-view li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-read-view .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-read-view li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-read-view .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-read-view li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-read-view li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-read-view li.ql-direction-rtl > .ql-ui:before {
  margin-left: 0.3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-read-view table {
  table-layout: fixed;
  width: 100%;
}
.ql-read-view table td {
  outline: none;
}
.ql-read-view .ql-code-block-container {
  font-family: monospace;
}
.ql-read-view .ql-video {
  display: block;
  max-width: 100%;
}
.ql-read-view .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-read-view .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-read-view .ql-bg-black {
  background-color: #000000;
}
.ql-read-view .ql-bg-red {
  background-color: #e60000;
}
.ql-read-view .ql-bg-orange {
  background-color: #ff9900;
}
.ql-read-view .ql-bg-yellow {
  background-color: #ffff00;
}
.ql-read-view .ql-bg-green {
  background-color: #008a00;
}
.ql-read-view .ql-bg-blue {
  background-color: #0066cc;
}
.ql-read-view .ql-bg-purple {
  background-color: #9933ff;
}
.ql-read-view .ql-color-white {
  color: #ffffff;
}
.ql-read-view .ql-color-red {
  color: #e60000;
}
.ql-read-view .ql-color-orange {
  color: #ff9900;
}
.ql-read-view .ql-color-yellow {
  color: #ffff00;
}
.ql-read-view .ql-color-green {
  color: #008a00;
}
.ql-read-view .ql-color-blue {
  color: #0066cc;
}
.ql-read-view .ql-color-purple {
  color: #9933ff;
}
.ql-read-view .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-read-view .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-read-view .ql-size-small {
  font-size: 0.75em;
}
.ql-read-view .ql-size-large {
  font-size: 1.5em;
}
.ql-read-view .ql-size-huge {
  font-size: 2.5em;
}
.ql-read-view .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-read-view .ql-align-center {
  text-align: center;
}
.ql-read-view .ql-align-justify {
  text-align: justify;
}
.ql-read-view .ql-align-right {
  text-align: right;
}
.ql-read-view .ql-ui {
  position: absolute;
}
.ql-read-view li > .ql-ui {
  position: static;
}
.ql-read-view.ql-blank::before {
  color: var(--sg-legacy-grayColor, #656565);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-editor.ql-blank::before {
  color: var(--sg-legacy-grayColor, #656565);
}
.e-avatar {
  align-content: center;
  align-items: center;
  background-color: var(--sg-color-legacy-b9b9b9, #b9b9b9);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  display: inline-flex;
  font-size: 1em;
  font-weight: 400;
  height: 3em;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 3em;
}
.e-avatar img {
  height: 100%;
  width: auto;
}
.e-avatar.e-avatar-circle {
  border-radius: 50%;
}
/*------------------------------------*\
    COMMON.CSS
\*------------------------------------*/
/**
 * common.css acts as a base stylesheet which describe common controls and pages
 **/
.sg-hidden-height {
  height: 0 !important;
  overflow: hidden !important;
  font-size: 0;
  margin: 0 !important;
}
.sg-hidden {
  display: none !important;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-unset {
  overflow: unset!important;
}
.sg-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.sg_invisible {
  visibility: hidden !important;
}
.sg_text_center {
  text-align: center !important;
}
.sg-clearfix:after {
  content: "";
  clear: both;
  display: table;
}
/****************END INPUT BUTTONS**************************/
.sg_keydescription,
.sg_ctmfl__list,
.log_txt {
  -webkit-user-select: initial;
  -moz-user-select: initial;
  user-select: initial;
  -ms-user-select: initial;
}
.sg-header {
  padding: 0 50px;
}
.sg-header,
.sg-header .sg-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 58px;
}
.sg-header.sg-header--sub {
  min-height: 50px;
}
.sg-header.sg-header--bordered {
  border-bottom: 1px solid var(--sg-color-legacy-e8e8e8, #e8e8e8);
  margin-top: 5px;
}
.sg-header:not(.sg-header--bordered) + .sg-header {
  border-top: 1px solid var(--sg-color-legacy-e8e8e8, #e8e8e8);
}
.sg-header .backbutton {
  margin: 0;
}
.sg-header .sg-title .sg_dominantUnit {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.sg-header .sg-title .sg_dominantUnit .sg_dominantUnit__marker {
  position: static;
  margin: 0 5px 0 0;
}
.sg-header .sg-title .sg_dominantUnit .sg_dominantUnit__marker::before {
  display: block;
}
.sg-header .animate-holder-input {
  line-height: 36px;
}
.sg-header .animate-holder-input input[type="text"] {
  border-bottom-width: 1px;
  padding-top: 14px;
  height: 58px;
  font-weight: 600;
}
.sg-header .animate-holder-input input[type="text"] ~ label {
  top: 14px;
}
.sg-header .sg-tabswitch input[type="radio"] + span {
  height: 55px;
  line-height: 58px;
  border-radius: 0;
  padding: 0;
}
.sg-header .sg-tabswitch input[type="radio"]:checked + span {
  color: var(--sg-legacy-activeColorHead, #3bb3ff);
  font-weight: 600;
  background-color: transparent;
  box-shadow: 0 2px 0 var(--sg-secondary-color, #106df9);
}
.sg-header .sg-tabswitch input[type="radio"]:not(:checked) + span:hover {
  background-color: transparent;
  color: #dc3545;
}
.status:before {
  margin-right: 5px;
  font-size: 12px;
}
.status.interrupted {
  color: var(--sg-legacy-grayColor, #656565);
}
.status.interrupted:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.interrupted:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.failed {
  color: var(--sg-legacy-failColor, #ff3c3c);
}
.status.failed:before {
  content: '\f165';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.failed:before {
  content: '\f165';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.dismissed {
  color: var(--sg-legacy-grayColor, #656565);
}
.status.dismissed:before {
  content: '\f1da';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.dismissed:before {
  content: '\f1da';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.inprogress {
  color: var(--sg-legacy-blueDef, #0874e7);
}
.status.inprogress:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.status.inprogress:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.inprogress:before {
  content: '\e609';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.status.inprogress:before {
  content: '\f017';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.status.conflicts {
  color: #eba714;
}
.status.conflicts:before {
  content: '\e626';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.status.conflicts:before {
  content: '\e626';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.status.successful {
  color: var(--sg-primary-button-color, #008a02);
}
.status.successful:before {
  content: '\f164';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.status.successful:before {
  content: '\f164';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_pwd__layt .sg_ctmfl__newfielinput,
.sg_pwd__layt .sg_ctmfl__newfielsection {
  padding: 0;
}
.sg_pwd__layt .status {
  position: absolute;
  margin-top: 3px;
  margin-left: 5px;
}
.success {
  color: var(--sg-primary-button-color, #008a02);
}
.error {
  color: var(--sg-legacy-failColor, #ff3c3c);
}
.info {
  color: var(--sg-legacy-blueDef, #0874e7);
}
.warning {
  color: #eba714;
}
.sg_global-hl .rc-handle {
  width: 10px;
  margin-left: -7px;
  text-align: center;
}
.sg_global-hl .rc-handle:hover:after {
  background-color: var(--sg-legacy-HeadBorderSelect, #90acd4);
}
.sg_global-hl .rc-handle:after {
  content: "";
  background-color: var(--sg-legacy-HeadBorder, #d2eeff);
  width: 2px;
  height: 22px;
  margin-top: 12px;
  display: inline-block;
}
.sg__list_nodata {
  line-height: 50px;
  padding-top: 15px;
  font-size: 14px;
  color: var(--sg-legacy-tableHeaderColor, #7fa0ac);
}
.sg_hidden {
  display: none !important;
}
.sg_dominantUnit {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.sg_dominantUnit__marker {
  position: absolute;
  right: 5px;
  top: -5px;
  z-index: 100;
  font-size: 8px;
  margin-top: 4px;
}
.sg_dominantUnit__marker:before {
  content: '\f005';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_dominantUnit__marker:before {
  content: '\f005';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sg_cf_type_acronym {
  position: absolute;
  right: 4px;
  text-align: right;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sg-legacy-grayColor, #656565);
  font-weight: 100;
}
.sg_sys_badge {
  position: absolute;
  right: 34px;
}
.sg_contextmenu__bulk {
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  margin: -5px 0 0 -15px;
  padding: 0 20px 8px 25px;
}
.sg_contextmenu__bulk > .disabled {
  color: var(--sg-legacy-grayColor, #656565);
}
.sg_gridFilter {
  margin: -5px 0 15px -15px;
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
  position: relative;
  line-height: 41px;
}
.sg_gridFilter .select-wrapper {
  position: absolute;
  top: 2px;
  left: 24px;
  z-index: 10;
}
.sg_gridFilter .select-wrapper input[type="checkbox"] {
  margin: 5px;
}
.sg_gridFilter .filter-wrapper {
  position: relative;
  margin-left: 30px;
}
.sg_gridFilter .filter-wrapper .search-clear-icon {
  position: absolute;
  top: 0;
  right: 35px;
}
.sg_gridFilter .layt_sort-container {
  display: inline-block;
  cursor: pointer;
  width: 20px;
  text-align: center;
  margin-right: 2px;
}
.sg_gridFilter .layt_sort-container .sg_sort_div {
  position: inherit;
}
.sg_gridFilter .layt_sort-container .sg_sort_div:not(.sorting_down):not(.sorting_up):before {
  content: '\f0dc';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_gridFilter .layt_sort-container .sg_sort_div:before {
  font-size: 12px;
}
.sg_gridFilter .layt_sort-container .sg_sort_div.link:before {
  color: var(--sg-secondary-color, #106df9);
}
.sg_gridFilter .search-io {
  position: absolute;
  color: var(--sg-legacy-grayColor, #656565);
  top: 0;
  right: 15px;
  z-index: -1;
}
.sg_gridFilter input[type="text"] {
  background: none;
  border: 0;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 60px;
  height: 34px;
}
.sg_gridFilter input[type="text"].no-selection {
  padding-left: 0;
}
.sg_tooltipLink {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.status-block {
  font-size: 9px;
  font-weight: 600;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  border-radius: 6px;
  line-height: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-block;
  vertical-align: top;
  padding: 0 5px;
  height: 15px;
}
.status-block,
.status-block[status="new"] {
  background: var(--sg-legacy-blueDef, #0874e7);
}
.status-block[status="mark"] {
  background-color: var(--sg-legacy-markStatusColor, #eff8fb);
  color: var(--sg-legacy-blueDef, #0874e7);
}
.status-block[status="submitted"] {
  background-color: var(--sg-primary-button-color, #008a02);
}
.status-block[status="rejected"] {
  background-color: #dc3545;
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.status-block[status="draft"] {
  background-color: var(--sg-warning-color, #ffc107);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.status-block[status="archived"],
.status-block[status="approved"] {
  background-color: var(--sg-status-block-approved-bg-color, #c7bbc7);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.status-block[status="retracted"] {
  background-color: var(--sg-legacy-violetS, #5970e7);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.bubble-action.readonly-legend-item {
  background-color: var(--sg-readonly-legend, #ff9a52);
}
.bubble-action.unique-legend-item {
  background-color: var(--sg-legacy-uninq-legend, #8abee5);
}
.bubble-action.system-legend-item {
  background-color: #9437ab;
}
.bubble-action.required-legend-item {
  background-color: var(--sg-legacy-required-legend, #da9f74);
}
.bubble-action.required-legend-item:after {
  margin-top: -2px;
  background-color: var(--sg-bg-color, #ffffff);
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
}
.bubble-action.green {
  background-color: var(--sg-color-legacy-50c8a1, #50c8a1);
}
.bubble-action.dark-green {
  background-color: var(--sg-color-legacy-a4cfaa, #a4cfaa);
}
.bubble-action.brown {
  background-color: var(--sg-color-legacy-e69057, #e69057);
}
.bubble-action.blue {
  background-color: var(--sg-legacy-blue-bubble, #36c0f0);
}
.bubble-action.dark-blue {
  background-color: var(--sg-color-legacy-5e96ff, #5e96ff);
}
.bubble-action.red {
  background-color: var(--sg-color-legacy-ec6a5d, #ec6a5d);
}
.bubble-action.pink {
  background-color: var(--sg-color-legacy-ff5eb6, #ff5eb6);
}
.bubble-action.yellow {
  background-color: var(--sg-color-legacy-fff2b5, #fff2b5);
  color: var(--sg-color-legacy-915928, #915928);
}
.bubble-action.violet {
  background-color: var(--sg-bubble-action-violet-bg-color, #c8b1d4);
}
.bubble-action.dark-violet {
  background-color: #8b68ff;
}
.bubble-action.gray {
  background-color: var(--sg-color-legacy-b9b9b9, #b9b9b9);
}
.bubble-action + span {
  display: inline-block;
}
.bubble-action + span:first-letter {
  text-transform: uppercase;
}
.sg_notify__amount {
  color: #ffffff;
  background-color: #ff3c3c;
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  border-radius: 25px;
  height: 24px;
  line-height: 24px;
  padding: 0 5px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
}
.acronym_line {
  position: relative;
  margin-right: -5px;
  padding-right: 80px;
}
.acronym_line .name_fl {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
textarea#HandsontableCopyPaste {
  opacity: 0;
  height: 0;
  width: 0;
}
revo-grid {
  font-family: "Figtree" !important;
  font-size: 14px;
  color: var(--sg-text-color, #000000);
  --revo-grid-focused-bg: var(--sg-legacy-row-bg, #ffffff);
}
revo-grid .selection-border-range .mobile-handler {
  display: none !important;
}
revo-grid[theme] revogr-header {
  font-weight: 500;
}
revo-grid .no-resize {
  display: none !important;
}
revo-grid revogr-attribution {
  display: none !important;
}
revo-grid[theme=material] .rgHeaderCell,
revo-grid[theme=compact] .rgHeaderCell {
  box-shadow: -1px 0 0 var(--sg-cell-border-color, #e4e4e4) inset;
}
revo-grid[theme=material] .footer-wrapper revogr-data,
revo-grid[theme=compact] .footer-wrapper revogr-data {
  box-shadow: none;
}
revo-grid[theme=material] .rgRow.groupingRow,
revo-grid[theme=compact] .rgRow.groupingRow {
  box-shadow: 0 1px 0 var(--sg-cell-border-color, #e4e4e4);
  z-index: 1;
}
revo-grid[theme=material] .rgRow:not(.groupingRow),
revo-grid[theme=compact] .rgRow:not(.groupingRow) {
  box-shadow: none;
}
revo-grid[theme=material] .rgCell,
revo-grid[theme=compact] .rgCell {
  box-shadow: -1px 0 0 var(--sg-cell-border-color, #e4e4e4) inset, 0 -1px 0 var(--sg-cell-border-color, #e4e4e4) inset;
}
revo-grid.column-draggable .rgHeaderCell {
  cursor: grab;
}
revo-grid.column-draggable .rgHeaderCell .title-column-cell,
revo-grid.column-draggable .rgHeaderCell .entity-select-control {
  cursor: default;
}
.no-items {
  margin-top: 82px;
  text-align: center;
}
.no-items .no-item-text {
  font-size: 18px;
  color: #979797;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.d-none {
  display: none !important;
}
.ml-100,
.mx-100 {
  margin-left: 100px !important;
}
.mt-100,
.my-100 {
  margin-top: 100px !important;
}
.mr-100,
.mx-100 {
  margin-right: 100px !important;
}
.mb-100,
.my-100 {
  margin-bottom: 100px !important;
}
.ml-99,
.mx-99 {
  margin-left: 99px !important;
}
.mt-99,
.my-99 {
  margin-top: 99px !important;
}
.mr-99,
.mx-99 {
  margin-right: 99px !important;
}
.mb-99,
.my-99 {
  margin-bottom: 99px !important;
}
.ml-98,
.mx-98 {
  margin-left: 98px !important;
}
.mt-98,
.my-98 {
  margin-top: 98px !important;
}
.mr-98,
.mx-98 {
  margin-right: 98px !important;
}
.mb-98,
.my-98 {
  margin-bottom: 98px !important;
}
.ml-97,
.mx-97 {
  margin-left: 97px !important;
}
.mt-97,
.my-97 {
  margin-top: 97px !important;
}
.mr-97,
.mx-97 {
  margin-right: 97px !important;
}
.mb-97,
.my-97 {
  margin-bottom: 97px !important;
}
.ml-96,
.mx-96 {
  margin-left: 96px !important;
}
.mt-96,
.my-96 {
  margin-top: 96px !important;
}
.mr-96,
.mx-96 {
  margin-right: 96px !important;
}
.mb-96,
.my-96 {
  margin-bottom: 96px !important;
}
.ml-95,
.mx-95 {
  margin-left: 95px !important;
}
.mt-95,
.my-95 {
  margin-top: 95px !important;
}
.mr-95,
.mx-95 {
  margin-right: 95px !important;
}
.mb-95,
.my-95 {
  margin-bottom: 95px !important;
}
.ml-94,
.mx-94 {
  margin-left: 94px !important;
}
.mt-94,
.my-94 {
  margin-top: 94px !important;
}
.mr-94,
.mx-94 {
  margin-right: 94px !important;
}
.mb-94,
.my-94 {
  margin-bottom: 94px !important;
}
.ml-93,
.mx-93 {
  margin-left: 93px !important;
}
.mt-93,
.my-93 {
  margin-top: 93px !important;
}
.mr-93,
.mx-93 {
  margin-right: 93px !important;
}
.mb-93,
.my-93 {
  margin-bottom: 93px !important;
}
.ml-92,
.mx-92 {
  margin-left: 92px !important;
}
.mt-92,
.my-92 {
  margin-top: 92px !important;
}
.mr-92,
.mx-92 {
  margin-right: 92px !important;
}
.mb-92,
.my-92 {
  margin-bottom: 92px !important;
}
.ml-91,
.mx-91 {
  margin-left: 91px !important;
}
.mt-91,
.my-91 {
  margin-top: 91px !important;
}
.mr-91,
.mx-91 {
  margin-right: 91px !important;
}
.mb-91,
.my-91 {
  margin-bottom: 91px !important;
}
.ml-90,
.mx-90 {
  margin-left: 90px !important;
}
.mt-90,
.my-90 {
  margin-top: 90px !important;
}
.mr-90,
.mx-90 {
  margin-right: 90px !important;
}
.mb-90,
.my-90 {
  margin-bottom: 90px !important;
}
.ml-89,
.mx-89 {
  margin-left: 89px !important;
}
.mt-89,
.my-89 {
  margin-top: 89px !important;
}
.mr-89,
.mx-89 {
  margin-right: 89px !important;
}
.mb-89,
.my-89 {
  margin-bottom: 89px !important;
}
.ml-88,
.mx-88 {
  margin-left: 88px !important;
}
.mt-88,
.my-88 {
  margin-top: 88px !important;
}
.mr-88,
.mx-88 {
  margin-right: 88px !important;
}
.mb-88,
.my-88 {
  margin-bottom: 88px !important;
}
.ml-87,
.mx-87 {
  margin-left: 87px !important;
}
.mt-87,
.my-87 {
  margin-top: 87px !important;
}
.mr-87,
.mx-87 {
  margin-right: 87px !important;
}
.mb-87,
.my-87 {
  margin-bottom: 87px !important;
}
.ml-86,
.mx-86 {
  margin-left: 86px !important;
}
.mt-86,
.my-86 {
  margin-top: 86px !important;
}
.mr-86,
.mx-86 {
  margin-right: 86px !important;
}
.mb-86,
.my-86 {
  margin-bottom: 86px !important;
}
.ml-85,
.mx-85 {
  margin-left: 85px !important;
}
.mt-85,
.my-85 {
  margin-top: 85px !important;
}
.mr-85,
.mx-85 {
  margin-right: 85px !important;
}
.mb-85,
.my-85 {
  margin-bottom: 85px !important;
}
.ml-84,
.mx-84 {
  margin-left: 84px !important;
}
.mt-84,
.my-84 {
  margin-top: 84px !important;
}
.mr-84,
.mx-84 {
  margin-right: 84px !important;
}
.mb-84,
.my-84 {
  margin-bottom: 84px !important;
}
.ml-83,
.mx-83 {
  margin-left: 83px !important;
}
.mt-83,
.my-83 {
  margin-top: 83px !important;
}
.mr-83,
.mx-83 {
  margin-right: 83px !important;
}
.mb-83,
.my-83 {
  margin-bottom: 83px !important;
}
.ml-82,
.mx-82 {
  margin-left: 82px !important;
}
.mt-82,
.my-82 {
  margin-top: 82px !important;
}
.mr-82,
.mx-82 {
  margin-right: 82px !important;
}
.mb-82,
.my-82 {
  margin-bottom: 82px !important;
}
.ml-81,
.mx-81 {
  margin-left: 81px !important;
}
.mt-81,
.my-81 {
  margin-top: 81px !important;
}
.mr-81,
.mx-81 {
  margin-right: 81px !important;
}
.mb-81,
.my-81 {
  margin-bottom: 81px !important;
}
.ml-80,
.mx-80 {
  margin-left: 80px !important;
}
.mt-80,
.my-80 {
  margin-top: 80px !important;
}
.mr-80,
.mx-80 {
  margin-right: 80px !important;
}
.mb-80,
.my-80 {
  margin-bottom: 80px !important;
}
.ml-79,
.mx-79 {
  margin-left: 79px !important;
}
.mt-79,
.my-79 {
  margin-top: 79px !important;
}
.mr-79,
.mx-79 {
  margin-right: 79px !important;
}
.mb-79,
.my-79 {
  margin-bottom: 79px !important;
}
.ml-78,
.mx-78 {
  margin-left: 78px !important;
}
.mt-78,
.my-78 {
  margin-top: 78px !important;
}
.mr-78,
.mx-78 {
  margin-right: 78px !important;
}
.mb-78,
.my-78 {
  margin-bottom: 78px !important;
}
.ml-77,
.mx-77 {
  margin-left: 77px !important;
}
.mt-77,
.my-77 {
  margin-top: 77px !important;
}
.mr-77,
.mx-77 {
  margin-right: 77px !important;
}
.mb-77,
.my-77 {
  margin-bottom: 77px !important;
}
.ml-76,
.mx-76 {
  margin-left: 76px !important;
}
.mt-76,
.my-76 {
  margin-top: 76px !important;
}
.mr-76,
.mx-76 {
  margin-right: 76px !important;
}
.mb-76,
.my-76 {
  margin-bottom: 76px !important;
}
.ml-75,
.mx-75 {
  margin-left: 75px !important;
}
.mt-75,
.my-75 {
  margin-top: 75px !important;
}
.mr-75,
.mx-75 {
  margin-right: 75px !important;
}
.mb-75,
.my-75 {
  margin-bottom: 75px !important;
}
.ml-74,
.mx-74 {
  margin-left: 74px !important;
}
.mt-74,
.my-74 {
  margin-top: 74px !important;
}
.mr-74,
.mx-74 {
  margin-right: 74px !important;
}
.mb-74,
.my-74 {
  margin-bottom: 74px !important;
}
.ml-73,
.mx-73 {
  margin-left: 73px !important;
}
.mt-73,
.my-73 {
  margin-top: 73px !important;
}
.mr-73,
.mx-73 {
  margin-right: 73px !important;
}
.mb-73,
.my-73 {
  margin-bottom: 73px !important;
}
.ml-72,
.mx-72 {
  margin-left: 72px !important;
}
.mt-72,
.my-72 {
  margin-top: 72px !important;
}
.mr-72,
.mx-72 {
  margin-right: 72px !important;
}
.mb-72,
.my-72 {
  margin-bottom: 72px !important;
}
.ml-71,
.mx-71 {
  margin-left: 71px !important;
}
.mt-71,
.my-71 {
  margin-top: 71px !important;
}
.mr-71,
.mx-71 {
  margin-right: 71px !important;
}
.mb-71,
.my-71 {
  margin-bottom: 71px !important;
}
.ml-70,
.mx-70 {
  margin-left: 70px !important;
}
.mt-70,
.my-70 {
  margin-top: 70px !important;
}
.mr-70,
.mx-70 {
  margin-right: 70px !important;
}
.mb-70,
.my-70 {
  margin-bottom: 70px !important;
}
.ml-69,
.mx-69 {
  margin-left: 69px !important;
}
.mt-69,
.my-69 {
  margin-top: 69px !important;
}
.mr-69,
.mx-69 {
  margin-right: 69px !important;
}
.mb-69,
.my-69 {
  margin-bottom: 69px !important;
}
.ml-68,
.mx-68 {
  margin-left: 68px !important;
}
.mt-68,
.my-68 {
  margin-top: 68px !important;
}
.mr-68,
.mx-68 {
  margin-right: 68px !important;
}
.mb-68,
.my-68 {
  margin-bottom: 68px !important;
}
.ml-67,
.mx-67 {
  margin-left: 67px !important;
}
.mt-67,
.my-67 {
  margin-top: 67px !important;
}
.mr-67,
.mx-67 {
  margin-right: 67px !important;
}
.mb-67,
.my-67 {
  margin-bottom: 67px !important;
}
.ml-66,
.mx-66 {
  margin-left: 66px !important;
}
.mt-66,
.my-66 {
  margin-top: 66px !important;
}
.mr-66,
.mx-66 {
  margin-right: 66px !important;
}
.mb-66,
.my-66 {
  margin-bottom: 66px !important;
}
.ml-65,
.mx-65 {
  margin-left: 65px !important;
}
.mt-65,
.my-65 {
  margin-top: 65px !important;
}
.mr-65,
.mx-65 {
  margin-right: 65px !important;
}
.mb-65,
.my-65 {
  margin-bottom: 65px !important;
}
.ml-64,
.mx-64 {
  margin-left: 64px !important;
}
.mt-64,
.my-64 {
  margin-top: 64px !important;
}
.mr-64,
.mx-64 {
  margin-right: 64px !important;
}
.mb-64,
.my-64 {
  margin-bottom: 64px !important;
}
.ml-63,
.mx-63 {
  margin-left: 63px !important;
}
.mt-63,
.my-63 {
  margin-top: 63px !important;
}
.mr-63,
.mx-63 {
  margin-right: 63px !important;
}
.mb-63,
.my-63 {
  margin-bottom: 63px !important;
}
.ml-62,
.mx-62 {
  margin-left: 62px !important;
}
.mt-62,
.my-62 {
  margin-top: 62px !important;
}
.mr-62,
.mx-62 {
  margin-right: 62px !important;
}
.mb-62,
.my-62 {
  margin-bottom: 62px !important;
}
.ml-61,
.mx-61 {
  margin-left: 61px !important;
}
.mt-61,
.my-61 {
  margin-top: 61px !important;
}
.mr-61,
.mx-61 {
  margin-right: 61px !important;
}
.mb-61,
.my-61 {
  margin-bottom: 61px !important;
}
.ml-60,
.mx-60 {
  margin-left: 60px !important;
}
.mt-60,
.my-60 {
  margin-top: 60px !important;
}
.mr-60,
.mx-60 {
  margin-right: 60px !important;
}
.mb-60,
.my-60 {
  margin-bottom: 60px !important;
}
.ml-59,
.mx-59 {
  margin-left: 59px !important;
}
.mt-59,
.my-59 {
  margin-top: 59px !important;
}
.mr-59,
.mx-59 {
  margin-right: 59px !important;
}
.mb-59,
.my-59 {
  margin-bottom: 59px !important;
}
.ml-58,
.mx-58 {
  margin-left: 58px !important;
}
.mt-58,
.my-58 {
  margin-top: 58px !important;
}
.mr-58,
.mx-58 {
  margin-right: 58px !important;
}
.mb-58,
.my-58 {
  margin-bottom: 58px !important;
}
.ml-57,
.mx-57 {
  margin-left: 57px !important;
}
.mt-57,
.my-57 {
  margin-top: 57px !important;
}
.mr-57,
.mx-57 {
  margin-right: 57px !important;
}
.mb-57,
.my-57 {
  margin-bottom: 57px !important;
}
.ml-56,
.mx-56 {
  margin-left: 56px !important;
}
.mt-56,
.my-56 {
  margin-top: 56px !important;
}
.mr-56,
.mx-56 {
  margin-right: 56px !important;
}
.mb-56,
.my-56 {
  margin-bottom: 56px !important;
}
.ml-55,
.mx-55 {
  margin-left: 55px !important;
}
.mt-55,
.my-55 {
  margin-top: 55px !important;
}
.mr-55,
.mx-55 {
  margin-right: 55px !important;
}
.mb-55,
.my-55 {
  margin-bottom: 55px !important;
}
.ml-54,
.mx-54 {
  margin-left: 54px !important;
}
.mt-54,
.my-54 {
  margin-top: 54px !important;
}
.mr-54,
.mx-54 {
  margin-right: 54px !important;
}
.mb-54,
.my-54 {
  margin-bottom: 54px !important;
}
.ml-53,
.mx-53 {
  margin-left: 53px !important;
}
.mt-53,
.my-53 {
  margin-top: 53px !important;
}
.mr-53,
.mx-53 {
  margin-right: 53px !important;
}
.mb-53,
.my-53 {
  margin-bottom: 53px !important;
}
.ml-52,
.mx-52 {
  margin-left: 52px !important;
}
.mt-52,
.my-52 {
  margin-top: 52px !important;
}
.mr-52,
.mx-52 {
  margin-right: 52px !important;
}
.mb-52,
.my-52 {
  margin-bottom: 52px !important;
}
.ml-51,
.mx-51 {
  margin-left: 51px !important;
}
.mt-51,
.my-51 {
  margin-top: 51px !important;
}
.mr-51,
.mx-51 {
  margin-right: 51px !important;
}
.mb-51,
.my-51 {
  margin-bottom: 51px !important;
}
.ml-50,
.mx-50 {
  margin-left: 50px !important;
}
.mt-50,
.my-50 {
  margin-top: 50px !important;
}
.mr-50,
.mx-50 {
  margin-right: 50px !important;
}
.mb-50,
.my-50 {
  margin-bottom: 50px !important;
}
.ml-49,
.mx-49 {
  margin-left: 49px !important;
}
.mt-49,
.my-49 {
  margin-top: 49px !important;
}
.mr-49,
.mx-49 {
  margin-right: 49px !important;
}
.mb-49,
.my-49 {
  margin-bottom: 49px !important;
}
.ml-48,
.mx-48 {
  margin-left: 48px !important;
}
.mt-48,
.my-48 {
  margin-top: 48px !important;
}
.mr-48,
.mx-48 {
  margin-right: 48px !important;
}
.mb-48,
.my-48 {
  margin-bottom: 48px !important;
}
.ml-47,
.mx-47 {
  margin-left: 47px !important;
}
.mt-47,
.my-47 {
  margin-top: 47px !important;
}
.mr-47,
.mx-47 {
  margin-right: 47px !important;
}
.mb-47,
.my-47 {
  margin-bottom: 47px !important;
}
.ml-46,
.mx-46 {
  margin-left: 46px !important;
}
.mt-46,
.my-46 {
  margin-top: 46px !important;
}
.mr-46,
.mx-46 {
  margin-right: 46px !important;
}
.mb-46,
.my-46 {
  margin-bottom: 46px !important;
}
.ml-45,
.mx-45 {
  margin-left: 45px !important;
}
.mt-45,
.my-45 {
  margin-top: 45px !important;
}
.mr-45,
.mx-45 {
  margin-right: 45px !important;
}
.mb-45,
.my-45 {
  margin-bottom: 45px !important;
}
.ml-44,
.mx-44 {
  margin-left: 44px !important;
}
.mt-44,
.my-44 {
  margin-top: 44px !important;
}
.mr-44,
.mx-44 {
  margin-right: 44px !important;
}
.mb-44,
.my-44 {
  margin-bottom: 44px !important;
}
.ml-43,
.mx-43 {
  margin-left: 43px !important;
}
.mt-43,
.my-43 {
  margin-top: 43px !important;
}
.mr-43,
.mx-43 {
  margin-right: 43px !important;
}
.mb-43,
.my-43 {
  margin-bottom: 43px !important;
}
.ml-42,
.mx-42 {
  margin-left: 42px !important;
}
.mt-42,
.my-42 {
  margin-top: 42px !important;
}
.mr-42,
.mx-42 {
  margin-right: 42px !important;
}
.mb-42,
.my-42 {
  margin-bottom: 42px !important;
}
.ml-41,
.mx-41 {
  margin-left: 41px !important;
}
.mt-41,
.my-41 {
  margin-top: 41px !important;
}
.mr-41,
.mx-41 {
  margin-right: 41px !important;
}
.mb-41,
.my-41 {
  margin-bottom: 41px !important;
}
.ml-40,
.mx-40 {
  margin-left: 40px !important;
}
.mt-40,
.my-40 {
  margin-top: 40px !important;
}
.mr-40,
.mx-40 {
  margin-right: 40px !important;
}
.mb-40,
.my-40 {
  margin-bottom: 40px !important;
}
.ml-39,
.mx-39 {
  margin-left: 39px !important;
}
.mt-39,
.my-39 {
  margin-top: 39px !important;
}
.mr-39,
.mx-39 {
  margin-right: 39px !important;
}
.mb-39,
.my-39 {
  margin-bottom: 39px !important;
}
.ml-38,
.mx-38 {
  margin-left: 38px !important;
}
.mt-38,
.my-38 {
  margin-top: 38px !important;
}
.mr-38,
.mx-38 {
  margin-right: 38px !important;
}
.mb-38,
.my-38 {
  margin-bottom: 38px !important;
}
.ml-37,
.mx-37 {
  margin-left: 37px !important;
}
.mt-37,
.my-37 {
  margin-top: 37px !important;
}
.mr-37,
.mx-37 {
  margin-right: 37px !important;
}
.mb-37,
.my-37 {
  margin-bottom: 37px !important;
}
.ml-36,
.mx-36 {
  margin-left: 36px !important;
}
.mt-36,
.my-36 {
  margin-top: 36px !important;
}
.mr-36,
.mx-36 {
  margin-right: 36px !important;
}
.mb-36,
.my-36 {
  margin-bottom: 36px !important;
}
.ml-35,
.mx-35 {
  margin-left: 35px !important;
}
.mt-35,
.my-35 {
  margin-top: 35px !important;
}
.mr-35,
.mx-35 {
  margin-right: 35px !important;
}
.mb-35,
.my-35 {
  margin-bottom: 35px !important;
}
.ml-34,
.mx-34 {
  margin-left: 34px !important;
}
.mt-34,
.my-34 {
  margin-top: 34px !important;
}
.mr-34,
.mx-34 {
  margin-right: 34px !important;
}
.mb-34,
.my-34 {
  margin-bottom: 34px !important;
}
.ml-33,
.mx-33 {
  margin-left: 33px !important;
}
.mt-33,
.my-33 {
  margin-top: 33px !important;
}
.mr-33,
.mx-33 {
  margin-right: 33px !important;
}
.mb-33,
.my-33 {
  margin-bottom: 33px !important;
}
.ml-32,
.mx-32 {
  margin-left: 32px !important;
}
.mt-32,
.my-32 {
  margin-top: 32px !important;
}
.mr-32,
.mx-32 {
  margin-right: 32px !important;
}
.mb-32,
.my-32 {
  margin-bottom: 32px !important;
}
.ml-31,
.mx-31 {
  margin-left: 31px !important;
}
.mt-31,
.my-31 {
  margin-top: 31px !important;
}
.mr-31,
.mx-31 {
  margin-right: 31px !important;
}
.mb-31,
.my-31 {
  margin-bottom: 31px !important;
}
.ml-30,
.mx-30 {
  margin-left: 30px !important;
}
.mt-30,
.my-30 {
  margin-top: 30px !important;
}
.mr-30,
.mx-30 {
  margin-right: 30px !important;
}
.mb-30,
.my-30 {
  margin-bottom: 30px !important;
}
.ml-29,
.mx-29 {
  margin-left: 29px !important;
}
.mt-29,
.my-29 {
  margin-top: 29px !important;
}
.mr-29,
.mx-29 {
  margin-right: 29px !important;
}
.mb-29,
.my-29 {
  margin-bottom: 29px !important;
}
.ml-28,
.mx-28 {
  margin-left: 28px !important;
}
.mt-28,
.my-28 {
  margin-top: 28px !important;
}
.mr-28,
.mx-28 {
  margin-right: 28px !important;
}
.mb-28,
.my-28 {
  margin-bottom: 28px !important;
}
.ml-27,
.mx-27 {
  margin-left: 27px !important;
}
.mt-27,
.my-27 {
  margin-top: 27px !important;
}
.mr-27,
.mx-27 {
  margin-right: 27px !important;
}
.mb-27,
.my-27 {
  margin-bottom: 27px !important;
}
.ml-26,
.mx-26 {
  margin-left: 26px !important;
}
.mt-26,
.my-26 {
  margin-top: 26px !important;
}
.mr-26,
.mx-26 {
  margin-right: 26px !important;
}
.mb-26,
.my-26 {
  margin-bottom: 26px !important;
}
.ml-25,
.mx-25 {
  margin-left: 25px !important;
}
.mt-25,
.my-25 {
  margin-top: 25px !important;
}
.mr-25,
.mx-25 {
  margin-right: 25px !important;
}
.mb-25,
.my-25 {
  margin-bottom: 25px !important;
}
.ml-24,
.mx-24 {
  margin-left: 24px !important;
}
.mt-24,
.my-24 {
  margin-top: 24px !important;
}
.mr-24,
.mx-24 {
  margin-right: 24px !important;
}
.mb-24,
.my-24 {
  margin-bottom: 24px !important;
}
.ml-23,
.mx-23 {
  margin-left: 23px !important;
}
.mt-23,
.my-23 {
  margin-top: 23px !important;
}
.mr-23,
.mx-23 {
  margin-right: 23px !important;
}
.mb-23,
.my-23 {
  margin-bottom: 23px !important;
}
.ml-22,
.mx-22 {
  margin-left: 22px !important;
}
.mt-22,
.my-22 {
  margin-top: 22px !important;
}
.mr-22,
.mx-22 {
  margin-right: 22px !important;
}
.mb-22,
.my-22 {
  margin-bottom: 22px !important;
}
.ml-21,
.mx-21 {
  margin-left: 21px !important;
}
.mt-21,
.my-21 {
  margin-top: 21px !important;
}
.mr-21,
.mx-21 {
  margin-right: 21px !important;
}
.mb-21,
.my-21 {
  margin-bottom: 21px !important;
}
.ml-20,
.mx-20 {
  margin-left: 20px !important;
}
.mt-20,
.my-20 {
  margin-top: 20px !important;
}
.mr-20,
.mx-20 {
  margin-right: 20px !important;
}
.mb-20,
.my-20 {
  margin-bottom: 20px !important;
}
.ml-19,
.mx-19 {
  margin-left: 19px !important;
}
.mt-19,
.my-19 {
  margin-top: 19px !important;
}
.mr-19,
.mx-19 {
  margin-right: 19px !important;
}
.mb-19,
.my-19 {
  margin-bottom: 19px !important;
}
.ml-18,
.mx-18 {
  margin-left: 18px !important;
}
.mt-18,
.my-18 {
  margin-top: 18px !important;
}
.mr-18,
.mx-18 {
  margin-right: 18px !important;
}
.mb-18,
.my-18 {
  margin-bottom: 18px !important;
}
.ml-17,
.mx-17 {
  margin-left: 17px !important;
}
.mt-17,
.my-17 {
  margin-top: 17px !important;
}
.mr-17,
.mx-17 {
  margin-right: 17px !important;
}
.mb-17,
.my-17 {
  margin-bottom: 17px !important;
}
.ml-16,
.mx-16 {
  margin-left: 16px !important;
}
.mt-16,
.my-16 {
  margin-top: 16px !important;
}
.mr-16,
.mx-16 {
  margin-right: 16px !important;
}
.mb-16,
.my-16 {
  margin-bottom: 16px !important;
}
.ml-15,
.mx-15 {
  margin-left: 15px !important;
}
.mt-15,
.my-15 {
  margin-top: 15px !important;
}
.mr-15,
.mx-15 {
  margin-right: 15px !important;
}
.mb-15,
.my-15 {
  margin-bottom: 15px !important;
}
.ml-14,
.mx-14 {
  margin-left: 14px !important;
}
.mt-14,
.my-14 {
  margin-top: 14px !important;
}
.mr-14,
.mx-14 {
  margin-right: 14px !important;
}
.mb-14,
.my-14 {
  margin-bottom: 14px !important;
}
.ml-13,
.mx-13 {
  margin-left: 13px !important;
}
.mt-13,
.my-13 {
  margin-top: 13px !important;
}
.mr-13,
.mx-13 {
  margin-right: 13px !important;
}
.mb-13,
.my-13 {
  margin-bottom: 13px !important;
}
.ml-12,
.mx-12 {
  margin-left: 12px !important;
}
.mt-12,
.my-12 {
  margin-top: 12px !important;
}
.mr-12,
.mx-12 {
  margin-right: 12px !important;
}
.mb-12,
.my-12 {
  margin-bottom: 12px !important;
}
.ml-11,
.mx-11 {
  margin-left: 11px !important;
}
.mt-11,
.my-11 {
  margin-top: 11px !important;
}
.mr-11,
.mx-11 {
  margin-right: 11px !important;
}
.mb-11,
.my-11 {
  margin-bottom: 11px !important;
}
.ml-10,
.mx-10 {
  margin-left: 10px !important;
}
.mt-10,
.my-10 {
  margin-top: 10px !important;
}
.mr-10,
.mx-10 {
  margin-right: 10px !important;
}
.mb-10,
.my-10 {
  margin-bottom: 10px !important;
}
.ml-9,
.mx-9 {
  margin-left: 9px !important;
}
.mt-9,
.my-9 {
  margin-top: 9px !important;
}
.mr-9,
.mx-9 {
  margin-right: 9px !important;
}
.mb-9,
.my-9 {
  margin-bottom: 9px !important;
}
.ml-8,
.mx-8 {
  margin-left: 8px !important;
}
.mt-8,
.my-8 {
  margin-top: 8px !important;
}
.mr-8,
.mx-8 {
  margin-right: 8px !important;
}
.mb-8,
.my-8 {
  margin-bottom: 8px !important;
}
.ml-7,
.mx-7 {
  margin-left: 7px !important;
}
.mt-7,
.my-7 {
  margin-top: 7px !important;
}
.mr-7,
.mx-7 {
  margin-right: 7px !important;
}
.mb-7,
.my-7 {
  margin-bottom: 7px !important;
}
.ml-6,
.mx-6 {
  margin-left: 6px !important;
}
.mt-6,
.my-6 {
  margin-top: 6px !important;
}
.mr-6,
.mx-6 {
  margin-right: 6px !important;
}
.mb-6,
.my-6 {
  margin-bottom: 6px !important;
}
.ml-5,
.mx-5 {
  margin-left: 5px !important;
}
.mt-5,
.my-5 {
  margin-top: 5px !important;
}
.mr-5,
.mx-5 {
  margin-right: 5px !important;
}
.mb-5,
.my-5 {
  margin-bottom: 5px !important;
}
.ml-4,
.mx-4 {
  margin-left: 4px !important;
}
.mt-4,
.my-4 {
  margin-top: 4px !important;
}
.mr-4,
.mx-4 {
  margin-right: 4px !important;
}
.mb-4,
.my-4 {
  margin-bottom: 4px !important;
}
.ml-3,
.mx-3 {
  margin-left: 3px !important;
}
.mt-3,
.my-3 {
  margin-top: 3px !important;
}
.mr-3,
.mx-3 {
  margin-right: 3px !important;
}
.mb-3,
.my-3 {
  margin-bottom: 3px !important;
}
.ml-2,
.mx-2 {
  margin-left: 2px !important;
}
.mt-2,
.my-2 {
  margin-top: 2px !important;
}
.mr-2,
.mx-2 {
  margin-right: 2px !important;
}
.mb-2,
.my-2 {
  margin-bottom: 2px !important;
}
.ml-1,
.mx-1 {
  margin-left: 1px !important;
}
.mt-1,
.my-1 {
  margin-top: 1px !important;
}
.mr-1,
.mx-1 {
  margin-right: 1px !important;
}
.mb-1,
.my-1 {
  margin-bottom: 1px !important;
}
.pl-100,
.px-100,
.p-100 {
  padding-left: 100px !important;
}
.pt-100,
.py-100,
.p-100 {
  padding-top: 100px !important;
}
.pr-100,
.px-100,
.p-100 {
  padding-right: 100px !important;
}
.pb-100,
.py-100,
.p-100 {
  padding-bottom: 100px !important;
}
.pl-99,
.px-99,
.p-99 {
  padding-left: 99px !important;
}
.pt-99,
.py-99,
.p-99 {
  padding-top: 99px !important;
}
.pr-99,
.px-99,
.p-99 {
  padding-right: 99px !important;
}
.pb-99,
.py-99,
.p-99 {
  padding-bottom: 99px !important;
}
.pl-98,
.px-98,
.p-98 {
  padding-left: 98px !important;
}
.pt-98,
.py-98,
.p-98 {
  padding-top: 98px !important;
}
.pr-98,
.px-98,
.p-98 {
  padding-right: 98px !important;
}
.pb-98,
.py-98,
.p-98 {
  padding-bottom: 98px !important;
}
.pl-97,
.px-97,
.p-97 {
  padding-left: 97px !important;
}
.pt-97,
.py-97,
.p-97 {
  padding-top: 97px !important;
}
.pr-97,
.px-97,
.p-97 {
  padding-right: 97px !important;
}
.pb-97,
.py-97,
.p-97 {
  padding-bottom: 97px !important;
}
.pl-96,
.px-96,
.p-96 {
  padding-left: 96px !important;
}
.pt-96,
.py-96,
.p-96 {
  padding-top: 96px !important;
}
.pr-96,
.px-96,
.p-96 {
  padding-right: 96px !important;
}
.pb-96,
.py-96,
.p-96 {
  padding-bottom: 96px !important;
}
.pl-95,
.px-95,
.p-95 {
  padding-left: 95px !important;
}
.pt-95,
.py-95,
.p-95 {
  padding-top: 95px !important;
}
.pr-95,
.px-95,
.p-95 {
  padding-right: 95px !important;
}
.pb-95,
.py-95,
.p-95 {
  padding-bottom: 95px !important;
}
.pl-94,
.px-94,
.p-94 {
  padding-left: 94px !important;
}
.pt-94,
.py-94,
.p-94 {
  padding-top: 94px !important;
}
.pr-94,
.px-94,
.p-94 {
  padding-right: 94px !important;
}
.pb-94,
.py-94,
.p-94 {
  padding-bottom: 94px !important;
}
.pl-93,
.px-93,
.p-93 {
  padding-left: 93px !important;
}
.pt-93,
.py-93,
.p-93 {
  padding-top: 93px !important;
}
.pr-93,
.px-93,
.p-93 {
  padding-right: 93px !important;
}
.pb-93,
.py-93,
.p-93 {
  padding-bottom: 93px !important;
}
.pl-92,
.px-92,
.p-92 {
  padding-left: 92px !important;
}
.pt-92,
.py-92,
.p-92 {
  padding-top: 92px !important;
}
.pr-92,
.px-92,
.p-92 {
  padding-right: 92px !important;
}
.pb-92,
.py-92,
.p-92 {
  padding-bottom: 92px !important;
}
.pl-91,
.px-91,
.p-91 {
  padding-left: 91px !important;
}
.pt-91,
.py-91,
.p-91 {
  padding-top: 91px !important;
}
.pr-91,
.px-91,
.p-91 {
  padding-right: 91px !important;
}
.pb-91,
.py-91,
.p-91 {
  padding-bottom: 91px !important;
}
.pl-90,
.px-90,
.p-90 {
  padding-left: 90px !important;
}
.pt-90,
.py-90,
.p-90 {
  padding-top: 90px !important;
}
.pr-90,
.px-90,
.p-90 {
  padding-right: 90px !important;
}
.pb-90,
.py-90,
.p-90 {
  padding-bottom: 90px !important;
}
.pl-89,
.px-89,
.p-89 {
  padding-left: 89px !important;
}
.pt-89,
.py-89,
.p-89 {
  padding-top: 89px !important;
}
.pr-89,
.px-89,
.p-89 {
  padding-right: 89px !important;
}
.pb-89,
.py-89,
.p-89 {
  padding-bottom: 89px !important;
}
.pl-88,
.px-88,
.p-88 {
  padding-left: 88px !important;
}
.pt-88,
.py-88,
.p-88 {
  padding-top: 88px !important;
}
.pr-88,
.px-88,
.p-88 {
  padding-right: 88px !important;
}
.pb-88,
.py-88,
.p-88 {
  padding-bottom: 88px !important;
}
.pl-87,
.px-87,
.p-87 {
  padding-left: 87px !important;
}
.pt-87,
.py-87,
.p-87 {
  padding-top: 87px !important;
}
.pr-87,
.px-87,
.p-87 {
  padding-right: 87px !important;
}
.pb-87,
.py-87,
.p-87 {
  padding-bottom: 87px !important;
}
.pl-86,
.px-86,
.p-86 {
  padding-left: 86px !important;
}
.pt-86,
.py-86,
.p-86 {
  padding-top: 86px !important;
}
.pr-86,
.px-86,
.p-86 {
  padding-right: 86px !important;
}
.pb-86,
.py-86,
.p-86 {
  padding-bottom: 86px !important;
}
.pl-85,
.px-85,
.p-85 {
  padding-left: 85px !important;
}
.pt-85,
.py-85,
.p-85 {
  padding-top: 85px !important;
}
.pr-85,
.px-85,
.p-85 {
  padding-right: 85px !important;
}
.pb-85,
.py-85,
.p-85 {
  padding-bottom: 85px !important;
}
.pl-84,
.px-84,
.p-84 {
  padding-left: 84px !important;
}
.pt-84,
.py-84,
.p-84 {
  padding-top: 84px !important;
}
.pr-84,
.px-84,
.p-84 {
  padding-right: 84px !important;
}
.pb-84,
.py-84,
.p-84 {
  padding-bottom: 84px !important;
}
.pl-83,
.px-83,
.p-83 {
  padding-left: 83px !important;
}
.pt-83,
.py-83,
.p-83 {
  padding-top: 83px !important;
}
.pr-83,
.px-83,
.p-83 {
  padding-right: 83px !important;
}
.pb-83,
.py-83,
.p-83 {
  padding-bottom: 83px !important;
}
.pl-82,
.px-82,
.p-82 {
  padding-left: 82px !important;
}
.pt-82,
.py-82,
.p-82 {
  padding-top: 82px !important;
}
.pr-82,
.px-82,
.p-82 {
  padding-right: 82px !important;
}
.pb-82,
.py-82,
.p-82 {
  padding-bottom: 82px !important;
}
.pl-81,
.px-81,
.p-81 {
  padding-left: 81px !important;
}
.pt-81,
.py-81,
.p-81 {
  padding-top: 81px !important;
}
.pr-81,
.px-81,
.p-81 {
  padding-right: 81px !important;
}
.pb-81,
.py-81,
.p-81 {
  padding-bottom: 81px !important;
}
.pl-80,
.px-80,
.p-80 {
  padding-left: 80px !important;
}
.pt-80,
.py-80,
.p-80 {
  padding-top: 80px !important;
}
.pr-80,
.px-80,
.p-80 {
  padding-right: 80px !important;
}
.pb-80,
.py-80,
.p-80 {
  padding-bottom: 80px !important;
}
.pl-79,
.px-79,
.p-79 {
  padding-left: 79px !important;
}
.pt-79,
.py-79,
.p-79 {
  padding-top: 79px !important;
}
.pr-79,
.px-79,
.p-79 {
  padding-right: 79px !important;
}
.pb-79,
.py-79,
.p-79 {
  padding-bottom: 79px !important;
}
.pl-78,
.px-78,
.p-78 {
  padding-left: 78px !important;
}
.pt-78,
.py-78,
.p-78 {
  padding-top: 78px !important;
}
.pr-78,
.px-78,
.p-78 {
  padding-right: 78px !important;
}
.pb-78,
.py-78,
.p-78 {
  padding-bottom: 78px !important;
}
.pl-77,
.px-77,
.p-77 {
  padding-left: 77px !important;
}
.pt-77,
.py-77,
.p-77 {
  padding-top: 77px !important;
}
.pr-77,
.px-77,
.p-77 {
  padding-right: 77px !important;
}
.pb-77,
.py-77,
.p-77 {
  padding-bottom: 77px !important;
}
.pl-76,
.px-76,
.p-76 {
  padding-left: 76px !important;
}
.pt-76,
.py-76,
.p-76 {
  padding-top: 76px !important;
}
.pr-76,
.px-76,
.p-76 {
  padding-right: 76px !important;
}
.pb-76,
.py-76,
.p-76 {
  padding-bottom: 76px !important;
}
.pl-75,
.px-75,
.p-75 {
  padding-left: 75px !important;
}
.pt-75,
.py-75,
.p-75 {
  padding-top: 75px !important;
}
.pr-75,
.px-75,
.p-75 {
  padding-right: 75px !important;
}
.pb-75,
.py-75,
.p-75 {
  padding-bottom: 75px !important;
}
.pl-74,
.px-74,
.p-74 {
  padding-left: 74px !important;
}
.pt-74,
.py-74,
.p-74 {
  padding-top: 74px !important;
}
.pr-74,
.px-74,
.p-74 {
  padding-right: 74px !important;
}
.pb-74,
.py-74,
.p-74 {
  padding-bottom: 74px !important;
}
.pl-73,
.px-73,
.p-73 {
  padding-left: 73px !important;
}
.pt-73,
.py-73,
.p-73 {
  padding-top: 73px !important;
}
.pr-73,
.px-73,
.p-73 {
  padding-right: 73px !important;
}
.pb-73,
.py-73,
.p-73 {
  padding-bottom: 73px !important;
}
.pl-72,
.px-72,
.p-72 {
  padding-left: 72px !important;
}
.pt-72,
.py-72,
.p-72 {
  padding-top: 72px !important;
}
.pr-72,
.px-72,
.p-72 {
  padding-right: 72px !important;
}
.pb-72,
.py-72,
.p-72 {
  padding-bottom: 72px !important;
}
.pl-71,
.px-71,
.p-71 {
  padding-left: 71px !important;
}
.pt-71,
.py-71,
.p-71 {
  padding-top: 71px !important;
}
.pr-71,
.px-71,
.p-71 {
  padding-right: 71px !important;
}
.pb-71,
.py-71,
.p-71 {
  padding-bottom: 71px !important;
}
.pl-70,
.px-70,
.p-70 {
  padding-left: 70px !important;
}
.pt-70,
.py-70,
.p-70 {
  padding-top: 70px !important;
}
.pr-70,
.px-70,
.p-70 {
  padding-right: 70px !important;
}
.pb-70,
.py-70,
.p-70 {
  padding-bottom: 70px !important;
}
.pl-69,
.px-69,
.p-69 {
  padding-left: 69px !important;
}
.pt-69,
.py-69,
.p-69 {
  padding-top: 69px !important;
}
.pr-69,
.px-69,
.p-69 {
  padding-right: 69px !important;
}
.pb-69,
.py-69,
.p-69 {
  padding-bottom: 69px !important;
}
.pl-68,
.px-68,
.p-68 {
  padding-left: 68px !important;
}
.pt-68,
.py-68,
.p-68 {
  padding-top: 68px !important;
}
.pr-68,
.px-68,
.p-68 {
  padding-right: 68px !important;
}
.pb-68,
.py-68,
.p-68 {
  padding-bottom: 68px !important;
}
.pl-67,
.px-67,
.p-67 {
  padding-left: 67px !important;
}
.pt-67,
.py-67,
.p-67 {
  padding-top: 67px !important;
}
.pr-67,
.px-67,
.p-67 {
  padding-right: 67px !important;
}
.pb-67,
.py-67,
.p-67 {
  padding-bottom: 67px !important;
}
.pl-66,
.px-66,
.p-66 {
  padding-left: 66px !important;
}
.pt-66,
.py-66,
.p-66 {
  padding-top: 66px !important;
}
.pr-66,
.px-66,
.p-66 {
  padding-right: 66px !important;
}
.pb-66,
.py-66,
.p-66 {
  padding-bottom: 66px !important;
}
.pl-65,
.px-65,
.p-65 {
  padding-left: 65px !important;
}
.pt-65,
.py-65,
.p-65 {
  padding-top: 65px !important;
}
.pr-65,
.px-65,
.p-65 {
  padding-right: 65px !important;
}
.pb-65,
.py-65,
.p-65 {
  padding-bottom: 65px !important;
}
.pl-64,
.px-64,
.p-64 {
  padding-left: 64px !important;
}
.pt-64,
.py-64,
.p-64 {
  padding-top: 64px !important;
}
.pr-64,
.px-64,
.p-64 {
  padding-right: 64px !important;
}
.pb-64,
.py-64,
.p-64 {
  padding-bottom: 64px !important;
}
.pl-63,
.px-63,
.p-63 {
  padding-left: 63px !important;
}
.pt-63,
.py-63,
.p-63 {
  padding-top: 63px !important;
}
.pr-63,
.px-63,
.p-63 {
  padding-right: 63px !important;
}
.pb-63,
.py-63,
.p-63 {
  padding-bottom: 63px !important;
}
.pl-62,
.px-62,
.p-62 {
  padding-left: 62px !important;
}
.pt-62,
.py-62,
.p-62 {
  padding-top: 62px !important;
}
.pr-62,
.px-62,
.p-62 {
  padding-right: 62px !important;
}
.pb-62,
.py-62,
.p-62 {
  padding-bottom: 62px !important;
}
.pl-61,
.px-61,
.p-61 {
  padding-left: 61px !important;
}
.pt-61,
.py-61,
.p-61 {
  padding-top: 61px !important;
}
.pr-61,
.px-61,
.p-61 {
  padding-right: 61px !important;
}
.pb-61,
.py-61,
.p-61 {
  padding-bottom: 61px !important;
}
.pl-60,
.px-60,
.p-60 {
  padding-left: 60px !important;
}
.pt-60,
.py-60,
.p-60 {
  padding-top: 60px !important;
}
.pr-60,
.px-60,
.p-60 {
  padding-right: 60px !important;
}
.pb-60,
.py-60,
.p-60 {
  padding-bottom: 60px !important;
}
.pl-59,
.px-59,
.p-59 {
  padding-left: 59px !important;
}
.pt-59,
.py-59,
.p-59 {
  padding-top: 59px !important;
}
.pr-59,
.px-59,
.p-59 {
  padding-right: 59px !important;
}
.pb-59,
.py-59,
.p-59 {
  padding-bottom: 59px !important;
}
.pl-58,
.px-58,
.p-58 {
  padding-left: 58px !important;
}
.pt-58,
.py-58,
.p-58 {
  padding-top: 58px !important;
}
.pr-58,
.px-58,
.p-58 {
  padding-right: 58px !important;
}
.pb-58,
.py-58,
.p-58 {
  padding-bottom: 58px !important;
}
.pl-57,
.px-57,
.p-57 {
  padding-left: 57px !important;
}
.pt-57,
.py-57,
.p-57 {
  padding-top: 57px !important;
}
.pr-57,
.px-57,
.p-57 {
  padding-right: 57px !important;
}
.pb-57,
.py-57,
.p-57 {
  padding-bottom: 57px !important;
}
.pl-56,
.px-56,
.p-56 {
  padding-left: 56px !important;
}
.pt-56,
.py-56,
.p-56 {
  padding-top: 56px !important;
}
.pr-56,
.px-56,
.p-56 {
  padding-right: 56px !important;
}
.pb-56,
.py-56,
.p-56 {
  padding-bottom: 56px !important;
}
.pl-55,
.px-55,
.p-55 {
  padding-left: 55px !important;
}
.pt-55,
.py-55,
.p-55 {
  padding-top: 55px !important;
}
.pr-55,
.px-55,
.p-55 {
  padding-right: 55px !important;
}
.pb-55,
.py-55,
.p-55 {
  padding-bottom: 55px !important;
}
.pl-54,
.px-54,
.p-54 {
  padding-left: 54px !important;
}
.pt-54,
.py-54,
.p-54 {
  padding-top: 54px !important;
}
.pr-54,
.px-54,
.p-54 {
  padding-right: 54px !important;
}
.pb-54,
.py-54,
.p-54 {
  padding-bottom: 54px !important;
}
.pl-53,
.px-53,
.p-53 {
  padding-left: 53px !important;
}
.pt-53,
.py-53,
.p-53 {
  padding-top: 53px !important;
}
.pr-53,
.px-53,
.p-53 {
  padding-right: 53px !important;
}
.pb-53,
.py-53,
.p-53 {
  padding-bottom: 53px !important;
}
.pl-52,
.px-52,
.p-52 {
  padding-left: 52px !important;
}
.pt-52,
.py-52,
.p-52 {
  padding-top: 52px !important;
}
.pr-52,
.px-52,
.p-52 {
  padding-right: 52px !important;
}
.pb-52,
.py-52,
.p-52 {
  padding-bottom: 52px !important;
}
.pl-51,
.px-51,
.p-51 {
  padding-left: 51px !important;
}
.pt-51,
.py-51,
.p-51 {
  padding-top: 51px !important;
}
.pr-51,
.px-51,
.p-51 {
  padding-right: 51px !important;
}
.pb-51,
.py-51,
.p-51 {
  padding-bottom: 51px !important;
}
.pl-50,
.px-50,
.p-50 {
  padding-left: 50px !important;
}
.pt-50,
.py-50,
.p-50 {
  padding-top: 50px !important;
}
.pr-50,
.px-50,
.p-50 {
  padding-right: 50px !important;
}
.pb-50,
.py-50,
.p-50 {
  padding-bottom: 50px !important;
}
.pl-49,
.px-49,
.p-49 {
  padding-left: 49px !important;
}
.pt-49,
.py-49,
.p-49 {
  padding-top: 49px !important;
}
.pr-49,
.px-49,
.p-49 {
  padding-right: 49px !important;
}
.pb-49,
.py-49,
.p-49 {
  padding-bottom: 49px !important;
}
.pl-48,
.px-48,
.p-48 {
  padding-left: 48px !important;
}
.pt-48,
.py-48,
.p-48 {
  padding-top: 48px !important;
}
.pr-48,
.px-48,
.p-48 {
  padding-right: 48px !important;
}
.pb-48,
.py-48,
.p-48 {
  padding-bottom: 48px !important;
}
.pl-47,
.px-47,
.p-47 {
  padding-left: 47px !important;
}
.pt-47,
.py-47,
.p-47 {
  padding-top: 47px !important;
}
.pr-47,
.px-47,
.p-47 {
  padding-right: 47px !important;
}
.pb-47,
.py-47,
.p-47 {
  padding-bottom: 47px !important;
}
.pl-46,
.px-46,
.p-46 {
  padding-left: 46px !important;
}
.pt-46,
.py-46,
.p-46 {
  padding-top: 46px !important;
}
.pr-46,
.px-46,
.p-46 {
  padding-right: 46px !important;
}
.pb-46,
.py-46,
.p-46 {
  padding-bottom: 46px !important;
}
.pl-45,
.px-45,
.p-45 {
  padding-left: 45px !important;
}
.pt-45,
.py-45,
.p-45 {
  padding-top: 45px !important;
}
.pr-45,
.px-45,
.p-45 {
  padding-right: 45px !important;
}
.pb-45,
.py-45,
.p-45 {
  padding-bottom: 45px !important;
}
.pl-44,
.px-44,
.p-44 {
  padding-left: 44px !important;
}
.pt-44,
.py-44,
.p-44 {
  padding-top: 44px !important;
}
.pr-44,
.px-44,
.p-44 {
  padding-right: 44px !important;
}
.pb-44,
.py-44,
.p-44 {
  padding-bottom: 44px !important;
}
.pl-43,
.px-43,
.p-43 {
  padding-left: 43px !important;
}
.pt-43,
.py-43,
.p-43 {
  padding-top: 43px !important;
}
.pr-43,
.px-43,
.p-43 {
  padding-right: 43px !important;
}
.pb-43,
.py-43,
.p-43 {
  padding-bottom: 43px !important;
}
.pl-42,
.px-42,
.p-42 {
  padding-left: 42px !important;
}
.pt-42,
.py-42,
.p-42 {
  padding-top: 42px !important;
}
.pr-42,
.px-42,
.p-42 {
  padding-right: 42px !important;
}
.pb-42,
.py-42,
.p-42 {
  padding-bottom: 42px !important;
}
.pl-41,
.px-41,
.p-41 {
  padding-left: 41px !important;
}
.pt-41,
.py-41,
.p-41 {
  padding-top: 41px !important;
}
.pr-41,
.px-41,
.p-41 {
  padding-right: 41px !important;
}
.pb-41,
.py-41,
.p-41 {
  padding-bottom: 41px !important;
}
.pl-40,
.px-40,
.p-40 {
  padding-left: 40px !important;
}
.pt-40,
.py-40,
.p-40 {
  padding-top: 40px !important;
}
.pr-40,
.px-40,
.p-40 {
  padding-right: 40px !important;
}
.pb-40,
.py-40,
.p-40 {
  padding-bottom: 40px !important;
}
.pl-39,
.px-39,
.p-39 {
  padding-left: 39px !important;
}
.pt-39,
.py-39,
.p-39 {
  padding-top: 39px !important;
}
.pr-39,
.px-39,
.p-39 {
  padding-right: 39px !important;
}
.pb-39,
.py-39,
.p-39 {
  padding-bottom: 39px !important;
}
.pl-38,
.px-38,
.p-38 {
  padding-left: 38px !important;
}
.pt-38,
.py-38,
.p-38 {
  padding-top: 38px !important;
}
.pr-38,
.px-38,
.p-38 {
  padding-right: 38px !important;
}
.pb-38,
.py-38,
.p-38 {
  padding-bottom: 38px !important;
}
.pl-37,
.px-37,
.p-37 {
  padding-left: 37px !important;
}
.pt-37,
.py-37,
.p-37 {
  padding-top: 37px !important;
}
.pr-37,
.px-37,
.p-37 {
  padding-right: 37px !important;
}
.pb-37,
.py-37,
.p-37 {
  padding-bottom: 37px !important;
}
.pl-36,
.px-36,
.p-36 {
  padding-left: 36px !important;
}
.pt-36,
.py-36,
.p-36 {
  padding-top: 36px !important;
}
.pr-36,
.px-36,
.p-36 {
  padding-right: 36px !important;
}
.pb-36,
.py-36,
.p-36 {
  padding-bottom: 36px !important;
}
.pl-35,
.px-35,
.p-35 {
  padding-left: 35px !important;
}
.pt-35,
.py-35,
.p-35 {
  padding-top: 35px !important;
}
.pr-35,
.px-35,
.p-35 {
  padding-right: 35px !important;
}
.pb-35,
.py-35,
.p-35 {
  padding-bottom: 35px !important;
}
.pl-34,
.px-34,
.p-34 {
  padding-left: 34px !important;
}
.pt-34,
.py-34,
.p-34 {
  padding-top: 34px !important;
}
.pr-34,
.px-34,
.p-34 {
  padding-right: 34px !important;
}
.pb-34,
.py-34,
.p-34 {
  padding-bottom: 34px !important;
}
.pl-33,
.px-33,
.p-33 {
  padding-left: 33px !important;
}
.pt-33,
.py-33,
.p-33 {
  padding-top: 33px !important;
}
.pr-33,
.px-33,
.p-33 {
  padding-right: 33px !important;
}
.pb-33,
.py-33,
.p-33 {
  padding-bottom: 33px !important;
}
.pl-32,
.px-32,
.p-32 {
  padding-left: 32px !important;
}
.pt-32,
.py-32,
.p-32 {
  padding-top: 32px !important;
}
.pr-32,
.px-32,
.p-32 {
  padding-right: 32px !important;
}
.pb-32,
.py-32,
.p-32 {
  padding-bottom: 32px !important;
}
.pl-31,
.px-31,
.p-31 {
  padding-left: 31px !important;
}
.pt-31,
.py-31,
.p-31 {
  padding-top: 31px !important;
}
.pr-31,
.px-31,
.p-31 {
  padding-right: 31px !important;
}
.pb-31,
.py-31,
.p-31 {
  padding-bottom: 31px !important;
}
.pl-30,
.px-30,
.p-30 {
  padding-left: 30px !important;
}
.pt-30,
.py-30,
.p-30 {
  padding-top: 30px !important;
}
.pr-30,
.px-30,
.p-30 {
  padding-right: 30px !important;
}
.pb-30,
.py-30,
.p-30 {
  padding-bottom: 30px !important;
}
.pl-29,
.px-29,
.p-29 {
  padding-left: 29px !important;
}
.pt-29,
.py-29,
.p-29 {
  padding-top: 29px !important;
}
.pr-29,
.px-29,
.p-29 {
  padding-right: 29px !important;
}
.pb-29,
.py-29,
.p-29 {
  padding-bottom: 29px !important;
}
.pl-28,
.px-28,
.p-28 {
  padding-left: 28px !important;
}
.pt-28,
.py-28,
.p-28 {
  padding-top: 28px !important;
}
.pr-28,
.px-28,
.p-28 {
  padding-right: 28px !important;
}
.pb-28,
.py-28,
.p-28 {
  padding-bottom: 28px !important;
}
.pl-27,
.px-27,
.p-27 {
  padding-left: 27px !important;
}
.pt-27,
.py-27,
.p-27 {
  padding-top: 27px !important;
}
.pr-27,
.px-27,
.p-27 {
  padding-right: 27px !important;
}
.pb-27,
.py-27,
.p-27 {
  padding-bottom: 27px !important;
}
.pl-26,
.px-26,
.p-26 {
  padding-left: 26px !important;
}
.pt-26,
.py-26,
.p-26 {
  padding-top: 26px !important;
}
.pr-26,
.px-26,
.p-26 {
  padding-right: 26px !important;
}
.pb-26,
.py-26,
.p-26 {
  padding-bottom: 26px !important;
}
.pl-25,
.px-25,
.p-25 {
  padding-left: 25px !important;
}
.pt-25,
.py-25,
.p-25 {
  padding-top: 25px !important;
}
.pr-25,
.px-25,
.p-25 {
  padding-right: 25px !important;
}
.pb-25,
.py-25,
.p-25 {
  padding-bottom: 25px !important;
}
.pl-24,
.px-24,
.p-24 {
  padding-left: 24px !important;
}
.pt-24,
.py-24,
.p-24 {
  padding-top: 24px !important;
}
.pr-24,
.px-24,
.p-24 {
  padding-right: 24px !important;
}
.pb-24,
.py-24,
.p-24 {
  padding-bottom: 24px !important;
}
.pl-23,
.px-23,
.p-23 {
  padding-left: 23px !important;
}
.pt-23,
.py-23,
.p-23 {
  padding-top: 23px !important;
}
.pr-23,
.px-23,
.p-23 {
  padding-right: 23px !important;
}
.pb-23,
.py-23,
.p-23 {
  padding-bottom: 23px !important;
}
.pl-22,
.px-22,
.p-22 {
  padding-left: 22px !important;
}
.pt-22,
.py-22,
.p-22 {
  padding-top: 22px !important;
}
.pr-22,
.px-22,
.p-22 {
  padding-right: 22px !important;
}
.pb-22,
.py-22,
.p-22 {
  padding-bottom: 22px !important;
}
.pl-21,
.px-21,
.p-21 {
  padding-left: 21px !important;
}
.pt-21,
.py-21,
.p-21 {
  padding-top: 21px !important;
}
.pr-21,
.px-21,
.p-21 {
  padding-right: 21px !important;
}
.pb-21,
.py-21,
.p-21 {
  padding-bottom: 21px !important;
}
.pl-20,
.px-20,
.p-20 {
  padding-left: 20px !important;
}
.pt-20,
.py-20,
.p-20 {
  padding-top: 20px !important;
}
.pr-20,
.px-20,
.p-20 {
  padding-right: 20px !important;
}
.pb-20,
.py-20,
.p-20 {
  padding-bottom: 20px !important;
}
.pl-19,
.px-19,
.p-19 {
  padding-left: 19px !important;
}
.pt-19,
.py-19,
.p-19 {
  padding-top: 19px !important;
}
.pr-19,
.px-19,
.p-19 {
  padding-right: 19px !important;
}
.pb-19,
.py-19,
.p-19 {
  padding-bottom: 19px !important;
}
.pl-18,
.px-18,
.p-18 {
  padding-left: 18px !important;
}
.pt-18,
.py-18,
.p-18 {
  padding-top: 18px !important;
}
.pr-18,
.px-18,
.p-18 {
  padding-right: 18px !important;
}
.pb-18,
.py-18,
.p-18 {
  padding-bottom: 18px !important;
}
.pl-17,
.px-17,
.p-17 {
  padding-left: 17px !important;
}
.pt-17,
.py-17,
.p-17 {
  padding-top: 17px !important;
}
.pr-17,
.px-17,
.p-17 {
  padding-right: 17px !important;
}
.pb-17,
.py-17,
.p-17 {
  padding-bottom: 17px !important;
}
.pl-16,
.px-16,
.p-16 {
  padding-left: 16px !important;
}
.pt-16,
.py-16,
.p-16 {
  padding-top: 16px !important;
}
.pr-16,
.px-16,
.p-16 {
  padding-right: 16px !important;
}
.pb-16,
.py-16,
.p-16 {
  padding-bottom: 16px !important;
}
.pl-15,
.px-15,
.p-15 {
  padding-left: 15px !important;
}
.pt-15,
.py-15,
.p-15 {
  padding-top: 15px !important;
}
.pr-15,
.px-15,
.p-15 {
  padding-right: 15px !important;
}
.pb-15,
.py-15,
.p-15 {
  padding-bottom: 15px !important;
}
.pl-14,
.px-14,
.p-14 {
  padding-left: 14px !important;
}
.pt-14,
.py-14,
.p-14 {
  padding-top: 14px !important;
}
.pr-14,
.px-14,
.p-14 {
  padding-right: 14px !important;
}
.pb-14,
.py-14,
.p-14 {
  padding-bottom: 14px !important;
}
.pl-13,
.px-13,
.p-13 {
  padding-left: 13px !important;
}
.pt-13,
.py-13,
.p-13 {
  padding-top: 13px !important;
}
.pr-13,
.px-13,
.p-13 {
  padding-right: 13px !important;
}
.pb-13,
.py-13,
.p-13 {
  padding-bottom: 13px !important;
}
.pl-12,
.px-12,
.p-12 {
  padding-left: 12px !important;
}
.pt-12,
.py-12,
.p-12 {
  padding-top: 12px !important;
}
.pr-12,
.px-12,
.p-12 {
  padding-right: 12px !important;
}
.pb-12,
.py-12,
.p-12 {
  padding-bottom: 12px !important;
}
.pl-11,
.px-11,
.p-11 {
  padding-left: 11px !important;
}
.pt-11,
.py-11,
.p-11 {
  padding-top: 11px !important;
}
.pr-11,
.px-11,
.p-11 {
  padding-right: 11px !important;
}
.pb-11,
.py-11,
.p-11 {
  padding-bottom: 11px !important;
}
.pl-10,
.px-10,
.p-10 {
  padding-left: 10px !important;
}
.pt-10,
.py-10,
.p-10 {
  padding-top: 10px !important;
}
.pr-10,
.px-10,
.p-10 {
  padding-right: 10px !important;
}
.pb-10,
.py-10,
.p-10 {
  padding-bottom: 10px !important;
}
.pl-9,
.px-9,
.p-9 {
  padding-left: 9px !important;
}
.pt-9,
.py-9,
.p-9 {
  padding-top: 9px !important;
}
.pr-9,
.px-9,
.p-9 {
  padding-right: 9px !important;
}
.pb-9,
.py-9,
.p-9 {
  padding-bottom: 9px !important;
}
.pl-8,
.px-8,
.p-8 {
  padding-left: 8px !important;
}
.pt-8,
.py-8,
.p-8 {
  padding-top: 8px !important;
}
.pr-8,
.px-8,
.p-8 {
  padding-right: 8px !important;
}
.pb-8,
.py-8,
.p-8 {
  padding-bottom: 8px !important;
}
.pl-7,
.px-7,
.p-7 {
  padding-left: 7px !important;
}
.pt-7,
.py-7,
.p-7 {
  padding-top: 7px !important;
}
.pr-7,
.px-7,
.p-7 {
  padding-right: 7px !important;
}
.pb-7,
.py-7,
.p-7 {
  padding-bottom: 7px !important;
}
.pl-6,
.px-6,
.p-6 {
  padding-left: 6px !important;
}
.pt-6,
.py-6,
.p-6 {
  padding-top: 6px !important;
}
.pr-6,
.px-6,
.p-6 {
  padding-right: 6px !important;
}
.pb-6,
.py-6,
.p-6 {
  padding-bottom: 6px !important;
}
.pl-5,
.px-5,
.p-5 {
  padding-left: 5px !important;
}
.pt-5,
.py-5,
.p-5 {
  padding-top: 5px !important;
}
.pr-5,
.px-5,
.p-5 {
  padding-right: 5px !important;
}
.pb-5,
.py-5,
.p-5 {
  padding-bottom: 5px !important;
}
.pl-4,
.px-4,
.p-4 {
  padding-left: 4px !important;
}
.pt-4,
.py-4,
.p-4 {
  padding-top: 4px !important;
}
.pr-4,
.px-4,
.p-4 {
  padding-right: 4px !important;
}
.pb-4,
.py-4,
.p-4 {
  padding-bottom: 4px !important;
}
.pl-3,
.px-3,
.p-3 {
  padding-left: 3px !important;
}
.pt-3,
.py-3,
.p-3 {
  padding-top: 3px !important;
}
.pr-3,
.px-3,
.p-3 {
  padding-right: 3px !important;
}
.pb-3,
.py-3,
.p-3 {
  padding-bottom: 3px !important;
}
.pl-2,
.px-2,
.p-2 {
  padding-left: 2px !important;
}
.pt-2,
.py-2,
.p-2 {
  padding-top: 2px !important;
}
.pr-2,
.px-2,
.p-2 {
  padding-right: 2px !important;
}
.pb-2,
.py-2,
.p-2 {
  padding-bottom: 2px !important;
}
.pl-1,
.px-1,
.p-1 {
  padding-left: 1px !important;
}
.pt-1,
.py-1,
.p-1 {
  padding-top: 1px !important;
}
.pr-1,
.px-1,
.p-1 {
  padding-right: 1px !important;
}
.pb-1,
.py-1,
.p-1 {
  padding-bottom: 1px !important;
}
.white-space-pre {
  white-space: pre;
}
.white-space-normal {
  white-space: normal;
}
.text-gray {
  color: var(--sg-legacy-grayColor, #656565);
}
.scribe-mention {
  height: 22px;
  line-height: 22px;
  background: rgba(173, 205, 255, 0.7);
  border-radius: 8px;
  color: var(--sg-text-color, #000000);
  padding: 0 5px;
  white-space: nowrap;
  display: inline-block;
  user-select: all;
  overflow-wrap: break-word;
}
.datepicker-drop {
  opacity: 0;
}
.form-attribute-icon:not(.sm) {
  background-color: var(--sg-legacy-alt-row-bg, #f7f9fc);
  border: 1px solid var(--sg-light-border-color, #d5dcebb3);
  border-radius: 6px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-sizing: border-box;
}
.form-attribute-icon.sm {
  background-color: var(--sg-legacy-alt-row-bg, #f7f9fc);
  border: 1px solid var(--sg-light-border-color, #d5dcebb3);
  border-radius: 6px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  overflow: hidden;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  box-sizing: border-box;
}

@charset "UTF-8";
/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animatedLong {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@keyframes errorBoxBlink {
  0%,
  50%,
  100% {
    box-shadow: 1px 0px 2px rgba(213, 213, 213, 0.6);
  }
  30%,
  80% {
    box-shadow: 0px 0px 2px 2px #dc3545;
  }
}
.errorBoxBlink {
  animation-name: errorBoxBlink;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: perspective(1px) scale(1.05);
    transform: perspective(1px) scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: perspective(1px) scale(1.05);
    -ms-transform: perspective(1px) scale(1.05);
    transform: perspective(1px) scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(219, 8, 0, 0.5) inset;
  }
  100% {
    box-shadow: 0 0 10px rgba(219, 8, 0, 0.5) inset;
  }
}
@keyframes slideOutLeft {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: -100%;
  }
}
@keyframes inputHighlighter {
  from {
    background: var(--sg-secondary-color, #106df9);
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes slideOutRight {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tileRubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.attr-icons {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attr-icons.project-io {
  color: var(--sg-secondary-color, #106df9);
}
.attr-icons.resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.assignment-doc-io {
  color: #d36b3f;
}
.attr-icons.budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
.attr-icons.spm-io {
  color: #9437ab;
  zoom: 0.8;
}
/*------------------------------------*\
    _ICONS.LESS
\*------------------------------------*/
/**
 * icons.less icons mixins and sets
 **/
/****************LAYOUT POPUP****************************/
.headset-io:before {
  content: '\f590';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.project-grid-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.projects-kanban-io:before {
  content: '\f51c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.assignment-doc-io:before {
  content: '\f15c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-o-notch:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.milestone-io:before {
  content: '\f024';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sheets-io:before {
  content: '\f0ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-io:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-round-io:before {
  content: '\f056';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.double-line:before {
  content: '\f7a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.focus-io:before {
  content: '\f05b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sorting-none-io:before {
  content: '\f05e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.unlink-io:before {
  content: '\f127';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shift-io:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-tack:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.readonly-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.date-io:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.date-value-io:before {
  content: '\f783';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.up-io:before {
  content: '\e919';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-up-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thumb-down-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.stop-circle-io:before {
  content: '\e15c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.hand-stop-io:before {
  content: '\e928';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.auditlog-io:before {
  content: '\e02f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.skillmatrix-io:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.categories-io:before {
  content: '\f5fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmap-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmaps-io:before {
  content: '\f277';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.partial-io:before {
  content: '\e891';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-project-io:before {
  content: '\e925';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-resource-io:before {
  content: '\e922';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.file-excel-io:before {
  content: '\f1c3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-csv-io:before {
  content: '\f6dd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-pdf-io:before {
  content: '\f1c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.full-arrow-up-io:before {
  content: '\f062';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pause-io:before {
  content: '\f04c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-desc:before {
  content: '\f161';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.return-io:before {
  content: '\e116';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.customfield-layout-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ***********
*/
.resourcemgmt-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-team-io:before {
  content: '\f500';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moon-io:before {
  content: '\f186';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sun-io:before {
  content: '\f185';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheetmgmt-io:before {
  content: '\44';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mytimesheet-io:before {
  content: '\43';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpa-io:before {
  content: '\42';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpafg-io:before {
  content: '\41';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.adminsettings-io:before {
  content: '\e94f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.helplink-io:before {
  content: '\f059';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bell-io:before {
  content: '\f0f3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-request-io:before {
  content: '\e94b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resource-request-io:before {
  content: '\e94c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.budget-nav-io:before {
  content: '\e94d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.side-bar-io:before {
  content: '\e950';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ENDED***********
*/
/*
* SHAPE ICONS
 */
.square-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.manager-io:before {
  content: '\f508';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-io:before {
  content: '\e3a6';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-up-io:before {
  content: '\ea32';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-down-io:before {
  content: '\ea36';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-left-io:before {
  content: '\ea38';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-right-io:before {
  content: '\ea34';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  content: '\e953';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  font-size: 1.2em;
}
.pin-io-active:before {
  content: '\e946';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io-active:before {
  font-size: 1.2em;
}
.thumbtack-io:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approve-shield-io:before {
  content: '\e8e8';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thunder-io:before {
  content: '\e3e7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.star-circle-io:before {
  content: '\e8d0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.angle-down-io:before {
  content: '\f107';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-down-io:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
/*
* SHAPE ICONS ENDED
 */
.doc-export-io:before {
  content: '\f56e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-up-io:before {
  content: '\f151';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-down-io:before {
  content: '\f150';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-left-io:before {
  content: '\f036';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-center-io:before {
  content: '\f037';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-right-io:before {
  content: '\f038';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.decimal-left-io:before {
  content: '\e942';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.decimal-right-io:before {
  content: '\e943';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-open-io:before {
  content: '\e944';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-close-io:before {
  content: '\e945';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resources-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pencil-alt-io:before {
  content: '\f303';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.stream-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.colored_icon.project-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.resource-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.colored_icon.customfield-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.icon-report-color:before {
  color: #d36b3f;
}
.colored_icon.assignment-doc-io:before {
  color: #d36b3f;
}
.colored_icon.milestone-io:before {
  color: var(--sg-warning-color, #ffc107);
}
.colored_icon.budget-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.gopuram-io:before {
  content: '\f664';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.money-bill-alt-io:before {
  content: '\f3d1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-square-io:before {
  content: '\f14a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thermometer-half-io:before {
  content: '\f2c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.list-alt-io:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.angle-double-right-io:before {
  content: '\f101';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-cog-io:before {
  content: '\f4fe';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.cog-io:before {
  content: '\f013';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.users-cog-io:before {
  content: '\f509';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.exclamation-triangle-io:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-circle-io:before {
  content: '\f058';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.url-io:before {
  content: '\f0c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.matrix-io:before {
  content: '\f84c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-solid-io:before {
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.interval-io:before {
  content: '\f337';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.advanced-rate-io:before {
  content: '\f51e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.default-icon-color {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.goals-io:before {
  content: '\f091';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tachometer-io:before {
  content: '\f3fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.weight-io:before {
  content: '\f496';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.hands-helping-io:before {
  content: '\f4c4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.diagram-io:before {
  content: '\f542';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.captions-io:before {
  content: '\f20a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelskills:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelskills:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelresources:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelresources:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelprojects:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelprojects:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-msprojectserversql {
  vertical-align: middle;
  display: inline-block;
}
.sync-msprojectserversql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-exceladmintime:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladmintime:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-exceladvancedrates:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladvancedrates:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelsheet:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelsheet:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelassignments:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelassignments:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelattributes:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelattributes:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelfinancials:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelfinancials:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-ppmpro {
  margin-top: 0;
  vertical-align: top;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: contain;
  background-color: var(--sg-legacy-PpmPro, #6369d0);
}
/*
**** IN THIS FILE BASE PARAMETRES STORED *****
*/
/*
**** COMMON ELEMENTS HEIGHT *****
*/
/*
**** COMMON RADIUS *****
*/
/*
**** MARGIN LEFT/RIGHT *****
*/
/**
** Margin for large tables so they not stick to the grid
*/
/*
**** TITLE INPUT WIDTH *****
*/
/*
**** SYNC SMALL ICON WIDTH *****
*/
/*
****INPUT ANIM
*/
/*
** REPORTS
*/
/*
**** DROPDOWN *****
*/
/*
**** CONTENT WRAPPERS DIMENSIONS *****
*/
/*
**** HINT DIMENSIONS *****
*/
/*
**** ROADMAP ****
*/
/*
**** Multipage basic styles ****
*/
/**
* Min height
*/
/**
**** TEMPUS AI *****
*/
/*
**** LESS MIXINS FOR AI-AWARE LAYOUTS *****
*/
/**
 * .sidebar-calc-width() - Mixin for calculating widths that account for AI sidebar
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-width();                    // width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(100vw, 50px);         // width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-width(90vw);                // width: calc(90vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(45vw, 100px);         // width: calc(45vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * IMPORTANT NOTES:
 * 1. SCROLLBAR ISSUE: 100vw includes scrollbar width, which can cause horizontal overflow.
 *    Consider using width: 100% on child elements when possible, especially inside flex/grid containers.
 *
 * 2. FLEX/GRID CHILDREN: If using this on flex or grid children, ensure they have min-width: 0
 *    to prevent overflow issues.
 *
 * 3. HORIZONTAL PADDING: Avoid using this mixin on elements with horizontal padding or borders.
 *    Instead, use it on a wrapper element and add padding to an inner element.
 *
 * 4. WHEN NOT TO USE:
 *    - Elements inside a sized container (use width: 100% instead)
 *    - Modal/dialog content (usually constrained by max-width)
 *    - Elements that should scroll horizontally
 *
 * 5. WHEN TO USE:
 *    - Full-width sections that need to span the viewport minus the sidebar
 *    - Absolute/fixed positioned overlays
 *    - Elements that explicitly need to relate to viewport width
 *    - Modals/popups that need percentage-based viewport widths (90vw, 45vw, etc.)
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/**
 * .sidebar-calc-max-width() - Mixin for max-width that accounts for AI sidebar
 *
 * Safer alternative to .sidebar-calc-width() for constraining element size without causing overflow.
 * Use this when you want to limit width but allow the element to be smaller if needed.
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-max-width();                  // max-width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(100vw, 50px);       // max-width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-max-width(45vw);              // max-width: calc(45vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(40vw, 100px);       // max-width: calc(40vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
.systemessage {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(23, 39, 48, 0.9);
  overflow: hidden;
  text-align: center;
  z-index: 100105;
  min-height: 85px;
}
.systemModal .sg-custom-modal__body {
  padding: 24px 20px;
}
.systemModal .systemModal__header {
  padding: 0 4px 16px;
}
.systemModal .systemModal__header .systemModal__title {
  font-size: 18px;
  line-height: 24px;
  color: var(--sg-color-legacy-172b4d, #172b4d);
  font-weight: 500;
  margin: 0;
}
.systemModal .systemModal__header .systemModal__icon {
  color: #ffce51;
  font-size: 16px;
}
.systemModal .systemModal__header .systemModal__icon:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.systemModal .sg-custom-modal__content {
  padding: 0 4px;
}
.systemModal .smsg_mdl__central {
  padding: 0;
}
.systemModal .sg-custom-modal__footer {
  padding: 0 4px;
}
.systemModal .sg-custom-modal__footer .buttons-line {
  margin-left: auto;
  text-align: right;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 8px;
}
.systemModal .sg-custom-modal__footer .buttons-line .smsg_mdl__buttonblue,
.systemModal .sg-custom-modal__footer .buttons-line .smsg_mdl__buttongray,
.systemModal .sg-custom-modal__footer .buttons-line .smsg_mdl__buttonredtransp {
  display: inline-block;
  margin: 16px 0px 0px 0 !important;
}
/********* Alert Message Marking ************/
.smsg_al__messages {
  color: var(--sg-color-legacy-eeeeee, #eeeeee);
  list-style: none;
  line-height: 18px;
  margin: 4px auto;
  max-width: 520px;
  min-height: 25px;
  max-height: 105px;
  overflow: auto;
}
.smsg_al__messagetxt {
  white-space: normal;
}
.smsg_al__bulet {
  width: 6px;
  height: 6px;
  border-radius: 7px;
  border: 1px solid var(--sg-color-legacy-979797, #979797);
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  margin-left: -17px;
  margin-right: 4px;
}
.smsg_al__row {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 0;
}
.smsg_al__row:first-child {
  border: none;
}
.smsg_albtm__line {
  display: inline-block;
  border-top: 2px solid var(--sg-color-legacy-d43c30, #d43c30);
  position: relative;
  min-width: 200px;
}
.smsg_albtm__line.warning {
  border-top-color: var(--sg-color-legacy-ffc107, #ffc107);
  margin-top: 6px;
}
.smsg_albtm__btnhl {
  position: absolute;
  right: -21px;
  top: -16px;
}
.smsg_albtm__alertbutton {
  position: absolute;
  left: 0;
  background-color: var(--sg-color-legacy-d43c30, #d43c30);
  border-radius: 0 12px 12px 0;
  line-height: 30px;
  padding: 0 35px 0 10px;
  white-space: nowrap;
  cursor: pointer;
}
.smsg_albtm__line.warning .smsg_albtm__alertbutton {
  background-color: var(--sg-color-legacy-ffc107, #ffc107);
}
.smsg_albtm__line.warning .smsg_alertbutton__text {
  color: var(--sg-alert-button-text-color, #432001);
}
.smsg_albtm__description {
  font-size: 12px;
  line-height: 30px;
  color: var(--sg-color-legacy-6f8394, #6f8394);
}
.smsg_albtm__description a {
  color: var(--sg-color-legacy-95b9d4, #95b9d4);
  text-decoration: none;
}
.smsg_albtm__alertbutton .top-arr {
  top: 5px;
  vertical-align: top;
  position: absolute;
  right: 5px;
}
.smsg_albtn__leftangle,
.smsg_albtm__alertsign {
  background-image: url(../../content/assets/41ad719ab388649e7445.png);
}
.warning.handlederror .smsg_albtm__alertsign {
  background-position: -21px 0;
}
.warning .smsg_albtm__alertsign {
  background-position: -61px 0;
}
.warning .smsg_albtm__description {
  visibility: hidden;
  line-height: 20px;
  overflow: hidden;
}
.warning .smsg_albtn__leftangle {
  background-position: 0 -30px;
}
.smsg_albtm__alertsign {
  vertical-align: top;
  background-position: -21px 0;
  background-repeat: no-repeat;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: -42px;
  top: -21px;
}
.smsg_albtn__leftangle {
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 21px;
  height: 30px;
  vertical-align: top;
  left: -21px;
  display: inline-block;
  position: absolute;
  top: 0;
}
.smsg_alertbutton__text {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  font-size: 14px;
}
/************* Modal Message Marking **********************/
.smsg_mdl {
  background-color: var(--sg-bg-color, #ffffff);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
}
.smsg_mdl__content {
  max-width: 640px;
  margin: 0 auto;
  min-height: 215px;
  line-height: 215px;
  text-align: left;
  position: relative;
  display: inline-block;
}
.smsg_mdl__bordertop,
.smsg_mdl__borderbottom {
  height: 4px;
  width: 110px;
  background-color: var(--sg-color-legacy-3bb3ff, #3bb3ff);
  position: absolute;
  left: 0;
}
.smsg_mdl__bordertop {
  top: 0;
}
.smsg_mdl__borderbottom {
  bottom: 0;
}
.smsg_mdl__central {
  vertical-align: middle;
  line-height: 21px;
  padding: 10px 0;
  max-width: 100%;
}
.smsg_mdl__message {
  font-size: 15px;
}
.smsg_mdl__buttonblue,
.smsg_mdl__buttongray,
.smsg_mdl__buttonredtransp {
  display: inline-block;
  margin: 15px 5px 5px 0;
  border-radius: 10px;
}
.smsg_mdl__buttonblue {
  background-color: var(--sg-color-legacy-3bb3ff, #3bb3ff);
  color: var(--sg-color-legacy-ffffff, #ffffff);
  /*font-weight: bold; text wasn't readable*/
}
.smsg_mdl__buttongray {
  border: 1px solid var(--sg-button-border-color, #cccccc);
  height: 34px;
  line-height: 34px;
}
.smsg_mdl__buttonredtransp {
  border: 1px solid var(--sg-color-legacy-e4606d, #e4606d);
  height: 34px;
  line-height: 34px;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 14px;
  color: var(--sg-color-legacy-bd2130, #bd2130);
  cursor: pointer;
}
.smsg_mdl__messagetxt,
.smsg_mdl__buttonblue,
.smsg_mdl__buttongray,
.smsg_mdl__buttonredtransp {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -ms-user-select: none;
}
.systemModal.alt-buttons .alternate {
  float: left;
}
.smsg_mdl__messagetxt {
  white-space: pre-wrap;
  line-height: 18px;
  max-height: 200px;
  min-width: 300px;
  overflow: auto;
}
.smsg_mdl__messagetxt ul {
  white-space: normal;
}
.smsg_mdl__messagetxt p {
  margin: 0 0 1rem;
}
.smsg_mdl__messagetxt:not(:first-child) {
  margin-top: 10px;
}
.smsg_mdl__messagetxt .gantt-controls-container {
  line-height: 12px;
  height: auto;
}
.smsg_mdl__messagetxt .gantt-controls-container .moderswitch {
  padding: 0;
  margin: 0;
  margin-top: -19px;
}
.smsg_mdl__messagetxt .gantt-controls-container .ProjectResource .sg_groupbuttonsection {
  margin-left: 15px;
}
.smsg_mdl__messagetxt .gantt-controls-container .sg_groupbuttonsection {
  margin-top: -16px;
  float: left;
}
.smsg_mdl__messagetxt .gantt-controls-container .labeled {
  float: left;
  padding: 0;
}
.smsg_mdl__messagetxt .gantt-controls-container .labeled.no-m-right {
  margin-right: 0;
}
.smsg_mdl__message-html {
  margin-top: 10px;
}

@charset "UTF-8";
/*!
 * Copyright (c) HANDSONCODE sp. z o. o.
 *
 * HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o., a Polish corporation based in
 * Gdynia, Poland, at Aleja Zwyciestwa 96-98, registered by the District Court in Gdansk under number
 * 538651, EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
 *
 * This software is protected by applicable copyright laws, including international treaties, and dual-
 * licensed - depending on whether your use for commercial purposes, meaning intended for or
 * resulting in commercial advantage or monetary compensation, or not.
 *
 * If your use is strictly personal or solely for evaluation purposes, meaning for the purposes of testing
 * the suitability, performance, and usefulness of this software outside the production environment,
 * you agree to be bound by the terms included in the "handsontable-non-commercial-license.pdf" file.
 *
 * Your use of this software for commercial purposes is subject to the terms included in an applicable
 * license agreement.
 *
 * In any case, you must not make any such use of this software as to develop software which may be
 * considered competitive with this software.
 *
 * UNLESS EXPRESSLY AGREED OTHERWISE, HANDSONCODE PROVIDES THIS SOFTWARE ON AN "AS IS"
 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, AND IN NO EVENT AND UNDER NO
 * LEGAL THEORY, SHALL HANDSONCODE BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT,
 * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
 * USE OR INABILITY TO USE THIS SOFTWARE.
 *
 * Version: 15.3.0
 * Release date: 29/04/2025 (built at 24/04/2025 10:59:11)
 */
/**
 * Fix for bootstrap styles
 */
 .handsontable .table th, .handsontable .table td {
  border-top: none;
}

.handsontable tr {
  background: #fff;
}

.handsontable td {
  background-color: inherit;
}

.handsontable .table caption + thead tr:first-child th,
.handsontable .table caption + thead tr:first-child td,
.handsontable .table colgroup + thead tr:first-child th,
.handsontable .table colgroup + thead tr:first-child td,
.handsontable .table thead:first-child tr:first-child th,
.handsontable .table thead:first-child tr:first-child td {
  border-top: 1px solid #CCCCCC;
}

/* table-bordered */
.handsontable .table-bordered {
  border: 0;
  border-collapse: separate;
}

.handsontable .table-bordered th,
.handsontable .table-bordered td {
  border-left: none;
}

.handsontable .table-bordered th:first-child,
.handsontable .table-bordered td:first-child {
  border-left: 1px solid #CCCCCC;
}

.handsontable .table > tbody > tr > td,
.handsontable .table > tbody > tr > th,
.handsontable .table > tfoot > tr > td,
.handsontable .table > tfoot > tr > th,
.handsontable .table > thead > tr > td,
.handsontable .table > thead > tr > th {
  line-height: 21px;
  padding: 0;
}

.col-lg-1.handsontable, .col-lg-10.handsontable, .col-lg-11.handsontable, .col-lg-12.handsontable,
.col-lg-2.handsontable, .col-lg-3.handsontable, .col-lg-4.handsontable, .col-lg-5.handsontable, .col-lg-6.handsontable, .col-lg-7.handsontable, .col-lg-8.handsontable, .col-lg-9.handsontable,
.col-md-1.handsontable, .col-md-10.handsontable, .col-md-11.handsontable, .col-md-12.handsontable,
.col-md-2.handsontable, .col-md-3.handsontable, .col-md-4.handsontable, .col-md-5.handsontable, .col-md-6.handsontable, .col-md-7.handsontable, .col-md-8.handsontable, .col-md-9.handsontable .col-sm-1.handsontable,
.col-sm-10.handsontable, .col-sm-11.handsontable, .col-sm-12.handsontable,
.col-sm-2.handsontable, .col-sm-3.handsontable, .col-sm-4.handsontable, .col-sm-5.handsontable, .col-sm-6.handsontable, .col-sm-7.handsontable, .col-sm-8.handsontable, .col-sm-9.handsontable .col-xs-1.handsontable,
.col-xs-10.handsontable, .col-xs-11.handsontable, .col-xs-12.handsontable,
.col-xs-2.handsontable, .col-xs-3.handsontable, .col-xs-4.handsontable, .col-xs-5.handsontable, .col-xs-6.handsontable, .col-xs-7.handsontable, .col-xs-8.handsontable, .col-xs-9.handsontable {
  padding-left: 0;
  padding-right: 0;
}

.handsontable .table-striped > tbody > tr:nth-of-type(even) {
  background-color: #FFF;
}

.handsontable .hide {
  display: none;
}

.handsontable .relative {
  position: relative;
}

.handsontable .wtHider {
  position: relative;
  width: 0;
}

.handsontable .wtSpreader {
  position: relative;
  /* must be 0, otherwise blank space appears in scroll demo after scrolling max to the right */
  width: 0;
  height: auto;
}

.handsontable table,
.handsontable tbody,
.handsontable thead,
.handsontable td,
.handsontable th,
.handsontable input,
.handsontable textarea,
.handsontable div {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}

.handsontable input,
.handsontable textarea {
  min-height: initial;
}

.handsontable table.htCore {
  border-collapse: separate;
  /* it must be separate, otherwise there are offset miscalculations in WebKit: http://stackoverflow.com/questions/2655987/border-collapse-differences-in-ff-and-webkit */
  /* this actually only changes appearance of user selection - does not make text unselectable */
  /* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none; // no browser supports unprefixed version
  */
  border-spacing: 0;
  margin: 0;
  border-width: 0;
  table-layout: fixed;
  width: 0;
  outline-width: 0;
  cursor: default;
  /* reset bootstrap table style. for more info see: https://github.com/handsontable/handsontable/issues/224 */
  max-width: none;
  max-height: none;
}

.handsontable col {
  width: 50px;
}

.handsontable col.rowHeader {
  width: 50px;
}

.handsontable th,
.handsontable td {
  border-top-width: 0;
  border-left-width: 0;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  height: 22px;
  empty-cells: show;
  line-height: 21px;
  padding: 0 4px 0 4px;
  /* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
  background-color: #fff;
  vertical-align: top;
  overflow: hidden;
  outline: none;
  outline-width: 0;
  white-space: pre-wrap;
}

[dir=rtl].handsontable th, [dir=rtl].handsontable td {
  border-right-width: 0;
  border-left: 1px solid #ccc;
}

.handsontable th:last-child {
  /* Foundation framework fix */
  border-left: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

[dir=rtl].handsontable th:last-child {
  /* Foundation framework fix */
  border-right: none;
  border-left: 1px solid #ccc;
}

.handsontable th:first-child,
.handsontable td:first-of-type {
  border-left: 1px solid #ccc;
}

[dir=rtl].handsontable th:first-child, [dir=rtl].handsontable td:first-of-type {
  border-right: 1px solid #ccc;
}

/* It removes double right border from first column header when row headers are disabled */
.handsontable .ht_clone_top th:nth-child(2) {
  border-left-width: 0;
  border-right: 1px solid #ccc;
}

[dir=rtl].handsontable .ht_clone_top th:nth-child(2) {
  border-right-width: 0;
  border-left: 1px solid #ccc;
}

.handsontable.htRowHeaders thead tr th:nth-child(2) {
  border-left: 1px solid #ccc;
}

[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2) {
  border-right: 1px solid #ccc;
}

.handsontable tr:first-child th,
.handsontable tr:first-child td {
  border-top: 1px solid #ccc;
}

.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th,
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child,
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.htGhostTable) tbody tr th,
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child {
  border-right-width: 0;
  border-left: 1px solid #ccc;
}

[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th, [dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child, [dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.htGhostTable) tbody tr th, [dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child {
  border-left-width: 0;
  border-right: 1px solid #ccc;
}

/*
innerBorderTop - Property controlled by top overlay
innerBorderBottom - Property controlled by bottom overlay
 */
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr:last-child th,
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr.lastChild th {
  border-bottom-width: 0;
}

.handsontable th {
  background-color: #f0f0f0;
  color: #222;
  text-align: center;
  font-weight: normal;
  white-space: nowrap;
}

.handsontable thead th {
  padding: 0;
}

.handsontable th.active {
  background-color: #ccc;
}

.handsontable thead th .relative {
  padding: 2px 4px;
}

.handsontable span.colHeader {
  display: inline-block;
  line-height: 1.1;
}

/* Selection */
.handsontable .wtBorder {
  position: absolute;
  font-size: 0;
}

.handsontable .wtBorder.hidden {
  display: none !important;
}

/* A layer order of the selection types */
.handsontable .wtBorder.current {
  z-index: 10;
}

.handsontable .wtBorder.area {
  z-index: 8;
}

.handsontable .wtBorder.fill {
  z-index: 6;
}

/* fill handle */
.handsontable .wtBorder.corner {
  font-size: 0;
  cursor: crosshair;
}

.ht_clone_master {
  z-index: 100;
}

.ht_clone_inline_start {
  z-index: 120;
}

.ht_clone_bottom {
  z-index: 130;
}

.ht_clone_bottom_inline_start_corner {
  z-index: 150;
}

.ht_clone_top {
  z-index: 160;
}

.ht_clone_top_inline_start_corner {
  z-index: 180;
}

.handsontable col.hidden {
  width: 0 !important;
}

.handsontable tr.hidden,
.handsontable tr.hidden td,
.handsontable tr.hidden th {
  display: none;
}

.ht_master,
.ht_clone_inline_start,
.ht_clone_top,
.ht_clone_bottom {
  overflow: hidden;
}

.ht_master .wtHolder {
  overflow: auto;
}

.handsontable .ht_master table.htCore > thead,
.handsontable .ht_master table.htCore > tbody > tr > th,
.handsontable .ht_clone_inline_start table.htCore > thead {
  visibility: hidden;
}

.ht_clone_top .wtHolder,
.ht_clone_inline_start .wtHolder,
.ht_clone_bottom .wtHolder {
  overflow: hidden;
}

.handsontable {
  position: relative;
  touch-action: manipulation;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #373737;
}

.handsontable a {
  color: #104acc;
}

.handsontable.htAutoSize {
  visibility: hidden;
  left: -99000px;
  position: absolute;
  top: -99000px;
}

.handsontable td.htInvalid {
  /* gives priority over td.area selection background */
  background-color: #ffbeba !important;
}

.handsontable td.htNoWrap {
  white-space: nowrap;
}

.handsontable td.invisibleSelection,
.handsontable th.invisibleSelection {
  outline: none;
}

.handsontable td.invisibleSelection::selection,
.handsontable th.invisibleSelection::selection {
  background: rgba(255, 255, 255, 0);
}

.hot-display-license-info {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  color: #373737;
  padding: 5px 0 3px 0;
  text-align: left;
}

.hot-display-license-info a {
  color: #104acc;
  font-size: 10px;
}

.handsontable .htFocusCatcher {
  position: absolute;
  z-index: -1;
  opacity: 0;
  border: 0;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
}

/* plugins */
/* row + column resizer */
.handsontable .manualColumnResizer {
  position: absolute;
  top: 0;
  cursor: col-resize;
  z-index: 210;
  width: 5px;
  height: 25px;
}

.handsontable .manualRowResizer {
  position: absolute;
  left: 0;
  cursor: row-resize;
  z-index: 210;
  height: 5px;
  width: 50px;
}

.handsontable .manualColumnResizer:hover,
.handsontable .manualColumnResizer.active,
.handsontable .manualRowResizer:hover,
.handsontable .manualRowResizer.active {
  background-color: #34a9db;
}

.handsontable .manualColumnResizerGuide {
  position: absolute;
  right: unset;
  top: 0;
  background-color: #34a9db;
  display: none;
  width: 0;
  border-right: 1px dashed #777;
  border-left: none;
  margin-left: 5px;
  margin-right: unset;
}

[dir=rtl].handsontable .manualColumnResizerGuide {
  left: unset;
  border-left: 1px dashed #777;
  border-right: none;
  margin-right: 5px;
  margin-left: unset;
}

.handsontable .manualRowResizerGuide {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #34a9db;
  display: none;
  height: 0;
  border-bottom: 1px dashed #777;
  margin-top: 5px;
}

.handsontable .manualColumnResizerGuide.active,
.handsontable .manualRowResizerGuide.active {
  display: block;
  z-index: 209;
}

.handsontable td.area,
.handsontable td.area-1,
.handsontable td.area-2,
.handsontable td.area-3,
.handsontable td.area-4,
.handsontable td.area-5,
.handsontable td.area-6,
.handsontable td.area-7 {
  position: relative;
}

.handsontable td.area::before,
.handsontable td.area-1::before,
.handsontable td.area-2::before,
.handsontable td.area-3::before,
.handsontable td.area-4::before,
.handsontable td.area-5::before,
.handsontable td.area-6::before,
.handsontable td.area-7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #005eff;
}

.handsontable td.area::before {
  opacity: 0.1;
}

.handsontable td.area-1::before {
  opacity: 0.2;
}

.handsontable td.area-2::before {
  opacity: 0.27;
}

.handsontable td.area-3::before {
  opacity: 0.35;
}

.handsontable td.area-4::before {
  opacity: 0.41;
}

.handsontable td.area-5::before {
  opacity: 0.47;
}

.handsontable td.area-6::before {
  opacity: 0.54;
}

.handsontable td.area-7::before {
  opacity: 0.58;
}

.handsontable tbody th.current,
.handsontable thead th.current {
  box-shadow: inset 0 0 0 2px #4b89ff;
}

.handsontable tbody th.ht__highlight,
.handsontable thead th.ht__highlight {
  background-color: #dcdcdc;
}

.handsontable tbody th.ht__active_highlight,
.handsontable thead th.ht__active_highlight {
  background-color: #8eb0e7;
  color: #000;
}

.handsontableInput {
  border: none;
  outline-width: 0;
  margin: 0;
  padding: 1px 5px 0 5px;
  font-family: inherit;
  line-height: 21px;
  font-size: inherit;
  box-shadow: 0 0 0 2px #5292F7 inset;
  resize: none;
  /* below are needed to overwrite stuff added by jQuery UI Bootstrap theme */
  display: block;
  color: #000;
  border-radius: 0;
  background-color: #FFF;
  box-sizing: border-box !important;
  /* overwrite styles potentionally made by a framework */
}

.handsontableInput:focus {
  outline: none;
}

.handsontableInputHolder {
  position: absolute;
  top: 0;
  left: 0;
}

.htSelectEditor {
  position: absolute;

  select {
    -webkit-appearance: menulist-button !important;
    width: 100%;
    height: 100%;
    border: 2px solid #4b89ff;
    box-sizing: border-box !important;
  }
}

.htSelectEditor select:focus {
  outline: none;
}

.htSelectEditor .htAutocompleteArrow {
  display: none;
}

/*
TextRenderer readOnly cell
*/
.handsontable .htDimmed {
  color: #777;
}

.handsontable .htSubmenu {
  position: relative;
}

.handsontable .htSubmenu ::after {
  content: "▶";
  color: #777;
  position: absolute;
  right: 5px;
  font-size: 9px;
}

[dir=rtl].handsontable .htSubmenu ::after {
  content: "";
}

[dir=rtl].handsontable .htSubmenu ::before {
  content: "◀";
  color: #777;
  position: absolute;
  left: 5px;
  font-size: 9px;
}

/*
TextRenderer horizontal alignment
*/
.handsontable .htLeft {
  text-align: left;
}

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

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

.handsontable .htJustify {
  text-align: justify;
}

/*
TextRenderer vertical alignment
*/
.handsontable .htTop {
  vertical-align: top;
}

.handsontable .htMiddle {
  vertical-align: middle;
}

.handsontable .htBottom {
  vertical-align: bottom;
}

/*
TextRenderer placeholder value
*/
.handsontable .htPlaceholder {
  color: #999;
}

/**
 * Handsontable listbox theme
 */
.handsontable.listbox {
  margin: 0;
}

.handsontable.listbox .ht_master table {
  border: 1px solid #ccc;
  border-collapse: separate;
  background: white;
}

.handsontable.listbox th,
.handsontable.listbox tr:first-child th,
.handsontable.listbox tr:last-child th,
.handsontable.listbox tr:first-child td,
.handsontable.listbox td {
  border-color: transparent !important;
}

.handsontable.listbox th,
.handsontable.listbox td {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.handsontable.listbox td.htDimmed {
  cursor: default;
  color: inherit;
  font-style: inherit;
}

.handsontable.listbox .wtBorder {
  visibility: hidden;
}

.handsontable.listbox tr td.current,
.handsontable.listbox tr:hover td {
  background: #eee;
}

.ht_editor_hidden {
  z-index: -1;
}

.ht_editor_visible {
  z-index: 200;
}

.handsontable td.htSearchResult {
  background: #fcedd9;
  color: #583707;
}
/*

 Handsontable Mobile Text Editor stylesheet

 */
.handsontable.mobile,
.handsontable.mobile .wtHolder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-overflow-scrolling: touch;
}

.handsontable.mobile .handsontableInput:focus {
  -webkit-box-shadow: 0 0 0 2px #5292f7 inset;
  -moz-box-shadow: 0 0 0 2px #5292f7 inset;
  box-shadow: 0 0 0 2px #5292f7 inset;
  -webkit-appearance: none;
}

/* Initial left/top coordinates - overwritten when actual position is set */
.handsontable .topSelectionHandle,
.handsontable .topSelectionHandle-HitArea,
.handsontable .bottomSelectionHandle,
.handsontable .bottomSelectionHandle-HitArea {
  left: -10000px;
  right: unset;
  top: -10000px;
  z-index: 9999;
}

[dir=rtl].handsontable .topSelectionHandle, [dir=rtl].handsontable .topSelectionHandle-HitArea, [dir=rtl].handsontable .bottomSelectionHandle, [dir=rtl].handsontable .bottomSelectionHandle-HitArea {
  right: -10000px;
  left: unset;
}

.handsontable.hide-tween {
  -webkit-animation: opacity-hide 0.3s;
  animation: opacity-hide 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.handsontable.show-tween {
  -webkit-animation: opacity-show 0.3s;
  animation: opacity-show 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
/*
AutocompleteRenderer down arrow
*/
.handsontable .htAutocompleteArrow {
  float: right;
  font-size: 10px;
  color: #bbbbbb;
  cursor: default;
  width: 16px;
  text-align: center;
}

[dir=rtl].handsontable .htAutocompleteArrow {
  float: left;
}

.handsontable td.htInvalid .htAutocompleteArrow {
  color: #555555;
}

.handsontable td.htInvalid .htAutocompleteArrow:hover {
  color: #1a1a1a;
}

.handsontable td .htAutocompleteArrow:hover {
  color: #777;
}

.handsontable td.area .htAutocompleteArrow {
  color: #d3d3d3;
}
/*
CheckboxRenderer
*/
.handsontable .htCheckboxRendererInput.noValue {
  opacity: 0.5;
}

.handsontable .htCheckboxRendererLabel {
  font-size: inherit;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
}

.handsontable .htCheckboxRendererLabel.fullWidth {
  width: 100%;
}

.handsontable .collapsibleIndicator {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: unset;
  right: 5px;
  border: 1px solid #A6A6A6;
  line-height: 8px;
  color: #222;
  border-radius: 10px;
  font-size: 10px;
  width: 10px;
  height: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 6px rgb(238, 238, 238);
  -moz-box-shadow: 0 0 0 6px rgb(238, 238, 238);
  box-shadow: 0 0 0 3px rgb(238, 238, 238);
  background: #eee;
  text-align: center;
}

[dir=rtl].handsontable .collapsibleIndicator {
  right: unset;
  left: 5px;
}

.handsontable[dir=ltr] thead th:has(.collapsibleIndicator) div.htRight span.colHeader {
  margin-right: 20px;
}

.handsontable[dir=rtl] thead th:has(.collapsibleIndicator) div.htLeft span.colHeader {
  margin-left: 20px;
}

.handsontable .columnSorting {
  position: relative;
}

.handsontable[dir=ltr] div.htRight span[class*=ascending],
.handsontable[dir=ltr] div.htRight span[class*=descending] {
  margin-right: 10px;
  margin-left: -10px;
}

.handsontable[dir=rtl] div.htLeft span[class*=ascending],
.handsontable[dir=rtl] div.htLeft span[class*=descending] {
  margin-left: 10px;
  margin-right: -10px;
}

.handsontable[dir=ltr] div.htRight span[class*=ascending]:only-child,
.handsontable[dir=ltr] div.htRight span[class*=descending]:only-child {
  margin-right: 15px;
  margin-left: -15px;
}

.handsontable[dir=rtl] div.htLeft span[class*=ascending]:only-child,
.handsontable[dir=rtl] div.htLeft span[class*=descending]:only-child {
  margin-left: 15px;
  margin-right: -15px;
}

.handsontable .columnSorting.sortAction:hover {
  text-decoration: underline;
  cursor: pointer;
} /* Arrow position */
.handsontable span.colHeader.columnSorting::before {
  /* Centering start */
  top: 50%;
  /* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
  margin-top: -6px;
  /* Centering end */
  /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
  padding-left: 8px;
  padding-right: 0;
  position: absolute;
  right: -9px;
  left: unset;
  content: "";
  height: 10px;
  width: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
}

[dir=rtl].handsontable span.colHeader.columnSorting::before {
  /* Centering end */
  /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
  padding-right: 8px;
  padding-left: 0;
  left: -9px;
  right: unset;
  background-position-x: left;
}

.handsontable span.colHeader.columnSorting.ascending::before {
  /* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC);
}

.handsontable span.colHeader.columnSorting.descending::before {
  /* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=);
}

.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::before {
  content: "*";
  display: inline-block;
  position: relative;
  /* The multi-line header and header with longer text need more padding to not hide arrow,
  we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
  padding-right: 20px;
}

/* Force the ghost table to ignore the additional upper border 1px for the first row in the table */
.handsontable.htGhostTable table thead th {
  border-bottom-width: 0;
}

.handsontable.htGhostTable table tbody tr th,
.handsontable.htGhostTable table tbody tr td {
  border-top-width: 0;
}

.handsontable .htCommentCell {
  position: relative;
}

.handsontable .htCommentCell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  border-left: 6px solid transparent;
  border-right: none;
  border-top: 6px solid black;
}

[dir=rtl].handsontable .htCommentCell::after {
  left: 0;
  right: unset;
  border-right: 6px solid transparent;
  border-left: none;
}

.htCommentsContainer .htComments {
  display: none;
  z-index: 1059;
  position: absolute;
}

.htCommentsContainer .htCommentTextArea {
  box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  border-left: 3px solid #ccc;
  border-right: none;
  background-color: #fff;
  width: 215px;
  height: 90px;
  font-size: 12px;
  padding: 5px;
  outline: 0 !important;
  -webkit-appearance: none;
}

[dir=rtl].htCommentsContainer .htCommentTextArea {
  border-right: 3px solid #ccc;
  border-left: none;
}

.htCommentsContainer .htCommentTextArea:focus {
  box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px, inset 0 0 0 1px #5292f7;
  border-left: 3px solid #5292f7;
  border-right: none;
}

[dir=rtl].htCommentsContainer .htCommentTextArea:focus {
  border-right: 3px solid #5292f7;
  border-left: none;
}
/*!
 * Handsontable ContextMenu
 */
.htContextMenu:not(.htGhostTable) {
  display: none;
  position: absolute;
  /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
  z-index: 1060;
}

.htContextMenu .ht_clone_top,
.htContextMenu .ht_clone_bottom,
.htContextMenu .ht_clone_inline_start,
.htContextMenu .ht_clone_top_inline_start_corner,
.htContextMenu .ht_clone_bottom_inline_start_corner {
  display: none;
}

.htContextMenu .ht_master table.htCore {
  border-color: #ccc;
  border-style: solid;
  border-top-width: 1px;
  border-bottom-width: 2px;
  border-left-width: 1px;
  border-right-width: 2px;
}

[dir=rtl].htContextMenu .ht_master table.htCore {
  border-right-width: 1px;
  border-left-width: 2px;
}

.htContextMenu.handsontable:focus {
  outline: none;
}

.htContextMenu .wtBorder {
  visibility: hidden;
}

.htContextMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htContextMenu table tbody tr td:first-child {
  border-top-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
}

[dir=rtl].htContextMenu table tbody tr td:first-child {
  border-right-width: 0;
  border-left-width: 0;
}

.htContextMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htContextMenu table tbody tr td.current {
  background: #f3f3f3;
}

.htContextMenu table tbody tr td.htSeparator {
  border-top: 1px solid #e6e6e6;
  height: 0;
  padding: 0;
  cursor: default;
}

.htContextMenu table tbody tr td.htDisabled {
  color: #999;
  cursor: default;
}

.htContextMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htContextMenu table tbody tr.htHidden {
  display: none;
}

.htContextMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 6px;
}

[dir=rtl].htContextMenu table tbody tr td .htItemWrapper {
  margin-right: 10px;
  margin-left: 6px;
}

.htContextMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
  right: 0;
}

[dir=rtl].htContextMenu table tbody tr td div span.selected {
  right: 4px;
  left: 0;
}

.htContextMenu .ht_master .wtHolder {
  overflow: hidden;
}

textarea.HandsontableCopyPaste {
  position: fixed !important;
  top: 0 !important;
  right: 100% !important;
  overflow: hidden;
  opacity: 0;
  outline: 0 none !important;
}

/*!
 * Handsontable DropdownMenu
 */
.handsontable .changeType {
  background: #eee;
  border-radius: 2px;
  border: 1px solid #bbb;
  color: #bbb;
  font-size: 9px;
  line-height: 9px;
  padding: 2px;
  margin: 3px 1px 0 5px;
  float: right;
}

[dir=rtl].handsontable .changeType {
  float: left;
}

.handsontable[dir=rtl] .changeType {
  margin: 3px 5px 0 1px;
}

.handsontable .changeType::before {
  content: "▼ ";
}

.handsontable .changeType:hover {
  border: 1px solid #777;
  color: #777;
  cursor: pointer;
}

.htDropdownMenu:not(.htGhostTable) {
  display: none;
  position: absolute;
  /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
  z-index: 1060;
}

.htDropdownMenu .ht_clone_top,
.htDropdownMenu .ht_clone_bottom,
.htDropdownMenu .ht_clone_inline_start,
.htDropdownMenu .ht_clone_top_inline_start_corner,
.htDropdownMenu .ht_clone_bottom_inline_start_corner {
  display: none;
}

.htDropdownMenu table.htCore {
  border-color: #ccc;
  border-style: solid;
  border-top-width: 1px;
  border-bottom-width: 2px;
  border-left-width: 1px;
  border-right-width: 2px;
}

[dir=rtl].htDropdownMenu table.htCore {
  border-right-width: 1px;
  border-left-width: 2px;
}

.htDropdownMenu.handsontable:focus {
  outline: none;
}

.htDropdownMenu .wtBorder {
  visibility: hidden;
}

.htDropdownMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htDropdownMenu table tbody tr td:first-child {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}

[dir=rtl].htDropdownMenu table tbody tr td:first-child {
  border-left-width: 0;
  border-right-width: 0;
}

.htDropdownMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htDropdownMenu table tbody tr td.current {
  background: #e9e9e9;
}

.htDropdownMenu table tbody tr td.htSeparator {
  border-top: 1px solid #e6e6e6;
  height: 0;
  padding: 0;
  cursor: default;
}

.htDropdownMenu table tbody tr td.htDisabled {
  color: #999;
}

.htDropdownMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htDropdownMenu:not(.htGhostTable) table tbody tr.htHidden {
  display: none;
}

.htDropdownMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 10px;
}

[dir=rtl].htDropdownMenu table tbody tr td .htItemWrapper {
  margin-right: 10px;
  margin-left: 10px;
}

.htDropdownMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
  right: 0;
}

[dir=rtl].htDropdownMenu table tbody tr td div span.selected {
  right: 4px;
  left: 0;
}

.htDropdownMenu .ht_master .wtHolder {
  overflow: hidden;
}

/*!
 * Handsontable Filters
 */
/* Conditions menu */
.htFiltersConditionsMenu:not(.htGhostTable) {
  display: none;
  position: absolute;
  z-index: 1070;
}

.htFiltersConditionsMenu .ht_clone_top,
.htFiltersConditionsMenu .ht_clone_bottom,
.htFiltersConditionsMenu .ht_clone_inline_start,
.htFiltersConditionsMenu .ht_clone_top_inline_start_corner,
.htFiltersConditionsMenu .ht_clone_bottom_inline_start_corner {
  display: none;
}

.htFiltersConditionsMenu table.htCore {
  border: 1px solid #bbb;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.htFiltersConditionsMenu .wtBorder {
  visibility: hidden;
}

.htFiltersConditionsMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htFiltersConditionsMenu table tbody tr td:first-child {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}

[dir=rtl].htFiltersConditionsMenu table tbody tr td:first-child {
  border-left-width: 0;
  border-right-width: 0;
}

.htFiltersConditionsMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htFiltersConditionsMenu table tbody tr td.current {
  background: #e9e9e9;
}

.htFiltersConditionsMenu table tbody tr td.htSeparator {
  border-top: 1px solid #e6e6e6;
  height: 0;
  padding: 0;
}

.htFiltersConditionsMenu table tbody tr td.htDisabled {
  color: #999;
}

.htFiltersConditionsMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htFiltersConditionsMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 10px;
}

.htFiltersConditionsMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
}

.htFiltersConditionsMenu .ht_master .wtHolder {
  overflow: hidden;
}

.handsontable .htMenuFiltering {
  border-bottom: 1px dotted #ccc;
  height: 135px;
  overflow: hidden;
}

.handsontable .ht_master table td.htCustomMenuRenderer {
  background-color: #fff;
  cursor: auto;
}

/* Menu label */
.handsontable .htFiltersMenuLabel {
  font-size: 0.75em;
}

/* Component action bar */
.handsontable .htFiltersMenuActionBar {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 3px;
}

/* Component filter by conditional */
.handsontable .htFiltersMenuCondition.border {
  border-bottom: 1px dotted #ccc !important;
}

.handsontable .htFiltersMenuCondition .htUIInput {
  padding: 0 0 5px 0;
}

/* Component filter by value */
.handsontable .htFiltersMenuValue {
  border-bottom: 1px dotted #ccc !important;
}

.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch {
  padding: 0;
}

.handsontable .htFiltersMenuCondition .htUIInput input,
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
  font-family: inherit;
  font-size: 0.75em;
  padding: 4px;
  box-sizing: border-box;
  width: 100%;
}

.htUIMultipleSelect .ht_master .wtHolder {
  overflow: auto;
}

.handsontable .htFiltersActive .changeType {
  border: 1px solid #509272;
  color: #18804e;
  background-color: #d2e0d9;
}

.handsontable .htUISelectAll {
  margin-left: 0;
  margin-right: 10px;
}

[dir=rtl].handsontable .htUISelectAll {
  margin-right: 0;
  margin-left: 10px;
}

.handsontable .htUIClearAll, .handsontable .htUISelectAll {
  display: inline-block;
}

.handsontable .htUIClearAll a, .handsontable .htUISelectAll a {
  font-size: 0.75em;
}

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

[dir=rtl].handsontable .htUISelectionControls {
  text-align: left;
}

.handsontable .htCheckboxRendererInput {
  display: inline-block;
  margin-top: 0;
  margin-right: 5px;
  margin-bottom: 0;
  margin-left: 0;
  vertical-align: middle;
  height: 1em;
}

[dir=rtl].handsontable .htCheckboxRendererInput {
  margin-left: 5px;
  margin-right: 0;
}

/* UI elements */
/* Input */
.handsontable .htUIInput {
  padding: 3px 0 7px 0;
  position: relative;
  text-align: center;
}

.handsontable .htUIInput input {
  border-radius: 2px;
  border: 1px solid #d2d1d1;
}

.handsontable .htUIInputIcon {
  position: absolute;
}

/* Button */
.handsontable .htUIInput.htUIButton {
  cursor: pointer;
  display: inline-block;
}

.handsontable .htUIInput.htUIButton input {
  background-color: #eee;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75em;
  font-weight: bold;
  height: 19px;
  min-width: 64px;
}

.handsontable .htUIInput.htUIButton input:hover {
  border-color: #b9b9b9;
}

.handsontable .htUIInput.htUIButtonOK {
  margin-left: 0;
  margin-right: 10px;
}

[dir=rtl].handsontable .htUIInput.htUIButtonOK {
  margin-right: 0;
  margin-left: 10px;
}

.handsontable .htUIInput.htUIButtonOK input {
  background-color: #0f9d58;
  border-color: #18804e;
  color: #fff;
}

.handsontable .htUIInput.htUIButtonOK input:focus-visible {
  background-color: #92dd8d;
  border-color: #7cb878;
  color: #000;
}

.handsontable .htUIInput.htUIButtonOK input:hover {
  border-color: #1a6f46;
}

/* Select */
.handsontable .htUISelect {
  cursor: pointer;
  margin-bottom: 7px;
  position: relative;
}

.handsontable .htUISelectCaption {
  background-color: #e8e8e8;
  border-radius: 2px;
  border: 1px solid #d2d1d1;
  font-family: inherit;
  font-size: 0.75em;
  font-weight: bold;
  padding: 3px 20px 3px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.handsontable .htUISelectCaption:hover {
  background-color: #e8e8e8;
  border: 1px solid #b9b9b9;
}

.handsontable .htUISelectDropdown::after {
  content: "▲";
  font-size: 7px;
  position: absolute;
  right: 10px;
  top: 0;
}

.handsontable .htUISelectDropdown::before {
  content: "▼";
  font-size: 7px;
  position: absolute;
  right: 10px;
  top: 8px;
}

/* SelectMultiple */
.handsontable .htUIMultipleSelect .handsontable .htCore {
  border: none;
}

.handsontable .htUIMultipleSelect .handsontable .htCore td:hover {
  background-color: #F5F5F5;
}

.handsontable .htUIMultipleSelectSearch input {
  border-radius: 2px;
  border: 1px solid #d2d1d1;
  padding: 3px;
}

.handsontable .htUIRadio {
  display: inline-block;
  margin-left: 0;
  margin-right: 5px;
  height: 100%;
}

[dir=rtl].handsontable .htUIRadio {
  margin-right: 0;
  margin-left: 5px;
}

.handsontable .htUIRadio:last-child {
  margin-right: 0;
}

.handsontable .htUIRadio > input[type=radio] {
  margin-left: 0;
  margin-right: 0.5ex;
}

[dir=rtl].handsontable .htUIRadio > input[type=radio] {
  margin-right: 0;
  margin-left: 0.5ex;
}

.handsontable .htUIRadio label {
  vertical-align: middle;
}

.handsontable .htFiltersMenuOperators {
  padding-bottom: 5px;
}

/*
 * Handsontable HiddenColumns
 */
.handsontable th.beforeHiddenColumn {
  position: relative;
}

.handsontable th.beforeHiddenColumn::after,
.handsontable th.afterHiddenColumn::before {
  color: #bbb;
  position: absolute;
  top: 50%;
  font-size: 5pt;
  transform: translateY(-50%);
}

.handsontable th.afterHiddenColumn {
  position: relative;
}

.handsontable[dir=ltr] th.afterHiddenColumn div.htLeft {
  margin-left: 10px;
}

.handsontable[dir=ltr] th.beforeHiddenColumn div.htRight {
  margin-right: 10px;
}

.handsontable[dir=rtl] th.afterHiddenColumn div.htRight {
  margin-right: 10px;
}

.handsontable[dir=rtl] th.beforeHiddenColumn div.htLeft {
  margin-left: 10px;
}

.handsontable th.beforeHiddenColumn::after {
  right: 1px;
  content: "◀"; /* left arrow */
}

[dir=rtl].handsontable th.beforeHiddenColumn::after {
  right: initial;
  left: 1px;
  content: "▶"; /* right arrow */
}

.handsontable th.afterHiddenColumn::before {
  left: 1px;
  content: "▶"; /* right arrow */
}

[dir=rtl].handsontable th.afterHiddenColumn::before {
  right: 1px;
  left: initial;
  content: "◀"; /* left arrow */
}

/*!
 * Handsontable HiddenRows
 */
.handsontable th.beforeHiddenRow::before,
.handsontable th.afterHiddenRow::after {
  color: #bbb;
  font-size: 6pt;
  line-height: 6pt;
  position: absolute;
  left: 2px;
}

.handsontable th.beforeHiddenRow,
.handsontable th.afterHiddenRow {
  position: relative;
}

.handsontable th.beforeHiddenRow::before {
  content: "▲";
  bottom: 2px;
}

.handsontable th.afterHiddenRow::after {
  content: "▼";
  top: 2px;
}

.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight::before,
.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight::after {
  color: #eee;
}

.handsontable td.afterHiddenRow.firstVisibleRow,
.handsontable th.afterHiddenRow.firstVisibleRow {
  border-top: 1px solid #CCC;
}

.htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_top_inline_start_corner th:nth-child(2),
.htRowHeaders .ht_master.innerBorderInlineStart ~ .ht_clone_inline_start td:first-of-type {
  border-left: 0 none;
}

.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
  cursor: move;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab;
}

.handsontable.ht__manualColumnMove.on-moving--columns *,
.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
  cursor: move;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
  display: none;
}

.handsontable .ht__manualColumnMove--guideline,
.handsontable .ht__manualColumnMove--backlight {
  position: absolute;
  height: 100%;
  display: none;
}

.handsontable .ht__manualColumnMove--guideline {
  background: #757575;
  width: 2px;
  top: 0;
  margin-inline-start: -1px;
  margin-inline-end: 0;
  z-index: 205;
}

.handsontable .ht__manualColumnMove--backlight {
  background: #343434;
  background: rgba(52, 52, 52, 0.25);
  display: none;
  z-index: 205;
  pointer-events: none;
}

.handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline,
.handsontable.on-moving--columns .ht__manualColumnMove--backlight {
  display: block;
}

.handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
  cursor: move;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab;
}

.handsontable.ht__manualRowMove.on-moving--rows *,
.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
  cursor: move;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
  display: none;
}

.handsontable .ht__manualRowMove--guideline,
.handsontable .ht__manualRowMove--backlight {
  position: absolute;
  width: 100%;
  display: none;
}

.handsontable .ht__manualRowMove--guideline {
  background: #757575;
  height: 2px;
  left: 0;
  margin-top: -1px;
  z-index: 205;
}

.handsontable .ht__manualRowMove--backlight {
  background: #343434;
  background: rgba(52, 52, 52, 0.25);
  display: none;
  z-index: 205;
  pointer-events: none;
}

.handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
.handsontable.on-moving--rows .ht__manualRowMove--backlight {
  display: block;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight]:not([class*=fullySelectedMergedCell])::before {
  opacity: 0;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-multiple]::before {
  opacity: 0.1;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-0]::before {
  opacity: 0.1;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-1]::before {
  opacity: 0.2;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-2]::before {
  opacity: 0.27;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-3]::before {
  opacity: 0.35;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-4]::before {
  opacity: 0.41;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-5]::before {
  opacity: 0.47;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-6]::before {
  opacity: 0.54;
}

.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-7]::before {
  opacity: 0.58;
}

.handsontable[dir=ltr] div.htRight span[class*=sort-] {
  margin-right: 15px;
  margin-left: -15px;
}

.handsontable[dir=rtl] div.htLeft span[class*=sort-] {
  margin-left: 15px;
  margin-right: -15px;
}

.handsontable[dir=ltr] div.htRight span[class*=sort-]:only-child {
  margin-right: 20px;
  margin-left: -20px;
}

.handsontable[dir=rtl] div.htLeft span[class*=sort-]:only-child {
  margin-left: 20px;
  margin-right: -20px;
}

/* Column's number position */
.handsontable span.colHeader.columnSorting::after {
  /* Centering start */
  top: 50%;
  /* Two extra pixels (-2 instead of -4) for purpose of proper positioning of numeric indicators, when `font-size` set to default */
  margin-top: -2px;
  /* Centering end */
  position: absolute;
  right: -15px;
  left: unset;
  /* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
  padding-left: 5px;
  padding-right: unset;
  font-size: 8px;
  height: 8px;
  line-height: 1.1;
}

[dir=rtl].handsontable span.colHeader.columnSorting::after {
  left: -15px;
  right: unset;
  /* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */
  padding-right: 5px;
  padding-left: unset;
}

/* We support up to 7 numeric indicators, describing order of column in sorted columns queue */
.handsontable span.colHeader.columnSorting[class^=sort-]::after,
.handsontable span.colHeader.columnSorting[class*=" sort-"]::after {
  content: "+";
}

.handsontable span.colHeader.columnSorting.sort-1::after {
  content: "1";
}

.handsontable span.colHeader.columnSorting.sort-2::after {
  content: "2";
}

.handsontable span.colHeader.columnSorting.sort-3::after {
  content: "3";
}

.handsontable span.colHeader.columnSorting.sort-4::after {
  content: "4";
}

.handsontable span.colHeader.columnSorting.sort-5::after {
  content: "5";
}

.handsontable span.colHeader.columnSorting.sort-6::after {
  content: "6";
}

.handsontable span.colHeader.columnSorting.sort-7::after {
  content: "7";
}

/* Drop-down menu widens header by 5 pixels, sort sequence numbers won't overlap the icon; mainly for the IE9+ */
.htGhostTable th div button.changeType + span.colHeader.columnSorting:not(.indicatorDisabled) {
  padding-right: 5px;
}

.handsontable thead th.hiddenHeader:not(:first-of-type) {
  display: none;
}

thead th.hiddenHeaderText .colHeader {
  opacity: 0;
}

.handsontable th.ht_nestingLevels {
  text-align: left;
  padding-left: 7px;
}

[dir=rtl].handsontable th.ht_nestingLevels {
  text-align: right;
  padding-right: 7px;
}

.handsontable th div.ht_nestingLevels {
  display: inline-block;
  position: absolute;
  left: 11px;
  right: unset;
}

[dir=rtl].handsontable th div.ht_nestingLevels {
  right: 11px;
  left: unset;
}

.handsontable.innerBorderInlineStart th div.ht_nestingLevels,
.handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingLevels {
  right: 10px;
  left: unset;
}

[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingLevels, [dir=rtl].handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingLevels {
  left: 10px;
  right: unset;
}

.handsontable th span.ht_nestingLevel {
  display: inline-block;
}

.handsontable th span.ht_nestingLevel_empty {
  display: inline-block;
  width: 10px;
  height: 1px;
  float: left;
}

[dir=rtl].handsontable th span.ht_nestingLevel_empty {
  float: right;
}

.handsontable th span.ht_nestingLevel::after {
  content: "┐";
  font-size: 9px;
  display: inline-block;
  position: relative;
  bottom: 3px;
}

.handsontable th div.ht_nestingButton {
  display: inline-block;
  position: absolute;
  right: -2px;
  left: unset;
  cursor: pointer;
}

[dir=rtl].handsontable th div.ht_nestingButton {
  left: -2px;
  right: unset;
}

.handsontable th div.ht_nestingButton.ht_nestingExpand::after {
  content: "+";
}

.handsontable th div.ht_nestingButton.ht_nestingCollapse::after {
  content: "-";
}

.handsontable.innerBorderInlineStart th div.ht_nestingButton,
.handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingButton {
  right: 0;
  left: unset;
}

[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingButton, [dir=rtl].handsontable.innerBorderInlineStart ~ .handsontable th div.ht_nestingButton {
  left: 0;
  right: unset;
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    background: #f5f5f5;
    height: initial;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}


.k-button[disabled], .k-button[disabled]:focus, .k-button[disabled].k-state-focused,
[disabled] .k-button,
[disabled] .k-button:focus,
[disabled] .k-button.k-state-focused, .k-button.k-state-disabled, .k-button.k-state-disabled:focus, .k-button.k-state-disabled.k-state-focused {
  outline: none;
  cursor: default;
  opacity: 0.6;
  filter: grayscale(0.1);
  pointer-events: none;
  box-shadow: none; }

.k-widget, .k-block,
.k-panel {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-content, .k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper, .k-flatcolorpicker, .k-editor, .k-scheduler-agendaview tr.k-state-hover .k-scheduler-datecolumn,
.k-scheduler-agendaview tr:hover .k-scheduler-datecolumn,
.k-scheduler-agendaview tr:hover .k-scheduler-groupcolumn, .k-notification {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-popup, .k-column-menu .k-menu:not(.k-context-menu), .k-menu-group,
.k-menu.k-context-menu {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f9f9f9; }

.k-spreadsheet-top-corner, .k-spreadsheet-row-header,
.k-spreadsheet-column-header, .k-time-list-wrapper .k-title, .editorToolbarWindow.k-header.k-window-content, .k-treemap .k-treemap-title, .k-gantt-toolbar, .k-scheduler-toolbar,
.k-scheduler-footer, .k-block > .k-header,
.k-panel > .k-header {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }

.k-list-container .k-nodata .k-button, .k-dropdown .k-dropdown-wrap, .k-button, .k-button-group.k-state-disabled .k-button:not(.k-state-active),
.k-button-group .k-state-disabled:not(.k-state-active), .k-toolbar .k-split-button .k-button, .k-spreadsheet-filter, .k-pivot-toolbar .k-button,
.k-fieldselector .k-list li.k-item, .k-colorpicker .k-picker-wrap, .k-combobox .k-select, .k-datepicker .k-select,
.k-timepicker .k-select,
.k-datetimepicker .k-select, .k-dateinput .k-select, .k-dropdowntree .k-dropdown-wrap, .k-editor .k-editor-toolbar-wrap a.k-tool,
.k-ct-popup .k-editor-toolbar a.k-tool,
.editorToolbarWindow.k-header.k-window-content a.k-tool, .k-numerictextbox .k-select, .k-handle, .k-map .k-navigator, .k-gantt-views li, .k-scheduler-navigation .k-nav-today,
.k-scheduler-navigation .k-nav-prev,
.k-scheduler-navigation .k-nav-next, .k-scheduler-views li, .k-scheduler-footer li {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6;
  background-image: linear-gradient(#f6f6f6, #f1f1f1); }

.k-dropdown .k-dropdown-wrap:hover, .k-dropdown .k-dropdown-wrap.k-state-hover, .k-button:hover, .k-button.k-state-hover, .k-action-buttons .k-button:hover, .k-action-buttons .k-button.k-state-hover, .k-toolbar .k-split-button .k-button:hover,
.k-toolbar .k-split-button .k-button.k-state-hover, .k-spreadsheet-filter:hover, .k-pivot-toolbar .k-button:hover, .k-pivot-toolbar .k-button.k-state-hover,
.k-fieldselector .k-list li.k-item:hover,
.k-fieldselector .k-list li.k-item.k-state-hover, .k-colorpicker .k-tool-icon:hover,
.k-colorpicker .k-select:hover,
.k-colorpicker .k-tool-icon.k-state-hover,
.k-colorpicker .k-select.k-state-hover,
.k-colorpicker .k-state-hover, .k-combobox > :hover .k-select,
.k-combobox .k-state-hover .k-select, .k-datepicker:hover .k-select,
.k-datepicker .k-state-hover .k-select,
.k-timepicker:hover .k-select,
.k-timepicker .k-state-hover .k-select,
.k-datetimepicker:hover .k-select,
.k-datetimepicker .k-state-hover .k-select, .k-dateinput .k-select:hover, .k-dateinput .k-select > .k-state-selected,
.k-dateinput .k-select > .k-state-active, .k-dateinput .k-state-hover .k-select, .k-dropdowntree .k-dropdown-wrap:hover, .k-dropdowntree .k-dropdown-wrap.k-state-hover, .k-editor .k-editor-toolbar-wrap a.k-tool:hover, .k-editor .k-editor-toolbar-wrap a.k-tool.k-state-hover,
.k-ct-popup .k-editor-toolbar a.k-tool:hover,
.k-ct-popup .k-editor-toolbar a.k-tool.k-state-hover,
.editorToolbarWindow.k-header.k-window-content a.k-tool:hover,
.editorToolbarWindow.k-header.k-window-content a.k-tool.k-state-hover, .k-numerictextbox .k-select:hover, .k-numerictextbox .k-select > .k-state-selected,
.k-numerictextbox .k-select > .k-state-active, .k-numerictextbox .k-state-hover .k-select, .k-handle:hover, .k-gantt-views li.k-state-hover, .k-scheduler-navigation .k-nav-today:hover,
.k-scheduler-navigation .k-nav-prev:hover,
.k-scheduler-navigation .k-nav-next:hover, .k-scheduler-views li:hover, .k-scheduler-footer li:hover {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-color-legacy-ededed, #ededed);
  background-image: linear-gradient(var(--sg-color-legacy-ededed, #ededed), #e8e8e8); }

.k-button:active, .k-button.k-state-active, .k-split-button.k-button-group .k-button:active, .k-split-button.k-button-group .k-button.k-state-active, .k-action-buttons .k-button:active, .k-action-buttons .k-button.k-state-active, .k-toolbar .k-split-button .k-button:active,
.k-toolbar .k-split-button .k-button.k-state-active, .k-spreadsheet-filter.k-state-active, .k-colorpicker .k-state-active, .k-editor .k-editor-toolbar-wrap a.k-tool:active, .k-editor .k-editor-toolbar-wrap a.k-tool.k-state-active,
.k-ct-popup .k-editor-toolbar a.k-tool:active,
.k-ct-popup .k-editor-toolbar a.k-tool.k-state-active,
.editorToolbarWindow.k-header.k-window-content a.k-tool:active,
.editorToolbarWindow.k-header.k-window-content a.k-tool.k-state-active, .k-multiselect-wrap li.k-button:active, .k-multiselect-wrap li.k-button.k-state-active {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6;
  background-image: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06); }

.k-dropdowntree .k-dropdown-wrap.k-state-focused {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }

.k-button.k-primary, .k-slider .k-draghandle {
  border-color: #0735cc;
  color: #ffffff;
  background-color: #0735cc;
  background-image: linear-gradient(rgba(82, 120, 255, 0), rgba(82, 120, 255, 0.2)); }

.k-button.k-primary:hover, .k-button.k-primary.k-state-hover, .k-action-buttons .k-primary:hover, .k-action-buttons .k-primary.k-state-hover, .k-slider .k-draghandle:hover {
  border-color: #5297ff;
  color: #ffffff;
  background-color: #5297ff;
  background-image: linear-gradient(rgba(82, 111, 255, 0), rgba(82, 111, 255, 0.2)); }

.k-button.k-state-selected, .k-button.k-primary:active, .k-button.k-primary.k-state-active, .k-button.k-primary.k-state-selected, .k-button-group .k-button:active,
.k-button-group .k-button.k-state-active,
.k-button-group .k-button.k-state-selected,
.k-button-group > input[type="radio"]:checked + .k-button,
.k-button-group > input[type="checkbox"]:checked + .k-button, .k-action-buttons .k-primary:active, .k-action-buttons .k-primary.k-state-active, .k-slider .k-draghandle:active, .k-slider .k-draghandle.k-pressed {
  border-color: #0735cc;
  color: #ffffff;
  background-color: #0735cc;
  background-image: linear-gradient(rgba(82, 120, 255, 0.2), rgba(82, 120, 255, 0)); }

.k-toolbar, .k-editor-toolbar {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }

.k-autocomplete, .k-flatcolorpicker .k-color-value, .k-combobox .k-dropdown-wrap, .k-datepicker .k-picker-wrap,
.k-timepicker .k-picker-wrap,
.k-datetimepicker .k-picker-wrap, .k-dateinput .k-dateinput-wrap, .k-textbox,
.k-textarea,
.k-input.k-textbox, .k-multiselect-wrap, .k-numerictextbox .k-numeric-wrap {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-autocomplete.k-state-hover, .k-combobox > :hover,
.k-combobox .k-state-hover, .k-datepicker:hover,
.k-datepicker .k-state-hover,
.k-timepicker:hover,
.k-timepicker .k-state-hover,
.k-datetimepicker:hover,
.k-datetimepicker .k-state-hover, .k-dateinput .k-state-hover, .k-multiselect-wrap:hover, .k-multiselect-wrap.k-state-hover, .k-numerictextbox .k-state-hover {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-dropdown .k-dropdown-wrap.k-state-focused, .k-autocomplete.k-state-focused, .k-autocomplete.k-state-active, .k-combobox > .k-state-focused,
.k-combobox .k-state-active, .k-datepicker .k-state-focused,
.k-datepicker .k-state-active,
.k-timepicker .k-state-focused,
.k-timepicker .k-state-active,
.k-datetimepicker .k-state-focused,
.k-datetimepicker .k-state-active, .k-dateinput .k-state-focused, .k-state-focused > .k-multiselect-wrap, .k-numerictextbox .k-state-focused {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04); }

.k-scheduler-agendaview tr.k-state-hover,
.k-scheduler-agendaview .k-scheduler-content tr:hover {
  border-color: var(--sg-color-legacy-ededed, #ededed);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-drag-clue {
  color: #ffffff;
  background-color: #0735cc; }

.k-column-menu .k-menu:not(.k-context-menu) .k-item {
  color: var(--sg-text-color, #000000);
  background-color: #f9f9f9; }

.k-list .k-item:focus,
.k-list .k-item.k-state-focused,
.k-list-optionlabel:focus,
.k-list-optionlabel.k-state-focused, .k-column-menu .k-menu:not(.k-context-menu) .k-item:focus, .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-state-focused, .k-gantt-views li.k-state-focused,
.k-gantt-views li .k-state-focused, .k-scheduler-navigation li.k-state-focused, .k-scheduler-views li.k-state-focused {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-list .k-item:hover,
.k-list .k-item.k-state-hover,
.k-list-optionlabel:hover,
.k-list-optionlabel.k-state-hover, .k-list-container .k-button:hover,
.k-list-container .k-button.k-state-hover, .k-column-list-item:hover,
.k-columnmenu-item:hover, .k-column-menu .k-menu:not(.k-context-menu) .k-item:hover, .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-state-hover, .k-spreadsheet-filter-menu > .k-menu .k-item.k-state-hover,
.k-spreadsheet-filter-menu > .k-menu:not(.k-context-menu) .k-item.k-state-hover, .k-spreadsheet-popup .k-button:hover,
.k-spreadsheet-popup .k-button.k-state-hover, .k-menu-group .k-item:hover, .k-menu-group .k-item.k-state-hover,
.k-menu.k-context-menu .k-item:hover,
.k-menu.k-context-menu .k-item.k-state-hover {
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-list .k-item.k-state-selected,
.k-list-optionlabel.k-state-selected, .k-list-container .k-button:active,
.k-list-container .k-button.k-state-active, .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-state-selected, .k-spreadsheet-popup .k-button:active,
.k-spreadsheet-popup .k-button.k-state-active,
.k-spreadsheet-popup .k-button.k-state-selected, .k-menu-group .k-item.k-state-selected,
.k-menu.k-context-menu .k-item.k-state-selected {
  color: #ffffff;
  background-color: #0735cc; }

.k-theme-test-class,
.k-common-test-class {
  opacity: 0; }

.k-reset {
  margin: 0;
  padding: 0;
  border-width: 0;
  outline: 0;
  text-decoration: none;
  font: inherit;
  list-style: none; }

.k-widget {
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  outline: 0;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent; }

table.k-widget {
  display: table; }

kendo-sortable {
  display: block; }

.k-overlay {
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001; }

.k-rtl {
  direction: rtl; }

.k-link,
.k-link:hover {
  color: inherit;
  text-decoration: none;
  outline: 0;
  cursor: pointer; }

.k-content {
  outline: 0; }

.k-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.k-no-click {
  pointer-events: none; }

.k-pdf-export-shadow {
  position: absolute;
  overflow: hidden;
  left: -15000px;
  width: 14400px; }

.kendo-pdf-hide-pseudo-elements::before,
.kendo-pdf-hide-pseudo-elements::after {
  display: none !important; }

.k-state-disabled,
.k-widget[disabled] {
  outline: none;
  cursor: default;
  opacity: 0.6;
  filter: grayscale(0.1);
  pointer-events: none;
  box-shadow: none; }
  .k-state-disabled .k-link,
  .k-state-disabled .k-button,
  .k-widget[disabled] .k-link,
  .k-widget[disabled] .k-button {
    cursor: default;
    outline: 0; }
  .k-state-disabled [disabled],
  .k-state-disabled .k-state-disabled,
  .k-widget[disabled] [disabled],
  .k-widget[disabled] .k-state-disabled {
    opacity: 1;
    filter: grayscale(0); }

.k-hr, .k-separator, .k-menu-group .k-item.k-separator,
.k-menu-vertical .k-item.k-separator {
  margin: 1em auto;
  height: 0;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.08);
  display: block; }

.k-hbox > .k-hr, .k-columnset > .k-hr, .k-toolbar .k-separator, .k-menu-horizontal > .k-item.k-separator {
  margin: 0;
  width: 0;
  height: auto;
  border-width: 0 0 0 1px;
  flex: 0 0 auto; }

.k-hr {
  padding: 0;
  float: none;
  clear: both; }

.k-vbox > .k-hr, .k-rowset > .k-hr {
  margin: 0;
  flex: 0 0 auto; }

.k-dirty {
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  border-width: 3px;
  border-style: solid;
  border-color: #d51923 #d51923 transparent transparent;
  position: absolute;
  top: 0;
  right: 0; }

[dir="rtl"] .k-dirty,
.k-rtl .k-dirty {
  border-color: transparent transparent #d51923 #d51923;
  right: auto;
  left: 0; }

.k-display-inline {
  display: inline !important; }

.k-display-block {
  display: block !important; }

.k-display-inline-block {
  display: inline-block !important; }

.k-display-flex {
  display: flex !important; }

.k-display-inline-flex {
  display: inline-flex !important; }

.k-display-table {
  display: table !important; }

.k-display-inline-table {
  display: inline-table !important; }

.k-display-none, .k-hidden {
  display: none !important; }

.k-float-left {
  float: left !important; }

.k-float-right {
  float: right !important; }

.k-float-none {
  float: none !important; }

.k-floatwrap::after,
.k-grid-toolbar::after,
.k-slider-items::after {
  content: "";
  display: block;
  clear: both; }

.k-flex-wrap {
  flex-wrap: wrap; }

.k-flex-nowrap {
  flex-wrap: nowrap; }

.k-flex-wrap-reverse {
  flex-wrap: wrap-reverse; }

.k-flex {
  flex: 1 1 0; }

.k-flex-auto {
  flex: 1 1 auto; }

.k-no-flex {
  flex: 0 0 0; }

.k-no-flex-auto {
  flex: 0 0 auto; }

.k-flex-grow {
  flex-grow: 1; }

.k-no-flex-grow {
  flex-grow: 0; }

.k-flex-shrink {
  flex-shrink: 1; }

.k-no-flex-shrink {
  flex-shrink: 0; }

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

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

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

.k-align-items-stretch {
  align-items: stretch; }

.k-align-items-baseline {
  align-items: baseline; }

.k-align-content-start {
  align-content: flex-start; }

.k-align-content-end {
  align-content: flex-end; }

.k-align-content-center {
  align-content: center; }

.k-align-content-stretch {
  align-content: stretch; }

.k-align-content-baseline {
  align-content: baseline; }

.k-align-self-start {
  align-self: flex-start; }

.k-align-self-end {
  align-self: flex-end; }

.k-align-self-center {
  align-self: center; }

.k-align-self-stretch {
  align-self: stretch; }

.k-align-self-baseline {
  align-self: baseline; }

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

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

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

.k-justify-content-between {
  justify-content: space-between; }

.k-justify-content-around {
  justify-content: space-around; }

.k-justify-content-evenly {
  justify-content: space-evenly; }

.k-hbox, .k-columnset, .k-vbox, .k-rowset {
  display: flex; }

.k-ihbox, .k-ivbox {
  display: inline-flex; }

.k-hbox, .k-columnset, .k-ihbox {
  flex-direction: row; }

.k-vbox, .k-rowset, .k-ivbox {
  flex-direction: column; }

.k-column {
  flex-grow: 1;
  flex-basis: 0; }

.k-reset {
  margin: 0;
  padding: 0;
  border-width: 0;
  outline: 0;
  font: inherit;
  text-decoration: none;
  list-style: none; }

.k-text-nowrap {
  white-space: nowrap !important; }

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

.k-text-left {
  text-align: left !important; }

.k-text-right {
  text-align: right !important; }

.k-text-center {
  text-align: center !important; }

.k-text-justify {
  text-align: justify !important; }

.k-text-lowercase {
  text-transform: lowercase !important; }

.k-text-uppercase {
  text-transform: uppercase !important; }

.k-text-capitalize {
  text-transform: capitalize !important; }

.k-font-weight-light {
  font-weight: 300 !important; }

.k-font-weight-normal {
  font-weight: 400 !important; }

.k-font-weight-bold {
  font-weight: 700 !important; }

.k-flip-h {
  transform: scaleX(-1); }

.k-flip-v {
  transform: scaleY(-1); }

.k-flip-h.k-flip-v {
  transform: scale(-1, -1); }

.k-rotate-45 {
  transform: rotate(45deg); }

.k-rotate-90 {
  transform: rotate(90deg); }

.k-rotate-135 {
  transform: rotate(135deg); }

.k-rotate-180 {
  transform: rotate(180deg); }

.k-rotate-225 {
  transform: rotate(225deg); }

.k-rotate-270 {
  transform: rotate(270deg); }

.k-rotate-315 {
  transform: rotate(315deg); }

.k-scale-0 {
  transform: scale(0, 0); }

.k-scale-1 {
  transform: scale(1, 1); }

.k-scale-2 {
  transform: scale(2, 2); }

.k-translate-0 {
  transform: translate(0, 0); }

.k-translate-0-50 {
  transform: translate(0, 50%); }

.k-translate-0-100 {
  transform: translate(0, 100%); }

.k-translate-50-0 {
  transform: translate(50%, 0); }

.k-translate-50-50 {
  transform: translate(50%, 50%); }

.k-translate-50-100 {
  transform: translate(50%, 100%); }

.k-translate-100-0 {
  transform: translate(100%, 0); }

.k-translate-100-50 {
  transform: translate(100%, 50%); }

.k-translate-100-100 {
  transform: translate(100%, 100%); }

.k-animation-container {
  position: absolute;
  overflow: hidden;
  z-index: 100; }
  .k-animation-container-fixed {
    position: fixed; }
  .k-animation-container-relative {
    position: relative;
    display: inline-block; }

.k-push-right-enter, .k-push-right-appear {
  transform: translate(-100%, 0); }

.k-push-right-enter-active, .k-push-right-appear-active {
  transform: translate(0, 0);
  transition: transform 300ms ease-in-out; }

.k-push-right-exit {
  transform: translate(0, 0); }

.k-push-right-exit-active {
  transform: translate(100%, 0);
  transition: transform 300ms ease-in-out; }

.k-push-left-enter, .k-push-left-appear {
  transform: translate(100%, 0); }

.k-push-left-enter-active, .k-push-left-appear-active {
  transform: translate(0, 0);
  transition: transform 300ms ease-in-out; }

.k-push-left-exit {
  transform: translate(0, 0); }

.k-push-left-exit-active {
  transform: translate(-100%, 0);
  transition: transform 300ms ease-in-out; }

.k-push-down-enter, .k-push-down-appear {
  transform: translate(0, -100%); }

.k-push-down-enter-active, .k-push-down-appear-active {
  transform: translate(0, 0);
  transition: transform 300ms ease-in-out; }

.k-push-down-exit {
  transform: translate(0, 0); }

.k-push-down-exit-active {
  transform: translate(0, 100%);
  transition: transform 300ms ease-in-out; }

.k-push-up-enter, .k-push-up-appear {
  transform: translate(0, 100%); }

.k-push-up-enter-active, .k-push-up-appear-active {
  transform: translate(0, 0);
  transition: transform 300ms ease-in-out; }

.k-push-up-exit {
  transform: translate(0, 0); }

.k-push-up-exit-active {
  transform: translate(0, -100%);
  transition: transform 300ms ease-in-out; }

.k-expand-vertical-enter, .k-expand-vertical-appear {
  transform: scaleY(0); }

.k-expand-vertical-enter-active, .k-expand-vertical-appear-active {
  transform: scaleY(1);
  transition: transform 300ms ease-in-out; }

.k-expand-vertical-exit {
  transform: scaleY(1); }

.k-expand-vertical-exit-active {
  transform: scaleY(0);
  transition: transform 300ms ease-in-out; }

.k-expand-horizontal-enter, .k-expand-horizontal-appear {
  transform: scaleX(0); }

.k-expand-horizontal-enter-active, .k-expand-horizontal-appear-active {
  transform: scaleX(1);
  transition: transform 300ms ease-in-out; }

.k-expand-horizontal-exit {
  transform: scaleX(1); }

.k-expand-horizontal-exit-active {
  transform: scaleX(0);
  transition: transform 300ms ease-in-out; }

.k-fade-enter, .k-fade-appear {
  opacity: 0; }

.k-fade-enter-active, .k-fade-appear-active {
  opacity: 1;
  transition: opacity 500ms ease-in-out; }

.k-fade-exit {
  opacity: 1; }

.k-fade-exit-active {
  opacity: 0;
  transition: opacity 500ms ease-in-out; }

.k-fade-exit-active + .k-fade-exit-active,
.k-fade-enter-active + .k-fade-enter-active {
  display: none; }

.k-zoom-in-enter, .k-zoom-in-appear {
  opacity: 0;
  transform: scale(0); }

.k-zoom-in-enter-active, .k-zoom-in-appear-active {
  opacity: 1;
  transform: scale(1);
  transition: transform, opacity 300ms ease-in-out; }

.k-zoom-in-exit {
  opacity: 1;
  transform: scale(1); }

.k-zoom-in-exit-active {
  opacity: 0;
  transform: scale(2);
  transition: transform, opacity 300ms ease-in-out; }

.k-zoom-out-enter, .k-zoom-out-appear {
  opacity: 0;
  transform: scale(2); }

.k-zoom-out-enter-active, .k-zoom-out-appear-active {
  opacity: 1;
  transform: scale(1);
  transition: transform, opacity 300ms ease-in-out; }

.k-zoom-out-exit {
  opacity: 1;
  transform: scale(1); }

.k-zoom-out-exit-active {
  opacity: 0;
  transform: scale(0);
  transition: transform, opacity 300ms ease-in-out; }

.k-slide-in-appear {
  opacity: .1;
  transform: translate(0, -3em); }
  .k-slide-in-appear .k-centered {
    transform: translate(-50%, -60%); }

.k-slide-in-appear-active {
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.4, 1), opacity 0.3s cubic-bezier(0.2, 1, 0.2, 1); }
  .k-slide-in-appear-active .k-centered {
    transform: translate(-50%, -50%); }

.k-slide-down-enter, .k-slide-down-appear {
  transform: translateY(-100%); }

.k-slide-down-enter-active, .k-slide-down-appear-active {
  transform: translateY(0);
  transition: transform 300ms ease-in-out; }

.k-slide-down-exit {
  transform: translateY(0); }

.k-slide-down-exit-active {
  transform: translateY(-100%);
  transition: transform 300ms ease-in-out; }

.k-slide-up-enter, .k-slide-up-appear {
  transform: translateY(100%); }

.k-slide-up-enter-active, .k-slide-up-appear-active {
  transform: translateY(0);
  transition: transform 300ms ease-in-out; }

.k-slide-up-exit {
  transform: translateY(0); }

.k-slide-up-exit-active {
  transform: translateY(100%);
  transition: transform 300ms ease-in-out; }

.k-slide-right-enter, .k-slide-right-appear {
  transform: translateX(-100%); }

.k-slide-right-enter-active, .k-slide-right-appear-active {
  transform: translateX(0);
  transition: transform 300ms ease-in-out; }

.k-slide-right-exit {
  transform: translateX(0); }

.k-slide-right-exit-active {
  transform: translateX(-100%);
  transition: transform 300ms ease-in-out; }

.k-slide-left-enter, .k-slide-left-appear {
  transform: translateX(100%); }

.k-slide-left-enter-active, .k-slide-left-appear-active {
  transform: translateX(0);
  transition: transform 300ms ease-in-out; }

.k-slide-left-exit {
  transform: translateX(0); }

.k-slide-left-exit-active {
  transform: translateX(100%);
  transition: transform 300ms ease-in-out; }

.k-reveal-vertical-enter, .k-reveal-vertical-appear {
  max-height: 0; }

.k-reveal-vertical-enter-active, .k-reveal-vertical-appear-active {
  transition: max-height 300ms ease-in-out; }

.k-reveal-vertical-exit-active {
  max-height: 0 !important;
  transition: max-height 300ms ease-in-out; }

.k-reveal-horizontal-enter, .k-reveal-horizontal-appear {
  max-width: 0; }

.k-reveal-horizontal-enter-active, .k-reveal-horizontal-appear-active {
  transition: max-width 300ms ease-in-out; }

.k-reveal-horizontal-exit-active {
  max-width: 0 !important;
  transition: max-width 300ms ease-in-out; }

.k-fx-end .k-fx-next,
.k-fx-end .k-fx-current {
  transition: all 350ms ease-out; }

.k-fx {
  position: relative; }
  .k-fx .k-fx-current {
    z-index: 0; }
  .k-fx .k-fx-next {
    z-index: 1; }

.k-fx-hidden,
.k-fx-hidden * {
  visibility: hidden !important; }

.k-fx-reverse .k-fx-current {
  z-index: 1; }

.k-fx-reverse .k-fx-next {
  z-index: 0; }

.k-fx-zoom.k-fx-start .k-fx-next {
  transform: scale(0) !important; }

.k-fx-zoom.k-fx-end .k-fx-next {
  transform: scale(1) !important; }

.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-next,
.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-next {
  transform: scale(1) !important; }

.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-current {
  transform: scale(1) !important; }

.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-current {
  transform: scale(0) !important; }

.k-fx-fade.k-fx-start .k-fx-next {
  will-change: opacity;
  opacity: 0; }

.k-fx-fade.k-fx-end .k-fx-next {
  opacity: 1; }

.k-fx-fade.k-fx-reverse.k-fx-start .k-fx-current {
  will-change: opacity;
  opacity: 1; }

.k-fx-fade.k-fx-reverse.k-fx-end .k-fx-current {
  opacity: 0; }

.k-fx-slide.k-fx-end .k-fx-next .k-content,
.k-fx-slide.k-fx-end .k-fx-next .k-header,
.k-fx-slide.k-fx-end .k-fx-next .k-footer,
.k-fx-slide.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-end .k-fx-current .k-header,
.k-fx-slide.k-fx-end .k-fx-current .k-footer,
.k-fx-slide.k-fx-end .k-fx-next .km-content,
.k-fx-slide.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-end .k-fx-next .km-footer,
.k-fx-slide.k-fx-end .k-fx-current .km-content,
.k-fx-slide.k-fx-end .k-fx-current .km-header,
.k-fx-slide.k-fx-end .k-fx-current .km-footer {
  transition: all 350ms ease-out; }

.k-fx-slide.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-start .k-fx-next .km-content {
  will-change: transform;
  transform: translateX(100%); }

.k-fx-slide.k-fx-start .k-fx-next .k-header,
.k-fx-slide.k-fx-start .k-fx-next .k-footer,
.k-fx-slide.k-fx-start .k-fx-next .km-header,
.k-fx-slide.k-fx-start .k-fx-next .km-footer {
  will-change: opacity;
  opacity: 0; }

.k-fx-slide.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-end .k-fx-current .km-content {
  transform: translateX(-100%); }

.k-fx-slide.k-fx-end .k-fx-next .k-header,
.k-fx-slide.k-fx-end .k-fx-next .k-footer,
.k-fx-slide.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-end .k-fx-next .km-footer {
  opacity: 1; }

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-content,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-content {
  will-change: transform;
  transform: translateX(0); }

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-content {
  transform: translateX(100%); }

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-content {
  transform: translateX(-100%); }

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-content,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-content {
  transform: translateX(0); }

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-footer {
  will-change: opacity;
  opacity: 1; }

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-footer {
  opacity: 1; }

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-footer {
  opacity: 0; }

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-footer {
  opacity: 1; }

.k-fx-slide.k-fx-right.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-right.k-fx-start .k-fx-next .km-content {
  transform: translateX(-100%); }

.k-fx-slide.k-fx-right.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-right.k-fx-end .k-fx-current .km-content {
  transform: translateX(100%); }

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current .km-content {
  transform: translateX(0); }

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current .km-content {
  transform: translateX(-100%); }

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next .km-content {
  transform: translateX(100%); }

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next .km-content {
  transform: translateX(0%); }

.k-fx-tile.k-fx-start .k-fx-next {
  will-change: transform;
  transform: translateX(100%); }

.k-fx-tile.k-fx-end .k-fx-current {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-current {
  will-change: transform;
  transform: translateX(0); }

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-current {
  transform: translateX(100%); }

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-next {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-next {
  transform: translateX(0); }

.k-fx-tile.k-fx-right.k-fx-start .k-fx-next {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-right.k-fx-end .k-fx-current {
  transform: translateX(100%); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current {
  transform: translateX(0); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next {
  transform: translateX(100%); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next {
  transform: translateX(0%); }

.k-fx-tile.k-fx-start .k-fx-next {
  will-change: transform;
  transform: translateX(100%); }

.k-fx-tile.k-fx-end .k-fx-current {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-current {
  will-change: transform;
  transform: translateX(0); }

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-current {
  transform: translateX(100%); }

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-next {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-next {
  transform: translateX(0); }

.k-fx-tile.k-fx-right.k-fx-start .k-fx-next {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-right.k-fx-end .k-fx-current {
  transform: translateX(100%); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current {
  transform: translateX(0); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current {
  transform: translateX(-100%); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next {
  transform: translateX(100%); }

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next {
  transform: translateX(0%); }

.k-fx.k-fx-overlay.k-fx-start .k-fx-next,
.k-fx.k-fx-overlay.k-fx-left.k-fx-start .k-fx-next {
  will-change: transform;
  transform: translateX(100%); }

.k-fx.k-fx-overlay.k-fx-right.k-fx-start .k-fx-next {
  transform: translateX(-100%); }

.k-fx.k-fx-overlay.k-fx-up.k-fx-start .k-fx-next {
  transform: translateY(100%); }

.k-fx.k-fx-overlay.k-fx-down.k-fx-start .k-fx-next {
  transform: translateY(-100%); }

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-next {
  transform: none; }

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-current {
  will-change: transform;
  transform: none; }

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-end .k-fx-current,
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-left.k-fx-end .k-fx-current {
  transform: translateX(100%); }

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-right.k-fx-end .k-fx-current {
  transform: translateX(-100%); }

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-up.k-fx-end .k-fx-current {
  transform: translateY(100%); }

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-down.k-fx-end .k-fx-current {
  transform: translateY(-100%); }

.k-arrow-e,
.k-arrow-w {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  position: absolute;
  top: -4px; }

.k-arrow-e {
  border-left-color: currentColor;
  right: -6px; }

.k-arrow-w {
  border-right-color: currentColor;
  left: -6px; }

.k-drag-clue {
  padding: 2px 4px;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  cursor: move; }

.k-drag-status {
  margin-right: .4ex; }

.k-reorder-cue {
  position: absolute; }
  .k-reorder-cue::before, .k-reorder-cue::after {
    content: "";
    width: 0;
    height: 0;
    border: 3px solid transparent;
    position: absolute;
    transform: translateX(-50%); }
  .k-reorder-cue::before {
    border-bottom-width: 0;
    border-top-color: currentColor;
    top: -4px; }
  .k-reorder-cue::after {
    border-top-width: 0;
    border-bottom-color: currentColor;
    bottom: -4px; }

.k-autocomplete,
.k-combobox,
.k-dateinput,
.k-datepicker,
.k-datetimepicker,
.k-dropdown,
.k-multiselect,
.k-numerictextbox,
.k-maskedtextbox,
.k-timepicker,
.k-dropdowntree {
  width: 12.4em;
  font-size: 14px;
  line-height: 1.42857;
  text-align: left;
  white-space: nowrap;
  display: inline-flex;
  vertical-align: middle;
  position: relative; }
  .k-autocomplete[dir="rtl"],
  .k-rtl .k-autocomplete,
  .k-combobox[dir="rtl"],
  .k-rtl
  .k-combobox,
  .k-dateinput[dir="rtl"],
  .k-rtl
  .k-dateinput,
  .k-datepicker[dir="rtl"],
  .k-rtl
  .k-datepicker,
  .k-datetimepicker[dir="rtl"],
  .k-rtl
  .k-datetimepicker,
  .k-dropdown[dir="rtl"],
  .k-rtl
  .k-dropdown,
  .k-multiselect[dir="rtl"],
  .k-rtl
  .k-multiselect,
  .k-numerictextbox[dir="rtl"],
  .k-rtl
  .k-numerictextbox,
  .k-maskedtextbox[dir="rtl"],
  .k-rtl
  .k-maskedtextbox,
  .k-timepicker[dir="rtl"],
  .k-rtl
  .k-timepicker,
  .k-dropdowntree[dir="rtl"],
  .k-rtl
  .k-dropdowntree {
    text-align: right; }
    .k-autocomplete[dir="rtl"] .k-select,
    .k-rtl .k-autocomplete .k-select,
    .k-combobox[dir="rtl"] .k-select,
    .k-rtl
    .k-combobox .k-select,
    .k-dateinput[dir="rtl"] .k-select,
    .k-rtl
    .k-dateinput .k-select,
    .k-datepicker[dir="rtl"] .k-select,
    .k-rtl
    .k-datepicker .k-select,
    .k-datetimepicker[dir="rtl"] .k-select,
    .k-rtl
    .k-datetimepicker .k-select,
    .k-dropdown[dir="rtl"] .k-select,
    .k-rtl
    .k-dropdown .k-select,
    .k-multiselect[dir="rtl"] .k-select,
    .k-rtl
    .k-multiselect .k-select,
    .k-numerictextbox[dir="rtl"] .k-select,
    .k-rtl
    .k-numerictextbox .k-select,
    .k-maskedtextbox[dir="rtl"] .k-select,
    .k-rtl
    .k-maskedtextbox .k-select,
    .k-timepicker[dir="rtl"] .k-select,
    .k-rtl
    .k-timepicker .k-select,
    .k-dropdowntree[dir="rtl"] .k-select,
    .k-rtl
    .k-dropdowntree .k-select {
      border-radius: 6px 0 0 6px; }
  .k-autocomplete ::-ms-clear,
  .k-combobox ::-ms-clear,
  .k-dateinput ::-ms-clear,
  .k-datepicker ::-ms-clear,
  .k-datetimepicker ::-ms-clear,
  .k-dropdown ::-ms-clear,
  .k-multiselect ::-ms-clear,
  .k-numerictextbox ::-ms-clear,
  .k-maskedtextbox ::-ms-clear,
  .k-timepicker ::-ms-clear,
  .k-dropdowntree ::-ms-clear {
    display: none; }

.k-colorpicker,
.k-combobox,
.k-dateinput,
.k-datepicker,
.k-datetimepicker,
.k-dropdown,
.k-multiselect,
.k-numerictextbox,
.k-maskedtextbox,
.k-timepicker,
.k-dropdowntree {
  border-width: 0;
  background-color: transparent; }

.k-nodata {
  min-height: 138px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: lighter;
  text-align: center;
  white-space: normal; }

.k-searchbar {
  flex: 1;
  display: flex;
  flex-direction: row; }

.k-autocomplete,
.k-dateinput-wrap,
.k-dropdown-wrap,
.k-picker-wrap,
.k-multiselect-wrap,
.k-numeric-wrap {
  border-radius: 6px;
  padding: 0;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  position: relative;
  cursor: default;
  outline: 0; }
  .k-autocomplete .k-input,
  .k-dateinput-wrap .k-input,
  .k-dropdown-wrap .k-input,
  .k-picker-wrap .k-input,
  .k-multiselect-wrap .k-input,
  .k-numeric-wrap .k-input {
    padding: 4px 8px;
    height: calc( 8px + 1.42857em);
    box-sizing: border-box;
    border: 0;
    outline: 0;
    color: inherit;
    background: none;
    font: inherit;
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis; }
  .k-autocomplete.k-invalid, .k-autocomplete.k-invalid:hover, .k-autocomplete.k-state-invalid, .k-autocomplete.ng-invalid.ng-touched, .k-autocomplete.ng-invalid.ng-dirty,
  .k-dateinput-wrap.k-invalid,
  .k-dateinput-wrap.k-invalid:hover,
  .k-dateinput-wrap.k-state-invalid,
  .k-dateinput-wrap.ng-invalid.ng-touched,
  .k-dateinput-wrap.ng-invalid.ng-dirty,
  .k-dropdown-wrap.k-invalid,
  .k-dropdown-wrap.k-invalid:hover,
  .k-dropdown-wrap.k-state-invalid,
  .k-dropdown-wrap.ng-invalid.ng-touched,
  .k-dropdown-wrap.ng-invalid.ng-dirty,
  .k-picker-wrap.k-invalid,
  .k-picker-wrap.k-invalid:hover,
  .k-picker-wrap.k-state-invalid,
  .k-picker-wrap.ng-invalid.ng-touched,
  .k-picker-wrap.ng-invalid.ng-dirty,
  .k-multiselect-wrap.k-invalid,
  .k-multiselect-wrap.k-invalid:hover,
  .k-multiselect-wrap.k-state-invalid,
  .k-multiselect-wrap.ng-invalid.ng-touched,
  .k-multiselect-wrap.ng-invalid.ng-dirty,
  .k-numeric-wrap.k-invalid,
  .k-numeric-wrap.k-invalid:hover,
  .k-numeric-wrap.k-state-invalid,
  .k-numeric-wrap.ng-invalid.ng-touched,
  .k-numeric-wrap.ng-invalid.ng-dirty {
    color: #d51923;
    border-color: rgba(213, 25, 35, 0.5); }

.k-autocomplete {
  width: 12.4em; }

.k-dateinput-wrap,
.k-dropdown-wrap,
.k-picker-wrap,
.k-numeric-wrap {
  display: flex;
  flex-direction: row; }
  .k-dateinput-wrap .k-input,
  .k-dropdown-wrap .k-input,
  .k-picker-wrap .k-input,
  .k-numeric-wrap .k-input {
    width: 100%; }
    .k-edge .k-dateinput-wrap .k-input, .k-edge
    .k-dropdown-wrap .k-input, .k-edge
    .k-picker-wrap .k-input, .k-edge
    .k-numeric-wrap .k-input {
      min-width: 0; }
  .k-dateinput-wrap .k-select,
  .k-dropdown-wrap .k-select,
  .k-picker-wrap .k-select,
  .k-numeric-wrap .k-select {
    border-radius: 0 6px 6px 0;
    padding: 4px 4px;
    border-width: 0 0 0 1px;
    box-sizing: border-box;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer; }

.k-autocomplete .k-i-loading,
.k-multiselect-wrap .k-i-loading {
  height: 20px;
  line-height: 20px;
  position: absolute;
  top: 4px;
  right: 6px; }
  .k-rtl .k-autocomplete .k-i-loading,
  [dir="rtl"] .k-autocomplete .k-i-loading, .k-rtl
  .k-multiselect-wrap .k-i-loading,
  [dir="rtl"]
  .k-multiselect-wrap .k-i-loading {
    right: auto;
    left: 6px; }

.k-autocomplete .k-clear-value,
.k-dropdown-wrap .k-clear-value,
.k-multiselect-wrap .k-clear-value {
  height: 20px;
  line-height: 20px;
  outline: 0;
  cursor: pointer;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  opacity: .5;
  position: absolute;
  top: 4px;
  right: 6px; }
  .k-rtl .k-autocomplete .k-clear-value,
  [dir="rtl"] .k-autocomplete .k-clear-value, .k-rtl
  .k-dropdown-wrap .k-clear-value,
  [dir="rtl"]
  .k-dropdown-wrap .k-clear-value, .k-rtl
  .k-multiselect-wrap .k-clear-value,
  [dir="rtl"]
  .k-multiselect-wrap .k-clear-value {
    right: auto;
    left: 6px; }

.k-autocomplete .k-clear-value:hover,
.k-dropdown-wrap .k-clear-value:hover,
.k-multiselect-wrap .k-clear-value:hover {
  opacity: 1; }

.k-autocomplete.k-state-focused .k-clear-value, .k-autocomplete.k-state-hover .k-clear-value, .k-autocomplete:hover .k-clear-value,
.k-dropdown-wrap.k-state-focused .k-clear-value,
.k-dropdown-wrap.k-state-hover .k-clear-value,
.k-dropdown-wrap:hover .k-clear-value {
  display: inline-flex; }

.k-multiselect-wrap:hover .k-clear-value,
.k-multiselect-wrap.k-state-hover .k-clear-value,
.k-state-hover > .k-multiselect-wrap .k-clear-value,
.k-multiselect-wrap.k-state-focused .k-clear-value,
.k-state-focused > .k-multiselect-wrap .k-clear-value,
.k-multiselect-wrap:hover .k-clear-value {
  display: inline-flex; }

.k-dropdown-wrap .k-clear-value {
  right: calc(calc( 1.42857em + 8px) + 6px); }
  .k-rtl .k-dropdown-wrap .k-clear-value,
  [dir="rtl"] .k-dropdown-wrap .k-clear-value {
    right: auto;
    left: calc(calc( 1.42857em + 8px) + 6px); }

.k-multiselect-wrap {
  padding-right: calc( calc( 1.42857em + 8px)); }
  .k-rtl .k-multiselect-wrap,
  [dir="rtl"] .k-multiselect-wrap {
    padding-left: calc( calc( 1.42857em + 8px));
    padding-right: 8px; }

.k-autocomplete {
  padding-right: calc( calc( 1.42857em + 8px)); }
  .k-rtl .k-autocomplete, .k-autocomplete[dir="rtl"] {
    padding-left: calc( calc( 1.42857em + 8px));
    padding-right: 0; }

.k-dateinput .k-select,
.k-numerictextbox .k-select {
  padding: 0;
  border-width: 0;
  width: calc( 8px + 1.42857em);
  display: flex;
  flex-direction: column;
  align-items: stretch; }

.k-dateinput .k-link,
.k-numerictextbox .k-link {
  flex: 1 1 auto;
  display: block;
  overflow: hidden;
  position: relative; }
  .k-dateinput .k-link .k-icon,
  .k-numerictextbox .k-link .k-icon {
    position: absolute;
    right: 50%;
    transform: translateX(50%); }

.k-dateinput .k-link-increase .k-icon,
.k-numerictextbox .k-link-increase .k-icon {
  bottom: -2px; }

.k-dateinput .k-link-decrease .k-icon,
.k-numerictextbox .k-link-decrease .k-icon {
  top: -2px; }

.k-virtual-content {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative; }
  .k-virtual-content > .k-virtual-list > .k-virtual-item {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap; }

.k-textbox.k-space-left {
  padding-left: 1.9em; }

.k-textbox.k-space-right {
  padding-right: 1.9em; }

.k-textbox .k-icon {
  top: 50%;
  margin: -8px 0 0;
  position: absolute; }

.k-space-left .k-icon {
  left: 3px; }

.k-space-right .k-icon {
  right: 3px; }

.k-widget.k-state-invalid.k-autocomplete,
.k-widget.k-state-invalid.k-maskedtextbox > .k-textbox,
.ng-invalid.ng-touched.k-autocomplete,
.ng-invalid.ng-touched.k-maskedtextbox > .k-textbox,
.ng-invalid.ng-dirty.k-autocomplete,
.ng-invalid.ng-dirty.k-maskedtextbox > .k-textbox {
  color: #d51923;
  border-color: rgba(213, 25, 35, 0.5); }

.k-widget.k-state-invalid > .k-dateinput-wrap,
.k-widget.k-state-invalid > .k-dropdown-wrap,
.k-widget.k-state-invalid > .k-picker-wrap,
.k-widget.k-state-invalid > .k-multiselect-wrap,
.k-widget.k-state-invalid > .k-numeric-wrap,
.ng-invalid.ng-touched > .k-dateinput-wrap,
.ng-invalid.ng-touched > .k-dropdown-wrap,
.ng-invalid.ng-touched > .k-picker-wrap,
.ng-invalid.ng-touched > .k-multiselect-wrap,
.ng-invalid.ng-touched > .k-numeric-wrap,
.ng-invalid.ng-dirty > .k-dateinput-wrap,
.ng-invalid.ng-dirty > .k-dropdown-wrap,
.ng-invalid.ng-dirty > .k-picker-wrap,
.ng-invalid.ng-dirty > .k-multiselect-wrap,
.ng-invalid.ng-dirty > .k-numeric-wrap {
  color: #d51923;
  border-color: rgba(213, 25, 35, 0.5); }

.k-widget.form-control {
  padding: 0; }

.k-widget.form-control,
.k-maskedtextbox.form-control .k-textbox,
.k-textbox.form-control {
  width: 100%; }

.k-autocomplete.form-control .k-input {
  box-sizing: border-box; }

.input-group .k-dateinput-wrap,
.input-group .k-dropdown-wrap,
.input-group .k-multiselect-wrap,
.input-group .k-numeric-wrap,
.input-group .k-picker-wrap,
.input-group .k-maskedtextbox .k-textbox {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }
  .input-group .k-dateinput-wrap .k-select,
  .input-group .k-dropdown-wrap .k-select,
  .input-group .k-multiselect-wrap .k-select,
  .input-group .k-numeric-wrap .k-select,
  .input-group .k-picker-wrap .k-select,
  .input-group .k-maskedtextbox .k-textbox .k-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }

.input-group .k-widget.form-control,
.input-group .k-maskedtextbox.form-control .k-textbox,
.input-group .k-textbox.form-control {
  width: auto; }

.input-group .k-widget.form-control:not(:first-child):not(:last-child) .k-dateinput-wrap,
.input-group .k-widget.form-control:not(:first-child):not(:last-child) .k-dropdown-wrap,
.input-group .k-widget.form-control:not(:first-child):not(:last-child) .k-multiselect-wrap,
.input-group .k-widget.form-control:not(:first-child):not(:last-child) .k-numeric-wrap,
.input-group .k-widget.form-control:not(:first-child):not(:last-child) .k-picker-wrap,
.input-group .k-widget.form-control:not(:first-child):not(:last-child) > .k-textbox {
  border-radius: 0; }

.input-group-prepend + .k-widget.form-control .k-dateinput-wrap,
.input-group-prepend + .k-widget.form-control .k-dropdown-wrap,
.input-group-prepend + .k-widget.form-control .k-multiselect-wrap,
.input-group-prepend + .k-widget.form-control .k-numeric-wrap,
.input-group-prepend + .k-widget.form-control .k-picker-wrap,
.input-group-prepend + .k-widget.form-control > .k-textbox {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.k-widget.form-control .k-input {
  padding: 0.5rem 0.75rem;
  height: 2.25rem; }

.k-widget.form-control-sm .k-input {
  padding: 0.25rem 0.5rem;
  height: 1.8125rem; }

.k-widget.form-control-sm .k-dateinput-wrap .k-select,
.k-widget.form-control-sm .k-dropdown-wrap .k-select,
.k-widget.form-control-sm .k-picker-wrap .k-select {
  padding: 0.25rem; }

.k-widget.form-control-sm .k-select {
  width: 1.8125rem; }

.k-widget.form-control-lg .k-input {
  padding: 0.5rem 1rem;
  height: 2.875rem; }

.k-widget.form-control-lg .k-dateinput-wrap .k-select,
.k-widget.form-control-lg .k-dropdown-wrap .k-select,
.k-widget.form-control-lg .k-picker-wrap .k-select {
  padding: 0.5rem; }

.k-widget.form-control-lg .k-select {
  width: 2.875rem; }

.k-maskedtextbox.form-control .k-textbox {
  height: calc( 2.25rem + 2px);
  padding: 0.5rem 0.75rem; }

.k-maskedtextbox.form-control-sm .k-textbox {
  height: calc( 1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  line-height: 1.5; }

.k-maskedtextbox.form-control-lg .k-textbox {
  height: calc( 2.875rem + 2px);
  padding: 0.5rem 1rem;
  line-height: 1.5; }

.k-textbox.form-control {
  height: calc( 2.25rem + 2px);
  padding: 0.5rem 0.75rem; }
  .k-textbox.form-control-sm {
    height: calc( 1.8125rem + 2px);
    padding: 0.25rem 0.5rem;
    line-height: 1.5; }
  .k-textbox.form-control-lg {
    height: calc( 2.875rem + 2px);
    padding: 0.5rem 1rem;
    line-height: 1.5; }

.k-dateinput.form-control-sm .k-link-increase > .k-icon,
.k-numerictextbox.form-control-sm .k-link-increase > .k-icon {
  bottom: -2px; }

.k-dateinput.form-control-sm .k-link-decrease > .k-icon,
.k-numerictextbox.form-control-sm .k-link-decrease > .k-icon {
  top: -2px; }

.k-dateinput.form-control-sm .k-link,
.k-numerictextbox.form-control-sm .k-link {
  height: 0.90625rem; }

.k-dateinput.form-control-lg .k-link,
.k-numerictextbox.form-control-lg .k-link {
  height: 1.4375rem; }

.k-dateinput.form-control .k-dateinput-wrap .k-select {
  padding-top: 0;
  padding-bottom: 0; }

@font-face {
  font-family: "WebComponentsIcons";
  font-style: normal;
  font-weight: normal;
  src: url(data:font/ttf;base64,AAEAAAAMAIAAAwBAR1NVQv1k7+4AAADMAAA4Vk9TLzIPEgZMAAA5JAAAAGBjbWFwdXGErwAAOYQAAAC0Z2FzcAAAABAAADo4AAAACGdseWatpiIOAAA6QAABLexoZWFkDqV1hQABaCwAAAA2aGhlYQfCBZ8AAWhkAAAAJGhtdHjiAJ+HAAFoiAAAB3hsb2NhLT/huAABcAAAAAO+bWF4cAIAAy4AAXPAAAAAIG5hbWXz//U0AAFz4AAABOlwb3N0AAMAAAABeMwAAAAgAAEAAAAKAB4ALAABbGF0bgAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAoAAAABADwAGwB2CBILFBDCEkwTCBkIGhQcBB44HkIfJiEUIowiyiLwJiYmPCjQLLo0gjVKNlA3Bjc8N5I4EgABABsADAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAGwAcAB0AHgAfACAAIQAiACMAJAAlAd0APwCAAIwAqAC+AMgA4AEAASIBOAFcAWwBfgGaAbwB3AH8AhICKgJEAmwCfAKSAqwCzALqAwgDGAMwA0YDbAOYA8ID7AQOBDYEXASCBJoEuATUBPAFFAU2BV4FhAWUBa4FvAXEBegF/AYkBjwGVgaABpoGwAbWBvIHHAc2B2AHegCuAAUAIAAPABQAGgBnAA0AHwAfAAwADgATABgAEAAZAB8ABAAJAAoAZgAKAB8AHwAMAA4AEwAYABAAGQAfAcwABAAeAA4AIwBGAAsAHQAdABoAIgAeAAQAHgAiAAwAGwBEAA8AHQAdABoAIgAeAAQAHQAQAB4AFAAlABQAGQASADcAEAAdAB0AGgAiAB4ABAAZABoABAAOABMADAAZABIAEAA2AAoAHQAdABoAIgAeAAQAFgAbABQARQARAB0AHQAaACIAHgAEAA8AFAAYABAAGQAeABQAGgAZAB4ALQAHAB0AHQAaACIABAAiAD0ACAAdAB0AGgAiAAQAIAAbADIADQAdAB0AGgAiAAQAHgAQABAAFgAEACAAGwAzABAAHQAdABoAIgAEAB4AEAAQABYABAAdABQAEgATAB8ANQAPAB0AHQAaACIABAAeABAAEAAWAAQAFwAQABEAHwA0AA8AHQAdABoAIgAEAB4AEAAQABYABAAPABoAIgAZAEMACgAdAB0AGgAiAAQAHQAaABoAHwA+AAsAHQAdABoAIgAEAB0AFAASABMAHwBCAAwAHQAdABoAIgAEABsADAAdABAAGQAfADgAEwAdAB0AGgAiAAQAGgAhABAAHQARABcAGgAiAAQADwAaACIAGQAqAAcAHQAdABoAIgAEABkAQAAKAB0AHQAaACIABAAXABAAEQAfAC4ADAAdAB0AGgAiAAQAEAAZAA8ABAAgABsALwAPAB0AHQAaACIABAAQABkADwAEAB0AFAASABMAHwAxAA4AHQAdABoAIgAEABAAGQAPAAQAFwAQABEAHwAwAA4AHQAdABoAIgAEABAAGQAPAAQADwAaACIAGQArAAcAHQAdABoAIgAEABAAQQALAB0AHQAaACIABAAPAB0AFAAXABcAPwAKAB0AHQAaACIABAAPABoAIgAZADIAEgAdAB0AGgAiAAQADwAaACAADQAXABAABAALAAUABAAgABsAMwAVAB0AHQAaACIABAAPABoAIAANABcAEAAEAAsABQAEAB0AFAASABMAHwA1ABQAHQAdABoAIgAEAA8AGgAgAA0AFwAQAAQACwAFAAQAFwAQABEAHwA0ABQAHQAdABoAIgAEAA8AGgAgAA0AFwAQAAQACwAFAAQADwAaACIAGQA5ABAAHQAdABoAIgAEAA4AEwAQACEAHQAaABkABAAgABsAOgATAB0AHQAaACIABAAOABMAEAAhAB0AGgAZAAQAHQAUABIAEwAfADwAEgAdAB0AGgAiAAQADgATABAAIQAdABoAGQAEABcAEAARAB8AOwASAB0AHQAaACIABAAOABMAEAAhAB0AGgAZAAQADwAaACIAGQAqAAsAHQAdABoAIgAEAAsABQAEACAAGwArAA4AHQAdABoAIgAEAAsABQAEAB0AFAASABMAHwAtAA0AHQAdABoAIgAEAAsABQAEABcAEAARAB8ALAANAB0AHQAaACIABAALAAUABAAPABoAIgAZACYAEQAdAB0AGgAiAAQACQAKAAQAIAAbAAQAHQAUABIAEwAfACkAEAAdAB0AGgAiAAQACQAKAAQAIAAbAAQAFwAQABEAHwAnABMAHQAdABoAIgAEAAkACgAEAA8AGgAiABkABAAdABQAEgATAB8AKAASAB0AHQAaACIABAAJAAoABAAPABoAIgAZAAQAFwAQABEAHwAsAAcAHQAaAB0AIgAEAB4BUgAMABsAGwAXACQABAARABoAHQAYAAwAHwFhAAYAGQAOABMAGgAdAPgAAwAXABcA4gARABcAFAASABkABAAfABoAGwAEABAAFwAQABgAEAAZAB8BBgAJABcAFAASABkABAAfABoAGwDhABMAFwAUABIAGQAEAB0AFAASABMAHwAEABAAFwAQABgAEAAZAB8BCwALABcAFAASABkABAAdABQAEgATAB8BDQAMABcAFAASABkABAAdABAAGAAaACEAEADjABQAFwAUABIAGQAEABgAFAAPAA8AFwAQAAQAEAAXABAAGAAQABkAHwEHAAwAFwAUABIAGQAEABgAFAAPAA8AFwAQAN8AEgAXABQAEgAZAAQAFwAQABEAHwAEABAAFwAQABgAEAAZAB8BCQAKABcAFAASABkABAAXABAAEQAfAQwADQAXABQAEgAZAAQAFQAgAB4AHwAUABEAJADgABQAFwAUABIAGQAEAA4AEAAZAB8AEAAdAAQAEAAXABAAGAAQABkAHwEKAAwAFwAUABIAGQAEAA4AEAAZAB8AEAAdAOQAFAAXABQAEgAZAAQADQAaAB8AHwAaABgABAAQABcAEAAYABAAGQAfAQgADAAXABQAEgAZAAQADQAaAB8AHwAaABgBvwAQABIAEgAdABAAEgAMAB8AEAAEABEAFAAQABcADwAeAB0APABKAFYAfgCiAMIA8gEmAUQBXAFyAYwBoAG4AdQB4gIEAhYCIAIqAkICUgJcAnQChAKmAsoC4AL6ASkABgAgAB8AHwAaABkAzgAFAB0AIAAeABMA0gATAB0AFAASABMAHwAZABAAHgAeAAQADgAaABkAHwAdAAwAHgAfASQAEQAaAB0ADwAQAB0AHgAEAB4AEwAaACIABAATABQADwAQARsADwAaAB0ADwAQAB0AHgAEABoAIAAfAB4AFAAPABABHgAXABoAHQAPABAAHQAeAAQAFAAZAB4AFAAPABAABAAhABAAHQAfABQADgAMABcBHQAZABoAHQAPABAAHQAeAAQAFAAZAB4AFAAPABAABAATABoAHQAUACUAGgAZAB8ADAAXARwADgAaAB0ADwAQAB0AHgAEABQAGQAeABQADwAQARoACwAaAB0ADwAQAB0AHgAEAAwAFwAXAR8ACgAaAB0ADwAQAB0ABAAfABoAGwEiAAwAGgAdAA8AEAAdAAQAHQAUABIAEwAfASMACQAaAB0ADwAQAB0ABAAZABoBIQALABoAHQAPABAAHQAEABcAEAARAB8BIAANABoAHQAPABAAHQAEAA0AGgAfAB8AGgAYASUABgAaAB0ADwAQAB0AtAAQABoAGgAWABgADAAdABYABAAaACAAHwAXABQAGQAQALUACAAaABoAFgAYAAwAHQAWAO0ABAAaABcADwDXAAQAFwAgAB0BkQALABcAGgASABIAEAAdAAQADQAaACMBkAAHABcAGgASABIAEAAdAL0ABAAQABcAFwGxAAsAEAATAAwAGQAOABAABAANABoAIwGwAAcAEAATAAwAGQAOABAA3gAQAAwADgAWACIADAAdAA8ABAAQABcAEAAYABAAGQAfAOsAEQAMAA4AFgASAB0AGgAgABkADwAEAB0AEAAYABoAIQAQANAACgAMAA4AFgASAB0AGgAgABkADwDcAAwADAAOABYABAAQABcAEAAYABAAGQAfAc0AAwAMAA4APAB6AIIAmgC2AMQA1gDeAOgA8AD+AQQBDgEmATABVAF4AYwBmgHCAeAB8AIAAhwCNAJMAmQCfAKGAo4CqAK0AtAC6gL2AwIDEgMcAzADPgNiA4QDmAO6A8wD6AQCBA4ELgRcBI4EpgTSBQIFGAUiBUAFXAVqBYYFmAFKAAMAIAAfATwACwAgAB4AHwAaABgABAAUAA4AGgAZAYIADQAgAB4AHwAaABgABAARABoAHQAYAAwAHwCTAAYAIAAeAB8AGgAYAYAACAAgAB0AHQAQABkADgAkAcMAAwAeACEB0AAEAB4AHgAIAdMAAwAeAB4B1gAGAB4AGwAdABoAFQHYAAIAHgDHAAQAHQAaABsBVAALABoAGwAkAAQAEQAaAB0AGAAMAB8BSQAEABoAGwAkAPMAEQAaABkAIQAQAB0AHwAEACAAGwAbABAAHQAOAAwAHgAQAPIAEQAaABkAIQAQAB0AHwAEABcAGgAiABAAHQAOAAwAHgAQAJ0ACQAaABkAGQAQAA4AHwAaAB0BywAGABoAGQARABQAEgFDABMAGgAYABgAEAAZAB8AHgAEAB0AEAAYABoAIQAQAAQADAAXABcBQgAOABoAGAAYABAAGQAfAAQAHQAQABgAGgAhABABQQAHABoAGAAYABAAGQAfAFMABwAaABcAIAAYABkAHgF3AA0AGgAXACAAGAAZAAQAEQAdABAAEAAlABAAKAALABoAFwAXAAwAGwAeABAABAAeACIAJwALABoAFwAXAAwAGwAeABAABAAeABAAKQALABoAFwAXAAwAGwAeABAABAAZACIAJgALABoAFwAXAAwAGwAeABAABAAZABAAlAAEABoAEgAeAJMAAwAaABIBJwAMABoADwAQAAQAHgAZABQAGwAbABAAHwHbAAUAFwAaACAADwB1AA0AFwAaAB4AEAAEABoAIAAfABcAFAAZABAAdgAMABcAGgAeABAABAAOABQAHQAOABcAEAB0AAUAFwAaAB4AEABgAAUAFwAaAA4AFgBnAAcAFwAUABsABAAJAAoAZgAEABcAFAAbAVMACQAXABAADAAdAAQADgAeAB4AugAGABQAHQAOABcAEAByABEAEwAQAA4AFgAYAAwAHQAWAAQAGgAgAB8AFwAUABkAEABzABAAEwAQAA4AFgAYAAwAHQAWAAQADgAUAB0ADgAXABAAcQAJABMAEAAOABYAGAAMAB0AFgC3ABAAEwAQAA4AFgANABoAIwAEAA4AEwAQAA4AFgAQAA8AtgAIABMAEAAOABYADQAaACMAcgANABMAEAAOABYABAAaACAAHwAXABQAGQAQAHMADAATABAADgAWAAQADgAUAB0ADgAXABAAcQAFABMAEAAOABYBNAAPABMADAAZABIAEAAEABgADAAZACAADAAXABcAJAFxABYAEAAXABcAHgAEABgAEAAdABIAEAAEACEAEAAdAB8AFAAOAAwAFwAXACQBcAAYABAAFwAXAB4ABAAYABAAHQASABAABAATABoAHQAUACUAGgAZAB8ADAAXABcAJAFvAAsAEAAXABcAHgAEABgAEAAdABIAEAFzABUAEAAXABcABAAeABsAFwAUAB8ABAAhABAAHQAfABQADgAMABcAFwAkAXIAFwAQABcAFwAEAB4AGwAXABQAHwAEABMAGgAdABQAJQAaABkAHwAMABcAFwAkAEgACgAMAB8AEAASABoAHQAUACUAEACcAAQADAAdAB8AbwAOAAwAGQAOABAAFwAEABoAIAAfABcAFAAZABAAcAANAAwAGQAOABAAFwAEAA4AFAAdAA4AFwAQAG4ABgAMABkADgAQABcBKwANAAwAFwAQABkADwAMAB0ABAAPAAwAHwAQAGEACAAMABcAEAAZAA8ADAAdAJsACgAMABcADgAgABcADAAfABoAHQARACQANABOAGAAfACOAJwAvgDGAM4A4ADqAQgBJAE4AUYBaADQAAcAHQAaABsAFwAQAB8BswAMAB0AFAANAA0ADQAXABAABAANABoAIwGyAAgAHQAUAA0ADQANABcAEABHAA0AHQAMABIABAAMABkADwAEAA8AHQAaABsAiwAIABoAIgAZABcAGgAMAA8BgAAGABoAFwAXAAwAHQE7ABAAGgAOACAAGAAQABkAHwAEABgADAAZAAwAEgAQAB0BxQADABoADgD3AAMAFAAhAZUACAAUABIAEgAEAA0AGgAjAZQABAAUABIAEgE9AA4AFAAOAB8AFAAaABkADAAdACQABAAMAA8ADwGTAA0AEAAXABQADgAUABoAIAAeAAQADQAaACMBkgAJABAAFwAUAA4AFAAaACAAHgBlAAYAEAAXABAAHwAQAYMAEAAQAA4AFAAYAAwAFwAEABQAGQAOAB0AEAAMAB4AEAGEABAAEAAOABQAGAAMABcABAAPABAADgAdABAADAAeABAACwAYACAAKAA8AEgAVABsAHwAkACcALIAlgADACQAEAHVAAMAIwAQAMAACQAjAA4AEAAbAB8AFAAaABkBxAAFACMADgAQABcAdQAFAB0AHQAaAB0BlwALABkAIQAQABcAGgAbAAQADQAaACMBlgAHABkAIQAQABcAGgAbAZcACQAYAAwAFAAXAAQADQAaACMBlgAFABgADAAUABcBMgAKAA8AFAAfAAQAHwAaABoAFwAeAGQABAAPABQAHwA+AH4AngC0ANYA7gEKASABQAFQAWYBigGkAa4B0AHkAfwCEAIoAkACVgJkAnICjgKuAsoC1gL4AwIDKgNQA2QDfgOgA8wD2gPkA/AEAgQUBCgERARWBGgEegSMBJ4EvgTUBOoE/AUOBSYFOAVMBV4FaAWABaIFtAXMBdQF7gDqAA8AIAAXABcAHgAOAB0AEAAQABkABAAQACMAFAAfAOkACgAgABcAFwAeAA4AHQAQABAAGQDqABAAIAAXABcABAAeAA4AHQAQABAAGQAEABAAIwAUAB8A6QALACAAFwAXAAQAHgAOAB0AEAAQABkA2wANAB0AGgAZAB8ABAAQABcAEAAYABAAGQAfADMACgAaAB0AIgAMAB0ADwAEAB4AGADdAA8AGgAdACIADAAdAA8ABAAQABcAEAAYABAAGQAfAKcABwAaAB0AIgAMAB0ADwF9AAoAGgAdABgAIAAXAAwABAARACMBWgARABoAHQAYAAwAHwAEAA4AGgAPABAABAANABcAGgAOABYBJgAMABoAHQAYAAQAEAAXABAAGAAQABkAHwElAAQAGgAdABgA8QAQABoAHQAQABIAHQAaACAAGQAPAAQADgAaABcAGgAdAYUACQAaABkAHwAEAB4AFAAlABAA8AALABoAGQAfAAQAEQAMABgAFAAXACQBvQAJABoAFwAPABAAHQAEACAAGwG7AAsAGgAXAA8AEAAdAAQAGgAbABAAGQG+AAsAGgAXAA8AEAAdAAQAGAAaAB0AEAG8AAoAGgAXAA8AEAAdAAQADAAPAA8BugAGABoAFwAPABAAHQBiAAYAFwAaABsAGwAkAMoADQAXABQAGwAEACEAEAAdAB8AFAAOAAwAFwDJAA8AFwAUABsABAATABoAHQAUACUAGgAZAB8ADAAXAUcADQAXAAwAHgATAAQAGAAMABkADAASABAAHQHKAAUAFwAMAB4AEwFIABAAFAAZAA8ABAAMABkADwAEAB0AEAAbABcADAAOABABSAAEABQAGQAPAIYAEwAUABcAHwAQAB0ABAAeABoAHQAfAAQADwAQAB4ADgAEAB4AGACFABIAFAAXAB8AEAAdAAQAHgAaAB0AHwAEAAwAHgAOAAQAHgAYAIQACQAUABcAHwAQAB0ABAAeABgAgwAMABQAFwAfABAAHQAEAA4AFwAQAAwAHQCIABAAFAAXAB8AEAAdAAQADAAPAA8ABAASAB0AGgAgABsAhwAVABQAFwAfABAAHQAEAAwADwAPAAQAEAAjABsAHQAQAB4AHgAUABoAGQCCAAYAFAAXAB8AEAAdAc8ABAAUABcAGAFJAAUAFAAXABAAHgHOAAgAFAAXABAABAAlABQAGwHEAAgAFAAXABAABAAjABcAHgHFAAkAFAAXABAABAAiABoAHQAPAcAADQAUABcAEAAEACEAEAAdAB8AFAAOAAwAFwHCAAgAFAAXABAABAAfACMAHwHJAAgAFAAXABAABAAbAB4ADwHHAAgAFAAXABAABAAbABsAHwHIAAgAFAAXABAABAAbAA8AEQHGAAgAFAAXABAABAAYAA8ADQHcAA8AFAAXABAABAATABoAHQAUACUAGgAZAB8ADAAXAcoACgAUABcAEAAEABEAFwAMAB4AEwHEAAoAFAAXABAABAAQACMADgAQABcBxQAIABQAFwAQAAQADwAaAA4BwwAIABQAFwAQAAQADgAeACEBywALABQAFwAQAAQADgAaABkAEQAUABIBzQAIABQAFwAQAAQADQAMAA4BzAAJABQAFwAQAAQADAAeAA4AIwHBAAgAFAAXABAABAAMAA8ADwHAAAQAFAAXABABvgALABQAEAAXAA8AHgAEABgAGgAdABAAsgAQAAwAIQAaAB0AFAAfABAABAAaACAAHwAXABQAGQAQALMACAAMACEAGgAdABQAHwAQALIACwAMACEABAAaACAAHwAXABQAGQAQALMAAwAMACEBmQAMAAwADgAQAA0AGgAaABYABAANABoAIwGYAAgADAAOABAADQAaABoAFgANABwAMAA8AFQAXgByAJIAqgDAAM4A6gD2AQIBLAAJAB0AGgAgABsABAANABoAIwBLAAUAHQAaACAAGwBKAAsAHQAUAA8ABAAXAAwAJAAaACAAHwBJAAQAHQAUAA8A1gAJAB0AEAAkAB4ADgAMABcAEAGdAA8AGgAaABIAFwAQAAQAGwAXACAAHgAEAA0AGgAjAZwACwAaABoAEgAXABAABAAbABcAIAAeAZsACgAaABoAEgAXABAABAANABoAIwGaAAYAGgAaABIAFwAQAYcADQAXABoADQAQAAQAGgAgAB8AFwAUABkAEAGIAAUAFwAaAA0AEACUAAUAEAAMAB0AHgCTAAQAEAAMAB0AFgAuAFAAdACSAMAA4gEQATABUAFkAXABegGEAaABrAGyAcwB0gHYAd4B5AHqAGkAEAAkABsAEAAdABcAFAAZABYABAAdABAAGAAaACEAEACOABEAJAAbABAAHQAXABQAGQAWAAQAGgAbABAAGQAEAB4AGACNAA4AJAAbABAAHQAXABQAGQAWAAQAGgAbABAAGQFdABYAJAAbABAAHQAXABQAGQAWAAQAFwAUABIAEwAfAAQADwAUAAwAFwAaABIBXQAQACQAGwAQAB0AFwAUABkAFgAEABQAGQAeABAAHQAfAV8AFgAkABsAEAAdABcAFAAZABYABAASABcAGgANABAABAAdABAAGAAaACEAEAFeAA8AJAAbABAAHQAXABQAGQAWAAQAEgAXABoADQAQAWAADwAkABsAEAAdABcAFAAZABYABAAQABgADAAUABcAaAAJACQAGwAQAB0AFwAUABkAFgHRAAUAHwAYABcACgHSAAQAHwAYABcAvwAEABAAFwAbALIADQAQAAwAHQAfAAQAGgAgAB8AFwAUABkAEACzAAUAEAAMAB0AHwCrAAIADwBNAAwADAAZAA8AFwAQAB0ABAAPAB0ADAASAP4AAgALAP0AAgAKAPwAAgAJAPsAAgAIAPoAAgAHAPkAAgAGABUALAA6AFYAagCAAJwAtADQAOgA8gESATIBQAFMAWYBiAGuAcgB4gH4AigA7gAGAB8ADAAXABQADgDUAA0AGQAhABAAHQAfAAQADgAaABcAGgAdAB4BAwAJABkAHgAQAB0AHwAEACAAGwEDAAoAGQAeABAAHQAfAAQAHwAaABsBBAANABkAHgAQAB0AHwAEABgAFAAPAA8AFwAQAQUACwAZAB4AEAAdAB8ABAAPABoAIgAZAQUADQAZAB4AEAAdAB8ABAANABoAHwAfABoAGAC+AAsAGQARABoAHQAYAAwAHwAUABoAGQC+AAQAGQARABoBAQAPABkADwAQABkAHwAEABQAGQAOAB0AEAAMAB4AEAECAA8AGQAPABAAGQAfAAQADwAQAA4AHQAQAAwAHgAQAQEABgAZAA8AEAAZAB8BjwAFABkADQAaACMAxgAMABgADAASABAABAAdABAAHgAUACUAEAFAABAAGAAMABIAEAAEABgADAAbAAQAEAAPABQAHwAaAB0BPgASABgADAASABAABAAXABQAEgATAB8ABAAPABQADAAXABoAEgE+AAwAGAAMABIAEAAEABQAGQAeABAAHQAfAMMADAAYAAwAEgAQAAQAEAAjABsAGgAdAB8BPwAKABgADAASABAABAAQAA8AFAAfAYYAFwAYAAwAEgAQAAQADAANAB4AGgAXACAAHwAQAAQAGwAaAB4AFAAfABQAGgAZAMIABQAYAAwAEgAQAAEABAHUAAIAHgAHABAANgBWAHwAnAC8ANwAKgASABsAFAAEAB8AHQAQABkADwAEABQAGQAOAB0AEAAMAB4AEAB6AA8AGwAUAAQAHwAdABAAGQAPAAQAEAAcACAADAAXACsAEgAbABQABAAfAB0AEAAZAA8ABAAPABAADgAdABAADAAeABAAogAPABsAFAAEAB4AHwAMAB8AIAAeAAQAGgAbABAAGQChAA8AGwAUAAQAHgAfAAwAHwAgAB4ABAATABoAFwAPAKAADwAbABQABAAeAB8ADAAfACAAHgAEAA8AEAAZACQANgADABsAFAAUACoAOABEAE4AbACGAKIAvgDYAOoBBgEmATABRgFUAXIBmgG2AdIB4ACKAAYAGgASABoAIAAfAIkABQAaABIAFAAZAGwABAAaAA4AFgEAAA4AFAAeAB8ABAAgABkAGgAdAA8AEAAdABAADwD/AAwAFAAeAB8ABAAaAB0ADwAQAB0AEAAPAP8ADQAUAB4AHwAEABkAIAAYAA0AEAAdABAADwEAAA0AFAAeAB8ABAANACAAFwAXABAAHwAQAA8BnwAMABQAGQAWABAADwAUABkABAANABoAIwGeAAgAFAAZABYAEAAPABQAGQBqAA0AFAAZABYABAAhABAAHQAfABQADgAMABcAaAAPABQAGQAWAAQAEwAaAB0AFAAlABoAGQAfAAwAFwDRAAQAFAAZABABlwAKABAAHwAfABAAHQAEAA0AGgAjAZYABgAQAB8AHwAQAB0AUgAOAAwAJAAaACAAHwAEAB4AHwAMAA4AFgAQAA8AUQATAAwAJAAaACAAHwAEAB4AFAAPABAABAANACQABAAeABQADwAQAFAADQAMACQAGgAgAB8ABAAHAAQADQAkAAQABwBPAA0ADAAkABoAIAAfAAQABgAEAA0AJAAEAAkATgAGAAwAJAAaACAAHwCPAAYADAAgABkADgATABAAIgA6AEoAVABwAJAArgC8AM4A6gEEARABGgE2AT4BYgGhAAsAJAAeABsADAAOABAABAANABoAIwGgAAcAJAAeABsADAAOABAAmgAEABoAIQAQAFcADQAaAB0AEAAEACEAEAAdAB8AFAAOAAwAFwBYAA8AGgAdABAABAATABoAHQAUACUAGgAZAB8ADAAXAVwADgAaAA8AIAAXABAABAAYAAwAGQAMABIAEAAdAMgABgAUAB0AHQAaAB0AnwAIABQAGQAgAB4ABAAeABgAewANABQAGQAgAB4ABAAaACAAHwAXABQAGQAQAHwADAAUABkAIAAeAAQADgAUAB0ADgAXABAAegAFABQAGQAgAB4AVgAEABAAGQAgAUUADQAQAA8AFAAMAAQAGAAMABkADAASABAAHQHGAAMADwANAYoAEQAMAB0AFgAQAB0ABAAbABQAGQAEAB8ADAAdABIAEAAfAYkACgAMAB0AFgAQAB0ABAAbABQAGQACAAYAIAC9AAwAGgAfABQAEQAUAA4ADAAfABQAGgAZAF0ADgAaABkABAAdABAADgAgAB0AHQAQABkADgAQAAIABgAWAQIABwAgAB8ADwAQABkAHwDVAAcAGwAMAA4AFAAfACQAJgBOAFYAZgByAIIAigCaALQAzADWAOgA+AECAR4BMgE6AVQBbgF6AYoBmAGgAbIBvgHgAf4CFAJKAmoChgKSAqQCwALYAuAC8AMKAxYByQADAB4ADwBjAAcAHQAUABkAHwAQAB0AYwAFAB0AFAAZAB8AlgAHAB0AEAAhABQAEAAiAccAAwAbAB8AngAHABcAIAAeAAQAHgAYAHgADAAXACAAHgAEABoAIAAfABcAFAAZABAAeQALABcAIAAeAAQADgAUAB0ADgAXABAAdwAEABcAIAAeAK0ACAAXAAwAJAAXABQAHgAfAK8ABwAXAAwAJAAEAB4AGACjAAQAFwAMACQBowANABQAGQAfABAAHQAQAB4AHwAEAA0AGgAjAaIACQAUABkAHwAQAB0AEAAeAB8BiwADABQAGQDDAAwAEwAaAB8AGgAEABAAIwAbABoAHQAfAMEADAATABoAHwAaAAQADgAMABgAEAAdAAwAwgAFABMAGgAfABoBgQAHABAAHQAOABAAGQAfAGQABgAQABkADgAUABcByAADAA8AEQCwAAgADAAgAB4AEAAEAB4AGACkAAUADAAgAB4AEAFRABAADAAeAB8AEAAEABsAFwAMABQAGQAEAB8AEAAjAB8BUAAOAAwAHgAfABAABAAYAAwAHQAWAA8AGgAiABkBTwAKAAwAHgAfABAABAATAB8AGAAXAU4AGgAMAB4AHwAQAAQAEQAdABoAGAAEACIAGgAdAA8ABAAeAB8AHQAUABsABAARABQAFwAQAU0ADwAMAB4AHwAQAAQAEQAdABoAGAAEACIAGgAdAA8BTAANAAwAHgAfABAABAAMAB4ABAATAB8AGAAXAUsABQAMAB4AHwAQATAACAAMAB4AHgAiABoAHQAPATEADQAMAB0ADAASAB0ADAAbABMABAAMAA8ADwF1AAsADAAZABAABAARAB0AEAAQACUAEACaAAMADAAZAM8ABwAMABcAEAAfAB8AEADrAAwADAAUABkAHwAEAB0AEAAYABoAIQAQANAABQAMABQAGQAfAOwADwAMABIAEAAEABsAHQAaABsAEAAdAB8AFAAQAB4AAQAEAL8ACAAgABAAHgAfABQAGgAZAB4APgBeAG4AdgCAAJYAsgDMAOQA8gEGARQBKAE8AVIBZgF4AZABnAGsAcABzgHkAfQB/gIUAiICPgJUAnwBDwAPACAAFwAQAAQAEwAaAB0AFAAlABoAGQAfAAwAFwG1AAcAHgAeAAQADQAaACMBtAADAB4AHgBUAAQAGgAiAB4BdgAKABoAIgAEABEAHQAQABAAJQAQANoADQAaACAAGQAPAAQADgAaAB0AGQAQAB0AHgDMAAwAGgAfAAwAHwAQAAQAHQAUABIAEwAfAM0ACwAaAB8ADAAfABAABAAXABAAEQAfAMsABgAaAB8ADAAfABAANQAJABAAIgAUABkADwAEAB4AGACmAAYAEAAiABQAGQAPACgACQAQAB4AFAAlABAABAAeACIAJwAJABAAHgAUACUAEAAEAB4AEAApAAoAEAAeABQAJQAQAAQAGQAQACIAJgAJABAAHgAUACUAEAAEABkAEABeAAgAEAAeABAAHwAEAB4AGADrAAsAEAAeABAAHwAEAA4AGgAXABoAHQBbAAUAEAAeABAAHwBVAAcAEAAaAB0ADwAQAB0AXwAJABAAFwAaAAwADwAEAB4AGABcAAYAEAAXABoADAAPAF8ACgAQABEAHQAQAB4AEwAEAB4AGABcAAcAEAARAB0AEAAeABMAWgAEABAADwAaAaUACgAQAA8ADwAUAB8ABAANABoAIwGkAAYAEAAPAA8AFAAfAF8ADQAQAA4AIAAdAB0AEAAZAA4AEAAEAB4AGABcAAoAEAAOACAAHQAdABAAGQAOABAAvAATAAwADwAUABoADQAgAB8AHwAaABkABAAOABMAEAAOABYAEAAPALsACwAMAA8AFAAaAA0AIAAfAB8AGgAZACkAVABiAHgAgACQAKQAugDWAPgBEgE+AWYBjgGwAdgB9AIEAg4CKAIyAk4CZgKAApQCqgLCAtQC3AL0AxADIAMsA0IDWANyA34DkAOmA7wDygPUAX8ABgAkABgADQAaABcA9gAKACAAGwAEAB4ADgAdABQAGwAfAX4AAwAgABgAcgAHACAADgAOABAAHgAeAKwACQAgAA0AHwAUAB8AFwAQAB4A9QAKACAADQAEAB4ADgAdABQAGwAfAVsADQAfACQAFwAQAAQADQAgABQAFwAPABAAHQGnABAAHwAgABgADQAXABAABAAgABsAGgAZAAQADQAaACMBpgAMAB8AIAAYAA0AFwAQAAQAIAAbABoAGQFZABUAHwAdABQAGwAEACIAGgAdAA8ABAARABoAHQAYAAwAHwAfABQAGQASAVgAEwAfAB0AFAAbAAQAHgAbAAwAGQAEABAAFwAQABgAEAAZAB8AHgFXABMAHwAdABQAGwAEABEAGgAZAB8ABAAQABcAEAAYABAAGQAfAB4BVgAQAB8AHQAUABsABAAOAB4AHgAEABEAGgAdABgADAAfAVUAEwAfAB0AFAAbAAQADAAXABcABAARABoAHQAYAAwAHwAUABkAEgD0AA0AHwAdABQAFgAQAB8AEwAdABoAIAASABMAsQAHAB8AGgAbAAQAHgAYAKUABAAfABoAGwC0AAwAHwAMAB0ABAAaACAAHwAXABQAGQAQALUABAAfAAwAHQF5AA0AGwAQABcAFwAEAA4AEwAQAA4AFgAQAB0B0gALABoAIAAdAA4AEAAEAA4AGgAPABAAgQAMABoAHQAfAAQADwAQAB4ADgAEAB4AGAB+AAkAGgAdAB8ABAAPABAAHgAOAH8ACgAaAB0AHwAEAA4AFwAQAAwAHQCAAAsAGgAdAB8ABAAMAB4ADgAEAB4AGAB9AAgAGgAdAB8ABAAMAB4ADgHaAAMAFwAZAUQACwAUABcAIQAQAB0AFwAUABIAEwAfAJwADQATABoAGwAbABQAGQASAAQADgAMAB0AHwDYAAcAEwAMAB0AGwAQABkBjQAFABMADAAdABAAtgAKABMADAAbABAABAAdABAADgAfANEACgATAAwAGwAQAAQAFwAUABkAEAC7AAwAEwAMABsAEAAEAA4AFAAdAA4AFwAQANkABQATAAwAGwAQAJUACAAQAB8AHwAUABkAEgAeASoACgAQABcAEAAOAB8ABAANABoAIwEoAAoAEAAXABAADgAfAAQADAAXABcAlwAGABAADAAdAA4AEwBiAAQADAAhABAA0wAKAAwAHwAgAB0ADAAfABQAGgAZADcAcAB4AJAAoAC2AMQA4gESAR4BOAFqAZQBvgHwAhoCNgJSAoICjgKqAswC7AMMAyoDOgNMA2ADggOmA8ID3AP4BCYEVAR2BJgEvgTYBPIFJgVYBYAFrAXQBeYGEgY8BmoGkAbCBvIHJgdYB4gHvAHCAAMAIwAfAa0ACwAiABQAHwAfABAAHQAEAA0AGgAjAawABwAiABQAHwAfABAAHQGrAAoAIAAYAA0AFwAdAAQADQAaACMBqgAGACAAGAANABcAHQC5AA4AHQAUAAQAHgAfAAwAHwAQAAQAGQAgABcAFwC4ABcAHQAUAAQAHgAfAAwAHwAQAAQAFAAZAA8AEAAfABAAHQAYABQAGQAMAB8AEABlAAUAHQAMAB4AEwDVAAwAHQAMABkAHgAbABAAHQAMABkADgAkAToAGAAdAAwADgAWAAQADgATAAwAGQASABAAHgAEAB0AEAAVABAADgAfAAQADAAXABcBOQAUAB0ADAAOABYABAAOABMADAAZABIAEAAeAAQAHQAQABUAEAAOAB8BNgAUAB0ADAAOABYABAAOABMADAAZABIAEAAeAAQAEAAZAAwADQAXABABOAAYAB0ADAAOABYABAAOABMADAAZABIAEAAeAAQADAAOAA4AEAAbAB8ABAAMABcAFwE3ABQAHQAMAA4AFgAEAA4AEwAMABkAEgAQAB4ABAAMAA4ADgAQABsAHwE1AA0AHQAMAA4AFgAEAA4AEwAMABkAEgAQAB4BeAANABoAGgAXAA0ADAAdAAQAEQAXABoADAAfAXwAFwAaABIAEgAXABAABAARACAAFwAXAAQAHgAOAB0AEAAQABkABAAYABoADwAQAJEABQAUABcAEAAeAOUADQATACAAGAANABkADAAUABcAHgAEACAAGwDmABAAEwAgABgADQAZAAwAFAAXAB4ABAAdABQAEgATAB8A6AAPABMAIAAYAA0AGQAMABQAFwAeAAQAFwAQABEAHwDnAA8AEwAgABgADQAZAAwAFAAXAB4ABAAPABoAIgAZAS8ADgAQACMAHwANABoAIwAEABMAFAAPAA8AEAAZAS4ABwAQACMAHwANABoAIwEtAAgAEAAjAB8ADAAdABAADAEOAAkAEAAjAB8ABAAiAB0ADAAbATMAEAAQABgAGwAXAAwAHwAQAAQAGAAMABkADAASABAAHQGpABEAEAAXABcABAAMAAQAEQAdABQAEAAZAA8ABAANABoAIwGoAA0AEAAXABcABAAMAAQAEQAdABQAEAAZAA8BZAAMAAwADQAXABAABAAiABQAJQAMAB0ADwF0AA0ADAANABcAEAAEACAAGQAYABAAHQASABABagAWAAwADQAXABAABAAdABoAIgAEABQAGQAeABAAHQAfAAQADQAQABcAGgAiAWkAFgAMAA0AFwAQAAQAHQAaACIABAAUABkAHgAQAB0AHwAEAAwADQAaACEAEAFsABAADAANABcAEAAEAB0AGgAiAAQADwAQABcAEAAfABABZAAQAAwADQAXABAABAAbAB0AGgAbABAAHQAfABQAEAAeAWIAEgAMAA0AFwAQAAQAFwAUABIAEwAfAAQADwAUAAwAFwAaABIBYgAMAAwADQAXABAABAAUABkAHgAQAB0AHwFuAAwADAANABcAEAAEAA8AEAAXABAAHwAQAWgAGQAMAA0AFwAQAAQADgAaABcAIAAYABkABAAUABkAHgAQAB0AHwAEAB0AFAASABMAHwFnABgADAANABcAEAAEAA4AGgAXACAAGAAZAAQAFAAZAB4AEAAdAB8ABAAXABAAEQAfAWsAEwAMAA0AFwAQAAQADgAaABcAIAAYABkABAAPABAAFwAQAB8AEAFmABUADAANABcAEAAEAA4AEAAXABcABAAbAB0AGgAbABAAHQAfABQAEAAeAW0AEQAMAA0AFwAQAAQADgAQABcAFwAEAA8AEAAXABAAHwAQAWUACgAMAA0AFwAQAAQADgAQABcAFwESABUADAANABcAEAAEAAwAFwAUABIAGQAEAB8AGgAbAAQAHQAUABIAEwAfARAAFAAMAA0AFwAQAAQADAAXABQAEgAZAAQAHwAaABsABAAXABAAEQAfAREAFgAMAA0AFwAQAAQADAAXABQAEgAZAAQAHwAaABsABAAOABAAGQAfABAAHQEZABIADAANABcAEAAEAAwAFwAUABIAGQAEAB0AEAAYABoAIQAQARUAGAAMAA0AFwAQAAQADAAXABQAEgAZAAQAGAAUAA8ADwAXABAABAAdABQAEgATAB8BEwAXAAwADQAXABAABAAMABcAFAASABkABAAYABQADwAPABcAEAAEABcAEAARAB8BFAAZAAwADQAXABAABAAMABcAFAASABkABAAYABQADwAPABcAEAAEAA4AEAAZAB8AEAAdARgAGAAMAA0AFwAQAAQADAAXABQAEgAZAAQADQAaAB8AHwAaABgABAAdABQAEgATAB8BFgAXAAwADQAXABAABAAMABcAFAASABkABAANABoAHwAfABoAGAAEABcAEAARAB8BFwAZAAwADQAXABAABAAMABcAFAASABkABAANABoAHwAfABoAGAAEAA4AEAAZAB8AEAAdAWMABQAMAA0AFwAQAAoAFgAgAC4APABIAFYAdgCaAKoAtAGOAAQAHgAQAB0AjAAGABsAFwAaAAwADwB/AAYAGQAeABoAHQAfAYwABQAZABsAFAAZAG0ABgAZABcAGgAOABYAawAPABkAFwAUABkAFgAEACEAEAAdAB8AFAAOAAwAFwBpABEAGQAXABQAGQAWAAQAEwAaAB0AFAAlABoAGQAfAAwAFwBMAAcAGQASAB0AGgAgABsAWQAEABkADwAaAO8ACQAZAA8AEAAdABcAFAAZABAACwAYACwAQgBaAG4AegCSALAAvgDEAOYAqQAJABoAFwAgABgAEAAEACAAGwCqAAoAGgAXACAAGAAQAAQAGgARABEAqAALABoAFwAgABgAEAAEAA8AGgAiABkBtwAJABQAGAAQABoABAANABoAIwG2AAUAFAAYABAAGgHSAAsAFAAQACIABAAeABoAIAAdAA4AEAFGAA4AFAAPABAAGgAEABAAIwAfABAAHQAZAAwAFwHXAAYADQAbAB0AGgAVAdkAAgANAXoAEAAMABcAFAAPAAwAHwAUABoAGQAEACMAEwAfABgAFwF7AA8ADAAXABQADwAMAB8AFAAaABkABAAPAAwAHwAMAAgAEgAgACoAOgBYAHgAmACmAJUABgAdABAAGQAOABMBxQAEABoAHQAPAJEABwAUABkADwAaACIAHgCRAA4AFAAZAA8AGgAiAAQAHQAQAB4AHwAaAB0AEACSAA8AFAAZAA8AGgAiAAQAGAAUABkAFAAYABQAJQAQAJAADwAUABkADwAaACIABAAYAAwAIwAUABgAFAAlABAAkAAGABQAGQAPABoAIgDAAAcADAAdABkAFAAZABIAAwAIABAAJAHEAAMAFwAeAHUACQAEABoAIAAfABcAFAAZABAAdgAIAAQADgAUAB0ADgAXABAABAAKACIAMgBIAbkACwAaACAAHwAgAA0AEAAEAA0AGgAjAbgABwAaACAAHwAgAA0AEAGvAAoADAAYABgAEAAdAAQADQAaACMBrgAGAAwAGAAYABAAHQAGAA4AIAAwAEwAbgB4AJkACAAaABoAGAAEABoAIAAfAJgABwAaABoAGAAEABQAGQDFAA0AGgAaABgABAANABAAHgAfAAQAEQAUAB8AxAAQABoAGgAYAAQADAAOAB8AIAAMABcABAAeABQAJQAQAJcABAAaABoAGAHOAAMAFAAbAAEABAHcAAIB3QAAAAMD/wGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6SMDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAJgAAAAiACAABAACAAEAIAAtADYAeuAy4UniDuMK5APlKuaa5wXoLOkj//3//wAAAAAAIAAtADAAYeAA4QDiAOMA5ADlAOYA5wDoAOkA//3//wAB/+P/1//V/6sgJh9ZHqMdshy9G8Ea7BqHGY0YugADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAUABAALAAoAAAgAAAREBAsD+gAKA/oABgAAAAQFAAQACwAKAAAIAAAEhAQLA/oABgAEAAYAAAAEBQAEAAsACgAACAAABEQEBQAGAAQABgP6AAAABAUABAALAAoAAAgAAASEBAUABgP6AAoD+gAAAAQEAAQADAAKAAAIAAAkBIQIAAQD+AAKA/oAAAAEBQADAAsACwAACAAAJARECwP6AAcD/AAIAAAABAQABAAMAAoAAAgAACQEhAgD/AAIAAQABgAAAAQFAAMACwALAAAIAAAkBEQFAAYABwAEA/gAAAAIBAAEAAwACwAACAAYAAAkCESEVIQEAAQABAP4AAgABAAGA/oABwEAAAAAAAgEAAMACwALAAAIABgAACQIhESMRAQABgP6AAcBAAsD/AP8AAgD+AAAAAAACAQABAAMAAsAAAgAGAAAJAhEhNSEDAP8A/wACAP4AAsD+gAGA/kBAAAAAAAIBAADAAsACwAACAAYAACUJASERMxECwP6AAYD+QEDAAQABAP4AAgAAAAAAAgEAAEADAANAAAIABQAAJQkBCQEhAQABAAEA/wD/AAIAQAGA/oADAP6AAAACAIAAwAOAAsAAAgAFAAATCQEJARGAAYD+gAMA/oACwP8A/wABAAEA/gAAAAIBAABAAwADQAACAAUAAAkCCQEhAwD/AP8AAQABAP4AA0D+gAGA/QABgAAAAgCAAMADgALAAAIABQAA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AFcAWwBfAGMAZwBrAAABFSE1FyMVMxUjNTMVIzUzFSM1MxUjNTMBIzUzFSM1MxUjNTMVIzUzJSM1MxcjNTM3IzUzFSM1MxUjNTMVIzUzFSM1MxUjNTMhIxUzMyM1MxcjNTMhIxUzMyM1MxcjNTMBIxUzMyM1MzcjNTMDgPzAQEBAQEBAQEBAQEADAEBAQEBAQEBA/YBAQIBAQIBAQEBAQEBAQEBAQED+gEBAgEBAgEBAAQBAQIBAQIBAQP8AQECAQECAQEADgEBAgECAQMBAwEDAQAFAQMBAwEDAQMBAQEDAQMBAwEDAQMBAwEBAQEBAQEBAQAGAQEDAQAAAABsAQABAA4ADgAADAAcACwAPABMAFwAbAB8AIwAnACsALwAzADcAOwA/AEMARwBLAE8AUwBXAFsAXwBjAGcAawAANzUhFSUjFTM1IzUzNSM1MzUjNTM1IzUzASM1MzUjNTM1IzUzNSM1MwEjNTMXIzUzEyM1MzUjNTM1IzUzNSM1MzUjNTM1IzUzISMVMzMjNTMXIzUzISMVMzMjNTMXIzUzASMVMzMjNTMTIzUzQANA/QBAQEBAQEBAQEBAAwBAQEBAQEBAQP2AQECAQECAQEBAQEBAQEBAQEBA/oBAQIBAQIBAQAEAQECAQECAQED/AEBAgEBAgEBAQEBAwECAQEBAQEBAQP5AQEBAQEBAQP7AQEBA/sBAQEBAQEBAQEBAQEBAQEBAQEBA/oBAQP7AQAAbAEAAQAOAA4AAAwAHAAsADwATABcAGwAfACMAJwArAC8AMwA3ADsAPwBDAEcASwBPAFMAVwBbAF8AYwBnAGsAABMzESMTNSMVMzUzFTM1MxUzNTMVMzUzFQE1MxUzNTMVMzUzFTM1MxUBNTMVBzUzFQU1MxUzNTMVMzUzFTM1MxUzNTMVMzUzFRE1IxUVNTMVBzUzFRE1IxUVNTMVBzUzFQE1IxUVNTMVBTUzFUBAQMBAgEBAQEBAQED+QEBAQEBAQED+wEBAQP7AQEBAQEBAQEBAQEBAQEBAQEBAQP6AQED+wEADgPzAAwBAQEBAQEBAQEBA/QBAQEBAQEBAQAKAQECAQECAQEBAQEBAQEBAQEBAAYBAQIBAQIBAQP8AQECAQECAQEABAEBAgEBAgEBAAAAAABsAQABAA4ADgAADAAcACwAPABMAFwAbAB8AIwAnACsALwAz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ARc4ATEUFhUwFDEcARUDwAEBAQEBAQEBAQEBAQECAQIBAgEBAQEBAQEBAQIBAQECAQIBAQECAQEBAgEBAQIBAQECAQEBAgEBAQECAQEBAgEBAQECAgEDAQEBAQIBAQICAgEBAgIBAQMCAQECAgECAwECAwIBAQEDAQEBAgIBAgECAQEBAQECAQEBAgIBAQEBAgEBAQEDAgUIBQEDAQEBAgEBAQIBAQECAQICAQgUCwMWHswWHgkJFRlLNTVLGRQJCh4WjIwWHgkJAgIBAQECAQEBAgEBAgEBAgEDBQMCAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAQIBAgEBAQEBAQEBAQIBAQECAQIBAQECAQEBAgEBAQIBAQECAQEBAgEBAQECAQEBAgEBAQECAgEDAQEBAQIBAQICAgEBAgIBAQMCAQECAgECAgIBAwIBAgICLUEEAQEBAQEBAQEBAQEBAQEBAQEGDgkJCh4WzB4WAwsVBwgSCgECAQEBAQEBAQEBAgEBAQEBAQEBAQIBAQEBAgECAQIBAgEBAQEBAQEBAQEBAgECAQIBAQEBAQIBAgECAQEBLUEEAQEAAgICAQICAQECAwEBAgIBAQICAgEBAgEBAQEDAQICAQEBAQIBAQECAQEBAQIBAQECAQEBAgEBAQIBAQECAQEBAgECAQEBAgEBAQEBAQEBAQIBAgECAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAwUDAQIBAQIBAQIBAQECAQEBAgIJCR4WjB4WAwsUCBEzHjVLSzUdMxIHFQsDFh4CQB4WAwsUCAECAgECAQEBAgEBAQIBAQEDAQUIBQIDAQEBAQIBAQEBAgIBAQECAQEBAQECAQIBAgIBAQEDAQEBAgMCAQMCAQICAQECAwEBAgIBAQICAgEBAgEBAQEDAQICAQEBAQIBAQECAQEBAQIBAQECAQEBAgEBAQIBAQECAQEBAgECAQEBAgEBAQEBAQEBAQIBAgECAQEBAQEBAQEBAQEBAQEEQS0BAQECAQIBAgEBAQEBAgECAQIBAQEBAQEBAQEBAQIBAgECAQIBAQEBAgEBAQEBAQEBAQIBAQEBAQEBAQECAQoSCAcVCwMWHswWHgoJCQ4GAQEBAQEBAQEBAQEBAQEBAQEEQS0CAgIBAgMBAAAABQAA/8AEAALAAA0AHAA1AEkATgAAJTE1IxUj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BAAAgAQAAQAEAACLBAAAAAQAAAAEAAEABAAAAAQAAMAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAwAQAAEAEAABABAAAwAQAAEAEAABABAAAwAQAAEAEAABABAAAwAQAAMAEAABABAABAAQAAQAEAACABAAAgAQAAQAEAACABAAAgAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAADABAAAwAQAAMAEAACABAAAwAQAAFoEAABDBAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAgAQAAEAEAACABAABQAQAAUAEAABABAAAQAQAAEAEAAAABAAAQAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAEAEAADABAAAwAQAAMAEAACABAAAggQAAEAEAABABAAAgAQAAIAEAACABAAAgAQAAQAEAACABAAAgAQAAIAEAABABAAAQAQAAEAEAABABAAAQAQAAAAEAAAABAAAAAQAAEAEAAAABAAAQAQAAIAEAACABAAAgAQAAEAEAABABAAAQAQAAAwEAADABAAAQAQAAEAEAABABAAAQAQAAIAEAAAABAABAAQAAQAEAABABAAAgAQAAIAEAACABAAAgAQAAIAEAABABAAAgAQAAEAEAACABAAAgAQAAIAEAABABAAAQAQAAEAEAABABAAAAAQAAAAEAABABAAAgAQAAQAEAAEABAABAAQAAQAEAADABAAAQAQAAEAEAAAABAAAgAQAAIAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAACABAAAgAQAAIAEAACABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAAAQAAAAEAAAABAAAAAQAAEAEAABABAAAQAQAAEAEAADABAAAwAQAAAAEAABABAAAQAQAAAAEAACABAAAQAQAAAAEAACABAAAAAQAAAAEAAAABAAAAAQAAAAEAACABAAAgAQAAAAEAABABAAAQAQAAEAEAABABAAAQAQAAAAEAAAA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) format("truetype"); }

.k-icon {
  width: 1em;
  height: 1em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-family: "WebComponentsIcons";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle; }
  .k-icon::before {
    vertical-align: baseline; }
  .k-icon:hover, .k-icon:focus {
    text-decoration: none; }

.k-icon-with-modifier {
  position: relative;
  margin: .25em; }

.k-icon-modifier {
  position: absolute;
  font-size: .5em;
  bottom: 0;
  right: 0;
  margin: 0 -.5em -.5em 0; }

.k-i-none::before {
  content: "";
  display: none; }

.k-widget .k-icon.k-i-expand, .k-widget .k-icon.k-i-collapse {
  cursor: pointer; }

.k-icon-xs {
  font-size: 8px; }

.k-icon-sm {
  font-size: 12px; }

.k-icon-md {
  font-size: 32px; }

.k-icon-lg {
  font-size: 48px; }

.k-icon-xl {
  font-size: 64px; }

.k-i-arrow-45-up-right::before {
  content: "\e000"; }

.k-i-collapse-ne::before {
  content: "\e000"; }

.k-i-resize-ne::before {
  content: "\e000"; }

.k-i-arrow-45-down-right::before {
  content: "\e001"; }

.k-i-collapse-se::before {
  content: "\e001"; }

.k-i-resize-se::before {
  content: "\e001"; }

.k-i-arrow-45-down-left::before {
  content: "\e002"; }

.k-i-collapse-sw::before {
  content: "\e002"; }

.k-i-resize-sw::before {
  content: "\e002"; }

.k-i-arrow-45-up-left::before, .k-i-resize-nw::before {
  content: "\e003"; }

.k-i-collapse-nw::before {
  content: "\e003"; }

.k-i-resize-new::before {
  content: "\e003"; }

.k-i-arrow-60-up::before, .k-i-arrow-n::before, .k-i-sarrow-n::before, .k-i-expand-n::before {
  content: "\e004"; }

.k-i-kpi-trend-increase::before {
  content: "\e004"; }

.k-i-arrow-60-right::before, .k-i-arrow-e::before, .k-i-sarrow-e::before, .k-i-expand::before, .k-i-expand-e::before {
  content: "\e005"; }

.k-i-arrow-60-down::before, .k-i-arrow-s::before, .k-i-sarrow-s::before, .k-i-collapse::before, .k-i-expand-s::before {
  content: "\e006"; }

.k-i-kpi-trend-decrease::before {
  content: "\e006"; }

.k-i-arrow-60-left::before, .k-i-arrow-w::before, .k-i-sarrow-w::before, .k-i-expand-w::before {
  content: "\e007"; }

.k-i-arrow-end-up::before {
  content: "\e008"; }

.k-i-arrow-end-right::before, .k-i-seek-e::before {
  content: "\e009"; }

.k-i-arrow-end-down::before {
  content: "\e00a"; }

.k-i-arrow-end-left::before, .k-i-seek-w::before {
  content: "\e00b"; }

.k-i-arrow-double-60-up::before {
  content: "\e00c"; }

.k-i-arrow-seek-up::before, .k-i-seek-n::before {
  content: "\e00c"; }

.k-i-arrow-double-60-right::before {
  content: "\e00d"; }

.k-i-arrow-seek-right::before {
  content: "\e00d"; }

.k-i-forward-sm::before {
  content: "\e00d"; }

.k-i-arrow-double-60-down::before {
  content: "\e00e"; }

.k-i-arrow-seek-down::before, .k-i-seek-s::before {
  content: "\e00e"; }

.k-i-arrow-double-60-left::before {
  content: "\e00f"; }

.k-i-arrow-seek-left::before {
  content: "\e00f"; }

.k-i-rewind-sm::before {
  content: "\e00f"; }

.k-i-arrows-kpi::before {
  content: "\e010"; }

.k-i-kpi::before {
  content: "\e010"; }

.k-i-arrows-no-change::before {
  content: "\e011"; }

.k-i-arrow-overflow-down::before {
  content: "\e012"; }

.k-i-arrow-chevron-up::before, .k-i-arrowhead-n::before {
  content: "\e013"; }

.k-i-arrow-chevron-right::before, .k-i-arrowhead-e::before {
  content: "\e014"; }

.k-i-arrow-chevron-down::before, .k-i-arrowhead-s::before {
  content: "\e015"; }

.k-i-arrow-chevron-left::before, .k-i-arrowhead-w::before {
  content: "\e016"; }

.k-i-arrow-up::before {
  content: "\e017"; }

.k-i-arrow-right::before {
  content: "\e018"; }

.k-i-arrow-down::before {
  content: "\e019"; }

.k-i-arrow-left::before {
  content: "\e01a"; }

.k-i-arrow-drill::before {
  content: "\e01b"; }

.k-i-arrow-parent::before {
  content: "\e01c"; }

.k-i-arrow-root::before {
  content: "\e01d"; }

.k-i-arrows-resizing::before {
  content: "\e01e"; }

.k-i-arrows-dimensions::before, .k-i-dimension::before {
  content: "\e01f"; }

.k-i-arrows-swap::before {
  content: "\e020"; }

.k-i-drag-and-drop::before {
  content: "\e021"; }

.k-i-categorize::before {
  content: "\e022"; }

.k-i-grid::before {
  content: "\e023"; }

.k-i-grid-layout::before {
  content: "\e024"; }

.k-i-group::before {
  content: "\e025"; }

.k-i-ungroup::before {
  content: "\e026"; }

.k-i-handler-drag::before {
  content: "\e027"; }

.k-i-layout::before {
  content: "\e028"; }

.k-i-layout-1-by-4::before {
  content: "\e029"; }

.k-i-layout-2-by-2::before, .k-i-page-layout::before {
  content: "\e02a"; }

.k-i-layout-side-by-side::before {
  content: "\e02b"; }

.k-i-layout-stacked::before {
  content: "\e02c"; }

.k-i-columns::before {
  content: "\e02d"; }

.k-i-rows::before {
  content: "\e02e"; }

.k-i-reorder::before {
  content: "\e02f"; }

.k-i-menu::before, .k-i-hamburger::before {
  content: "\e030"; }

.k-i-more-vertical::before, .k-i-vbars::before {
  content: "\e031"; }

.k-i-more-horizontal::before, .k-i-hbars::before {
  content: "\e032"; }

.k-i-undo::before, .k-i-undo-large::before {
  content: "\e100"; }

.k-i-redo::before, .k-i-redo-large::before {
  content: "\e101"; }

.k-i-reset::before {
  content: "\e102"; }

.k-i-reload::before {
  content: "\e103"; }

.k-i-refresh::before {
  content: "\e103"; }

.k-i-recurrence::before {
  content: "\e103"; }

.k-i-non-recurrence::before, .k-i-refresh-clear::before {
  content: "\e104"; }

.k-i-reset-sm::before {
  content: "\e105"; }

.k-i-reload-sm::before {
  content: "\e106"; }

.k-i-refresh-sm::before {
  content: "\e106"; }

.k-i-recurrence-sm::before {
  content: "\e106"; }

.k-i-clock::before {
  content: "\e107"; }

.k-i-calendar::before {
  content: "\e108"; }

.k-i-save::before {
  content: "\e109"; }

.k-i-floppy::before {
  content: "\e109"; }

.k-i-print::before {
  content: "\e10a"; }

.k-i-printer::before {
  content: "\e10a"; }

.k-i-edit::before {
  content: "\e10b"; }

.k-i-pencil::before {
  content: "\e10b"; }

.k-i-delete::before {
  content: "\e10c"; }

.k-i-trash::before {
  content: "\e10c"; }

.k-i-attachment::before {
  content: "\e10d"; }

.k-i-clip::before {
  content: "\e10d"; }

.k-i-attachment-45::before {
  content: "\e10e"; }

.k-i-clip-45::before {
  content: "\e10e"; }

.k-i-link-horizontal::before {
  content: "\e10f"; }

.k-i-hyperlink::before {
  content: "\e10f"; }

.k-i-unlink-horizontal::before {
  content: "\e110"; }

.k-i-hyperlink-remove::before {
  content: "\e110"; }

.k-i-link-vertical::before {
  content: "\e111"; }

.k-i-unlink-vertical::before {
  content: "\e112"; }

.k-i-lock::before {
  content: "\e113"; }

.k-i-unlock::before {
  content: "\e114"; }

.k-i-cancel::before {
  content: "\e115"; }

.k-i-cancel-outline::before, .k-i-deny::before {
  content: "\e116"; }

.k-i-cancel-circle::before {
  content: "\e117"; }

.k-i-check::before, .k-i-tick::before {
  content: "\e118"; }

.k-i-checkmark::before {
  content: "\e118"; }

.k-i-check-outline::before {
  content: "\e119"; }

.k-i-checkmark-outline::before {
  content: "\e119"; }

.k-i-success::before {
  content: "\e119"; }

.k-i-check-circle::before {
  content: "\e11a"; }

.k-i-checkmark-circle::before {
  content: "\e11a"; }

.k-i-close::before, .k-i-group-delete::before {
  content: "\e11b"; }

.k-i-x::before {
  content: "\e11b"; }

.k-i-close-outline::before {
  content: "\e11c"; }

.k-i-x-outline::before {
  content: "\e11c"; }

.k-i-error::before {
  content: "\e11c"; }

.k-i-close-circle::before {
  content: "\e11d"; }

.k-i-x-circle::before {
  content: "\e11d"; }

.k-i-plus::before, .k-plus::before, .k-i-add::before {
  content: "\e11e"; }

.k-i-plus-outline::before {
  content: "\e11f"; }

.k-i-plus-circle::before {
  content: "\e120"; }

.k-i-minus::before, .k-minus::before {
  content: "\e121"; }

.k-i-kpi-trend-equal::before {
  content: "\e121"; }

.k-i-minus-outline::before {
  content: "\e122"; }

.k-i-minus-circle::before {
  content: "\e123"; }

.k-i-sort-asc::before {
  content: "\e124"; }

.k-i-sort-desc::before {
  content: "\e125"; }

.k-i-unsort::before {
  content: "\e126"; }

.k-i-sort-clear::before {
  content: "\e126"; }

.k-i-sort-asc-sm::before {
  content: "\e127"; }

.k-i-sort-desc-sm::before {
  content: "\e128"; }

.k-i-filter::before {
  content: "\e129"; }

.k-i-filter-clear::before {
  content: "\e12a"; }

.k-i-filter-sm::before {
  content: "\e12b"; }

.k-i-filter-sort-asc-sm::before {
  content: "\e12c"; }

.k-i-filter-sort-desc-sm::before {
  content: "\e12d"; }

.k-i-filter-add-expression::before {
  content: "\e12e"; }

.k-i-filter-add-group::before {
  content: "\e12f"; }

.k-i-login::before {
  content: "\e130"; }

.k-i-logout::before {
  content: "\e131"; }

.k-i-download::before {
  content: "\e132"; }

.k-i-upload::before {
  content: "\e133"; }

.k-i-hyperlink-open::before {
  content: "\e134"; }

.k-i-hyperlink-open-sm::before {
  content: "\e135"; }

.k-i-launch::before {
  content: "\e136"; }

.k-i-window::before {
  content: "\e137"; }

.k-i-window-maximize::before, .k-i-maximize::before {
  content: "\e137"; }

.k-i-windows::before {
  content: "\e138"; }

.k-i-window-restore::before, .k-i-restore::before {
  content: "\e138"; }

.k-i-tiles::before {
  content: "\e138"; }

.k-i-window-minimize::before, .k-i-minimize::before {
  content: "\e139"; }

.k-i-gear::before {
  content: "\e13a"; }

.k-i-cog::before {
  content: "\e13a"; }

.k-i-custom::before {
  content: "\e13a"; }

.k-i-gears::before {
  content: "\e13b"; }

.k-i-cogs::before {
  content: "\e13b"; }

.k-i-wrench::before {
  content: "\e13c"; }

.k-i-settings::before {
  content: "\e13c"; }

.k-i-preview::before {
  content: "\e13d"; }

.k-i-eye::before {
  content: "\e13d"; }

.k-i-zoom::before {
  content: "\e13e"; }

.k-i-search::before {
  content: "\e13e"; }

.k-i-zoom-in::before {
  content: "\e13f"; }

.k-i-zoom-out::before {
  content: "\e140"; }

.k-i-pan::before {
  content: "\e141"; }

.k-i-move::before {
  content: "\e141"; }

.k-i-calculator::before {
  content: "\e142"; }

.k-i-cart::before {
  content: "\e143"; }

.k-i-shopping-cart::before {
  content: "\e143"; }

.k-i-connector::before {
  content: "\e144"; }

.k-i-plus-sm::before, .k-i-splus::before {
  content: "\e145"; }

.k-i-minus-sm::before, .k-i-sminus::before {
  content: "\e146"; }

.k-i-kpi-status-deny::before {
  content: "\e147"; }

.k-i-kpi-status-hold::before {
  content: "\e148"; }

.k-i-kpi-status-open::before {
  content: "\e149"; }

.k-i-play::before {
  content: "\e200"; }

.k-i-pause::before {
  content: "\e201"; }

.k-i-stop::before {
  content: "\e202"; }

.k-i-rewind::before {
  content: "\e203"; }

.k-i-forward::before {
  content: "\e204"; }

.k-i-volume-down::before, .k-i-volume-low::before {
  content: "\e205"; }

.k-i-volume-up::before, .k-i-volume-high::before {
  content: "\e206"; }

.k-i-volume-off::before, .k-i-volume-mute::before {
  content: "\e207"; }

.k-i-hd::before {
  content: "\e208"; }

.k-i-subtitles::before {
  content: "\e209"; }

.k-i-playlist::before {
  content: "\e20a"; }

.k-i-audio::before {
  content: "\e20b"; }

.k-i-play-sm::before {
  content: "\e20c"; }

.k-i-pause-sm::before {
  content: "\e20d"; }

.k-i-stop-sm::before {
  content: "\e20e"; }

.k-i-heart-outline::before {
  content: "\e300"; }

.k-i-fav-outline::before {
  content: "\e300"; }

.k-i-favorite-outline::before {
  content: "\e300"; }

.k-i-heart::before {
  content: "\e301"; }

.k-i-fav::before {
  content: "\e301"; }

.k-i-favorite::before {
  content: "\e301"; }

.k-i-star-outline::before {
  content: "\e302"; }

.k-i-bookmark-outline::before {
  content: "\e302"; }

.k-i-star::before {
  content: "\e303"; }

.k-i-bookmark::before {
  content: "\e303"; }

.k-i-checkbox::before {
  content: "\e304"; }

.k-i-shape-rect::before {
  content: "\e304"; }

.k-i-checkbox-checked::before {
  content: "\e305"; }

.k-i-tri-state-indeterminate::before {
  content: "\e306"; }

.k-i-tri-state-null::before {
  content: "\e307"; }

.k-i-circle::before {
  content: "\e308"; }

.k-i-radiobutton::before {
  content: "\e309"; }

.k-i-shape-circle::before {
  content: "\e309"; }

.k-i-radiobutton-checked::before {
  content: "\e30a"; }

.k-i-notification::before {
  content: "\e400"; }

.k-i-bell::before {
  content: "\e400"; }

.k-i-information::before {
  content: "\e401"; }

.k-i-info::before, .k-i-note::before {
  content: "\e401"; }

.k-i-question::before {
  content: "\e402"; }

.k-i-help::before {
  content: "\e402"; }

.k-i-warning::before {
  content: "\e403"; }

.k-i-exception::before {
  content: "\e403"; }

.k-i-photo-camera::before {
  content: "\e500"; }

.k-i-image::before {
  content: "\e501"; }

.k-i-photo::before {
  content: "\e501"; }

.k-i-image-export::before {
  content: "\e502"; }

.k-i-photo-export::before {
  content: "\e502"; }

.k-i-zoom-actual-size::before {
  content: "\e503"; }

.k-i-zoom-best-fit::before {
  content: "\e504"; }

.k-i-image-resize::before {
  content: "\e505"; }

.k-i-crop::before {
  content: "\e506"; }

.k-i-mirror::before {
  content: "\e507"; }

.k-i-flip-horizontal::before {
  content: "\e508"; }

.k-i-flip-vertical::before {
  content: "\e509"; }

.k-i-rotate::before {
  content: "\e50a"; }

.k-i-rotate-right::before, .k-i-rotate-cw::before {
  content: "\e50b"; }

.k-i-rotate-left::before, .k-i-rotate-ccw::before {
  content: "\e50c"; }

.k-i-brush::before {
  content: "\e50d"; }

.k-i-palette::before {
  content: "\e50e"; }

.k-i-paint::before {
  content: "\e50f"; }

.k-i-droplet::before {
  content: "\e50f"; }

.k-i-background::before {
  content: "\e50f"; }

.k-i-line::before {
  content: "\e510"; }

.k-i-shape-line::before {
  content: "\e510"; }

.k-i-brightness-contrast::before {
  content: "\e511"; }

.k-i-saturation::before {
  content: "\e512"; }

.k-i-invert-colors::before {
  content: "\e513"; }

.k-i-transperancy::before {
  content: "\e514"; }

.k-i-opacity::before {
  content: "\e514"; }

.k-i-greyscale::before {
  content: "\e515"; }

.k-i-blur::before {
  content: "\e516"; }

.k-i-sharpen::before {
  content: "\e517"; }

.k-i-shape::before {
  content: "\e518"; }

.k-i-round-corners::before {
  content: "\e519"; }

.k-i-front-element::before {
  content: "\e51a"; }

.k-i-back-element::before {
  content: "\e51b"; }

.k-i-forward-element::before {
  content: "\e51c"; }

.k-i-backward-element::before {
  content: "\e51d"; }

.k-i-align-left-element::before {
  content: "\e51e"; }

.k-i-align-center-element::before {
  content: "\e51f"; }

.k-i-align-right-element::before {
  content: "\e520"; }

.k-i-align-top-element::before {
  content: "\e521"; }

.k-i-align-middle-element::before {
  content: "\e522"; }

.k-i-align-bottom-element::before {
  content: "\e523"; }

.k-i-thumbnails-up::before {
  content: "\e524"; }

.k-i-thumbnails-right::before {
  content: "\e525"; }

.k-i-thumbnails-down::before {
  content: "\e526"; }

.k-i-thumbnails-left::before {
  content: "\e527"; }

.k-i-full-screen::before, .k-i-fullscreen-enter::before {
  content: "\e528"; }

.k-i-fullscreen::before {
  content: "\e528"; }

.k-i-full-screen-exit::before {
  content: "\e529"; }

.k-i-fullscreen-exit::before {
  content: "\e529"; }

.k-i-reset-color::before {
  content: "\e52a"; }

.k-i-paint-remove::before {
  content: "\e52a"; }

.k-i-background-remove::before {
  content: "\e52a"; }

.k-i-page-properties::before {
  content: "\e600"; }

.k-i-bold::before {
  content: "\e601"; }

.k-i-italic::before {
  content: "\e602"; }

.k-i-underline::before {
  content: "\e603"; }

.k-i-font-family::before {
  content: "\e604"; }

.k-i-foreground-color::before, .k-i-text::before {
  content: "\e605"; }

.k-i-convert-lowercase::before {
  content: "\e606"; }

.k-i-convert-uppercase::before {
  content: "\e607"; }

.k-i-strikethrough::before, .k-i-strike-through::before {
  content: "\e608"; }

.k-i-sub-script::before, .k-i-subscript::before {
  content: "\e609"; }

.k-i-sup-script::before, .k-i-superscript::before {
  content: "\e60a"; }

.k-i-div::before {
  content: "\e60b"; }

.k-i-all::before {
  content: "\e60c"; }

.k-i-h1::before {
  content: "\e60d"; }

.k-i-h2::before {
  content: "\e60e"; }

.k-i-h3::before {
  content: "\e60f"; }

.k-i-h4::before {
  content: "\e610"; }

.k-i-h5::before {
  content: "\e611"; }

.k-i-h6::before {
  content: "\e612"; }

.k-i-list-ordered::before, .k-i-insert-ordered-list::before {
  content: "\e613"; }

.k-i-list-numbered::before {
  content: "\e613"; }

.k-i-list-unordered::before, .k-i-insert-unordered-list::before {
  content: "\e614"; }

.k-i-list-bulleted::before {
  content: "\e614"; }

.k-i-indent-increase::before {
  content: "\e615"; }

.k-i-indent::before {
  content: "\e615"; }

.k-i-indent-decrease::before {
  content: "\e616"; }

.k-i-outdent::before {
  content: "\e616"; }

.k-i-insert-up::before, .k-i-insert-n::before {
  content: "\e617"; }

.k-i-insert-top::before {
  content: "\e617"; }

.k-i-insert-middle::before, .k-i-insert-m::before {
  content: "\e618"; }

.k-i-insert-down::before, .k-i-insert-s::before {
  content: "\e619"; }

.k-i-insert-bottom::before {
  content: "\e619"; }

.k-i-align-top::before {
  content: "\e61a"; }

.k-i-align-middle::before {
  content: "\e61b"; }

.k-i-align-bottom::before {
  content: "\e61c"; }

.k-i-align-left::before, .k-i-justify-left::before {
  content: "\e61d"; }

.k-i-align-center::before, .k-i-justify-center::before {
  content: "\e61e"; }

.k-i-align-right::before, .k-i-justify-right::before {
  content: "\e61f"; }

.k-i-align-justify::before, .k-i-justify-full::before {
  content: "\e620"; }

.k-i-align-remove::before, .k-i-justify-clear::before {
  content: "\e621"; }

.k-i-text-wrap::before {
  content: "\e622"; }

.k-i-rule-horizontal::before {
  content: "\e623"; }

.k-i-table-align-top-left::before {
  content: "\e624"; }

.k-i-table-align-top-center::before {
  content: "\e625"; }

.k-i-table-align-top-right::before {
  content: "\e626"; }

.k-i-table-align-middle-left::before {
  content: "\e627"; }

.k-i-table-align-middle-center::before {
  content: "\e628"; }

.k-i-table-align-middle-right::before {
  content: "\e629"; }

.k-i-table-align-bottom-left::before {
  content: "\e62a"; }

.k-i-table-align-bottom-center::before {
  content: "\e62b"; }

.k-i-table-align-bottom-right::before {
  content: "\e62c"; }

.k-i-table-align-remove::before {
  content: "\e62d"; }

.k-i-borders-all::before, .k-i-all-borders::before {
  content: "\e62e"; }

.k-i-borders-outside::before, .k-i-outside-borders::before {
  content: "\e62f"; }

.k-i-borders-inside::before, .k-i-inside-borders::before {
  content: "\e630"; }

.k-i-borders-inside-horizontal::before, .k-i-inside-horizontal-borders::before {
  content: "\e631"; }

.k-i-borders-inside-vertical::before, .k-i-inside-vertical-borders::before {
  content: "\e632"; }

.k-i-border-top::before, .k-i-top-border::before {
  content: "\e633"; }

.k-i-border-bottom::before, .k-i-bottom-border::before {
  content: "\e634"; }

.k-i-border-left::before, .k-i-left-border::before {
  content: "\e635"; }

.k-i-border-right::before, .k-i-right-border::before {
  content: "\e636"; }

.k-i-border-no::before, .k-i-no-borders::before {
  content: "\e637"; }

.k-i-borders-show-hide::before {
  content: "\e638"; }

.k-i-form::before {
  content: "\e639"; }

.k-i-border::before {
  content: "\e639"; }

.k-i-form-element::before {
  content: "\e63a"; }

.k-i-code-snippet::before {
  content: "\e63b"; }

.k-i-select-all::before {
  content: "\e63c"; }

.k-i-button::before {
  content: "\e63d"; }

.k-i-select-box::before {
  content: "\e63e"; }

.k-i-calendar-date::before {
  content: "\e63f"; }

.k-i-group-box::before {
  content: "\e640"; }

.k-i-textarea::before {
  content: "\e641"; }

.k-i-textbox::before {
  content: "\e642"; }

.k-i-textbox-hidden::before {
  content: "\e643"; }

.k-i-password::before {
  content: "\e644"; }

.k-i-paragraph-add::before {
  content: "\e645"; }

.k-i-edit-tools::before {
  content: "\e646"; }

.k-i-template-manager::before {
  content: "\e647"; }

.k-i-change-manually::before {
  content: "\e648"; }

.k-i-track-changes::before {
  content: "\e649"; }

.k-i-track-changes-enable::before {
  content: "\e64a"; }

.k-i-track-changes-accept::before {
  content: "\e64b"; }

.k-i-track-changes-accept-all::before {
  content: "\e64c"; }

.k-i-track-changes-reject::before {
  content: "\e64d"; }

.k-i-track-changes-reject-all::before {
  content: "\e64e"; }

.k-i-document-manager::before {
  content: "\e64f"; }

.k-i-custom-icon::before {
  content: "\e650"; }

.k-i-dictionary-add::before {
  content: "\e651"; }

.k-i-image-light-dialog::before {
  content: "\e652"; }

.k-i-image-insert::before, .k-i-insert-image::before {
  content: "\e652"; }

.k-i-image-edit::before {
  content: "\e653"; }

.k-i-image-map-editor::before {
  content: "\e654"; }

.k-i-comment::before {
  content: "\e655"; }

.k-i-comment-remove::before {
  content: "\e656"; }

.k-i-comments-remove-all::before {
  content: "\e657"; }

.k-i-silverlight::before {
  content: "\e658"; }

.k-i-media-manager::before {
  content: "\e659"; }

.k-i-video-external::before {
  content: "\e65a"; }

.k-i-flash-manager::before {
  content: "\e65b"; }

.k-i-find-and-replace::before {
  content: "\e65c"; }

.k-i-find::before {
  content: "\e65c"; }

.k-i-copy::before {
  content: "\e65d"; }

.k-i-files::before {
  content: "\e65d"; }

.k-i-cut::before {
  content: "\e65e"; }

.k-i-paste::before {
  content: "\e65f"; }

.k-i-paste-as-html::before {
  content: "\e660"; }

.k-i-paste-from-word::before {
  content: "\e661"; }

.k-i-paste-from-word-strip-file::before {
  content: "\e662"; }

.k-i-paste-html::before {
  content: "\e663"; }

.k-i-paste-markdown::before {
  content: "\e664"; }

.k-i-paste-plain-text::before {
  content: "\e665"; }

.k-i-apply-format::before {
  content: "\e666"; }

.k-i-clear-css::before, .k-i-clearformat::before {
  content: "\e667"; }

.k-i-copy-format::before {
  content: "\e668"; }

.k-i-strip-all-formating::before {
  content: "\e669"; }

.k-i-strip-css-format::before {
  content: "\e66a"; }

.k-i-strip-font-elements::before {
  content: "\e66b"; }

.k-i-strip-span-elements::before {
  content: "\e66c"; }

.k-i-strip-word-formatting::before {
  content: "\e66d"; }

.k-i-format-code-block::before {
  content: "\e66e"; }

.k-i-style-builder::before {
  content: "\e66f"; }

.k-i-module-manager::before {
  content: "\e670"; }

.k-i-hyperlink-light-dialog::before {
  content: "\e671"; }

.k-i-hyperlink-insert::before {
  content: "\e671"; }

.k-i-hyperlink-globe::before {
  content: "\e672"; }

.k-i-hyperlink-globe-remove::before {
  content: "\e673"; }

.k-i-hyperlink-email::before {
  content: "\e674"; }

.k-i-anchor::before {
  content: "\e675"; }

.k-i-table-light-dialog::before, .k-i-create-table::before {
  content: "\e676"; }

.k-i-table-insert::before {
  content: "\e676"; }

.k-i-table::before {
  content: "\e677"; }

.k-i-table-properties::before {
  content: "\e678"; }

.k-i-table-wizard::before {
  content: "\e678"; }

.k-i-table-cell::before {
  content: "\e679"; }

.k-i-table-cell-properties::before {
  content: "\e67a"; }

.k-i-table-column-insert-left::before, .k-i-add-column-left::before {
  content: "\e67b"; }

.k-i-table-column-insert-right::before, .k-i-add-column-right::before {
  content: "\e67c"; }

.k-i-table-row-insert-above::before, .k-i-add-row-above::before {
  content: "\e67d"; }

.k-i-table-row-insert-below::before, .k-i-add-row-below::before {
  content: "\e67e"; }

.k-i-table-column-delete::before, .k-i-delete-column::before {
  content: "\e67f"; }

.k-i-table-row-delete::before, .k-i-delete-row::before {
  content: "\e680"; }

.k-i-table-cell-delete::before {
  content: "\e681"; }

.k-i-table-delete::before {
  content: "\e682"; }

.k-i-cells-merge::before, .k-i-merge-cells::before {
  content: "\e683"; }

.k-i-cells-merge-horizontally::before, .k-i-merge-horizontally::before {
  content: "\e684"; }

.k-i-cells-merge-vertically::before, .k-i-merge-vertically::before {
  content: "\e685"; }

.k-i-cell-split-horizontally::before {
  content: "\e686"; }

.k-i-cell-split-vertically::before {
  content: "\e687"; }

.k-i-table-unmerge::before, .k-i-normal-layout::before {
  content: "\e688"; }

.k-i-pane-freeze::before, .k-i-freeze-panes::before {
  content: "\e689"; }

.k-i-row-freeze::before, .k-i-freeze-row::before {
  content: "\e68a"; }

.k-i-column-freeze::before, .k-i-freeze-col::before {
  content: "\e68b"; }

.k-i-toolbar-float::before {
  content: "\e68c"; }

.k-i-spell-checker::before {
  content: "\e68d"; }

.k-i-validation-xhtml::before {
  content: "\e68e"; }

.k-i-validation-data::before {
  content: "\e68f"; }

.k-i-toggle-full-screen-mode::before {
  content: "\e690"; }

.k-i-formula-fx::before, .k-i-fx::before, .k-spreadsheet-formula-bar::before {
  content: "\e691"; }

.k-i-sum::before {
  content: "\e692"; }

.k-i-symbol::before {
  content: "\e693"; }

.k-i-dollar::before {
  content: "\e694"; }

.k-i-currency::before {
  content: "\e694"; }

.k-i-percent::before {
  content: "\e695"; }

.k-i-custom-format::before, .k-i-format-number::before {
  content: "\e696"; }

.k-i-decimal-increase::before, .k-i-increase-decimal::before {
  content: "\e697"; }

.k-i-decimal-decrease::before, .k-i-decrease-decimal::before {
  content: "\e698"; }

.k-i-font-size::before {
  content: "\e699"; }

.k-i-image-absolute-position::before {
  content: "\e69a"; }

.k-i-globe-outline::before {
  content: "\e700"; }

.k-i-globe::before {
  content: "\e701"; }

.k-i-marker-pin::before {
  content: "\e702"; }

.k-i-marker-pin-target::before {
  content: "\e703"; }

.k-i-pin::before {
  content: "\e704"; }

.k-i-unpin::before {
  content: "\e705"; }

.k-i-share::before {
  content: "\e800"; }

.k-i-user::before {
  content: "\e801"; }

.k-i-inbox::before {
  content: "\e802"; }

.k-i-blogger::before {
  content: "\e803"; }

.k-i-blogger-box::before {
  content: "\e804"; }

.k-i-delicious::before {
  content: "\e805"; }

.k-i-delicious-box::before {
  content: "\e806"; }

.k-i-digg::before {
  content: "\e807"; }

.k-i-digg-box::before {
  content: "\e808"; }

.k-i-email::before {
  content: "\e809"; }

.k-i-envelop::before {
  content: "\e809"; }

.k-i-letter::before {
  content: "\e809"; }

.k-i-email-box::before {
  content: "\e80a"; }

.k-i-envelop-box::before {
  content: "\e80a"; }

.k-i-letter-box::before {
  content: "\e80a"; }

.k-i-facebook::before {
  content: "\e80b"; }

.k-i-facebook-box::before {
  content: "\e80c"; }

.k-i-google::before {
  content: "\e80d"; }

.k-i-google-box::before {
  content: "\e80e"; }

.k-i-google-plus::before {
  content: "\e80f"; }

.k-i-google-plus-box::before {
  content: "\e810"; }

.k-i-linkedin::before {
  content: "\e811"; }

.k-i-linkedin-box::before {
  content: "\e812"; }

.k-i-myspace::before {
  content: "\e813"; }

.k-i-myspace-box::before {
  content: "\e814"; }

.k-i-pinterest::before {
  content: "\e815"; }

.k-i-pinterest-box::before {
  content: "\e816"; }

.k-i-reddit::before {
  content: "\e817"; }

.k-i-reddit-box::before {
  content: "\e818"; }

.k-i-stumble-upon::before {
  content: "\e819"; }

.k-i-stumble-upon-box::before {
  content: "\e81a"; }

.k-i-tell-a-friend::before {
  content: "\e81b"; }

.k-i-tell-a-friend-box::before {
  content: "\e81c"; }

.k-i-tumblr::before {
  content: "\e81d"; }

.k-i-tumblr-box::before {
  content: "\e81e"; }

.k-i-twitter::before {
  content: "\e81f"; }

.k-i-twitter-box::before {
  content: "\e820"; }

.k-i-yammer::before {
  content: "\e821"; }

.k-i-yammer-box::before {
  content: "\e822"; }

.k-i-behance::before {
  content: "\e823"; }

.k-i-behance-box::before {
  content: "\e824"; }

.k-i-dribbble::before {
  content: "\e825"; }

.k-i-dribbble-box::before {
  content: "\e826"; }

.k-i-rss::before {
  content: "\e827"; }

.k-i-rss-box::before {
  content: "\e828"; }

.k-i-vimeo::before {
  content: "\e829"; }

.k-i-vimeo-box::before {
  content: "\e82a"; }

.k-i-youtube::before {
  content: "\e82b"; }

.k-i-youtube-box::before {
  content: "\e82c"; }

.k-i-folder::before {
  content: "\e900"; }

.k-i-folder-open::before {
  content: "\e901"; }

.k-i-folder-add::before {
  content: "\e902"; }

.k-i-folder-up::before {
  content: "\e903"; }

.k-i-folder-more::before {
  content: "\e904"; }

.k-i-fields-more::before {
  content: "\e904"; }

.k-i-aggregate-fields::before {
  content: "\e905"; }

.k-i-file::before {
  content: "\e906"; }

.k-i-file-vertical::before, .k-i-page-portrait::before {
  content: "\e906"; }

.k-i-file-add::before, .k-i-insert-file::before {
  content: "\e907"; }

.k-i-file-txt::before {
  content: "\e908"; }

.k-i-txt::before {
  content: "\e908"; }

.k-i-file-csv::before {
  content: "\e909"; }

.k-i-csv::before {
  content: "\e909"; }

.k-i-file-excel::before {
  content: "\e90a"; }

.k-i-file-xls::before {
  content: "\e90a"; }

.k-i-excel::before {
  content: "\e90a"; }

.k-i-xls::before, .k-i-xlsa::before {
  content: "\e90a"; }

.k-i-file-word::before {
  content: "\e90b"; }

.k-i-file-doc::before {
  content: "\e90b"; }

.k-i-word::before {
  content: "\e90b"; }

.k-i-doc::before {
  content: "\e90b"; }

.k-i-file-mdb::before {
  content: "\e90c"; }

.k-i-mdb::before {
  content: "\e90c"; }

.k-i-file-ppt::before {
  content: "\e90d"; }

.k-i-ppt::before {
  content: "\e90d"; }

.k-i-file-pdf::before {
  content: "\e90e"; }

.k-i-pdf::before, .k-i-pdfa::before {
  content: "\e90e"; }

.k-i-file-psd::before {
  content: "\e90f"; }

.k-i-psd::before {
  content: "\e90f"; }

.k-i-file-flash::before {
  content: "\e910"; }

.k-i-flash::before {
  content: "\e910"; }

.k-i-file-config::before {
  content: "\e911"; }

.k-i-config::before {
  content: "\e911"; }

.k-i-file-ascx::before {
  content: "\e912"; }

.k-i-ascx::before {
  content: "\e912"; }

.k-i-file-bac::before {
  content: "\e913"; }

.k-i-bac::before {
  content: "\e913"; }

.k-i-file-zip::before {
  content: "\e914"; }

.k-i-zip::before {
  content: "\e914"; }

.k-i-film::before {
  content: "\e915"; }

.k-i-css3::before {
  content: "\e916"; }

.k-i-html5::before {
  content: "\e917"; }

.k-i-html::before {
  content: "\e918"; }

.k-i-source-code::before {
  content: "\e918"; }

.k-i-view-source::before {
  content: "\e918"; }

.k-i-css::before {
  content: "\e919"; }

.k-i-js::before {
  content: "\e91a"; }

.k-i-exe::before {
  content: "\e91b"; }

.k-i-csproj::before {
  content: "\e91c"; }

.k-i-vbproj::before {
  content: "\e91d"; }

.k-i-cs::before {
  content: "\e91e"; }

.k-i-vb::before {
  content: "\e91f"; }

.k-i-sln::before {
  content: "\e920"; }

.k-i-cloud::before {
  content: "\e921"; }

.k-i-file-horizontal::before, .k-i-page-landscape::before {
  content: "\e922"; }

.k-rtl .k-i-indent-increase,
.k-rtl .k-i-indent-decrease,
.k-rtl .k-i-expand,
.k-rtl .k-i-collapse,
[dir="rtl"] .k-i-expand,
[dir="rtl"] .k-i-collapse {
  transform: scaleX(-1); }

.k-sprite {
  display: inline-block;
  width: 16px;
  height: 16px;
  overflow: hidden;
  background-repeat: no-repeat;
  font-size: 0;
  line-height: 0;
  text-align: center;
  -ms-high-contrast-adjust: none; }

.k-image {
  display: inline-block; }

.k-line {
  background-color: currentColor;
  border-color: currentColor; }

.k-line-h,
.k-line-v {
  position: absolute; }

.k-line-h {
  height: 2px; }

.k-line-v {
  width: 2px; }

.k-loading {
  width: 64px;
  height: 64px;
  display: block; }
  .k-loading .animate {
    animation: loading 2s infinite linear; }

.k-loading-mask,
.k-loading-image,
.k-loading-color {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.k-loading-mask {
  z-index: 100; }
  .k-loading-mask.k-opaque .k-loading-color {
    opacity: 1; }

.k-loading-text {
  text-indent: -4000px;
  text-align: center;
  position: absolute; }

.k-loading-image {
  z-index: 2; }

.k-loading-color {
  background-color: var(--sg-bg-color, #ffffff);
  opacity: .3; }

.k-i-loading {
  position: relative;
  background-color: transparent;
  box-sizing: border-box;
  color: currentColor; }

.k-i-loading::before,
.k-i-loading::after,
.k-loading-image::before,
.k-loading-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  content: "";
  box-sizing: inherit;
  border-radius: 50%;
  border-width: .05em;
  border-style: solid;
  border-color: currentColor;
  border-top-color: transparent;
  border-bottom-color: transparent;
  background-color: transparent; }

.k-icon.k-i-loading::before,
.k-icon.k-i-loading::after {
  content: ""; }

.k-i-loading::before,
.k-loading-image::before {
  margin-top: -.5em;
  margin-left: -.5em;
  width: 1em;
  height: 1em;
  animation: k-loading-animation .7s linear infinite; }

.k-i-loading::after,
.k-loading-image::after {
  margin-top: -.25em;
  margin-left: -.25em;
  width: .5em;
  height: .5em;
  animation: k-loading-animation reverse 1.4s linear infinite; }

.k-loading-image::before,
.k-loading-image::after {
  content: "";
  border-width: .015em;
  font-size: 4em; }

@keyframes loading {
  0% {
    stroke-dasharray: 0 251;
    stroke-dashoffset: 502; }
  50% {
    stroke-dasharray: 250 1; }
  100% {
    stroke-dasharray: 0 251;
    stroke-dashoffset: 0; } }

@keyframes k-loading-animation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.k-resize-handle,
.k-resize-hint {
  position: absolute;
  border-color: inherit;
  z-index: 200; }

.k-resize-handle {
  display: flex;
  align-items: center;
  justify-content: center; }

.k-resize-handle::before {
  content: "";
  border: 0 solid;
  border-color: inherit; }

.k-resize-n {
  width: 100%;
  height: 6px;
  flex-direction: row;
  left: 0;
  top: -3px;
  cursor: n-resize; }

.k-resize-s {
  width: 100%;
  height: 6px;
  flex-direction: row;
  left: 0;
  bottom: -3px;
  cursor: s-resize; }

.k-resize-w {
  width: 6px;
  height: 100%;
  flex-direction: col;
  top: 0;
  left: -3px;
  cursor: w-resize; }

.k-resize-e {
  width: 6px;
  height: 100%;
  flex-direction: col;
  top: 0;
  right: -3px;
  cursor: w-resize; }

.k-resize-sw,
.k-resize-se,
.k-resize-nw,
.k-resize-ne {
  width: 5px;
  height: 5px; }

.k-resize-sw {
  cursor: sw-resize;
  bottom: 0;
  left: 0; }

.k-resize-se {
  cursor: se-resize;
  bottom: 0;
  right: 0; }

.k-resize-nw {
  cursor: nw-resize;
  top: 0;
  left: 0; }

.k-resize-ne {
  cursor: ne-resize;
  top: 0;
  right: 0; }

.k-vertical-resize {
  cursor: row-resize; }

.k-horizontal-resize {
  cursor: col-resize; }

.k-resize-hint {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .k-resize-hint .k-resize-hint-handle {
    width: auto;
    height: 20px;
    align-self: stretch; }
  .k-resize-hint .k-resize-hint-marker {
    width: 2px;
    height: auto;
    flex: 1 1 auto; }

.k-resize-hint-vertical {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .k-resize-hint-vertical .k-resize-hint-handle {
    width: 20px;
    height: auto;
    align-self: stretch; }
  .k-resize-hint-vertical .k-resize-hint-marker {
    width: auto;
    height: 2px;
    flex: 1 1 auto; }

.k-scrollbar {
  position: absolute;
  overflow: scroll; }

.k-scrollbar-vertical {
  top: 0;
  right: 0;
  width: 17px;
  height: 100%;
  overflow-x: hidden; }

.k-touch-scrollbar {
  display: none;
  position: absolute;
  z-index: 200000;
  height: 8px;
  width: 8px;
  border: 1px solid #8a8a8a;
  background-color: #858585; }

.k-widget ::selection, .k-block ::selection,
.k-panel ::selection {
  background-color: #0735cc;
  color: #ffffff; }

.k-marquee {
  position: absolute;
  z-index: 100000; }

.k-marquee-color,
.k-marquee-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.k-marquee-color {
  color: #ffffff;
  background-color: #0735cc;
  border-color: rgba(0, 0, 0, 0.1);
  opacity: .6; }

.k-marquee-text {
  color: #ffffff; }

.k-ripple-target {
  position: relative; }

.k-ripple {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none; }

.k-ripple-blob {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  padding: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 100ms linear, transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: .1;
  background-color: currentColor; }
  .k-primary .k-ripple-blob {
    opacity: .2; }

.k-popup {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 0 0;
  border-width: 1px;
  border-style: solid;
  font-size: 14px;
  line-height: 1.42857;
  box-sizing: content-box; }
  .k-popup > .k-widget:only-child {
    border-width: 0; }
  .k-popup .k-item {
    cursor: pointer;
    outline: none; }
  .k-popup .k-rtl .k-list-optionlabel,
  [dir="rtl"] .k-popup .k-list-optionlabel {
    text-align: right; }

.k-animation-container {
  border-radius: 0 0 6px 6px; }

.k-animation-container-shown {
  overflow: visible; }

.k-popup .k-item.k-first {
  position: relative; }

.k-popup > .k-group-header,
.k-popup > .k-virtual-wrap > .k-group-header {
  padding: 4px 8px;
  min-height: 1.42857em;
  white-space: normal;
  transition: background-color 0.2s ease;
  border-bottom-width: 1px;
  border-bottom-style: solid; }

.k-popup > .k-group-header {
  margin-top: 0; }

.k-popup .k-outer-group-header {
  padding: 4px 8px;
  min-height: 1.42857em;
  white-space: normal; }

.k-popup > .k-colorpalette,
.k-popup > .k-flatcolorpicker {
  padding: 8px; }

.k-popup .k-list .k-item > .k-group {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 .5em;
  font-size: 9.996px;
  line-height: 14px;
  text-transform: uppercase; }

.k-popup .k-list .k-item > .k-group::before {
  display: block;
  content: " ";
  border-width: 7px;
  border-style: solid;
  position: absolute;
  left: -14px;
  bottom: 0; }

.k-rtl.k-popup .k-list .k-item > .k-group,
[dir="rtl"] .k-popup .k-list .k-item > .k-group {
  right: auto;
  left: 0; }
  .k-rtl.k-popup .k-list .k-item > .k-group::before,
  [dir="rtl"] .k-popup .k-list .k-item > .k-group::before {
    right: -14px;
    left: auto; }

.k-group-header + div > .k-list > .k-item.k-first::before {
  content: " ";
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0; }

.k-popup .k-list > .k-outer-group-header {
  border-top-width: 1px;
  border-top-style: solid; }

.k-popup.k-popup-transparent {
  border-width: 0;
  background-color: transparent; }

.k-popup.k-popup-flush {
  padding: 0; }

.k-popup .k-list-scroller {
  max-height: max(calc(100vh - 200px), 150px) !important;
}

.k-list-scroller {
  position: relative;
  overflow: auto; }

.k-list {
  height: auto; }
  .k-list > .k-item {
    display: flex;
    align-items: center;
    align-content: center; }
    .k-list > .k-item > .k-icon {
      align-self: center;
      margin-right: 8px; }
  .k-list > .k-custom-item {
    font-style: italic; }
    .k-list > .k-custom-item > .k-i-plus, .k-list > .k-custom-item > .k-plus::before, .k-list > .k-custom-item > .k-i-add::before {
      margin-left: auto;
      margin-right: 0; }

.k-list .k-item,
.k-list-optionlabel {
  padding: 4px 8px;
  min-height: 1.42857em;
  line-height: 1.42857em;
  white-space: normal; }

.k-list-optionlabel {
  cursor: pointer;
  outline: none; }

.k-list-filter {
  display: block;
  position: relative;
  padding: 8px;
  min-height: calc( 24px + 1.42857em);
  box-sizing: border-box; }
  .k-list-filter > .k-textbox {
    width: 100% !important;
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 24px; }
  .k-list-filter > .k-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%); }
  .k-rtl .k-list-filter > .k-textbox,
  [dir="rtl"] .k-list-filter > .k-textbox {
    padding-right: 8px;
    padding-left: 24px; }
  .k-rtl .k-list-filter > .k-icon,
  [dir="rtl"] .k-list-filter > .k-icon {
    left: 16px;
    right: auto; }

.k-dropdown-button .k-popup .k-item {
  cursor: pointer; }

.k-split-button .k-list .k-item:focus,
.k-dropdown-button .k-list .k-item:focus {
  outline: none; }

.k-list-container .k-button {
  border-radius: 0;
  padding: 4px 8px;
  border-width: 0;
  color: inherit;
  background-color: transparent;
  background-image: none;
  line-height: inherit;
  display: flex;
  justify-content: flex-start; }
  .k-list-container .k-button .k-icon {
    margin: 0 4px 0 0; }
  .k-ie11 .k-list-container .k-button {
    display: flex; }

.k-list-container .k-button.k-state-disabled {
  pointer-events: none; }

.k-list-container .k-nodata .k-button {
  display: inline-flex;
  border-width: 1px; }

.k-list-container .k-separator {
  height: 0; }

.k-popup {
  background-clip: padding-box; }
  .k-ie11 .k-popup,
  .k-edge12 .k-popup,
  .k-edge13 .k-popup {
    background-clip: border-box; }

.k-popup > .k-group-header,
.k-popup .k-outer-group-header.k-first,
.k-popup > .k-virtual-wrap > .k-group-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.06); }

.k-popup .k-list .k-item > .k-group {
  color: #ffffff;
  background: #656565; }

.k-popup .k-list .k-item > .k-group::before {
  border-color: #656565 #656565 transparent transparent; }

.k-rtl.k-popup .k-list .k-item > .k-group::before,
[dir="rtl"] .k-popup .k-list .k-item > .k-group::before {
  border-color: #656565 transparent transparent #656565; }

.k-group-header + div > .k-list > .k-item.k-first::before {
  border-color: rgba(0, 0, 0, 0.08); }

.k-list > .k-outer-group-header {
  border-color: rgba(0, 0, 0, 0.08); }

.k-popup > .k-colorpalette,
.k-popup > .k-flatcolorpicker {
  background: #f5f5f5; }

.k-list .k-item,
.k-list-optionlabel {
  transition-property: color, background-color, outline-color, box-shadow;
  transition-duration: 200ms;
  transition-timing-function: ease; }

.k-list .k-item:hover.k-state-selected,
.k-list .k-item.k-state-hover.k-state-selected,
.k-list-optionlabel:hover.k-state-selected,
.k-list-optionlabel.k-state-hover.k-state-selected {
  color: #ffffff;
  background-color: #4b93eb; }

.k-animation-container {
  border-radius: 0 0 6px 6px; }

.k-animation-container-shown,
.k-animation-container > .k-popup {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04); }

.k-animation-container-fixed > .k-popup {
  box-shadow: none; }

.k-list-container .k-button {
  box-shadow: none; }

.k-list-container .k-button:hover,
.k-list-container .k-button.k-state-hover {
  background-image: none; }

.k-list-container .k-button:active,
.k-list-container .k-button.k-state-active {
  background-image: none; }

.k-list-container .k-button.k-state-disabled {
  background: transparent; }

.k-list-container .k-button:focus,
.k-list-container .k-button.k-state-focused {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-list-container .k-nodata {
  color: rgba(101, 101, 101, 0.5); }

.k-dropdown .k-select {
  border-width: 0; }

.k-dropdown-wrap {
  outline: 0;
  cursor: pointer; }
  .k-dropdown-wrap > .k-input {
    flex: 1; }

.k-edge .k-dropdown-wrap > .k-input {
  min-width: 0; }

.k-dropdown-operator {
  width: auto; }
  .k-dropdown-operator .k-input {
    display: none; }
  .k-dropdown-operator .k-select {
    width: calc( 8px + 1.42857em);
    height: calc( 8px + 1.42857em); }

.k-dropdown .k-dropdown-wrap {
  background-clip: padding-box; }
  .k-ie11 .k-dropdown .k-dropdown-wrap,
  .k-edge12 .k-dropdown .k-dropdown-wrap,
  .k-edge13 .k-dropdown .k-dropdown-wrap {
    background-clip: border-box; }
  .k-dropdown .k-dropdown-wrap .k-select {
    padding: 0;
    width: calc( 8px + 1.42857em); }

.k-pager-wrap {
  padding: 8px 8px;
  border-width: 1px;
  line-height: 1.42857;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: default;
  flex: 0 0 auto; }
  .k-pager-wrap .k-link,
  .k-pager-wrap .k-state-selected {
    padding: 4px;
    width: calc( 10px + 1.42857em);
    height: calc( 10px + 1.42857em);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    z-index: 1; }
    .k-pager-wrap .k-link > .k-icon,
    .k-pager-wrap .k-state-selected > .k-icon {
      vertical-align: middle; }
  .k-pager-wrap .k-link:hover,
  .k-pager-wrap .k-state-selected {
    z-index: 2; }
  .k-pager-wrap .k-link:focus,
  .k-pager-wrap .k-state-selected {
    text-decoration: none;
    outline: none; }
  .k-pager-wrap .k-link.k-state-disabled {
    color: inherit; }
  .k-pager-wrap .k-pager-numbers-wrap {
    width: auto;
    height: auto;
    position: relative;
    display: inline-flex; }
  .k-pager-wrap .k-pager-numbers {
    display: inline-flex;
    flex-direction: row; }
    .k-pager-wrap .k-pager-numbers li {
      display: inline-block; }
    .k-pager-wrap .k-pager-numbers .k-current-page {
      display: none; }
    .k-pager-wrap .k-pager-numbers .k-current-page + li {
      margin-left: 0; }
  .k-pager-wrap .k-label {
    margin: 0 1em;
    display: flex;
    align-items: center; }
  .k-pager-wrap .k-pager-input .k-textbox {
    margin: 0 1ex;
    width: 3em; }
  .k-pager-wrap .k-pager-sizes .k-dropdown,
  .k-pager-wrap .k-pager-sizes > select {
    margin: 0 8px 0 0;
    width: 5.2em; }
  .k-pager-wrap .k-pager-refresh {
    order: 10; }
  .k-pager-wrap .k-pager-info {
    flex: 1;
    text-align: right;
    order: 9;
    justify-content: flex-end; }
  .k-pager-wrap .k-widget {
    font-size: inherit; }
  .k-rtl .k-pager-wrap .k-i-arrow-end-left, .k-rtl .k-pager-wrap .k-i-seek-w::before,
  .k-rtl .k-pager-wrap .k-i-arrow-60-left,
  .k-rtl .k-pager-wrap .k-i-arrow-w::before,
  .k-rtl .k-pager-wrap .k-i-sarrow-w::before,
  .k-rtl .k-pager-wrap .k-i-expand-w::before,
  .k-rtl .k-pager-wrap .k-i-arrow-60-right,
  .k-rtl .k-pager-wrap .k-i-arrow-e::before,
  .k-rtl .k-pager-wrap .k-i-sarrow-e::before,
  .k-rtl .k-pager-wrap .k-i-expand::before,
  .k-rtl .k-pager-wrap .k-i-expand-e::before,
  .k-rtl .k-pager-wrap .k-i-arrow-end-right,
  .k-rtl .k-pager-wrap .k-i-seek-e::before, .k-pager-wrap[dir="rtl"] .k-i-arrow-end-left, .k-pager-wrap[dir="rtl"] .k-i-seek-w::before,
  .k-pager-wrap[dir="rtl"] .k-i-arrow-60-left,
  .k-pager-wrap[dir="rtl"] .k-i-arrow-w::before,
  .k-pager-wrap[dir="rtl"] .k-i-sarrow-w::before,
  .k-pager-wrap[dir="rtl"] .k-i-expand-w::before,
  .k-pager-wrap[dir="rtl"] .k-i-arrow-60-right,
  .k-pager-wrap[dir="rtl"] .k-i-arrow-e::before,
  .k-pager-wrap[dir="rtl"] .k-i-sarrow-e::before,
  .k-pager-wrap[dir="rtl"] .k-i-expand::before,
  .k-pager-wrap[dir="rtl"] .k-i-expand-e::before,
  .k-pager-wrap[dir="rtl"] .k-i-arrow-end-right,
  .k-pager-wrap[dir="rtl"] .k-i-seek-e::before,
  [dir="rtl"] .k-pager-wrap .k-i-arrow-end-left,
  [dir="rtl"] .k-pager-wrap .k-i-seek-w::before,
  [dir="rtl"] .k-pager-wrap .k-i-arrow-60-left,
  [dir="rtl"] .k-pager-wrap .k-i-arrow-w::before,
  [dir="rtl"] .k-pager-wrap .k-i-sarrow-w::before,
  [dir="rtl"] .k-pager-wrap .k-i-expand-w::before,
  [dir="rtl"] .k-pager-wrap .k-i-arrow-60-right,
  [dir="rtl"] .k-pager-wrap .k-i-arrow-e::before,
  [dir="rtl"] .k-pager-wrap .k-i-sarrow-e::before,
  [dir="rtl"] .k-pager-wrap .k-i-expand::before,
  [dir="rtl"] .k-pager-wrap .k-i-expand-e::before,
  [dir="rtl"] .k-pager-wrap .k-i-arrow-end-right,
  [dir="rtl"] .k-pager-wrap .k-i-seek-e::before {
    transform: scaleX(-1); }
  .k-rtl .k-pager-wrap .k-pager-sizes .k-dropdown,
  .k-rtl .k-pager-wrap .k-pager-sizes > select, .k-pager-wrap[dir="rtl"] .k-pager-sizes .k-dropdown,
  .k-pager-wrap[dir="rtl"] .k-pager-sizes > select,
  [dir="rtl"] .k-pager-wrap .k-pager-sizes .k-dropdown,
  [dir="rtl"] .k-pager-wrap .k-pager-sizes > select {
    margin-right: 0;
    margin-left: 8px; }
  .k-pager-wrap.k-pager-lg, .k-pager-wrap.k-pager-md, .k-pager-wrap.k-pager-sm {
    position: relative;
    overflow: visible; }
    .k-pager-wrap.k-pager-lg .k-pager-nav + .k-pager-numbers-wrap, .k-pager-wrap.k-pager-md .k-pager-nav + .k-pager-numbers-wrap, .k-pager-wrap.k-pager-sm .k-pager-nav + .k-pager-numbers-wrap {
      width: calc( 20px + 2.85714em);
      height: calc( 10px + 1.42857em);
      box-sizing: border-box;
      border-color: inherit;
      margin: 0 8px; }
    .k-pager-wrap.k-pager-lg .k-pager-numbers, .k-pager-wrap.k-pager-md .k-pager-numbers, .k-pager-wrap.k-pager-sm .k-pager-numbers {
      border-radius: 6px;
      position: absolute;
      overflow: hidden;
      flex-direction: column-reverse;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      bottom: 0;
      z-index: 3;
      border-style: solid;
      border-width: 1px; }
      .k-pager-wrap.k-pager-lg .k-pager-numbers li:not(.k-current-page), .k-pager-wrap.k-pager-md .k-pager-numbers li:not(.k-current-page), .k-pager-wrap.k-pager-sm .k-pager-numbers li:not(.k-current-page) {
        display: none; }
      .k-pager-wrap.k-pager-lg .k-pager-numbers .k-current-page, .k-pager-wrap.k-pager-md .k-pager-numbers .k-current-page, .k-pager-wrap.k-pager-sm .k-pager-numbers .k-current-page {
        display: inline-flex;
        cursor: pointer; }
      .k-pager-wrap.k-pager-lg .k-pager-numbers .k-link,
      .k-pager-wrap.k-pager-lg .k-pager-numbers .k-state-selected, .k-pager-wrap.k-pager-md .k-pager-numbers .k-link,
      .k-pager-wrap.k-pager-md .k-pager-numbers .k-state-selected, .k-pager-wrap.k-pager-sm .k-pager-numbers .k-link,
      .k-pager-wrap.k-pager-sm .k-pager-numbers .k-state-selected {
        margin: 0;
        border-width: 0;
        width: calc( 20px + 2.85714em);
        height: calc( 10px + 1.42857em); }
      .k-pager-wrap.k-pager-lg .k-pager-numbers.k-state-expanded, .k-pager-wrap.k-pager-md .k-pager-numbers.k-state-expanded, .k-pager-wrap.k-pager-sm .k-pager-numbers.k-state-expanded {
        height: auto; }
        .k-pager-wrap.k-pager-lg .k-pager-numbers.k-state-expanded li, .k-pager-wrap.k-pager-md .k-pager-numbers.k-state-expanded li, .k-pager-wrap.k-pager-sm .k-pager-numbers.k-state-expanded li {
          display: inline-flex; }
        .k-pager-wrap.k-pager-lg .k-pager-numbers.k-state-expanded .k-current-page, .k-pager-wrap.k-pager-md .k-pager-numbers.k-state-expanded .k-current-page, .k-pager-wrap.k-pager-sm .k-pager-numbers.k-state-expanded .k-current-page {
          border-style: solid;
          border-width: 1px 0 0; }
  .k-pager-wrap.k-pager-md .k-pager-info, .k-pager-wrap.k-pager-sm .k-pager-info {
    display: none; }
  .k-pager-wrap.k-pager-md .k-pager-refresh, .k-pager-wrap.k-pager-sm .k-pager-refresh {
    margin-left: auto; }
  .k-rtl .k-pager-wrap.k-pager-md .k-pager-refresh, .k-pager-wrap.k-pager-md[dir="rtl"] .k-pager-refresh,
  [dir="rtl"] .k-pager-wrap.k-pager-md .k-pager-refresh, .k-rtl .k-pager-wrap.k-pager-sm .k-pager-refresh, .k-pager-wrap.k-pager-sm[dir="rtl"] .k-pager-refresh,
  [dir="rtl"] .k-pager-wrap.k-pager-sm .k-pager-refresh {
    margin-left: 0;
    margin-right: auto; }
  .k-pager-wrap.k-pager-sm .k-pager-sizes {
    display: none; }

.k-pager-wrap {
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }
  .k-pager-wrap.k-pager-lg .k-pager-numbers, .k-pager-wrap.k-pager-md .k-pager-numbers, .k-pager-wrap.k-pager-sm .k-pager-numbers {
    border-color: rgba(0, 0, 0, 0.08);
    background-color: #f6f6f6; }
    .k-pager-wrap.k-pager-lg .k-pager-numbers.k-state-expanded .k-current-page, .k-pager-wrap.k-pager-md .k-pager-numbers.k-state-expanded .k-current-page, .k-pager-wrap.k-pager-sm .k-pager-numbers.k-state-expanded .k-current-page {
      border-color: rgba(0, 0, 0, 0.08); }

.k-pager-nav:hover {
  color: #0735cc;
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-pager-nav:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-pager-numbers .k-link {
  color: #0735cc; }
  .k-pager-numbers .k-link:hover, .k-pager-numbers .k-link.k-state-hover {
    color: #0735cc;
    background-color: var(--sg-color-legacy-ededed, #ededed); }
  .k-pager-numbers .k-link:focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-pager-numbers .k-state-selected {
  color: #ffffff;
  background-color: #0735cc; }

.k-button {
  border-radius: 6px;
  padding: 4px 8px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  font-size: 14px;
  line-height: 1.42857;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  position: relative; }
  .k-button::-moz-focus-inner {
    padding: 0;
    border: 0;
    outline: 0; }
  .k-button:hover, .k-button:focus {
    text-decoration: none;
    outline: 0; }
  .k-button .k-icon,
  .k-button .k-image,
  .k-button .k-sprite {
    color: inherit;
    align-self: center;
    position: relative; }
  .k-button-icontext {
    overflow: visible; }
    .k-button-icontext .k-icon,
    .k-button-icontext .k-image,
    .k-button-icontext .k-sprite {
      margin: 0 4px 0 -4px; }
    .k-rtl .k-button-icontext .k-icon,
    .k-rtl .k-button-icontext .k-image,
    .k-rtl .k-button-icontext .k-sprite, .k-button-icontext[dir="rtl"] .k-icon,
    .k-button-icontext[dir="rtl"] .k-image,
    .k-button-icontext[dir="rtl"] .k-sprite {
      margin: 0 -4px 0 4px; }
  .k-button-icon {
    width: calc( 10px + 1.42857em);
    height: calc( 10px + 1.42857em);
    padding: 4px; }
    .k-button-icon .k-text {
      display: none; }

.k-dropdown-button.k-state-focused, .k-dropdown-button:focus {
  outline: 0; }

.k-dropdown-button.k-widget {
  border-radius: 6px;
  border-width: 0;
  display: inline-block; }

.k-button-group {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: 0;
  white-space: nowrap;
  display: inline-flex;
  flex-direction: row;
  vertical-align: middle;
  position: relative; }
  .k-button-group .k-button {
    border-radius: 0; }
  .k-button-group .k-button ~ .k-button {
    margin-left: -1px; }
  .k-button-group .k-button:hover,
  .k-button-group .k-button.k-state-hover,
  .k-button-group .k-button:active,
  .k-button-group .k-button.k-state-active {
    z-index: 2; }
  .k-button-group [disabled],
  .k-button-group .k-state-disabled {
    pointer-events: none; }
  .k-button-group .k-group-start,
  .k-button-group .k-button:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px; }
  .k-button-group .k-group-end,
  .k-button-group .k-button:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px; }
  .k-button-group .k-group-start.k-group-end,
  .k-button-group .k-button:first-child:last-child {
    border-radius: 6px; }
  .k-button-group > input[type="radio"],
  .k-button-group > input[type="checkbox"],
  .k-button-group label input[type="radio"],
  .k-button-group label input[type="checkbox"] {
    margin: 0;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    position: absolute;
    pointer-events: none; }

.k-button-group-stretched {
  display: flex; }
  .k-button-group-stretched .k-button {
    display: inline-block;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis; }
    .k-button-group-stretched .k-button > .k-icon {
      vertical-align: text-bottom; }

.k-split-button:focus,
.k-split-button.k-state-focused {
  outline: none; }

.k-split-button.k-button-group.k-state-focused {
  border-radius: 6px; }

.k-split-button.k-widget {
  border-radius: 6px;
  border-width: 0; }

.k-split-button.k-button-group .k-button:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.k-split-button.k-button-group .k-button:nth-child(2) {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.k-button.k-flat, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button, .k-calendar .k-calendar-header .k-button,
.k-button.k-bare,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button {
  border-color: transparent !important;
  color: inherit;
  background: none !important;
  box-shadow: none !important;
  transition: color .2s ease-in-out; }
  .k-button.k-flat:hover, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button:hover, .k-calendar .k-calendar-header .k-button:hover, .k-button.k-flat.k-state-hover, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button.k-state-hover, .k-calendar .k-calendar-header .k-state-hover.k-button, .k-button.k-flat:active, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button:active, .k-calendar .k-calendar-header .k-button:active, .k-button.k-flat.k-state-active, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button.k-state-active, .k-calendar .k-calendar-header .k-state-active.k-button, .k-button.k-flat:hover:active, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button:hover:active, .k-calendar .k-calendar-header .k-button:hover:active, .k-button.k-flat:hover.k-state-active, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button:hover.k-state-active, .k-calendar .k-calendar-header .k-button:hover.k-state-active,
  .k-button.k-bare:hover,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:hover,
  .k-button.k-bare.k-state-hover,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button.k-state-hover,
  .k-button.k-bare:active,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:active,
  .k-button.k-bare.k-state-active,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button.k-state-active,
  .k-button.k-bare:hover:active,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:hover:active,
  .k-button.k-bare:hover.k-state-active,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:hover.k-state-active {
    color: inherit; }
  .k-button.k-flat::before, .k-toolbar .k-flat.k-picker-wrap::before,
  .k-toolbar .k-flat.k-dropdown-wrap::before, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button::before, .k-toolbar .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-picker-wrap::before,
  .k-toolbar .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-dropdown-wrap::before, .k-calendar .k-calendar-header .k-button::before, .k-calendar .k-calendar-header .k-toolbar .k-picker-wrap::before, .k-toolbar .k-calendar .k-calendar-header .k-picker-wrap::before, .k-calendar .k-calendar-header
  .k-toolbar .k-dropdown-wrap::before,
  .k-toolbar .k-calendar .k-calendar-header .k-dropdown-wrap::before,
  .k-button.k-bare::before,
  .k-toolbar .k-bare.k-picker-wrap::before,
  .k-toolbar .k-bare.k-dropdown-wrap::before,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button::before,
  .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-picker-wrap::before,
  .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-dropdown-wrap::before {
    display: block; }

.k-button.k-outline {
  color: inherit;
  background: none;
  box-shadow: none; }

.k-rtl .k-button-group .k-button ~ .k-button {
  margin-right: -1px;
  margin-left: 0; }

.k-rtl .k-button-group .k-button {
  border-radius: 0; }

.k-rtl .k-button-group .k-group-start,
.k-rtl .k-button-group .k-button:first-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.k-rtl .k-button-group .k-group-end,
.k-rtl .k-button-group .k-button:last-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.k-rtl .k-button-group .k-group-start.k-group-end,
.k-rtl .k-button-group .k-button:first-child:last-child {
  border-radius: 6px; }

.k-rtl .k-split-button .k-button {
  border-radius: 0 6px 6px 0; }

.k-rtl .k-split-button .k-split-button-arrow {
  border-radius: 6px 0 0 6px;
  margin-left: 0;
  margin-right: -1px; }

.k-button::before, .k-toolbar .k-picker-wrap::before,
.k-toolbar .k-dropdown-wrap::before {
  border-radius: inherit;
  content: "";
  background: currentColor;
  opacity: 0;
  display: none;
  pointer-events: none;
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  z-index: 0;
  transition: opacity .2s ease-in-out; }

.k-button:hover::before, .k-toolbar .k-picker-wrap:hover::before,
.k-toolbar .k-dropdown-wrap:hover::before, .k-button.k-state-hover::before, .k-toolbar .k-state-hover.k-picker-wrap::before,
.k-toolbar .k-state-hover.k-dropdown-wrap::before {
  opacity: 0.08; }

.k-button.k-no-focus:not(:hover)::before, .k-toolbar .k-no-focus.k-picker-wrap:not(:hover)::before,
.k-toolbar .k-no-focus.k-dropdown-wrap:not(:hover)::before, .k-button.k-no-focus:not(.k-state-hover)::before, .k-toolbar .k-no-focus.k-picker-wrap:not(.k-state-hover)::before,
.k-toolbar .k-no-focus.k-dropdown-wrap:not(.k-state-hover)::before {
  opacity: 0; }

.k-button:active::before, .k-toolbar .k-picker-wrap:active::before,
.k-toolbar .k-dropdown-wrap:active::before, .k-button.k-state-active::before, .k-toolbar .k-state-active.k-picker-wrap::before,
.k-toolbar .k-state-active.k-dropdown-wrap::before {
  opacity: 0.16; }

.k-button.k-state-selected::before, .k-toolbar .k-state-selected.k-picker-wrap::before,
.k-toolbar .k-state-selected.k-dropdown-wrap::before {
  opacity: 0.2; }

.k-button::after {
  border-radius: 6px;
  content: "";
  opacity: 0;
  display: none;
  pointer-events: none;
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  z-index: 0;
  transition: opacity .2s ease-in-out; }

.k-ie9 .k-button[disabled]:hover,
.k-ie9 .k-button[disabled]:focus,
.k-ie9 .k-button.k-state-disabled:hover,
.k-ie9 .k-button.k-state-disabled:focus,
.k-ie10 .k-button[disabled]:hover,
.k-ie10 .k-button[disabled]:focus,
.k-ie10 .k-button.k-state-disabled:hover,
.k-ie10 .k-button.k-state-disabled:focus {
  outline: none;
  cursor: default;
  opacity: 0.6;
  box-shadow: none; }

.k-ie .k-button,
.k-ie .k-button-group {
  display: inline-block; }

.k-button {
  background-clip: padding-box; }
  .k-ie11 .k-button,
  .k-edge12 .k-button,
  .k-edge13 .k-button {
    background-clip: border-box; }
  .k-button:focus, .k-button.k-state-focused {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }
  .k-button:active, .k-button.k-state-active {
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }
  .k-button.k-state-selected {
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }

.k-button.k-primary:focus, .k-button.k-primary.k-state-focused {
  box-shadow: 0 3px 4px 0 rgba(82, 160, 255, 0.4); }
  .k-button.k-primary:focus[disabled],
  [disabled] .k-button.k-primary:focus, .k-button.k-primary:focus.k-state-disabled, .k-button.k-primary.k-state-focused[disabled],
  [disabled] .k-button.k-primary.k-state-focused, .k-button.k-primary.k-state-focused.k-state-disabled {
    box-shadow: none; }

.k-button.k-primary:active, .k-button.k-primary.k-state-active {
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }

.k-button.k-primary.k-state-selected {
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }

.k-dropdown-button:active > .k-button:not(:disabled),
.k-dropdown-button.k-state-active > .k-button:not(:disabled) {
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }

.k-dropdown-button:focus > .k-button,
.k-dropdown-button.k-state-focused > .k-button {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }

.k-dropdown-button .k-widget {
  border-width: 0;
  display: inline-block; }

.k-button-group {
  background-clip: padding-box; }
  .k-ie11 .k-button-group,
  .k-edge12 .k-button-group,
  .k-edge13 .k-button-group {
    background-clip: border-box; }
  .k-button-group .k-button:focus,
  .k-button-group .k-button.k-state-focused,
  .k-button-group > input[type="radio"]:focus + .k-button,
  .k-button-group > input[type="checkbox"]:focus + .k-button {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
  .k-button-group .k-button:active,
  .k-button-group .k-button.k-state-active,
  .k-button-group .k-button.k-state-selected,
  .k-button-group > input[type="radio"]:checked + .k-button,
  .k-button-group > input[type="checkbox"]:checked + .k-button {
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }

.k-split-button:focus,
.k-split-button.k-state-focused {
  outline: none;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }

.k-split-button.k-button-group .k-button:active, .k-split-button.k-button-group .k-button.k-state-active {
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }

.k-button.k-outline {
  border-color: currentColor;
  color: var(--sg-text-color, #000000);
  background: none;
  box-shadow: none; }
  .k-button.k-outline:hover, .k-button.k-outline.k-state-hover {
    border-color: #656565;
    color: #ffffff;
    background-color: #656565;
    background-image: none; }
  .k-button.k-outline:focus, .k-button.k-outline.k-state-focused {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }
  .k-button.k-outline:active, .k-button.k-outline.k-state-active {
    border-color: #656565;
    color: #ffffff;
    background-color: #656565;
    background-image: none; }
  .k-button.k-outline.k-state-selected {
    border-color: #656565;
    color: #ffffff;
    background-color: #656565;
    background-image: none; }

.k-button.k-primary.k-outline {
  border-color: currentColor;
  color: #0735cc;
  background: none;
  box-shadow: none; }
  .k-button.k-primary.k-outline:hover, .k-button.k-primary.k-outline.k-state-hover {
    border-color: #0735cc;
    color: #ffffff;
    background-color: #0735cc;
    background-image: none; }
  .k-button.k-primary.k-outline:focus, .k-button.k-primary.k-outline.k-state-focused {
    box-shadow: 0 3px 4px 0 rgba(82, 160, 255, 0.4); }
  .k-button.k-primary.k-outline:active, .k-button.k-primary.k-outline.k-state-active {
    border-color: #0735cc;
    color: #ffffff;
    background-color: #0735cc;
    background-image: none;
    box-shadow: none; }
  .k-button.k-primary.k-outline.k-state-selected {
    border-color: #0735cc;
    color: #ffffff;
    background-color: #0735cc;
    background-image: none;
    box-shadow: none; }

.k-button.k-flat, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button, .k-calendar .k-calendar-header .k-button,
.k-button-group .k-button.k-flat,
.k-button-group .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button,
.k-button-group .k-calendar .k-calendar-header .k-button, .k-calendar .k-calendar-header
.k-button-group .k-button,
.k-button.k-bare,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button,
.k-button-group
.k-button.k-bare,
.k-button-group .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button {
  color: inherit;
  background: none; }

.k-button.k-flat::after, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button::after, .k-calendar .k-calendar-header .k-button::after,
.k-button.k-bare::after,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button::after {
  display: block; }

.k-button.k-flat:focus::after, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button:focus::after, .k-calendar .k-calendar-header .k-button:focus::after, .k-button.k-flat.k-state-focused::after, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button.k-state-focused::after, .k-calendar .k-calendar-header .k-state-focused.k-button::after,
.k-button.k-bare:focus::after,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:focus::after,
.k-button.k-bare.k-state-focused::after,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button.k-state-focused::after {
  box-shadow: inset 0 0 0 2px currentColor;
  opacity: .12; }

.k-button.k-primary.k-flat, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button.k-primary, .k-calendar .k-calendar-header .k-primary.k-button, .k-button.k-primary.k-flat:hover, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button.k-primary:hover, .k-calendar .k-calendar-header .k-primary.k-button:hover, .k-button.k-primary.k-flat.k-state-hover, .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button.k-primary.k-state-hover, .k-calendar .k-calendar-header .k-primary.k-state-hover.k-button,
.k-button-group .k-button.k-primary.k-flat,
.k-button-group .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button.k-primary,
.k-button-group .k-calendar .k-calendar-header .k-primary.k-button, .k-calendar .k-calendar-header
.k-button-group .k-primary.k-button,
.k-button.k-primary.k-bare,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button.k-primary,
.k-button.k-primary.k-bare:hover,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button.k-primary:hover,
.k-button.k-primary.k-bare.k-state-hover,
.k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button.k-primary.k-state-hover,
.k-button-group
.k-button.k-primary.k-bare,
.k-button-group .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button.k-primary {
  color: #0735cc;
  background: none; }

.k-action-buttons {
  border-width: 1px 0 0;
  border-style: solid;
  border-color: inherit;
  display: flex;
  flex-direction: row;
  clear: both; }
  .k-action-buttons .k-button {
    border-radius: 0;
    padding: 12px 16px;
    border-width: 0;
    border-color: inherit;
    color: inherit;
    background: none;
    flex: 1 1 auto; }
  .k-action-buttons .k-button + .k-button {
    border-left-width: 1px; }
  .k-rtl .k-action-buttons .k-button + .k-button,
  [dir="rtl"] .k-action-buttons .k-button + .k-button {
    border-left-width: 0;
    border-right-width: 1px;
    border-right-style: solid;
    margin-left: 0; }

.k-action-buttons {
  border-color: rgba(0, 0, 0, 0.08); }
  .k-action-buttons .k-button {
    color: inherit; }
    .k-action-buttons .k-button:hover, .k-action-buttons .k-button.k-state-hover {
      border-color: inherit; }
    .k-action-buttons .k-button:focus, .k-action-buttons .k-button.k-state-focused {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
    .k-action-buttons .k-button:active, .k-action-buttons .k-button.k-state-active {
      border-color: inherit; }
  .k-action-buttons .k-primary {
    color: #0735cc; }
    .k-action-buttons .k-primary:hover, .k-action-buttons .k-primary.k-state-hover {
      border-color: inherit; }
      .k-action-buttons .k-primary:hover:focus, .k-action-buttons .k-primary:hover.k-state-focused, .k-action-buttons .k-primary.k-state-hover:focus, .k-action-buttons .k-primary.k-state-hover.k-state-focused {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
    .k-action-buttons .k-primary:focus, .k-action-buttons .k-primary.k-state-focused {
      box-shadow: inset 0 0 0 2px rgba(237, 237, 237, 0.3); }
    .k-action-buttons .k-primary:active, .k-action-buttons .k-primary.k-state-active {
      border-color: inherit; }

.k-edit-form-container {
  width: 400px;
  min-width: 400px;
  border-color: inherit;
  position: relative; }

.k-edit-form-container .k-tabstrip-wrapper {
  margin: -16px -16px; }

.k-edit-form-container .k-tabstrip.k-root-tabs {
  margin-bottom: 16px; }

.k-edit-form-container .k-tabstrip .k-tabstrip-items {
  padding: 16px 16px 0; }

.k-edit-form-container .k-tabstrip .k-content {
  padding: 16px 16px;
  border-width: 0; }

.k-edit-buttons {
  padding: 8px 8px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: inherit;
  text-align: right;
  clear: both; }

.k-edit-buttons .k-button + .k-button {
  margin-left: 0.5em; }

.k-edit-form-container .k-edit-buttons {
  margin: 16px -16px -16px;
  padding: 16px 16px; }

.k-popup-edit-form > .k-action-buttons,
.k-edit-form-container .k-action-buttons {
  margin: 1em -16px -16px; }

.k-edit-label {
  margin: 0 0 1em 0;
  padding: 5px 0;
  width: 30%;
  line-height: 1.42857;
  text-align: right;
  float: left;
  clear: both; }

.k-edit-field {
  margin: 0 0 1em 0;
  width: 65%;
  float: right;
  clear: right; }

.k-edit-field > .k-widget,
.k-edit-field > .k-textbox,
.k-edit-field > .k-input.k-textbox {
  width: 100%;
  box-sizing: border-box; }

.k-edit-field > .k-colorpicker {
  width: auto; }

.k-edit-field input[type="radio"]:not(.k-radio),
.k-edit-field input[type="checkbox"]:not(.k-checkbox) {
  margin-right: .4ex; }

.k-edit-field .k-radio-label,
.k-edit-field .k-checkbox-label {
  margin-right: 1em; }

.k-edit-field .k-checkbox-label {
  margin-top: 5px; }

.k-edit-field .k-reset > li + li {
  margin-top: 0.5em; }

.k-edit-field .k-reset .k-widget {
  margin: 0 .4ex 0 1ex; }

.k-rtl .k-edit-buttons {
  text-align: left; }
  .k-rtl .k-edit-buttons .k-button + .k-button {
    margin-left: 0;
    margin-right: .5em; }

.k-window {
  border-radius: 0;
  padding: 0;
  border-width: 0;
  border-style: solid;
  display: inline-flex;
  flex-direction: column;
  position: absolute;
  z-index: 10002; }
  .k-window .k-overlay {
    position: absolute;
    opacity: 0; }

.k-window.k-window-maximized {
  max-width: 100vw;
  max-height: 100vh;
  box-shadow: none; }

.k-window-sm {
  width: 300px; }

.k-window-md {
  width: 800px; }

.k-window-lg {
  width: 1200px; }

.k-window-titlebar {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 12px 16px;
  border-width: 0 0 1px;
  border-style: solid;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: center; }

.k-window-title {
  margin: -.15em 0;
  font-size: 19px;
  line-height: 1.3;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;
  flex: 1; }

.k-window-actions {
  margin: -5px;
  line-height: 1;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: center;
  vertical-align: top; }

.k-window-content,
.k-prompt-container {
  padding: 16px 16px;
  border: 0;
  color: inherit;
  background: none;
  outline: 0;
  overflow: auto;
  position: relative;
  flex: 1 1 auto; }

.k-window-content + .k-prompt-container {
  margin-top: -8px; }

.k-window-iframecontent {
  padding: 0;
  overflow: visible; }
  .k-window-iframecontent .k-content-frame {
    vertical-align: top;
    border: 0;
    width: 100%;
    height: 100%; }

.k-window {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.06); }

.k-window.k-state-focused {
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.3); }

.k-window-titlebar {
  border-color: inherit;
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6;
  background-clip: padding-box; }
  .k-ie11 .k-window-titlebar,
  .k-edge12 .k-window-titlebar,
  .k-edge13 .k-window-titlebar {
    background-clip: border-box; }

.k-dialog-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001; }
  .k-dialog-wrapper .k-dialog {
    position: relative; }

.k-dialog {
  padding: 0;
  position: fixed;
  box-sizing: border-box; }
  .k-dialog.k-dialog-centered {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%; }

.k-dialog-close {
  align-self: flex-end; }

.k-dialog-buttongroup {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 8px 8px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: inherit;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden; }
  .k-dialog-buttongroup .k-button {
    width: auto !important;
    max-width: 100%; }
  .k-dialog-buttongroup .k-button ~ .k-button {
    margin-left: 8px; }
    .k-rtl .k-dialog-buttongroup .k-button ~ .k-button,
    [dir="rtl"] .k-dialog-buttongroup .k-button ~ .k-button {
      margin-left: 0;
      margin-right: 8px; }

.k-dialog-button-layout-stretched {
  padding: 0;
  align-items: stretch; }
  .k-dialog-button-layout-stretched .k-button {
    border-radius: 0;
    padding: 12px 16px;
    border-width: 0;
    text-overflow: ellipsis;
    flex: 1 0 0%;
    display: inline-block;
    overflow: hidden; }
  .k-dialog-button-layout-stretched .k-button ~ .k-button {
    margin: 0;
    border-left-width: 1px; }
    .k-rtl .k-dialog-button-layout-stretched .k-button ~ .k-button,
    [dir="rtl"] .k-dialog-button-layout-stretched .k-button ~ .k-button {
      margin: 0;
      border-left-width: 0;
      border-right-width: 1px; }

.k-window-sm .k-dialog-button-layout-stretched {
  flex-direction: column; }
  .k-window-sm .k-dialog-button-layout-stretched .k-button {
    flex: 0 0 auto;
    padding: 8px 8px; }
  .k-window-sm .k-dialog-button-layout-stretched .k-button ~ .k-button {
    border-width: 0;
    border-top-width: 1px; }

.k-window-md .k-dialog-button-layout-stretched .k-button {
  padding: 12px 12px; }

.k-no-flexbox .k-dialog-buttongroup {
  display: block;
  text-align: right; }

.k-no-flexbox .k-window-sm .k-dialog-button-layout-stretched .k-button {
  display: block; }

.k-no-flexbox .k-rtl .k-dialog-buttongroup,
.k-no-flexbox [dir="rtl"] .k-dialog-buttongroup {
  text-align: left; }

.k-dialog-titlebar {
  border-color: inherit;
  color: #ffffff;
  background-color: #0735cc; }

.k-dialog-button-layout-stretched .k-button {
  border-color: inherit; }

.k-dialog-button-layout-stretched .k-button:not(:hover):not(.k-state-hover):not(:active):not(.k-state-active) {
  color: inherit;
  background: none; }

.k-dialog-button-layout-stretched .k-primary:not(:hover):not(.k-state-hover):not(:active):not(.k-state-active) {
  color: #0735cc; }

.k-dialog-button-layout-stretched .k-button:focus,
.k-dialog-button-layout-stretched .k-button.k-state-focused {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-dialog-button-layout-stretched .k-button.k-primary:focus,
.k-dialog-button-layout-stretched .k-button.k-primary.k-state-focused {
  box-shadow: inset 0 0 0 2px rgba(82, 160, 255, 0.3); }

.k-pane-wrapper {
  position: relative;
  font-size: 14px; }
  .k-pane-wrapper .k-pane {
    width: 100%;
    height: 100%;
    user-select: none;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow-x: hidden; }
    .k-pane-wrapper .k-pane * {
      background-clip: border-box; }
  .k-pane-wrapper .k-view {
    top: 0;
    left: 0;
    position: absolute;
    border: 0;
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
    vertical-align: top; }
  .k-pane-wrapper .k-content {
    min-height: 1px;
    flex: 1;
    align-items: stretch;
    display: block;
    width: auto;
    overflow: hidden;
    position: relative; }

.k-pane-wrapper > div.k-pane {
  box-shadow: none;
  font-weight: normal; }

.k-pane-wrapper .k-popup-edit-form .k-content,
.k-pane-wrapper .k-grid-edit-form .k-content,
.k-pane-wrapper .k-grid-column-menu .k-content,
.k-pane-wrapper .k-grid-filter-menu .k-content {
  overflow-y: auto; }
  .k-pane-wrapper .k-popup-edit-form .k-content > .k-scroll-container,
  .k-pane-wrapper .k-grid-edit-form .k-content > .k-scroll-container,
  .k-pane-wrapper .k-grid-column-menu .k-content > .k-scroll-container,
  .k-pane-wrapper .k-grid-filter-menu .k-content > .k-scroll-container {
    position: absolute;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box; }

.k-pane-wrapper .k-grid-filter-menu .k-filter-selected-items {
  margin: 1em;
  font-weight: normal; }

.k-pane-wrapper .k-grid-edit-form .k-popup-edit-form,
.k-pane-wrapper .k-grid-edit-form .k-edit-form-container {
  width: auto;
  min-width: auto; }

.k-grid-mobile {
  border-width: 0; }
  .k-grid-mobile .k-resize-handle-inner::before {
    content: "\e01e";
    position: absolute;
    font: 16px/1 "WebComponentsIcons";
    top: calc(50% - 1px);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: .2em; }
  .k-grid-mobile .k-edit-cell > input,
  .k-grid-mobile .k-edit-cell > select,
  .k-grid-mobile .k-grid-edit-row > td > input,
  .k-grid-mobile .k-grid-edit-row > td > select {
    width: 100%;
    box-sizing: border-box; }
  .k-grid-mobile .k-header a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none; }

.k-pane-wrapper .k-scheduler-edit-form .k-recur-items-wrap {
  width: 100%;
  margin: -1px 0; }

.k-pane-wrapper .k-scheduler-edit-form .k-scheduler-recur-end-wrap {
  white-space: nowrap; }

.k-pane-wrapper .k-scheduler-edit-form textarea.k-textbox {
  width: 100%;
  min-height: 4em;
  resize: vertical; }

.k-pane-wrapper .k-scheduler-edit-form .k-edit-buttons {
  border-width: 0; }

.k-scheduler-mobile {
  border-width: 0; }
  .k-scheduler-mobile th {
    font-weight: normal; }
  .k-scheduler-mobile .k-event:hover .k-resize-handle {
    visibility: hidden; }
  .k-scheduler-mobile .k-scheduler-toolbar {
    display: flex;
    justify-content: space-between; }
    .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-tools {
      margin: 0; }
      .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-tools .k-button {
        padding: 4px; }
        .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-tools .k-button span {
          margin: 0; }
    .k-scheduler-mobile .k-scheduler-toolbar:first-child {
      padding: .5em 1em; }
    .k-scheduler-mobile .k-scheduler-toolbar .k-i-calendar {
      display: inline-block; }
    .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation {
      width: 100%;
      display: flex;
      justify-content: space-between;
      margin: 0; }
      .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation .k-nav-prev,
      .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation .k-nav-current,
      .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation .k-nav-next {
        border: 0;
        background: none;
        display: flex;
        line-height: 1.5;
        align-items: center;
        justify-content: space-evenly; }
      .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation .k-y-date-format {
        font-size: 9px; }
      .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation .k-nav-current {
        flex-direction: column; }
  .k-scheduler-mobile .k-scheduler-footer {
    display: flex;
    justify-content: space-between; }
  .k-scheduler-mobile .k-scheduler-monthview .k-hidden {
    height: 40px; }
  .k-scheduler-mobile .k-scheduler-monthview .k-scheduler-table td {
    height: 40px;
    vertical-align: top;
    text-align: center; }
  .k-scheduler-mobile .k-scheduler-monthview .k-events-container {
    position: absolute;
    text-align: center;
    height: 6px;
    line-height: 6px; }
  .k-scheduler-mobile .k-scheduler-monthview .k-event {
    position: static;
    padding: 4px;
    border-radius: 50%;
    display: inline-block;
    width: 4px;
    height: 4px;
    min-height: 0;
    margin: 1px; }
  .k-scheduler-mobile .k-scheduler-dayview .k-mobile-header .k-scheduler-times table tr:first-child {
    display: none; }
  .k-scheduler-mobile .k-scheduler-dayview .k-mobile-header .k-scheduler-header table:not(.k-scheduler-header-all-day) tr:last-child {
    display: none; }
  .k-scheduler-mobile .k-scheduler-header-wrap > div {
    overflow: visible; }
  .k-scheduler-mobile .k-scheduler-agendaview .k-mobile-header {
    display: none; }
  .k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table {
    table-layout: auto; }
    .k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table .k-scheduler-groupcolumn {
      width: 1%; }
    .k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table td {
      white-space: normal; }
  .k-scheduler-mobile .k-mobile-header .k-scheduler-table td,
  .k-scheduler-mobile .k-mobile-header .k-scheduler-table th {
    height: 1.5em; }
  .k-scheduler-mobile .k-time-text,
  .k-scheduler-mobile .k-time-period {
    display: block;
    line-height: 1; }
  .k-scheduler-mobile .k-time-period {
    font-size: .7em; }
  .k-scheduler-mobile .k-scheduler-table td,
  .k-scheduler-mobile .k-scheduler-table th {
    height: 2em;
    vertical-align: middle; }
  .k-scheduler-mobile .k-scheduler-datecolumn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .k-scheduler-mobile .k-task {
    display: flex;
    align-items: center; }
    .k-scheduler-mobile .k-task .k-scheduler-mark {
      border-radius: 50%; }
    .k-scheduler-mobile .k-task .k-i-reload {
      font-size: 1em;
      margin-right: .5em; }
    .k-scheduler-mobile .k-task .k-scheduler-task-text {
      flex: 1 1 0%; }
  .k-scheduler-mobile .k-scheduler-times .k-scheduler-group-cell,
  .k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn,
  .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell,
  .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn {
    vertical-align: top; }
    .k-scheduler-mobile .k-scheduler-times .k-scheduler-group-cell .k-scheduler-group-text,
    .k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn .k-scheduler-group-text,
    .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell .k-scheduler-group-text,
    .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn .k-scheduler-group-text {
      writing-mode: tb;
      transform: rotate(180deg);
      white-space: nowrap; }
  .k-scheduler-mobile .k-scrollbar-h tr + tr .k-scheduler-times {
    border-bottom-width: 0; }

.k-pane-wrapper .k-grid-edit-form > .k-header,
.k-pane-wrapper .k-grid-column-menu > .k-header,
.k-pane-wrapper .k-grid-filter-menu > .k-header,
.k-pane-wrapper .k-scheduler-edit-form > .k-header {
  display: flex;
  justify-content: space-between;
  padding: .3em .6em;
  width: auto;
  line-height: 2em; }
  .k-pane-wrapper .k-grid-edit-form > .k-header .k-header-done .k-icon,
  .k-pane-wrapper .k-grid-edit-form > .k-header .k-header-cancel .k-icon,
  .k-pane-wrapper .k-grid-column-menu > .k-header .k-header-done .k-icon,
  .k-pane-wrapper .k-grid-column-menu > .k-header .k-header-cancel .k-icon,
  .k-pane-wrapper .k-grid-filter-menu > .k-header .k-header-done .k-icon,
  .k-pane-wrapper .k-grid-filter-menu > .k-header .k-header-cancel .k-icon,
  .k-pane-wrapper .k-scheduler-edit-form > .k-header .k-header-done .k-icon,
  .k-pane-wrapper .k-scheduler-edit-form > .k-header .k-header-cancel .k-icon {
    font-size: 1.5em; }

.k-pane-wrapper .k-grid-edit-row .k-textbox {
  box-sizing: border-box; }

.k-pane-wrapper .k-mobile-list,
.k-pane-wrapper .k-mobile-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  border-radius: 0;
  background: none; }

.k-pane-wrapper .k-mobile-list.k-column-menu > ul > li,
.k-pane-wrapper .k-mobile-list.k-column-menu > ul > li > ul, .k-pane-wrapper .k-mobile-list.k-filter-menu > ul > li,
.k-pane-wrapper .k-mobile-list.k-filter-menu > ul > li > ul {
  margin: 1em 0; }

.k-pane-wrapper .k-mobile-list.k-column-menu > ul > li .k-list-title,
.k-pane-wrapper .k-mobile-list.k-column-menu > ul > li .k-filter-help-text, .k-pane-wrapper .k-mobile-list.k-filter-menu > ul > li .k-list-title,
.k-pane-wrapper .k-mobile-list.k-filter-menu > ul > li .k-filter-help-text {
  display: block;
  padding: 1em 1em 0 1em; }

.k-pane-wrapper .k-mobile-list.k-popup-edit-form > ul {
  margin-top: 1em; }

.k-pane-wrapper .k-mobile-list.k-scheduler-edit-form .k-content > ul {
  margin: 1em 0; }

.k-pane-wrapper .k-mobile-list .k-item > * {
  line-height: normal; }

.k-pane-wrapper .k-mobile-list .k-item,
.k-pane-wrapper .k-mobile-list .k-item > .k-link,
.k-pane-wrapper .k-mobile-list .k-item > .k-label {
  display: flex;
  align-items: center;
  position: relative;
  list-style-type: none;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.6em;
  overflow: visible;
  text-decoration: none; }

.k-pane-wrapper .k-mobile-list .k-item > .k-link,
.k-pane-wrapper .k-mobile-list .k-item > .k-label {
  padding: .5em 1em;
  flex: 1 1 auto;
  max-width: 100%; }

.k-pane-wrapper .k-mobile-list .k-item .k-item-title,
.k-pane-wrapper .k-mobile-list .k-item .k-filter-input-text,
.k-pane-wrapper .k-mobile-list .k-item .k-filter-operator-text,
.k-pane-wrapper .k-mobile-list .k-item .k-filter-logic-and-text,
.k-pane-wrapper .k-mobile-list .k-item .k-filter-logic-or-text {
  width: 40%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.42857; }

.k-pane-wrapper .k-mobile-list .k-item.k-recur-view {
  align-items: normal;
  flex-direction: column; }

.k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-link,
.k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-label {
  justify-content: flex-start; }
  .k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-link > .k-item-title,
  .k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-label > .k-item-title {
    margin-left: .5em; }

.k-pane-wrapper .k-mobile-list.k-column-menu .k-item.k-filter-item .k-filterable::before {
  content: "\e014";
  position: absolute;
  right: .5em;
  font: 1.5em/1 "WebComponentsIcons"; }

.k-pane-wrapper .k-mobile-list.k-column-menu .k-columns-item .k-item {
  padding: .5em 1em;
  justify-content: space-between; }
  .k-pane-wrapper .k-mobile-list.k-column-menu .k-columns-item .k-item .k-label {
    flex: 0 1 auto;
    padding: 0;
    pointer-events: none; }

.k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-link,
.k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-label {
  justify-content: space-between; }
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-link > input,
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-link > select,
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-label > input,
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-label > select {
    min-width: 50%;
    max-width: 50%;
    font-size: 100%; }
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-link .k-check,
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-link .k-radio-label,
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-label .k-check,
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-item > .k-label .k-radio-label {
    flex: 0 1 auto;
    min-width: 0; }

.k-pane-wrapper .k-mobile-list.k-filter-menu .k-space-right {
  border: 0;
  padding: 0 10px;
  background: 0;
  display: flex;
  align-items: center; }
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-space-right > input {
    width: 100%;
    height: 2em;
    padding: 1px 0;
    margin: 0;
    border-radius: 3px;
    text-indent: 1em;
    border-width: 1px;
    border-style: solid; }
  .k-pane-wrapper .k-mobile-list.k-filter-menu .k-space-right > .k-i-zoom {
    right: 15px;
    z-index: 2; }

.k-pane-wrapper .k-mobile-list.k-filter-menu .k-filter-tools {
  margin: 1em;
  display: flex;
  justify-content: space-between; }

.k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label {
  justify-content: space-between; }
  .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div,
  .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div .k-mobiletimezoneeditor {
    width: 50%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    font-size: 100%;
    text-align: end; }
  .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div select,
  .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div input:not([type="checkbox"]),
  .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div .k-mobiletimezoneeditor {
    flex: 1 1 auto;
    min-width: 100%;
    max-width: 100%; }
  .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div.k-recur-editor-wrap {
    display: flex; }
    .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div.k-recur-editor-wrap .k-recur-editor-text {
      margin-left: .5em; }
    .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div.k-recur-editor-wrap select,
    .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div.k-recur-editor-wrap input:not([type="checkbox"]) {
      min-width: 50%; }
  .k-pane-wrapper .k-mobile-list.k-popup-edit-form .k-item > .k-label > div .k-tooltip-validation {
    top: 100%;
    left: 0; }

.k-pane-wrapper .k-mobile-list .k-multicheck-wrap,
.k-pane-wrapper .k-mobile-list .k-multicheck-bool-wrap {
  max-height: none; }
  .k-pane-wrapper .k-mobile-list .k-multicheck-wrap .k-item .k-link,
  .k-pane-wrapper .k-mobile-list .k-multicheck-wrap .k-item .k-label,
  .k-pane-wrapper .k-mobile-list .k-multicheck-bool-wrap .k-item .k-link,
  .k-pane-wrapper .k-mobile-list .k-multicheck-bool-wrap .k-item .k-label {
    white-space: normal;
    flex-direction: row-reverse; }
  .k-pane-wrapper .k-mobile-list .k-multicheck-wrap .k-item + .k-item,
  .k-pane-wrapper .k-mobile-list .k-multicheck-bool-wrap .k-item + .k-item {
    margin: 0; }

.k-pane-wrapper .k-mobile-list .k-state-disabled {
  opacity: 1; }
  .k-pane-wrapper .k-mobile-list .k-state-disabled > * {
    opacity: .7; }

.k-pane-wrapper .k-check[type="radio"],
.k-pane-wrapper .k-check[type="checkbox"] {
  appearance: none;
  background-color: transparent; }

.k-pane-wrapper .k-mobile-list .k-link .k-check,
.k-pane-wrapper .k-mobile-list .k-label .k-check {
  border-width: 1px;
  border-style: solid;
  box-sizing: content-box;
  font-size: inherit;
  outline: 0;
  width: 1em;
  height: 1em;
  margin-right: 1em; }

.k-pane-wrapper .k-pager-wrap.k-pager-sm {
  justify-content: center; }
  .k-pane-wrapper .k-pager-wrap.k-pager-sm .k-pager-refresh {
    display: none; }
  .k-pane-wrapper .k-pager-wrap.k-pager-sm .k-current-page .k-link {
    line-height: .9em; }

.k-ie .k-pane-wrapper .k-scheduler .k-scheduler-toolbar,
.k-ie .k-pane-wrapper .k-scheduler .k-scheduler-footer {
  line-height: 2em; }

.k-ie .k-pane-wrapper .k-link .k-check,
.k-ie .k-pane-wrapper .k-label .k-check {
  text-indent: -9999px;
  width: 1.01em;
  height: 1em; }

.k-ie .k-pane-wrapper .k-grid .k-icon {
  text-indent: 0; }

.k-rtl .k-pane-wrapper .k-grid-edit-form > .k-header,
.k-rtl .k-pane-wrapper .k-grid-column-menu > .k-header,
.k-rtl .k-pane-wrapper .k-grid-filter-menu > .k-header,
.k-rtl .k-pane-wrapper .k-scheduler-edit-form > .k-header, .k-pane-wrapper[dir="rtl"] .k-grid-edit-form > .k-header,
.k-pane-wrapper[dir="rtl"] .k-grid-column-menu > .k-header,
.k-pane-wrapper[dir="rtl"] .k-grid-filter-menu > .k-header,
.k-pane-wrapper[dir="rtl"] .k-scheduler-edit-form > .k-header,
[dir="rtl"] .k-pane-wrapper .k-grid-edit-form > .k-header,
[dir="rtl"] .k-pane-wrapper .k-grid-column-menu > .k-header,
[dir="rtl"] .k-pane-wrapper .k-grid-filter-menu > .k-header,
[dir="rtl"] .k-pane-wrapper .k-scheduler-edit-form > .k-header {
  flex-direction: row-reverse; }

.k-rtl .k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-link > .k-item-title,
.k-rtl .k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-label > .k-item-title, .k-pane-wrapper[dir="rtl"] .k-mobile-list.k-column-menu .k-item .k-link > .k-item-title,
.k-pane-wrapper[dir="rtl"] .k-mobile-list.k-column-menu .k-item .k-label > .k-item-title,
[dir="rtl"] .k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-link > .k-item-title,
[dir="rtl"] .k-pane-wrapper .k-mobile-list.k-column-menu .k-item .k-label > .k-item-title {
  margin-left: 0;
  margin-right: .5em; }

.k-rtl .k-pane-wrapper .k-mobile-list.k-column-menu .k-item.k-filter-item .k-filterable::before, .k-pane-wrapper[dir="rtl"] .k-mobile-list.k-column-menu .k-item.k-filter-item .k-filterable::before,
[dir="rtl"] .k-pane-wrapper .k-mobile-list.k-column-menu .k-item.k-filter-item .k-filterable::before {
  content: "\e016";
  right: auto;
  left: .5em; }

.k-rtl .k-pane-wrapper .k-mobile-list.k-filter-menu .k-space-right > .k-i-zoom, .k-pane-wrapper[dir="rtl"] .k-mobile-list.k-filter-menu .k-space-right > .k-i-zoom,
[dir="rtl"] .k-pane-wrapper .k-mobile-list.k-filter-menu .k-space-right > .k-i-zoom {
  left: 15px;
  right: auto; }

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar > ul > li, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar > ul > li,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar > ul > li {
  border: 0; }

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev,
.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev,
.k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next {
  transform: scaleX(-1); }

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-task .k-i-reload, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-task .k-i-reload,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-task .k-i-reload {
  margin-left: .5em;
  margin-right: 0; }

.k-rtl .k-pane-wrapper .k-scheduler-edit-form .k-item .k-i-arrow-chevron-right, .k-rtl .k-pane-wrapper .k-scheduler-edit-form .k-item .k-i-arrowhead-e::before, .k-pane-wrapper[dir="rtl"] .k-scheduler-edit-form .k-item .k-i-arrow-chevron-right, .k-pane-wrapper[dir="rtl"] .k-scheduler-edit-form .k-item .k-i-arrowhead-e::before,
[dir="rtl"] .k-pane-wrapper .k-scheduler-edit-form .k-item .k-i-arrow-chevron-right,
[dir="rtl"] .k-pane-wrapper .k-scheduler-edit-form .k-item .k-i-arrowhead-e::before {
  transform: scaleX(-1); }

.k-pane-wrapper .k-pane > .k-view > .k-content {
  background-position: 50% 50%;
  background-color: #f6f6f6; }

.k-pane-wrapper .k-pane .k-grid-mobile .k-column-active + th.k-header {
  border-left-color: #656565; }

.k-pane-wrapper .k-pane .k-grid-mobile .k-resize-handle-inner::before {
  background-color: #f6f6f6; }

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-nav-current {
  color: #0735cc; }

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-times,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-groupcolumn,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-mobile-scheduler-agendadate {
  color: inherit; }

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-time-period,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-mobile-scheduler-agendaweekday {
  color: #b9b9b9; }

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-times,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header-wrap,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-datecolumn,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-groupcolumn,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-group-cell,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header-all-day {
  background-color: #f6f6f6; }

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-other-month {
  background-color: #fafafa; }

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-tools > li {
  display: inline-block;
  background-color: inherit; }

.k-pane-wrapper .k-pane .k-grid-edit-form .k-header,
.k-pane-wrapper .k-pane .k-grid-column-menu .k-header,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-header,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-header {
  background-color: #0735cc; }
  .k-pane-wrapper .k-pane .k-grid-edit-form .k-header,
  .k-pane-wrapper .k-pane .k-grid-edit-form .k-header .k-link,
  .k-pane-wrapper .k-pane .k-grid-column-menu .k-header,
  .k-pane-wrapper .k-pane .k-grid-column-menu .k-header .k-link,
  .k-pane-wrapper .k-pane .k-grid-filter-menu .k-header,
  .k-pane-wrapper .k-pane .k-grid-filter-menu .k-header .k-link,
  .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-header,
  .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-header .k-link {
    color: white; }

.k-pane-wrapper .k-pane .k-grid-edit-form .k-item,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-link,
.k-pane-wrapper .k-pane .k-grid-column-menu .k-item,
.k-pane-wrapper .k-pane .k-grid-column-menu .k-link,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-item,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-link,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-item,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-link {
  color: var(--sg-text-color, #000000); }

.k-pane-wrapper .k-pane .k-grid-edit-form .k-clear,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-select-all,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-scheduler-resetSeries,
.k-pane-wrapper .k-pane .k-grid-column-menu .k-clear,
.k-pane-wrapper .k-pane .k-grid-column-menu .k-select-all,
.k-pane-wrapper .k-pane .k-grid-column-menu .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-grid-column-menu .k-scheduler-resetSeries,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-clear,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-select-all,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-scheduler-resetSeries,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-clear,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-select-all,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-scheduler-resetSeries {
  color: #0735cc; }

.k-pane-wrapper .k-pane .k-column-menu .k-state-selected .k-link {
  color: #0735cc; }

.k-pane-wrapper .k-pane .k-filter-menu .k-check,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-check {
  color: #0735cc;
  border-color: #0735cc; }
  .k-pane-wrapper .k-pane .k-filter-menu .k-check:focus, .k-pane-wrapper .k-pane .k-filter-menu .k-check.k-state-focused,
  .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-check:focus,
  .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-check.k-state-focused {
    box-shadow: 0 3px 4px 0 rgba(82, 160, 255, 0.4); }

.k-pane-wrapper .k-pane .k-mobile-list .k-item {
  background-color: var(--sg-bg-color, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  .k-pane-wrapper .k-pane .k-mobile-list .k-item > .k-link:active,
  .k-pane-wrapper .k-pane .k-mobile-list .k-item > .k-label:active,
  .k-pane-wrapper .k-pane .k-mobile-list .k-item .k-edit-label.k-check:active,
  .k-pane-wrapper .k-pane .k-mobile-list .k-item .k-recur-view .k-check:active {
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-color-legacy-ededed, #ededed);
    border-color: rgba(0, 0, 0, 0.15); }

.k-pane-wrapper .k-pane .k-mobile-list .k-item .k-state-selected {
  background-color: #0735cc;
  border-top-color: rgba(0, 0, 0, 0.1); }

.k-pane-wrapper .k-pane .k-mobile-list .k-item:first-child, .k-pane-wrapper .k-pane .k-mobile-list .k-item.k-clear-wrap {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.08); }

.k-pane-wrapper .k-pane .k-mobile-list.k-filter-menu .k-space-right > input {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08); }
  .k-pane-wrapper .k-pane .k-mobile-list.k-filter-menu .k-space-right > input:focus {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }

.k-pane-wrapper .k-pane .k-mobile-list .k-check:checked {
  font-family: "WebComponentsIcons"; }
  .k-pane-wrapper .k-pane .k-mobile-list .k-check:checked::before {
    content: "\e118"; }

.k-pane-wrapper .k-pane .k-mobile-list .k-list-title,
.k-pane-wrapper .k-pane .k-mobile-list .k-filter-help-text,
.k-pane-wrapper .k-pane .k-mobile-list .k-filter-selected-items {
  color: var(--sg-text-color, #000000); }

.k-grid {
  display: flex;
  flex-direction: column;
  position: relative; }
  .k-grid.k-display-block {
    display: block; }
  .k-grid .k-grid-container {
    display: flex;
    flex: 1 1 auto;
    overflow: hidden;
    position: relative; }
  .k-grid .k-grid-aria-root {
    border-color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow: hidden; }
  .k-grid table {
    margin: 0;
    width: 100%;
    max-width: none;
    border-width: 0;
    border-color: inherit;
    border-collapse: separate;
    border-spacing: 0;
    empty-cells: show;
    outline: 0; }
  .k-grid thead,
  .k-grid tbody,
  .k-grid tfoot {
    text-align: left;
    border-color: inherit; }
  .k-grid tr {
    border-color: inherit; }
  .k-grid th,
  .k-grid td {
    padding: 8px 12px;
    border-style: solid;
    border-color: inherit;
    outline: 0;
    font-weight: inherit;
    text-align: inherit;
    overflow: hidden;
    text-overflow: ellipsis; }
    .k-grid th:first-child,
    .k-grid td:first-child {
      border-left-width: 0; }
    .k-grid th:focus,
    .k-grid td:focus {
      outline: none; }
  .k-grid th {
    padding: 8px 12px;
    border-width: 0 0 1px 1px;
    white-space: nowrap; }
  .k-grid td {
    border-width: 0 0 0 1px;
    vertical-align: middle; }
  .k-grid a {
    color: inherit;
    text-decoration: none; }
  .k-grid a:hover {
    text-decoration: none; }
  .k-grid table,
  .k-grid .k-grid-header-wrap {
    box-sizing: content-box; }
  .k-grid .k-group-col,
  .k-grid .k-hierarchy-col {
    padding: 0;
    width: 32px; }
  .k-grid .k-grouping-row p {
    margin: 0;
    display: flex;
    align-items: center;
    align-content: center; }
  .k-grid .k-grouping-row td {
    overflow: visible; }
  .k-grid .k-grouping-row + tr td {
    border-top-width: 1px; }
  .k-grid .k-grouping-row .k-group-cell,
  .k-grid .k-grouping-row + tr .k-group-cell {
    border-top-width: 0;
    text-overflow: none; }
  .k-grid .k-grouping-row .k-icon {
    margin-left: -4px;
    margin-right: 8px; }
  .k-grid .k-group-footer td {
    border-style: solid;
    border-width: 1px 0; }
  .k-grid .k-group-footer .k-group-cell + td {
    border-left-width: 1px; }
  .k-grid .k-hierarchy-cell {
    text-align: center;
    padding: 0;
    overflow: visible; }
    .k-grid .k-hierarchy-cell > .k-icon {
      padding: 8px 0;
      width: 100%;
      height: 100%;
      display: inline-block;
      outline: 0; }
  .k-grid .k-hierarchy-cell + td {
    border-left-width: 0; }
  .k-grid[dir="rtl"] thead,
  .k-grid[dir="rtl"] tbody,
  .k-grid[dir="rtl"] tfoot,
  .k-rtl .k-grid thead,
  .k-rtl .k-grid tbody,
  .k-rtl .k-grid tfoot {
    text-align: right; }
  .k-grid[dir="rtl"] th,
  .k-rtl .k-grid th {
    white-space: nowrap; }
  .k-grid[dir="rtl"] .k-grid-header-wrap,
  .k-rtl .k-grid .k-grid-header-wrap {
    border-width: 0 0 0 1px; }
  .k-grid[dir="rtl"] .k-group-indicator .k-button.k-bare, .k-grid[dir="rtl"] .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button,
  .k-grid[dir="rtl"] .k-drag-clue .k-button.k-bare,
  .k-grid[dir="rtl"] .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button,
  .k-rtl .k-grid .k-group-indicator .k-button.k-bare,
  .k-rtl .k-grid .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button,
  .k-rtl .k-grid .k-drag-clue .k-button.k-bare,
  .k-rtl .k-grid .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button {
    margin-left: -2px;
    margin-right: 8px; }
  .k-grid[dir="rtl"] .k-group-indicator .k-link .k-icon,
  .k-grid[dir="rtl"] .k-drag-clue .k-link .k-icon,
  .k-rtl .k-grid .k-group-indicator .k-link .k-icon,
  .k-rtl .k-grid .k-drag-clue .k-link .k-icon {
    margin-left: 4px;
    margin-right: -2px; }
  .k-grid[dir="rtl"] .k-group-indicator,
  .k-rtl .k-grid .k-group-indicator {
    margin-right: 0;
    margin-left: 4px; }
  .k-grid[dir="rtl"] .k-group-indicator + .k-group-indicator,
  .k-rtl .k-grid .k-group-indicator + .k-group-indicator {
    margin-right: 4px; }
  .k-grid[dir="rtl"] .k-grid-content-locked,
  .k-grid[dir="rtl"] .k-grid-footer-locked,
  .k-grid[dir="rtl"] .k-grid-header-locked,
  .k-rtl .k-grid .k-grid-content-locked,
  .k-rtl .k-grid .k-grid-footer-locked,
  .k-rtl .k-grid .k-grid-header-locked {
    border-left-width: 1px;
    border-right-width: 0; }
  .k-grid[dir="rtl"] th,
  .k-rtl .k-grid th {
    border-width: 0 1px 1px 0; }
    .k-grid[dir="rtl"] th:first-child,
    .k-rtl .k-grid th:first-child {
      border-right-width: 0; }
  .k-grid[dir="rtl"] td,
  .k-rtl .k-grid td {
    border-width: 0 1px 0 0; }
    .k-grid[dir="rtl"] td:first-child,
    .k-rtl .k-grid td:first-child {
      border-right-width: 0; }
  .k-grid[dir="rtl"] td.k-hierarchy-cell,
  .k-rtl .k-grid td.k-hierarchy-cell {
    border-right-width: 0; }
  .k-grid[dir="rtl"] .k-hierarchy-cell + td,
  .k-rtl .k-grid .k-hierarchy-cell + td {
    border-right-width: 0; }
  .k-grid[dir="rtl"] .k-grid-header,
  .k-grid[dir="rtl"] .k-grid-footer,
  .k-rtl .k-grid .k-grid-header,
  .k-rtl .k-grid .k-grid-footer {
    padding-left: 17px;
    padding-right: 0; }
  .k-grid[dir="rtl"] .k-grid-header .k-header.k-first,
  .k-rtl .k-grid .k-grid-header .k-header.k-first {
    border-left-width: 0;
    border-right-width: 1px; }
  .k-grid[dir="rtl"] .k-grid-header .k-with-icon,
  .k-grid[dir="rtl"] .k-grid-header .k-filterable,
  .k-rtl .k-grid .k-grid-header .k-with-icon,
  .k-rtl .k-grid .k-grid-header .k-filterable {
    padding-left: calc(calc( 10px + 1.42857em) + 4px);
    padding-right: 12px; }
  .k-grid[dir="rtl"] .k-grid-header .k-grid-filter,
  .k-grid[dir="rtl"] .k-grid-header .k-header-column-menu,
  .k-rtl .k-grid .k-grid-header .k-grid-filter,
  .k-rtl .k-grid .k-grid-header .k-header-column-menu {
    right: auto;
    left: 4px; }
  .k-grid[dir="rtl"] .k-filtercell-operator,
  .k-rtl .k-grid .k-filtercell-operator {
    margin-left: 0;
    margin-right: 4px; }
  .k-grid[dir="rtl"] .k-dirty,
  .k-rtl .k-grid .k-dirty {
    border-color: currentColor currentColor transparent transparent;
    left: auto;
    right: 0; }
  .k-grid[dir="rtl"] .k-edit-cell > .k-textbox,
  .k-grid[dir="rtl"] .k-edit-cell > .k-widget,
  .k-grid[dir="rtl"] .k-edit-cell > .text-box,
  .k-grid[dir="rtl"] .k-grid-edit-row > td > .k-textbox,
  .k-grid[dir="rtl"] .k-grid-edit-row > td > .k-widget,
  .k-grid[dir="rtl"] .k-grid-edit-row > td > .text-box,
  .k-rtl .k-grid .k-edit-cell > .k-textbox,
  .k-rtl .k-grid .k-edit-cell > .k-widget,
  .k-rtl .k-grid .k-edit-cell > .text-box,
  .k-rtl .k-grid .k-grid-edit-row > td > .k-textbox,
  .k-rtl .k-grid .k-grid-edit-row > td > .k-widget,
  .k-rtl .k-grid .k-grid-edit-row > td > .text-box {
    margin-right: calc(-8px - 1px); }
  .k-grid[dir="rtl"] .k-grid-header-wrap.k-auto-scrollable,
  .k-rtl .k-grid .k-grid-header-wrap.k-auto-scrollable {
    margin-left: -1px;
    margin-right: 0; }
  .k-grid[dir="rtl"] .k-grid-header-locked + .k-grid-header-wrap.k-auto-scrollable,
  .k-rtl .k-grid .k-grid-header-locked + .k-grid-header-wrap.k-auto-scrollable {
    margin-left: 0; }
  .k-grid[dir="rtl"] .k-group-footer td,
  .k-rtl .k-grid .k-group-footer td {
    border-width: 1px 0; }
  .k-grid[dir="rtl"] .k-group-footer .k-group-cell + td,
  .k-rtl .k-grid .k-group-footer .k-group-cell + td {
    border-right-width: 1px; }
  .k-grid[dir="rtl"] .k-grid-toolbar .k-button + .k-button,
  .k-rtl .k-grid .k-grid-toolbar .k-button + .k-button {
    margin: 0 4px 0 0; }
  .k-grid[dir="rtl"] .k-grouping-row .k-icon,
  .k-rtl .k-grid .k-grouping-row .k-icon {
    margin-left: 8px;
    margin-right: -4px; }
  .k-grid .k-tooltip.k-tooltip-validation {
    display: flex;
    position: absolute;
    width: auto;
    padding: 4px 8px; }
    .k-grid .k-tooltip.k-tooltip-validation .k-callout {
      display: block; }
  .k-grid .k-animation-container-fixed .k-tooltip.k-tooltip-validation {
    position: static; }
  .k-grid .k-dirty-cell {
    position: relative; }
  .k-grid .k-dirty {
    border-width: 5px;
    border-color: currentColor transparent transparent currentColor;
    left: 0;
    right: auto; }
  .k-grid .k-grid-content-locked + .k-grid-content {
    box-sizing: content-box; }
  .k-grid .k-grid-content-expander {
    position: absolute;
    visibility: hidden;
    height: 1px;
    bottom: 1px; }

.k-grid-toolbar {
  padding: 8px 8px;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: inherit;
  text-overflow: clip;
  cursor: default;
  display: block; }
  .k-grid-toolbar > * {
    vertical-align: middle; }
  .k-grid-toolbar > * + * {
    margin-left: 4px; }

.k-grouping-header {
  display: block;
  position: relative;
  white-space: normal;
  padding: 8px 8px;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: inherit;
  line-height: calc( 10px + 1.42857em); }

.k-grouping-header-flex {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 4px 0; }
  .k-grouping-header-flex > .k-indicator-container {
    display: inline-flex;
    margin: 0;
    padding: 4px 0 4px 8px; }
    .k-grouping-header-flex > .k-indicator-container:last-child {
      flex-grow: 1;
      line-height: calc( 10px + 1.42857em); }

.k-group-indicator,
.k-drag-clue {
  border-radius: 6px;
  margin: 0;
  padding: 4px 8px;
  border-width: 1px;
  border-style: solid;
  line-height: 1.5;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  vertical-align: top;
  opacity: 1;
  box-sizing: border-box; }
  .k-group-indicator .k-link,
  .k-group-indicator .k-button.k-bare,
  .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button,
  .k-drag-clue .k-link,
  .k-drag-clue .k-button.k-bare,
  .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button {
    padding: 0;
    border-width: 0;
    display: inline-flex;
    align-items: center; }
  .k-group-indicator .k-link .k-icon,
  .k-drag-clue .k-link .k-icon {
    margin-left: -2px;
    margin-right: 4px; }
  .k-group-indicator .k-button.k-bare, .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button,
  .k-drag-clue .k-button.k-bare,
  .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button {
    margin-left: 8px;
    margin-right: -2px;
    padding: 0;
    width: auto;
    height: auto;
    opacity: .5; }
    .k-group-indicator .k-button.k-bare::before, .k-group-indicator .k-toolbar .k-bare.k-picker-wrap::before, .k-toolbar .k-group-indicator .k-bare.k-picker-wrap::before, .k-group-indicator
    .k-toolbar .k-bare.k-dropdown-wrap::before,
    .k-toolbar .k-group-indicator .k-bare.k-dropdown-wrap::before, .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button::before, .k-group-indicator .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-picker-wrap::before, .k-toolbar .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-picker-wrap::before, .k-group-indicator
    .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-dropdown-wrap::before,
    .k-toolbar .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-dropdown-wrap::before, .k-group-indicator .k-button.k-bare::after, .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button::after,
    .k-drag-clue .k-button.k-bare::before,
    .k-drag-clue .k-toolbar .k-bare.k-picker-wrap::before, .k-toolbar
    .k-drag-clue .k-bare.k-picker-wrap::before,
    .k-drag-clue
    .k-toolbar .k-bare.k-dropdown-wrap::before,
    .k-toolbar
    .k-drag-clue .k-bare.k-dropdown-wrap::before,
    .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button::before,
    .k-drag-clue .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-picker-wrap::before, .k-toolbar
    .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-picker-wrap::before,
    .k-drag-clue
    .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-dropdown-wrap::before,
    .k-toolbar
    .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-dropdown-wrap::before,
    .k-drag-clue .k-button.k-bare::after,
    .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button::after {
      display: none; }
    .k-group-indicator .k-button.k-bare:hover, .k-group-indicator .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:hover,
    .k-drag-clue .k-button.k-bare:hover,
    .k-drag-clue .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:hover {
      opacity: 1; }

.k-group-indicator {
  margin-right: 4px; }

.k-group-indicator + .k-group-indicator {
  margin-left: 4px; }

.k-grouping-dropclue {
  width: 12px;
  height: calc( 10px + 1.42857em);
  position: absolute;
  top: 3px;
  box-sizing: content-box; }
  .k-grouping-dropclue::before, .k-grouping-dropclue::after {
    display: inline-block;
    content: "";
    position: absolute; }
  .k-grouping-dropclue::before {
    border-width: 6px;
    border-style: solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    top: 0; }
  .k-grouping-dropclue::after {
    width: 2px;
    height: calc(100% - 6px);
    top: 6px;
    left: calc(6px - (2px / 2)); }

.k-grid-header-wrap,
.k-grid-footer-wrap {
  width: 100%;
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: inherit;
  position: relative;
  overflow: hidden; }

.k-grid-header-wrap.k-auto-scrollable,
.k-grid-footer-wrap {
  margin-right: -1px; }

.k-grid-header-locked + .k-grid-header-wrap.k-auto-scrollable {
  margin-right: 0; }
  .k-ie .k-grid-header-locked + .k-grid-header-wrap.k-auto-scrollable {
    display: inline-block; }

.k-grid-header,
.k-grid-footer {
  flex: 0 0 auto;
  padding-right: 17px;
  border-width: 0;
  border-style: solid;
  border-color: inherit; }
  .k-grid-header table,
  .k-grid-footer table {
    table-layout: fixed; }

div.k-grid-header,
div.k-grid-footer {
  display: flex;
  flex-direction: row;
  align-items: stretch; }

.k-ie div.k-grid-header {
  display: block; }

.k-grid-header {
  border-bottom-width: 1px; }
  .k-grid-header table {
    margin-bottom: -1px; }
  .k-grid-header.k-grid-draggable-header {
    user-select: none;
    touch-action: none; }
  .k-grid-header .k-header {
    position: relative;
    vertical-align: bottom;
    cursor: default; }
    .k-grid-header .k-header:first-child {
      border-left-width: 0; }
    .k-grid-header .k-header.k-first {
      border-left-width: 1px; }
  .k-grid-header .k-header > .k-link {
    margin: -8px -12px;
    padding: 8px 12px;
    line-height: inherit;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: 0; }
    .k-ie .k-grid-header .k-header > .k-link,
    .k-edge .k-grid-header .k-header > .k-link {
      margin: 0;
      padding: 0; }
  .k-grid-header .k-with-icon,
  .k-grid-header .k-filterable {
    padding-right: calc(calc( 10px + 1.42857em) + 4px); }
    .k-ie .k-grid-header .k-with-icon,
    .k-edge .k-grid-header .k-with-icon, .k-ie
    .k-grid-header .k-filterable,
    .k-edge
    .k-grid-header .k-filterable {
      padding-right: calc( calc( 10px + 1.42857em) + 4px); }
  .k-grid-header .k-header > .k-link:focus {
    text-decoration: none; }
  .k-grid-header .k-grid-filter,
  .k-grid-header .k-header-column-menu {
    padding: 4px;
    width: calc( 10px + 1.42857em);
    height: calc( 10px + 1.42857em);
    box-sizing: border-box;
    outline: 0;
    line-height: 1.42857;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: absolute;
    right: 4px;
    bottom: calc( 8px + 0.71429em + (-1 * calc( 4px + 0.71429em) ));
    z-index: 1; }
    .k-ie .k-grid-header .k-grid-filter,
    .k-edge .k-grid-header .k-grid-filter, .k-ie
    .k-grid-header .k-header-column-menu,
    .k-edge
    .k-grid-header .k-header-column-menu {
      position: static;
      float: right;
      margin-top: calc( (calc( 10px + 1.42857em) - 1.42857em) / -2);
      margin-bottom: calc( (calc( 10px + 1.42857em) - 1.42857em) / -2);
      margin-right: calc( -1 * calc( 10px + 1.42857em)); }
  .k-grid-header .k-header > .k-link > .k-icon.k-i-sort-desc-sm, .k-grid-header .k-header > .k-link > .k-icon.k-i-sort-asc-sm {
    vertical-align: text-top;
    margin-left: 7px; }
  .k-grid-header .k-sort-order {
    display: inline-block;
    vertical-align: top;
    height: 16px;
    font-size: 12px;
    margin-top: 2px;
    margin-left: -2px; }

.k-grid-footer {
  border-width: 1px 0 0; }
  .k-grid-footer td {
    height: 1.42857em; }

.k-grid-filter-popup {
  min-width: 200px; }

.k-grid-columnmenu-popup {
  width: 230px; }

.k-filter-row {
  line-height: 1.42857; }
  .k-filter-row td,
  .k-filter-row th {
    border-width: 0 0 1px 1px;
    white-space: nowrap;
    padding: 8px 8px; }
  .k-filter-row td:first-child {
    border-left-width: 0; }
  .k-filter-row .k-multiselect {
    height: auto; }
  .k-filter-row .k-filtercell .k-widget.k-sized-input {
    flex: 0 1 auto; }

.k-filtercell {
  width: auto;
  display: flex; }
  .k-filtercell > span,
  .k-filtercell .k-filtercell-wrapper {
    display: flex;
    flex: 1 1 auto; }
    .k-filtercell > span > label,
    .k-filtercell .k-filtercell-wrapper > label {
      vertical-align: middle; }
  .k-filtercell .k-filtercell-wrapper > .k-widget {
    width: 100%; }
  .k-filtercell > span .k-button {
    visibility: visible;
    pointer-events: all; }
  .k-filtercell > span .k-button,
  .k-filtercell > span .k-dropdown-operator {
    margin-left: 4px; }
  .k-filtercell > span .k-widget {
    width: auto; }
  .k-filtercell .k-filtercell-operator > .k-button.k-clear-button-visible {
    visibility: visible;
    height: calc( 10px + 1.42857em); }
  .k-filtercell .k-filtercell-operator > .k-button:not(.k-clear-button-visible) {
    visibility: hidden;
    pointer-events: none; }
  .k-filtercell .k-filtercell-operator {
    margin-left: 4px; }
  .k-filtercell .k-widget:not(.k-dropdown-operator),
  .k-filtercell .k-filtercell-wrapper > .k-textbox {
    display: flex;
    flex: 1 1 auto; }
  .k-filtercell .k-filtercell-wrapper > .k-textbox {
    width: 100%;
    min-width: 0; }

.k-grid-content,
.k-grid-content-locked {
  border-color: inherit;
  outline: 0; }
  .k-grid-content table,
  .k-grid-content-locked table {
    table-layout: fixed; }
  .k-grid-content tr:last-child td,
  .k-grid-content-locked tr:last-child td {
    border-bottom-width: 0; }

.k-grid-content {
  width: 100%;
  min-height: 0;
  overflow: auto;
  overflow-x: auto;
  overflow-y: scroll;
  position: relative;
  flex: 1; }

.k-virtual-scrollable-wrap {
  height: 100%;
  overflow-y: hidden;
  position: relative; }

.k-grid-edit-row td {
  text-overflow: clip; }

.k-grid-edit-row .k-widget,
.k-grid-edit-row .k-button,
.k-grid-edit-row .k-textbox,
.k-grid-edit-row .k-input.k-textbox {
  height: auto; }

.k-grid-edit-row .k-edit-cell {
  padding-top: 0;
  padding-bottom: 0; }

.k-grid-edit-row .k-dirty-cell {
  overflow: visible; }

.k-edit-cell > .k-textbox,
.k-edit-cell > .k-widget:not(.k-switch),
.k-edit-cell > .text-box,
.k-grid-edit-row > td > .k-textbox,
.k-grid-edit-row > td > .k-widget:not(.k-switch),
.k-grid-edit-row > td > .text-box {
  margin-left: calc(-8px - 1px); }

.k-grid-edit-row td > .k-textbox,
.k-grid-edit-row td > .k-widget:not(.k-switch),
.k-edit-cell > .k-textbox,
.k-edit-cell > .k-widget:not(.k-switch) {
  width: calc(100% + ((8px + 1px) * 2)); }

.k-grid-edit-row td > .k-textbox,
.k-grid-edit-row td > .k-widget,
.k-command-cell > .k-button,
.k-edit-cell > .k-textbox,
.k-edit-cell > .k-widget {
  margin-top: calc( (1.42857em - calc( 10px + 1.42857em)) / 2);
  margin-bottom: calc( (1.42857em - calc( 10px + 1.42857em)) / 2);
  vertical-align: middle; }

.k-command-cell > .k-button {
  margin-left: 0.16em;
  margin-right: 0.16em; }

.k-grid > .k-resize-handle,
.k-grid-header .k-resize-handle {
  height: 25px;
  cursor: col-resize;
  position: absolute;
  z-index: 2; }

.k-grid-pager {
  padding: 8px;
  border-width: 1px 0 0;
  border-color: inherit;
  font-size: inherit; }

.k-grid-virtual .k-grid-content .k-grid-table-wrap {
  float: left;
  width: 100%; }

.k-grid-virtual .k-grid-content .k-grid-table {
  position: relative;
  float: left;
  z-index: 1; }

.k-grid-virtual .k-grid-content > .k-height-container {
  position: relative;
  float: left; }

.k-grid-virtual .k-grid-content::after {
  content: "";
  display: block;
  clear: both; }

.k-grid-virtual[dir="rtl"] .k-grid-content .k-grid-table,
.k-grid-virtual.k-rtl .k-grid-content .k-grid-table {
  float: right; }

.k-grid-add-row td {
  border-bottom-style: solid;
  border-bottom-width: 1px; }

.k-grid-lockedcolumns {
  white-space: nowrap; }

.k-grid-content,
.k-grid-content-locked,
.k-pager-wrap {
  white-space: normal; }

.k-grid-content-locked,
.k-grid-footer-locked,
.k-grid-header-locked {
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  position: relative;
  border-style: solid;
  border-width: 0 1px 0 0; }
  .k-grid-content-locked + .k-grid-content.k-auto-scrollable,
  .k-grid-footer-locked + .k-grid-content.k-auto-scrollable,
  .k-grid-header-locked + .k-grid-content.k-auto-scrollable {
    display: inline-block; }

.k-grid-content,
.k-grid-footer-wrap,
.k-grid-header-wrap {
  flex: 1 1 auto;
  display: inline-block;
  vertical-align: top; }
  .k-grid-content.k-auto-scrollable,
  .k-grid-footer-wrap.k-auto-scrollable,
  .k-grid-header-wrap.k-auto-scrollable {
    display: block; }

.k-grid-header-locked > table,
.k-grid-header-wrap > table {
  margin-bottom: -1px; }

.k-header.k-drag-clue {
  overflow: hidden; }

.k-grid.k-grid-no-scrollbar .k-grid-header {
  padding: 0; }

.k-grid.k-grid-no-scrollbar .k-grid-header-wrap {
  border-width: 0; }

.k-grid.k-grid-no-scrollbar .k-grid-content {
  overflow-y: auto; }

.k-grid-norecords {
  padding: 20px;
}

.k-grid-norecords-template {
  width: 20em;
  height: 4em;
  line-height: 4em;
  margin: 0 auto;
  border: 1px solid; }

.k-loading-pdf-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100; }
  .k-loading-pdf-mask > .k-i-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 64px; }
  .k-loading-pdf-mask .k-loading-pdf-progress {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }

.k-pdf-export .k-loading-pdf-mask {
  display: none; }

.k-grid-pdf-export-element {
  position: absolute;
  left: -10000px;
  top: -10000px; }
  .k-grid-pdf-export-element .k-filter-row {
    display: none; }

.k-pdf-export-shadow .k-grid {
  float: left;
  width: auto !important; }

.k-pdf-export-shadow .k-grid,
.k-pdf-export-shadow .k-grid-content,
.k-pdf-export-shadow .k-grid-content-locked {
  height: auto !important;
  overflow: visible; }

.k-pdf-export-shadow .k-grid-header-locked + .k-grid-header-wrap,
.k-pdf-export-shadow .k-grid-header-locked + .k-grid-content,
.k-pdf-export-shadow .k-grid-header-locked + .k-grid-footer-wrap {
  width: auto !important; }

.k-pdf-export-shadow .k-grid-header,
.k-pdf-export-shadow .k-grid[data-role="grid"] .k-grid-footer {
  padding: 0 !important; }

.k-filter-menu .k-filter-menu-container {
  padding: 0.5em 1em; }
  .k-filter-menu .k-filter-menu-container .k-action-buttons {
    margin: 1em -1em -0.5em; }

.k-filter-menu .k-widget,
.k-filter-menu .k-radio-list,
.k-filter-menu .k-textbox {
  margin: 0.5em 0;
  width: 100%;
  display: block; }

.k-filter-menu .k-widget.k-filter-and {
  width: 6em;
  margin: 1em 0; }

.k-multicheck-wrap {
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  white-space: nowrap; }
  .k-multicheck-wrap .k-item + .k-item {
    margin-top: 0.5em; }
  .k-multicheck-wrap .k-label {
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer; }
    .k-multicheck-wrap .k-label input {
      margin: 0 0.25em; }

.k-filter-selected-items {
  font-weight: bold;
  line-height: normal;
  white-space: nowrap;
  margin: 1em 0 0.5em; }

.k-autofitting {
  width: auto !important;
  table-layout: auto !important; }
  .k-autofitting th.k-header,
  .k-autofitting td {
    white-space: nowrap !important; }
  .k-autofitting .k-detail-row {
    display: none !important; }

.k-column-list {
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto; }

.k-column-chooser-title,
.k-column-list-item {
  padding: 4px 8px;
  padding-right: 32px; }

.k-column-list-item {
  display: block;
  margin: 0;
  cursor: pointer; }
  .k-column-list-item .k-checkbox,
  .k-column-list-item .k-checkbox-label {
    vertical-align: middle; }

.k-columnmenu-item {
  padding: 6px 12px;
  cursor: pointer; }
  .k-columnmenu-item > .k-icon {
    margin-right: 4px; }

.k-columnmenu-item-wrapper {
  border-bottom: 1px solid;
  border-bottom-color: inherit; }
  .k-columnmenu-item-wrapper:last-child {
    border-bottom-width: 0; }

.k-columnmenu-item-content {
  overflow: hidden; }
  .k-columnmenu-item-content .k-column-list-item {
    padding-left: 32px; }
  .k-columnmenu-item-content .k-filter-menu .k-filter-menu-container {
    padding: 1em 1em; }
    .k-columnmenu-item-content .k-filter-menu .k-filter-menu-container .k-columnmenu-actions {
      padding: 1em 0 0; }
  .k-columnmenu-item-content .k-columnmenu-actions {
    display: flex;
    padding: 1em 1em; }
    .k-columnmenu-item-content .k-columnmenu-actions .k-button {
      flex: 1 0 auto;
      width: auto;
      margin: 0 0.5em; }
      .k-columnmenu-item-content .k-columnmenu-actions .k-button:first-child {
        margin-left: 0; }
      .k-columnmenu-item-content .k-columnmenu-actions .k-button:last-child {
        margin-right: 0; }

[dir="rtl"] .k-columnmenu-item > .k-icon,
.k-rtl .k-columnmenu-item > .k-icon {
  margin-left: 4px;
  margin-right: 0; }

.k-grid-header,
.k-header,
.k-grid-header-wrap,
.k-grouping-header,
.k-grouping-header .k-group-indicator,
.k-grid td,
.k-grid-footer,
.k-grid-footer-wrap,
.k-grid-content-locked,
.k-grid-footer-locked,
.k-grid-header-locked,
.k-filter-row > td,
.k-filter-row > th {
  border-color: rgba(0, 0, 0, 0.08); }

.k-grid-header,
.k-grid-toolbar,
.k-grouping-header,
.k-grid-add-row,
.k-grid-footer {
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }

.k-drag-clue {
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff);
}
  

.k-grid-content {
  background-color: var(--sg-bg-color, #ffffff); }

.k-group-footer td,
.k-grouping-row td,
tbody .k-group-cell {
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-grid-footer td,
.k-group-footer td,
.k-grouping-row td {
  font-weight: bold; }

.k-grouping-dropclue::before {
  border-color: #656565 transparent transparent; }

.k-grouping-dropclue::after {
  background-color: #656565; }

.k-grid {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff);
  background-clip: padding-box; }
  .k-ie11 .k-grid,
  .k-edge12 .k-grid,
  .k-edge13 .k-grid {
    background-clip: border-box; }
  .k-grid tr.k-alt {
    background-color: rgba(0, 0, 0, 0.04); }
  .k-grid tbody tr:hover,
  .k-grid tbody tr.k-state-hover {
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-color-legacy-ededed, #ededed); }
  .k-grid td.k-state-selected,
  .k-grid tr.k-state-selected > td {
    color: var(--sg-text-color, #000000);
    background-color: rgba(82, 160, 255, 0.25); }
  .k-grid td.k-state-focused,
  .k-grid th.k-state-focused {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
  .k-grid .k-grid-filter,
  .k-grid .k-header-column-menu,
  .k-grid .k-hierarchy-cell .k-icon {
    border-width: 0;
    color: var(--sg-text-color, #000000); }
  .k-grid .k-grouping-row {
    background-color: var(--sg-color-legacy-ededed, #ededed); }
    .k-grid .k-grouping-row .k-icon {
      color: var(--sg-text-color, #000000);
      text-decoration: none; }
  .k-grid .k-tooltip.k-tooltip-validation {
    color: #ffffff;
    background-color: #0735cc; }
    .k-grid .k-tooltip.k-tooltip-validation .k-callout-n {
      border-bottom-color: #0735cc; }
    .k-grid .k-tooltip.k-tooltip-validation .k-callout-e {
      border-left-color: #0735cc; }
    .k-grid .k-tooltip.k-tooltip-validation .k-callout-s {
      border-top-color: #0735cc; }
    .k-grid .k-tooltip.k-tooltip-validation .k-callout-w {
      border-right-color: #0735cc; }

col.k-sorted,
th.k-sorted {
  background-color: rgba(0, 0, 0, 0.02); }

.k-grid-header .k-i-sort-asc-sm,
.k-grid-header .k-i-sort-desc-sm,
.k-grid-header .k-sort-order {
  color: #0735cc; }

.k-grid-header .k-grid-filter:hover,
.k-grid-header .k-header-column-menu:hover,
.k-grid-header .k-hierarchy-cell .k-icon:hover {
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-grid-header .k-grid-filter:focus,
.k-grid-header .k-header-column-menu:focus,
.k-grid-header .k-hierarchy-cell .k-icon:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1); }

.k-grid-header .k-grid-filter.k-state-active,
.k-grid-header .k-header-column-menu.k-state-active,
.k-grid-header .k-hierarchy-cell .k-icon.k-state-active {
  color: #ffffff;
  background-color: #0735cc; }

.k-column-menu .k-menu:not(.k-context-menu) {
  font-weight: 400; }

.k-grid-norecords-template {
  background-color: var(--sg-bg-color, #ffffff);
  border-color: rgba(0, 0, 0, 0.08); }

.k-tabstrip-wrapper {
  padding: 0 0;
  border-width: 0;
  border-style: solid;
  display: flex;
  flex-direction: column; }

.k-tabstrip {
  border-width: 0;
  border-color: transparent;
  color: inherit;
  background-color: transparent;
  display: flex;
  flex-direction: column; }
  .k-tabstrip-wrapper > .k-tabstrip {
    flex: 1 1 auto; }
  .k-tabstrip-items {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    outline: 0;
    display: flex;
    flex-direction: row;
    flex: 0 0 auto;
    position: relative; }
    .k-tabstrip-items .k-item {
      margin: 0;
      padding: 0;
      border: 1px solid transparent;
      position: relative;
      flex-shrink: 0;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      justify-items: stretch; }
    .k-tabstrip-items .k-tab-on-top {
      z-index: 1; }
    .k-tabstrip-items .k-link {
      padding: 6px 12px;
      color: inherit;
      cursor: pointer;
      display: inline-flex;
      vertical-align: middle;
      flex: 1 1 auto;
      flex-direction: row;
      align-content: center;
      align-items: center; }
      .k-tabstrip-items .k-link[data-type="remove"] {
        padding: 6px;
        flex: none; }
  .k-ie11 .k-tabstrip-items {
    white-space: nowrap; }
  .k-tabstrip > .k-content {
    padding: 6px 12px;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    display: none;
    overflow: auto;
    flex: 1 1 auto; }
    .k-tabstrip > .k-content.k-state-active {
      display: block; }
  .k-tabstrip-items .k-loading {
    width: 20%;
    height: 0;
    border: 0;
    border-top: 1px solid transparent;
    border-color: inherit;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: width .2s linear; }
    .k-tabstrip-items .k-loading.k-complete {
      width: 100%;
      border-top-width: 0; }
  .k-tabstrip.k-tabstrip-scrollable {
    position: relative; }
    .k-tabstrip.k-tabstrip-scrollable > .k-content {
      border-width: 1px; }
    .k-tabstrip.k-tabstrip-scrollable > .k-tabstrip-items {
      border-width: 0;
      white-space: nowrap;
      overflow: hidden; }
    .k-tabstrip.k-tabstrip-scrollable > .k-tabstrip-prev {
      position: absolute;
      left: 0; }
    .k-tabstrip.k-tabstrip-scrollable > .k-tabstrip-next {
      position: absolute;
      right: 0; }
    .k-ie11 .k-tabstrip.k-tabstrip-scrollable > .k-tabstrip-prev,
    .k-ie11 .k-tabstrip.k-tabstrip-scrollable > .k-tabstrip-next {
      top: 0; }

.k-tabstrip-top > .k-tabstrip-items {
  border-bottom-width: 1px; }
  .k-tabstrip-top > .k-tabstrip-items .k-item {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-bottom: -1px; }
  .k-tabstrip-top > .k-tabstrip-items .k-item + .k-item {
    margin-left: 0; }
  .k-tabstrip-top > .k-tabstrip-items .k-item.k-state-active {
    border-bottom-color: transparent; }

.k-tabstrip-top > .k-content {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-width: 0; }

.k-tabstrip-bottom > .k-tabstrip-items {
  border-top-width: 1px; }
  .k-tabstrip-bottom > .k-tabstrip-items .k-item {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-top: -1px; }
  .k-tabstrip-bottom > .k-tabstrip-items .k-item + .k-item {
    margin-left: 0; }
  .k-tabstrip-bottom > .k-tabstrip-items .k-item.k-state-active {
    border-top-color: transparent; }

.k-tabstrip-bottom > .k-content {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-width: 0; }

.k-tabstrip-bottom.k-tabstrip-scrollable .k-tabstrip-prev,
.k-tabstrip-bottom.k-tabstrip-scrollable .k-tabstrip-next {
  bottom: 0; }
  .k-ie11 .k-tabstrip-bottom.k-tabstrip-scrollable .k-tabstrip-prev, .k-ie11
  .k-tabstrip-bottom.k-tabstrip-scrollable .k-tabstrip-next {
    top: auto; }

.k-tabstrip-left {
  flex-direction: row; }
  .k-tabstrip-left > .k-tabstrip-items {
    border-right-width: 1px;
    display: inline-flex;
    flex-direction: column; }
    .k-tabstrip-left > .k-tabstrip-items .k-item {
      border-top-left-radius: 6px;
      border-bottom-left-radius: 6px;
      margin-right: -1px; }
    .k-tabstrip-left > .k-tabstrip-items .k-item + .k-item {
      margin-top: 0; }
    .k-tabstrip-left > .k-tabstrip-items .k-item.k-state-active {
      border-right-color: transparent; }
  .k-tabstrip-left > .k-content {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    margin: 0 !important;
    border-left-width: 0; }

.k-tabstrip-right {
  flex-direction: row-reverse; }
  .k-tabstrip-right > .k-tabstrip-items {
    border-left-width: 1px;
    display: inline-flex;
    flex-direction: column; }
    .k-tabstrip-right > .k-tabstrip-items .k-item {
      border-top-right-radius: 6px;
      border-bottom-right-radius: 6px;
      margin-left: -1px; }
    .k-tabstrip-right > .k-tabstrip-items .k-item + .k-item {
      margin-top: 0; }
    .k-tabstrip-right > .k-tabstrip-items .k-item.k-state-active {
      border-left-color: transparent; }
  .k-tabstrip-right > .k-content {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin: 0 !important;
    border-right-width: 0; }

.k-rtl .k-tabstrip.k-tabstrip-left > .k-tabstrip-items, .k-rtl .k-tabstrip.k-tabstrip-right > .k-tabstrip-items,
.k-tabstrip[dir="rtl"].k-tabstrip-left > .k-tabstrip-items,
.k-tabstrip[dir="rtl"].k-tabstrip-right > .k-tabstrip-items {
  order: 1; }

.k-rtl .k-tabstrip.k-tabstrip-left > .k-content, .k-rtl .k-tabstrip.k-tabstrip-right > .k-content,
.k-tabstrip[dir="rtl"].k-tabstrip-left > .k-content,
.k-tabstrip[dir="rtl"].k-tabstrip-right > .k-content {
  order: 0; }

.k-rtl .k-tabstrip .k-tabstrip-prev,
.k-tabstrip[dir="rtl"] .k-tabstrip-prev {
  left: auto;
  right: 0;
  transform: scaleX(-1); }

.k-rtl .k-tabstrip .k-tabstrip-next,
.k-tabstrip[dir="rtl"] .k-tabstrip-next {
  left: 0;
  right: auto;
  transform: scaleX(-1); }

.k-tabstrip-items {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000); }
  .k-tabstrip-items .k-item {
    color: #0735cc; }
    .k-tabstrip-items .k-item:hover, .k-tabstrip-items .k-item.k-state-hover {
      color: #5194e6; }
    .k-tabstrip-items .k-item.k-state-active, .k-tabstrip-items .k-item.k-state-selected {
      border-color: rgba(0, 0, 0, 0.08);
      color: var(--sg-text-color, #000000);
      background-color: var(--sg-bg-color, #ffffff); }
    .k-tabstrip-items .k-item.k-state-focused {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-tabstrip > .k-content {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-toolbar {
  padding: 8px 8px;
  border-width: 1px;
  line-height: 1.42857;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: none; }
  .k-toolbar::before {
    content: "";
    height: calc(1.42857em + 8px + 2px); }
  .k-toolbar.k-toolbar-resizable {
    flex-wrap: nowrap; }
  .k-toolbar > * {
    display: inline-flex;
    align-items: stretch;
    align-content: center;
    vertical-align: middle;
    margin-left: 8px; }
  .k-toolbar .k-overflow-anchor + * {
    margin-left: 0; }
  .k-toolbar .k-button,
  .k-toolbar .k-button-group,
  .k-toolbar .k-separator,
  .k-toolbar .k-split-button,
  .k-toolbar .k-textbox,
  .k-toolbar .k-widget,
  .k-toolbar label {
    align-self: center; }
  .k-toolbar .k-split-button > .k-button {
    align-self: stretch; }
  .k-toolbar .k-button {
    padding: 4px 8px;
    line-height: 1.42857; }
    .k-toolbar .k-button::before, .k-toolbar .k-picker-wrap::before, .k-toolbar .k-dropdown-wrap::before {
      border-radius: 0; }
    .k-ie11 .k-toolbar .k-button {
      display: inline-flex; }
  .k-toolbar .k-button-group .k-button {
    border-radius: 0; }
  .k-toolbar .k-button-group .k-group-start,
  .k-toolbar .k-button-group .k-button:first-child {
    border-radius: 0 0 0 0; }
  .k-toolbar .k-button-group .k-group-end,
  .k-toolbar .k-button-group .k-button:last-child {
    border-radius: 0 0 0 0; }
  .k-toolbar .k-split-button .k-button {
    border-radius: 6px 0 0 6px; }
  .k-toolbar .k-split-button .k-button.k-split-button-arrow {
    border-radius: 0 6px 6px 0;
    margin-left: -1px;
    padding: 4px; }
  .k-toolbar .k-overflow-anchor {
    border-radius: 0;
    padding: 8px;
    width: calc( 1.42857em + 8px + 2px + 16px);
    height: 100%;
    margin: 0;
    border-width: 0 0 0 1px;
    border-color: inherit;
    background-clip: padding-box;
    box-sizing: border-box;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0; }
    .k-toolbar .k-overflow-anchor::before {
      display: block; }
  .k-toolbar .k-separator {
    margin: 0 8px;
    height: 1.42857em; }
    .k-toolbar .k-separator + * {
      margin-left: 0; }
  .k-toolbar .k-spacer {
    height: 1.42857em;
    flex: 1 1 auto; }

kendo-toolbar.k-toolbar {
  padding: 4px 8px; }
  kendo-toolbar.k-toolbar kendo-toolbar-renderer {
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 0; }
    kendo-toolbar.k-toolbar kendo-toolbar-renderer:not(:last-child) {
      margin-right: 8px; }
  kendo-toolbar.k-toolbar[dir="rtl"] kendo-toolbar-renderer {
    margin-left: 8px; }
    kendo-toolbar.k-toolbar[dir="rtl"] kendo-toolbar-renderer:not(:last-child) {
      margin-right: 0; }

.k-overflow-container .k-overflow-tool-group {
  display: block; }

.k-overflow-container .k-button-group {
  display: flex;
  flex-direction: column; }

.k-overflow-container .k-tool.k-state-disabled,
.k-overflow-container .k-overflow-hidden {
  display: none; }

.k-rtl .k-toolbar .k-overflow-anchor {
  right: auto;
  left: 0;
  border-width: 0 1px 0 0; }

.k-toolbar {
  background-clip: padding-box; }
  .k-ie11 .k-toolbar,
  .k-edge12 .k-toolbar,
  .k-edge13 .k-toolbar {
    background-clip: border-box; }
  .k-toolbar .k-split-button:focus,
  .k-toolbar .k-split-button .k-state-focused {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }
  .k-toolbar .k-split-button .k-button:focus,
  .k-toolbar .k-split-button .k-button.k-state-focused {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }
  .k-toolbar .k-split-button .k-button:active,
  .k-toolbar .k-split-button .k-button.k-state-active {
    box-shadow: none; }
  .k-toolbar .k-split-button.k-state-disabled .k-button {
    box-shadow: none; }
  .k-toolbar .k-overflow-anchor {
    border-width: 0;
    color: inherit;
    background: transparent; }
  .k-toolbar .k-state-border-up,
  .k-toolbar .k-state-border-down {
    box-shadow: none; }
    .k-toolbar .k-state-border-up::before,
    .k-toolbar .k-state-border-up .k-button::before, .k-toolbar .k-state-border-up .k-picker-wrap::before, .k-toolbar .k-state-border-up .k-dropdown-wrap::before,
    .k-toolbar .k-state-border-down::before,
    .k-toolbar .k-state-border-down .k-button::before, .k-toolbar .k-state-border-down .k-picker-wrap::before, .k-toolbar .k-state-border-down .k-dropdown-wrap::before {
      opacity: 0; }
  .k-toolbar .k-separator {
    border-color: inherit; }
  .k-toolbar .k-button.k-state-disabled::after {
    opacity: 0; }

.k-spreadsheet {
  width: 800px;
  height: 600px;
  display: flex;
  flex-direction: column;
  cursor: default;
  position: relative; }
  .k-spreadsheet .k-vertical-align-center {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
  .k-spreadsheet .k-vertical-align-bottom {
    position: relative;
    top: 100%;
    transform: translateY(-100%); }

.k-spreadsheet .k-tabstrip-wrapper {
  border-width: 0 0 1px;
  border-style: solid;
  border-color: inherit;
  position: relative; }

.k-spreadsheet-quick-access-toolbar {
  padding: 8px;
  display: inline-flex;
  flex-direction: row;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0; }
  .k-spreadsheet-quick-access-toolbar .k-button:not(:hover) {
    border-color: transparent;
    color: inherit;
    background-color: transparent;
    background-image: none; }

.k-spreadsheet-tabstrip {
  padding-top: 8px; }

.k-spreadsheet-tabstrip .k-loading {
  display: none; }

.k-spreadsheet-tabstrip .k-content {
  border-radius: 0;
  padding: 0;
  border-width: 0;
  overflow: hidden; }

.k-spreadsheet-toolbar {
  border-width: 0; }
  .k-spreadsheet-toolbar [data-tool="backgroundColor"],
  .k-spreadsheet-toolbar [data-tool="textColor"],
  .k-spreadsheet-toolbar [data-tool="borders"],
  .k-spreadsheet-toolbar [data-tool="alignment"],
  .k-spreadsheet-toolbar [data-tool="merge"],
  .k-spreadsheet-toolbar [data-tool="freeze"] {
    width: auto;
    min-width: 1.42857em; }
  .k-spreadsheet-toolbar [data-tool="fontSize"] {
    width: 5em; }
  .k-spreadsheet-toolbar [data-tool="fontFamily"] {
    width: 6em; }
  .k-spreadsheet-toolbar [data-tool="format"] {
    width: 4em; }

.k-spreadsheet-action-bar {
  border-width: 0 0 1px;
  border-style: solid;
  border-color: inherit;
  font-size: 12px;
  font-family: Arial, Verdana, sans-serif;
  position: relative;
  display: flex;
  flex-direction: row; }

.k-spreadsheet-name-editor {
  width: 10em;
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: inherit; }
  .k-spreadsheet-name-editor .k-combobox {
    width: 100%;
    font-size: inherit; }
  .k-spreadsheet-name-editor .k-combobox .k-dropdown-wrap {
    border-radius: 0;
    border-width: 0; }
  .k-spreadsheet-name-editor .k-combobox .k-select {
    border-radius: 0; }

.k-spreadsheet-formula-bar {
  border-color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1; }
  .k-spreadsheet-formula-bar::before {
    font-size: 16px;
    font-family: "WebComponentsIcons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    padding: 0 4px;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit; }
  .k-spreadsheet-formula-bar .k-tooltip,
  .k-spreadsheet-formula-bar .k-group-header,
  .k-spreadsheet-formula-bar .k-list-scroller {
    display: none; }
  .k-spreadsheet-formula-bar .k-spreadsheet-formula-input {
    padding: 4px 8px;
    line-height: 1.42857; }

.k-spreadsheet-formula-input {
  outline: 0;
  white-space: pre;
  flex: 1;
  box-sizing: border-box; }
  .k-spreadsheet-formula-input > .k-syntax-func.k-syntax-at-point,
  .k-spreadsheet-formula-input > .k-syntax-bool.k-syntax-at-point,
  .k-spreadsheet-formula-input > .k-syntax-ref.k-syntax-at-point,
  .k-spreadsheet-formula-input > .k-syntax-str.k-syntax-at-point,
  .k-spreadsheet-formula-input > .k-syntax-num.k-syntax-at-point {
    text-decoration: underline; }
  .k-spreadsheet-formula-input > .k-series-a,
  .k-spreadsheet-formula-input > .k-series-b,
  .k-spreadsheet-formula-input > .k-series-c,
  .k-spreadsheet-formula-input > .k-series-d {
    background-color: transparent; }

.k-spreadsheet-formula-list {
  min-width: 100px; }
  .k-spreadsheet-formula-list .k-item {
    padding: 4px 8px; }

.k-spreadsheet-cell-editor {
  padding: 0 3px;
  line-height: 20px;
  display: none;
  overflow: hidden;
  position: absolute;
  z-index: 2000; }

.k-spreadsheet-sheets-bar {
  padding: 0 4px 4px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative; }

.k-spreadsheet-sheets-bar-add {
  margin-right: 4px; }
  .k-spreadsheet-sheets-bar-add:not(:hover) {
    border-color: transparent;
    color: inherit;
    background: none; }

.k-spreadsheet-sheets-items {
  margin-top: -1px;
  flex: 1;
  overflow: hidden; }
  .k-spreadsheet-sheets-items .k-tabstrip-items {
    margin: 0 calc( 10px + 1.42857em) !important;
    border-width: 0; }
  .k-spreadsheet-sheets-items .k-tabstrip-prev {
    left: 0 !important; }
  .k-spreadsheet-sheets-items .k-tabstrip-next {
    right: 0 !important; }
  .k-spreadsheet-sheets-items .k-item .k-link {
    display: inline-block; }
  .k-spreadsheet-sheets-items .k-item .k-spreadsheet-sheets-remove {
    margin-right: 0.5em;
    margin-left: -0.5em;
    padding: 0;
    line-height: 1;
    vertical-align: middle; }

.k-spreadsheet-view {
  height: auto !important;
  border-color: inherit;
  font-size: 12px;
  font-family: Arial, Verdana, Sans-serif;
  flex: 1;
  position: relative; }
  .k-spreadsheet-view .k-state-disabled {
    pointer-events: auto; }

.k-spreadsheet-fixed-container {
  width: 100%;
  height: 100%;
  border-color: inherit;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  z-index: 2; }

.k-spreadsheet-overflow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-color: inherit; }

.k-spreadsheet-pane {
  padding: 0 1px 0 0;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: inherit;
  box-sizing: border-box;
  position: absolute;
  overflow: hidden; }
  .k-spreadsheet-pane.k-top {
    border-top-width: 0; }
  .k-spreadsheet-pane.k-left {
    border-left-width: 0; }

.k-spreadsheet-top-corner {
  border-width: 0 1px 1px 0;
  border-style: solid;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000; }
  .k-spreadsheet-top-corner::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 6px solid transparent;
    border-right-color: inherit;
    border-bottom-color: inherit; }

.k-spreadsheet-scroller {
  width: 100%;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  z-index: 1; }

.k-spreadsheet-haxis,
.k-spreadsheet-vaxis {
  border: 0 solid;
  border-color: inherit;
  position: absolute; }

.k-spreadsheet-haxis {
  border-width: 1px 0 0;
  left: 0; }

.k-spreadsheet-vaxis {
  border-width: 0 0 0 1px;
  top: 0; }

.k-spreadsheet-row-header,
.k-spreadsheet-column-header {
  text-align: center;
  z-index: 100; }
  .k-spreadsheet-row-header > div,
  .k-spreadsheet-column-header > div {
    position: relative;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: inherit; }
    .k-spreadsheet-row-header > div::after,
    .k-spreadsheet-column-header > div::after {
      content: "";
      border-width: 0;
      border-style: solid;
      border-color: inherit;
      display: none;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }

.k-spreadsheet-row-header {
  position: relative; }

.k-spreadsheet-column-header {
  position: absolute; }

.k-spreadsheet-row-header > div {
  border-top-width: 1px; }
  .k-spreadsheet-row-header > div:first-child {
    border-top-width: 0; }

.k-spreadsheet-row-header > .k-selection-partial::after,
.k-spreadsheet-row-header > .k-selection-full::after {
  border-right-width: 2px;
  display: block; }

.k-spreadsheet-column-header > div {
  border-left-width: 1px; }
  .k-spreadsheet-column-header > div:first-child {
    border-left-width: 0; }

.k-spreadsheet-column-header > .k-selection-partial::after,
.k-spreadsheet-column-header > .k-selection-full::after {
  border-bottom-width: 2px;
  display: block; }

.k-spreadsheet-data {
  border-color: inherit;
  cursor: cell;
  position: relative; }

.k-spreadsheet-cell {
  padding: 1px;
  box-sizing: border-box;
  background-clip: padding-box;
  white-space: pre;
  position: absolute;
  overflow: hidden; }

.k-spreadsheet-merged-cell {
  background-color: var(--sg-bg-color, #ffffff); }

.k-spreadsheet-merged-cells-wrapers {
  position: relative; }

.k-spreadsheet .k-selection-wrapper {
  position: relative;
  cursor: cell; }

.k-spreadsheet .k-spreadsheet-selection {
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  position: absolute; }

.k-spreadsheet .k-spreadsheet-selection-highlight {
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  position: absolute; }

.k-spreadsheet .k-selection-wrapper .k-spreadsheet-editor-button {
  position: absolute;
  padding: 0; }

.k-spreadsheet-active-cell {
  outline-color: transparent !important;
  z-index: 10; }

.k-spreadsheet .k-auto-fill-wrapper {
  position: relative; }

.k-spreadsheet .k-auto-fill,
.k-spreadsheet .k-auto-fill-punch,
.k-spreadsheet .k-auto-fill-br-hint {
  box-sizing: border-box;
  position: absolute; }

.k-spreadsheet .k-auto-fill {
  border-width: 1px;
  border-style: solid;
  cursor: crosshair; }

.k-spreadsheet .k-single-selection::after {
  content: "";
  margin-bottom: -4px;
  margin-right: -4px;
  width: 6px;
  height: 6px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
  cursor: crosshair; }

.k-spreadsheet .k-autofill-wrapper {
  position: relative;
  cursor: cell; }

.k-spreadsheet-vborder {
  position: absolute;
  border-left-style: solid;
  border-left-width: 1px; }

.k-spreadsheet-hborder {
  position: absolute;
  border-top-style: solid;
  border-top-width: 1px; }

.k-spreadsheet-has-comment::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  border-width: 3px;
  border-style: solid; }

.k-dirty {
  left: 0;
  right: auto; }

.k-spreadsheet .k-filter-wrapper {
  position: relative;
  z-index: 50; }

.k-spreadsheet .k-filter-range {
  border-width: 1px;
  border-style: solid;
  position: absolute;
  box-sizing: border-box; }

.k-spreadsheet-filter {
  border-radius: 6px;
  line-height: 1;
  position: absolute;
  cursor: pointer; }
  .k-spreadsheet-filter .k-icon {
    vertical-align: middle; }

.k-spreadsheet-filter-menu {
  width: 280px; }
  .k-spreadsheet-filter-menu .k-animation-container {
    position: relative; }
  .k-spreadsheet-filter-menu > .k-menu,
  .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical {
    border-width: 0; }
    .k-spreadsheet-filter-menu > .k-menu .k-item,
    .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-item {
      color: inherit; }
    .k-spreadsheet-filter-menu > .k-menu .k-link,
    .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-link {
      padding-left: calc( 16px + 8px); }
    .k-spreadsheet-filter-menu > .k-menu .k-icon,
    .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-icon {
      margin-left: calc(-1 * ( 16px + 4px ));
      margin-right: 4px; }
  .k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper {
    height: 200px;
    border-width: 1px;
    border-style: solid;
    overflow-y: scroll;
    overflow-x: auto; }
    .k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper .k-treeview {
      padding: 4px;
      overflow: visible; }
  .k-spreadsheet-filter-menu .k-details {
    padding: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit; }
  .k-spreadsheet-filter-menu .k-details-summary {
    padding: 4px;
    cursor: pointer; }
    .k-spreadsheet-filter-menu .k-details-summary > .k-icon {
      margin-right: 4px; }
  .k-spreadsheet-filter-menu .k-details-content {
    padding: 4px 8px 4px calc( 16px + 8px); }
    .k-spreadsheet-filter-menu .k-details-content > .k-textbox,
    .k-spreadsheet-filter-menu .k-details-content > .k-widget {
      width: 100%;
      margin-bottom: 3px; }
    .k-spreadsheet-filter-menu .k-details-content .k-space-right {
      background-image: none; }
    .k-spreadsheet-filter-menu .k-details-content .k-filter-and {
      width: 75px;
      margin: 8px 0; }
  .k-spreadsheet-filter-menu .k-action-buttons {
    margin: 1em 0 0; }

.k-spreadsheet-popup {
  padding: 0; }
  .k-spreadsheet-popup .k-separator {
    display: block; }
  .k-spreadsheet-popup .k-button {
    border-radius: 0;
    border-width: 0;
    color: inherit;
    background: none; }
  .k-spreadsheet-popup .k-button-icontext {
    display: flex;
    justify-content: flex-start; }
  .k-spreadsheet-popup .k-reset-color,
  .k-spreadsheet-popup .k-custom-color {
    border-radius: 0;
    width: 100%;
    border-width: 0;
    box-sizing: border-box;
    display: flex; }
  .k-spreadsheet-popup .k-reset-color {
    border-bottom-width: 1px; }
  .k-spreadsheet-popup .k-custom-color {
    border-top-width: 1px; }
  .k-spreadsheet-popup .k-spreadsheet-color-palette {
    padding: 0; }
  .k-spreadsheet-popup .k-spreadsheet-border-type-palette {
    width: 12.5rem;
    height: 5rem;
    display: flex;
    flex-flow: row wrap;
    align-content: space-around;
    justify-content: space-around; }

.k-spreadsheet-format-popup .k-item {
  justify-content: space-between; }

.k-spreadsheet-format-popup .k-spreadsheet-sample {
  order: 1; }

.k-spreadsheet-sample {
  opacity: .7; }

.k-spreadsheet-clipboard,
.k-spreadsheet-clipboard-paste {
  margin: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }

.k-spreadsheet-window .k-edit-form-container {
  width: auto;
  min-width: 0; }

.k-spreadsheet-format-cells .k-spreadsheet-preview {
  margin-top: 0.5em;
  text-align: center; }

.k-spreadsheet-format-cells .k-list-scroller {
  margin-top: 0.5em;
  height: 210px;
  border-width: 1px;
  border-style: solid;
  border-color: inherit; }

.k-export-config {
  clear: both;
  position: relative; }
  .k-export-config::after {
    content: "";
    clear: both;
    display: block; }
  .k-export-config .k-edit-field {
    margin-left: 5%;
    width: 45%;
    float: left; }
  .k-export-config .k-page-orientation {
    position: absolute;
    right: 0;
    top: 0.5em; }
    .k-export-config .k-page-orientation .k-icon {
      font-size: 6em; }

.k-spreadsheet-insert-comment textarea {
  height: auto; }

.k-spreadsheet-insert-image-dialog {
  border-style: dashed;
  border-width: 2px; }
  .k-spreadsheet-insert-image-dialog label {
    display: flex;
    justify-content: center;
    min-width: 100%;
    width: 355px;
    height: 230px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAcwAAAGQCAYAAAAjl1AKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDphMGVmMzZmZi04YmI1LTRlN2YtOTcwMS04OTU5ZTg1N2ZhY2MiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDNDOTBDNUQ2OUJGMTFFOTkwMzY4RTI3NjZBQTdENkMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDNDOTBDNUM2OUJGMTFFOTkwMzY4RTI3NjZBQTdENkMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpjMmZmZjM0Mi05NjEyLTQwM2YtYWZhYS01MTE1ZjQ2NThmMWMiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDphYjlhMmUwMy1kNmIwLTY3NGMtODc4ZS0yMjUzMjdkNDI5OTciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz68UHLbAAAgpElEQVR42uzd2ZNc9dnY8TOL9gU0IAkjgwpkI8QOQmI1FS+FHW9VLt/7wpWb900qKV+lTL3vTZzElSvnJilfvM4fkQunfEOw2LUgiUUsNhiMAFsjtIzQrpmJnhOdoaent+np5SyfT1XXiJ4R0hz19Lef31l6ZHZ2NgEAWhu1CQBAMAFAMAFAMAFAMAFAMAFAMAFAMAEAwQQAwQQAwQQAwQQAwQQAwQQAwQQAMuP9/gNGRkZsZQAGop/v8WzCBIA8TJj9GFr9swGUYyAUTHEEoLvn+NxGdLwgG1BEAaoxYY7kNZ55C+bIEu4DoFixHGkT0JE8RTMvwWwXxRHBBKhMQGcbPN8PPZx5COZIh6EcEU+AQgex2fRYH8tm4RxqNIcdzGbxa/dROAGKOT3WhnCk5nOzTX5PbqI5zGB2Estmv24XTwDyO2HOtohi/f25ieawgtkqlvW/HukgnqIJULxY1v96tsV0OvRo5mkfZn0YR5tEs920CUB+o9kokvW3mQ6iWYkJc6RNLOtvo7/85S/X/eIXv/jntWvX/mjZsmVfGRsbG3eNWoCClvOq6enpy1f9/Ysvvvjfv/nNb/7zr3/96zM1oRxN2u/THHhAR/p5odr0D1gYtvpg1kdztObj6N///vf/NDEx8e/Gx8eXeZgBlM+VK1cunzhx4n9u3rz5n65Fc6Zm0my0dFs/tdbGuG9/z2FefL1ROOdi+ZOf/GTl1NTU/920adMvxBKgvOI5/upz/X+I5/x47q8bnEaSnByvMugJs1EkRxoEcyw23Lp16x72UAKojjNnzuxfv379N6/+crrBlDnbbsos44TZ7Mo+aTSPHTv2X8USoHriuT8a0GS6HOqUOewl2QW3OMBnYmLiHz1sAKopGhAtSFqfJTH4aA1pSbbRUmx6m5yc/O833njjv/GQAaiu48eP/6+NGzf+++TLg4AaLc0mSQWWZJuN1iNr1qz5vocKQLVdbcG/TnJ2cZpBBrPV1Xnmps1ly5Zt8lABqLarLdiYNL9YTbOmlCaY9fFsdHm8kbgogYcKQLVda0HTVpR9wuwonq7gA0CD418qtSTbzdQJQIW7macujOZgYwBA7psxmrONIKAA5LIN42XaIFeuXEmmpqaSixcvJjMzMx5qAMOYxEZHkxUrViTr16+P68T2shGVe3uvvohYTk5OCiXAkMXz8Pnz59PhZePGjb2IZj5eCJTlHygmS7EEyFc447m5NJNzWb6ReCUDQL5cuHBBMPP4SgaAfOn39coFEwBypjQH/bhCEAAmTAAQTAAQTAAQTAAQTABAMAFAMAFAMAFAMAFAMAFAMAFAMAFAMAEAwQQAwQQAwQQAwQSAAhkvyzcyMjLiXxMAEyYACCYACCYACCYACCYAIJgAIJgAIJgAIJgAIJgAIJgAIJgAIJgAgGACwBJ5ey8AMGECgGACgGACgGACgGACgGACgGACAIIJAIIJAIIJAIIJAIIJAKXg4usAYMIEAMEEAMEEAMEEAMEEAMEEAMEEAAQTAAQTAAQTAAQTAAQTAErBxdcBwIQJAIIJAAMzbhMA9cbGxpLx8fH0Fr8eHR1NP8auj+wWZmdn527T09PJzMxM+vHKlSvpLX4NggmUKpDLly9Pb8uWLUsD2YnaeMb/o14E9PLly8mlS5fSm4AimEDhRBRXrlyZ3mKSrHXmzJnk5MmTyalTp5IvvvgivV28eDG9RfQigukTyLUpdMWKFWls165dm96uv/76ZMOGDcn69evTz8UtxNR54cKF9BYxBcEEcivCtmrVqrmIZYGcnJxMPv300+Rvf/tbGsZMLLc2ky29nj9/Pv3vY8eOzft8/Bk33XRTsmXLlmTTpk3JunXr5qIaf0b8vpg8oQhGWv0w9OQP+PJ0j5Gaj9lttOYW6zljV/8+J7v5c+p/UIFkQbzWrFkzb5r88MMPk7/85S9pKOt18tzQ6msafe7mm29Otm3bltx2223zonv27Nl5kaZc4sVSl/3YcPXD9LXbTM1ttuaW1HxM+tk0wYSSi32SMdHFx5BNku++++7c0mqvItlpROPvsmPHjrnJM8TfJZZ+6/9OCKZgCib0VeyjjFDGPsrw+eefpxPlO++80/NpsptpM3PXXXelE+eNN96Y/nfs34xw2scpmIIpmNB3sfwa+wuzo13/9Kc/JXv37h1oJFt9vtH9jz32WLJ9+/b01xHL2K9qmVYwBVMwoW8/bxHKbKr8+OOPkwMHDqT7CPMwTbb7XEzEu3fvTrZu3To3bUY4+/08hWAKJlRInAcZp3HE/sE49ePgwYPpfsphT5OLnTRD7N/ctWtX+j3FPs2pqSnncArm0IPptBIogYjkddddly7BxkE9L7/8cseT2bCmyVb3HzlyJDl69Gjy1FNPpU+2cU7n6dOnHRDEUJVmwownCaiiOK8yJsv4WfvrX/+avPTSS+mpGkWZJlt9LibMiGYcFBRfE5Om8zaLZ+PGjaWYMF18HQosDu7JYvn+++8ne/bsaRnL7Lqv3Xy+9rqx3Xyu099Te398L88++2zy3nvvpd9jduUgGAZLslDgyTIO8ImQ/PnPf05eeeWVQk+Tre6PFwLxMY6ije85fm3SZNBMmFDEV7rj43OTZbNYFm2abHf/888/nx7ElE2a9de/BcEE5v/Qjo6mB/hky7D1sew2hJ3+3l4GdLH3x6SZLc9mBzmBYAILZNNVhOKjjz5Kj4btVQjzNE22uv+5555LPvjgg3kvHGAQxsv0RAJlFxdPj1NI4jJ3EctBnxLS632Tnd7fKJqxLTZv3pxe7CAupQcmTCCVvS1XiGXYZuckLnVizNM02ey++N4jmnExg7iqkSNnEUwgFSsoMUmF2Id34sSJjqPWj8/18/5O4xlvbp3tv41p0yoTggmkQYh9dnFt2FdffbWjqbCbyXCQU2Mn02S7qL7xxhvp+3nGtoltBIIJFRanT2QXU9+3b1/HU+FiJr28TpOdRPXFF19MP8Y2cqoJggkVVrsUGwe3DOKUkF6dKtLLabLZ/XHN3LfeemvetgLBhIqJg1liaoqjYltdnGBQ50cOI4jtvjZ+/cc//jF9x6LYVg4AQjChgrKjYuO8w35Nk0sJaK+j2s3XZuJNsmu3GQgmVEScRhITU0xOb7/9du5PCRnENNnqaw8dOpR89tln6TaLbQeCCRWRHejzySef5PpydYOcJuuXYuvvi7c3q912IJhQ9h/M0dH0ij7hnXfeyd00OYggtvvaRvcdPnx4bjp3nVl6zaXxIIfiwJV4TMf1YrO3scr75ery8LWxreIdTeJtwGLKPH/+vAcTJkwoezBDHOxjmmy/FFt7fwSzdhuCCRPK+ip2dDQ9cGVqaiqdMAc5NRZpmmx2X2yzuGze9ddfn27LmZkZDypMmFBG2RGecXTsoKfGok2TzX7/p59+Om9bgmBCCWUH+xw9ejT3R7q2+38sNZ7d/v4PP/xw3raEXrAkCzkNZjYl1YahmaUudy72/n4spfby98dF6gUTwYQSGxsbS4+Ojf2XFy9e7Hv4ihrEdvfF0bHZfszYpvG+mSCYULJghtOnTw88fGWL5+TkZBrMOIBKMOkF+zAhh8GM6ag+BHm++Hke92MeP3583jYFEyaU6RXstavTxIRpmlza12bb0BV/EMw6rvRDKX4gr70BcuzDbDRFDTuIRYpnbMNswvT8gGBCyWRP7OfOnRPEJX5ttg3FEsGEEgfzwoULhb/izrDjmV1HVjARTChxMOsv5yaei//aK1euCCaCCWUPZrzrhiAu/Z1LBBPBhJJbygE/4tn6qkggmFCSUMZEFJd0u3z5cqGClLe/a3bhdfFEMKHEwYxTIbIlxbIEbdDnlGYXLBBMBBNKGsxsOsqO8ixj/AYRz5UrVwomggllD+bq1asXXB4vD0Ea9u9fzP8jtqFg0kuuGQU5kl0kfP369fNiMKjrr/bjWrG9vNbsYq6Zm21DF17HhFnHoeOUQXb+5XXXXVf5pdil/j9iG2bb1PMDggklnTA3bNhQyCAO+mtb3b9x48Z5L0JAMKGEwYz3cazaOZK9jmcWzOyKPyCYUCIxDcWTfiwnxlGecU3ZPMQv79Nk/f2rVq1KJiYm0vtNmPSKg34gZ+KCBWHLli2FPDCn26/t9v/R6P9z6623ztuWIJhQQtkSYvak30lMlhq0QQSxl0fAtro/brfddtu8bQm9YEkWcjphfuUrX6nc1Xl6df9Xv/pVEyYmTCi72OcWB//Efsxt27a1nMSKuhTbr/tDTJc33HBDug3tv0QwoeSy68h+/etfL/xS7CDvj9s999wzbxtCr1iShZwGM470jAkzrivbi/fHHPTyar+XYht9LrbV3XffLZiYMKEqYikx2/9233335XqaHNaU2ehzDz/8cPoxtp3lWASTwjt+/LiN0IGLFy+mH7du3drz+PU6fIPYN9ns/trP3X777fO2HfSSa8ky8Fg+//zzyZNPPpls2rTJBmkhTomIA1fiaNkHHnggOXjw4IJINApHs6AM6msHcX+jz+3evTu55ZZb0m0W285zAiZMCh3LPXv2pO/zGNE8duyYjdJGdqWfOPin22kyr0fALnaKbfe5u+66a942A8Gk8LHMntREs73YFxcT00033ZR885vfzEUQlxq9pQS02ee+973vJTfffHO6rZx7iWBSmljWTk+i2d65c+fSj/fee2+ybt26wl6urpcBrf1cvO/lQw89NG9bgWBSyFhGFOtjKZqdi6kpO0XiqaeeGug02cvL1fXi9zT6fU8//XT6MbaRN4tGMCl0LNu96s+iOTk5aaM1ES84IhJf+9rXkm9961uluMBAN9Nk/ed37dqVbN++Pb2/2YsyEExKEcvaaMayrWgmTYORbcs4LzN7r8eiXK6uV9NkrXiT7XjxUPuCAgSTQsYynsTi0P5Ob3HunEmzuTiYJTu/8Dvf+U4yPj5eqWmy9vPxvf/4xz9OP8ZSrKv6IJgUOpbdsDzbfvtkR81+97vfXXTI8nKBgW4/l30+YhnvSBLbwlIsgkkhY/nCCy8s+QlMNJuLYJw9ezb9eMcdd8xFMy9TZi8/1+zPi1ju2LFj3raAQRjp94Ot5mobIzUfs9tozW0sblf/Pie7+XNOnz7tX3OIIm69iGWtlStXuiJQE2NjY8maNWvSn6833ngj+cMf/tAwNs0i1Iv7h/G5H/7wh+lVj7JYOiq2GOKt6rrsx4arH6av3WZqbrM1t6TmY19fQJkwyWUss0kz/r9OOVkoQhEHAcWTQ5yfWTtplmmarPWDH/xgLpbxvYslgyaYLEm2DBtxW8wBPos5EEg0G4vrpWZHh0Y042o3ebtcXSch7OTzP/rRj5IHH3xw7vSR+N5BMClULGNfY7+v3SmazcWRs9mkGW+cnB05mofL1S31SNjsaNif/vSnyf333z83Wbr0HcNiHya5jmWtFStW2KfZRO0+zU8++ST5/e9/n5w8eXIuPq2mt8Xcv5TPLfbzExMT6QuAeAcS+yyLrSz7MAWTrmLZj32WncgOBMpO3OdLo6OjyerVq9N4Rliee+65ZP/+/T0J3lJC2M3vjSv4fPvb306WLVs2t7/WG0ILpmAKpliKZk9/3mL7LF++PP3v9957L3n22WfTn488T5O1T6xxbdg777wz/e+4IEGsYjh1RDAFUzALGcs8vN9gtjwrmo3FZLZq1aq5n7948+n6U0+GMU22+prvf//7yc6dO+e+Jl6U2V8pmIIpmGIpmgOfNj/99NPk7bffTvbu3ZuLaTLzyCOPJHfffXeyZcsWU6VgCqZgFtvnn38+9GVY0exeHGka4Yx9m+Ho0aPJBx98kOzbty+NU7+WZFt9Tfy77d69O9m2bVt6UE+IfZURSqeMCKZg9jmYU1NTHpV9nCzzfL3OiMETTzzh6NkOwhmhysIZ3n333eTNN99MPw5imox9k3H6S1zaLhOhjFOHhLK84k2+BVMwxVI0CxnO2McZt9pVhI8//jh5//33k48++mjBv3m302TsR926dWv6Pp633nprcsMNN8x9LvZPxk0oBVMwBbPwsXzxxRcL9U4QlmcX/7OZhbN26swCGheKiNupU6fSW5zakV1lJ3s7rez3xwuWOA/0+uuvT2/xb7B58+Z5gcymySyU9lEKpmAKpljmYNIUzcWJczhj8oxwxsean9slieeXCGyEMj46l1IwBVMwSyMmi4hlTBNFJZq9CWjEMz5mt+z6vrU/19nzR3YpuwhidotICiSCKZiljmUZ3pA3lmdFEwSzpy8k/VNStliGOOoyvh9vQg0IJmLZQTRfeukl0QQEE7FsJ06EF01AMFlyLCMm/Xrz57zcskkzjv4FEEy6imVZJ8t62T5N0QS6VZqjZM+cOeNfcxGxLPMybCtxysnjjz/u6FkYoHXr1nXbD0fJIpbDYp8mYMI0YXYcyzy9RdewxHmaJk0wYZowaRjL7AAfnHICCCYtYlnVZdhW0Xz55ZdFExBMxLKdmLgjmo6eBdqxD7PETpw4IZYdyvZp3njjjTYG9Jh9mIhlibi4AVCZCfOLL77wr3mNA3yWNmk+9thjjp6FHlq7dq0JE7Es46TpQCBAMCsQy3iyF0vRZPg8fgSTnMfSPsveRfOVV17xpEdXYl/4888/nxw7dszGKBH7ME2WtJDt03T0LIuJ5Z49e9IXr3Ht4m984xvJpk2bKr1N7MMkF+JoWLHs76TpPE26iWWIn0uTZnkIplgimvQhlhnRFExyEkv7LEWTfMQyotjszdjj8fPCCy+IZsHZh2myZBFin+ajjz5qnyYLYtnJi9fYp/nkk09Wbp9mWfZhliaYZ8+ercQDzwE++YmmixsQR1F3GsvaaFbtQKA1a9aUIpiWZAsWyzjVQSyHyykn1May2TJss1s8fuzTLCbBLFgs7bMUTfIVy24fP6JZPJZkC8A+y/yyT7OasYwDeHrx4rUq+zQtySKWzE2ajp4Vy27Ez7WjZ4tDMMUS0WQIsRTN4rEkm+NYOsCnWGJ59pFHHrE8W0K151n2SyzPPvHEE6VcnrUki1iyYNJ89dVXTZpi2fWk+eKLL5o0c0wwxRLRZMixFE3BRCxFk0LHMvYtDvrnUTTzqzT7MM+dO1fof4g4zzKeZMWyPOzTLK5+HeCzGGU65WT16tXd9sM+TMTSpEneY7nYK/j0+haPH5NmvgjmkMUyrFiWO5p79+4VzQLGMg8sz+aLJVmxZABieXb37t2WZ3Ms22eZx8tPFv2UE0uyiCUmTbE0aVaIYIolA4zmvn37RFMsRVMwEUs6edITzfzFctgH+DgQqBjswxxwLGNZTizJ9mnecMMNNsYQYxnxKeJb5mX7NIvyJub2YSKWdC3bpxmnFDF4sd0jlkWZLJtNmt6P1YRZugnz5MmT6TJsPMih1vLly02aQ4plGd6MPSbNxx9/PPeTZlkmzNIEM68PfpMl7cTy7K5du5xyMgBFXoZtF808n3KyatWqUgTTkqxYMmSOnhXLpYjnl5deesny7ACYMPscS8uwdMrybP9jWeYXr7FSkdcDgUyYiCU9denSJQcC9SmWMYGVfaUnnm9Mmv0lmH2IZSyviSXdRjMeP6LZ21iWbRm2Gcuz/WVJVizJoViejQOBLM+KZTfydvRsWZZkBVMsEc3SqT3Psqpin2ZeomkfJnPiPMv9+/eLJT0Vy7PxuLI8K5bdiOejl19+2fKsCTM/E2bE0mRJvyfNhx9+2KQpll2J5dnHHntsqJOmJVnBFEsGGs1Ynp2YmLAxWsSyCkfDdiNbnh3WxTEsyVacWDJI2fJs7CtHLBcrO+XExTFMmKlB/qDEk5Z9lgxr0rQ8O19VzrPshWEtz8afa8KsILEkD5OmA4HEstvBwoFAJsyB/MBYhiUvYp/Uzp07Kz1pWoZd2uNnkJOmCbNixJI8icfhgQMHKjtpiuXSHz8mTRNm32JpGZY8in2aVZs0xbK3k9+jjz7a90nThFmhyVIsyavYpxmTZlWOno1YxmQklr0R2/GVV15x9KwJUyyp1qQZR8+W+TxNseyfbJ9mv87TLMuEKZgtYhmv3MWSIkUzlmfLGE2xLHY0LcmWmFhSRGVdnhXLwcgOBLI8K5hiiWgWUHwfsY9NLAcXTfs0W0y8lmS/dOrUqXSfZTzpQJHF8uxDDz1U6OXZiKXJcjhieTaOnu3V8qwl2ZKJWMYrc7GkLJPmwYMHCztpiqVJM48EsyaWlmEp25NeEaMplqKZV6VZku02drHP8rXXXhNLSqtIy7NxgE88SQ/r/W1ZKLu4wVKWZ2OJt8t+OK0kL8EUS6oinrAefPDBXEczi6XJMp+Pn6VEsyzBrOySrFhSJXlfnhXL/D9+LM9WdMKMfZZiSRXF8mzeJs3s1BHLsOWdNC3JFjSYYoknvRXJAw88kItoOs+ymI+fRx55ZFHRFMwCBjOLpVNHMGkuH3o0xbI60bQPs2AilrEPRyzh/5+neejQoXRf/rBi+eqrr4plQcWAEv9+VdunWYlgZrG0DAvDj2YWS/ssix/NvXv3VupNzEu/JCuW0Fq2T3PDhg0mS7p6/MTybKs3MbcPswDBPH36tH2W0IFsn2Y/oxmTrH2W1YymYOY8mBFLkyXkI5oRS5Nl+aO5e/fuhtF00E/ORJizm1jC4tXu06z9eVrqTSyroXafZv1joDSdKcuEmS27OhoW8jNp2mdZ3Umz9pSTeEyVYcIsVTAjlvEK2WQJw49mxDImDrGsZjR37do1F03BzFkwjx07lsbSZAm9sWzZsq6jKZbURrMswSzNPkyxhN66fPlycvjw4UWfpymWhFjp27dvX6nO0yxNMMUS+vNztZhoiiX10YzHQ1mMl+UbKdORWJDHSfP+++9vuTwbUY2JIp4k/TxSxmFm1D8n0Gk0m02acb/JkrITTKDjaL7++uvp0ehiiWACtBDLa0eOHEmmp6fFksqxDxPoWJxqct999yVjY2NzsbTPEhMmQF0sd+7cmaxdu3beAT4gmADXxInnEct169bNxdIyLFVjSRZoO1k+9NBDaSzjPEuxRDABWsQyJsv9+/fbZ0llWZIFOoqlyRITZkl4xQu9j2XtAT5iiWACtImlZViwJAu0iGW2zxKwJAtkTwbj4wtiaRkWShhMYGmT5YMPPpjGMq4V62hYWMiSLIjlvFi6gg+UfML0Shi6eAIYH284WQIlDiaw+MnygQcesAwLJkygVSzvv//+BVfwAUyYQIPJUixBMIEOYnngwIH0TaGt0ECFgukHHtrHMpZha2NpsoTOOa0ExBKo0oQJtI9lHA372muvWYaFKgfTDz80+AEfH58XS5MlCCbQYLK877775k4dMVnC0tiHCRWJpckSTJgpr5rh2g/1+LhYgmACnUyW2dGwBw8eFEsQTKCTWFp9AcGcx5MClf5BvrYMa7KE/nHQD4glUKUJE6oolmHvvffeufMsDx065NQRMGECrWJpsgQTZke8oqZSP7jj42IJggm0myzvueeeebG0DAuCacKEusmyUSwBwQRqYhnLsGvWrJl3gA8wGA76gYLG0j5LMGECNbJ9llksDx8+bJ8lCGb3PHlQ1smyPpYmSxgOS7JQgFiePn1aLMGECdSLZdi777577mhYy7AgmD3jiYQyTZb1sTRZgmACdbG0zxIEE2ghW4Z1NCwIZl95UqHok2WjWAL54ShZyFksX3/9dbEEwQSaxTJOHYlY2mcJOf15tQkgH7G0zxIEcyA8yVC0WN51110LYgkIJtAklrEMe/nyZS/6IOfsw4Qhx9JkCSbMgfLqnKLEcvXq1WIJggl0Ess33njDMiwUjCVZGEIsTZZgwhwar9TJayx37NghlmDCBDqN5ZtvvimWYMI0YUJ9LO+8884FsfQ4BRMmUDdZxqkjU1NTyVtvvWWyBBMm0CiWJksQzNzyhEQeYtloGRYoB0uy0IdYWoYFwQQ6iKW36ALBBMQSqvnzXpZvxD5MhhHL7du3L1iG9VgEE2aujY2N+ddkKLGMU0eOHDlinyWU/Lm5NBPm+vXrk5MnT3p0MvBYmiyhuYmJCcHMm1tuuSU5c+ZMMj097RFKX18tN4ol0PjF5W233Vaa72dkdna2v3/Al6+6R2o+ZrfRmlvM7WNX/z5dj4kXLlxIjh49mj6RCSf9+OG/4447xBI6eGEZk2XEMn5eltCPDVc/TF+7zdTcZmtuSc3HpJ9Ny0MwR67FMn49vpRgAlAe14J55Vokp6+FcWjBzMtBPwu+aQAqL1dtGM3JxgCAXDdjNGcbQkAByGUXRvO2Qaanp0UToOJmZmZyF85hBbPRN5/ed+UqDxWAart8+fKVVq0oezAb7bydrdsAsxcuXJj0UAGotnPnzk0mLY6GTYZwQFBelmTnfn3mzJnfe6gAVNupU6f+T5NADk2eTitJb7/97W//+eoo7qoDABV16dKl6d/97nf/1GDCHKpBXrgg/c8GHxdc9efEiRP/bcOGDf/Wwwagej744IP/sW3btv+YdHZ1n3kRK8uVfmpDWR/LBVf+OX/+/HMrV67c6aEDUB3Hjh07sHnz5n+VNL+yT/3EObBgDnpJttnRTvW3mZ/97GdPX7hw4S0PH4BqmJycPPLzn//86RaRnG3TlP4OgAOeMJtNmUndhDm3RHvixIn/snr16n9YsWLFMg8ngPK5Ohxd/uyzz357++23P5MsXIKdSRaeUdE0mGW/luxsk4kzvdjuxMTEM7/61a9uPXr06L9MTU19dunSpSv9jjwA/RMXJbh48eKVkydPfvbhhx/+yzPPPHPr1Vj+MvnyXUnaLr0OwzAmzEZTZu202ektafARgHxqdLDOYm5JJwHtZ9PGc7IRRxpsiFaRHGkRXgDyGctGwUzaBDI371gyPsSNN9Immo3imYglQKmimXQQyaEe7JOHCbNVNEeabKDa++sjKZoA+Y9lJ/HMXSyHHczFTpr1X18fTkcCAZQnnLmKZR6C2SyaSdJ+iTYXGxCAvsUzN7HMSzAbRbCTcAJQnmC2imIuGjCew4030mZDCShAeaOZu1DmMZiNNtBI3jcgAAONqGAuYsM5GhZAHAWzbBsYgHIYtQkAQDABoCf6viTrnUUAMGECgGACAIIJAIIJAIIJAIIJAIIJAIIJAIIJAIIJAAgmAAgmAAgmAAgmAAgmAAgmAAgmACCYACCYACCYACCYACCYAFB0/0+AAQDHHxQEMMRIrwAAAABJRU5ErkJggg==);
    background-size: auto 70%;
    background-position: 50% 30%;
    background-repeat: no-repeat; }
    .k-spreadsheet-insert-image-dialog label div {
      display: flex;
      align-self: flex-end;
      margin-bottom: 30px;
      pointer-events: none; }
    .k-spreadsheet-insert-image-dialog label input {
      display: none; }
  .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image {
    background-size: auto 90%;
    background-position: 50% 50%; }
    .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover div,
    .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-state-hovered div {
      margin: 0;
      align-self: center;
      opacity: 1; }
    .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image div {
      opacity: 0; }

.k-spreadsheet-drawing {
  position: absolute;
  box-sizing: border-box;
  z-index: 101; }
  .k-spreadsheet-drawing.k-spreadsheet-active-drawing {
    outline-style: solid;
    outline-width: 2px; }
  .k-spreadsheet-drawing .k-spreadsheet-drawing-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: move; }
  .k-spreadsheet-drawing .k-spreadsheet-drawing-handle {
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 1px;
    position: absolute;
    transform: translate(-50%, -50%); }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.N {
      left: 50%;
      top: 0;
      cursor: ns-resize; }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.NE {
      left: 100%;
      top: 0;
      cursor: nesw-resize; }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.E {
      left: 100%;
      top: 50%;
      cursor: ew-resize; }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.SE {
      left: 100%;
      top: 100%;
      cursor: nwse-resize; }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.S {
      left: 50%;
      top: 100%;
      cursor: ns-resize; }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.SW {
      left: 0;
      top: 100%;
      cursor: nesw-resize; }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.W {
      left: 0;
      top: 50%;
      cursor: ew-resize; }
    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.NW {
      left: 0;
      top: 0;
      cursor: nwse-resize; }

.k-rtl .k-spreadsheet .k-dirty,
.k-spreadsheet[dir="rtl"] .k-dirty {
  right: 0;
  left: auto; }

.k-rtl .k-spreadsheet .k-spreadsheet-has-comment::after,
.k-spreadsheet[dir="rtl"] .k-spreadsheet-has-comment::after {
  left: 0;
  right: auto; }

.k-spreadsheet {
  background-clip: padding-box; }
  .k-ie11 .k-spreadsheet,
  .k-edge12 .k-spreadsheet,
  .k-edge13 .k-spreadsheet {
    background-clip: border-box; }

.k-syntax-ref {
  color: #ff8822; }

.k-syntax-num {
  color: #0099ff; }

.k-syntax-func {
  font-weight: bold; }

.k-syntax-str {
  color: #38b714; }

.k-syntax-error {
  color: red; }

.k-syntax-bool {
  color: #a9169c; }

.k-syntax-startexp {
  font-weight: bold; }

.k-syntax-paren-match {
  background-color: #caf200; }

.k-spreadsheet-cell-editor {
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-spreadsheet .k-selection-full,
.k-spreadsheet .k-selection-partial {
  background-color: rgba(82, 160, 255, 0.25); }
  .k-spreadsheet .k-selection-full::after,
  .k-spreadsheet .k-selection-partial::after {
    display: none; }

.k-spreadsheet-selection {
  border-color: #0735cc;
  background-color: rgba(82, 160, 255, 0.25);
  box-shadow: inset 0 0 0 1px #0735cc; }

.k-spreadsheet .k-single-selection::after {
  border-color: #ffffff;
  background-color: #0735cc; }

.k-spreadsheet-active-cell {
  box-shadow: inset 0 0 0 1px #0735cc;
  background-color: var(--sg-bg-color, #ffffff); }
  .k-spreadsheet-active-cell.k-right {
    box-shadow: inset 0 0 0 1px #0735cc, inset -1px 0 0 1px #0735cc; }
  .k-spreadsheet-active-cell.k-bottom {
    box-shadow: inset 0 0 0 1px #0735cc, inset 0 -1px 0 1px #0735cc; }
  .k-spreadsheet-active-cell.k-bottom.k-right {
    box-shadow: inset 0 0 0 1px #0735cc, inset -1px -1px 0 1px #0735cc; }

.k-spreadsheet .k-auto-fill {
  border-color: #0735cc;
  background-color: rgba(82, 160, 255, 0.25);
  box-shadow: inset 0 0 0 1px #0735cc; }

.k-spreadsheet .k-auto-fill-punch {
  background-color: rgba(255, 255, 255, 0.5); }

.k-spreadsheet .k-resize-handle,
.k-spreadsheet .k-resize-hint-handle,
.k-spreadsheet .k-resize-hint-marker {
  background-color: #0735cc; }

.k-spreadsheet-has-comment::after {
  border-color: #0735cc #0735cc transparent transparent; }

.k-dirty {
  border-color: #d51923 transparent transparent #d51923; }

.k-spreadsheet .k-filter-range {
  border-color: #0735cc; }

.k-spreadsheet-filter {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }

.k-spreadsheet-insert-image-dialog {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 6px; }
  .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover, .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-state-hovered {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    border-radius: 6px; }
  .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover div,
  .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-state-hovered div {
    color: #ffffff; }

.k-spreadsheet-drawing.k-spreadsheet-active-drawing {
  outline-color: #0735cc; }

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle {
  border-color: #0735cc;
  background-color: #0735cc;
  border-radius: 4px; }

.k-spreadsheet-drawing-anchor-cell {
  background: rgba(82, 160, 255, 0.25); }

.k-rtl .k-spreadsheet .k-spreadsheet-has-comment::after,
.k-spreadsheet[dir="rtl"] .k-spreadsheet-has-comment::after,
[dir="rtl"] .k-spreadsheet .k-spreadsheet-has-comment::after {
  border-color: #0735cc transparent transparent #0735cc; }

.k-rtl .k-spreadsheet .k-dirty,
.k-spreadsheet[dir="rtl"] .k-dirty,
[dir="rtl"] .k-spreadsheet .k-dirty {
  border-color: #d51923 #d51923 transparent transparent; }

.k-treeview {
  padding: 0 0;
  border-width: 0;
  background: none;
  line-height: 1.42857;
  cursor: default;
  overflow: auto;
  white-space: nowrap; }
  .k-treeview .k-content,
  .k-treeview > .k-group,
  .k-treeview .k-item > .k-group {
    margin: 0;
    padding: 0;
    background: none;
    list-style: none;
    position: relative; }
    .k-treeview .k-content.ng-animating,
    .k-treeview > .k-group.ng-animating,
    .k-treeview .k-item > .k-group.ng-animating {
      overflow: hidden; }
  .k-treeview .k-top,
  .k-treeview .k-mid,
  .k-treeview .k-bot {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center; }
  .k-treeview .k-item {
    outline-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    border-width: 0;
    display: block; }
  .k-treeview .k-in {
    border-radius: 0;
    margin: 0;
    padding: 4px 8px;
    border: 0 solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    align-content: center;
    vertical-align: middle;
    position: relative; }
  .k-treeview .k-in.k-state-focused {
    z-index: 1; }
  .k-treeview .k-i-expand,
  .k-treeview .k-i-collapse {
    margin-left: -16px;
    cursor: pointer; }
  .k-treeview .k-i-drag-and-drop {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1000; }
  .k-treeview .k-in .k-icon,
  .k-treeview .k-in .k-image,
  .k-treeview .k-in .k-sprite {
    margin-right: 4px; }

.k-rtl .k-treeview .k-item,
.k-treeview[dir="rtl"] .k-item {
  padding-left: 0;
  padding-right: 16px; }

.k-rtl .k-treeview .k-i-expand,
.k-rtl .k-treeview .k-i-collapse,
.k-treeview[dir="rtl"] .k-i-expand,
.k-treeview[dir="rtl"] .k-i-collapse {
  margin-left: 0;
  margin-right: -16px; }

.k-rtl .k-treeview .k-in .k-icon,
.k-rtl .k-treeview .k-in .k-image,
.k-rtl .k-treeview .k-in .k-sprite,
.k-treeview[dir="rtl"] .k-in .k-icon,
.k-treeview[dir="rtl"] .k-in .k-image,
.k-treeview[dir="rtl"] .k-in .k-sprite {
  margin-left: 4px;
  margin-right: 0; }

.k-treeview {
  color: var(--sg-text-color, #000000); }
  .k-treeview .k-in:hover,
  .k-treeview .k-in.k-state-hover {
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-color-legacy-ededed, #ededed); }
  .k-treeview .k-in.k-state-selected {
    color: #ffffff;
    background-color: #0735cc; }
  .k-treeview .k-in.k-state-focused {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-pivot {
  position: relative; }
  .k-pivot .k-grid td {
    white-space: nowrap; }
  .k-pivot .k-grid-content {
    flex: 1 1 auto; }

.k-pivot-toolbar {
  padding: 8px;
  border-bottom-width: 1px;
  border-bottom-style: solid; }

.k-pivot-toolbar .k-button,
.k-fieldselector .k-list li.k-item {
  border-radius: 6px;
  padding: 4px 8px;
  padding-right: 48px;
  min-height: auto;
  font-size: 14px;
  line-height: 1.42857;
  text-align: left;
  position: relative;
  cursor: move;
  white-space: normal; }

.k-settings-rows .k-button,
.k-settings-columns .k-button,
.k-settings-measures .k-button {
  margin-right: 8px;
  margin-bottom: 2px; }

.k-field-actions {
  position: absolute;
  right: 4px;
  top: 4px;
  line-height: 1;
  cursor: pointer; }

.k-pivot-layout {
  border-spacing: 0;
  table-layout: auto; }

.k-pivot-layout > tbody,
.k-pivot td {
  vertical-align: top; }

.k-pivot-layout > tbody > tr > td {
  padding: 0; }

.k-pivot-rowheaders > .k-grid,
.k-pivot-table > .k-grid {
  border-width: 0; }

.k-pivot-rowheaders > .k-grid td:first-child,
.k-pivot-table .k-grid-header .k-header.k-first {
  border-left-width: 1px; }

.k-pivot-rowheaders > .k-grid td.k-first {
  border-left-width: 0; }

.k-pivot-rowheaders > .k-grid {
  overflow: hidden; }

.k-pivot-table {
  border-left-width: 1px;
  border-left-style: solid; }

.k-pivot-table .k-grid-header-wrap {
  margin-right: -1px; }

.k-pivot-table .k-grid-header-wrap > table {
  height: 100%; }

.k-pivot .k-grid-header .k-header {
  vertical-align: top; }

.k-pivot .k-grid tr .k-grid-footer {
  border-bottom-width: 0; }

.k-pivot .k-grid tr:last-child:not(.k-grid-footer) td:not(.k-grid-footer) {
  border-bottom-width: 1px; }

.k-pivot-layout .k-grid td {
  border-bottom-width: 1px; }

.k-pivot-layout .k-grid-footer > td {
  border-top-width: 0; }

.k-pivot-filter-window .k-treeview {
  max-height: 600px; }

.k-i-kpi-trend-increase,
.k-i-kpi-trend-decrease,
.k-i-kpi-trend-equal {
  color: inherit; }

.k-i-kpi-status-hold {
  color: #fdce3e; }

.k-i-kpi-status-deny {
  color: #d51923; }

.k-i-kpi-status-open {
  color: #5ec232; }

.k-fieldselector .k-columns {
  display: flex;
  align-items: stretch; }
  .k-fieldselector .k-columns > div {
    padding: 8px;
    width: 50%;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    float: left;
    overflow: auto; }
  .k-fieldselector .k-columns > div + div {
    border-left-width: 1px; }

.k-fieldselector p {
  margin: 0 0 2px;
  text-transform: uppercase; }

.k-fieldselector p .k-icon {
  margin: 0 4px 0 0; }

.k-fieldselector .k-treeview {
  border-width: 0;
  overflow: visible; }

.k-fieldselector .k-edit-label {
  width: 16%; }

.k-fieldselector .k-edit-field {
  width: 77%; }

.k-fieldselector .k-edit-buttons > input,
.k-fieldselector .k-edit-buttons > label {
  float: left;
  margin-top: .4em; }

.k-fieldselector .k-list-container {
  margin-bottom: 1em;
  padding: 2px;
  border-width: 1px;
  border-style: solid; }

.k-fieldselector .k-list {
  padding-bottom: 1em; }

.k-fieldselector .k-list .k-item {
  border-width: 1px;
  border-style: solid; }

.k-fieldselector .k-list .k-item + .k-item {
  margin-top: 0.5em; }

.k-ie11 .k-pivot-layout {
  width: 100%;
  table-layout: fixed; }

.k-ie11 .k-pivot-layout > tbody > tr > td:first-child {
  width: 280px; }

.k-alt,
.k-pivot-toolbar,
.k-pivot-layout > tbody > tr:first-child > td:first-child {
  background-color: #f6f6f6; }

.k-fieldselector .k-list-container {
  background-color: var(--sg-bg-color, #ffffff); }

.k-pivot-toolbar,
.k-pivot-table,
.k-fieldselector,
.k-fieldselector .k-list-container,
.k-fieldselector .k-columns > div,
.k-pivot-rowheaders > .k-grid td:first-child,
.k-pivot-table .k-grid-header .k-header.k-first {
  border-color: rgba(0, 0, 0, 0.08); }

.k-pivot-rowheaders .k-alt .k-alt,
.k-header.k-alt {
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-pivot-toolbar .k-button,
.k-fieldselector .k-list li.k-item {
  background-clip: padding-box; }
  .k-ie11 .k-pivot-toolbar .k-button,
  .k-edge12 .k-pivot-toolbar .k-button,
  .k-edge13 .k-pivot-toolbar .k-button, .k-ie11
  .k-fieldselector .k-list li.k-item,
  .k-edge12
  .k-fieldselector .k-list li.k-item,
  .k-edge13
  .k-fieldselector .k-list li.k-item {
    background-clip: border-box; }
  .k-pivot-toolbar .k-button:active, .k-pivot-toolbar .k-button.k-state-active,
  .k-fieldselector .k-list li.k-item:active,
  .k-fieldselector .k-list li.k-item.k-state-active {
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--sg-text-color, #000000);
    background-color: #f6f6f6;
    background-image: linear-gradient(to top, #f6f6f6, #f1f1f1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06); }
  .k-pivot-toolbar .k-button:focus, .k-pivot-toolbar .k-button.k-state-focused,
  .k-fieldselector .k-list li.k-item:focus,
  .k-fieldselector .k-list li.k-item.k-state-focused {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }
  .k-pivot-toolbar .k-button.k-empty,
  .k-fieldselector .k-list li.k-item.k-empty {
    color: #bababa; }
  .k-pivot-toolbar .k-button .k-setting-delete,
  .k-fieldselector .k-list li.k-item .k-setting-delete {
    color: #bababa; }

.k-pivot-toolbar .k-empty {
  color: #bababa; }

.k-pivot-layout .k-grid-footer,
.k-pivot-layout .k-grid .k-alt {
  color: black;
  font-weight: bold; }

.k-fieldselector .k-i-loading {
  border-color: #f6f6f6; }

.k-fieldselector .k-i-loading::before,
.k-fieldselector .k-i-loading::after {
  background-color: #f6f6f6; }

.k-treelist.k-display-block.k-grid-lockedcolumns {
  display: block; }

.k-treelist .k-status {
  padding: .4em .6em;
  line-height: 1.6em; }
  .k-treelist .k-status .k-loading {
    vertical-align: baseline;
    margin-right: 5px; }

.k-treelist tr.k-hidden {
  display: none; }

.k-treelist .k-treelist-dragging,
.k-treelist .k-treelist-dragging .k-state-hover {
  cursor: default; }

.k-treelist .k-drop-hint {
  position: absolute;
  z-index: 10000;
  visibility: hidden;
  width: 80px;
  height: 5px;
  margin-top: -3px;
  background-color: transparent;
  background-repeat: no-repeat; }

.k-drag-separator {
  display: inline-block;
  border-right: 1px solid;
  height: 1em;
  vertical-align: top;
  margin: 0 .5em; }

kendo-scrollview.k-scrollview-wrap,
div.k-scrollview {
  position: relative;
  overflow: hidden;
  outline: 0;
  display: block; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview,
  kendo-scrollview.k-scrollview-wrap ul.k-scrollview-wrap,
  div.k-scrollview .k-scrollview,
  div.k-scrollview ul.k-scrollview-wrap {
    list-style-type: none;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    cursor: default; }
    kendo-scrollview.k-scrollview-wrap .k-scrollview img,
    kendo-scrollview.k-scrollview-wrap ul.k-scrollview-wrap img,
    div.k-scrollview .k-scrollview img,
    div.k-scrollview ul.k-scrollview-wrap img {
      user-select: none; }
    kendo-scrollview.k-scrollview-wrap .k-scrollview > li,
    kendo-scrollview.k-scrollview-wrap ul.k-scrollview-wrap > li,
    div.k-scrollview .k-scrollview > li,
    div.k-scrollview ul.k-scrollview-wrap > li {
      display: inline-block;
      overflow: hidden;
      position: absolute;
      top: 0;
      left: 0; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable,
  kendo-scrollview.k-scrollview-wrap .k-scrollview-nav,
  div.k-scrollview .k-scrollview-pageable,
  div.k-scrollview .k-scrollview-nav {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    list-style: none;
    position: absolute;
    left: 0;
    bottom: 20px;
    pointer-events: none; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-button,
  kendo-scrollview.k-scrollview-wrap .k-scrollview-nav > li.k-link,
  div.k-scrollview .k-scrollview-pageable > li.k-button,
  div.k-scrollview .k-scrollview-nav > li.k-link {
    margin: 0 20px;
    padding: 0;
    width: 8px;
    height: 8px;
    box-sizing: content-box;
    display: inline-block;
    position: relative;
    flex: 0 0 8px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all; }
    kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-button::before, kendo-scrollview.k-scrollview-wrap .k-toolbar .k-scrollview-pageable > li.k-picker-wrap::before, .k-toolbar kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-picker-wrap::before, kendo-scrollview.k-scrollview-wrap
    .k-toolbar .k-scrollview-pageable > li.k-dropdown-wrap::before,
    .k-toolbar kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-dropdown-wrap::before,
    kendo-scrollview.k-scrollview-wrap .k-scrollview-nav > li.k-link::before,
    div.k-scrollview .k-scrollview-pageable > li.k-button::before,
    div.k-scrollview .k-toolbar .k-scrollview-pageable > li.k-picker-wrap::before, .k-toolbar
    div.k-scrollview .k-scrollview-pageable > li.k-picker-wrap::before,
    div.k-scrollview
    .k-toolbar .k-scrollview-pageable > li.k-dropdown-wrap::before,
    .k-toolbar
    div.k-scrollview .k-scrollview-pageable > li.k-dropdown-wrap::before,
    div.k-scrollview .k-scrollview-nav > li.k-link::before {
      content: "";
      width: 28px;
      height: 20px;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-button::before, kendo-scrollview.k-scrollview-wrap .k-toolbar .k-scrollview-pageable > li.k-picker-wrap::before, .k-toolbar kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-picker-wrap::before, kendo-scrollview.k-scrollview-wrap
  .k-toolbar .k-scrollview-pageable > li.k-dropdown-wrap::before,
  .k-toolbar kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-dropdown-wrap::before,
  div.k-scrollview .k-scrollview-pageable > li.k-button::before,
  div.k-scrollview .k-toolbar .k-scrollview-pageable > li.k-picker-wrap::before, .k-toolbar
  div.k-scrollview .k-scrollview-pageable > li.k-picker-wrap::before,
  div.k-scrollview
  .k-toolbar .k-scrollview-pageable > li.k-dropdown-wrap::before,
  .k-toolbar
  div.k-scrollview .k-scrollview-pageable > li.k-dropdown-wrap::before {
    pointer-events: initial;
    border-radius: 0; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-next,
  kendo-scrollview.k-scrollview-wrap .k-scrollview-prev,
  div.k-scrollview .k-scrollview-next,
  div.k-scrollview .k-scrollview-prev {
    display: table;
    position: absolute;
    padding: 0;
    height: 60%;
    top: 20%;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-prev,
  div.k-scrollview .k-scrollview-prev {
    left: 0; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-next,
  div.k-scrollview .k-scrollview-next {
    right: 0; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-next span,
  kendo-scrollview.k-scrollview-wrap .k-scrollview-prev span,
  div.k-scrollview .k-scrollview-next span,
  div.k-scrollview .k-scrollview-prev span {
    display: table-cell;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    font-size: 4.5em;
    font-weight: normal; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-elements,
  div.k-scrollview .k-scrollview-elements {
    width: 100%; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-animation,
  div.k-scrollview .k-scrollview-animation {
    transition-duration: .3s;
    transition-timing-function: ease-in-out; }

div.k-scrollview div.k-scrollview-wrap {
  white-space: nowrap; }
  div.k-scrollview div.k-scrollview-wrap > [data-role="page"] {
    vertical-align: top;
    display: inline-block;
    min-height: 1px; }

div.k-scrollview .k-scrollview-nav-wrap {
  position: absolute;
  bottom: 15px;
  left: 10px;
  right: 10px;
  height: 20px;
  overflow: hidden; }
  div.k-scrollview .k-scrollview-nav-wrap .k-scrollview-nav {
    margin: 0;
    padding: 5px 0 0 0;
    display: block;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    text-align: center;
    list-style: none;
    position: static;
    pointer-events: initial; }
    div.k-scrollview .k-scrollview-nav-wrap .k-scrollview-nav > li {
      vertical-align: top; }

@supports (-webkit-user-select: none) {
  kendo-scrollview.k-scrollview-wrap ul.k-scrollview li > *,
  div.k-scrollview ul.k-scrollview-wrap li > * {
    pointer-events: auto; } }

@supports not (-webkit-user-select: none) {
  kendo-scrollview.k-scrollview-wrap ul.k-scrollview li > *,
  div.k-scrollview ul.k-scrollview-wrap li > * {
    pointer-events: none; } }

kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-button,
kendo-scrollview.k-scrollview-wrap .k-scrollview-nav > li.k-link,
div.k-scrollview .k-scrollview-pageable > li.k-button,
div.k-scrollview .k-scrollview-nav > li.k-link {
  border-color: rgba(0, 0, 0, 0.08);
  background-color: #f6f6f6;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
  background-clip: padding-box; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-pageable > li.k-button.k-primary,
  kendo-scrollview.k-scrollview-wrap .k-scrollview-nav > li.k-link.k-primary,
  div.k-scrollview .k-scrollview-pageable > li.k-button.k-primary,
  div.k-scrollview .k-scrollview-nav > li.k-link.k-primary {
    border-color: #0735cc;
    background-color: #0735cc; }

kendo-scrollview.k-scrollview-wrap .k-scrollview-elements,
div.k-scrollview .k-scrollview-elements {
  color: #ffffff; }

kendo-scrollview.k-scrollview-wrap .k-scrollview-next,
kendo-scrollview.k-scrollview-wrap .k-scrollview-prev,
div.k-scrollview .k-scrollview-next,
div.k-scrollview .k-scrollview-prev {
  color: inherit;
  background: transparent;
  text-shadow: rgba(0, 0, 0, 0.3) 0 0 15px;
  opacity: 0.7;
  outline-width: 0; }
  kendo-scrollview.k-scrollview-wrap .k-scrollview-next:hover,
  kendo-scrollview.k-scrollview-wrap .k-scrollview-prev:hover,
  div.k-scrollview .k-scrollview-next:hover,
  div.k-scrollview .k-scrollview-prev:hover {
    color: #ffffff;
    opacity: 1; }

.k-listview > .k-state-focused {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-listview > .k-state-selected {
  color: inherit;
  background-color: rgba(82, 160, 255, 0.25); }

.k-autocomplete .k-i-close, .k-autocomplete .k-i-group-delete::before {
  display: none;
  align-self: center; }

.k-autocomplete.k-state-hover .k-i-close, .k-autocomplete.k-state-hover .k-i-group-delete::before, .k-autocomplete.k-state-focused .k-i-close, .k-autocomplete.k-state-focused .k-i-group-delete::before {
  display: flex;
  outline: 0; }

.k-autocomplete {
  background-clip: padding-box; }
  .k-ie11 .k-autocomplete,
  .k-edge12 .k-autocomplete,
  .k-edge13 .k-autocomplete {
    background-clip: border-box; }

.k-tooltip {
  border-radius: 6px;
  line-height: 1.42857;
  padding: 4px 8px;
  border-width: 0;
  box-sizing: border-box;
  background-repeat: repeat-x;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 12000; }
  .k-tooltip:not(.k-tooltip-closable) {
    font-size: 14px; }

.k-tooltip-title {
  display: inline-flex;
  padding: 4px 0;
  font-size: 19px; }

.k-tooltip-content {
  overflow: hidden;
  text-overflow: ellipsis; }

.k-tooltip-closable {
  padding: 12px 16px;
  line-height: normal; }
  .k-tooltip-closable .k-tooltip-title {
    display: inline-flex;
    padding: 0 calc(16px + 4px) 12px 0;
    line-height: 1; }
  .k-tooltip-closable .k-tooltip-content {
    padding-right: calc(16px + 4px); }
    .k-rtl .k-tooltip-closable .k-tooltip-content,
    [dir-rtl] .k-tooltip-closable .k-tooltip-content {
      padding-left: calc(16px + 4px);
      padding-right: 0; }

.k-tooltip-button {
  position: absolute;
  top: 12px;
  right: 16px; }
  .k-tooltip-button .k-icon {
    color: inherit;
    vertical-align: top; }
  .k-rtl .k-tooltip-button,
  [dir-rtl] .k-tooltip-button {
    left: 16px;
    right: auto; }

.k-callout {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  border-color: transparent;
  pointer-events: none; }

.k-callout-n {
  left: 50%;
  margin-left: -6px;
  border-bottom-color: currentColor;
  top: -12px;
  pointer-events: none; }

.k-callout-e {
  top: 50%;
  margin-top: -6px;
  border-left-color: currentColor;
  right: -12px;
  pointer-events: none; }

.k-callout-s {
  left: 50%;
  margin-left: -6px;
  border-top-color: currentColor;
  bottom: -12px;
  pointer-events: none; }

.k-callout-w {
  top: 50%;
  margin-top: -6px;
  border-right-color: currentColor;
  left: -12px;
  pointer-events: none; }

.k-tooltip-wrapper .k-tooltip {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04); }

.k-tooltip {
  color: #ffffff;
  background-color: #0735cc; }

.k-callout {
  color: #0735cc; }

.k-slider {
  background-color: transparent;
  border-width: 0;
  position: relative; }
  .k-slider .k-button {
    height: 28px;
    line-height: 28px;
    margin: 0;
    min-width: 0;
    outline: 0;
    padding: 0;
    position: absolute;
    width: 28px;
    box-sizing: content-box; }
    .k-slider .k-button .k-icon {
      vertical-align: baseline;
      line-height: 28px;
      margin-right: 0;
      height: 100%; }
  .k-slider .k-button-increase {
    right: 0;
    top: 0; }
  .k-slider .k-button-decrease {
    left: 0;
    top: 0; }
  .k-slider .k-label {
    font-size: .92em;
    position: absolute;
    white-space: nowrap; }
  .k-slider .k-tick,
  .k-slider .k-slider-track {
    cursor: pointer; }
  .k-slider .k-tick {
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    position: relative; }
  .k-slider.k-state-disabled .k-tick,
  .k-slider.k-state-disabled .k-slider-track,
  .k-slider.k-state-disabled .k-draghandle {
    cursor: default; }
  .k-slider[dir="rtl"] .k-slider-selection {
    left: auto;
    right: 0; }
  .k-slider[dir="rtl"] .k-button-increase {
    left: 0;
    right: auto; }
  .k-slider[dir="rtl"] .k-button-decrease {
    right: 0;
    left: auto; }

.k-slider-vertical {
  height: 200px;
  width: 30px;
  outline: 0; }
  .k-slider-vertical .k-button-decrease {
    bottom: 0;
    top: auto; }
  .k-slider-vertical .k-tick {
    text-align: right;
    margin-left: 2px; }
  .k-slider-vertical .k-slider-topleft .k-tick {
    text-align: left; }
  .k-slider-vertical .k-tick {
    background-position: -92px center; }
  .k-slider-vertical .k-slider-topleft .k-tick {
    background-position: -122px center; }
  .k-slider-vertical .k-slider-bottomright .k-tick {
    background-position: -152px center; }
  .k-slider-vertical .k-tick-large {
    background-position: -2px center; }
  .k-slider-vertical .k-slider-topleft .k-tick-large {
    background-position: -32px center; }
  .k-slider-vertical .k-slider-bottomright .k-tick-large {
    background-position: -62px center; }
  .k-slider-vertical .k-first {
    background-position: -92px 100%; }
  .k-slider-vertical .k-tick-large.k-first {
    background-position: -2px 100%; }
  .k-slider-vertical .k-slider-topleft .k-first {
    background-position: -122px 100%; }
  .k-slider-vertical .k-slider-topleft .k-tick-large.k-first {
    background-position: -32px 100%; }
  .k-slider-vertical .k-slider-bottomright .k-first {
    background-position: -152px 100%; }
  .k-slider-vertical .k-slider-bottomright .k-tick-large.k-first {
    background-position: -62px 100%; }
  .k-slider-vertical .k-last {
    background-position: -92px 0; }
  .k-slider-vertical .k-tick-large.k-last {
    background-position: -2px 0; }
  .k-slider-vertical .k-slider-topleft .k-last {
    background-position: -122px 0; }
  .k-slider-vertical .k-slider-topleft .k-tick-large.k-last {
    background-position: -32px 0; }
  .k-slider-vertical .k-slider-bottomright .k-last {
    background-position: -152px 0; }
  .k-slider-vertical .k-slider-bottomright .k-tick-large.k-last {
    background-position: -62px 0; }
  .k-slider-vertical .k-label {
    display: block;
    left: 120%;
    text-align: left; }
  .k-slider-vertical .k-last .k-label {
    top: -.5em; }
  .k-slider-vertical .k-first .k-label {
    bottom: -.5em; }
  .k-slider-vertical .k-slider-topleft .k-label {
    left: auto;
    right: 120%; }

.k-slider-horizontal {
  display: inline-block;
  height: 30px;
  width: 200px;
  outline: 0; }
  .k-slider-horizontal .k-tick {
    float: left;
    height: 100%;
    text-align: center;
    margin-top: 2px; }
  .k-slider-horizontal .k-tick {
    background-position: center -92px; }
  .k-slider-horizontal .k-slider-topleft .k-tick {
    background-position: center -122px; }
  .k-slider-horizontal .k-slider-bottomright .k-tick {
    background-position: center -152px; }
  .k-slider-horizontal .k-tick-large {
    background-position: center -2px; }
  .k-slider-horizontal .k-slider-topleft .k-tick-large {
    background-position: center -32px; }
  .k-slider-horizontal .k-slider-bottomright .k-tick-large {
    background-position: center -62px; }
  .k-slider-horizontal .k-first {
    background-position: 0 -92px; }
  .k-slider-horizontal .k-tick-large.k-first {
    background-position: 0 -2px; }
  .k-slider-horizontal .k-slider-topleft .k-first {
    background-position: 0 -122px; }
  .k-slider-horizontal .k-slider-topleft .k-tick-large.k-first {
    background-position: 0 -32px; }
  .k-slider-horizontal .k-slider-bottomright .k-first {
    background-position: 0 -152px; }
  .k-slider-horizontal .k-slider-bottomright .k-tick-large.k-first {
    background-position: 0 -62px; }
  .k-slider-horizontal .k-last {
    background-position: 100% -92px; }
  .k-slider-horizontal .k-tick-large.k-last {
    background-position: 100% -2px; }
  .k-slider-horizontal .k-slider-topleft .k-last {
    background-position: 100% -122px; }
  .k-slider-horizontal .k-slider-topleft .k-tick-large.k-last {
    background-position: 100% -32px; }
  .k-slider-horizontal .k-slider-bottomright .k-last {
    background-position: 100% -152px; }
  .k-slider-horizontal .k-slider-bottomright .k-tick-large.k-last {
    background-position: 100% -62px; }
  .k-slider-horizontal .k-label {
    left: 0;
    bottom: -1.2em;
    line-height: 1;
    width: 100%; }
  .k-slider-horizontal .k-first .k-label {
    left: -50%; }
  .k-slider-horizontal .k-last .k-label {
    left: auto;
    right: -50%; }
  .k-slider-horizontal .k-slider-topleft .k-label {
    top: -1.2em; }
  .k-slider-horizontal[dir="rtl"] .k-button-increase .k-icon,
  .k-slider-horizontal[dir="rtl"] .k-button-decrease .k-icon {
    transform: rotate(180deg); }

.k-slider-wrap {
  height: 100%;
  width: 100%; }

.k-slider-track,
.k-slider-selection {
  margin: 0;
  padding: 0;
  position: absolute; }
  .k-slider-horizontal .k-slider-track, .k-slider-horizontal
  .k-slider-selection {
    height: 4px;
    left: 0;
    margin-top: -2px;
    top: 50%; }
  .k-slider-vertical .k-slider-track, .k-slider-vertical
  .k-slider-selection {
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    width: 4px; }

.k-slider-horizontal .k-slider-buttons .k-slider-track {
  left: 38px; }

.k-slider-vertical .k-slider-buttons .k-slider-track {
  bottom: 38px; }

.k-draghandle {
  background-color: transparent;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  outline: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-indent: -3333px;
  box-sizing: content-box;
  width: 14px;
  height: 14px; }
  .k-slider-horizontal .k-draghandle {
    top: 50%;
    transform: translateY(-50%); }
    .k-slider-horizontal .k-draghandle:active, .k-slider-horizontal .k-draghandle.k-pressed {
      transform: translateY(-50%) scale(1); }
  .k-slider-vertical .k-draghandle {
    left: 50%;
    transform: translateX(-50%); }
    .k-slider-vertical .k-draghandle:active, .k-slider-vertical .k-draghandle.k-pressed {
      transform: translateX(-50%) scale(1); }
  .k-slider-transitions.k-slider-horizontal .k-draghandle {
    transition: left 0.3s ease-out, background-color 0.3s ease-out, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
  .k-slider-transitions.k-slider-vertical .k-draghandle {
    transition: bottom 0.3s ease-out, background-color 0.3s ease-out, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
  .k-draghandle.k-pressed {
    transition: none; }

.k-slider-transitions.k-slider-horizontal .k-slider-selection {
  transition: width 0.3s ease-out; }

.k-slider-transitions.k-slider-vertical .k-slider-selection {
  transition: height 0.3s ease-out; }

.k-slider-selection.k-pressed {
  transition: none; }

.k-slider-items {
  user-select: none; }
  .k-slider-buttons .k-slider-items {
    margin-left: 38px; }
  .k-slider-horizontal .k-slider-items {
    height: 100%; }
  .k-slider-vertical .k-slider-items {
    padding-top: 1px; }
  .k-slider-horizontal .k-slider-buttons .k-slider-items {
    padding-top: 0; }
  .k-slider-vertical .k-slider-buttons .k-slider-items {
    margin: 0;
    padding-top: 38px; }

.k-slider-tooltip .k-callout-n,
.k-slider-tooltip .k-callout-s {
  margin-left: -6px; }

.k-slider-tooltip .k-callout-w,
.k-slider-tooltip .k-callout-e {
  margin-top: -6px; }

.k-slider .k-slider-track,
.k-slider .k-slider-selection {
  border-radius: 6px; }

.k-slider .k-slider-track {
  background-color: #e6e6e6; }

.k-slider .k-slider-selection {
  background-color: #0735cc; }

.k-slider .k-button {
  border-radius: 50%; }

.k-slider .k-draghandle {
  border-radius: 50%; }
  .k-slider .k-draghandle:active, .k-slider .k-draghandle.k-pressed {
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.06); }
  .k-slider .k-draghandle:focus {
    box-shadow: 0 3px 4px 0 rgba(82, 160, 255, 0.4); }

.k-slider.k-state-focused .k-draghandle {
  box-shadow: 0 3px 4px 0 rgba(82, 160, 255, 0.4); }

.k-slider .k-slider-wrap:focus {
  outline: none; }

.k-slider-horizontal .k-tick {
  background-image: url(data:image/gif;base64,R0lGODlhAQC0AIABALi4uAAAACH5BAEAAAEALAAAAAABALQAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7); }

.k-slider-vertical .k-tick {
  background-image: url(data:image/gif;base64,R0lGODlhtAABAIABALi4uAAAACH5BAEAAAEALAAAAAC0AAEAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7); }

.k-colorpicker {
  width: auto;
  border-width: 0;
  display: inline-block;
  position: relative;
  overflow: visible; }
  .k-colorpicker .k-selected-color {
    padding: 4px;
    width: calc( 8px + 1.42857em);
    height: calc( 8px + 1.42857em);
    box-sizing: border-box;
    line-height: 0;
    position: relative;
    overflow: hidden; }
    .k-colorpicker .k-selected-color .k-i-line {
      border-top: 1px solid #d51923;
      width: 200%;
      height: 200%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-33%, -33%) rotateZ(45deg);
      transform-origin: 0 0; }
    .k-colorpicker .k-selected-color .k-i-line::before {
      display: none; }
  .k-colorpicker .k-tool-icon {
    padding: 4px;
    width: calc( 8px + 1.42857em);
    height: calc( 8px + 1.42857em);
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    font-size: inherit;
    text-align: center; }
    .k-colorpicker .k-tool-icon::before {
      font-size: 16px;
      line-height: 1; }
    .k-colorpicker .k-tool-icon .k-selected-color {
      margin: 0 0 12px;
      padding: 0;
      width: 14px;
      height: 3px;
      line-height: 0;
      display: inline-block; }
  .k-colorpicker .k-picker-wrap {
    overflow: hidden; }

.k-colorpicker + .k-animation-container .k-popup {
  padding: 0; }

.k-flatcolorpicker {
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 310px;
  padding: 8px; }
  .k-flatcolorpicker .k-horizontal {
    flex-direction: row; }
    .k-flatcolorpicker .k-horizontal.k-gradient-values {
      display: flex;
      justify-content: space-between;
      margin-top: 16px; }
      .k-flatcolorpicker .k-horizontal.k-gradient-values div,
      .k-flatcolorpicker .k-horizontal.k-gradient-values input,
      .k-flatcolorpicker .k-horizontal.k-gradient-values .k-numerictextbox {
        width: 48px;
        text-align: center; }
      .k-flatcolorpicker .k-horizontal.k-gradient-values div {
        text-transform: uppercase;
        text-align: center; }
      .k-flatcolorpicker .k-horizontal.k-gradient-values .k-hex-value {
        width: 65px; }
      .k-flatcolorpicker .k-horizontal.k-gradient-values:last-of-type {
        margin-top: 8px; }
  .k-flatcolorpicker .k-vertical {
    flex-direction: column; }
  .k-flatcolorpicker .k-hsv-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center; }
    .k-flatcolorpicker .k-hsv-wrap .k-hsv-rectangle {
      flex: 1; }
  .k-flatcolorpicker .k-draghandle {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.21);
    box-sizing: border-box; }
  .k-flatcolorpicker .k-selected-color {
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    background-position: 50% 50%; }
  .k-flatcolorpicker .k-color-input {
    display: flex;
    flex-direction: row;
    position: relative; }
  .k-flatcolorpicker .k-color-value {
    margin: 0 0 0 calc( 16px + 2.85714em);
    padding: 4px 8px;
    width: 100%;
    border: 0;
    box-sizing: border-box;
    font-size: inherit;
    line-height: 1.42857;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace;
    outline: 0;
    flex: 1; }
  .k-flatcolorpicker .k-clear-color-container {
    display: flex;
    flex-direction: row; }
  .k-flatcolorpicker .k-clear-color {
    flex: 1; }
  .k-flatcolorpicker .k-color-value + .k-clear-color {
    flex: none;
    position: absolute;
    top: 0;
    right: 0; }
  .k-flatcolorpicker .k-hsv-rectangle {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pinch-zoom double-tap-zoom; }
    .k-flatcolorpicker .k-hsv-rectangle .k-draghandle {
      margin: -7px 0 0 -7px;
      cursor: pointer;
      position: absolute;
      z-index: 10;
      left: 50%;
      top: 50%; }
  .k-flatcolorpicker .k-hsv-gradient {
    height: 180px;
    background: linear-gradient(to bottom, transparent, black), linear-gradient(to right, white, rgba(255, 255, 255, 0)); }
  .k-flatcolorpicker > .k-slider {
    margin: 1em 1em 0; }
  .k-flatcolorpicker .k-horizontal .k-hue-slider .k-slider-track {
    background: linear-gradient(to top, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000); }
  .k-flatcolorpicker .k-hue-slider,
  .k-flatcolorpicker .k-transparency-slider {
    display: block; }
    .k-flatcolorpicker .k-hue-slider .k-draghandle,
    .k-flatcolorpicker .k-transparency-slider .k-draghandle {
      border-width: 3px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
      background-color: transparent; }
    .k-flatcolorpicker .k-hue-slider .k-draghandle:hover,
    .k-flatcolorpicker .k-hue-slider .k-draghandle:focus,
    .k-flatcolorpicker .k-transparency-slider .k-draghandle:hover,
    .k-flatcolorpicker .k-transparency-slider .k-draghandle:focus {
      border-color: white;
      box-shadow: 0 1px 4px black;
      background-color: transparent; }
    .k-flatcolorpicker .k-hue-slider.k-slider-vertical,
    .k-flatcolorpicker .k-transparency-slider.k-slider-vertical {
      flex: 0 0 10px;
      width: 10px;
      height: 180px;
      margin-left: 8px;
      border-radius: 10px; }
      .k-flatcolorpicker .k-hue-slider.k-slider-vertical .k-slider-track,
      .k-flatcolorpicker .k-transparency-slider.k-slider-vertical .k-slider-track {
        width: 10px;
        border-radius: 10px; }
    .k-flatcolorpicker .k-hue-slider.k-alpha-slider,
    .k-flatcolorpicker .k-transparency-slider.k-alpha-slider {
      margin-right: 4px; }
      .k-flatcolorpicker .k-hue-slider.k-alpha-slider .k-slider-wrap,
      .k-flatcolorpicker .k-transparency-slider.k-alpha-slider .k-slider-wrap {
        z-index: 1; }
      .k-flatcolorpicker .k-hue-slider.k-alpha-slider .k-slider-track,
      .k-flatcolorpicker .k-transparency-slider.k-alpha-slider .k-slider-track {
        background-color: transparent; }
        .k-flatcolorpicker .k-hue-slider.k-alpha-slider .k-slider-track::before,
        .k-flatcolorpicker .k-transparency-slider.k-alpha-slider .k-slider-track::before {
          z-index: -1;
          content: "";
          width: 100%;
          height: 100%;
          position: absolute;
          border-radius: inherit;
          background: url(data:image/png;base64,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);
          background-position: center; }
      .k-flatcolorpicker .k-hue-slider.k-alpha-slider .k-slider-selection,
      .k-flatcolorpicker .k-transparency-slider.k-alpha-slider .k-slider-selection {
        display: none; }
  .k-flatcolorpicker .k-hue-slider {
    width: 1em;
    height: 1em; }
    .k-flatcolorpicker .k-hue-slider .k-slider-track {
      background: linear-gradient(to right, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000); }
    .k-flatcolorpicker .k-hue-slider .k-slider-selection {
      background: none;
      opacity: 0; }
    .k-flatcolorpicker .k-hue-slider.k-slider-vertical {
      margin-right: 4px; }
  .k-flatcolorpicker .k-slider-horizontal {
    width: 90%;
    height: 20px; }
  .k-flatcolorpicker .k-controls {
    margin: 1em 1em 0;
    text-align: center; }

.k-colorpalette {
  border-width: 0;
  line-height: 0;
  display: inline-block;
  position: relative; }
  .k-colorpalette .k-palette {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    position: relative; }
  .k-colorpalette .k-item {
    width: 14px;
    height: 14px;
    overflow: hidden;
    -ms-high-contrast-adjust: none;
    cursor: pointer; }
  .k-colorpalette .k-item:hover,
  .k-colorpalette .k-item.k-state-hover {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 101; }
  .k-colorpalette .k-item.k-state-selected,
  .k-colorpalette .k-item.k-state-selected:hover,
  .k-colorpalette .k-item.k-state-focused,
  .k-colorpalette .k-item:focus {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
    position: relative;
    z-index: 100; }

.k-colorpicker .k-picker-wrap {
  background-clip: padding-box; }
  .k-ie11 .k-colorpicker .k-picker-wrap,
  .k-edge12 .k-colorpicker .k-picker-wrap,
  .k-edge13 .k-colorpicker .k-picker-wrap {
    background-clip: border-box; }

.k-colorpicker .k-select {
  padding: 0;
  width: calc( 8px + 1.42857em);
  border-width: 0; }

.k-colorpicker .k-tool-icon:hover,
.k-colorpicker .k-tool-icon.k-state-hover {
  cursor: pointer;
  border-color: rgba(0, 0, 0, 0.08); }

.k-colorpicker .k-state-focused {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06); }

.k-combobox-clearable .k-input {
  padding-right: 24px; }

.k-combobox-clearable[dir="rtl"] .k-input,
.k-rtl .k-combobox-clearable .k-input {
  padding-left: 24px;
  padding-right: 8px; }

.k-combobox .k-dropdown-wrap {
  background-clip: padding-box;
  cursor: initial; }
  .k-ie11 .k-combobox .k-dropdown-wrap,
  .k-edge12 .k-combobox .k-dropdown-wrap,
  .k-edge13 .k-combobox .k-dropdown-wrap {
    background-clip: border-box; }

.k-combobox .k-select {
  padding: 0;
  width: calc( 8px + 1.42857em);
  border-width: 0; }

.k-calendar {
  border-width: 1px;
  border-style: solid;
  line-height: 1.42857;
  position: relative;
  overflow: hidden;
  display: inline-block;
  user-select: none; }
  .k-calendar .k-link {
    outline: 0;
    color: inherit;
    text-decoration: none;
    white-space: normal;
    cursor: pointer;
    overflow: hidden; }
  .k-calendar table {
    margin: 0;
    border-width: 0;
    border-color: inherit;
    border-spacing: 0;
    border-collapse: separate;
    table-layout: fixed;
    outline: 0;
    position: relative;
    z-index: 1; }
  .k-calendar td,
  .k-calendar th {
    border-width: 0;
    padding: 0;
    text-align: center;
    border-style: solid;
    border-color: inherit;
    font-weight: normal;
    cursor: default; }
  .k-calendar th {
    padding: 0.25em 0;
    font-size: 12px;
    line-height: 2;
    text-transform: uppercase;
    opacity: 0.6; }
  .k-calendar tbody th {
    padding-left: 8px;
    padding-right: 8px;
    height: 2em;
    font: inherit;
    font-weight: bold;
    text-transform: none;
    text-align: left; }
  .k-calendar .k-header {
    padding: 4px 4px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    text-align: center;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 2; }
    .k-calendar .k-header .k-link {
      border-radius: 6px;
      padding: 4px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center; }
  .k-calendar .k-nav-prev,
  .k-calendar .k-nav-next {
    width: 1.42857em;
    height: 1.42857em;
    box-sizing: content-box; }
  .k-calendar .k-nav-fast {
    margin: 0 4px;
    flex: 1 1 auto; }
  .k-calendar .k-calendar-header {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    line-height: 2em; }
    .k-calendar .k-calendar-header .k-title {
      font-weight: bold; }
    .k-calendar .k-calendar-header .k-today {
      cursor: pointer; }
  .k-calendar:not(.k-calendar-infinite) .k-calendar-header {
    line-height: inherit; }
    .k-calendar:not(.k-calendar-infinite) .k-calendar-header .k-calendar-nav {
      white-space: nowrap; }
  .k-calendar .k-footer {
    text-align: center;
    clear: both; }
  .k-calendar .k-nav-today,
  .k-calendar .k-footer > .k-state-disabled {
    padding: 8px 16px;
    display: block; }
  .k-calendar .k-nav-today:hover {
    text-decoration: underline; }
  .k-calendar .k-calendar-view {
    width: 17em;
    height: 17em;
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .k-calendar.k-week-number .k-calendar-view {
    width: 19.42857em; }
  .k-calendar-infinite .k-calendar-view {
    width: 17em;
    height: 21.42857em; }
  .k-calendar .k-content {
    margin: 0;
    text-align: center;
    flex: 1 1 auto;
    position: relative; }
    .k-calendar .k-content > table {
      table-layout: auto; }
    .k-calendar .k-content td {
      border-radius: 6px;
      border-color: transparent; }
    .k-calendar .k-content .k-link {
      border-radius: 6px;
      padding: 0.5em 0.5em;
      box-sizing: border-box;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center; }
    .k-calendar .k-content .k-weekend {
      border-radius: 0;
      opacity: 1; }
    .k-calendar .k-content .k-alt {
      opacity: 0.6; }
    .k-calendar .k-content .k-other-month .k-link {
      opacity: 0.6; }
    .k-calendar .k-content .k-state-disabled {
      opacity: 0.6; }
  .k-calendar table.k-content {
    display: inline-table;
    vertical-align: top; }
  .k-calendar .k-month td,
  .k-calendar .k-calendar-monthview td {
    width: 2.42857em;
    height: 2.42857em; }
  .k-calendar .k-month .k-link,
  .k-calendar .k-calendar-monthview .k-link {
    width: 2.42857em;
    height: 2.42857em; }
  .k-calendar .k-year td,
  .k-calendar .k-calendar-yearview td {
    width: auto;
    height: auto; }
  .k-calendar .k-year .k-link,
  .k-calendar .k-calendar-yearview .k-link {
    width: 4.25em;
    height: 4.25em; }
  .k-calendar .k-decade td,
  .k-calendar .k-calendar-decadeview td {
    width: auto;
    height: auto; }
  .k-calendar .k-decade .k-link,
  .k-calendar .k-calendar-decadeview .k-link {
    width: 4.25em;
    height: 4.25em; }
  .k-calendar .k-century td,
  .k-calendar .k-calendar-centuryview td {
    width: auto;
    height: auto; }
  .k-calendar .k-century .k-link,
  .k-calendar .k-calendar-centuryview .k-link {
    width: 4.25em;
    height: 4.25em;
    text-align: left; }
  .k-calendar-infinite {
    box-sizing: content-box;
    width: auto;
    display: inline-flex;
    vertical-align: bottom; }
    .k-calendar-infinite .k-calendar-view,
    .k-calendar-infinite .k-calendar-monthview {
      padding: 0 16px;
      display: flex;
      flex: 1 0 auto;
      flex-direction: column;
      overflow: hidden;
      box-sizing: content-box; }
      .k-calendar-infinite .k-calendar-view::after,
      .k-calendar-infinite .k-calendar-monthview::after {
        display: block;
        position: absolute;
        bottom: 0;
        content: " ";
        height: 0;
        line-height: 0;
        z-index: 1;
        width: 150%;
        left: -25%;
        box-shadow: 0 0 2.42857em 1.21429em #ffffff; }
    .k-calendar-infinite .k-calendar-header {
      margin-left: -16px;
      margin-right: -16px; }
    .k-calendar-infinite .k-calendar-weekdays {
      width: 100%;
      flex: 0 0 auto; }
    .k-calendar-infinite .k-calendar-yearview .k-content td,
    .k-calendar-infinite .k-calendar-decadeview .k-content td,
    .k-calendar-infinite .k-calendar-centuryview .k-content td {
      width: auto;
      height: auto; }
    .k-calendar-infinite .k-calendar-yearview .k-content .k-link,
    .k-calendar-infinite .k-calendar-yearview .k-content td.k-empty,
    .k-calendar-infinite .k-calendar-decadeview .k-content .k-link,
    .k-calendar-infinite .k-calendar-decadeview .k-content td.k-empty,
    .k-calendar-infinite .k-calendar-centuryview .k-content .k-link,
    .k-calendar-infinite .k-calendar-centuryview .k-content td.k-empty {
      width: 3.4em;
      height: 3.4em; }

.k-calendar-container,
.k-datetime-container {
  padding: 0; }
  .k-calendar-container .k-calendar,
  .k-datetime-container .k-calendar {
    border-width: 0; }

.k-calendar .k-content.k-scrollable {
  box-sizing: content-box;
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
  padding-right: 100px;
  padding-left: 100px;
  margin-left: -100px;
  margin-right: -100px;
  margin-right: -117px; }

.k-calendar .k-scrollable-placeholder {
  position: absolute;
  z-index: -1;
  width: 1px;
  top: 0;
  right: 0; }

.k-calendar-navigation {
  position: relative;
  display: block;
  overflow: hidden;
  width: 5em;
  z-index: 2; }
  .k-calendar-navigation::before, .k-calendar-navigation::after {
    display: block;
    position: absolute;
    content: " ";
    height: 0;
    line-height: 0;
    z-index: 1;
    width: 200%;
    left: -50%;
    box-shadow: 0 0 6em 3em #f6f6f6; }
  .k-calendar-navigation::before {
    top: 0; }
  .k-calendar-navigation::after {
    bottom: 0; }
  .k-calendar-navigation .k-content {
    background: transparent;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
    .k-calendar-navigation .k-content ul {
      width: 5em; }
    .k-calendar-navigation .k-content li {
      height: 2em;
      line-height: 2em;
      cursor: pointer;
      padding: 0 1em; }
  .k-calendar-navigation .k-calendar-navigation-marker {
    font-weight: bold; }
  .k-calendar-navigation .k-calendar-navigation-highlight {
    width: 100%;
    border-width: 1px 0;
    border-style: solid;
    height: 2em;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%); }

.k-calendar.k-calendar-range {
  width: auto; }
  .k-calendar.k-calendar-range .k-calendar-view {
    height: auto;
    min-height: 17em;
    width: auto;
    white-space: nowrap; }
    .k-calendar.k-calendar-range .k-calendar-view::after {
      display: none; }
  .k-calendar.k-calendar-range table {
    width: auto; }
  .k-calendar.k-calendar-range table.k-content {
    padding: 0 16px; }
  .k-calendar.k-calendar-range table.k-meta-view {
    margin: 0 -1px; }
  .k-calendar.k-calendar-range .k-meta-header,
  .k-calendar.k-calendar-range .k-month-header {
    margin: 0 16px;
    padding: 0.25em 8px;
    font-size: 12px;
    line-height: 2;
    text-align: left;
    opacity: 0.6;
    cursor: default; }
  .k-calendar.k-calendar-range .k-range-start {
    border-color: inherit;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .k-calendar.k-calendar-range .k-range-end {
    border-color: inherit;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .k-calendar.k-calendar-range .k-range-mid {
    border-color: inherit;
    border-radius: 0; }
  .k-calendar.k-calendar-range:not(.k-calendar-infinite) .k-calendar-view {
    display: flex;
    flex-direction: row; }
    .k-animation-container-sm .k-calendar.k-calendar-range:not(.k-calendar-infinite) .k-calendar-view {
      flex-direction: column; }
  .k-calendar.k-calendar-range.k-calendar-infinite table {
    padding: 0;
    display: flex;
    flex-direction: row; }
    .k-calendar.k-calendar-range.k-calendar-infinite table > tbody {
      display: inline-block;
      vertical-align: top; }
    .k-calendar.k-calendar-range.k-calendar-infinite table > tbody + tbody {
      margin-left: 32px; }
  .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-button {
    border-radius: 0;
    width: 44px; }
  .k-calendar.k-calendar-range.k-calendar-infinite:not(.k-calendar-minimal) > .k-calendar-view {
    border-width: 0 1px;
    border-style: solid;
    border-color: inherit; }

.k-calendar.k-calendar-minimal.k-calendar-infinite {
  padding: 0; }
  .k-calendar.k-calendar-minimal.k-calendar-infinite .k-calendar-view,
  .k-calendar.k-calendar-minimal.k-calendar-infinite .k-calendar-monthview {
    padding: 0; }
    .k-calendar.k-calendar-minimal.k-calendar-infinite .k-calendar-view th,
    .k-calendar.k-calendar-minimal.k-calendar-infinite .k-calendar-monthview th {
      text-align: center; }
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button {
    width: auto;
    height: auto;
    opacity: .6;
    transition: opacity .2s ease-in-out;
    padding: 0;
    margin: calc( 18px + 2em) 0; }
    .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:hover, .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:active {
      opacity: 1;
      transition: opacity .2s ease-in-out; }
      .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:hover::before, .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-picker-wrap:hover::before,
      .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-dropdown-wrap:hover::before, .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:active::before, .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-picker-wrap:active::before,
      .k-toolbar .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-dropdown-wrap:active::before {
        opacity: 0; }
    .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button:focus::after {
      opacity: 0; }
    .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-button .k-icon {
      font-size: 1.5em; }
  .k-calendar.k-calendar-minimal.k-calendar-infinite > :first-child,
  .k-calendar.k-calendar-minimal.k-calendar-infinite > :last-child {
    padding: 0 8px; }
  .k-calendar.k-calendar-minimal.k-calendar-infinite > .k-calendar-view {
    border-width: 0; }

.k-widget.k-daterangepicker {
  border: 0; }

.k-rtl .k-calendar .k-nav-prev .k-icon,
.k-rtl .k-calendar .k-nav-next .k-icon,
.k-calendar[dir="rtl"] .k-nav-prev .k-icon,
.k-calendar[dir="rtl"] .k-nav-next .k-icon {
  transform: scaleX(-1); }

.k-rtl .k-calendar .k-content.k-scrollable,
.k-calendar[dir="rtl"] .k-content.k-scrollable {
  padding-right: 100px;
  padding-left: 100px;
  margin-left: -100px;
  margin-right: -100px;
  margin-left: -117px; }

.k-rtl .k-calendar tbody th,
.k-calendar[dir="rtl"] tbody th {
  text-align: right; }

.k-calendar {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff);
  background-clip: padding-box; }
  .k-ie11 .k-calendar,
  .k-edge12 .k-calendar,
  .k-edge13 .k-calendar {
    background-clip: border-box; }
  .k-calendar .k-header {
    border-color: inherit;
    color: var(--sg-text-color, #000000);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); }
  .k-calendar .k-nav-prev:hover, .k-calendar .k-nav-prev.k-state-hover,
  .k-calendar .k-nav-next:hover,
  .k-calendar .k-nav-next.k-state-hover,
  .k-calendar .k-nav-fast:hover,
  .k-calendar .k-nav-fast.k-state-hover {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-color-legacy-ededed, #ededed);
    background-image: linear-gradient(var(--sg-color-legacy-ededed, #ededed), #e8e8e8); }
  .k-calendar .k-nav-prev:active, .k-calendar .k-nav-prev.k-state-active,
  .k-calendar .k-nav-next:active,
  .k-calendar .k-nav-next.k-state-active,
  .k-calendar .k-nav-fast:active,
  .k-calendar .k-nav-fast.k-state-active {
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--sg-text-color, #000000);
    background-color: #f6f6f6;
    background-image: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06); }
  .k-calendar .k-footer .k-nav-today,
  .k-calendar .k-calendar-header .k-today {
    color: #0735cc; }
    .k-calendar .k-footer .k-nav-today:hover, .k-calendar .k-footer .k-nav-today:focus,
    .k-calendar .k-calendar-header .k-today:hover,
    .k-calendar .k-calendar-header .k-today:focus {
      color: #5194e6; }
  .k-calendar .k-content th {
    color: var(--sg-text-color, #000000); }
  .k-calendar .k-content .k-today {
    color: #0735cc; }
  .k-calendar .k-weekend {
    color: inherit;
    background-color: transparent; }
  .k-calendar .k-alt {
    color: var(--sg-text-color, #000000);
    background-color: #f6f6f6; }
  .k-calendar .k-out-of-range {
    pointer-events: none;
    visibility: hidden; }
  .k-calendar .k-state-hover .k-link {
    border-color: var(--sg-color-legacy-ededed, #ededed);
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-color-legacy-ededed, #ededed); }
  .k-calendar .k-state-selected .k-link {
    border-color: #0735cc;
    color: #ffffff;
    background-color: #0735cc; }
  .k-calendar .k-state-selected.k-state-hover .k-link {
    background-color: #4b93eb; }
  .k-calendar .k-state-focused .k-link {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
  .k-calendar .k-state-selected.k-state-focused .k-link {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
  .k-calendar .k-calendar-navigation {
    color: var(--sg-text-color, #000000);
    background-color: #f6f6f6;
    box-shadow: inset -1px 0 rgba(0, 0, 0, 0.08); }
    .k-calendar .k-calendar-navigation li:hover {
      color: #5194e6; }
  .k-calendar .k-calendar-navigation-highlight {
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-bg-color, #ffffff); }
  .k-calendar[dir="rtl"] .k-calendar-navigation,
  .k-rtl .k-calendar .k-calendar-navigation {
    box-shadow: inset 1px 0 rgba(0, 0, 0, 0.08); }

.k-calendar.k-calendar-range .k-range-start,
.k-calendar.k-calendar-range .k-range-end,
.k-calendar.k-calendar-range .k-range-mid {
  background-image: linear-gradient(transparent 1px, rgba(82, 160, 255, 0.25) 1px, rgba(82, 160, 255, 0.25) calc(100% - 1px), transparent calc(100% - 1px)); }
  .k-ie .k-calendar.k-calendar-range .k-range-start,
  .k-edge .k-calendar.k-calendar-range .k-range-start, .k-ie
  .k-calendar.k-calendar-range .k-range-end,
  .k-edge
  .k-calendar.k-calendar-range .k-range-end, .k-ie
  .k-calendar.k-calendar-range .k-range-mid,
  .k-edge
  .k-calendar.k-calendar-range .k-range-mid {
    background-image: none;
    background-color: rgba(82, 160, 255, 0.25); }

.k-calendar.k-calendar-range .k-range-start.k-range-end {
  background-image: none;
  background-color: transparent; }

.k-calendar.k-calendar-range .k-range-start .k-link,
.k-calendar.k-calendar-range .k-range-end .k-link {
  background-color: #0735cc; }

.k-calendar.k-calendar-range .k-range-start.k-state-active .k-link,
.k-calendar.k-calendar-range .k-range-end.k-state-active .k-link {
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.2); }

.k-calendar.k-calendar-range .k-range-split-start,
.k-calendar.k-calendar-range .k-range-split-end {
  position: relative; }
  .k-calendar.k-calendar-range .k-range-split-start::after,
  .k-calendar.k-calendar-range .k-range-split-end::after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    bottom: 1px;
    width: 5px; }

.k-calendar.k-calendar-range .k-range-split-start::after {
  left: -5px;
  right: auto;
  background-image: linear-gradient(to left, rgba(82, 160, 255, 0.25), transparent 100%); }

.k-calendar.k-calendar-range .k-range-split-end::after {
  right: -5px;
  left: auto;
  background-image: linear-gradient(to right, rgba(82, 160, 255, 0.25), transparent 100%); }

.k-datepicker .k-i-warning,
.k-datetimepicker .k-i-warning,
.k-timepicker .k-i-warning {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: visible; }

.k-datepicker .k-state-invalid .k-i-warning,
.k-datetimepicker .k-state-invalid .k-i-warning,
.k-timepicker .k-state-invalid .k-i-warning {
  display: inline-block; }

.k-datepicker .k-dateinput,
.k-datetimepicker .k-dateinput,
.k-timepicker .k-dateinput {
  width: 100%;
  flex: 1 1 auto;
  margin: 0; }

.k-datepicker .k-dateinput-wrap,
.k-datetimepicker .k-dateinput-wrap,
.k-timepicker .k-dateinput-wrap {
  border: 0;
  border-radius: 6px 0 0 6px; }

.k-rtl .k-datepicker .k-i-warning, .k-datepicker[dir="rtl"] .k-i-warning, .k-rtl
.k-datetimepicker .k-i-warning,
.k-datetimepicker[dir="rtl"] .k-i-warning, .k-rtl
.k-timepicker .k-i-warning,
.k-timepicker[dir="rtl"] .k-i-warning {
  right: auto; }

.k-datepicker .k-i-warning,
.k-timepicker .k-i-warning {
  right: calc( calc( 8px + 1.42857em) + 4px); }

.k-rtl .k-datepicker .k-i-warning, .k-datepicker[dir="rtl"] .k-i-warning, .k-rtl
.k-timepicker .k-i-warning,
.k-timepicker[dir="rtl"] .k-i-warning {
  left: calc( calc( 8px + 1.42857em) + 4px); }

.k-datetimepicker .k-i-warning {
  right: calc( calc( 16px + 2.85714em) + 4px); }

.k-rtl .k-datetimepicker .k-i-warning, .k-datetimepicker[dir="rtl"] .k-i-warning {
  left: calc( calc( 16px + 2.85714em) + 4px); }

.k-datetimepicker .k-select {
  padding: 0;
  border-left-width: 0;
  align-items: stretch; }

.k-datetimepicker .k-link {
  padding: 4px 4px;
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; }

.k-datetime-container .k-datetime-wrap {
  width: 21em;
  overflow: hidden; }

.k-datetime-container .k-datetime-buttongroup {
  padding: 8px; }

.k-datetime-container .k-datetime-selector {
  display: flex;
  transition: transform .2s; }

.k-datetime-container .k-datetime-calendar-wrap,
.k-datetime-container .k-datetime-time-wrap {
  text-align: center;
  flex: 0 0 21em; }

.k-datetime-container .k-time-list-container {
  justify-content: center; }

.k-datetime-container .k-date-tab .k-datetime-buttongroup,
.k-datetime-container .k-date-tab .k-datetime-selector {
  background-color: var(--sg-bg-color, #ffffff); }

.k-datetime-container .k-time-tab .k-datetime-selector {
  transform: translateX(-100%); }

.k-datetime-container > .k-popup {
  padding-bottom: 0; }
  .k-datetime-container > .k-popup .k-action-buttons {
    margin-bottom: 0; }

.k-dateinput {
  position: relative;
  border-width: 0; }
  .k-dateinput .k-i-warning {
    display: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    overflow: visible; }
  .k-dateinput.k-state-invalid .k-i-warning {
    display: inline-block; }
  .k-rtl .k-dateinput .k-i-warning, .k-dateinput[dir="rtl"] .k-i-warning {
    left: 8px;
    right: auto; }

.k-time-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  line-height: 2em; }
  .k-time-header .k-time-now {
    border-width: 0;
    background: transparent;
    line-height: inherit; }

.k-time-list-wrapper {
  display: inline-block;
  overflow: hidden;
  box-sizing: content-box;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  padding: 20px 0;
  text-align: center;
  width: 5em;
  height: 200px; }
  .k-time-list-wrapper .k-title {
    display: block;
    text-align: center;
    font-size: 10px;
    position: absolute;
    text-transform: capitalize;
    font-weight: bold;
    min-width: 100%;
    height: 1.5em;
    line-height: 1.5em;
    margin-top: -20px;
    background: transparent; }
  .k-time-list-wrapper.k-state-focused::before, .k-time-list-wrapper.k-state-focused::after {
    display: block;
    content: " ";
    position: absolute;
    width: 100%;
    left: 0;
    pointer-events: none;
    height: calc(50% - 1em);
    box-sizing: border-box;
    border-style: solid; }
  .k-time-list-wrapper.k-state-focused::before {
    top: 0;
    border-width: 2px 2px 0; }
  .k-time-list-wrapper.k-state-focused::after {
    bottom: 0;
    border-width: 0 2px 2px; }

.k-time-container {
  position: absolute;
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  line-height: 1.42857;
  left: 0;
  right: 0;
  top: 20px;
  bottom: 20px;
  padding-right: 100px;
  padding-left: 100px;
  margin-left: -100px;
  margin-right: -100px;
  margin-right: -117px; }
  .k-time-container > ul {
    height: auto;
    width: 5em; }

.k-time-list-container {
  display: flex;
  position: relative; }

.k-time-list {
  position: absolute;
  display: flex;
  z-index: 10;
  outline: 0;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0; }
  .k-time-list::before, .k-time-list::after {
    display: block;
    position: absolute;
    content: " ";
    height: 0;
    line-height: 0;
    z-index: 1;
    width: 200%;
    left: -50%; }
  .k-time-list::before {
    top: 0; }
  .k-time-list::after {
    bottom: 0; }

.k-time-list .k-item {
  padding: 4px 8px;
  min-height: calc( 1.43em + 2px);
  line-height: calc( 1.43em + 2px); }

.k-time-highlight {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc( 8px + 1.42857em);
  z-index: 1;
  border-width: 1px 0;
  border-style: solid;
  border-radius: .1px; }

.k-time-container .k-scrollable-placeholder {
  position: absolute;
  width: 1px;
  top: 0;
  right: 0; }

.k-time-separator {
  display: inline-flex;
  align-self: center;
  justify-content: center;
  height: 100%;
  z-index: 11; }

.k-datepicker .k-picker-wrap,
.k-timepicker .k-picker-wrap,
.k-datetimepicker .k-picker-wrap {
  background-clip: padding-box; }
  .k-ie11 .k-datepicker .k-picker-wrap,
  .k-edge12 .k-datepicker .k-picker-wrap,
  .k-edge13 .k-datepicker .k-picker-wrap, .k-ie11
  .k-timepicker .k-picker-wrap,
  .k-edge12
  .k-timepicker .k-picker-wrap,
  .k-edge13
  .k-timepicker .k-picker-wrap, .k-ie11
  .k-datetimepicker .k-picker-wrap,
  .k-edge12
  .k-datetimepicker .k-picker-wrap,
  .k-edge13
  .k-datetimepicker .k-picker-wrap {
    background-clip: border-box; }

.k-datepicker .k-select,
.k-timepicker .k-select,
.k-datetimepicker .k-select {
  padding: 0;
  width: calc( 8px + 1.42857em);
  border-width: 0; }

.k-datepicker:hover .k-select,
.k-datepicker .k-state-hover .k-select,
.k-timepicker:hover .k-select,
.k-timepicker .k-state-hover .k-select,
.k-datetimepicker:hover .k-select,
.k-datetimepicker .k-state-hover .k-select {
  border-color: inherit; }

.k-datepicker .k-state-focused .k-select,
.k-datepicker .k-state-active .k-select,
.k-timepicker .k-state-focused .k-select,
.k-timepicker .k-state-active .k-select,
.k-datetimepicker .k-state-focused .k-select,
.k-datetimepicker .k-state-active .k-select {
  border-color: inherit; }

.k-datepicker .k-picker-wrap.k-state-invalid,
.k-datetimepicker .k-picker-wrap.k-state-invalid,
.k-timepicker .k-picker-wrap.k-state-invalid {
  transition: none;
  border-color: #d51923; }
  .k-datepicker .k-picker-wrap.k-state-invalid .k-input,
  .k-datetimepicker .k-picker-wrap.k-state-invalid .k-input,
  .k-timepicker .k-picker-wrap.k-state-invalid .k-input {
    color: #d51923; }

.k-datepicker .k-i-warning,
.k-datetimepicker .k-i-warning,
.k-timepicker .k-i-warning {
  color: #d51923; }

.k-time-header .k-title {
  font-weight: bold; }

.k-time-header .k-time-now {
  color: #0735cc;
  cursor: pointer; }
  .k-time-header .k-time-now:hover, .k-time-header .k-time-now:focus {
    color: #5194e6; }

.k-time-list-wrapper {
  background-color: #f9f9f9; }
  .k-time-list-wrapper .k-title {
    z-index: 12;
    background: #f9f9f9;
    opacity: 0.6; }
  .k-time-list-wrapper.k-state-focused .k-title {
    color: black;
    opacity: 1; }
  .k-time-list-wrapper.k-state-focused::before, .k-time-list-wrapper.k-state-focused::after {
    background-color: rgba(0, 0, 0, 0.04);
    border-width: 0; }

.k-time-list::before, .k-time-list::after {
  box-shadow: 0 0 3em 1.5em #f9f9f9; }

.k-time-list .k-item:hover {
  color: #0735cc; }

.k-time-container {
  background: transparent; }

.k-time-highlight {
  background-color: var(--sg-bg-color, #ffffff);
  border-color: rgba(0, 0, 0, 0.08); }

.k-datetimepicker .k-select {
  width: auto; }

.k-datetimepicker .k-link {
  padding: 0;
  width: calc( 8px + 1.42857em);
  border-width: 0; }

.k-dateinput .k-dateinput-wrap {
  background-clip: padding-box; }
  .k-ie11 .k-dateinput .k-dateinput-wrap,
  .k-edge12 .k-dateinput .k-dateinput-wrap,
  .k-edge13 .k-dateinput .k-dateinput-wrap {
    background-clip: border-box; }

.k-dateinput .k-select {
  padding: 0;
  width: calc( 8px + 1.42857em);
  border-width: 0; }
  .k-dateinput .k-select > .k-state-selected,
  .k-dateinput .k-select > .k-state-active {
    color: #252525;
    box-shadow: inset 0 3px 4px 0 rgba(0, 0, 0, 0.06); }

.k-picker-wrap > .k-dateinput .k-state-focused {
  box-shadow: none; }

.k-dateinput.k-state-invalid .k-textbox {
  color: #d51923;
  border-color: #d51923; }

.k-dateinput.k-state-invalid .k-i-warning {
  color: #d51923; }

.k-dropdowngrid-popup {
  overflow: hidden; }

.k-dropdowngrid-popup .k-virtual-wrap {
  margin: 0; }

.k-grid-list {
  width: 100%;
  max-width: none;
  border-width: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  empty-cells: show;
  outline: none;
  display: table; }

.k-dropdowngrid-popup .k-grid-header-wrap {
  border-width: 0 1px 0 0; }

.k-dropdowngrid-popup .k-grid-header {
  padding: 0;
  display: block; }

.k-dropdowngrid-popup .k-grid-header table {
  width: 100%;
  max-width: none;
  border-width: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  empty-cells: show;
  outline: none; }

.k-dropdowngrid-popup .k-grid-header .k-header {
  padding: 8px 12px;
  border-width: 0 0 0 1px;
  border-style: solid;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }
  .k-dropdowngrid-popup .k-grid-header .k-header:first-child {
    border-left: 0; }

.k-grid-list > .k-item {
  box-sizing: border-box;
  display: table-row;
  position: relative; }

.k-grid-list > .k-item > .k-cell,
.k-grid-list > .k-item > .k-group,
.k-grid-list > .k-item > .k-spacer-group {
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle; }

.k-grid-list.k-virtual-list > .k-item > .k-cell,
.k-grid-list.k-virtual-list > .k-item > .k-group,
.k-grid-list.k-virtual-list > .k-item > .k-spacer-group {
  display: inline-block; }

.k-grid-list > .k-item:last-child > .k-cell,
.k-grid-list > .k-item:last-child > .k-group-cell,
.k-grid-list > .k-item:last-child > .k-spacer-cell {
  border-bottom-width: 0; }

.k-grid-list > .k-item > .k-cell {
  padding: 8px 12px;
  border-width: 0 0 0 1px;
  border-style: solid;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }
  .k-grid-list > .k-item > .k-cell:first-child {
    border-left: 0; }

.k-dropdowngrid-popup .k-group-header {
  margin: 0;
  padding: 8px 12px;
  min-height: auto;
  text-align: left; }

.k-grid-list > .k-item > .k-group-cell,
.k-grid-list > .k-item > .k-spacer-cell {
  padding: 0;
  width: 0;
  border-left-width: 0;
  border-right-width: 0;
  overflow: visible;
  position: relative; }

.k-grid-list > .k-item > .k-group-cell > span {
  padding: 0 6px;
  font-size: .875em;
  position: absolute;
  top: 0;
  right: 0; }

.k-dropdowngrid-popup .k-footer {
  padding: 8px 12px;
  border-width: 1px 0 0 0;
  border-style: solid;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  flex-shrink: 0; }

.k-rtl.k-dropdowngrid-popup .k-grid-header-wrap,
.k-rtl .k-dropdowngrid-popup .k-grid-header-wrap {
  border-right-width: 0;
  border-left-width: 1px; }

.k-rtl.k-dropdowngrid-popup .k-grid-header .k-header,
.k-rtl .k-dropdowngrid-popup .k-grid-header .k-header,
.k-rtl .k-grid-list > .k-item > .k-cell {
  border-left-width: 0;
  border-right-width: 1px;
  text-align: right; }

.k-rtl.k-dropdowngrid-popup .k-grid-header .k-header:first-child,
.k-rtl .k-dropdowngrid-popup .k-grid-header .k-header:first-child,
.k-rtl .k-grid-list > .k-item > .k-cell:first-child {
  border-right-width: 0; }

.k-rtl div.k-dropdowngrid-popup .k-group-header {
  text-align: right; }

.k-rtl .k-grid-list > .k-item > .k-group-cell > span {
  right: auto;
  left: 0; }

.k-dropdowngrid-popup {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-dropdowngrid-popup .k-header {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }

.k-dropdowngrid-popup .k-footer {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }

.k-dropdowngrid-popup .k-group-header {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }

.k-dropdowngrid-popup .k-item:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.04); }

.k-dropdowngrid-popup .k-cell {
  border-color: rgba(0, 0, 0, 0.08); }

.k-dropdowngrid-popup .k-item.k-state-hover {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-dropdowngrid-popup .k-item.k-state-selected {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: rgba(82, 160, 255, 0.25); }

.k-dropdowngrid-popup .k-item.k-state-focused {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-dropdowngrid-popup .k-group-cell span {
  background-color: #656565;
  color: #ffffff; }

.k-grid-list > .k-item.k-last > .k-cell,
.k-grid-list > .k-item.k-last > .k-group-cell,
.k-grid-list > .k-item.k-last > .k-spacer-cell {
  border-bottom-color: #656565; }

.k-textbox,
.k-input.k-textbox,
.k-textarea {
  border-radius: 6px;
  padding: 4px 8px;
  width: 12.4em;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  outline: 0;
  font: inherit;
  font-size: 14px;
  line-height: 1.42857;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  -webkit-appearance: none; }

.k-textbox,
.k-input.k-textbox {
  height: calc( 10px + 1.42857em); }

.k-textarea {
  width: 18em;
  min-height: calc( 8px + 5.71429em); }

.k-maskedtextbox {
  display: inline-flex;
  border-width: 0; }
  .k-maskedtextbox .k-textbox {
    flex: 1 0 0%;
    min-width: 0; }

.k-input,
.k-textbox > input {
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  color: inherit;
  background: none;
  font: inherit;
  font-size: 14px;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none; }

.k-input::-ms-clear,
.k-textbox > input::-ms-clear,
.k-textbox::-ms-clear {
  display: none; }

.k-textbox:focus {
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.06); }

.k-textbox:disabled, .k-textbox[disabled], .k-textbox.k-state-disabled {
  outline: none;
  cursor: default;
  opacity: 0.6;
  filter: grayscale(0.1);
  pointer-events: none;
  box-shadow: none; }

.k-textbox-container {
  position: relative;
  padding-top: 1.07143em;
  display: inline-flex;
  width: 12.4em;
  flex-direction: column;
  justify-content: stretch; }
  .k-textbox-container > .k-label {
    pointer-events: none;
    position: absolute;
    line-height: 1.42857em;
    cursor: text;
    top: calc( 1.07143em + 5px);
    left: 9px;
    transition: transform 0.2s ease-out, color 0.2s ease-out; }
  .k-textbox-container > .k-textbox,
  .k-textbox-container > .k-textarea,
  .k-textbox-container > .k-widget {
    flex: 1 1 auto;
    width: auto; }
  .k-textbox-container.k-state-empty > .k-label {
    transform: translate(0, 0) scale(1); }
  .k-textbox-container > .k-label,
  .k-textbox-container.k-state-focused > .k-label {
    transform: translate(-8px, -3px) translate(-1px, -1.07143em) translate(-12.5%, -9.375%) scale(0.75); }
  .k-rtl .k-textbox-container > .k-label, .k-textbox-container[dir="rtl"] > .k-label {
    left: auto;
    right: 9px; }
  .k-rtl .k-textbox-container.k-state-empty > .k-label, .k-textbox-container[dir="rtl"].k-state-empty > .k-label {
    transform: translate(0, 0) scale(1); }
  .k-rtl .k-textbox-container > .k-label,
  .k-rtl .k-textbox-container.k-state-focused > .k-label, .k-textbox-container[dir="rtl"] > .k-label,
  .k-textbox-container[dir="rtl"].k-state-focused > .k-label {
    transform: translate(8px, -3px) translate(1px, -1.07143em) translate(12.5%, -9.375%) scale(0.75); }

.k-checkbox,
.k-radio {
  margin: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  opacity: 0;
  -webkit-appearance: none;
  pointer-events: none; }

.k-radio:disabled + .k-radio-label,
.k-checkbox:disabled + .k-checkbox-label {
  outline: none;
  cursor: default;
  opacity: 0.6;
  filter: grayscale(0.1);
  pointer-events: none;
  box-shadow: none; }

.k-checkbox-label,
.k-radio-label {
  margin: 0;
  padding-left: 20px;
  min-height: 16px;
  line-height: 17px;
  vertical-align: text-top;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer; }
  .k-checkbox-label .k-ripple,
  .k-radio-label .k-ripple {
    top: 8px;
    left: 8px;
    right: auto;
    bottom: auto;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    border-radius: 50%; }
  .k-checkbox-label .k-ripple-blob,
  .k-radio-label .k-ripple-blob {
    top: 50% !important;
    left: 50% !important;
    width: 200% !important;
    height: 200% !important; }
  .k-checkbox-label.k-no-text,
  .k-radio-label.k-no-text {
    padding: 0;
    width: 16px;
    height: 16px;
    display: inline-block;
    font-size: 0; }
    .k-ie .k-checkbox-label.k-no-text,
    .k-edge .k-checkbox-label.k-no-text, .k-ie
    .k-radio-label.k-no-text,
    .k-edge
    .k-radio-label.k-no-text {
      width: 0; }
  .k-rtl .k-checkbox-label,
  [dir="rtl"] .k-checkbox-label, .k-rtl
  .k-radio-label,
  [dir="rtl"]
  .k-radio-label {
    padding-left: 0;
    padding-right: 20px; }

.k-checkbox-label::before,
.k-checkbox-label::after,
.k-radio-label::before,
.k-radio-label::after {
  font-size: 16px;
  font-family: "WebComponentsIcons", monospace;
  box-sizing: border-box;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0; }
  .k-rtl .k-checkbox-label::before,
  [dir="rtl"] .k-checkbox-label::before, .k-rtl
  .k-checkbox-label::after,
  [dir="rtl"]
  .k-checkbox-label::after, .k-rtl
  .k-radio-label::before,
  [dir="rtl"]
  .k-radio-label::before, .k-rtl
  .k-radio-label::after,
  [dir="rtl"]
  .k-radio-label::after {
    left: auto;
    right: 0; }

.k-checkbox-label::before,
.k-radio-label::before {
  content: "";
  width: 16px;
  height: 16px;
  border-width: 1px;
  border-style: solid; }

.k-checkbox-label::before {
  border-radius: 6px; }

.k-radio-label::before {
  border-radius: 50%; }

.k-checkbox-label::after {
  content: "\e118";
  width: 16px;
  height: 16px;
  transform: scale(0); }

.k-checkbox:checked + .k-checkbox-label::after {
  border-radius: 6px;
  transform: scale(1); }

.k-checkbox:indeterminate + .k-checkbox-label::after {
  content: "";
  transform: scale(1);
  width: 8px;
  height: 8px;
  top: 4px;
  left: 4px; }

.k-radio-label::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  transform: scale(0); }

.k-radio:checked + .k-radio-label::after {
  transform: scale(1); }

.k-rtl .k-radio:checked + .k-radio-label::after,
[dir="rtl"] .k-radio:checked + .k-radio-label::after {
  right: 4px; }

.k-radio-list .k-radio-label {
  line-height: 20px; }

.k-fieldset {
  margin: 30px;
  border-width: 1px 0 0;
  border-style: solid;
  padding: 25px 0 0; }
  .k-fieldset > legend {
    margin-left: 0;
    padding: 0 8px 0 0;
    text-transform: uppercase; }

.k-form,
.k-form-inline {
  font-size: 14px;
  line-height: 1.42857;
  padding: 16px; }
  .k-form fieldset,
  .k-form-inline fieldset {
    border-width: 1px 0 0;
    border-style: solid;
    margin: 32px 0;
    padding: 0; }
    .k-form fieldset:first-child:first-of-type,
    .k-form-inline fieldset:first-child:first-of-type {
      margin-top: 0; }
    .k-form fieldset:last-child:last-of-type,
    .k-form-inline fieldset:last-child:last-of-type {
      margin-bottom: 0; }
  .k-form legend,
  .k-form-inline legend {
    font-size: 12px;
    text-align: left;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
    padding: 0 8px 0 0;
    width: auto; }
  .k-form .k-form-field,
  .k-form-inline .k-form-field {
    display: block;
    text-align: left;
    margin-bottom: 12px; }
    .k-form .k-form-field > span,
    .k-form-inline .k-form-field > span {
      line-height: 1.42857; }
    .k-form .k-form-field:last-child,
    .k-form-inline .k-form-field:last-child {
      margin-bottom: 0; }
  .k-form .k-alert-error,
  .k-form-inline .k-alert-error {
    font-size: 12px;
    margin-top: 8px; }
  .k-form .k-field-info,
  .k-form-inline .k-field-info {
    display: inline-block;
    font-size: 10px;
    line-height: 1;
    margin: 0 8px; }
  .k-form .k-checkbox-label,
  .k-form .k-radio-label,
  .k-form-inline .k-checkbox-label,
  .k-form-inline .k-radio-label {
    margin-right: 16px;
    align-self: center; }

.k-form input,
.k-form label:not(.k-checkbox-label):not(.k-radio-label),
.k-form .k-widget:not(.k-calendar):not(.k-switch) {
  display: block; }

.k-form .k-form-field > span:not(.k-widget) {
  display: block;
  padding: 4px 0; }

.k-form .k-form-field > input {
  width: 100%; }

.k-form-inline .k-form-field {
  display: flex;
  align-items: flex-start; }
  .k-form-inline .k-form-field > span:not(.k-widget),
  .k-form-inline .k-form-field > label:not(.k-checkbox-label):not(.k-radio-label) {
    width: 25%;
    text-align: right;
    line-height: 1.42857;
    padding: 5px 0;
    padding-right: 12px;
    align-self: center; }
  .k-form-inline .k-form-field > input {
    flex: 1 1 auto; }
  .k-form-inline .k-form-field .k-field-info {
    display: block;
    margin: 0; }

.k-treeview .k-checkbox-label,
.k-grid .k-checkbox-label {
  cursor: default;
  outline: 0; }

.k-textbox,
.k-textarea,
.k-input.k-textbox {
  background-clip: padding-box; }
  .k-ie11 .k-textbox,
  .k-edge12 .k-textbox,
  .k-edge13 .k-textbox, .k-ie11
  .k-textarea,
  .k-edge12
  .k-textarea,
  .k-edge13
  .k-textarea, .k-ie11
  .k-input.k-textbox,
  .k-edge12
  .k-input.k-textbox,
  .k-edge13
  .k-input.k-textbox {
    background-clip: border-box; }
  .k-textbox:hover, .k-textbox.k-state-hover,
  .k-textarea:hover,
  .k-textarea.k-state-hover,
  .k-input.k-textbox:hover,
  .k-input.k-textbox.k-state-hover {
    border-color: rgba(0, 0, 0, 0.15); }
  .k-textbox:focus, .k-textbox.k-state-focus,
  .k-textarea:focus,
  .k-textarea.k-state-focus,
  .k-input.k-textbox:focus,
  .k-input.k-textbox.k-state-focus {
    color: var(--sg-text-color, #000000);
    border-color: rgba(0, 0, 0, 0.15); }
  .k-textbox.k-invalid, .k-textbox.k-state-invalid, .k-textbox.ng-invalid.ng-touched, .k-textbox.ng-invalid.ng-dirty,
  .k-textarea.k-invalid,
  .k-textarea.k-state-invalid,
  .k-textarea.ng-invalid.ng-touched,
  .k-textarea.ng-invalid.ng-dirty,
  .k-input.k-textbox.k-invalid,
  .k-input.k-textbox.k-state-invalid,
  .k-input.k-textbox.ng-invalid.ng-touched,
  .k-input.k-textbox.ng-invalid.ng-dirty {
    color: #d51923;
    border-color: rgba(213, 25, 35, 0.5); }
  .k-textbox::selection,
  .k-textarea::selection,
  .k-input.k-textbox::selection {
    background-color: #0735cc;
    color: #ffffff; }

.k-textbox::selection,
.k-input::selection,
.k-textarea::selection {
  background-color: #0735cc;
  color: #ffffff; }

.k-state-disabled .k-textbox::selection, .k-state-disabled
.k-input::selection, .k-state-disabled
.k-textarea::selection {
  color: var(--sg-text-color, #000000);
  background-color: transparent; }

.k-textbox::placeholder,
.k-input::placeholder,
.k-input.k-textbox::placeholder,
.k-textarea::placeholder {
  color: rgba(101, 101, 101, 0.5); }

.k-radio-label::before {
  border-color: rgba(0, 0, 0, 0.08);
  background-color: var(--sg-bg-color, #ffffff); }

.k-radio:focus + .k-radio-label::before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06); }

.k-radio:checked + .k-radio-label::before {
  border-color: #0735cc;
  background-color: #0735cc; }

.k-radio:checked + .k-radio-label::after {
  background-color: var(--sg-bg-color, #ffffff); }

.k-radio:checked:focus + .k-radio-label::before {
  box-shadow: 0 0 0 2px rgba(82, 160, 255, 0.3); }

.k-radio-label:hover::before {
  border-color: rgba(0, 0, 0, 0.15);
  background-color: var(--sg-bg-color, #ffffff); }

.k-radio-label:hover::after {
  background-color: #0735cc; }

.k-checkbox-label::before {
  background-color: var(--whiteColor, #ffffff);
  border-color: rgba(0, 0, 0, 0.08); }

.k-checkbox:indeterminate + .k-checkbox-label::after {
  background-color: #0735cc; }

.k-checkbox:focus + .k-checkbox-label::before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06); }

.k-checkbox:checked + .k-checkbox-label::before {
  border-color: #0735cc;
  background-color: #0735cc; }

.k-checkbox:checked + .k-checkbox-label::after {
  color: #ffffff; }

.k-checkbox:checked:focus + .k-checkbox-label::before {
  box-shadow: 0 0 0 2px rgba(82, 160, 255, 0.3); }

.k-checkbox-label:hover::before {
  border-color: rgba(0, 0, 0, 0.15);
  background-color: var(--sg-input-hover-bg-color, #ecf4ff); }

.k-checkbox-label:hover::after {
  color: #0735cc; }

fieldset {
  border-color: rgba(0, 0, 0, 0.08); }

fieldset legend {
  color: var(--sg-text-color, #000000); }

.k-form,
.k-form-inline {
  color: var(--sg-text-color, #000000); }
  .k-form fieldset legend,
  .k-form-inline fieldset legend {
    color: #444444; }
  .k-form .k-field-info,
  .k-form-inline .k-field-info {
    color: #b9b9b9; }
  .k-form .k-alert-error,
  .k-form-inline .k-alert-error {
    color: #d51923; }

.k-required,
.k-required.k-field-info {
  color: #0735cc; }

.k-dropdowntree .k-select {
  border-width: 0; }

.k-popup-dropdowntree {
  padding: 0; }
  .k-popup-dropdowntree .k-list-filter {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
    margin: 0 0 6px; }
  .k-popup-dropdowntree .k-check-all .k-checkbox-label {
    padding-left: 28px; }
  .k-popup-dropdowntree .k-check-all {
    padding: 6px 6px 0; }
  .k-popup-dropdowntree .k-list-filter .k-check-all {
    padding-top: 0; }
  .k-popup-dropdowntree .k-treeview {
    padding: 6px 6px; }
  .k-popup-dropdowntree.k-rtl .k-check-all .k-checkbox-label,
  [dir="rtl"] .k-popup-dropdowntree .k-check-all .k-checkbox-label {
    padding-left: 0;
    padding-right: 28px; }

.k-dropdowntree .k-dropdown-wrap {
  background-clip: padding-box; }
  .k-ie11 .k-dropdowntree .k-dropdown-wrap,
  .k-edge12 .k-dropdowntree .k-dropdown-wrap,
  .k-edge13 .k-dropdowntree .k-dropdown-wrap {
    background-clip: border-box; }
  .k-dropdowntree .k-dropdown-wrap .k-select {
    padding: 0;
    width: calc( 8px + 1.42857em); }

html .k-upload {
  position: relative; }

.k-upload .k-upload-button {
  min-width: 7em;
  margin: 8px; }

.k-upload .k-dropzone {
  display: flex;
  align-items: center;
  position: relative;
  border-width: 0;
  background-color: transparent; }
  .k-upload .k-dropzone em,
  .k-upload .k-dropzone .k-dropzone-hint {
    margin-left: 1em;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    white-space: nowrap;
    position: relative;
    vertical-align: middle;
    visibility: hidden;
    font-style: italic;
    display: none; }
  .k-upload .k-dropzone .k-upload-status {
    display: flex;
    align-items: center;
    position: relative;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857; }
    .k-upload .k-dropzone .k-upload-status > .k-icon {
      margin-right: 6px; }
  .k-upload .k-dropzone.k-dropzone-active em,
  .k-upload .k-dropzone.k-dropzone-active .k-dropzone-hint {
    display: block;
    visibility: visible;
    opacity: 1; }
  .k-upload .k-dropzone.k-dropzone-active .k-upload-status {
    display: none; }

.k-upload .k-upload-status-total {
  margin-left: 8px;
  margin-right: 8px; }

.k-upload .k-upload-files {
  padding-bottom: 4px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: inherit;
  margin: 0; }
  .k-upload .k-upload-files .k-file-multiple,
  .k-upload .k-upload-files .k-file-single {
    display: block;
    width: 100%; }
  .k-upload .k-upload-files .k-file {
    padding: 8px;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1.42857; }
  .k-upload .k-upload-files .k-progress {
    position: absolute;
    bottom: 0;
    left: 0; }
  .k-upload .k-upload-files .k-filename {
    margin-left: 1em;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative; }
  .k-upload .k-upload-files .k-upload-status {
    position: absolute;
    right: 8px;
    top: 8px; }
    .k-upload .k-upload-files .k-upload-status .k-button {
      padding: 0;
      border-radius: 50%; }
    .k-upload .k-upload-files .k-upload-status .k-icon {
      vertical-align: middle; }
  .k-upload .k-upload-files .k-upload-pct {
    font-weight: normal;
    vertical-align: middle; }
  .k-upload .k-upload-files ~ .k-clear-selected,
  .k-upload .k-upload-files ~ .k-upload-selected {
    margin-top: -4px;
    border-width: 0; }
  .k-upload .k-upload-files ~ .k-upload-selected {
    border-left-width: 1px;
    border-left-style: solid;
    margin-left: -1px; }
  .k-upload .k-upload-files .k-file-name,
  .k-upload .k-upload-files .k-file-size,
  .k-upload .k-upload-files .k-file-validation-message,
  .k-upload .k-upload-files .k-file-information {
    display: block; }
  .k-upload .k-upload-files .k-file-name {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 4px; }
  .k-upload .k-upload-files .k-file-size,
  .k-upload .k-upload-files .k-file-information,
  .k-upload .k-upload-files .k-file-validation-message {
    font-size: 9.432px; }
  .k-upload .k-upload-files .k-file-information {
    text-indent: 1px; }
  .k-upload .k-upload-files .k-file-extension-wrapper,
  .k-upload .k-upload-files .k-multiple-files-extension-wrapper,
  .k-upload .k-upload-files .k-file-invalid-extension-wrapper,
  .k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper {
    position: absolute;
    top: 8px;
    width: 24px;
    height: 34px;
    border-width: 2px;
    border-style: solid;
    vertical-align: top;
    font-size: 7.98px;
    text-transform: uppercase;
    margin: 1px 0;
    box-sizing: content-box; }
  .k-upload .k-upload-files .k-file-invalid-extension-wrapper,
  .k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper {
    font-size: 1.2em; }
  .k-upload .k-upload-files .k-multiple-files-extension-wrapper,
  .k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper {
    margin-top: 4px; }
  .k-upload .k-upload-files .k-file-state {
    visibility: hidden; }
  .k-upload .k-upload-files .k-file-name-size-wrapper {
    display: block;
    margin-left: calc(24px + 1em);
    margin-right: calc(16px*2 + 3.5em);
    overflow: hidden;
    min-height: 38px; }
  .k-upload .k-upload-files .k-file-extension-wrapper::before,
  .k-upload .k-upload-files .k-multiple-files-extension-wrapper::before,
  .k-upload .k-upload-files .k-multiple-files-extension-wrapper::after,
  .k-upload .k-upload-files .k-file-invalid-extension-wrapper::before,
  .k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper::before,
  .k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper::after {
    position: absolute;
    content: "";
    display: inline-block;
    border-style: solid; }
  .k-upload .k-upload-files .k-file-extension-wrapper::before,
  .k-upload .k-upload-files .k-multiple-files-extension-wrapper::before,
  .k-upload .k-upload-files .k-file-invalid-extension-wrapper::before,
  .k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper::before {
    top: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-width: 6px;
    margin-top: -1px;
    margin-right: -1px; }
  .k-upload .k-upload-files .k-multiple-files-extension-wrapper::after,
  .k-upload .k-upload-files .k-multiple-files-invalid-extension-wrapper::after {
    top: -6px;
    left: -6px;
    width: 15px;
    height: 35px;
    border-width: 2px 0 0 2px; }
  .k-upload .k-upload-files .k-file-extension,
  .k-upload .k-upload-files .k-file-invalid-icon {
    position: absolute;
    bottom: 0;
    line-height: normal; }
  .k-upload .k-upload-files .k-file-invalid-icon {
    margin-left: 4px; }
  .k-upload .k-upload-files .k-file-extension {
    margin-left: .2em;
    margin-bottom: .3em;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    left: 0; }
  .k-upload .k-upload-files .k-upload-action {
    margin-left: 8px; }

.k-upload .k-action-buttons {
  margin: -4px 0 0;
  padding: 0;
  border-top: 0; }

.k-upload .k-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px; }

.k-upload .k-file-invalid > .k-progress {
  width: 100%; }

.k-upload[dir="rtl"] .k-dropzone .k-upload-status > .k-icon,
.k-rtl .k-upload .k-dropzone .k-upload-status > .k-icon {
  margin-left: 6px;
  margin-right: 0; }

.k-upload[dir="rtl"] .k-upload-files .k-upload-status,
.k-rtl .k-upload .k-upload-files .k-upload-status {
  right: auto;
  left: 8px; }

.k-upload[dir="rtl"] .k-upload-files ~ .k-upload-selected,
.k-rtl .k-upload .k-upload-files ~ .k-upload-selected {
  border-left-width: 0;
  border-right-width: 1px;
  border-right-style: solid;
  margin-left: 0; }

.k-upload[dir="rtl"] .k-upload-files .k-file-invalid-icon,
.k-rtl .k-upload .k-upload-files .k-file-invalid-icon {
  margin-left: 0;
  left: 4px; }

.k-upload[dir="rtl"] .k-file-name-size-wrapper,
.k-rtl .k-upload .k-file-name-size-wrapper {
  margin-right: calc(24px + 1em);
  margin-left: calc(16px + 8px); }

.k-upload[dir="rtl"] .k-file-extension,
.k-rtl .k-upload .k-file-extension {
  right: 0;
  left: auto;
  margin-right: .4em;
  margin-left: 0; }

.k-upload[dir="rtl"] .k-upload-action,
.k-rtl .k-upload .k-upload-action {
  margin-left: 0;
  margin-right: 8px; }

.k-upload-button {
  position: relative;
  overflow: hidden;
  direction: ltr; }
  .k-upload-button input {
    font: 170px monospace !important;
    margin: 0;
    padding: 0;
    filter: alpha(opacity=0);
    opacity: 0;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1; }

.k-ie9 .k-upload-status-total {
  top: 1.5em; }
  .k-ie9 .k-upload-status-total > .k-icon {
    margin-top: -3px; }

.k-ie9 .k-upload-button {
  margin: 2px 4px; }

.k-upload {
  background-color: #f6f6f6;
  border-color: rgba(0, 0, 0, 0.08);
  background-clip: padding-box; }
  .k-ie11 .k-upload,
  .k-edge12 .k-upload,
  .k-edge13 .k-upload {
    background-clip: border-box; }
  .k-upload .k-upload-files,
  .k-upload .k-upload-selected {
    border-color: rgba(0, 0, 0, 0.08); }
  .k-upload .k-file {
    background-color: var(--sg-bg-color, #ffffff);
    border-color: rgba(0, 0, 0, 0.08);
    outline: none; }
    .k-upload .k-file.k-state-focused {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
    .k-upload .k-file .k-upload-action {
      opacity: .6;
      color: inherit;
      background: none;
      border-width: 0;
      box-shadow: none; }
      .k-upload .k-file .k-upload-action:hover {
        opacity: 1; }
      .k-upload .k-file .k-upload-action.k-state-focused {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13); }
    .k-upload .k-file .k-upload-pct {
      opacity: .65; }
  .k-upload .k-upload-button input[disabled], .k-upload .k-upload-button input.k-state-disabled {
    visibility: hidden; }
  .k-upload .k-file-progress {
    color: var(--sg-text-color, #000000); }
  .k-upload .k-file-progress .k-progress {
    background-color: #3e80ed; }
  .k-upload .k-file-success .k-file-name {
    color: #5ec232; }
  .k-upload .k-file-success .k-progress {
    background-color: #5ec232; }
  .k-upload .k-file-error .k-file-name {
    color: #d51923; }
  .k-upload .k-file-error .k-progress,
  .k-upload .k-file-invalid .k-progress {
    background-color: #d51923; }
  .k-upload .k-file-extension-wrapper,
  .k-upload .k-multiple-files-extension-wrapper {
    color: #bababa;
    border-color: #bababa; }
  .k-upload .k-file-invalid .k-file-name-invalid {
    color: #d51923; }
  .k-upload .k-file-invalid-extension-wrapper,
  .k-upload .k-multiple-files-invalid-extension-wrapper,
  .k-upload .k-file-error .k-file-extension-wrapper {
    color: #d51923;
    border-color: #f29095; }
  .k-upload .k-file-extension-wrapper::before,
  .k-upload .k-multiple-files-extension-wrapper::before {
    background-color: var(--sg-bg-color, #ffffff);
    border-color: transparent transparent #bababa #bababa; }
  .k-upload .k-file-invalid-extension-wrapper::before,
  .k-upload .k-multiple-files-invalid-extension-wrapper::before,
  .k-upload .k-file-error .k-file-extension-wrapper::before {
    background-color: var(--sg-bg-color, #ffffff);
    border-color: transparent transparent #f29095 #f29095; }
  .k-upload .k-multiple-files-extension-wrapper::after {
    border-top-color: #bababa;
    border-left-color: #bababa; }
  .k-upload .k-multiple-files-invalid-extension-wrapper::after {
    border-top-color: #f29095;
    border-left-color: #f29095; }
  .k-upload .k-file-size,
  .k-upload .k-file-information,
  .k-upload .k-file-validation-message {
    color: #bababa; }

.k-dropzone .k-i-loading {
  border-color: #f6f6f6; }

.k-dropzone .k-i-loading::before,
.k-dropzone .k-i-loading::after {
  background-color: #f6f6f6; }

.k-dropzone-hovered {
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-editor {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: top;
  position: relative;
  table-layout: fixed; }
  .k-editor .k-content {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: none;
    display: block; }

kendo-editor.k-editor {
  flex-direction: column;
  display: flex; }

kendo-editor .k-content {
  overflow-y: auto; }
  kendo-editor .k-content > .ProseMirror {
    padding: 8px; }

.k-editor-sandbox .k-content * {
  color: initial;
  background-color: initial;
  font-size: initial;
  line-height: initial;
  font-family: initial; }

.k-editor-sandbox.k-ie .k-content * {
  color: #000000;
  background-color: transparent;
  font-size: medium;
  line-height: normal;
  font-family: sans-serif; }

table.k-editor {
  width: 100%; }

.k-editor-inline {
  border-radius: 6px;
  padding: 2px 4px;
  border: 1px solid transparent;
  word-wrap: break-word;
  overflow: auto;
  background: none;
  transition: border-color .3s; }

.k-window.k-editor-widget {
  padding: 0; }

.editorToolbarWindow {
  padding: 0;
  display: flex;
  align-items: stretch; }

.k-editortoolbar-dragHandle {
  margin: 8px;
  padding: 0;
  cursor: move; }

.k-editor > .k-toolbar {
  border-width: 0 0 1px 0; }

.k-editor-toolbar-wrap {
  border-color: inherit; }

.k-editor-toolbar {
  margin: 0;
  padding: 8px 8px;
  border-color: inherit;
  list-style-type: none;
  line-height: 1.42857;
  cursor: default;
  word-wrap: break-word;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative; }
  .k-editor-toolbar.k-toolbar-resizable {
    flex-wrap: nowrap;
    overflow: hidden;
    flex: 1 1 auto; }
  .k-editor-toolbar li {
    display: inline-flex;
    align-items: center;
    vertical-align: middle; }
  .k-editor-toolbar .k-tool-group {
    padding: 0;
    border-width: 0;
    border-style: solid;
    border-color: inherit; }
    .k-editor-toolbar .k-tool-group .k-widget ~ .k-widget {
      margin-left: 8px; }
  .k-editor-toolbar .k-tool-group + .k-tool-group {
    margin-left: 8px; }
  .k-editor-toolbar .k-tool-group .k-state-disabled,
  .k-editor-toolbar .k-tool-group.k-state-disabled {
    display: none; }
  .k-editor-toolbar .k-tool {
    padding: 4px;
    width: calc( 10px + 1.42857em);
    height: calc( 10px + 1.42857em);
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: relative; }
  .k-editor-toolbar .k-tool-text {
    display: none; }
  .k-editor-toolbar .k-tool + .k-tool {
    margin-left: 8px; }
  .k-editor-toolbar .k-tool-group.k-button-group .k-tool {
    margin: 0; }
  .k-editor-toolbar .k-overflow-tools {
    position: absolute;
    top: 0;
    right: 0;
    visibility: hidden; }

.k-editable-area {
  padding: 4px;
  width: 100%;
  height: 100%;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: inherit;
  outline: 0; }
  .k-resizable .k-editable-area {
    padding: 4px 4px 16px; }

.k-edit-form-content {
  flex: 1 1 auto;
  overflow: auto;
  margin: -16px -16px;
  padding: 16px 16px; }

.k-ct-popup {
  box-sizing: border-box;
  width: 190px;
  padding: 5px; }
  .k-ct-popup .k-editor-toolbar {
    text-align: center; }
    .k-ct-popup .k-editor-toolbar .k-tool {
      border-radius: 6px;
      width: 100%;
      height: auto;
      display: flex; }
    .k-ct-popup .k-editor-toolbar .k-tool-text {
      display: inline; }
  .k-ct-popup .k-ct-cell {
    margin: 1px;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid;
    border-color: inherit;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    opacity: .7;
    pointer-events: all; }

.k-editor .k-resize-handle {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 13px 13px;
  border-color: transparent;
  border-bottom-color: inherit;
  cursor: se-resize; }
  .k-editor .k-resize-handle .k-i-arrow-45-down-right {
    display: none; }

.k-rtl .k-editor .k-editor-widget .k-dropdown-wrap {
  padding-left: 0; }
  .k-rtl .k-editor .k-editor-widget .k-dropdown-wrap .k-select {
    border-width: 0; }

.k-editor-dialog {
  box-sizing: border-box; }
  .k-editor-dialog .k-edit-form-container {
    width: auto; }
  .k-editor-dialog .k-edit-label {
    width: 30%;
    padding: 5px 0; }
  .k-editor-dialog .k-edit-field {
    width: 66%; }

.k-filebrowser-dialog {
  display: flex; }
  .k-filebrowser-dialog .k-edit-form-container {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; }
  .k-filebrowser-dialog .k-edit-label {
    width: 18%; }
  .k-filebrowser-dialog .k-edit-field {
    width: 75%; }

.k-filebrowser {
  max-width: 100%; }
  .k-filebrowser .k-floatwrap {
    display: flex; }
    .k-filebrowser .k-floatwrap::after {
      display: none; }
  .k-filebrowser .k-breadcrumbs {
    flex: 1; }
  .k-filebrowser .k-search-wrap {
    margin: 0 0 0 1em;
    width: 150px;
    display: flex;
    align-items: center; }
    .k-filebrowser .k-search-wrap .k-input {
      flex: 1;
      width: 100px; }
    .k-filebrowser .k-search-wrap .k-icon {
      margin: 0;
      position: static; }
  .k-filebrowser .k-filebrowser-toolbar {
    margin: 1em 0 0 0;
    padding: 8px 8px;
    display: flex;
    justify-content: space-between; }
  .k-filebrowser .k-toolbar-wrap {
    display: flex; }
    .k-filebrowser .k-toolbar-wrap > * + * {
      margin-left: 8px; }
    .k-filebrowser .k-toolbar-wrap .k-state-disabled {
      display: none; }
  .k-filebrowser .k-upload {
    padding: 0;
    border-width: 0;
    background: none; }
    .k-filebrowser .k-upload .k-upload-button {
      margin: 0; }
    .k-filebrowser .k-upload .k-upload-status {
      display: none; }
  .k-filebrowser .k-upload-files {
    display: none; }
  .k-filebrowser .k-tiles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 390px;
    max-height: 50vh;
    margin: 0 0 1em 0;
    padding: 4px 8px;
    border-top-width: 0;
    overflow: auto; }
  .k-filebrowser .k-tile {
    width: 33%;
    height: 90px;
    padding: 4px 8px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    border-radius: 6px; }
    .k-filebrowser .k-tile .k-i-file,
    .k-filebrowser .k-tile .k-i-folder {
      font-size: 4em; }
    .k-filebrowser .k-tile input {
      width: 100px; }
    .k-filebrowser .k-tile strong {
      display: block;
      font-weight: 400;
      overflow: hidden;
      text-overflow: ellipsis; }
  .k-filebrowser .k-tile-empty {
    display: block;
    margin: auto; }
    .k-filebrowser .k-tile-empty.k-state-selected {
      color: inherit;
      border-width: 0;
      background-image: none;
      background-color: transparent; }
    .k-filebrowser .k-tile-empty strong {
      opacity: .5;
      font-size: 3em;
      font-weight: 400; }
  .k-filebrowser .k-thumb {
    float: left;
    margin-right: 4px; }
  .k-filebrowser .k-breadcrumbs-wrap {
    position: absolute;
    left: 8px;
    top: 4px; }
    .k-filebrowser .k-breadcrumbs-wrap .k-icon {
      position: static;
      margin-top: 0; }

.k-editor-table-wizard-dialog {
  display: flex; }
  .k-editor-table-wizard-dialog .k-edit-form-container {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; }
  .k-editor-table-wizard-dialog .k-tabstrip-wrapper {
    display: flex;
    flex: 1 1 auto;
    overflow: auto; }
    .k-editor-table-wizard-dialog .k-tabstrip-wrapper .k-tabstrip.k-root-tabs {
      flex: 1 1 auto;
      margin-bottom: 0; }
  .k-editor-table-wizard-dialog .k-edit-field > .k-checkbox {
    position: relative; }
  .k-editor-table-wizard-dialog .k-numerictextbox {
    width: 10em; }
    .k-editor-table-wizard-dialog .k-numerictextbox + .k-dropdown {
      width: 4em; }
    .k-editor-table-wizard-dialog .k-numerictextbox + .k-colorpicker,
    .k-editor-table-wizard-dialog .k-numerictextbox + .k-dropdown {
      margin-left: 4px; }
  .k-editor-table-wizard-dialog .k-colorpicker {
    vertical-align: middle; }
  .k-editor-table-wizard-dialog .k-edit-field > .k-checkbox {
    position: relative; }
  .k-editor-table-wizard-dialog .k-dropdown.k-align {
    width: auto; }

.k-popup.k-align .k-list {
  display: flex;
  flex-flow: row wrap; }

.k-popup.k-align .k-list .k-item {
  padding: 4px;
  height: calc( 10px + 1.42857em);
  box-sizing: border-box;
  justify-content: center;
  flex: 1 0 33%; }
  .k-popup.k-align .k-list .k-item .k-icon {
    margin: 0; }

.k-popup.k-align .k-list .k-item:last-child {
  flex: 1 0 100%; }

.k-editor-inline .k-table {
  width: 100%;
  border-spacing: 0;
  margin: 0 0 1em; }
  .k-editor-inline .k-table,
  .k-editor-inline .k-table td {
    outline: 0;
    border: 1px dotted #cccccc; }
  .k-editor-inline .k-table td {
    min-width: 1px;
    padding: 2px 4px; }

.k-editor-inline .k-table-resize-handle-wrapper {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--sg-bg-color, #ffffff);
  border: 1px solid #000000;
  z-index: 100; }
  .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle {
    width: 100%;
    height: 100%; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-east {
      cursor: e-resize; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-north {
      cursor: n-resize; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-northeast {
      cursor: ne-resize; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-northwest {
      cursor: nw-resize; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-south {
      cursor: s-resize; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-southeast {
      cursor: se-resize; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-southwest {
      cursor: sw-resize; }
    .k-editor-inline .k-table-resize-handle-wrapper .k-table-resize-handle.k-resize-west {
      cursor: w-resize; }

.k-editor-inline .k-column-resize-handle-wrapper {
  position: absolute;
  height: 10px;
  width: 10px;
  cursor: col-resize;
  z-index: 2; }
  .k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle {
    width: 100%;
    height: 100%; }
    .k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle .k-column-resize-marker {
      width: 2px;
      height: 100%;
      margin: 0 auto;
      background-color: #00b0ff;
      display: none;
      opacity: .8; }

.k-editor-inline .k-row-resize-handle-wrapper {
  position: absolute;
  z-index: 2;
  cursor: row-resize;
  width: 10px;
  height: 10px; }
  .k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-handle {
    display: table;
    width: 100%;
    height: 100%; }
  .k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker-wrapper {
    display: table-cell;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle; }
  .k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker {
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 2px;
    background-color: #00b0ff;
    opacity: .8; }

.k-editor {
  background-clip: padding-box; }
  .k-editor .k-editable-area {
    border-color: rgba(0, 0, 0, 0.08); }
  .k-ie11 .k-editor,
  .k-edge12 .k-editor,
  .k-edge13 .k-editor {
    background-clip: border-box; }

.k-editor-inline:hover, .k-editor-inline.k-state-active {
  border-color: rgba(0, 0, 0, 0.08); }

.k-editor-toolbar {
  padding: 0; }
  .k-editor-toolbar .k-tool-group {
    padding: 8px 8px; }
    .k-editor-toolbar .k-tool-group .k-tool.k-group-start,
    .k-editor-toolbar .k-tool-group .k-tool.k-group-end {
      border-radius: 0; }
  .k-editor-toolbar .k-tool-group + .k-tool-group {
    margin: 0;
    border-left-width: 1px; }

.k-editor .k-editor-toolbar-wrap a.k-tool,
.k-ct-popup .k-editor-toolbar a.k-tool,
.editorToolbarWindow.k-header.k-window-content a.k-tool {
  border-width: 0;
  background-image: none;
  background-color: transparent; }
  .k-editor .k-editor-toolbar-wrap a.k-tool.k-state-selected,
  .k-ct-popup .k-editor-toolbar a.k-tool.k-state-selected,
  .editorToolbarWindow.k-header.k-window-content a.k-tool.k-state-selected {
    border-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    background-color: #0735cc;
    background-image: none; }

.k-editor .k-editor-toolbar-wrap .k-tool-group,
.k-ct-popup .k-editor-toolbar .k-tool-group,
.editorToolbarWindow.k-header.k-window-content .k-tool-group {
  border-color: rgba(0, 0, 0, 0.08); }

.k-editor-toolbar .k-overflow-anchor {
  padding: 8px;
  width: calc( 1.42857em + 8px + 2px + 16px);
  height: calc( 1.42857em + 8px + 2px + 16px); }

.k-ct-popup .k-state-selected {
  border-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  background-color: #0735cc;
  background-image: none; }

.k-multiselect {
  border-radius: 6px;
  width: 100%; }
  .k-multiselect .k-loading-hidden {
    visibility: hidden; }

.k-multiselect-wrap {
  cursor: text; }
  .k-multiselect-wrap::before {
    content: "";
    width: 0;
    height: calc( 1.42857em + 8px);
    float: left; }
  .k-multiselect-wrap .k-input {
    float: left; }
  .k-multiselect-wrap ul {
    vertical-align: top; }
  .k-multiselect-wrap li.k-button {
    float: left; }
  .k-multiselect-wrap .k-button {
    min-height: calc( 1.42857em + 4px);
    padding: 1px 4px;
    margin: 2px 0 0 2px;
    cursor: default;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    line-height: inherit;
    white-space: normal; }
    .k-multiselect-wrap .k-button .k-select {
      display: flex;
      cursor: pointer;
      margin-left: 8px;
      align-self: stretch; }
    .k-multiselect-wrap .k-button + .k-button {
      margin: 2px 0 0 2px; }
    .k-multiselect-wrap .k-button:last-child {
      margin-bottom: 2px; }
  .k-multiselect-wrap .k-searchbar {
    float: left;
    width: auto; }
    .k-multiselect-wrap .k-searchbar .k-input {
      padding-right: 0; }

[dir="rtl"] > .k-multiselect-wrap,
.k-rtl .k-multiselect-wrap {
  padding-left: calc( calc( 1.42857em + 8px));
  padding-right: 0; }
  [dir="rtl"] > .k-multiselect-wrap::before,
  [dir="rtl"] > .k-multiselect-wrap li.k-button,
  [dir="rtl"] > .k-multiselect-wrap .k-input,
  .k-rtl .k-multiselect-wrap::before,
  .k-rtl .k-multiselect-wrap li.k-button,
  .k-rtl .k-multiselect-wrap .k-input {
    float: right; }
  [dir="rtl"] > .k-multiselect-wrap .k-searchbar,
  .k-rtl .k-multiselect-wrap .k-searchbar {
    float: right; }
    [dir="rtl"] > .k-multiselect-wrap .k-searchbar .k-input,
    .k-rtl .k-multiselect-wrap .k-searchbar .k-input {
      padding-left: 0;
      padding-right: 8px; }
  [dir="rtl"] > .k-multiselect-wrap .k-button,
  .k-rtl .k-multiselect-wrap .k-button {
    width: auto;
    margin-right: 2px;
    margin-left: 0; }
    [dir="rtl"] > .k-multiselect-wrap .k-button .k-select,
    .k-rtl .k-multiselect-wrap .k-button .k-select {
      margin-left: 0;
      margin-right: 8px; }

.k-multiselect-wrap {
  background-clip: padding-box; }
  .k-ie11 .k-multiselect-wrap,
  .k-edge12 .k-multiselect-wrap,
  .k-edge13 .k-multiselect-wrap {
    background-clip: border-box; }
  .k-multiselect-wrap > .k-readonly {
    opacity: .6; }
  .k-multiselect-wrap li {
    background-clip: padding-box; }
    .k-ie11 .k-multiselect-wrap li,
    .k-edge12 .k-multiselect-wrap li,
    .k-edge13 .k-multiselect-wrap li {
      background-clip: border-box; }
    .k-multiselect-wrap li .k-icon {
      opacity: .6;
      cursor: pointer; }
    .k-multiselect-wrap li .k-icon:hover {
      opacity: 1; }
    .k-multiselect-wrap li:focus .k-icon, .k-multiselect-wrap li.k-state-focused .k-icon {
      opacity: 1; }
  .k-multiselect-wrap .k-i-loading {
    background-color: var(--sg-bg-color, #ffffff); }

.k-rtl .k-numerictextbox .k-numeric-wrap .k-i-warning, .k-numerictextbox[dir="rtl"] .k-numeric-wrap .k-i-warning {
  align-self: center;
  margin-right: 0;
  margin-left: 0.5em; }

.k-numeric-wrap .k-i-warning {
  align-self: center;
  margin-right: 0.5em; }

.k-numeric-wrap > .k-input {
  flex: 1 1 auto; }
  .k-numeric-wrap > .k-input:invalid {
    box-shadow: none; }

.k-numerictextbox .k-numeric-wrap {
  background-clip: padding-box; }
  .k-ie11 .k-numerictextbox .k-numeric-wrap,
  .k-edge12 .k-numerictextbox .k-numeric-wrap,
  .k-edge13 .k-numerictextbox .k-numeric-wrap {
    background-clip: border-box; }

.k-numerictextbox .k-select > .k-state-selected,
.k-numerictextbox .k-select > .k-state-active {
  color: #252525;
  box-shadow: inset 0 3px 4px 0 rgba(0, 0, 0, 0.06); }

.k-numerictextbox .k-numeric-wrap.k-state-invalid {
  color: #d51923;
  border-color: rgba(213, 25, 35, 0.5); }
  .k-numerictextbox .k-numeric-wrap.k-state-invalid .k-select {
    color: #d51923; }

.k-tooltip-validation {
  margin: 0.5em 0 0;
  position: static;
  border-width: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center; }
  .k-tooltip-validation[hidden] {
    display: none; }
  .k-tooltip-validation > .k-icon {
    margin-right: 4px; }
  .k-tooltip-validation .k-callout {
    display: none; }

.k-tooltip-validation {
  border-color: transparent;
  color: #d51923;
  background-color: transparent; }

.k-switch {
  border-radius: 6em;
  cursor: pointer;
  width: 6em;
  background: none;
  border: 0;
  outline: 0;
  display: inline-flex;
  overflow: hidden;
  vertical-align: middle;
  font-size: 10px;
  user-select: none;
  text-align: left; }
  .k-switch [type="checkbox"] {
    display: none; }

.k-switch,
.k-switch-container,
.k-switch-handle {
  box-sizing: border-box; }

.k-switch-container {
  border-radius: 6em;
  padding: 0 0;
  border-width: 0;
  border-style: solid;
  flex: 1 0 auto;
  position: relative;
  outline: 0;
  transition: background-color 200ms ease-out 0s; }

.k-switch-handle {
  border-radius: 6em;
  width: 3em;
  height: 3em;
  border-width: 1px;
  border-style: solid;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: 0;
  transition: left 200ms ease-out 0s; }
  .k-ie .k-switch-handle {
    display: block; }

.k-switch-on .k-switch-handle {
  left: calc(100% - 3em); }
  .k-ie .k-switch-on .k-switch-handle,
  .k-edge .k-switch-on .k-switch-handle {
    left: 100%;
    margin-left: -3em; }

.k-switch-off .k-switch-handle {
  left: 0; }

.k-switch-label-on,
.k-switch-label-off {
  display: inline;
  width: calc(100% + calc( -3em + -10px));
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-transform: uppercase;
  line-height: 3em;
  overflow: hidden; }

.k-switch-label-on {
  text-align: left;
  left: 8px; }

.k-switch-label-off {
  text-align: right;
  right: 8px; }

.k-rtl .k-switch.k-switch-on .k-switch-handle,
.k-switch[dir="rtl"].k-switch-on .k-switch-handle {
  left: 0; }

.k-rtl .k-switch.k-switch-off .k-switch-handle,
.k-switch[dir="rtl"].k-switch-off .k-switch-handle {
  left: calc(100% - 3em); }

.k-rtl .k-switch .k-switch-label-on,
.k-switch[dir="rtl"] .k-switch-label-on {
  text-align: right;
  left: initial;
  right: 8px; }

.k-rtl .k-switch .k-switch-label-off,
.k-switch[dir="rtl"] .k-switch-label-off {
  text-align: left;
  left: 8px;
  right: initial; }

.k-switch-container {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }

.k-switch-handle {
  background-clip: padding-box; }
  .k-ie11 .k-switch-handle,
  .k-edge12 .k-switch-handle,
  .k-edge13 .k-switch-handle {
    background-clip: border-box; }

.k-switch-label-on,
.k-switch-label-off {
  text-shadow: none; }

.k-switch-on .k-switch-container {
  color: white;
  background-color: #0735cc; }

.k-switch-on .k-switch-handle {
  border-color: rgba(0, 0, 0, 0.08);
  color: white;
  background-color: #f2f2f2; }

.k-switch-on:hover .k-switch-container, .k-switch-on.k-state-hover .k-switch-container {
  color: white;
  background-color: #4b93eb; }

.k-switch-on:hover .k-switch-handle, .k-switch-on.k-state-hover .k-switch-handle {
  border-color: rgba(0, 0, 0, 0.15);
  color: white;
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-switch-on .k-switch-label-off {
  color: transparent; }

.k-switch-off .k-switch-container {
  color: var(--sg-text-color, #000000);
  background-color: white; }

.k-switch-off .k-switch-handle {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f2f2f2; }

.k-switch-off:hover .k-switch-container, .k-switch-off.k-state-hover .k-switch-container {
  color: var(--sg-text-color, #000000);
  background-color: white; }

.k-switch-off:hover .k-switch-handle, .k-switch-off.k-state-hover .k-switch-handle {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-color-legacy-ededed, #ededed); }

.k-switch-off .k-switch-label-on {
  color: transparent; }

.k-switch {
  box-shadow: none; }
  .k-switch:focus .k-switch-container, .k-switch.k-state-focused .k-switch-container {
    outline: none;
    box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.06); }
  .k-switch:hover .k-switch-container, .k-switch.k-state-hover .k-switch-container {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15); }
  .k-switch.k-state-disabled {
    cursor: default; }
    .k-switch.k-state-disabled:focus, .k-switch.k-state-disabled.k-state-focused {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }
  .k-switch[aria-readonly="true"] {
    pointer-events: none; }

.k-maskedtextbox .k-i-warning {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px; }

.k-rtl .k-maskedtextbox .k-i-warning, .k-maskedtextbox[dir="rtl"] .k-i-warning {
  right: auto;
  left: 8px; }

.k-maskedtextbox.k-state-invalid .k-i-warning {
  display: inline-block; }

.k-maskedtextbox .k-i-warning {
  color: #d51923; }

.k-maskedtextbox.k-state-invalid .k-textbox {
  color: #d51923;
  border-color: #d51923; }

.k-listbox {
  width: 12.4em;
  height: 200px;
  vertical-align: top;
  background-color: transparent;
  border-width: 0;
  display: inline-flex; }
  .k-listbox .k-listbox-toolbar ul {
    display: flex; }
  .k-listbox.k-listbox-toolbar-left .k-listbox-toolbar ul, .k-listbox.k-listbox-toolbar-right .k-listbox-toolbar ul {
    flex-direction: column; }
  .k-listbox.k-listbox-toolbar-left .k-listbox-toolbar li + li, .k-listbox.k-listbox-toolbar-right .k-listbox-toolbar li + li {
    margin-top: 8px; }
  .k-listbox.k-listbox-toolbar-left {
    flex-direction: row; }
    .k-listbox.k-listbox-toolbar-left .k-listbox-toolbar {
      margin-right: 8px; }
  .k-listbox.k-listbox-toolbar-right {
    flex-direction: row-reverse; }
    .k-listbox.k-listbox-toolbar-right .k-listbox-toolbar {
      margin-left: 8px; }
  .k-listbox.k-listbox-toolbar-top, .k-listbox.k-listbox-toolbar-bottom {
    flex-direction: column; }
    .k-listbox.k-listbox-toolbar-top .k-listbox-toolbar ul, .k-listbox.k-listbox-toolbar-bottom .k-listbox-toolbar ul {
      flex-direction: row; }
    .k-listbox.k-listbox-toolbar-top .k-listbox-toolbar li + li, .k-listbox.k-listbox-toolbar-bottom .k-listbox-toolbar li + li {
      margin-left: 8px; }
  .k-listbox.k-listbox-toolbar-top .k-listbox-toolbar {
    margin-bottom: 8px; }
  .k-listbox.k-listbox-toolbar-bottom .k-listbox-toolbar {
    margin-top: 8px; }
  .k-listbox .k-list-scroller {
    width: 100%;
    border-width: 1px;
    border-style: solid; }
  .k-listbox .k-drop-hint {
    border-top-width: 1px;
    border-top-style: solid; }
  .k-listbox .k-ghost {
    opacity: .5; }
  .k-rtl .k-listbox.k-listbox-toolbar-left .k-listbox-toolbar, .k-rtl .k-listbox.k-listbox-toolbar-right .k-listbox-toolbar, .k-listbox[dir="rtl"].k-listbox-toolbar-left .k-listbox-toolbar, .k-listbox[dir="rtl"].k-listbox-toolbar-right .k-listbox-toolbar,
  [dir="rtl"] .k-listbox.k-listbox-toolbar-left .k-listbox-toolbar,
  [dir="rtl"] .k-listbox.k-listbox-toolbar-right .k-listbox-toolbar {
    transform: scaleX(-1); }
  .k-rtl .k-listbox.k-listbox-toolbar-left .k-listbox-toolbar, .k-listbox[dir="rtl"].k-listbox-toolbar-left .k-listbox-toolbar,
  [dir="rtl"] .k-listbox.k-listbox-toolbar-left .k-listbox-toolbar {
    margin-right: 0;
    margin-left: 8px; }
  .k-rtl .k-listbox.k-listbox-toolbar-right .k-listbox-toolbar, .k-listbox[dir="rtl"].k-listbox-toolbar-right .k-listbox-toolbar,
  [dir="rtl"] .k-listbox.k-listbox-toolbar-right .k-listbox-toolbar {
    margin-right: 8px;
    margin-left: 0; }

.k-item {
  cursor: default; }

.k-item.k-drag-clue {
  border-radius: 0;
  padding: 4px 8px;
  line-height: 1.42857em;
  border-width: 0;
  font-size: 14px; }

.k-listbox .k-list-scroller {
  background-color: var(--sg-bg-color, #ffffff);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-clip: padding-box; }
  .k-ie11 .k-listbox .k-list-scroller,
  .k-edge12 .k-listbox .k-list-scroller,
  .k-edge13 .k-listbox .k-list-scroller {
    background-clip: border-box; }

.k-listbox .k-drop-hint {
  border-top-color: #0735cc; }

li.k-item.k-drag-clue {
  background-color: #0735cc;
  color: #ffffff; }

.k-var--chart-font {
  font-size: 14px; }

.k-var--chart-title-font {
  font-size: 1.143em; }

.k-var--chart-label-font {
  font-size: 0.857em; }

.k-chart,
.k-sparkline,
.k-stockchart {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  border-width: 0; }

.k-chart,
.k-stockchart {
  font-size: 14px;
  font-family: inherit;
  display: block;
  height: 400px; }

.k-chart-surface {
  height: 100%; }

.k-chart .k-popup {
  border-width: 0; }

.k-chart-tooltip-wrapper .k-animation-container-shown,
.k-chart-tooltip-wrapper.k-animation-container-shown {
  transition: left ease-in 80ms, top ease-in 80ms; }

.k-sparkline-tooltip-wrapper,
.k-chart-tooltip-wrapper {
  z-index: 12000; }
  .k-sparkline-tooltip-wrapper > .k-popup,
  .k-chart-tooltip-wrapper > .k-popup {
    padding: 0;
    border-width: 0; }

.k-chart-tooltip table {
  border-spacing: 0;
  border-collapse: collapse; }

.k-chart-tooltip {
  font-size: 13.006px;
  line-height: 1.42857;
  padding: 4px 8px; }

.k-chart-tooltip th {
  width: auto;
  text-align: center;
  padding: 1px; }

.k-chart-tooltip td {
  width: auto;
  text-align: left;
  padding: 2px 4px;
  line-height: 1.42857;
  vertical-align: middle; }

.k-chart-crosshair-tooltip,
.k-chart-shared-tooltip {
  border-width: 1px;
  border-style: solid; }

.k-chart-shared-tooltip .k-chart-shared-tooltip-marker {
  display: block;
  width: 15px;
  height: 3px;
  vertical-align: middle; }

.k-selector {
  position: absolute;
  transform: translateZ(0); }

.k-selection {
  position: absolute;
  height: 100%;
  border-width: 1px;
  border-style: solid;
  border-bottom: 0; }

.k-selection-bg {
  position: absolute;
  width: 100%;
  height: 100%; }

.k-handle {
  border-radius: 50%;
  width: 22px;
  height: 22px;
  border-width: 1px;
  border-style: solid;
  z-index: 1;
  position: absolute;
  box-sizing: content-box; }

.k-handle div {
  width: 100%;
  height: 100%; }

.k-left-handle {
  left: -11px; }

.k-right-handle {
  right: -11px; }

.k-left-handle div {
  margin: -22px 0 0 -14.66667px;
  padding: 44px 29.33333px 0 0; }

.k-right-handle div {
  margin: -22px 0 0 -14.66667px;
  padding: 44px 0 0 29.33333px; }

.k-left-handle.k-handle-active div {
  margin-left: -44px;
  padding-left: 58.66667px; }

.k-right-handle.k-handle-active div {
  margin-left: -44px;
  padding-right: 58.66667px; }

.k-mask {
  position: absolute;
  height: 100%; }

.k-border {
  width: 1px;
  height: 100%;
  position: absolute; }

.k-marquee {
  position: absolute;
  z-index: 100000; }

.k-marquee-color,
.k-marquee-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.k-navigator-hint div {
  position: absolute; }

.k-navigator-hint .k-scroll {
  position: absolute;
  height: 4px; }

.k-navigator-hint .k-tooltip {
  margin-top: 20px;
  min-width: 160px;
  opacity: 1;
  text-align: center; }

.k-sparkline,
.k-sparkline span {
  display: inline-block;
  vertical-align: top; }

.k-sparkline span {
  height: 100%;
  width: 100%; }

.k-chart-dragging {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }

.k-chart-donut-center {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  border: 4px solid transparent;
  box-sizing: border-box; }

.k-pdf-export .k-chart .k-animation-container,
.k-pdf-export .k-sparkline .k-animation-container,
.k-pdf-export .k-stockchart .k-animation-container {
  display: none; }

.k-diagram {
  height: 600px; }

.k-diagram .km-scroll-wrapper {
  width: 100%;
  height: 100%;
  position: relative; }

.k-diagram .km-scroll-wrapper {
  width: 100%;
  height: 100%;
  position: relative; }

.k-canvas-container {
  width: 100%;
  height: 100%; }

.k-diagram img {
  box-sizing: content-box; }

.k-treemap {
  height: 400px;
  overflow: hidden; }
  .k-treemap .k-treemap-tile {
    margin: -1px 0 0 -1px;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid;
    border-color: inherit;
    color: inherit;
    background-color: inherit;
    overflow: hidden;
    position: absolute; }
  .k-treemap > .k-treemap-tile {
    position: relative; }
  .k-treemap .k-treemap-title {
    padding: 2px 4px;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    font-size: 14px;
    background-position: 0 0;
    background-repeat: repeat-x; }
  .k-treemap .k-treemap-title-vertical {
    padding: 4px 2px;
    width: 1.42857em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    top: 0;
    bottom: 0; }
    .k-treemap .k-treemap-title-vertical > div {
      transform-origin: right;
      transform: rotate(-90deg);
      position: absolute;
      top: 0;
      right: 1em; }
  .k-treemap .k-treemap-wrap {
    border-color: inherit;
    color: inherit;
    background-color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
  .k-treemap .k-treemap-title + .k-treemap-wrap {
    top: calc( 24px + 1px); }
  .k-treemap .k-treemap-title-vertical + .k-treemap-wrap {
    left: calc( 24px + 1px); }
  .k-treemap .k-leaf {
    padding: 4px; }

.k-arcgauge {
  display: inline-block; }

.k-arcgauge-label {
  position: absolute;
  text-align: center;
  padding: 0;
  margin: 0; }

.k-var--accent {
  background-color: #0735cc; }
  svg .k-var--accent {
    fill: #0735cc; }

.k-var--accent-contrast {
  background-color: var(--sg-bg-color, #ffffff); }
  svg .k-var--accent-contrast {
    fill: #ffffff; }

.k-var--base {
  background-color: #f6f6f6; }
  svg .k-var--base {
    fill: #f6f6f6; }

.k-var--background {
  background-color: var(--sg-bg-color, #ffffff); }
  svg .k-var--background {
    fill: #ffffff; }

.k-var--border-radius {
  margin-top: 6px; }

.k-var--normal-background {
  background-color: #f6f6f6; }
  svg .k-var--normal-background {
    fill: #f6f6f6; }

.k-var--normal-text-color {
  background-color: #656565; }
  svg .k-var--normal-text-color {
    fill: #656565; }

.k-var--hover-background {
  background-color: var(--sg-color-legacy-ededed, #ededed); }
  svg .k-var--hover-background {
    fill: var(--sg-color-legacy-ededed, #ededed); }

.k-var--hover-text-color {
  background-color: #656565; }
  svg .k-var--hover-text-color {
    fill: #656565; }

.k-var--selected-background {
  background-color: #0735cc; }
  svg .k-var--selected-background {
    fill: #0735cc; }

.k-var--selected-text-color {
  background-color: var(--sg-bg-color, #ffffff); }
  svg .k-var--selected-text-color {
    fill: #ffffff; }

.k-var--success {
  background-color: #5ec232; }
  svg .k-var--success {
    fill: #5ec232; }

.k-var--info {
  background-color: #3e80ed; }
  svg .k-var--info {
    fill: #3e80ed; }

.k-var--warning {
  background-color: #fdce3e; }
  svg .k-var--warning {
    fill: #fdce3e; }

.k-var--error {
  background-color: #d51923; }
  svg .k-var--error {
    fill: #d51923; }

.k-var--series-a {
  background-color: #ff6358; }
  svg .k-var--series-a {
    fill: #ff6358; }

.k-var--series-b {
  background-color: #ffd246; }
  svg .k-var--series-b {
    fill: #ffd246; }

.k-var--series-c {
  background-color: #78d237; }
  svg .k-var--series-c {
    fill: #78d237; }

.k-var--series-d {
  background-color: #28b4c8; }
  svg .k-var--series-d {
    fill: #28b4c8; }

.k-var--series-e {
  background-color: #2d73f5; }
  svg .k-var--series-e {
    fill: #2d73f5; }

.k-var--series-f {
  background-color: #aa46be; }
  svg .k-var--series-f {
    fill: #aa46be; }

.k-var--gauge-pointer {
  background-color: #0735cc; }
  svg .k-var--gauge-pointer {
    fill: #0735cc; }

.k-var--gauge-track {
  background-color: #e6e6e6; }
  svg .k-var--gauge-track {
    fill: #e6e6e6; }

.k-var--chart-inactive {
  background-color: rgba(101, 101, 101, 0.5); }

.k-var--chart-major-lines {
  background-color: rgba(0, 0, 0, 0.08); }

.k-var--chart-minor-lines {
  background-color: rgba(0, 0, 0, 0.04); }

.k-var--chart-area-opacity {
  opacity: 0.8; }

.k-var--chart-notes-background {
  background-color: rgba(0, 0, 0, 0.5); }

.k-var--chart-notes-border {
  background-color: rgba(0, 0, 0, 0.5); }

.k-var--chart-notes-lines {
  background-color: rgba(0, 0, 0, 0.5); }

.k-var--chart-crosshair-background {
  background-color: rgba(0, 0, 0, 0.5); }

.k-var--chart-error-bars-background {
  background-color: rgba(0, 0, 0, 0.5); }

.k-chart,
.k-sparkline,
.k-stockchart {
  background-color: transparent; }
  .k-chart .k-popup,
  .k-sparkline .k-popup,
  .k-stockchart .k-popup {
    background: transparent; }

.k-chart-tooltip {
  border-radius: 6px;
  color: #ffffff; }

.k-chart-tooltip-inverse {
  color: black; }

.k-chart-crosshair-tooltip,
.k-chart-shared-tooltip {
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6;
  border-color: rgba(0, 0, 0, 0.08); }

.k-selection {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 7px rgba(0, 0, 0, 0.15); }

.k-selection-bg {
  background-color: transparent; }

.k-handle {
  cursor: e-resize; }

.k-handle div {
  background-color: transparent; }

.k-mask {
  background-color: var(--sg-bg-color, #ffffff);
  opacity: .8; }

.k-marquee-color {
  background-color: #ff6358; }

.k-marquee-color {
  opacity: .6; }

.k-navigator-hint .k-scroll {
  border-radius: 6px; }

.k-treemap .k-leaf {
  color: #ffffff; }

.k-treemap .k-leaf.k-inverse {
  color: var(--sg-text-color, #000000); }

.k-treemap .k-leaf.k-state-hover {
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.08); }

.k-map {
  height: 600px; }
  .k-map .km-scroll-wrapper {
    width: 100%;
    height: 100%;
    user-select: none;
    position: absolute; }
  .k-map .k-touch-scrollbar {
    display: none; }
  .k-map .k-layer {
    position: absolute;
    left: 0;
    top: 0; }
  .k-map .k-marker {
    transform: translate(-50%, -100%);
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    overflow: visible; }
  .k-map .k-attribution {
    padding: 2px 4px;
    font-size: 9px;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000; }
  .k-map .km-scroll-container {
    height: 100%; }

.k-map-controls {
  position: absolute;
  display: flex;
  align-items: center; }

.k-pos-top {
  top: 0; }

.k-pos-bottom {
  bottom: 0; }

.k-pos-left {
  left: 0; }

.k-pos-right {
  right: 0; }

.k-navigator {
  margin: 1em;
  width: 50px;
  height: 50px;
  box-sizing: content-box;
  border-radius: 50%;
  position: relative; }
  .k-pdf-export .k-navigator {
    display: none; }
  .k-navigator .k-button {
    margin: 0;
    padding: 0;
    border-radius: 100%;
    line-height: 1;
    box-shadow: none;
    position: absolute; }
    .k-navigator .k-button:not(:hover) {
      border-color: transparent;
      background: none; }
  .k-navigator .k-navigator-up {
    transform: translateX(-50%);
    top: 2px;
    left: 50%; }
  .k-navigator .k-navigator-right {
    transform: translateY(-50%);
    right: 2px;
    top: 50%; }
  .k-navigator .k-navigator-down {
    transform: translateX(-50%);
    bottom: 2px;
    left: 50%; }
  .k-navigator .k-navigator-left {
    transform: translateY(-50%);
    left: 2px;
    top: 50%; }

.k-zoom-control {
  margin: 1em;
  border: 0;
  background: none;
  display: flex; }
  .k-pdf-export .k-zoom-control {
    display: none; }
  .k-zoom-control .k-button {
    padding: 4px; }

.k-buttons-vertical {
  flex-direction: vertical; }

.k-map .k-marker {
  color: #0735cc; }

.k-barcode {
  display: inline-block; }

.k-qrcode {
  display: inline-block; }

.k-splitter {
  height: 300px;
  position: relative; }
  .k-splitter .k-pane {
    overflow: hidden; }
  .k-splitter .k-scrollable {
    overflow: auto; }
  .k-splitter .k-splitter-resizing {
    overflow: hidden; }
  .k-pane > .k-splitter {
    border-width: 0;
    overflow: hidden; }
  .k-splitter .k-pane-loading {
    position: static;
    top: 50%;
    left: 50%; }

.k-ghost-splitbar,
.k-splitbar {
  border-style: solid;
  outline: 0;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center; }
  .k-ghost-splitbar .k-icon,
  .k-splitbar .k-icon {
    font-size: 10px;
    display: block;
    cursor: pointer; }

.k-splitbar-draggable-horizontal {
  cursor: col-resize; }

.k-splitbar-draggable-vertical {
  cursor: row-resize; }

.k-ghost-splitbar-horizontal,
.k-splitbar-horizontal {
  width: 8px;
  border-width: 0;
  background-repeat: repeat-y;
  flex-direction: column;
  top: 0; }

.k-ghost-splitbar-vertical,
.k-splitbar-vertical {
  height: 8px;
  border-width: 0;
  background-repeat: repeat-x;
  flex-direction: row;
  left: 0; }

.k-splitbar-static-horizontal {
  width: 1px; }

.k-splitbar-static-vertical {
  height: 1px; }

.k-splitbar-draggable-horizontal .k-resize-handle {
  position: static;
  width: 2px;
  height: 20px; }

.k-splitbar .k-resize-handle {
  display: none;
  background-color: currentColor; }

.k-splitbar-draggable-horizontal .k-resize-handle,
.k-splitbar-draggable-vertical .k-resize-handle {
  display: block; }

.k-splitbar-horizontal .k-i-arrow-60-left, .k-splitbar-horizontal .k-i-arrow-w::before, .k-splitbar-horizontal .k-i-sarrow-w::before, .k-splitbar-horizontal .k-i-expand-w::before {
  margin-bottom: 7px; }

.k-splitbar-horizontal .k-i-arrow-60-right, .k-splitbar-horizontal .k-i-arrow-e::before, .k-splitbar-horizontal .k-i-sarrow-e::before, .k-splitbar-horizontal .k-i-expand::before, .k-splitbar-horizontal .k-i-expand-e::before {
  margin-top: 7px; }

.k-splitbar-vertical .k-i-arrow-60-up, .k-splitbar-vertical .k-i-arrow-n::before, .k-splitbar-vertical .k-i-sarrow-n::before, .k-splitbar-vertical .k-i-expand-n::before {
  margin-right: 7px; }

.k-splitbar-vertical .k-i-arrow-60-down, .k-splitbar-vertical .k-i-arrow-s::before, .k-splitbar-vertical .k-i-sarrow-s::before, .k-splitbar-vertical .k-i-collapse::before, .k-splitbar-vertical .k-i-expand-s::before {
  margin-left: 7px; }

.k-splitbar-draggable-vertical .k-resize-handle {
  position: static;
  width: 20px;
  height: 2px; }

.k-pane > .k-splitter-overlay {
  opacity: 0;
  position: absolute; }

.k-splitter-flex {
  display: flex;
  width: 100%;
  height: auto; }
  .k-splitter-flex .k-pane {
    position: relative;
    flex: 1 1 auto;
    display: block;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    max-height: 100%;
    height: 100%; }
  .k-splitter-flex .k-pane-static {
    flex-grow: 0;
    flex-shrink: 0; }
  .k-splitter-flex .k-pane-flex {
    display: flex; }
  .k-splitter-flex .k-splitbar {
    position: static;
    flex: 0 0 auto; }
  .k-splitter-flex .k-pane.k-state-hidden, .k-splitter-flex .k-pane[hidden],
  .k-splitter-flex .k-pane-flex.k-state-hidden,
  .k-splitter-flex .k-pane-flex[hidden] {
    flex: 0 1 0% !important;
    overflow: hidden !important;
    display: block !important; }
  .k-splitter-flex.k-splitter-horizontal {
    flex-direction: row; }
    .k-splitter-flex.k-splitter-horizontal[dir="rtl"] > .k-splitbar > .k-collapse-next,
    .k-splitter-flex.k-splitter-horizontal[dir="rtl"] > .k-splitbar > .k-collapse-prev {
      transform: scaleX(-1); }
  .k-splitter-flex.k-splitter-vertical {
    flex-direction: column; }

.k-splitter {
  background-clip: padding-box; }
  .k-ie11 .k-splitter,
  .k-edge12 .k-splitter,
  .k-edge13 .k-splitter {
    background-clip: border-box; }

.k-splitbar {
  color: var(--sg-text-color, #000000);
  background-color: rgba(235, 235, 235, 0.8); }
  .k-splitbar:active, .k-splitbar.k-state-focused {
    color: #ffffff;
    background: #0735cc; }

.k-splitbar-horizontal-hover,
.k-splitbar-vertical-hover {
  color: var(--sg-text-color, #000000);
  background-color: #ebebeb; }

.k-ghost-splitbar {
  background-color: #ebebeb; }

.k-gantt {
  position: relative;
  white-space: nowrap; }
  .k-gantt td {
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top; }
  .k-gantt .k-grid-header tr {
    height: calc( 1.42857em + 17px); }
  .k-gantt .k-grid-header .k-header {
    position: static; }
  .k-gantt .k-grid-content tr {
    height: calc( 1.42857em + 16px); }
  .k-gantt .k-gantt-layout {
    white-space: normal;
    vertical-align: top;
    display: inline-block; }
  .k-gantt .k-splitbar {
    position: relative;
    display: inline-flex; }

.k-gantt-toolbar {
  padding: 8px 8px;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: inherit;
  line-height: 1.42857; }
  .k-gantt-layout + .k-gantt-toolbar {
    border-width: 1px 0 0; }
  .k-gantt-toolbar .k-gantt-toggle {
    margin-right: .5em;
    display: none;
    float: left; }

.k-gantt-actions {
  float: left; }
  .k-gantt-actions .k-button + .k-button {
    margin-left: 8px; }

.k-gantt-views {
  float: right;
  display: inline-flex; }

@media only screen and (max-width: 480px) {
  .k-gantt-toolbar .k-gantt-toggle {
    display: inline-flex; }
  .k-gantt-toolbar .k-gantt-pdf,
  .k-gantt-toolbar .k-gantt-create {
    padding: 4px;
    width: calc( 10px + 1.42857em);
    height: calc( 10px + 1.42857em); }
    .k-gantt-toolbar .k-gantt-pdf .k-icon,
    .k-gantt-toolbar .k-gantt-create .k-icon {
      margin: 0; }
    .k-gantt-toolbar .k-gantt-pdf span + span,
    .k-gantt-toolbar .k-gantt-create span + span {
      display: none; } }

.k-gantt-views .k-current-view {
  display: none; }

.k-gantt-views .k-current-view .k-link::after {
  content: "";
  margin: 0 0 0 1ex;
  border: .25em solid transparent;
  border-top: .5em solid currentColor;
  border-bottom-width: 0;
  display: inline-block; }

@media (max-width: 1024px) {
  ul.k-gantt-views {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1000; }
    ul.k-gantt-views li {
      display: none; }
    ul.k-gantt-views .k-current-view {
      display: block; }
    ul.k-gantt-views.k-state-expanded li {
      display: block; } }

.k-gantt-treelist .k-treelist {
  height: 100%;
  border-width: 0; }

.k-gantt-treelist .k-grid-header {
  padding: 0 !important; }

.k-gantt-treelist .k-grid-header tr {
  height: calc( 2.85714em + 34px);
  vertical-align: bottom; }

.k-gantt-treelist .k-grid-content {
  overflow: hidden;
  overflow-x: scroll; }

.k-gantt-treelist .k-grid-content td {
  vertical-align: middle; }

.k-gantt-timeline .k-timeline {
  height: 100%;
  border-width: 0; }

.k-gantt-timeline .k-grid-content {
  overflow-x: scroll; }

.k-gantt-tables {
  position: relative;
  border-color: inherit; }

.k-gantt-rows,
.k-gantt-columns {
  border-color: inherit;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0; }

.k-gantt-dependencies {
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0; }

.k-gantt-tasks {
  position: relative; }
  .k-gantt-tasks td {
    padding: 0;
    border-width: 0;
    position: relative;
    vertical-align: middle; }
  .k-gantt-tasks td::after {
    content: "\a0"; }

.k-task-wrap {
  margin: 0 -21px;
  padding: 5px 21px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2; }

.k-task-wrap.k-drag-hint {
  position: absolute; }

.k-task {
  position: relative;
  flex: 1 1 auto; }

.k-task-dot {
  width: 16px;
  height: 16px;
  line-height: 1;
  cursor: pointer;
  display: none;
  position: absolute; }

.k-task-wrap:hover .k-task-dot,
.k-task-wrap.k-origin .k-task-dot {
  display: block; }

.k-task-dot::before {
  content: "";
  margin: -4px 0 0 -4px;
  width: 8px;
  height: 8px;
  border-width: 0;
  border-style: solid;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%; }

.k-task-dot:hover::before,
.k-task-dot.k-state-hover::before {
  border-width: 1px; }

.k-task-start {
  left: 0; }

.k-task-end {
  right: 0; }

.k-task-draghandle {
  margin-left: 16px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-width: 0;
  border-bottom-color: inherit;
  position: absolute;
  bottom: 0;
  cursor: e-resize;
  visibility: hidden; }

.k-task-wrap:hover .k-task-draghandle {
  visibility: visible; }

.k-milestone-wrap {
  margin: 0 -2em; }

.k-task-milestone {
  width: 1em;
  height: 1em;
  border-width: 1px;
  border-style: solid;
  transform: rotate(45deg); }

.k-task-summary {
  height: 10px;
  display: inline-block;
  vertical-align: top; }

.k-task-summary,
.k-task-summary-complete {
  background-color: currentColor; }
  .k-task-summary::before, .k-task-summary::after,
  .k-task-summary-complete::before,
  .k-task-summary-complete::after {
    content: "";
    width: 0;
    height: 0;
    border: 8px solid transparent;
    position: absolute;
    top: 0; }
  .k-task-summary::before,
  .k-task-summary-complete::before {
    border-left-color: currentColor;
    left: 0; }
  .k-task-summary::after,
  .k-task-summary-complete::after {
    border-right-color: currentColor;
    right: 0; }

.k-task-summary-complete {
  height: 10px;
  position: relative;
  z-index: 2; }

.k-task-summary-progress {
  height: 15px;
  overflow: hidden; }

.k-task-single {
  border-radius: 6px;
  border-width: 1px;
  border-style: solid;
  cursor: default; }
  .k-task-single .k-resize-handle {
    opacity: .5;
    z-index: 2;
    visibility: hidden; }
  .k-task-single .k-resize-handle::before {
    position: absolute;
    top: 2px;
    bottom: 2px; }
  .k-task-single .k-resize-w {
    left: 0; }
  .k-task-single .k-resize-w::before {
    left: 2px;
    border-left-width: 1px; }
  .k-task-single .k-resize-e {
    right: 0; }
  .k-task-single .k-resize-e::before {
    right: 2px;
    border-left-width: 1px; }
  .k-task-single:hover .k-resize-handle,
  .k-task-single:hover .k-task-actions {
    visibility: visible; }

.k-task-complete {
  border-radius: 6px;
  width: 20%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0; }

.k-task-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center; }

.k-task-template {
  padding: 2px 4px;
  line-height: normal;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis; }

.k-task-actions {
  padding: 2px;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  visibility: hidden; }

.k-task-actions > .k-link {
  display: inline-flex; }

.k-resources-wrap {
  position: absolute;
  display: inline-block;
  z-index: 2;
  margin-left: 20px;
  margin-top: -2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .k-resources-wrap .k-resource {
    margin: 0 5px; }

.k-task-details {
  padding: 4px 8px; }
  .k-task-details strong {
    font-size: 19px;
    font-weight: normal;
    display: block; }
  .k-task-details .k-task-pct {
    font-size: 32px; }
  .k-task-details ul {
    line-height: normal; }

.k-gantt-edit-form .k-gantt-delete {
  float: left; }

.k-rtl .k-gantt-views {
  float: left; }

.k-rtl .k-gantt-actions {
  float: right; }
  .k-rtl .k-gantt-actions .k-button + .k-button {
    margin-left: 0;
    margin-right: 8px; }

.k-rtl .k-gantt-rows,
.k-rtl .k-gantt-columns {
  left: auto;
  right: 0; }

.k-rtl .k-task-wrap:not(.k-milestone-wrap) {
  margin: 0 -26px; }

.k-rtl .k-timeline .k-gantt-tasks tbody {
  text-align: left; }

.k-rtl .k-task-content {
  text-align: right; }

.k-rtl .k-task-complete {
  left: auto;
  right: 0; }

.k-rtl .k-task-draghandle {
  margin-left: 0;
  margin-right: 16px; }

.k-rtl .k-gantt-dependencies {
  left: auto;
  right: 0; }

.k-rtl .k-gantt-delete {
  float: right; }

.k-gantt {
  background-clip: padding-box; }
  .k-ie11 .k-gantt,
  .k-edge12 .k-gantt,
  .k-edge13 .k-gantt {
    background-clip: border-box; }

.k-gantt-views li.k-state-selected {
  border-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  background-color: #0735cc;
  background-image: none; }

.k-gantt-views li:first-child {
  border-radius: 6px; }

.k-gantt-views li:first-child + li {
  border-radius: 6px 0 0 6px; }

.k-gantt-views li:last-child {
  border-radius: 0 6px 6px 0; }

.k-gantt-views.k-state-expanded li {
  border-radius: 0;
  margin: 0; }

.k-gantt-views.k-state-expanded li + li {
  margin-top: -1px; }

.k-gantt-views.k-state-expanded li:first-child {
  border-radius: 6px 6px 0 0; }

.k-gantt-views.k-state-expanded li:first-child + li {
  border-radius: 0; }

.k-gantt-views.k-state-expanded li:last-child {
  border-radius: 0 0 6px 6px; }

.k-gantt-treelist {
  background-color: #fafafa; }
  .k-gantt-treelist .k-treelist {
    background-color: transparent; }
  .k-gantt-treelist tr.k-alt {
    background-color: #f0f0f0; }
  .k-gantt-treelist tr.k-state-selected,
  .k-gantt-treelist td.k-state-selected {
    color: inherit;
    background-color: rgba(82, 160, 255, 0.25); }

.k-gantt-columns .k-nonwork-hour {
  background-color: rgba(101, 101, 101, 0.025); }

.k-line {
  color: black; }

.k-line.k-state-selected {
  color: #0735cc; }

.k-task-dot::before {
  background-color: #656565; }

.k-task-dot:hover::before,
.k-task-dot.k-state-hover::before {
  border-color: #656565;
  background-color: var(--sg-bg-color, #ffffff); }

.k-task-milestone {
  border-color: rgba(0, 0, 0, 0.08);
  background-color: #656565; }

.k-task-milestone.k-state-selected {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #0735cc; }

.k-task-summary {
  color: #6d6d6d; }

.k-task-summary-complete {
  color: black; }

.k-task-summary.k-state-selected {
  color: #75b3ff; }
  .k-task-summary.k-state-selected .k-task-summary-complete {
    color: #4b93eb; }

.k-task-summary::before,
.k-task-summary::after,
.k-task-summary-complete::before,
.k-task-summary-complete::after {
  display: none; }

.k-task-single {
  border-width: 0;
  border-color: rgba(0, 0, 0, 0.08);
  color: #ffffff;
  background: #848484; }
  .k-task-single .k-task-complete {
    background: #656565; }
  .k-task-single .k-task-template {
    padding-top: 4px;
    padding-bottom: 4px; }

.k-task-single.k-state-selected {
  border-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  background: #86bdff; }
  .k-task-single.k-state-selected .k-task-complete {
    background: #0735cc; }

.k-gantt-views li:first-child + li {
  border-radius: 0 6px 6px 0; }

.k-gantt-views li:last-child {
  border-radius: 6px 0 0 6px; }

.k-scheduler {
  display: flex;
  flex-direction: column; }
  .k-scheduler table,
  .k-scheduler thead,
  .k-scheduler tfoot,
  .k-scheduler tbody,
  .k-scheduler tr,
  .k-scheduler th,
  .k-scheduler td,
  .k-scheduler div,
  .k-scheduler > * {
    border-color: inherit; }

kendo-scheduler.k-scheduler {
  overflow: hidden; }
  kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
    display: none; }

.k-scheduler-table {
  width: 100%;
  max-width: none;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; }
  .k-scheduler-table td,
  .k-scheduler-table th {
    padding: 8px;
    height: 1.42857em;
    overflow: hidden;
    white-space: nowrap;
    border-style: solid;
    border-width: 0 0 1px 1px;
    vertical-align: top;
    box-sizing: content-box; }
  .k-scheduler-table td:first-child,
  .k-scheduler-table th:first-child {
    border-left-width: 0; }
  .k-scheduler-table .k-middle-row td {
    border-bottom-style: dotted; }
  .k-scheduler-table .k-link {
    cursor: pointer; }

.k-gantt-views, .k-scheduler-navigation, .k-scheduler-views, .k-scheduler-footer {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .k-gantt-views li, .k-scheduler-navigation li, .k-scheduler-views li, .k-scheduler-footer li {
    border-width: 1px;
    border-style: solid;
    position: relative;
    z-index: 1; }
  .k-gantt-views li + li, .k-scheduler-navigation li + li, .k-scheduler-views li + li, .k-scheduler-footer li + li {
    margin-left: -1px; }
  .k-gantt-views .k-state-hover, .k-scheduler-navigation .k-state-hover, .k-scheduler-views .k-state-hover, .k-scheduler-footer .k-state-hover, .k-gantt-views .k-state-selected, .k-scheduler-navigation .k-state-selected, .k-scheduler-views .k-state-selected, .k-scheduler-footer .k-state-selected {
    z-index: 2; }
  .k-gantt-views .k-link, .k-scheduler-navigation .k-link, .k-scheduler-views .k-link, .k-scheduler-footer .k-link {
    padding: 4px 8px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center; }

.k-scheduler-toolbar,
.k-scheduler-footer {
  padding: 8px 8px;
  border-width: 0;
  border-style: solid;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
  white-space: nowrap; }
  .k-scheduler-toolbar li .k-link,
  .k-scheduler-footer li .k-link {
    padding: 4px 8px;
    line-height: 1.42857;
    box-sizing: border-box; }

.k-scheduler-toolbar {
  border-bottom-width: 1px; }

.k-scheduler-footer {
  border-top-width: 1px; }

.k-recurrence-editor {
  display: inline-flex;
  flex-direction: column; }

kendo-scheduler .k-recurrence-editor {
  display: block; }

.k-scheduler-navigation {
  flex: 1; }
  .k-scheduler-navigation .k-nav-prev .k-link,
  .k-scheduler-navigation .k-nav-next .k-link {
    padding: 4px;
    width: calc( 8px + 1.42857em);
    height: calc( 8px + 1.42857em); }
  .k-scheduler-navigation .k-nav-current {
    border: 0;
    margin-left: 0; }
  .k-scheduler-navigation .k-nav-today {
    border-radius: 6px 0 0 6px; }
  .k-scheduler-navigation .k-nav-next {
    border-radius: 0 6px 6px 0; }

.k-scheduler-tools {
  margin-right: 1em; }

.k-nav-current .k-icon {
  margin-right: .4ex; }

.k-nav-current .k-sm-date-format,
.k-nav-current .k-lg-date-format {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.k-nav-current .k-sm-date-format {
  display: none; }

@media (max-width: 1024px) {
  .k-nav-current .k-sm-date-format {
    display: block; }
  .k-nav-current .k-lg-date-format {
    display: none; } }

.k-scheduler-fullday .k-icon {
  margin-right: 4px; }

.k-scheduler-views li:first-child {
  border-radius: 6px; }

.k-scheduler-views li:first-child + li {
  border-radius: 6px 0 0 6px; }

.k-scheduler-views li:last-child {
  border-radius: 0 6px 6px 0; }

.k-scheduler-views.k-state-expanded li {
  border-radius: 0;
  margin: 0; }

.k-scheduler-views.k-state-expanded li + li {
  margin-top: -1px; }

.k-scheduler-views.k-state-expanded li:first-child {
  border-radius: 6px 6px 0 0; }

.k-scheduler-views.k-state-expanded li:first-child + li {
  border-radius: 0; }

.k-scheduler-views.k-state-expanded li:last-child {
  border-radius: 0 0 6px 6px; }

.k-scheduler-views .k-current-view {
  display: none; }

.k-scheduler-views .k-current-view .k-link::after {
  content: "";
  margin: 0 0 0 1ex;
  border: .25em solid transparent;
  border-top: .5em solid currentColor;
  border-bottom-width: 0;
  display: inline-block; }

@media (max-width: 1024px) {
  .k-scheduler-views {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 1000; }
    .k-scheduler-views li {
      display: none; }
    .k-scheduler-views .k-current-view {
      display: block; }
    .k-scheduler-views.k-state-expanded li {
      display: block; }
    .k-rtl .k-scheduler-views {
      left: 8px;
      right: auto; } }

.k-scheduler-footer li {
  border-radius: 6px; }

.k-scheduler-layout {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  flex: 1 1 auto; }
  .k-scheduler-layout > tbody > tr > td {
    padding: 0;
    vertical-align: top; }
  .k-scheduler-layout tr + tr .k-scheduler-times tr th,
  .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr th {
    border-bottom-color: transparent; }
  .k-scheduler-layout tr + tr .k-scheduler-times tr .k-slot-cell,
  .k-scheduler-layout tr + tr .k-scheduler-times tr .k-scheduler-times-all-day,
  .k-scheduler-layout tr + tr .k-scheduler-times tr:last-child th,
  .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr .k-slot-cell,
  .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr .k-scheduler-times-all-day,
  .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr:last-child th {
    border-bottom-color: inherit; }

.k-scheduler-layout.k-scheduler-flex-layout {
  display: flex;
  flex-direction: column; }
  .k-scheduler-layout.k-scheduler-flex-layout.k-scheduler-weekview .k-scheduler-pane:first-child .k-scheduler-table, .k-scheduler-layout.k-scheduler-flex-layout.k-scheduler-dayview .k-scheduler-pane:first-child .k-scheduler-table {
    table-layout: fixed; }

.k-scheduler-header th {
  text-align: center; }

.k-scheduler-header,
.k-scheduler-header-wrap,
.k-scheduler-header-wrap > div {
  border-color: inherit;
  overflow: hidden; }

.k-scheduler-header-wrap {
  border-width: 0;
  border-style: solid;
  position: relative; }

.k-scheduler-times {
  border-color: inherit;
  position: relative;
  overflow: hidden; }
  .k-scheduler-times .k-scheduler-table {
    table-layout: auto; }
  .k-scheduler-times th {
    border-width: 0 1px 1px 0;
    text-align: right; }
  .k-scheduler-times .k-slot-cell,
  .k-scheduler-times .k-scheduler-times-all-day {
    border-bottom-color: inherit; }
  .k-scheduler-times .k-slot-cell.k-last-resource {
    border-right: 0; }
  .k-scheduler-times .k-slot-cell.k-empty-slot {
    padding-left: 0;
    padding-right: 0; }

.k-scheduler-datecolumn {
  width: 12em; }

.k-scheduler-timecolumn {
  width: 11em;
  white-space: nowrap; }

.k-scheduler-content {
  border-color: inherit;
  position: relative;
  overflow: auto; }

kendo-scheduler .k-event,
.k-event {
  border-radius: 6px;
  min-height: 25px;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-radius: 6px;
  text-align: left;
  cursor: default;
  position: absolute;
  overflow: hidden;
  padding-right: 8px; }
  kendo-scheduler .k-event::before,
  .k-event::before {
    content: "";
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
  kendo-scheduler .k-event > div,
  .k-event > div {
    position: relative;
    z-index: 2; }
  kendo-scheduler .k-event .k-event-template,
  .k-event .k-event-template {
    line-height: calc(25px - (2 * 4px));
    padding: 4px 8px; }
  kendo-scheduler .k-event .k-event-time,
  .k-event .k-event-time {
    padding-bottom: 0;
    font-size: .875em;
    white-space: nowrap;
    display: none; }
  kendo-scheduler .k-event .k-event-actions,
  .k-event .k-event-actions {
    white-space: nowrap;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    opacity: .5;
    visibility: hidden;
    z-index: 2; }
    kendo-scheduler .k-event .k-event-actions:hover, kendo-scheduler .k-event .k-event-actions.k-state-hover,
    .k-event .k-event-actions:hover,
    .k-event .k-event-actions.k-state-hover {
      opacity: 1; }
    kendo-scheduler .k-event .k-event-actions .k-icon,
    .k-event .k-event-actions .k-icon {
      line-height: normal;
      font-size: inherit; }
    kendo-scheduler .k-event .k-event-actions a,
    .k-event .k-event-actions a {
      color: inherit; }
  kendo-scheduler .k-event .k-event-actions:first-child,
  .k-event .k-event-actions:first-child {
    margin: 2px 0.4ex 0 4px;
    top: 0;
    right: 0;
    float: left;
    position: relative;
    opacity: 1;
    visibility: visible;
    line-height: normal; }
  kendo-scheduler .k-event .k-resize-handle,
  .k-event .k-resize-handle {
    z-index: 4;
    opacity: .5;
    visibility: hidden; }
  kendo-scheduler .k-event .k-resize-handle::before,
  .k-event .k-resize-handle::before {
    border-color: currentColor; }
  kendo-scheduler .k-event .k-resize-n,
  .k-event .k-resize-n {
    height: .5em;
    top: 0; }
  kendo-scheduler .k-event .k-resize-s,
  .k-event .k-resize-s {
    height: .5em;
    bottom: 0; }
  kendo-scheduler .k-event .k-resize-n::before,
  kendo-scheduler .k-event .k-resize-s::before,
  .k-event .k-resize-n::before,
  .k-event .k-resize-s::before {
    width: 2em;
    border-bottom-width: 1px; }
  kendo-scheduler .k-event .k-resize-w,
  .k-event .k-resize-w {
    width: .5em;
    left: 0; }
  kendo-scheduler .k-event .k-resize-e,
  .k-event .k-resize-e {
    width: .5em;
    right: 0; }
  kendo-scheduler .k-event .k-resize-w::before,
  kendo-scheduler .k-event .k-resize-e::before,
  .k-event .k-resize-w::before,
  .k-event .k-resize-e::before {
    height: 2em;
    border-left-width: 1px; }
  kendo-scheduler .k-event:hover .k-event-actions,
  kendo-scheduler .k-event:hover .k-resize-handle, kendo-scheduler .k-event.k-state-hover .k-event-actions,
  kendo-scheduler .k-event.k-state-hover .k-resize-handle,
  .k-event:hover .k-event-actions,
  .k-event:hover .k-resize-handle,
  .k-event.k-state-hover .k-event-actions,
  .k-event.k-state-hover .k-resize-handle {
    visibility: visible; }
  kendo-scheduler .k-event.k-event-drag-hint .k-event-time,
  .k-event.k-event-drag-hint .k-event-time {
    display: block; }

.k-scheduler-mark {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle; }

.k-more-events {
  padding: 0;
  border-style: solid;
  border-width: 1px;
  font-size: 1.5em;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  position: absolute;
  justify-content: center; }
  .k-more-events > span {
    margin-top: -.5em; }

.k-current-time {
  position: absolute; }
  .k-current-time.k-current-time-arrow-left, .k-current-time.k-current-time-arrow-right, .k-current-time.k-current-time-arrow-down {
    width: 0;
    height: 0;
    background: transparent;
    border: 4px solid transparent; }

.k-event-drag-hint {
  opacity: .5; }
  .k-event-drag-hint .k-event-actions,
  .k-event-drag-hint .k-event-top-actions,
  .k-event-drag-hint .k-event-bottom-actions,
  .k-event-drag-hint .k-resize-handle {
    display: none; }
  .k-event-drag-hint .k-event-time {
    display: block; }

.k-scheduler-marquee {
  border-width: 0;
  border-style: solid; }
  .k-scheduler-marquee .k-label-top,
  .k-scheduler-marquee .k-label-bottom {
    font-size: .75em;
    position: absolute; }
  .k-scheduler-marquee .k-label-top {
    left: 4px;
    top: 2px; }
  .k-scheduler-marquee .k-label-bottom {
    right: 4px;
    bottom: 2px; }
  .k-scheduler-marquee.k-first::before, .k-scheduler-marquee.k-last::after {
    content: "";
    border-width: 3px;
    border-style: solid;
    position: absolute;
    width: 0;
    height: 0; }
  .k-scheduler-marquee.k-first::before {
    top: 0;
    left: 0;
    border-right-color: transparent;
    border-bottom-color: transparent; }
  .k-scheduler-marquee.k-last::after {
    bottom: 0;
    right: 0;
    border-left-color: transparent;
    border-top-color: transparent; }

.k-pdf-export-shadow .k-scheduler,
.k-scheduler-pdf-export .k-scheduler-content,
.k-scheduler-pdf-export .k-scheduler-times {
  height: auto !important;
  overflow: visible !important; }

.k-scheduler-pdf-export {
  overflow: hidden; }
  .k-scheduler-pdf-export .k-scheduler-header {
    padding: 0 !important; }
  .k-scheduler-pdf-export .k-scheduler-header-wrap {
    border-width: 0 !important; }
  .k-scheduler-pdf-export .k-scheduler-header .k-scheduler-table,
  .k-scheduler-pdf-export .k-scheduler-content .k-scheduler-table {
    width: 100% !important; }

.k-scheduler-monthview .k-scheduler-table {
  height: 100%; }

.k-scheduler-monthview .k-scheduler-table td {
  height: 80px;
  text-align: right; }

.k-scheduler-monthview .k-hidden {
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-right-width: 0 !important; }

.k-scheduler-agendaview .k-scheduler-mark {
  margin-right: .5em;
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle; }

.k-scheduler-agendaview .k-scheduler-table th:first-child,
.k-scheduler-agendaview .k-scheduler-table td:first-child {
  border-left-width: 1px; }

.k-scheduler-agendaview .k-scheduler-table td.k-first {
  border-left-width: 0; }

.k-scheduler-agendaview .k-task > .k-event-delete {
  color: inherit;
  position: absolute;
  top: 2px;
  right: 2px;
  opacity: .5;
  visibility: hidden; }

.k-scheduler-agendaview .k-state-hover .k-task > .k-event-delete,
.k-scheduler-agendaview .k-scheduler-content tr:hover .k-event-delete {
  visibility: visible; }

.k-scheduler-agendaday {
  margin: 0 .2em 0 0;
  font-size: 3em;
  line-height: 1;
  font-weight: 400;
  float: left; }

.k-scheduler-agendaweek {
  display: block;
  margin: .4em 0 0;
  line-height: 1;
  font-style: normal; }

.k-scheduler-agendadate {
  font-size: .75em; }

.k-scheduler-timelineview .k-slot-cell {
  overflow: hidden; }

.k-scheduler-timelineview .k-scheduler-content {
  overflow: auto; }

.k-scheduler-pane {
  display: flex;
  flex-direction: row; }

.k-scheduler-pane .k-scheduler-times {
  flex: 0 0 auto; }

.k-scheduler-pane .k-scheduler-times .k-scheduler-table {
  height: 100%; }

.k-scheduler-pane .k-scheduler-header,
.k-scheduler-pane .k-scheduler-content {
  flex: 1 1 auto; }

.k-scheduler-edit-form .k-edit-form-container {
  width: 620px; }

.k-scheduler-edit-form .k-edit-label {
  width: 17%; }

.k-scheduler-edit-form .k-edit-field {
  width: 77%; }

.k-scheduler-edit-form .k-scheduler-delete {
  float: left; }

.k-scheduler-edit-form .k-widget.k-recur-interval,
.k-scheduler-edit-form .k-widget.k-recur-count {
  width: 5em; }

.k-scheduler-edit-form .k-widget.k-recur-until {
  width: 9em; }

.k-rtl .k-scheduler-header th,
.k-rtl .k-scheduler-table td {
  border-width: 0 1px 1px 0; }

.k-rtl .k-scheduler-table td:first-child,
.k-rtl .k-scheduler-table th:first-child {
  border-right-width: 0; }

.k-rtl .k-scheduler-times th {
  border-width: 0 0 1px 1px; }

.k-rtl .k-scheduler .k-scrollbar-v .k-scheduler-header-wrap {
  border-right-width: 0;
  border-left-width: 1px; }

.k-rtl .k-event {
  text-align: right;
  padding-right: 0;
  padding-left: 8px; }
  .k-rtl .k-event .k-resize-w {
    left: auto;
    right: 0; }
  .k-rtl .k-event .k-resize-e {
    right: auto;
    left: 0; }
  .k-rtl .k-event .k-event-actions {
    right: auto;
    left: 2px; }
  .k-rtl .k-event .k-event-actions:first-child {
    margin: 2px 4px 0 0.4ex;
    float: right; }

.k-rtl .k-scheduler-agendaview .k-task > .k-event-delete {
  left: 2px;
  right: auto; }

.k-rtl .k-scheduler-agendaview .k-task .k-scheduler-mark {
  margin-left: .5em;
  margin-right: 0; }

.k-rtl .k-scheduler-views li:first-child + li {
  border-radius: 0 6px 6px 0; }

.k-rtl .k-scheduler-views li:last-child {
  border-radius: 6px 0 0 6px; }

.k-rtl .k-scheduler-views .k-current-view .k-link::after {
  margin: 0 1ex 0 0; }

.k-rtl .k-scheduler-navigation .k-nav-today {
  border-radius: 0 6px 6px 0; }

.k-rtl .k-scheduler-navigation .k-nav-next {
  border-radius: 6px 0 0 6px; }

.k-rtl .k-scheduler-navigation li + li {
  margin-left: 0;
  margin-right: -1px; }

.k-rtl .k-nav-current .k-icon {
  margin-right: 0;
  margin-left: .4ex; }

.k-rtl .k-scheduler-fullday .k-icon {
  margin-right: 0;
  margin-left: 4px; }

.k-rtl .k-scheduler-marquee .k-label-top {
  left: auto;
  right: 4px; }

.k-rtl .k-scheduler-marquee .k-label-bottom {
  left: 4px;
  right: auto; }

.k-rtl .k-scheduler-edit-form .k-scheduler-delete {
  float: right; }

.k-rtl .k-scheduler .k-i-arrow-60-left, .k-rtl .k-scheduler .k-i-arrow-w::before, .k-rtl .k-scheduler .k-i-sarrow-w::before, .k-rtl .k-scheduler .k-i-expand-w::before,
.k-rtl .k-scheduler .k-i-arrow-60-right,
.k-rtl .k-scheduler .k-i-arrow-e::before,
.k-rtl .k-scheduler .k-i-sarrow-e::before,
.k-rtl .k-scheduler .k-i-expand::before,
.k-rtl .k-scheduler .k-i-expand-e::before,
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-arrow-60-left, .k-rtl.k-scheduler .k-i-arrow-w::before, .k-rtl.k-scheduler .k-i-sarrow-w::before, .k-rtl.k-scheduler .k-i-expand-w::before,
.k-rtl.k-scheduler .k-i-arrow-60-right,
.k-rtl.k-scheduler .k-i-arrow-e::before,
.k-rtl.k-scheduler .k-i-sarrow-e::before,
.k-rtl.k-scheduler .k-i-expand::before,
.k-rtl.k-scheduler .k-i-expand-e::before,
.k-rtl.k-scheduler .k-current-time-arrow-right {
  transform: scaleX(-1); }

.k-rtl .k-scheduler .k-scheduler-header-wrap, .k-rtl.k-scheduler .k-scheduler-header-wrap {
  border-right-width: 0; }

.k-rtl .k-scheduler .k-scheduler-agendaday, .k-rtl.k-scheduler .k-scheduler-agendaday {
  float: right;
  margin: 0 0 0 .2em; }

.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table td:first-child,
.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table th:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table td:first-child,
.k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table th:first-child {
  border-left-width: 0; }

.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr td:first-child,
.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr th:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr td:first-child,
.k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr th:first-child {
  border-right-width: 1px; }

.k-scheduler {
  background-clip: padding-box; }
  .k-ie11 .k-scheduler,
  .k-edge12 .k-scheduler,
  .k-edge13 .k-scheduler {
    background-clip: border-box; }

.k-current-time {
  background: #ff0000; }
  .k-current-time.k-current-time-arrow-left {
    border-right-color: #ff0000; }
  .k-current-time.k-current-time-arrow-right {
    border-left-color: #ff0000; }
  .k-current-time.k-current-time-arrow-down {
    border-top-color: #ff0000; }

.k-scheduler-toolbar,
.k-scheduler-footer {
  background-clip: padding-box; }
  .k-ie11 .k-scheduler-toolbar,
  .k-edge12 .k-scheduler-toolbar,
  .k-edge13 .k-scheduler-toolbar, .k-ie11
  .k-scheduler-footer,
  .k-edge12
  .k-scheduler-footer,
  .k-edge13
  .k-scheduler-footer {
    background-clip: border-box; }

.k-scheduler-header {
  background-color: #f6f6f6; }

.k-scheduler-header-wrap {
  background-color: var(--sg-bg-color, #ffffff); }

.k-scheduler-navigation li {
  background-clip: padding-box; }
  .k-ie11 .k-scheduler-navigation li,
  .k-edge12 .k-scheduler-navigation li,
  .k-edge13 .k-scheduler-navigation li {
    background-clip: border-box; }

.k-scheduler-views.k-state-expanded {
  background-color: #f6f6f6; }

.k-scheduler-views li {
  background-clip: padding-box; }
  .k-ie11 .k-scheduler-views li,
  .k-edge12 .k-scheduler-views li,
  .k-edge13 .k-scheduler-views li {
    background-clip: border-box; }
  .k-scheduler-views li.k-state-selected {
    border-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    background-color: #0735cc;
    background-image: none; }

.k-scheduler-footer li {
  background-clip: padding-box; }
  .k-ie11 .k-scheduler-footer li,
  .k-edge12 .k-scheduler-footer li,
  .k-edge13 .k-scheduler-footer li {
    background-clip: border-box; }

.k-nonwork-hour {
  background-color: #fafafa; }

.k-scheduler-layout td.k-state-selected {
  background-color: rgba(82, 160, 255, 0.25); }

kendo-scheduler .k-event,
.k-event {
  background-color: #0735cc;
  color: #ffffff; }
  kendo-scheduler .k-event::before,
  .k-event::before {
    display: block;
    left: 3px;
    opacity: .35;
    background-color: var(--sg-bg-color, #ffffff); }
    .k-rtl kendo-scheduler .k-event::before, .k-rtl
    .k-event::before {
      left: 0;
      right: 3px; }
  kendo-scheduler .k-event.k-state-selected::before,
  .k-event.k-state-selected::before {
    display: none; }
  kendo-scheduler .k-event.k-event-inverse,
  .k-event.k-event-inverse {
    color: var(--sg-text-color, #000000); }

.k-scheduler-marquee::before,
.k-scheduler-marquee::after {
  border-color: #0735cc; }

.k-scheduler-edit-dialog .k-dialog-buttongroup {
  border-color: rgba(0, 0, 0, 0.08); }

.k-mediaplayer {
  position: relative; }
  .k-mediaplayer > iframe {
    width: 100%;
    height: 100%;
    border: 0;
    vertical-align: top; }

.k-mediaplayer-titlebar {
  padding: 8px 8px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0; }

.k-mediaplayer-toolbar-wrap {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0; }

.k-mediaplayer-toolbar {
  padding: 8px 8px;
  border-width: 0;
  width: 100% !important;
  box-shadow: none; }
  .k-mediaplayer-toolbar > * {
    margin: 0;
    align-items: center;
    align-content: center; }
  .k-mediaplayer-toolbar > * + * {
    margin-left: 8px; }
  .k-mediaplayer-toolbar .k-toolbar-spacer {
    margin-top: 0;
    margin-bottom: 0;
    border-width: 0;
    flex: 1; }
  .k-mediaplayer-toolbar .k-align-right > * + * {
    margin-left: 8px; }

.k-mediaplayer-time-wrap {
  flex: 1; }

.k-mediaplayer-volume-wrap {
  padding: 0 7px;
  align-items: center; }

.k-slider.k-mediaplayer-seekbar {
  width: 100%;
  position: absolute;
  z-index: 3;
  top: -17px;
  left: 0; }

.k-mediaplayer-seekbar .k-slider-track {
  width: 100% !important;
  border-radius: 0; }

.k-mediaplayer-fullscreen {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }

.k-mediaplayer {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-mediaplayer-titlebar {
  color: #ffffff;
  background-image: linear-gradient(rgba(101, 101, 101, 0.7), rgba(101, 101, 101, 0));
  text-shadow: 0 0 2px rgba(101, 101, 101, 0.5); }

.k-mediaplayer-toolbar {
  color: var(--sg-text-color, #000000);
  background-color: rgba(246, 246, 246, 0.85); }

.k-notification-group {
  position: fixed;
  display: inline-flex;
  flex-wrap: wrap;
  max-height: 100%;
  flex-direction: column-reverse; }

.k-notification-container {
  margin: 2px 0;
  display: inline-flex;
  vertical-align: top; }
  .k-notification-container-animating {
    overflow: hidden; }

.k-notification {
  border-radius: 6px;
  padding: 4px 8px;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  line-height: 1.42857em;
  cursor: default;
  position: relative; }

.k-notification-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; }
  .k-notification-wrap > .k-icon {
    margin-right: 4px;
    flex: 0 0 0%; }
  .k-notification-wrap > .k-i-close, .k-notification-wrap > .k-i-group-delete::before {
    margin-right: 0;
    margin-left: 4px;
    flex: 0 0 0%;
    cursor: pointer; }
  .k-notification-wrap > .k-notification-content {
    flex: 1 1 0%; }

.k-rtl .k-notification .k-notification-wrap > .k-icon,
[dir="rtl"] .k-notification .k-notification-wrap > .k-icon {
  margin-right: 0;
  margin-left: 4px; }

.k-rtl .k-notification .k-notification-wrap > .k-i-close, .k-rtl .k-notification .k-notification-wrap > .k-i-group-delete::before,
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-close,
[dir="rtl"] .k-notification .k-notification-wrap > .k-i-group-delete::before {
  margin-left: 0;
  margin-right: 4px; }

.k-ie9 .k-notification-wrap {
  white-space: nowrap; }
  .k-ie9 .k-notification-wrap > .k-icon {
    vertical-align: top; }
  .k-ie9 .k-notification-wrap > .k-notification-content {
    display: inline-block;
    vertical-align: middle;
    white-space: normal; }

.k-notification-wrap > .k-i-close, .k-notification-wrap > .k-i-group-delete::before {
  color: inherit; }

.k-notification-group .k-notification {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04); }

.k-notification-info {
  border-color: #3e80ed;
  color: #ffffff;
  background-color: #3e80ed; }

.k-notification-success {
  border-color: #5ec232;
  color: #ffffff;
  background-color: #5ec232; }

.k-notification-warning {
  border-color: #fdce3e;
  color: #000000;
  background-color: #fdce3e; }

.k-notification-error {
  border-color: #d51923;
  color: #ffffff;
  background-color: #d51923; }

.k-rpanel-left,
.k-rpanel-right {
  position: fixed;
  display: block;
  overflow: auto;
  min-width: 320px;
  height: 100%;
  top: 0; }
  .k-rpanel-left + *,
  .k-rpanel-right + * {
    overflow: auto; }
  .k-rpanel-left.k-rpanel-expanded,
  .k-rpanel-right.k-rpanel-expanded {
    transform: translateX(0) translateZ(0); }

.k-rpanel-left {
  transform: translateX(-100%) translateZ(0);
  left: 0; }

.k-rpanel-right {
  transform: translateX(100%) translateZ(0);
  right: 0; }

.k-rpanel-top {
  position: static;
  max-height: 0; }

.k-rpanel-top.k-rpanel-expanded {
  max-height: 568px;
  overflow: visible !important; }

.k-rpanel-toggle {
  touch-action: manipulation; }

.k-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  cursor: default; }
  .k-menu .k-item {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: flex;
    align-items: stretch;
    position: relative;
    user-select: none;
    flex-shrink: 0;
    outline: 0; }
  .k-menu .k-item > .k-link {
    cursor: pointer;
    padding: 6px 12px;
    line-height: 1.42857;
    color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    white-space: nowrap; }

.k-menu-link > .k-icon,
.k-menu-link > .k-image,
.k-menu-link > .k-sprite {
  margin-right: 8px; }

.k-menu-expand-arrow.k-i-arrow-60-down, .k-menu-expand-arrow.k-i-arrow-s::before, .k-menu-expand-arrow.k-i-sarrow-s::before, .k-menu-expand-arrow.k-i-collapse::before, .k-menu-expand-arrow.k-i-expand-s::before {
  margin-left: 4px;
  margin-right: -4px; }

.k-menu-expand-arrow.k-i-arrow-60-left, .k-menu-expand-arrow.k-i-arrow-w::before, .k-menu-expand-arrow.k-i-sarrow-w::before, .k-menu-expand-arrow.k-i-expand-w::before, .k-menu-expand-arrow.k-i-arrow-60-right, .k-menu-expand-arrow.k-i-arrow-e::before, .k-menu-expand-arrow.k-i-sarrow-e::before, .k-menu-expand-arrow.k-i-expand::before, .k-menu-expand-arrow.k-i-expand-e::before {
  margin: -8px 0 0;
  position: absolute;
  top: 50%; }

.k-menu-expand-arrow.k-i-arrow-60-right, .k-menu-expand-arrow.k-i-arrow-e::before, .k-menu-expand-arrow.k-i-sarrow-e::before, .k-menu-expand-arrow.k-i-expand::before, .k-menu-expand-arrow.k-i-expand-e::before {
  right: 4px; }

.k-menu-expand-arrow.k-i-arrow-60-left, .k-menu-expand-arrow.k-i-arrow-w::before, .k-menu-expand-arrow.k-i-sarrow-w::before, .k-menu-expand-arrow.k-i-expand-w::before {
  left: 4px; }

.k-menu-group {
  margin: 0;
  padding: 0 0;
  white-space: nowrap;
  list-style: none;
  display: none;
  position: absolute; }
  .k-menu-popup .k-menu-group {
    position: relative;
    display: block; }

.k-menu-horizontal > .k-item + .k-item {
  margin-left: 0; }

.k-menu-horizontal > .k-separator + .k-item {
  margin-left: 0; }

.k-menu-horizontal > .k-item.k-separator {
  margin: 0 2px; }

.k-menu-vertical > .k-item + .k-item {
  margin-top: 0; }

.k-menu-group,
.k-menu-vertical {
  flex-direction: column; }
  .k-menu-group .k-item,
  .k-menu-vertical .k-item {
    display: block;
    border-color: inherit; }
    .k-menu-group .k-item .k-icon,
    .k-menu-vertical .k-item .k-icon {
      margin-right: 8px; }
      .k-menu-group .k-item .k-icon.k-menu-expand-arrow,
      .k-menu-vertical .k-item .k-icon.k-menu-expand-arrow {
        margin-right: 0; }
  .k-menu-group .k-item > .k-link,
  .k-menu-vertical .k-item > .k-link {
    line-height: 1.42857;
    padding: 4px 8px;
    padding-right: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative; }
  .k-menu-group .k-item.k-separator,
  .k-menu-vertical .k-item.k-separator {
    margin: 2px 0; }

.k-popups-wrapper {
  position: relative;
  border: 0;
  margin: 0;
  padding: 0; }

.k-context-menu {
  margin: 0;
  border-width: 1px;
  border-style: solid;
  box-sizing: content-box; }
  .k-context-menu.k-menu-horizontal {
    padding: 0 0; }
  .k-context-menu > .k-item + .k-item:not(.k-separator) {
    margin-left: 0; }

.k-animation-container .k-context-menu.k-menu-horizontal {
  display: flex !important;
  flex-wrap: nowrap; }

.k-menu-scroll-wrapper {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative; }
  .k-menu-scroll-wrapper .k-menu {
    overflow: hidden;
    flex-wrap: nowrap; }

.k-menu-scroll-button {
  border-radius: 0;
  padding: 0;
  border-width: 0;
  border-color: inherit;
  color: inherit;
  background: inherit;
  background-clip: border-box;
  position: absolute; }
  .k-menu-scroll-button.k-scroll-left {
    top: 0;
    left: 0;
    height: 100%;
    width: 16px;
    border-right-width: 1px; }
  .k-menu-scroll-button.k-scroll-right {
    top: 0;
    right: 0;
    height: 100%;
    width: 16px;
    border-left-width: 1px; }
  .k-menu-scroll-button.k-scroll-up {
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
    border-bottom-width: 1px; }
  .k-menu-scroll-button.k-scroll-down {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    border-top-width: 1px; }

.k-rtl .k-menu-link > .k-icon,
.k-rtl .k-menu-link > .k-image,
.k-rtl .k-menu-link > .k-sprite,
[dir="rtl"] .k-menu-link > .k-icon,
[dir="rtl"] .k-menu-link > .k-image,
[dir="rtl"] .k-menu-link > .k-sprite {
  margin-left: 8px;
  margin-right: 0; }

.k-rtl .k-menu-link .k-icon.k-menu-expand-arrow,
[dir="rtl"] .k-menu-link .k-icon.k-menu-expand-arrow {
  margin-left: 0; }

.k-rtl .k-menu-expand-arrow.k-i-arrow-60-down, .k-rtl .k-menu-expand-arrow.k-i-arrow-s::before, .k-rtl .k-menu-expand-arrow.k-i-sarrow-s::before, .k-rtl .k-menu-expand-arrow.k-i-collapse::before, .k-rtl .k-menu-expand-arrow.k-i-expand-s::before,
[dir="rtl"] .k-menu-expand-arrow.k-i-arrow-60-down,
[dir="rtl"] .k-menu-expand-arrow.k-i-arrow-s::before,
[dir="rtl"] .k-menu-expand-arrow.k-i-sarrow-s::before,
[dir="rtl"] .k-menu-expand-arrow.k-i-collapse::before,
[dir="rtl"] .k-menu-expand-arrow.k-i-expand-s::before {
  margin-left: -4px;
  margin-right: 4px; }

.k-rtl .k-menu-horizontal > .k-item:first-of-type,
[dir="rtl"] .k-menu-horizontal > .k-item:first-of-type {
  margin-left: 0;
  margin-right: 0; }

.k-rtl .k-menu-group .k-link,
.k-rtl .k-menu-vertical .k-link,
[dir="rtl"] .k-menu-group .k-link,
[dir="rtl"] .k-menu-vertical .k-link {
  padding-right: 8px;
  padding-left: 32px; }

.k-rtl .k-menu-group .k-item .k-icon,
.k-rtl .k-menu-vertical .k-item .k-icon,
[dir="rtl"] .k-menu-group .k-item .k-icon,
[dir="rtl"] .k-menu-vertical .k-item .k-icon {
  margin-left: 8px;
  margin-right: 0; }
  .k-rtl .k-menu-group .k-item .k-icon.k-menu-expand-arrow,
  .k-rtl .k-menu-vertical .k-item .k-icon.k-menu-expand-arrow,
  [dir="rtl"] .k-menu-group .k-item .k-icon.k-menu-expand-arrow,
  [dir="rtl"] .k-menu-vertical .k-item .k-icon.k-menu-expand-arrow {
    margin-left: 0; }

.k-rtl .k-menu-vertical .k-link,
[dir="rtl"] .k-menu-vertical .k-link {
  padding-right: 20px; }

.k-menu:not(.k-context-menu) {
  border-width: 0;
  background: none;
  background-clip: padding-box; }
  .k-ie11 .k-menu:not(.k-context-menu),
  .k-edge12 .k-menu:not(.k-context-menu),
  .k-edge13 .k-menu:not(.k-context-menu) {
    background-clip: border-box; }
  .k-menu:not(.k-context-menu) > .k-item {
    color: #0735cc; }
    .k-menu:not(.k-context-menu) > .k-item:hover, .k-menu:not(.k-context-menu) > .k-item.k-state-hover {
      color: #5194e6; }
    .k-menu:not(.k-context-menu) > .k-item > .k-state-active {
      color: var(--sg-text-color, #000000); }
    .k-menu:not(.k-context-menu) > .k-item.k-state-selected {
      color: #ffffff; }
    .k-menu:not(.k-context-menu) > .k-item:focus, .k-menu:not(.k-context-menu) > .k-item.k-state-focused {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
      outline: 0; }

.k-menu-group .k-item > .k-state-active,
.k-menu.k-context-menu .k-item > .k-state-active {
  color: #ffffff;
  background-color: #0735cc; }

.k-menu-group .k-item:focus, .k-menu-group .k-item.k-state-focused,
.k-menu.k-context-menu .k-item:focus,
.k-menu.k-context-menu .k-item.k-state-focused {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
  outline: 0; }

.k-menu-scroll-button {
  border-color: rgba(0, 0, 0, 0.08);
  color: #0735cc;
  background: #ffffff; }
  .k-menu-scroll-button:hover {
    border-color: rgba(0, 0, 0, 0.08);
    color: #5194e6;
    background: #ffffff; }
    .k-menu-scroll-button:hover::before {
      opacity: 0; }

.k-panelbar {
  margin: 0;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  line-height: 1.42857;
  list-style: none; }
  .k-panelbar > .k-item {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: block; }
    .k-panelbar > .k-item > .k-link {
      padding: 8px 8px;
      color: inherit;
      background: none;
      text-decoration: none;
      display: flex;
      flex-direction: row;
      align-items: center;
      align-content: center;
      position: relative;
      user-select: none;
      cursor: default;
      transition: background-color 0.2s ease; }
  .k-panelbar > .k-item + .k-item {
    border-top-width: 1px; }
  .k-panelbar .k-group {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-color: inherit;
    color: inherit;
    background-color: transparent;
    list-style: none; }
  .k-panelbar .k-group > .k-item {
    display: block; }
    .k-panelbar .k-group > .k-item > .k-link {
      padding: 4px 8px;
      color: inherit;
      text-decoration: none;
      display: flex;
      flex-direction: row;
      align-items: center;
      align-content: center;
      position: relative;
      user-select: none;
      cursor: default;
      transition: background-color 0.2s ease; }
  .k-panelbar .k-panelbar-expand,
  .k-panelbar .k-panelbar-collapse {
    margin-top: -.5em;
    position: absolute;
    top: 50%;
    right: 8px; }
  .k-panelbar .k-link > .k-image,
  .k-panelbar .k-link > .k-sprite {
    margin-right: 4px; }
  .k-panelbar[dir="rtl"] .k-panelbar-expand,
  .k-panelbar[dir="rtl"] .k-panelbar-collapse,
  .k-rtl .k-panelbar .k-panelbar-expand,
  .k-rtl .k-panelbar .k-panelbar-collapse {
    right: auto;
    left: 8px; }
  .k-panelbar[dir="rtl"] .k-link > .k-image,
  .k-panelbar[dir="rtl"] .k-link > .k-sprite,
  .k-rtl .k-panelbar .k-link > .k-image,
  .k-rtl .k-panelbar .k-link > .k-sprite {
    margin-left: 4px;
    margin-right: 0; }

.k-panelbar {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6;
  background-clip: padding-box; }
  .k-ie11 .k-panelbar,
  .k-edge12 .k-panelbar,
  .k-edge13 .k-panelbar {
    background-clip: border-box; }
  .k-panelbar > .k-item {
    background-clip: padding-box; }
    .k-ie11 .k-panelbar > .k-item,
    .k-edge12 .k-panelbar > .k-item,
    .k-edge13 .k-panelbar > .k-item {
      background-clip: border-box; }
    .k-panelbar > .k-item > .k-link {
      color: #0735cc;
      background-color: var(--sg-bg-color, #ffffff); }
      .k-panelbar > .k-item > .k-link .k-icon {
        color: var(--sg-text-color, #000000); }
    .k-panelbar > .k-item.k-state-active > .k-link,
    .k-panelbar > .k-item.k-state-expanded > .k-link {
      color: inherit;
      background-color: transparent;
      font-weight: 500; }
    .k-panelbar > .k-item > .k-link:hover,
    .k-panelbar > .k-item > .k-link.k-state-hover {
      color: #5194e6;
      background-color: #ebebeb; }
    .k-panelbar > .k-item > .k-link.k-state-selected {
      color: #ffffff;
      background-color: #0735cc; }
      .k-panelbar > .k-item > .k-link.k-state-selected .k-icon {
        color: inherit; }
      .k-panelbar > .k-item > .k-link.k-state-selected:hover, .k-panelbar > .k-item > .k-link.k-state-selected.k-state-hover {
        background-color: #4b93eb; }
    .k-panelbar > .k-item > .k-link.k-state-focused {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
  .k-panelbar .k-group > .k-item > .k-link:hover,
  .k-panelbar .k-group > .k-item > .k-link.k-state-hover {
    background-color: #e2e2e2; }
  .k-panelbar .k-group > .k-item > .k-link.k-state-selected {
    color: #ffffff;
    background-color: #0735cc; }
    .k-panelbar .k-group > .k-item > .k-link.k-state-selected:hover, .k-panelbar .k-group > .k-item > .k-link.k-state-selected.k-state-hover {
      background-color: #4b93eb; }
  .k-panelbar .k-group > .k-item > .k-link.k-state-focused {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }

.k-drawer-container {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  white-space: nowrap;
  user-select: none;
  width: 0;
  transition: all 300ms ease-out; }
  .k-drawer-container,
  .k-drawer-container .k-drawer-items {
    overflow-y: auto;
    scrollbar-width: thin; }
    .k-drawer-container::-webkit-scrollbar,
    .k-drawer-container .k-drawer-items::-webkit-scrollbar {
      width: 7px; }
    .k-drawer-container::-webkit-scrollbar-thumb,
    .k-drawer-container .k-drawer-items::-webkit-scrollbar-thumb {
      border-radius: 20px; }
  .k-drawer-container .k-drawer-items {
    padding: 0;
    transition: all 300ms ease-out;
    overflow-x: hidden; }
    .k-drawer-container .k-drawer-items ul {
      padding: 0;
      margin: 0; }
    .k-drawer-container .k-drawer-items .k-drawer-item {
      display: block;
      line-height: 1.5;
      font-size: 16px;
      padding: 8px 8px;
      list-style: none; }
      .k-drawer-container .k-drawer-items .k-drawer-item.k-drawer-separator {
        padding: 0;
        height: 1px; }
    .k-drawer-container .k-drawer-items .k-icon {
      display: inline-block;
      font-size: 18px;
      margin: 0 8px; }
    .k-drawer-container .k-drawer-items .k-item-text {
      display: inline-block;
      padding: 0 8px;
      vertical-align: middle; }
  .k-drawer-container.k-drawer-expanded {
    border-right-width: 1px; }

.k-drawer-wrapper {
  overflow-x: hidden; }
  .k-drawer-wrapper.k-drawer-mini-mode .k-drawer-container {
    border-right-width: 1px;
    width: auto; }
  .k-drawer-wrapper.k-drawer-mini-mode .k-drawer-items {
    overflow-y: visible;
    overflow-x: initial;
    width: calc(4 * 8px + 18px); }
  .k-drawer-wrapper.k-drawer-overlay .k-drawer-container {
    position: fixed;
    left: 0;
    right: auto;
    height: 100%;
    z-index: 10002; }
  .k-drawer-wrapper.k-drawer-overlay .k-drawer-items {
    max-width: 80vw; }
  .k-drawer-wrapper.k-drawer-push {
    display: flex;
    height: 100%; }
    .k-drawer-wrapper.k-drawer-push .k-drawer-content {
      flex: 1 1 auto; }
    .k-drawer-wrapper.k-drawer-push .k-drawer-container {
      position: relative;
      flex: 0 0 auto; }
  .k-drawer-wrapper .k-overlay {
    display: none; }
  .k-drawer-wrapper.k-drawer-right.k-drawer-overlay .k-drawer-container {
    left: auto;
    right: 0; }
  .k-drawer-wrapper.k-drawer-right.k-drawer-push .k-drawer-container {
    order: 1; }
  .k-drawer-wrapper.k-drawer-right .k-drawer-container.k-drawer-expanded,
  .k-drawer-wrapper.k-drawer-right.k-drawer-mini-mode .k-drawer-container {
    border-left-width: 1px;
    border-right-width: 0; }

.k-rtl .k-drawer-wrapper.k-drawer-left.k-drawer-push .k-drawer-container,
[dir="rtl"] .k-drawer-wrapper.k-drawer-left.k-drawer-push .k-drawer-container {
  order: 1; }

.k-rtl .k-drawer-wrapper.k-drawer-right.k-drawer-push .k-drawer-container,
[dir="rtl"] .k-drawer-wrapper.k-drawer-right.k-drawer-push .k-drawer-container {
  order: 0; }

.k-drawer-container {
  background-color: #f6f6f6;
  color: var(--sg-text-color, #000000);
  border-color: rgba(0, 0, 0, 0.08); }
  .k-drawer-container,
  .k-drawer-container .k-drawer-items {
    scrollbar-color: rgba(156, 156, 156, 0.7) #dedede; }
    .k-drawer-container::-webkit-scrollbar-track,
    .k-drawer-container .k-drawer-items::-webkit-scrollbar-track {
      background: #dedede; }
    .k-drawer-container::-webkit-scrollbar-thumb,
    .k-drawer-container .k-drawer-items::-webkit-scrollbar-thumb {
      background: rgba(156, 156, 156, 0.7); }
    .k-drawer-container::-webkit-scrollbar-thumb:hover,
    .k-drawer-container .k-drawer-items::-webkit-scrollbar-thumb:hover {
      background: #9c9c9c; }

.k-drawer-items .k-drawer-item {
  color: var(--sg-text-color, #000000); }
  .k-drawer-items .k-drawer-item:hover, .k-drawer-items .k-drawer-item.k-state-hover {
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-color-legacy-ededed, #ededed);
    cursor: pointer; }
  .k-drawer-items .k-drawer-item:focus, .k-drawer-items .k-drawer-item.k-state-focused {
    background-color: #f6f6f6;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13); }
    .k-drawer-items .k-drawer-item:focus:hover, .k-drawer-items .k-drawer-item:focus.k-state-hover, .k-drawer-items .k-drawer-item.k-state-focused:hover, .k-drawer-items .k-drawer-item.k-state-focused.k-state-hover {
      color: var(--sg-text-color, #000000);
      background-color: var(--sg-color-legacy-ededed, #ededed); }
  .k-drawer-items .k-drawer-item.k-state-selected {
    color: #ffffff;
    background-color: #0735cc; }
    .k-drawer-items .k-drawer-item.k-state-selected:hover, .k-drawer-items .k-drawer-item.k-state-selected.k-state-hover {
      color: #ffffff;
      background-color: #4b93eb; }
  .k-drawer-items .k-drawer-item.k-drawer-separator {
    background-color: rgba(0, 0, 0, 0.08); }

.k-progressbar {
  border-radius: 6px;
  border-width: 0;
  font-size: 12px;
  line-height: 22px;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  overflow: hidden; }
  .k-progressbar .k-progress-status-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0; }
  .k-progressbar .k-progress-status {
    padding: 0 0.5em;
    min-width: 10px;
    text-align: center;
    display: inline-block;
    white-space: nowrap; }
  .k-progressbar > .k-state-selected {
    position: absolute;
    overflow: hidden;
    border-style: solid;
    border-width: 0; }
  .k-progressbar > ul {
    border-width: inherit;
    border-style: inherit;
    white-space: nowrap;
    display: flex;
    align-items: stretch;
    flex: 1; }
  .k-progressbar .k-item {
    display: block;
    border-width: 0;
    border-style: solid;
    border-color: transparent; }

.k-progressbar-horizontal {
  width: 27em;
  height: 22px;
  flex-direction: row; }
  .k-progressbar-horizontal .k-progress-status-wrap {
    flex-direction: row;
    justify-content: flex-end;
    top: 0;
    left: 0; }
  .k-progressbar-horizontal > .k-state-selected {
    left: 0;
    right: auto;
    top: 0;
    height: 100%; }
  .k-progressbar-horizontal > ul {
    flex-direction: row; }
  .k-progressbar-horizontal .k-item + .k-item {
    border-left-width: 1px; }
  .k-progressbar-horizontal.k-progressbar-reverse {
    flex-direction: row-reverse; }
    .k-progressbar-horizontal.k-progressbar-reverse .k-progress-status-wrap {
      justify-content: flex-start;
      left: auto;
      right: 0; }
    .k-progressbar-horizontal.k-progressbar-reverse > .k-state-selected {
      left: auto;
      right: 0; }

.k-progressbar-vertical {
  width: 22px;
  height: 27em;
  flex-direction: column;
  justify-content: flex-end; }
  .k-progressbar-vertical .k-progress-status-wrap {
    flex-direction: column;
    justify-content: flex-start;
    left: 0;
    bottom: 0;
    top: auto; }
  .k-progressbar-vertical .k-progress-status {
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: 0 0;
    position: absolute; }
  .k-progressbar-vertical > .k-state-selected {
    bottom: 0;
    width: 100%; }
  .k-progressbar-vertical > ul {
    flex-direction: column; }
  .k-progressbar-vertical .k-item + .k-item {
    border-top-width: 1px; }
  .k-progressbar-vertical.k-progressbar-reverse {
    flex-direction: column-reverse; }
    .k-progressbar-vertical.k-progressbar-reverse .k-progress-status-wrap {
      justify-content: flex-end;
      top: 0;
      bottom: auto; }
    .k-progressbar-vertical.k-progressbar-reverse .k-progress-status {
      transform: rotate(90deg) translateX(-100%);
      transform-origin: 0 100%;
      position: absolute;
      bottom: 0;
      left: 0; }
    .k-progressbar-vertical.k-progressbar-reverse > .k-state-selected {
      left: auto;
      right: 0;
      bottom: auto;
      top: 0; }

.k-progressbar-indeterminate .k-progress-status-wrap,
.k-progressbar-indeterminate .k-state-selected {
  display: none; }

.k-rtl .k-progressbar,
.k-progressbar[dir="rtl"] {
  direction: ltr; }

.k-rtl .k-progressbar-horizontal, .k-progressbar-horizontal[dir="rtl"] {
  transform: scaleX(-1); }
  .k-rtl .k-progressbar-horizontal .k-progress-status, .k-progressbar-horizontal[dir="rtl"] .k-progress-status {
    transform: scaleX(-1);
    direction: rtl; }

@keyframes progressbar-indeterminate-animation {
  from {
    background-position: 0 0; }
  to {
    background-position: 22px 0; } }

.k-progressbar {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }
  .k-progressbar .k-state-selected {
    border-color: #3e95ff;
    color: #ffffff;
    background-color: #0735cc;
    background-image: linear-gradient(rgba(82, 120, 255, 0), rgba(82, 120, 255, 0.2)); }
  .k-progressbar .k-item {
    border-color: #ffffff; }

.k-progressbar-indeterminate {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6;
  background-image: linear-gradient(45deg, #e2e2e2 25%, transparent 25%, transparent 50%, #e2e2e2 50%, #e2e2e2 75%, transparent 75%, transparent);
  background-size: 22px 22px;
  animation: progressbar-indeterminate-animation 1s linear infinite; }

.km-scrollview,
.km-scroll-container {
  user-select: none;
  border-collapse: separate; }

.km-scroll-wrapper {
  position: relative; }

.km-scroll-header {
  position: absolute;
  z-index: 1001;
  width: 100%;
  top: 0;
  left: 0; }

.km-scroller-pull {
  width: 100%;
  display: block;
  position: absolute;
  line-height: 3em;
  font-size: 1.4em;
  text-align: center;
  transform: translate3d(0, -3em, 0); }

.km-scroller-pull .km-template {
  display: inline-block;
  min-width: 200px;
  text-align: left; }

.km-load-more .km-icon,
.km-widget .km-scroller-pull .km-icon {
  display: inline-block;
  height: 2rem;
  margin-right: 1rem;
  vertical-align: middle;
  width: 2rem;
  font-size: 2rem;
  transform: rotate(0deg);
  transition: transform 300ms linear; }

.km-widget .km-scroller-release .km-icon {
  transform: rotate(180deg); }

.km-widget .km-scroller-refresh .km-icon {
  transition: none; }

.km-touch-scrollbar {
  position: absolute;
  visibility: hidden;
  z-index: 200000;
  height: .4em;
  width: .4em;
  background-color: #333333;
  opacity: 0;
  transform-origin: 0 0;
  transition: opacity .3s linear; }

.km-vertical-scrollbar {
  height: 100%;
  right: 2px;
  top: 0; }

.km-horizontal-scrollbar {
  width: 100%;
  left: 0;
  bottom: 2px; }

.k-typography {
  font-size: 14px;
  line-height: 1.42857;
  font-weight: 400; }
  .k-typography p {
    margin: 0 0 14px; }

.k-h1 {
  font-family: inherit;
  font-size: 28px;
  line-height: normal;
  font-weight: 300;
  margin: 0 0 14px; }

.k-h2 {
  font-family: inherit;
  font-size: 19px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 14px; }

.k-h3 {
  font-family: inherit;
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  margin: 0 0 14px; }

.k-h4 {
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  font-weight: 700;
  margin: 0 0 14px; }

.k-h5 {
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 14px; }

.k-h6 {
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 14px; }

.k-display-1 {
  font-family: inherit;
  font-size: 84px;
  line-height: 1.2;
  font-weight: 300; }

.k-display-2 {
  font-family: inherit;
  font-size: 70px;
  line-height: 1.2;
  font-weight: 300; }

.k-display-3 {
  font-family: inherit;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 300; }

.k-display-4 {
  font-family: inherit;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300; }

.k-block,
.k-panel {
  border-radius: 6px;
  padding: 4px 8px;
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box; }
  .k-block > .k-header,
  .k-panel > .k-header {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: -4px -8px 4px;
    padding: 8px 8px; }

.k-text-primary {
  color: #0735cc !important; }

.k-text-info {
  color: #3e80ed !important; }

.k-text-success {
  color: #5ec232 !important; }

.k-text-warning {
  color: #fdce3e !important; }

.k-text-error {
  color: #d51923 !important; }

.k-bg-primary {
  background-color: #0735cc !important; }

.k-bg-info {
  background-color: #3e80ed !important; }

.k-bg-success {
  background-color: #5ec232 !important; }

.k-bg-warning {
  background-color: #fdce3e !important; }

.k-bg-error {
  background-color: #d51923 !important; }

.k-state-primary, .k-card.k-state-primary {
  background-color: #dcecff;
  color: #2b5385;
  border-color: #cfe4ff; }

.k-state-info, .k-card.k-state-info {
  background-color: #d8e6fb;
  color: #20437b;
  border-color: #c9dbfa; }

.k-state-success, .k-card.k-state-success {
  background-color: #dff3d6;
  color: #31651a;
  border-color: #d2eec6; }

.k-state-warning, .k-card.k-state-warning {
  background-color: #fff5d8;
  color: #846b20;
  border-color: #fef1c9; }

.k-state-error, .k-card.k-state-error {
  background-color: #f7d1d3;
  color: #6f0d12;
  border-color: #f3bfc1; }

.k-info-colored {
  color: #50607f;
  border-color: #d0d9df;
  background-color: #f0f9ff; }

.k-success-colored {
  color: #507f50;
  border-color: #d0dfd0;
  background-color: #f0fff0; }

.k-error-colored {
  color: #7f5050;
  border-color: #dfd0d0;
  background-color: #fff0f0; }

.k-shadow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04); }

.k-inset {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03), inset 0 4px 5px 0 rgba(0, 0, 0, 0.04); }

.k-badge {
  border-radius: 6px;
  padding: 0 4px;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis; }

.k-button .k-badge {
  margin-left: 4px;
  position: relative;
  z-index: 5; }

.k-rtl .k-badge {
  right: auto;
  left: -0.75em; }

.k-badge {
  color: #ffffff;
  background-color: #0735cc; }

.k-card {
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  display: flex;
  flex-direction: column;
  overflow: hidden; }

.k-card.k-card-flat {
  box-shadow: none; }

.k-card > .k-card-header:first-child, .k-card > .k-card-body:first-child, .k-card > .k-card-image:first-child, .k-card > .k-card-actions:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.k-card > .k-card-header:last-child, .k-card > .k-card-body:last-child, .k-card > .k-card-image:last-child, .k-card > .k-card-actions:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.k-card-header {
  padding: 12px 16px;
  border-width: 0 0 1px;
  border-style: solid;
  overflow: hidden; }
  .k-card-header > h1,
  .k-card-header > h2,
  .k-card-header > h3,
  .k-card-header > h4,
  .k-card-header > h5,
  .k-card-header > h6 {
    margin: 0; }

.k-card-body {
  padding: 12px 16px;
  flex: 1 1 auto; }
  .k-card-body p {
    margin: 0 0 14px; }
  .k-card-body > .k-last,
  .k-card-body > :last-child {
    margin-bottom: 0; }

.k-card-image {
  border: 0;
  max-width: 100%;
  overflow: hidden; }
  .k-card-image > img {
    border: 0;
    max-width: 100%; }

.k-card-title {
  font-family: inherit;
  font-size: 19px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 14px; }

.k-card-subtitle {
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 14px; }

.k-card-title + .k-card-subtitle {
  margin-top: -10.5px; }

.k-card > .k-hr {
  margin: 0;
  flex: 0 0 auto;
  border-color: inherit; }

.k-card-actions {
  padding: 8px 16px;
  border-width: 0;
  border-style: solid;
  border-color: inherit;
  overflow: hidden;
  flex-shrink: 0;
  flex-basis: auto; }
  .k-card > .k-card-actions {
    border-top-width: 1px;
    border-color: inherit; }
  .k-card-actions > .k-button.k-flat:first-child, .k-calendar.k-calendar-range.k-calendar-infinite.k-card-actions:not(.k-calendar-minimal) > .k-button:first-child, .k-calendar .k-calendar-header .k-card-actions > .k-button:first-child {
    margin-left: -8px; }

.k-card-action {
  border-width: 0;
  border-style: solid;
  border-color: inherit;
  display: inline-flex;
  flex: 1 1 auto; }
  .k-card-action > .k-button {
    border-radius: 0;
    padding: 12px 16px;
    flex: 1 1 auto; }

.k-card-actions-vertical {
  padding: 0;
  display: flex;
  flex-direction: column; }
  .k-card-actions-vertical .k-card-action + .k-card-action {
    border-top-width: 1px; }

.k-card-actions-stretched {
  padding: 0;
  display: flex;
  flex-direction: row; }
  .k-card-actions-stretched .k-card-action + .k-card-action {
    border-left-width: 1px; }

.k-card-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 0 0 auto; }
  .k-card-list .k-card {
    flex: 0 0 auto; }
  .k-card-list .k-card + .k-card {
    margin-top: 16px; }

.k-card-deck {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 0 0 auto; }
  .k-card-deck .k-card {
    flex: 0 0 auto; }
  .k-card-deck .k-card + .k-card {
    margin-left: 16px; }

.k-card-deck-scrollwrap {
  display: flex;
  position: relative;
  align-items: center; }
  .k-card-deck-scrollwrap > .k-button {
    border-radius: 0;
    flex: 0 0 auto;
    position: absolute; }
    .k-card-deck-scrollwrap > .k-button:first-child {
      left: -1px; }
    .k-card-deck-scrollwrap > .k-button:last-child {
      right: -1px; }
  .k-card-deck-scrollwrap > .k-card-deck {
    flex: 1 1 auto; }

.k-card-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 0 0 auto; }
  .k-card-group .k-card {
    border-radius: 0;
    flex: 0 0 auto; }
    .k-card-group .k-card > .k-card-header {
      border-radius: 0; }
  .k-card-group .k-card + .k-card {
    margin-left: -1px; }
  .k-card-group .k-card.k-first {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }
    .k-card-group .k-card.k-first > .k-card-header {
      border-top-left-radius: 4px; }
  .k-card-group .k-card.k-last {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px; }
    .k-card-group .k-card.k-last > .k-card-header {
      border-top-right-radius: 4px; }
  .k-card-group .k-card.k-only {
    border-radius: 4px; }
    .k-card-group .k-card.k-only > .k-card-header {
      border-top-left-radius: 4px;
      border-top-right-radius: 4px; }

.k-rtl .k-card-deck .k-card + .k-card,
[dir="rtl"] .k-card-deck .k-card + .k-card {
  margin-left: 0;
  margin-right: 16px; }

.k-ie11 .k-card-body {
  flex: 1 1 auto; }

.k-card {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: var(--sg-bg-color, #ffffff); }

.k-card-header {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f6f6f6; }

.k-card-actions {
  border-color: rgba(0, 0, 0, 0.08); }

.k-card-wrap.k-state-focused > .k-card, .k-card-wrap.k-state-selected > .k-card {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3); }

.k-chat {
  height: 600px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 500px;
  margin: auto; }
  .k-chat .k-message-list {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth; }
  .k-chat .k-message-list-content {
    padding: 16px 16px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden; }
    .k-chat .k-message-list-content > * + * {
      margin-top: 16px; }
  .k-chat .k-message-group {
    max-width: 80%;
    background: none;
    box-sizing: border-box;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    position: relative; }
  .k-chat .k-message-group:not(.k-alt) {
    align-items: flex-start;
    text-align: left; }
    .k-chat .k-message-group:not(.k-alt) .k-message-time {
      margin-left: 8px;
      left: 100%; }
    .k-chat .k-message-group:not(.k-alt) .k-message-status {
      left: 0; }
    .k-chat .k-message-group:not(.k-alt) .k-first .k-bubble,
    .k-chat .k-message-group:not(.k-alt) .k-only .k-bubble {
      border-bottom-left-radius: 2px; }
    .k-chat .k-message-group:not(.k-alt) .k-middle .k-bubble,
    .k-chat .k-message-group:not(.k-alt) .k-last .k-bubble {
      border-top-left-radius: 2px;
      border-bottom-left-radius: 2px; }
  .k-chat .k-message-group.k-alt {
    align-self: flex-end;
    align-items: flex-end;
    text-align: right; }
    .k-chat .k-message-group.k-alt .k-message-time {
      margin-right: 8px;
      right: 100%; }
    .k-chat .k-message-group.k-alt .k-message-status {
      right: 0; }
    .k-chat .k-message-group.k-alt .k-first .k-bubble,
    .k-chat .k-message-group.k-alt .k-only .k-bubble {
      border-bottom-right-radius: 2px; }
    .k-chat .k-message-group.k-alt .k-middle .k-bubble,
    .k-chat .k-message-group.k-alt .k-last .k-bubble {
      border-top-right-radius: 2px;
      border-bottom-right-radius: 2px; }
  .k-chat .k-message {
    max-width: 100%;
    margin: 2px 0 0;
    position: relative;
    transition: margin .2s ease-in-out; }
  .k-chat .k-message-time,
  .k-chat .k-message-status {
    font-size: smaller;
    line-height: normal;
    white-space: nowrap;
    pointer-events: none;
    position: absolute; }
  .k-chat .k-message-time {
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .2s ease-in-out; }
  .k-chat .k-message-status {
    margin-top: 2px;
    height: 0;
    overflow: hidden;
    top: 100%;
    transition: height .2s ease-in-out; }
  .k-chat .k-bubble {
    border-radius: 12px;
    padding: 8px 12px;
    border-width: 1px;
    border-style: solid;
    line-height: 18px;
    word-wrap: break-word; }
  .k-chat .k-message.k-state-selected {
    margin-bottom: 16px;
    border: 0;
    color: inherit;
    background: none; }
    .k-chat .k-message.k-state-selected .k-message-time {
      opacity: 1; }
    .k-chat .k-message.k-state-selected .k-message-status {
      height: 1.2em; }
  .k-chat .k-message-error,
  .k-chat .k-message-sending {
    margin-bottom: 16px; }
    .k-chat .k-message-error .k-message-status,
    .k-chat .k-message-sending .k-message-status {
      height: 1.2em; }

.k-avatar {
  border-radius: 100%;
  width: 32px;
  height: 32px;
  position: absolute; }
  .k-message-group:not(.k-alt) > .k-avatar {
    left: 0;
    bottom: 0; }
  .k-message-group.k-alt > .k-avatar {
    right: 0;
    bottom: 0; }

.k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
  padding-left: calc( 32px + 8px); }

.k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
  padding-right: calc( 32px + 8px); }

.k-author {
  margin: 0;
  font-size: smaller;
  line-height: normal; }

.k-chat .k-author {
  margin: 0; }

.k-timestamp {
  font-size: smaller;
  line-height: normal;
  text-align: center;
  align-self: stretch; }

.k-quick-replies {
  display: block;
  max-width: 100%; }

.k-quick-reply {
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 4px;
  padding: 8px 12px;
  border-width: 1px;
  border-style: solid;
  line-height: 18px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  flex: 0 0 auto;
  transition-property: color, background-color, border-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out; }

.k-scrollable-quick-replies {
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  overflow-x: auto;
  overflow-y: hidden; }
  .k-scrollable-quick-replies::-webkit-scrollbar {
    display: none; }
  .k-scrollable-quick-replies .k-quick-reply {
    margin: 0; }
  .k-scrollable-quick-replies .k-quick-reply + .k-quick-reply {
    margin-left: 8px; }

.k-message-box {
  padding: 10px 16px;
  border-width: 1px 0 0;
  border-style: solid;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; }
  .k-message-box .k-input {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    background: none;
    flex: 1 1 auto; }
  .k-message-box .k-button {
    padding: 0; }
    .k-message-box .k-button svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
      display: inline-block; }
    .k-message-box .k-button::before, .k-message-box .k-toolbar .k-picker-wrap::before, .k-toolbar .k-message-box .k-picker-wrap::before, .k-message-box
    .k-toolbar .k-dropdown-wrap::before,
    .k-toolbar .k-message-box .k-dropdown-wrap::before, .k-message-box .k-button::after {
      display: none; }
    .k-rtl .k-message-box .k-button, .k-message-box .k-button[dir="rtl"] {
      transform: scaleX(-1); }

.k-chat .k-card-list {
  margin: 2px 0 0; }

.k-chat .k-card-deck {
  max-width: calc(100% + 32px);
  box-sizing: border-box;
  margin-left: -16px;
  margin-right: -16px;
  padding: 16px 16px 16px;
  overflow: hidden;
  overflow-x: auto;
  scroll-behavior: smooth; }
  .k-chat .k-card-deck .k-card-wrap + .k-card-wrap {
    margin-left: 16px; }

.k-chat .k-card-deck .k-card,
.k-chat .k-card-deck .k-card-wrap {
  width: 200px; }

.k-card-deck-scrollwrap {
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  width: 100%;
  box-sizing: content-box;
  padding-bottom: 3px; }
  .k-card-deck-scrollwrap > .k-card-deck {
    margin-bottom: -20px;
    padding-bottom: 20px; }

.k-chat .k-card-deck .k-card-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 0 0 auto;
  padding-bottom: 5px; }
  .k-chat .k-card-deck .k-card-wrap .k-card {
    flex: 0 0 auto; }
  .k-chat .k-card-deck .k-card-wrap .k-card + .k-card {
    margin-left: 16px; }
  .k-chat .k-card-deck .k-card-wrap.k-state-selected {
    background: none; }

.k-typing-indicator {
  padding: 0;
  border-radius: 50px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap; }
  .k-typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 8px;
    background-color: currentColor;
    opacity: .4; }
    .k-typing-indicator span:nth-of-type(1) {
      animation: 1s k-animation-blink infinite 0.3333s; }
    .k-typing-indicator span:nth-of-type(2) {
      animation: 1s k-animation-blink infinite 0.6666s; }
    .k-typing-indicator span:nth-of-type(3) {
      animation: 1s k-animation-blink infinite 0.9999s; }
  .k-typing-indicator span + span {
    margin-left: 5px; }

@keyframes k-animation-blink {
  50% {
    opacity: 1; } }

.k-chat .k-toolbar-box {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto; }
  .k-chat .k-toolbar-box .k-button-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 10px 16px; }
    .k-chat .k-toolbar-box .k-button-list::after {
      content: "";
      padding-right: 16px; }
    .k-chat .k-toolbar-box .k-button-list .k-button + .k-button {
      margin-left: 20px;
      flex-shrink: 0; }
  .k-chat .k-toolbar-box .k-scroll-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%); }
  .k-chat .k-toolbar-box .k-scroll-button-left {
    left: 0; }
  .k-chat .k-toolbar-box .k-scroll-button-right {
    right: 0; }
  .k-chat .k-toolbar-box .k-button {
    border-width: 0;
    color: inherit;
    background: none;
    flex-shrink: 0; }

.k-rtl .k-message-group:not(.k-alt),
[dir="rtl"] .k-message-group:not(.k-alt) {
  text-align: right; }
  .k-rtl .k-message-group:not(.k-alt) .k-message-time,
  [dir="rtl"] .k-message-group:not(.k-alt) .k-message-time {
    margin-left: 0;
    margin-right: 8px;
    left: auto;
    right: 100%; }
  .k-rtl .k-message-group:not(.k-alt) .k-message-status,
  [dir="rtl"] .k-message-group:not(.k-alt) .k-message-status {
    left: auto;
    right: 0; }

.k-rtl .k-message-group.k-alt,
[dir="rtl"] .k-message-group.k-alt {
  text-align: left; }
  .k-rtl .k-message-group.k-alt .k-message-time,
  [dir="rtl"] .k-message-group.k-alt .k-message-time {
    margin-right: 0;
    margin-left: 8px;
    right: auto;
    left: 100%; }
  .k-rtl .k-message-group.k-alt .k-message-status,
  [dir="rtl"] .k-message-group.k-alt .k-message-status {
    right: auto;
    left: 0; }

.k-rtl .k-message-group:not(.k-alt) > .k-avatar,
[dir="rtl"] .k-message-group:not(.k-alt) > .k-avatar {
  left: auto;
  right: 0; }

.k-rtl .k-message-group.k-alt > .k-avatar,
[dir="rtl"] .k-message-group.k-alt > .k-avatar {
  right: auto;
  left: 0; }

.k-rtl .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar),
[dir="rtl"] .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
  padding-left: 0;
  padding-right: calc( 32px + 8px); }

.k-rtl .k-avatars .k-message-group.k-alt:not(.k-no-avatar),
[dir="rtl"] .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
  padding-right: 0;
  padding-left: calc( 32px + 8px); }

.k-rtl .k-chat .k-card-deck .k-card-wrap + .k-card-wrap,
[dir="rtl"] .k-chat .k-card-deck .k-card-wrap + .k-card-wrap {
  margin-left: 0;
  margin-right: 16px; }

.k-rtl .k-quick-reply,
[dir="rtl"] .k-quick-reply {
  margin-right: 0;
  margin-left: 8px; }

.k-chat {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: #f9f9f9; }
  .k-chat .k-timestamp {
    text-transform: uppercase;
    opacity: .7; }
  .k-chat .k-author {
    font-weight: bold; }
  .k-chat .k-bubble {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border-color: #ffffff;
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-bg-color, #ffffff);
    transition: box-shadow .2s ease-in-out;
    order: -1; }
  .k-chat .k-bubble:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16); }
  .k-chat .k-state-selected .k-bubble {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16); }
  .k-chat .k-alt .k-bubble {
    box-shadow: 0 1px 2px rgba(82, 160, 255, 0.2);
    border-color: #0735cc;
    color: #ffffff;
    background-color: #0735cc; }
  .k-chat .k-alt .k-bubble:hover {
    box-shadow: 0 1px 2px rgba(82, 160, 255, 0.2); }
  .k-chat .k-alt .k-state-selected .k-bubble {
    box-shadow: 0 3px 10px rgba(82, 160, 255, 0.4); }
  .k-chat .k-quick-reply {
    border-color: #0735cc;
    color: #0735cc;
    background-color: transparent; }
  .k-chat .k-quick-reply:hover {
    border-color: #0735cc;
    color: #ffffff;
    background-color: #0735cc; }
  .k-chat .k-message-box {
    border-color: inherit;
    color: var(--sg-text-color, #000000);
    background-color: var(--sg-bg-color, #ffffff); }
  .k-chat .k-message-box.k-state-focused {
    box-shadow: 0 0 40px rgba(101, 101, 101, 0.1); }
  .k-chat .k-message-box .k-button:hover {
    color: #0735cc; }
  .k-chat .k-toolbar-box {
    border-color: inherit;
    color: var(--sg-text-color, #000000);
    background-color: #f6f6f6; }
    .k-chat .k-toolbar-box .k-button:hover {
      color: #0735cc;
      background: none; }
    .k-chat .k-toolbar-box .k-scroll-button {
      background-color: #f9f9f9;
      box-shadow: 0 0 20px 5px #f9f9f9; }
    .k-chat .k-toolbar-box .k-scroll-button:hover {
      background-color: #f9f9f9; }

.k-pdf-viewer {
  display: flex;
  flex-direction: column;
  overflow: hidden; }
  .k-pdf-viewer .k-toolbar {
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-color: inherit;
    flex: 0 0 auto;
    z-index: 2; }
  .k-pdf-viewer .k-toolbar .k-pager-wrap {
    padding: 0;
    color: inherit;
    background: none;
    overflow: visible; }
  .k-pdf-viewer .k-list-scroller {
    flex: 1 1 auto; }
  .k-pdf-viewer .k-page {
    margin: 30px auto; }
  .k-pdf-viewer .k-page canvas {
    direction: ltr; }

.k-pdf-viewer .k-canvas {
  background-color: #f9f9f9; }

.k-pdf-viewer .k-page {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--sg-text-color, #000000);
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08); }

/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
/*
**** IN THIS FILE BASE PARAMETRES STORED *****
*/
/*
**** COMMON ELEMENTS HEIGHT *****
*/
/*
**** COMMON RADIUS *****
*/
/*
**** MARGIN LEFT/RIGHT *****
*/
/**
** Margin for large tables so they not stick to the grid
*/
/*
**** TITLE INPUT WIDTH *****
*/
/*
**** SYNC SMALL ICON WIDTH *****
*/
/*
****INPUT ANIM
*/
/*
** REPORTS
*/
/*
**** DROPDOWN *****
*/
/*
**** CONTENT WRAPPERS DIMENSIONS *****
*/
/*
**** HINT DIMENSIONS *****
*/
/*
**** ROADMAP ****
*/
/*
**** Multipage basic styles ****
*/
/**
* Min height
*/
/**
**** TEMPUS AI *****
*/
/*
**** LESS MIXINS FOR AI-AWARE LAYOUTS *****
*/
/**
 * .sidebar-calc-width() - Mixin for calculating widths that account for AI sidebar
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-width();                    // width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(100vw, 50px);         // width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-width(90vw);                // width: calc(90vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(45vw, 100px);         // width: calc(45vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * IMPORTANT NOTES:
 * 1. SCROLLBAR ISSUE: 100vw includes scrollbar width, which can cause horizontal overflow.
 *    Consider using width: 100% on child elements when possible, especially inside flex/grid containers.
 *
 * 2. FLEX/GRID CHILDREN: If using this on flex or grid children, ensure they have min-width: 0
 *    to prevent overflow issues.
 *
 * 3. HORIZONTAL PADDING: Avoid using this mixin on elements with horizontal padding or borders.
 *    Instead, use it on a wrapper element and add padding to an inner element.
 *
 * 4. WHEN NOT TO USE:
 *    - Elements inside a sized container (use width: 100% instead)
 *    - Modal/dialog content (usually constrained by max-width)
 *    - Elements that should scroll horizontally
 *
 * 5. WHEN TO USE:
 *    - Full-width sections that need to span the viewport minus the sidebar
 *    - Absolute/fixed positioned overlays
 *    - Elements that explicitly need to relate to viewport width
 *    - Modals/popups that need percentage-based viewport widths (90vw, 45vw, etc.)
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/**
 * .sidebar-calc-max-width() - Mixin for max-width that accounts for AI sidebar
 *
 * Safer alternative to .sidebar-calc-width() for constraining element size without causing overflow.
 * Use this when you want to limit width but allow the element to be smaller if needed.
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-max-width();                  // max-width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(100vw, 50px);       // max-width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-max-width(45vw);              // max-width: calc(45vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(40vw, 100px);       // max-width: calc(40vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/*------------------------------------*\
    _ICONS.LESS
\*------------------------------------*/
/**
 * icons.less icons mixins and sets
 **/
/****************LAYOUT POPUP****************************/
.headset-io:before {
  content: '\f590';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.project-grid-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.projects-kanban-io:before {
  content: '\f51c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.assignment-doc-io:before {
  content: '\f15c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-o-notch:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.milestone-io:before {
  content: '\f024';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sheets-io:before {
  content: '\f0ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-io:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-round-io:before {
  content: '\f056';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.double-line:before {
  content: '\f7a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.focus-io:before {
  content: '\f05b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sorting-none-io:before {
  content: '\f05e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.unlink-io:before {
  content: '\f127';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shift-io:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-tack:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.readonly-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.date-io:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.date-value-io:before {
  content: '\f783';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.up-io:before {
  content: '\e919';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-up-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thumb-down-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.stop-circle-io:before {
  content: '\e15c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.hand-stop-io:before {
  content: '\e928';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.auditlog-io:before {
  content: '\e02f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.skillmatrix-io:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.categories-io:before {
  content: '\f5fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmap-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmaps-io:before {
  content: '\f277';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.partial-io:before {
  content: '\e891';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-project-io:before {
  content: '\e925';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-resource-io:before {
  content: '\e922';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.file-excel-io:before {
  content: '\f1c3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-csv-io:before {
  content: '\f6dd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-pdf-io:before {
  content: '\f1c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.full-arrow-up-io:before {
  content: '\f062';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pause-io:before {
  content: '\f04c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-desc:before {
  content: '\f161';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.return-io:before {
  content: '\e116';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.customfield-layout-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ***********
*/
.resourcemgmt-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-team-io:before {
  content: '\f500';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moon-io:before {
  content: '\f186';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sun-io:before {
  content: '\f185';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheetmgmt-io:before {
  content: '\44';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mytimesheet-io:before {
  content: '\43';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpa-io:before {
  content: '\42';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpafg-io:before {
  content: '\41';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.adminsettings-io:before {
  content: '\e94f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.helplink-io:before {
  content: '\f059';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bell-io:before {
  content: '\f0f3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-request-io:before {
  content: '\e94b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resource-request-io:before {
  content: '\e94c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.budget-nav-io:before {
  content: '\e94d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.side-bar-io:before {
  content: '\e950';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ENDED***********
*/
/*
* SHAPE ICONS
 */
.square-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.manager-io:before {
  content: '\f508';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-io:before {
  content: '\e3a6';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-up-io:before {
  content: '\ea32';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-down-io:before {
  content: '\ea36';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-left-io:before {
  content: '\ea38';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-right-io:before {
  content: '\ea34';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  content: '\e953';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  font-size: 1.2em;
}
.pin-io-active:before {
  content: '\e946';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io-active:before {
  font-size: 1.2em;
}
.thumbtack-io:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approve-shield-io:before {
  content: '\e8e8';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thunder-io:before {
  content: '\e3e7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.star-circle-io:before {
  content: '\e8d0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.angle-down-io:before {
  content: '\f107';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-down-io:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
/*
* SHAPE ICONS ENDED
 */
.doc-export-io:before {
  content: '\f56e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-up-io:before {
  content: '\f151';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-down-io:before {
  content: '\f150';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-left-io:before {
  content: '\f036';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-center-io:before {
  content: '\f037';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-right-io:before {
  content: '\f038';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.decimal-left-io:before {
  content: '\e942';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.decimal-right-io:before {
  content: '\e943';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-open-io:before {
  content: '\e944';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-close-io:before {
  content: '\e945';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resources-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pencil-alt-io:before {
  content: '\f303';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.stream-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.colored_icon.project-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.resource-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.colored_icon.customfield-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.icon-report-color:before {
  color: #d36b3f;
}
.colored_icon.assignment-doc-io:before {
  color: #d36b3f;
}
.colored_icon.milestone-io:before {
  color: var(--sg-warning-color, #ffc107);
}
.colored_icon.budget-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.gopuram-io:before {
  content: '\f664';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.money-bill-alt-io:before {
  content: '\f3d1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-square-io:before {
  content: '\f14a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thermometer-half-io:before {
  content: '\f2c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.list-alt-io:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.angle-double-right-io:before {
  content: '\f101';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-cog-io:before {
  content: '\f4fe';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.cog-io:before {
  content: '\f013';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.users-cog-io:before {
  content: '\f509';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.exclamation-triangle-io:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-circle-io:before {
  content: '\f058';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.url-io:before {
  content: '\f0c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.matrix-io:before {
  content: '\f84c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-solid-io:before {
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.interval-io:before {
  content: '\f337';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.advanced-rate-io:before {
  content: '\f51e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.default-icon-color {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.goals-io:before {
  content: '\f091';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tachometer-io:before {
  content: '\f3fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.weight-io:before {
  content: '\f496';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.hands-helping-io:before {
  content: '\f4c4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.diagram-io:before {
  content: '\f542';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.captions-io:before {
  content: '\f20a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelskills:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelskills:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelresources:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelresources:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelprojects:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelprojects:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-msprojectserversql {
  vertical-align: middle;
  display: inline-block;
}
.sync-msprojectserversql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-exceladmintime:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladmintime:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-exceladvancedrates:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladvancedrates:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelsheet:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelsheet:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelassignments:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelassignments:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelattributes:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelattributes:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelfinancials:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelfinancials:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-ppmpro {
  margin-top: 0;
  vertical-align: top;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: contain;
  background-color: var(--sg-legacy-PpmPro, #6369d0);
}
@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(219, 8, 0, 0.5) inset;
  }
  100% {
    box-shadow: 0 0 10px rgba(219, 8, 0, 0.5) inset;
  }
}
@keyframes slideOutLeft {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: -100%;
  }
}
@keyframes inputHighlighter {
  from {
    background: var(--sg-secondary-color, #106df9);
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes slideOutRight {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tileRubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.attr-icons {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attr-icons.project-io {
  color: var(--sg-secondary-color, #106df9);
}
.attr-icons.resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.assignment-doc-io {
  color: #d36b3f;
}
.attr-icons.budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
.attr-icons.spm-io {
  color: #9437ab;
  zoom: 0.8;
}
.k-list-optionlabel.k-state-selected {
  background: var(--sg-popup-select-item-bg-color, #f4f4f4);
  color: var(--sg-text-color, #000000);
}
.k-popup.sg_dropdown {
  padding: 10px 0;
  background: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000);
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%)) !important;
  border: none !important;
  border-radius: 10px !important;
}
.k-popup.sg_dropdown .k-item .skill-item-select-option {
  display: flex;
  align-items: start;
  padding: 8px 16px 8px 0;
}
.k-popup.sg_dropdown .k-item .skill-item-select-option input[type="checkbox"] {
  margin-right: 10px;
  padding: 5px 2px 4px;
  border-radius: 3px;
}
.k-popup.sg_dropdown .k-item .skill-item-select-option input[type="checkbox"].check-item,
.k-popup.sg_dropdown .k-item .skill-item-select-option input[type="checkbox"].all-columns {
  cursor: pointer !important;
}
.k-popup.sg_dropdown .k-item .skill-item-select-option input[type="checkbox"].check-item:checked,
.k-popup.sg_dropdown .k-item .skill-item-select-option input[type="checkbox"].all-columns:checked,
.k-popup.sg_dropdown .k-item .skill-item-select-option input[type="checkbox"].check-item:checked:hover,
.k-popup.sg_dropdown .k-item .skill-item-select-option input[type="checkbox"].all-columns:checked:hover {
  border: solid 1px var(--sg-color-legacy-2a91ff, #2a91ff) !important;
  background-color: var(--sg-color-legacy-2a91ff, #2a91ff) !important;
}
.k-popup.sg_dropdown .k-item .skill-item-select-option .name_fl {
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}
.k-popup.sg_dropdown .k-item .skill-item-select-option .sm_list_namebox {
  display: flex;
}
.k-popup.sg_dropdown .k-item .name_fl {
  word-wrap: break-word;
  line-height: 16px;
}
.k-popup.sg_dropdown .k-item .desc_fl {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: var(--sg-color-legacy-979797, #979797);
}
.k-popup.sg_dropdown .k-item .sg_cf_type_acronym + .name_fl {
  padding-right: 20px;
}
.k-popup.sg_dropdown .k-item.k-state-focused {
  box-shadow: none;
}
.k-popup.sg_dropdown .k-list li input[type="checkbox"] {
  float: left;
}
.k-popup.sg_dropdown__filterable .k-list .k-item {
  padding: 5px 5px 5px 10px !important;
  border: 0;
}
.k-popup.sg_dropdown__filterable .k-list .k-item.k-state-selected.k-state-focused {
  background: var(--sg-popup-select-item-bg-color, #f4f4f4);
}
.k-popup.sg_dropdown__filterable .k-list .k-item.k-state-selected:not(.k-state-focused):not(:hover) {
  background-color: transparent;
}
.k-popup.sg_dropdown__filterable .k-list .k-item:hover {
  background-color: var(--sg-popup-select-item-bg-color, #f4f4f4);
}
.k-popup.wrap .k-list li label {
  word-wrap: break-word;
}
.k-popup .k-animation-container .k-popup {
  margin-left: 0;
  margin-top: -1px;
}
.k-popup .k-list {
  color: var(--sg-text-color, #000000);
}
.k-popup .k-list .k-item {
  color: inherit;
  line-height: 18px;
  padding: 5px !important;
  border: 0;
}
.k-popup .k-list .k-item:focus {
  border-color: transparent;
}
.k-popup .k-list .k-item.k-state-selected {
  background-color: var(--sg-list-item-selected-color, #eff6ff);
  color: inherit;
}
.k-popup .k-list .k-item.k-state-selected:hover {
  background-color: var(--sg-list-item-selected-hover-color, #d6e8ff);
}
.k-popup .k-list .k-item.k-state-selected .sg_cf_type_acronym {
  color: var(--sg-text-color, #000000);
}
.k-popup .k-list .k-item.k-state-focused.k-state-selected {
  box-shadow: none;
}
.k-popup .k-list .k-item.k-state-focused.k-state-selected .desc_fl {
  color: var(--sg-text-color, #000000);
}
.k-popup .shape-wrapper {
  display: inline-block;
  width: 15px;
}
div.k-grid-footer,
div.k-grid-header {
  background: transparent;
}
.k-grid {
  border-width: 0;
  border-color: var(--sg-table-border-color, #c7c7c7);
  color: var(--sg-color-legacy-2b2b2b, #2b2b2b);
}
.k-grid col.k-sorted,
.k-grid th.k-sorted {
  background: none;
}
.k-grid .k-grid-header {
  background-color: var(--sg-bg-color, #ffffff);
  position: relative;
  z-index: 2;
  box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.03);
}
.k-grid .k-grid-header .k-grid-header-wrap {
  border-width: 0;
  margin: 0;
}
.k-grid tr {
  background: var(--sg-legacy-row-bg, #ffffff);
}
.k-grid tr.k-alt {
  background: var(--sg-legacy-alt-row-bg, #f7f9fc);
}
.k-grid tr.k-state-selected {
  background-color: color-mix(in srgb, var(--sg-color-legacy-ffe04f, #ffe04f), transparent 80%);
}
.k-grid tr.k-state-selected:hover {
  background-color: var(--sg-color-legacy-fff0ab, #fff0ab);
}
.k-grid tr.k-state-selected > td {
  color: var(--sg-text-color, #000000);
  background-color: transparent;
}
.k-grid tr td,
.k-grid tr th {
  border-color: rgba(166, 166, 166, 0.15);
}
.k-grid tr td:first-child,
.k-grid tr th:first-child {
  padding-left: 50px;
  border-left: none;
}
.k-grid tr td:last-child,
.k-grid tr th:last-child {
  padding-right: 50px;
  border-right: none;
}
.k-grid tbody td {
  border-width: 0 0 1px 1px;
}
.k-grid tbody tr td,
.k-grid tbody tr th {
  padding: 4px 12px;
}
.k-grid .k-action-cell {
  text-overflow: clip;
}
.k-grid-norecords {
  padding-left: 50px;
}
.k-grid-content {
  background-color: transparent;
}
.k-grid-content tr:last-child td,
.k-grid-content-locked tr:last-child td {
  border-bottom-width: 1px;
}
.k-grid-cutsomsg.k-widget {
  background-color: transparent;
}
.k-grid-cutsomsg.no-scrollbar .k-scrollbar {
  display: none;
}
.k-grid-cutsomsg .k-pager-wrap {
  visibility: hidden;
}
.k-grid-cutsomsg .k-grid-content-locked,
.k-grid-cutsomsg .k-grid-header-locked {
  border-color: var(--sg-input-border-color, #c7c7c7);
}
.k-grid-cutsomsg .k-grid-header {
  position: relative;
}
.k-grid-cutsomsg .k-grid-header th.k-header {
  background: var(--sg-bg-color, #ffffff);
}
.k-grid-cutsomsg .k-grid-header th.k-header > .k-link {
  min-height: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  color: var(--sg-legacy-tableHeaderColor, #7fa0ac);
}
.k-grid-cutsomsg .k-grid-header th.k-header {
  color: var(--sg-text-color, #000000);
  font-weight: 600;
}
.k-grid-cutsomsg .k-grid-header th.k-header .k-link {
  color: inherit;
}
.k-grid-cutsomsg.k-grid-noresizable th.k-header:not(:first-child):before {
  width: 0;
}
/*------------------------------------*\
    KENDO.LESS
\*------------------------------------*/
/**
 * describe kendo components customization
 **/
.k-slider .k-draghandle {
  border-color: var(--sg-secondary-color, #106df9);
  background: var(--sg-secondary-color, #106df9);
}
.k-slider-tooltip {
  background: var(--sg-secondary-color, #106df9);
}
.k-slider-tooltip .k-callout {
  color: var(--sg-secondary-color, #106df9);
}
.k-widget:not(.sg-material-listview) {
  background: transparent;
}
.k-listview:not(.sg-material-listview) {
  border: 0;
  background-color: transparent;
}
.k-autocomplete,
.k-combobox,
.k-dateinput,
.k-datepicker,
.k-datetimepicker,
.k-dropdown,
.k-dropdowntree,
.k-maskedtextbox,
.k-multiselect,
.k-numerictextbox,
.k-timepicker,
.k-widget {
  font-size: 14px;
}
.k-multiselect.toggle-close {
  cursor: pointer;
}
.k-multiselect.toggle-close .k-multiselect-wrap {
  cursor: pointer;
}
.k-multiselect.toggle-close.k-state-border-down:before {
  transform: rotate(180deg);
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
.k-edit-form-container .k-edit-buttons {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  bottom: 0;
}
div.k-window.k-state-focused,
.k-header.k-state-focused,
div.k-window.k-state-border-down,
.k-header.k-state-border-down,
div.k-window,
.k-header,
div.k-window.k-state-focused .k-picker-wrap,
.k-header.k-state-focused .k-picker-wrap,
div.k-window.k-state-border-down .k-picker-wrap,
.k-header.k-state-border-down .k-picker-wrap,
div.k-window .k-picker-wrap,
.k-header .k-picker-wrap {
  box-shadow: none;
}
.k-state-default.k-autocomplete,
.k-state-default.k-numeric-wrap,
.k-state-default.k-picker-wrap {
  background: none;
}
.k-state-default > .k-select {
  border: 0;
  position: relative;
  background: transparent;
  background-image: none;
}
.k-state-default.k-dropdown-wrap {
  border-color: var(--sg-button-border-color, #cccccc);
}
.k-state-hover > .k-select {
  background: transparent !important;
  background-image: none !important;
}
.k-state-focused > .k-multiselect-wrap {
  box-shadow: none;
}
.k-multiselect-wrap,
.k-state-hover > .k-multiselect-wrap,
.k-state-hover.k-multiselect {
  background: transparent;
  border-color: transparent;
}
.k-input,
.k-textbox > input,
input.k-textbox,
input.k-textbox:hover,
textarea.k-textbox,
textarea.k-textbox:hover {
  background: transparent;
  border-color: transparent;
}
.k-overlay {
  background-color: rgba(0, 0, 0, 0.25);
}
.k-input[readonly] {
  background-color: transparent;
}
.k-icon.k-i-arrow-s,
.k-icon.k-i-arrow-60-down {
  background: none;
  font-family: inherit;
}
.k-icon.k-i-arrow-s:before,
.k-icon.k-i-arrow-60-down:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-icon.k-i-arrow-s:before,
.k-icon.k-i-arrow-60-down:before {
  font-size: 14px;
  line-height: 14px;
}
.k-icon.k-i-arrow-n,
.k-icon.k-i-arrow-60-up {
  font-family: inherit;
  background: none;
}
.k-icon.k-i-arrow-n:before,
.k-icon.k-i-arrow-60-up:before {
  content: '\f0d8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-icon.k-i-arrow-n:before,
.k-icon.k-i-arrow-60-up:before {
  font-size: 14px;
  line-height: 14px;
}
.k-header-selectall {
  text-align: left;
  padding-left: 5px;
}
.k-header-selectall label {
  display: block;
}
.k-header-selectall input[type='checkbox'] {
  vertical-align: top;
}
.k-header-selectall .k-sa-text {
  border-bottom: 1px solid var(--sg-color-legacy-f1f1f1, #f1f1f1);
  display: inline-block;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.k-treemap {
  border: 0;
}
.k-tooltip {
  box-shadow: none;
  opacity: 0.95;
  border: 0;
  font-family: "Figtree";
}
.k-tooltip.k-chart-tooltip {
  background-image: none;
}
.k-tooltip.k-chart-tooltip .background {
  border-radius: 4px;
  padding: 6px;
}
.k-tooltip-button > a {
  color: var(--sg-color-legacy-ffffff, #ffffff);
  text-decoration: none;
  vertical-align: top;
  margin-top: -2px;
}
.k-list {
  text-align: left;
}
.k-list > .k-state-focused,
.k-listview > .k-state-focused {
  box-shadow: none;
}
.k-list li input[type='checkbox'] {
  vertical-align: top;
}
.k-list li label {
  display: block;
}
.k-list .k-state-selected,
.k-list .k-state-hover,
.k-list .k-state-focused {
  border-color: transparent;
  color: var(--sg-text-color, #000000);
  background: var(--sg-legacy-hvAct, #f0f8f9);
  border-radius: 2px;
}
.k-state-selected,
.k-state-hover,
.k-state-focused {
  border-color: transparent;
}
.k-state-selected {
  color: var(--sg-text-color, #000000);
  background: var(--sg-legacy-hvAct, #f0f8f9);
  border-radius: 2px;
}
div.k-window {
  padding-top: 0 !important;
}
div.k-window.k-state-focused,
div.k-window {
  border-radius: 12px;
  border: 0;
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%));
}
div.k-window.k-state-focused .k-window-actions,
div.k-window .k-window-actions {
  display: none;
}
div.k-window .k-window-titlebar {
  display: none;
}
div.k-window div.k-window-content,
div.k-window .k-header:not(.k-dropdown) {
  border-radius: 12px;
  background-color: var(--sg-bg-color, #ffffff);
}
div.k-window.bpa_entitiesPopup_layt {
  z-index: 100106 !important;
}
.k-dropdown-wrap .k-input:before {
  display: none;
}
.k-dropdown-wrap.k-state-default {
  background: none;
  border: 0;
  box-shadow: none;
}
.k-dropdown-wrap.k-state-disabled {
  background: none;
  border: 0;
}
.k-dropdown-wrap.k-state-border-down {
  padding-bottom: 0;
}
.k-list-filter > .k-textbox {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 0;
}
.k-list-filter > .k-icon {
  left: 6px;
  right: auto;
  color: var(--sg-legacy-grayColor, #656565);
  font-size: 14px;
}
.k-window-title {
  text-align: left;
  padding-left: 5px;
  font-weight: 100;
  padding-top: 2px;
}
.k-header {
  background: transparent;
  border: 0;
}
.k-edit-content {
  text-align: left;
  padding: 0 10px;
}
.k-popup,
.k-menu .k-group {
  box-shadow: none;
  background-color: var(--sg-bg-color, #ffffff);
}
.k-popup.k-widget,
.k-menu .k-group.k-widget {
  background-color: var(--sg-bg-color, #ffffff);
  text-align: left;
}
.k-menu .k-group:before,
.k-menu .k-group:after {
  display: none;
}
.k-button,
.k-button.k-state-hover {
  background: none !important;
}
.k-button.k-state-active {
  color: var(--sg-legacy-blueDef, #0874e7) !important;
  border-color: var(--sg-table-border-color, #c7c7c7) !important;
}
.k-toolbar .k-button-group .k-button:first-child,
.k-button-group .k-button:first-child {
  border-radius: 6px 0 0 6px;
}
.k-toolbar .k-button-group .k-button:last-child,
.k-button-group .k-button:last-child {
  border-radius: 0 6px 6px 0;
}
.k-toolbar .k-button-group .k-button:not(:first-child),
.k-button-group .k-button:not(:first-child) {
  border-left-width: 0;
}
.k-toolbar .k-button-group .k-button:not(:last-child),
.k-button-group .k-button:not(:last-child) {
  border-right-width: 0;
}
.k-spreadsheet .k-spreadsheet-formula-bar::before {
  content: '';
}
.k-spreadsheet .k-selection-wrapper .k-spreadsheet-editor-button {
  background: var(--sg-bg-color, #ffffff) !important;
  border-radius: 2px;
  min-width: 20px;
}
.k-spreadsheet .k-selection-wrapper .k-spreadsheet-editor-button .k-i-calendar {
  font-size: 12px;
}
.k-spreadsheet-names-popup .k-button-delete {
  float: right;
  margin-right: 10px;
  color: var(--sg-legacy-blueDef, #0874e7);
}
.k-spreadsheet-names-popup .k-item.k-state-selected .k-button-delete {
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.k-spreadsheet-names-popup .k-icon {
  vertical-align: top;
}
.k-spreadsheet-toolbar .k-combobox {
  border-width: 1px;
  border-radius: 6px;
  box-sizing: border-box;
  height: 28px;
  line-height: 28;
}
.k-multiselect.k-header.k-state-hover {
  background: none;
}
.k-multiselect-wrap .tags-lst {
  overflow: hidden;
}
.k-multiselect-wrap .tgs-inner {
  display: inline-block;
  white-space: nowrap;
}
.k-multiselect-wrap .more-data {
  display: inline-block;
  background-color: var(--sg-secondary-color, #106df9);
  line-height: 20px;
  padding: 0 5px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 600;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  margin-left: 5px;
}
.k-multiselect-wrap .tagItem {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.k-multiselect-wrap li {
  background: none;
  border-radius: 18px;
  border: 0;
  padding-left: 0;
  min-height: 24px;
}
.k-multiselect-wrap li.k-button:hover {
  background: none;
}
.k-multiselect-wrap li .k-select {
  top: 1px;
}
.k-i-close {
  background: none;
  line-height: 16px;
  opacity: 0.7;
  font-size: 0;
}
.k-i-close:before {
  content: '\f00d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.k-i-close:before {
  font-size: 10px;
}
.k-i-close:hover {
  color: #dc3545;
}
.k-list > .k-item {
  display: block;
}
.k-popup:not(.k-tooltip) {
  background: var(--sg-bg-color, #ffffff) !important;
  color: var(--sg-text-color, #000000);
  box-shadow: var(--sg-shadow, 0 7px 30px 0 color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 85%), 0 0 0 1px color-mix(in srgb, var(--sg-color-legacy-000000, #000000), transparent 95%)) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 0;
}
.k-popup:not(.k-tooltip):not(.k-pivot-fieldmenu) {
  overflow: hidden;
}
.k-popup:not(.k-tooltip) > .k-group-header {
  background-color: var(--sg-input-border-color, #c7c7c7);
  color: var(--sg-legacy-grayColor, #656565);
}
.k-popup:not(.k-tooltip) > .k-group-header + div > .k-list > .k-item.k-first:before {
  border-top-color: var(--sg-input-border-color, #c7c7c7);
}
.k-popup:not(.k-tooltip) > .k-group-header + div > .k-list > .k-item > .k-group {
  background-color: var(--sg-input-border-color, #c7c7c7);
  color: var(--sg-legacy-grayColor, #656565);
}
.k-popup:not(.k-tooltip) .no-data {
  color: var(--sg-legacy-grayColor, #656565);
  padding: 10px;
}
.link-select.k-dropdown {
  width: auto !important;
}
.link-select.k-dropdown .k-input {
  color: var(--sg-legacy-blueDef, #0874e7);
  text-indent: 0;
}
.k-nodata {
  font-size: 14px;
  text-transform: none;
  font-weight: normal;
  color: var(--sg-legacy-grayColor, #656565);
}
.k-radio:checked + .k-radio-label:before {
  border-color: var(--sg-legacy-blueDef, #0874e7);
}
.k-radio:checked + .k-radio-label:after {
  background-color: var(--sg-legacy-blueDef, #0874e7);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.k-radio:checked + .k-radio-label:hover:before {
  box-shadow: 0 0 4px 0 var(--sg-color-legacy-70caff, #70caff);
  border-color: var(--sg-color-legacy-076dd8, #076dd8);
}
.k-radio:checked + .k-radio-label:active:before {
  box-shadow: 0 0 10px 0 var(--sg-color-legacy-70caff, #70caff);
  border-color: var(--sg-color-legacy-0768ce, #0768ce);
}
.k-radio + .k-radio-label:before {
  border: 3px solid var(--sg-color-legacy-f4f4f4, #f4f4f4);
  width: 10px;
  height: 10px;
}
.k-radio + .k-radio-label:active:before {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.02);
}
.k-radio:focus + .k-radio-label:before {
  box-shadow: 0 0 3px 0 var(--sg-color-legacy-70caff, #70caff);
}
.k-spreadsheet-filter-menu .k-details {
  border: 0;
}
.k-spreadsheet-condition-filter {
  margin-top: 10px;
}
.k-spreadsheet-window.k-action-window .k-action-buttons,
.k-spreadsheet-window.k-window-content .k-action-buttons,
.k-spreadsheet-filter-menu .k-action-buttons {
  border: 0;
  float: left;
  margin-left: 0;
  margin-bottom: 5px;
  margin-top: 5px;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button,
.k-spreadsheet-filter-menu .k-action-buttons .k-button {
  padding: 0 15px;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary {
  color: var(--sg-color-legacy-ffffff, #ffffff) !important;
  border-width: 0 !important;
  background: var(--sg-primary-button-color, #008a02) !important;
  height: 34px !important;
  line-height: 34px !important;
  font-weight: normal;
  box-sizing: border-box;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  /* stylelint-disable function-allowed-list */
  /* stylelint-enable function-allowed-list */
  background-color: var(--sg-primary-button-color, #008a02);
  height: 34px;
  letter-spacing: 0.1px;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
  padding: 0 12px;
  text-transform: none;
  border-radius: 12px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  cursor: pointer;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary:hover,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary:hover,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary:hover {
  background: color-mix(in srgb, var(--sg-primary-button-color, #008a02), #000000 5%) !important;
  box-shadow: 0;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.disabled,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.disabled,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.disabled,
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary[disabled],
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary[disabled],
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary[disabled],
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.disabled:hover {
  pointer-events: none;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.disabled,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.disabled,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.disabled,
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary[disabled],
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary[disabled],
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary[disabled],
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.disabled:hover,
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary[disabled]:hover,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary[disabled]:hover,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary[disabled]:hover,
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.disabled:hover:hover,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.disabled:hover:hover,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.disabled:hover:hover {
  background-color: var(--sg-bg-color-disabled, #e8eef6) !important;
  cursor: default;
  border-color: transparent !important;
  color: var(--sg-text-color, #000000);
  font-weight: 400;
  box-shadow: none;
  pointer-events: none;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.isSaving,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.isSaving,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.isSaving {
  background-color: var(--sg-color-legacy-cccccc, #cccccc);
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary:before,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary:before,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary:before {
  font-size: 12px;
  margin-right: 5px;
  font-weight: normal;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.busy,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.busy,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.busy {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.busy:before,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.busy:before,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.busy:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-flex;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.busy:before,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.busy:before,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.busy:before {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: -6px;
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-primary.busy:hover,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-primary.busy:hover,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-primary.busy:hover {
  background-color: var(--sg-primary-button-color, #008a02);
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button + .k-button,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button + .k-button,
.k-spreadsheet-filter-menu .k-action-buttons .k-button + .k-button {
  border: 0;
  height: 28px;
  line-height: 28px;
  padding: 0 15px;
  font-size: 14px;
  color: var(--sg-legacy-blueDef, #0874e7);
}
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button:focus,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button:focus,
.k-spreadsheet-filter-menu .k-action-buttons .k-button:focus,
.k-spreadsheet-window.k-action-window .k-action-buttons .k-button.k-state-focused,
.k-spreadsheet-window.k-window-content .k-action-buttons .k-button.k-state-focused,
.k-spreadsheet-filter-menu .k-action-buttons .k-button.k-state-focused {
  box-shadow: none;
}
.k-spreadsheet-filter-menu.k-popup {
  padding: 15px 0 10px 15px;
}
.k-spreadsheet-filter-menu.k-popup .k-action-buttons {
  margin-left: 25px;
}
.k-spreadsheet-filter-menu.k-popup .k-spreadsheet-value-treeview-wrapper {
  height: 120px;
}
.k-spreadsheet-filter-menu.k-popup .k-details-content .k-space-right {
  border: 0;
  padding-left: 0;
  margin-top: 0;
}
.k-spreadsheet-filter-menu.k-popup .k-details-content .k-space-right input:focus {
  outline: none;
}
.k-spreadsheet-window.k-action-window {
  padding-left: 30px;
}
.k-spreadsheet-window.k-action-window .k-edit-label {
  text-align: left;
}
.k-spreadsheet-window.k-action-window .k-widget.k-dropdown {
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
}
.k-spreadsheet-window.k-action-window .k-spreadsheet-message-content {
  padding: 10px 0;
}
.k-spreadsheet-window .k-widget.k-flatcolorpicker {
  width: 235px;
  border: 0;
}
.k-dropdown .k-dropdown-wrap:hover,
.k-dropdown .k-dropdown-wrap.k-state-hover {
  background: transparent;
}
.k-dropdown .k-dropdown-wrap.k-state-focused {
  box-shadow: none;
  background: transparent;
  border: 0;
}
input.k-textbox {
  border-radius: 0;
  border-bottom: 1px solid var(--sg-table-border-color, #c7c7c7);
}
input.k-textbox:focus {
  box-shadow: none;
  outline: none;
  border: 0;
  border-bottom: 1px solid var(--sg-legacy-blueDef, #0874e7);
}
.k-spreadsheet-popup .k-custom-color .k-icon {
  margin-right: 6px;
}
.k-spreadsheet-sample {
  margin-right: 5px;
}
.k-list .k-item.k-state-selected:not(.k-state-focused) {
  color: var(--sg-list-item-selected-text-color, #000000);
  background-color: var(--sg-list-item-selected-color, #eff6ff);
}
.k-list .k-item.k-state-selected:not(.k-state-focused) .sg_cf_type_acronym {
  color: var(--sg-text-color, #000000);
}
.k-header.k-drag-clue {
  background: var(--sg-bg-color, #ffffff);
  border: 1px solid rgba(226, 226, 226, 0.28);
  box-shadow: 0 4px 15px 0 rgba(187, 187, 187, 0.24);
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  border-radius: 25px;
  font-weight: 500;
}
.k-calendar .k-header {
  box-shadow: none;
}
.k-calendar .k-calendar-header .k-today {
  color: var(--sg-secondary-color, #106df9);
}
.k-calendar.k-calendar-range {
  color: inherit;
}
.k-calendar.k-calendar-range .k-content .k-calendar-monthview .k-today::after {
  content: '';
  height: 1px;
  display: block;
  max-width: 20px;
  margin: 0 auto;
  border-bottom: 2px solid var(--sg-secondary-color, #106df9);
}
.k-calendar.k-calendar-range .k-content {
  color: var(--sg-text-color, #000000);
}
.k-calendar.k-calendar-range .k-content th {
  letter-spacing: 0.5px;
  opacity: 1;
  font-weight: 600;
  font-size: 11px;
}
.k-calendar.k-calendar-range .k-content td {
  text-align: center;
}
.k-calendar.k-calendar-range .k-content td .k-link {
  margin: 0 auto;
}
.k-calendar.k-calendar-range .k-content .k-calendar-header .k-button {
  font-weight: 600;
}
.k-calendar.k-calendar-range .k-content .k-range-start.k-today::after {
  margin-left: 5px;
}
.k-calendar.k-calendar-range .k-content .k-range-start .k-link {
  margin-left: 0;
}
.k-calendar.k-calendar-range .k-content .k-range-end.k-today::after {
  margin-right: 5px;
}
.k-calendar.k-calendar-range .k-content .k-range-end .k-link {
  margin-right: 0;
}
.k-calendar.k-calendar-range .k-content .k-range-start .k-link,
.k-calendar.k-calendar-range .k-content .k-range-end .k-link {
  background-color: var(--sg-secondary-color, #106df9);
  color: var(--sg-color-legacy-ffffff, #ffffff);
}
.k-calendar.k-calendar-range .k-content .k-range-mid {
  color: var(--sg-text-color, #000000);
}
.k-calendar.k-calendar-range .k-content .k-today {
  color: var(--sg-secondary-color, #106df9);
}
.k-calendar.k-calendar-range .k-content .k-state-disabled:not(.k-today) {
  opacity: 0.45;
}
.k-calendar-nav {
  display: flex;
  line-height: 24px;
  align-items: center;
}
.k-calendar-nav .k-today {
  order: -1;
  border: 1px solid var(--sg-table-border-color, #c7c7c7);
  padding: 0 5px;
  border-radius: 8px;
  margin-right: 5px;
  font-size: 11px;
}
.sg-dropdown {
  font-size: 14px;
}
.sg-dropdown .k-icon {
  display: flex;
  align-items: center;
}
.sg-dropdown .k-dropdown {
  width: auto;
  color: inherit;
}
.sg-dropdown .k-dropdown .k-dropdown-wrap {
  color: inherit;
  border: 1px solid var(--sg-button-border-color, #cccccc);
  border-radius: 10px;
  height: 30px;
  display: flex;
  align-items: center;
}
.sg-dropdown .k-dropdown .k-dropdown-wrap.k-state-focused {
  background-color: var(--sg-bg-color, #ffffff);
}
.sg-dropdown .k-dropdown .k-dropdown-wrap.k-state-focused .k-input {
  color: var(--sg-legacy-link-cl, #0735cc);
}
.k-list-container .k-nodata {
  color: var(--sg-text-color, #000000);
}

/*
**** IN THIS FILE BASE PARAMETRES STORED *****
*/
/*
**** COMMON ELEMENTS HEIGHT *****
*/
/*
**** COMMON RADIUS *****
*/
/*
**** MARGIN LEFT/RIGHT *****
*/
/**
** Margin for large tables so they not stick to the grid
*/
/*
**** TITLE INPUT WIDTH *****
*/
/*
**** SYNC SMALL ICON WIDTH *****
*/
/*
****INPUT ANIM
*/
/*
** REPORTS
*/
/*
**** DROPDOWN *****
*/
/*
**** CONTENT WRAPPERS DIMENSIONS *****
*/
/*
**** HINT DIMENSIONS *****
*/
/*
**** ROADMAP ****
*/
/*
**** Multipage basic styles ****
*/
/**
* Min height
*/
/**
**** TEMPUS AI *****
*/
/*
**** LESS MIXINS FOR AI-AWARE LAYOUTS *****
*/
/**
 * .sidebar-calc-width() - Mixin for calculating widths that account for AI sidebar
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-width();                    // width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(100vw, 50px);         // width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-width(90vw);                // width: calc(90vw - var(--ai-sidebar-width))
 *     .sidebar-calc-width(45vw, 100px);         // width: calc(45vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * IMPORTANT NOTES:
 * 1. SCROLLBAR ISSUE: 100vw includes scrollbar width, which can cause horizontal overflow.
 *    Consider using width: 100% on child elements when possible, especially inside flex/grid containers.
 *
 * 2. FLEX/GRID CHILDREN: If using this on flex or grid children, ensure they have min-width: 0
 *    to prevent overflow issues.
 *
 * 3. HORIZONTAL PADDING: Avoid using this mixin on elements with horizontal padding or borders.
 *    Instead, use it on a wrapper element and add padding to an inner element.
 *
 * 4. WHEN NOT TO USE:
 *    - Elements inside a sized container (use width: 100% instead)
 *    - Modal/dialog content (usually constrained by max-width)
 *    - Elements that should scroll horizontally
 *
 * 5. WHEN TO USE:
 *    - Full-width sections that need to span the viewport minus the sidebar
 *    - Absolute/fixed positioned overlays
 *    - Elements that explicitly need to relate to viewport width
 *    - Modals/popups that need percentage-based viewport widths (90vw, 45vw, etc.)
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/**
 * .sidebar-calc-max-width() - Mixin for max-width that accounts for AI sidebar
 *
 * Safer alternative to .sidebar-calc-width() for constraining element size without causing overflow.
 * Use this when you want to limit width but allow the element to be smaller if needed.
 *
 * Usage:
 *   .my-element {
 *     .sidebar-calc-max-width();                  // max-width: calc(100vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(100vw, 50px);       // max-width: calc(100vw - var(--ai-sidebar-width) - 50px)
 *     .sidebar-calc-max-width(45vw);              // max-width: calc(45vw - var(--ai-sidebar-width))
 *     .sidebar-calc-max-width(40vw, 100px);       // max-width: calc(40vw - var(--ai-sidebar-width) - 100px)
 *   }
 *
 * @param @width - Base width to calculate from (default: 100vw). Can be any viewport width like 90vw, 45vw, etc.
 * @param @offset - Optional additional offset to subtract from the calculation (default: 0px)
 */
/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
/*------------------------------------*\
    _ICONS.LESS
\*------------------------------------*/
/**
 * icons.less icons mixins and sets
 **/
/****************LAYOUT POPUP****************************/
.headset-io:before {
  content: '\f590';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.project-grid-io:before {
  content: '\f03a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.projects-kanban-io:before {
  content: '\f51c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.assignment-doc-io:before {
  content: '\f15c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-o-notch:before {
  content: '\f1ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.milestone-io:before {
  content: '\f024';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sheets-io:before {
  content: '\f0ce';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-io:before {
  content: '\f068';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.minus-round-io:before {
  content: '\f056';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.double-line:before {
  content: '\f7a4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.focus-io:before {
  content: '\f05b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sorting-none-io:before {
  content: '\f05e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.unlink-io:before {
  content: '\f127';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.shift-io:before {
  content: '\f061';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-tack:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.readonly-io:before {
  content: '\f023';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.date-io:before {
  content: '\e93a';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.date-value-io:before {
  content: '\f783';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.up-io:before {
  content: '\e919';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.report-io:before {
  content: '\f201';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thumb-up-io:before {
  content: '\e8dc';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thumb-down-io:before {
  content: '\e8db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.stop-circle-io:before {
  content: '\e15c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.hand-stop-io:before {
  content: '\e928';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.logo-io:before {
  content: '\e91f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.auditlog-io:before {
  content: '\e02f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.skillmatrix-io:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.categories-io:before {
  content: '\f5fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmap-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.roadmaps-io:before {
  content: '\f277';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.partial-io:before {
  content: '\e891';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-project-io:before {
  content: '\e925';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.structure-resource-io:before {
  content: '\e922';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.file-excel-io:before {
  content: '\f1c3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-csv-io:before {
  content: '\f6dd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.file-pdf-io:before {
  content: '\f1c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.full-arrow-up-io:before {
  content: '\f062';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pause-io:before {
  content: '\f04c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-amount-desc:before {
  content: '\f161';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.return-io:before {
  content: '\e116';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.customfield-layout-io:before {
  content: '\e1db';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ***********
*/
.resourcemgmt-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-io:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-team-io:before {
  content: '\f500';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.moon-io:before {
  content: '\f186';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sun-io:before {
  content: '\f185';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.timesheetmgmt-io:before {
  content: '\44';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.mytimesheet-io:before {
  content: '\43';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpa-io:before {
  content: '\42';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.bpafg-io:before {
  content: '\41';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.adminsettings-io:before {
  content: '\e94f';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.helplink-io:before {
  content: '\f059';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.bell-io:before {
  content: '\f0f3';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.resource-request-io:before {
  content: '\e94b';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resource-request-io:before {
  content: '\e94c';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.budget-nav-io:before {
  content: '\e94d';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.side-bar-io:before {
  content: '\e950';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
/*
*********** ICONS SYNC ENDED***********
*/
/*
* SHAPE ICONS
 */
.square-io:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.manager-io:before {
  content: '\f508';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-io:before {
  content: '\e3a6';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-up-io:before {
  content: '\ea32';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-down-io:before {
  content: '\ea36';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-left-io:before {
  content: '\ea38';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.arrow-big-right-io:before {
  content: '\ea34';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  content: '\e953';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io:before {
  font-size: 1.2em;
}
.pin-io-active:before {
  content: '\e946';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.pin-io-active:before {
  font-size: 1.2em;
}
.thumbtack-io:before {
  content: '\f08d';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.approve-shield-io:before {
  content: '\e8e8';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.thunder-io:before {
  content: '\e3e7';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.star-circle-io:before {
  content: '\e8d0';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.angle-down-io:before {
  content: '\f107';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sort-down-io:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
/*
* SHAPE ICONS ENDED
 */
.doc-export-io:before {
  content: '\f56e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-up-io:before {
  content: '\f151';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.square-down-io:before {
  content: '\f150';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-left-io:before {
  content: '\f036';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-center-io:before {
  content: '\f037';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.align-right-io:before {
  content: '\f038';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.decimal-left-io:before {
  content: '\e942';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.decimal-right-io:before {
  content: '\e943';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-open-io:before {
  content: '\e944';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.expand-close-io:before {
  content: '\e945';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.all-resources-io:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.pencil-alt-io:before {
  content: '\f303';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.stream-io:before {
  content: '\f550';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.colored_icon.project-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.resource-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.colored_icon.customfield-io:before {
  color: var(--sg-secondary-color, #106df9);
}
.colored_icon.icon-report-color:before {
  color: #d36b3f;
}
.colored_icon.assignment-doc-io:before {
  color: #d36b3f;
}
.colored_icon.milestone-io:before {
  color: var(--sg-warning-color, #ffc107);
}
.colored_icon.budget-io:before {
  color: var(--sg-primary-button-color, #008a02);
}
.gopuram-io:before {
  content: '\f664';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.money-bill-alt-io:before {
  content: '\f3d1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-square-io:before {
  content: '\f14a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.thermometer-half-io:before {
  content: '\f2c9';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.list-alt-io:before {
  content: '\f022';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.angle-double-right-io:before {
  content: '\f101';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.user-cog-io:before {
  content: '\f4fe';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.cog-io:before {
  content: '\f013';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.users-cog-io:before {
  content: '\f509';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.exclamation-triangle-io:before {
  content: '\f071';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.check-circle-io:before {
  content: '\f058';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.url-io:before {
  content: '\f0c1';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.matrix-io:before {
  content: '\f84c';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.circle-solid-io:before {
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.interval-io:before {
  content: '\f337';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.advanced-rate-io:before {
  content: '\f51e';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.default-icon-color {
  color: var(--sg-legacy-buttonIconColor, #484848);
}
.goals-io:before {
  content: '\f091';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.tachometer-io:before {
  content: '\f3fd';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.weight-io:before {
  content: '\f496';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.hands-helping-io:before {
  content: '\f4c4';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.diagram-io:before {
  content: '\f542';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.captions-io:before {
  content: '\f20a';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  content: '\f0c0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelteamresourcemembers:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelskills:before {
  content: '\f568';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelskills:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelresources:before {
  content: '\f007';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelresources:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelprojects:before {
  content: '\f07b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelprojects:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-msprojectserversql {
  vertical-align: middle;
  display: inline-block;
}
.sync-msprojectserversql:before {
  content: '\f096';
  display: inline-block;
  font-family: FontSGtempus;
  font-size: 13px;
  font-weight: 400;
}
.sync-exceladmintime:before {
  content: '\e924';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladmintime:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-exceladvancedrates:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-exceladvancedrates:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelsheet:before {
  content: '\f0ce';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelsheet:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelassignments:before {
  content: '\f15b';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelassignments:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelattributes:before {
  content: '\e606';
  font-family: FontSGtempus;
  font-weight: 400;
  font-style: normal;
}
.sync-excelattributes:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-excelfinancials:before {
  content: '\f0d6';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sync-excelfinancials:before {
  color: var(--sg-color-legacy-06890e, #06890e);
}
.sync-ppmpro {
  margin-top: 0;
  vertical-align: top;
  background: url(../../content/assets/050fb7613cbb8ba84862.svg) no-repeat center;
  background-size: contain;
  background-color: var(--sg-legacy-PpmPro, #6369d0);
}
@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(219, 8, 0, 0.5) inset;
  }
  100% {
    box-shadow: 0 0 10px rgba(219, 8, 0, 0.5) inset;
  }
}
@keyframes slideOutLeft {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: -100%;
  }
}
@keyframes inputHighlighter {
  from {
    background: var(--sg-secondary-color, #106df9);
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes slideOutRight {
  0% {
    left: 0;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tileRubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.attr-icons {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attr-icons.project-io {
  color: var(--sg-secondary-color, #106df9);
}
.attr-icons.resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.assignment-doc-io {
  color: #d36b3f;
}
.attr-icons.budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
.attr-icons.milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
.attr-icons.spm-io {
  color: #9437ab;
  zoom: 0.8;
}
.sg_filtersection {
  min-height: 50px;
  border-radius: 0 0 3px 3px;
  margin: 2px 0 30px -10px;
  border-bottom: 5px solid var(--sg-color-legacy-d4d4d4, #d4d4d4);
  position: relative;
}
.sg_filter__list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 5px;
  background-color: var(--sg-legacy-blue-medium-dark, #def2f9);
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}
.sg_filter__list li.sg_filter__new-row:last-child {
  position: relative;
}
.sg_filter__list li.sg_filter__new-row:last-child:before {
  content: '\f0b0';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_filter__list li.sg_filter__new-row:last-child:before {
  color: var(--sg-text-color, #000000);
  position: absolute;
  left: -15px;
  top: -3px;
  font-size: 10px;
}
.sg-filter_drop-row {
  position: relative;
  padding-right: 80px;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.sg-filter_drop-row .skillmatrix-io,
.sg-filter_drop-row .resource-io,
.sg-filter_drop-row .project-io,
.sg-filter_drop-row .spm-io,
.sg-filter_drop-row .budget-io,
.sg-filter_drop-row .assignment-doc-io,
.sg-filter_drop-row .customfield-io {
  display: none;
}
[data-type="Resource"] .resource-io,
[data-type="Resource"] .project-io,
[data-type="Resource"] .skillmatrix-io,
[data-type="Resource"] .spm-io,
[data-type="Resource"] .budget-io,
[data-type="Resource"] .customfield-io,
[data-type="Resource"] .milestone-io,
[data-type="Resource"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="Resource"] .resource-io ~ .sg_cf_type_acronym,
[data-type="Resource"] .project-io ~ .sg_cf_type_acronym,
[data-type="Resource"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="Resource"] .spm-io ~ .sg_cf_type_acronym,
[data-type="Resource"] .budget-io ~ .sg_cf_type_acronym,
[data-type="Resource"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="Resource"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="Resource"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="Resource"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Resource"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Resource"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="Resource"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Resource"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Resource"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="Resource"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="Resource"] .spm-io {
  color: #9437ab;
}
[data-type="Resource"] .skillmatrix-io {
  display: none;
}
[data-type="Resource"] .project-io {
  display: none;
}
[data-type="Resource"] .customfield-io {
  display: none;
}
[data-type="Resource"] .spm-io {
  display: none;
}
[data-type="Resource"] .budget-io {
  display: none;
}
[data-type="Resource"] .assignment-doc-io {
  display: none;
}
[data-type="Resource"] .milestone-io {
  display: none;
}
[data-type="Resource"] .resource-io {
  display: inline-block;
}
[data-type="SkillMatrix"] .resource-io,
[data-type="SkillMatrix"] .project-io,
[data-type="SkillMatrix"] .skillmatrix-io,
[data-type="SkillMatrix"] .spm-io,
[data-type="SkillMatrix"] .budget-io,
[data-type="SkillMatrix"] .customfield-io,
[data-type="SkillMatrix"] .milestone-io,
[data-type="SkillMatrix"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="SkillMatrix"] .resource-io ~ .sg_cf_type_acronym,
[data-type="SkillMatrix"] .project-io ~ .sg_cf_type_acronym,
[data-type="SkillMatrix"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="SkillMatrix"] .spm-io ~ .sg_cf_type_acronym,
[data-type="SkillMatrix"] .budget-io ~ .sg_cf_type_acronym,
[data-type="SkillMatrix"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="SkillMatrix"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="SkillMatrix"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="SkillMatrix"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="SkillMatrix"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="SkillMatrix"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="SkillMatrix"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="SkillMatrix"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="SkillMatrix"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="SkillMatrix"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="SkillMatrix"] .spm-io {
  color: #9437ab;
}
[data-type="SkillMatrix"] .resource-io {
  display: none;
}
[data-type="SkillMatrix"] .project-io {
  display: none;
}
[data-type="SkillMatrix"] .customfield-io {
  display: none;
}
[data-type="SkillMatrix"] .spm-io {
  display: none;
}
[data-type="SkillMatrix"] .budget-io {
  display: none;
}
[data-type="SkillMatrix"] .assignment-doc-io {
  display: none;
}
[data-type="SkillMatrix"] .milestone-io {
  display: none;
}
[data-type="SkillMatrix"] .skillmatrix-io {
  display: inline-block;
}
[data-type="Project"] .resource-io,
[data-type="Project"] .project-io,
[data-type="Project"] .skillmatrix-io,
[data-type="Project"] .spm-io,
[data-type="Project"] .budget-io,
[data-type="Project"] .customfield-io,
[data-type="Project"] .milestone-io,
[data-type="Project"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="Project"] .resource-io ~ .sg_cf_type_acronym,
[data-type="Project"] .project-io ~ .sg_cf_type_acronym,
[data-type="Project"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="Project"] .spm-io ~ .sg_cf_type_acronym,
[data-type="Project"] .budget-io ~ .sg_cf_type_acronym,
[data-type="Project"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="Project"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="Project"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="Project"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Project"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Project"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="Project"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Project"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Project"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="Project"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="Project"] .spm-io {
  color: #9437ab;
}
[data-type="Project"] .resource-io {
  display: none;
}
[data-type="Project"] .skillmatrix-io {
  display: none;
}
[data-type="Project"] .customfield-io {
  display: none;
}
[data-type="Project"] .spm-io {
  display: none;
}
[data-type="Project"] .budget-io {
  display: none;
}
[data-type="Project"] .assignment-doc-io {
  display: none;
}
[data-type="Project"] .milestone-io {
  display: none;
}
[data-type="Project"] .project-io {
  display: inline-block;
}
[data-type="Portfolio"] .resource-io,
[data-type="Portfolio"] .project-io,
[data-type="Portfolio"] .skillmatrix-io,
[data-type="Portfolio"] .spm-io,
[data-type="Portfolio"] .budget-io,
[data-type="Portfolio"] .customfield-io,
[data-type="Portfolio"] .milestone-io,
[data-type="Portfolio"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="Portfolio"] .resource-io ~ .sg_cf_type_acronym,
[data-type="Portfolio"] .project-io ~ .sg_cf_type_acronym,
[data-type="Portfolio"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="Portfolio"] .spm-io ~ .sg_cf_type_acronym,
[data-type="Portfolio"] .budget-io ~ .sg_cf_type_acronym,
[data-type="Portfolio"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="Portfolio"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="Portfolio"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="Portfolio"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Portfolio"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Portfolio"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="Portfolio"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Portfolio"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Portfolio"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="Portfolio"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="Portfolio"] .spm-io {
  color: #9437ab;
}
[data-type="Portfolio"] .resource-io {
  display: none;
}
[data-type="Portfolio"] .skillmatrix-io {
  display: none;
}
[data-type="Portfolio"] .project-io {
  display: none;
}
[data-type="Portfolio"] .customfield-io {
  display: none;
}
[data-type="Portfolio"] .budget-io {
  display: none;
}
[data-type="Portfolio"] .assignment-doc-io {
  display: none;
}
[data-type="Portfolio"] .milestone-io {
  display: none;
}
[data-type="Portfolio"] .spm-io {
  display: inline-block;
}
[data-type="ResourceRequest"] .resource-io,
[data-type="ResourceRequest"] .project-io,
[data-type="ResourceRequest"] .skillmatrix-io,
[data-type="ResourceRequest"] .spm-io,
[data-type="ResourceRequest"] .budget-io,
[data-type="ResourceRequest"] .customfield-io,
[data-type="ResourceRequest"] .milestone-io,
[data-type="ResourceRequest"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="ResourceRequest"] .resource-io ~ .sg_cf_type_acronym,
[data-type="ResourceRequest"] .project-io ~ .sg_cf_type_acronym,
[data-type="ResourceRequest"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="ResourceRequest"] .spm-io ~ .sg_cf_type_acronym,
[data-type="ResourceRequest"] .budget-io ~ .sg_cf_type_acronym,
[data-type="ResourceRequest"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="ResourceRequest"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="ResourceRequest"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="ResourceRequest"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="ResourceRequest"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="ResourceRequest"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="ResourceRequest"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="ResourceRequest"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="ResourceRequest"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="ResourceRequest"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="ResourceRequest"] .spm-io {
  color: #9437ab;
}
[data-type="ResourceRequest"] .resource-io {
  display: none;
}
[data-type="ResourceRequest"] .skillmatrix-io {
  display: none;
}
[data-type="ResourceRequest"] .project-io {
  display: none;
}
[data-type="ResourceRequest"] .spm-io {
  display: none;
}
[data-type="ResourceRequest"] .budget-io {
  display: none;
}
[data-type="ResourceRequest"] .assignment-doc-io {
  display: none;
}
[data-type="ResourceRequest"] .milestone-io {
  display: none;
}
[data-type="ResourceRequest"] .customfield-io {
  display: inline-block;
}
[data-type="FinancialCategory"] .resource-io,
[data-type="FinancialCategory"] .project-io,
[data-type="FinancialCategory"] .skillmatrix-io,
[data-type="FinancialCategory"] .spm-io,
[data-type="FinancialCategory"] .budget-io,
[data-type="FinancialCategory"] .customfield-io,
[data-type="FinancialCategory"] .milestone-io,
[data-type="FinancialCategory"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="FinancialCategory"] .resource-io ~ .sg_cf_type_acronym,
[data-type="FinancialCategory"] .project-io ~ .sg_cf_type_acronym,
[data-type="FinancialCategory"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="FinancialCategory"] .spm-io ~ .sg_cf_type_acronym,
[data-type="FinancialCategory"] .budget-io ~ .sg_cf_type_acronym,
[data-type="FinancialCategory"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="FinancialCategory"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="FinancialCategory"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="FinancialCategory"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="FinancialCategory"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="FinancialCategory"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="FinancialCategory"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="FinancialCategory"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="FinancialCategory"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="FinancialCategory"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="FinancialCategory"] .spm-io {
  color: #9437ab;
}
[data-type="FinancialCategory"] .resource-io {
  display: none;
}
[data-type="FinancialCategory"] .skillmatrix-io {
  display: none;
}
[data-type="FinancialCategory"] .project-io {
  display: none;
}
[data-type="FinancialCategory"] .customfield-io {
  display: none;
}
[data-type="FinancialCategory"] .spm-io {
  display: none;
}
[data-type="FinancialCategory"] .assignment-doc-io {
  display: none;
}
[data-type="FinancialCategory"] .milestone-io {
  display: none;
}
[data-type="FinancialCategory"] .budget-io {
  display: inline-block;
}
[data-type="Fixed"] .resource-io,
[data-type="Fixed"] .project-io,
[data-type="Fixed"] .skillmatrix-io,
[data-type="Fixed"] .spm-io,
[data-type="Fixed"] .budget-io,
[data-type="Fixed"] .customfield-io,
[data-type="Fixed"] .milestone-io,
[data-type="Fixed"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="Fixed"] .resource-io ~ .sg_cf_type_acronym,
[data-type="Fixed"] .project-io ~ .sg_cf_type_acronym,
[data-type="Fixed"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="Fixed"] .spm-io ~ .sg_cf_type_acronym,
[data-type="Fixed"] .budget-io ~ .sg_cf_type_acronym,
[data-type="Fixed"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="Fixed"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="Fixed"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="Fixed"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Fixed"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Fixed"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="Fixed"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Fixed"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Fixed"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="Fixed"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="Fixed"] .spm-io {
  color: #9437ab;
}
[data-type="Fixed"] .resource-io {
  display: none;
}
[data-type="Fixed"] .skillmatrix-io {
  display: none;
}
[data-type="Fixed"] .project-io {
  display: none;
}
[data-type="Fixed"] .customfield-io {
  display: none;
}
[data-type="Fixed"] .spm-io {
  display: none;
}
[data-type="Fixed"] .budget-io {
  display: none;
}
[data-type="Fixed"] .assignment-doc-io {
  display: none;
}
[data-type="Fixed"] .milestone-io {
  display: none;
}
[data-type="Assignment"] .resource-io,
[data-type="Assignment"] .project-io,
[data-type="Assignment"] .skillmatrix-io,
[data-type="Assignment"] .spm-io,
[data-type="Assignment"] .budget-io,
[data-type="Assignment"] .customfield-io,
[data-type="Assignment"] .milestone-io,
[data-type="Assignment"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="Assignment"] .resource-io ~ .sg_cf_type_acronym,
[data-type="Assignment"] .project-io ~ .sg_cf_type_acronym,
[data-type="Assignment"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="Assignment"] .spm-io ~ .sg_cf_type_acronym,
[data-type="Assignment"] .budget-io ~ .sg_cf_type_acronym,
[data-type="Assignment"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="Assignment"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="Assignment"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="Assignment"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Assignment"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Assignment"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="Assignment"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Assignment"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Assignment"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="Assignment"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="Assignment"] .spm-io {
  color: #9437ab;
}
[data-type="Assignment"] .resource-io {
  display: none;
}
[data-type="Assignment"] .skillmatrix-io {
  display: none;
}
[data-type="Assignment"] .project-io {
  display: none;
}
[data-type="Assignment"] .customfield-io {
  display: none;
}
[data-type="Assignment"] .spm-io {
  display: none;
}
[data-type="Assignment"] .budget-io {
  display: none;
}
[data-type="Assignment"] .milestone-io {
  display: none;
}
[data-type="Assignment"] .assignment-doc-io {
  display: inline-block;
}
[data-type="Milestone"] .resource-io,
[data-type="Milestone"] .project-io,
[data-type="Milestone"] .skillmatrix-io,
[data-type="Milestone"] .spm-io,
[data-type="Milestone"] .budget-io,
[data-type="Milestone"] .customfield-io,
[data-type="Milestone"] .milestone-io,
[data-type="Milestone"] .assignment-doc-io {
  margin-right: 12px;
  float: left;
  margin-left: 8px;
  font-style: normal;
}
[data-type="Milestone"] .resource-io ~ .sg_cf_type_acronym,
[data-type="Milestone"] .project-io ~ .sg_cf_type_acronym,
[data-type="Milestone"] .skillmatrix-io ~ .sg_cf_type_acronym,
[data-type="Milestone"] .spm-io ~ .sg_cf_type_acronym,
[data-type="Milestone"] .budget-io ~ .sg_cf_type_acronym,
[data-type="Milestone"] .customfield-io ~ .sg_cf_type_acronym,
[data-type="Milestone"] .milestone-io ~ .sg_cf_type_acronym,
[data-type="Milestone"] .assignment-doc-io ~ .sg_cf_type_acronym {
  right: 12px;
}
[data-type="Milestone"] .resource-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Milestone"] .project-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Milestone"] .skillmatrix-io {
  color: #779ffa;
}
[data-type="Milestone"] .customfield-io {
  color: var(--sg-secondary-color, #106df9);
}
[data-type="Milestone"] .budget-io {
  color: var(--sg-primary-button-color, #008a02);
}
[data-type="Milestone"] .assignment-doc-io {
  color: #d36b3f;
}
[data-type="Milestone"] .milestone-io {
  color: var(--sg-warning-color, #ffc107);
}
[data-type="Milestone"] .spm-io {
  color: #9437ab;
}
[data-type="Milestone"] .resource-io {
  display: none;
}
[data-type="Milestone"] .skillmatrix-io {
  display: none;
}
[data-type="Milestone"] .project-io {
  display: none;
}
[data-type="Milestone"] .customfield-io {
  display: none;
}
[data-type="Milestone"] .spm-io {
  display: none;
}
[data-type="Milestone"] .budget-io {
  display: none;
}
[data-type="Milestone"] .assignment-doc-io {
  display: none;
}
[data-type="Milestone"] .milestone-io {
  display: inline-block;
}
.sg_filter__buttonsel {
  margin-top: 4px;
}
.sg_filter__buttonsel ul {
  overflow-x: hidden;
  max-height: 250px;
  padding-left: 2px;
  padding-right: 15px;
  height: auto !important;
  font-weight: normal;
}
.sg_filter__buttonsel ul .ui-multiselect-close {
  display: none;
}
.sg_filter__removebutton {
  background: transparent;
  border: none;
  padding: 0px;
}
.filter_removebutton {
  vertical-align: top;
  margin-top: 10px;
  margin-left: 5px;
}
.sg_filter__buttonsel {
  width: auto !important;
}
.sg_filter__buttonsel.ui-multiselect {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--sg-text-color, #000000);
  padding-right: 15px;
  position: relative;
  height: auto;
}
.sg_filter__buttonsel.ui-multiselect .ui-icon-triangle-1-s.ui-icon {
  position: absolute;
  margin-right: 0;
  float: none;
  right: 0;
  border-color: var(--sg-text-color, #000000) transparent transparent transparent;
}
.sg_filter-roundbutton {
  line-height: 28px;
  padding: 0 15px;
  background-color: var(--sg-color-legacy-3bb3ff, #3bb3ff);
  color: var(--sg-color-legacy-ffffff, #ffffff);
  border-radius: 2px;
  display: inline-block;
  cursor: pointer;
}
.add-new-filter {
  margin-left: 50px;
}
.sg_filter__row {
  line-height: 35px;
  border-bottom: 1px solid var(--sg-input-border-color, #c7c7c7);
  margin: 0 30px;
  display: flex;
  align-items: center;
  position: relative;
}
.sg_filter__row:last-child {
  border: none;
}
.sg_filter__row.disabled-filter {
  pointer-events: none;
  opacity: 0.5;
}
.sg_filter__row .recycle-icon {
  color: var(--sg-legacy-orangeColor, #e65100);
  cursor: pointer;
  position: absolute;
  left: -15px;
}
.sg_filter__row span.e-input-group:not(.e-float-icon-left):not(.e-float-input) {
  border-bottom-width: 0!important;
  margin: 0;
}
.sg_filter__row span.e-input-group:not(.e-float-icon-left):not(.e-float-input)::before,
.sg_filter__row span.e-input-group:not(.e-float-icon-left):not(.e-float-input)::after {
  background: none !important;
}
.sg_filter__row span.e-input-group:not(.e-float-icon-left):not(.e-float-input):hover,
.sg_filter__row span.e-input-group:not(.e-float-icon-left):not(.e-float-input).e-input-focus {
  border-bottom-width: 0;
}
.sg_filter__row .k-state-border-down .k-i-arrow-60-down:before {
  transform: rotate(180deg);
  display: inline-block;
}
.sg_filter__new-row .recycle-icon {
  display: none;
}
.layt_qkFltTitle {
  margin-left: 5px;
  color: var(--sg-text-color, #000000);
}
.sg_filter__togglecontainer {
  white-space: nowrap;
  margin-left: 5px;
  display: inline-block;
}
.sg_filter__moreset {
  display: inline-flex;
  vertical-align: middle;
  border-radius: 6px;
  margin-left: 10px;
  margin-bottom: 2px;
  background: var(--sg-input-bg-color, #ffffff);
  height: 30px;
  line-height: 30px;
}
.sg_filter__moreset input {
  vertical-align: top;
  background: transparent;
}
.sg_filter__moreset .sg_filter__multidropdown {
  height: 100%;
  vertical-align: top;
  padding-top: 2px;
}
.sg_filter__moreset .k-multiselect.k-widget,
.sg_filter__moreset .k-multiselect-wrap {
  height: 100%;
}
.sg_filter__moreset .k-multiselect-wrap .tags-lst {
  margin-top: 0;
  margin-left: 6px;
}
.sg_filter__moreset .k-multiselect-wrap .tags-lst span[title="Select"] {
  vertical-align: middle;
}
.sg_filter__moreset .k-multiselect {
  position: relative;
  background: transparent;
  border-radius: 0;
}
.sg_filter__moreset .k-multiselect:before {
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
}
.sg_filter__moreset .k-multiselect.k-widget {
  min-width: 160px;
}
.sg_filter__moreset .k-multiselect .k-multiselect-wrap {
  display: flex;
  align-items: center;
}
.sg_filter__moreset .k-multiselect .k-multiselect-wrap .tagItem {
  display: inline-block;
  vertical-align: top;
  max-width: 125px;
}
.sg_filter__moreset .k-multiselect:before {
  position: absolute;
  top: 5px;
  right: 6px;
  font-size: 14px;
  z-index: 1;
}
.sg_filter__moreset .k-multiselect ul li {
  line-height: 22px;
}
.sg_filter__moreset .k-multiselect ul li:first-child {
  margin-left: 0;
}
.sg_filter__moreset .k-multiselect ul li .k-select {
  display: none;
}
.sg_filter__moreset .k-dropdown .k-dropdown-wrap .k-icon {
  margin-top: -4px;
}
.sg_filter__moreset .k-widget {
  min-width: 180px;
  max-width: 180px;
}
.sg_filter__moreset .k-input,
.sg_filter__moreset .k-button {
  box-shadow: none !important;
}
.sg_filter__moreset input {
  border-radius: 0;
  border: 0;
  height: 22px;
}
.sg_filter__type {
  margin-left: auto;
}
.sg_filter__type label {
  vertical-align: middle;
}
.sg_filter__type.sg_groupbuttonsection .ui-customcssradio input[type="radio"] + span {
  border-color: var(--sg-secondary-color, #106df9);
  padding: 0 7px;
}
.sg_filter__togglecontainer .toggleseparator {
  display: inline-block;
}
.sg_filter__togglecontainer .toggleseparator:last-child {
  display: none;
}
.sg_filter__togglecontainer .togglebuttton {
  display: inline-block;
  color: var(--sg-text-color, #000000);
  cursor: pointer;
  background: transparent;
  border: none;
}
.sg_filter__togglecontainer .togglebuttton.selected {
  cursor: default;
  color: var(--sg-color-legacy-0f0f0f, #0f0f0f);
  font-weight: bold;
}
.toggleseparator {
  color: var(--sg-color-legacy-747369, #747369);
}
.selectedPredicate {
  font-weight: bold;
}
.filterSources {
  position: relative;
  padding-top: 1px;
}
.sg-filterCountButton {
  display: inline-block;
  border-radius: 10px;
  padding-left: 5px;
  background-color: #dc3545;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
  position: absolute;
  z-index: 100;
  line-height: 16px;
  font-size: 10px;
  color: var(--sg-color-legacy-ffffff, #ffffff);
  white-space: nowrap;
  top: -8px;
  left: 100%;
  margin-left: -18px;
}
.sg-filterCountButton .filter_removebutton {
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 14px;
  margin: 0 2px 0 0;
  display: inline-block;
  opacity: 0.9;
  cursor: pointer;
}
.sg-filterCountButton .filter_removebutton:after {
  content: 'x';
}
.sg-filterCountButton.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.sg_filters__button {
  position: relative;
}
.sg_filters__button:before {
  font-size: 12px;
  display: inline-block;
  margin-right: 3px;
}
.sg_filter__select {
  margin-right: 10px;
}
.sg_filter__select .k-dropdown-wrap {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sg_filter__select .k-dropdown-wrap,
.sg_filter__select .k-input {
  color: var(--sg-text-color, #000000);
}
.sg_filter__select-group .k-popup .k-list .k-item {
  line-height: 35px;
}
.sg_filter__field-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}
.sg_filter__field-dropdown .k-select .k-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sg_filter__field-dropdown .k-list-container {
  min-width: 315px !important;
}
.sg-filter-term-mult.k-popup.k-list-container {
  padding: 15px 0 15px 15px;
}
.sg-filter-term-mult.k-popup.k-list-container .sg_gridFilter .select-wrapper {
  left: 18px;
}
.sg-filter-term-mult.k-popup.k-list-container .sg_gridFilter input[type="text"] {
  padding-left: 11px;
}
.sg-filter-term-mult.k-popup.k-list-container .k-list > .k-state-focused,
.sg-filter-term-mult.k-popup.k-list-container .k-listview > .k-state-focused,
.sg-filter-term-mult.k-popup.k-list-container .k-state-focused {
  box-shadow: none;
}
.sg-filter-term-mult.k-popup.k-list-container .k-item.k-state-selected {
  background: none;
}
.sg-filter-dropdown-list .k-list-filter .k-textbox {
  padding-right: 35px!important;
}
.sg-filter-dropdown-list .sg-filter-clear {
  position: absolute;
  right: 0;
  top: 0;
  margin-right: 15px;
  transform: translateY(50%);
}

/*
****COLOR SCHEMES*****
*/
/*
****PLANNED/ACTUAL*****
*/
/*
****ENTITY GRID*****
*/
/*
****POPS*****
*/
/*
****SYNCHRONIZATION PAGE*****
*/
/*
****SUPER GRID*****
*/
/*
****SUPER GRID*****
*/
/*
****LICENSING*****
*/
/*
** REPORT
*/
/*
*RR
*/
/** Allow/Deny colors */
/** tabs */
/** LogIn button */
/** sso */
/** timesheet */
/** bubbles */
/** specialized icon colors */
/** Block */
/** hint colors */
/** SPA colors */
/** PM indicator colors */
/** RM indictator colors **/
/** Recommendations */
/** Assignment Skill chart */
/** Assignments */
/** Badges */
/** Heatmaps */
/** Buttons */
/** Entity grid */
/** Combo Box */
/** Schedule notes color*/
.sg_scrollbar-container {
  background-color: var(--sg-color-legacy-f4f4f4, #f4f4f4);
  border-radius: 2px;
  border: 1px solid var(--sg-button-border-color, #cccccc);
  height: 10px;
}
.sg_scrollbar-container .ui-slider-handle {
  background: none scroll 50% 50% var(--sg-color-legacy-f1f1f1, #f1f1f1);
  top: -3px;
  height: 12px;
  box-shadow: 0 1px 0 var(--sg-color-legacy-ffffff, #ffffff) inset, 0 2px 9px rgba(0, 0, 0, 0.35);
  border-radius: 3px;
}
.sg_scrollbar-container .ui-icon {
  width: 16px;
  height: 10px;
}

