@font-face {
	font-family: "A";
	font-style: normal;
	font-weight: 200;
	src: url('fonts/A200.woff') format("woff");
}

@font-face {
	font-family: "A";
	font-style: normal;
	font-weight: 300;
	src: url('fonts/A300.woff') format("woff");
}

@font-face {
	font-family: "A";
	font-style: normal;
	font-weight: 400;
	src: url('fonts/A400.woff') format("woff");
}

@font-face {
	font-family: "A";
	font-style: normal;
	font-weight: 500;
	src: url('fonts/A500.woff') format("woff");
}

@font-face {
	font-family: "A";
	font-style: normal;
	font-weight: 700;
	src: url('fonts/A700.woff') format("woff");
}

@font-face {
	font-family: "A";
	font-style: normal;
	font-weight: 900;
	src: url('fonts/A900.woff') format("woff");
}

@font-face {
	font-family: "U";
	font-style: normal;
	font-weight: 300;
	src: url('fonts/U300.woff') format("woff");
}

@font-face {
	font-family: "U";
	font-style: normal;
	font-weight: 400;
	src: url('fonts/U400.woff') format("woff");
}

@font-face {
	font-family: "U";
	font-style: normal;
	font-weight: 500;
	src: url('fonts/U500.woff') format("woff");
}

@font-face {
	font-family: "U";
	font-style: normal;
	font-weight: 700;
	src: url('fonts/U700.woff') format("woff");
}

/**
 * Checks if a list contains a certain value.
 * 
 * @param {list} $list - the list to check
 * @param {value} $var - the value to search for
 * @param {bool} $recursive (false) - should any contained lists be checked for the value
 * 
 * @return {bool} true if the value is found from the list, false otherwise
 * 
 * @group lists
 */

/**
 * Cross-browser opacity.
 *
 * @param {number} $value - opacity value from 0 to 1
 * @param {bool} $important (false) - should the property value be declared with !important
 *
 * @group util
 */

@-webkit-keyframes valo-animate-in-fade {
		0% {
		opacity: 0;
	}
	}

@-moz-keyframes valo-animate-in-fade {
		0% {
		opacity: 0;
	}
	}

@keyframes valo-animate-in-fade {
		0% {
		opacity: 0;
	}
	}

@-webkit-keyframes valo-animate-out-fade {
		100% {
		opacity: 0;
	}
	}

@-moz-keyframes valo-animate-out-fade {
		100% {
		opacity: 0;
	}
	}

@keyframes valo-animate-out-fade {
		100% {
		opacity: 0;
	}
	}

@-webkit-keyframes valo-animate-in-slide-down {
		0% {
		-webkit-transform: translateY(-100%);
	}
	}

@-moz-keyframes valo-animate-in-slide-down {
		0% {
		-moz-transform: translateY(-100%);
	}
	}

@keyframes valo-animate-in-slide-down {
		0% {
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	}

@-webkit-keyframes valo-animate-in-slide-up {
		0% {
		-webkit-transform: translateY(100%);
	}
	}

@-moz-keyframes valo-animate-in-slide-up {
		0% {
		-moz-transform: translateY(100%);
	}
	}

@keyframes valo-animate-in-slide-up {
		0% {
		-webkit-transform: translateY(100%);
		-moz-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-o-transform: translateY(100%);
		transform: translateY(100%);
	}
	}

@-webkit-keyframes valo-animate-in-slide-left {
		0% {
		-webkit-transform: translateX(100%);
	}
	}

@-moz-keyframes valo-animate-in-slide-left {
		0% {
		-moz-transform: translateX(100%);
	}
	}

@keyframes valo-animate-in-slide-left {
		0% {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
	}

@-webkit-keyframes valo-animate-in-slide-right {
		0% {
		-webkit-transform: translateX(-100%);
	}
	}

@-moz-keyframes valo-animate-in-slide-right {
		0% {
		-moz-transform: translateX(-100%);
	}
	}

@keyframes valo-animate-in-slide-right {
		0% {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-down {
		100% {
		-webkit-transform: translateY(100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-down {
		100% {
		-moz-transform: translateY(100%);
	}
	}

@keyframes valo-animate-out-slide-down {
		100% {
		-webkit-transform: translateY(100%);
		-moz-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-o-transform: translateY(100%);
		transform: translateY(100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-up {
		100% {
		-webkit-transform: translateY(-100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-up {
		100% {
		-moz-transform: translateY(-100%);
	}
	}

@keyframes valo-animate-out-slide-up {
		100% {
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-left {
		100% {
		-webkit-transform: translateX(-100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-left {
		100% {
		-moz-transform: translateX(-100%);
	}
	}

@keyframes valo-animate-out-slide-left {
		100% {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@-webkit-keyframes valo-animate-out-slide-right {
		100% {
		-webkit-transform: translateX(100%);
	}
	}

@-moz-keyframes valo-animate-out-slide-right {
		100% {
		-moz-transform: translateX(100%);
	}
	}

@keyframes valo-animate-out-slide-right {
		100% {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
	}

@-webkit-keyframes valo-overlay-animate-in {
		0% {
		-webkit-transform: translatey(-4px);
		opacity: 0;
	}
	}

@-moz-keyframes valo-overlay-animate-in {
		0% {
		-moz-transform: translatey(-4px);
		opacity: 0;
	}
	}

@keyframes valo-overlay-animate-in {
		0% {
		-webkit-transform: translatey(-4px);
		-moz-transform: translatey(-4px);
		-ms-transform: translatey(-4px);
		-o-transform: translatey(-4px);
		transform: translatey(-4px);
		opacity: 0;
	}
	}

@-webkit-keyframes valo-animate-out-slide-down-fade {
		100% {
		opacity: 0;
		-webkit-transform: translatey(30%);
	}
	}

@-moz-keyframes valo-animate-out-slide-down-fade {
		100% {
		opacity: 0;
		-moz-transform: translatey(30%);
	}
	}

@keyframes valo-animate-out-slide-down-fade {
		100% {
		opacity: 0;
		-webkit-transform: translatey(30%);
		-moz-transform: translatey(30%);
		-ms-transform: translatey(30%);
		-o-transform: translatey(30%);
		transform: translatey(30%);
	}
	}

/**
 * Outputs cross-browser Valo-specific linear gradient background-image declarations.
 * 
 * @group style
 * 
 * @param {color} $color ($v-background-color) - The base color for the gradient color stops
 * @param {list} $gradient ($v-gradient) - Valo-specific gradient value. See the documentation for $v-gradient.
 * @param {color} $fallback (null) - A fallback color for browser which do not support linear gradients (IE8 and IE9 in particular). If null, the base $color is used instead.
 * @param {string} $direction (to bottom) - the direction of the linear gradient. The color stops are by default so that a lighter shade is at the start and a darker shade is at the end.
 */

/**
 * Computes a CSS border property value for the given base color.
 *
 * @group style
 *
 * @param {list} $border ($v-border) - CSS border value which can contain any of the color keywords
 * @param {color} $color ($v-background-color) - the base color to which the color keywords are applied to
 * @param {color} $context (null) - context/surrounding color where the border is expected to appear. The color of the final border is the darker of the two parameters passed to this function.
 * @param {number} $strength (1) - adjustment for the border contrast
 *
 * @return {list} The input $border value with any color keyword replaced with the corresponding actual color
 */

/**
 * Ouput selectors and properties to vertically center elements inside their parent.
 * 
 * @param {string} $to-align (()) - The selector to match the elements which you wish to align vertically. The targeted elements should be inline or inline-block elements.
 * @param {string} $align (middle) - The vertical-align value, e.g. top, middle, bottom
 * @param {string} $pseudo-element (after) - Which pseudo element to use for the vertical align guide
 * 
 * @group util
 */

@font-face {
	font-family: ThemeIcons;
	font-weight: normal;
	font-style: normal;
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.eot);
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/themeicons-webfont/themeicons-webfont.svg#ThemeIcons) format("svg");
}

.ThemeIcons {
	font-family: ThemeIcons;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	text-align: center;
}

@font-face {
	font-family: "Vaadin-Icons";
	src: url(../valo/fonts/vaadin-icons/Vaadin-Icons.eot);
	src: url(../valo/fonts/vaadin-icons/Vaadin-Icons.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/vaadin-icons/Vaadin-Icons.woff) format("woff"), url(../valo/fonts/vaadin-icons/Vaadin-Icons.ttf) format("truetype"), url(../valo/fonts/vaadin-icons/Vaadin-Icons.svg#icomoon) format("svg");
}

.Vaadin-Icons {
	font-family: "Vaadin-Icons";
}

@font-face {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.eot);
	src: url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../valo/fonts/fontawesome-webfont/fontawesome-webfont.svg#FontAwesome) format("svg");
}

.FontAwesome {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	text-align: center;
}

@font-face {
	font-family: "Open Sans";
	src: url(../valo/fonts/open-sans/OpenSans-Light-webfont.eot);
	src: url(../valo/fonts/open-sans/OpenSans-Light-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/open-sans/OpenSans-Light-webfont.woff) format("woff"), url(../valo/fonts/open-sans/OpenSans-Light-webfont.ttf) format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Open Sans";
	src: url(../valo/fonts/open-sans/OpenSans-Regular-webfont.eot);
	src: url(../valo/fonts/open-sans/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/open-sans/OpenSans-Regular-webfont.woff) format("woff"), url(../valo/fonts/open-sans/OpenSans-Regular-webfont.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Open Sans";
	src: url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.eot);
	src: url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.woff) format("woff"), url(../valo/fonts/open-sans/OpenSans-Semibold-webfont.ttf) format("truetype");
	font-weight: 600;
	font-style: normal;
}

@-webkit-keyframes v-rotate-360 {
		to {
		-webkit-transform: rotate(360deg);
	}
	}

@-moz-keyframes v-rotate-360 {
		to {
		-moz-transform: rotate(360deg);
	}
	}

@-o-keyframes v-rotate-360 {
		to {
		-o-transform: rotate(360deg);
	}
	}

@keyframes v-rotate-360 {
		to {
		transform: rotate(360deg);
	}
	}

@-webkit-keyframes v-progress-start {
		0% {
		width: 0%;
	}
		100% {
		width: 50%;
	}
	}

@-moz-keyframes v-progress-start {
		0% {
		width: 0%;
	}
		100% {
		width: 50%;
	}
	}

@keyframes v-progress-start {
		0% {
		width: 0%;
	}
		100% {
		width: 50%;
	}
	}

@-webkit-keyframes v-progress-delay {
		0% {
		width: 50%;
	}
		100% {
		width: 90%;
	}
	}

@-moz-keyframes v-progress-delay {
		0% {
		width: 50%;
	}
		100% {
		width: 90%;
	}
	}

@keyframes v-progress-delay {
		0% {
		width: 50%;
	}
		100% {
		width: 90%;
	}
	}

@-webkit-keyframes v-progress-wait {
		0% {
		width: 90%;
		height: 4px;
	}
		3% {
		width: 91%;
		height: 7px;
	}
		100% {
		width: 96%;
		height: 7px;
	}
	}

@-moz-keyframes v-progress-wait {
		0% {
		width: 90%;
		height: 4px;
	}
		3% {
		width: 91%;
		height: 7px;
	}
		100% {
		width: 96%;
		height: 7px;
	}
	}

@keyframes v-progress-wait {
		0% {
		width: 90%;
		height: 4px;
	}
		3% {
		width: 91%;
		height: 7px;
	}
		100% {
		width: 96%;
		height: 7px;
	}
	}

@-webkit-keyframes v-progress-wait-pulse {
		0% {
		opacity: 1;
	}
		50% {
		opacity: 0.1;
	}
		100% {
		opacity: 1;
	}
	}

@-moz-keyframes v-progress-wait-pulse {
		0% {
		opacity: 1;
	}
		50% {
		opacity: 0.1;
	}
		100% {
		opacity: 1;
	}
	}

@keyframes v-progress-wait-pulse {
		0% {
		opacity: 1;
	}
		50% {
		opacity: 0.1;
	}
		100% {
		opacity: 1;
	}
	}

/**
 * Outputs the context menu selectors and styles, which is used by Table and Tree for instance.
 * 
 * @requires {mixin} valo-selection-item-style
 * @requires {mixin} valo-selection-item-selected-style
 */

/**
 * The background color for overlay elements.
 *
 * @type color
 * @group overlay
 */

/**
 * The backgound color for tooltips.
 *
 * @type color
 * @group tooltip
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-absolutelayout) - 
 *
 * @group absolutelayout
 */

/**
 * Outputs the selectors and properties for the Accordion component.
 *
 * @param {string} $primary-stylename (v-accordion) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 * @group accordion
 */

/**
 * Outputs the selectors and properties for the Button component.
 *
 * @param {string} $primary-stylename (v-button) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group button
 */

/**
 * A list of colors for custom event colors. Can be an empty list of you don't 
 * need any custom event colors.
 * 
 * @example javascript
 * // Java code
 * // 'event' is an instance of EditableCalendarEvent
 * event.setStyleName("color1"); // 1st color in the list
 * event.setStyleName("color2"); // 2nd color in the list
 * // etc.
 * 
 * @group calendar
 */

/**
 * Outputs the selectors and properties for the CheckBox component.
 *
 * @param {string} $primary-stylename (v-checkbox) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group checkbox
 */

/**
 * Outputs the global selectors and properties for the ColorPicker component - styles which are
 * considered mandatory for the component to work properly.
 *
 * @param {string} $primary-stylename (v-colorpicker) - the primary style name for the selectors
 *
 * @group colorpicker
 */

/**
 * Outputs the selectors and properties for the ComboBox component.
 *
 * @param {string} $primary-stylename (v-filterselect) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group combobox
 */

/**
 * The amount of spacing between different widgets in a component group.
 * If null, a computed value is used ($v-border size * -1, or 1px if $v-border size is 0)
 * 
 * @group csslayout
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-customcomponent) - 
 *
 * @group customcomponent
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-customlayout) - 
 *
 * @group customlayout
 */

/**
 * Outputs the selectors and properties for the DateField component.
 *
 * @param {string} $primary-stylename (v-datefield) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group datefield
 */

/**
 * Outputs the styles and selectors for the DragAndDropWrapper component.
 * 
 * @param {string} $primary-stylename (v-ddwrapper) - the primary style name for the selectors
 * 
 * @group drag-n-drop
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-form) - 
 *
 * @group form
 */

/**
 * Outputs the selectors and properties for the FormLayout component.
 *
 * @param {string} $primary-stylename (v-formlayout) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group formlayout
 */

/**
 *
 * @group table
 */

@-webkit-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-webkit-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

/**
 *
 *
 * @param {string} $primary-stylename (v-gridlayout) - 
 *
 * @group gridlayout
 */

/**
 * The font weight for headers.
 * 
 * @group label
 */

/**
 *
 * @group link
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-loginform) - 
 *
 * @group loginform
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-menubar) - 
 * @param {bool} $include-additional-styles - 
 *
 * @group menubar
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-nativebutton) - 
 *
 * @group nativebutton
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-select) - 
 *
 * @group nativeselect
 */

/**
 *
 * @group notification
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-select-optiongroup) - 
 * @param {bool} $include-additional-styles - 
 *
 * @group optiongroup
 */

/**
 *
 *
 *
 * @group orderedlayout
 */

/**
 *
 * @group panel
 */

@-webkit-keyframes v-popupview-animate-in {
		0% {
		-webkit-transform: scale(0);
	}
	}

@-moz-keyframes v-popupview-animate-in {
		0% {
		-moz-transform: scale(0);
	}
	}

@keyframes v-popupview-animate-in {
		0% {
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		-o-transform: scale(0);
		transform: scale(0);
	}
	}

/**
 *
 * @group progressbar
 */

/**
 *
 * @group richtextarea
 */

/**
 *
 * @group slider
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-splitpanel) - 
 * @param {bool} $include-additional-styles - 
 *
 * @group splitpanel
 */

/**
 *
 * @group table
 */

/**
 * Should the tabsheet content changes be animated.
 *
 * @group tabsheet
 */

/**
 * The background color for text fields.
 * @group textfield
 */

/**
 * Outputs the selectors and properties for the TextArea component.
 *
 * @param {string} $primary-stylename (v-textarea) - the primary style name for the selectors
 * @param {bool} $include-additional-styles - should the mixin output all the different style variations of the component
 *
 * @group textarea
 */

/**
 *
 * @group tree
 */

/**
 *
 * @group table
 */

@-webkit-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-webkit-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

/**
 *
 * @group table
 */

@-webkit-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in {
		0% {
		margin-top: -37px;
	}
	}

@-webkit-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@-moz-keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -38px;
	}
		100% {
		margin-bottom: -1px;
	}
	}

/**
 *
 *
 * @param {string} $primary-stylename (v-treetable) - 
 *
 * @group treetable
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-select-twincol) - 
 *
 * @group twin-column-select
 */

/**
 *
 *
 * @param {string} $primary-stylename (v-upload) -
 *
 * @group upload
 */

/**
 * @group window
 */

@-webkit-keyframes valo-modal-window-indication {
		0% {
		opacity: 0;
	}
		100% {
		opacity: 1;
	}
	}

@-moz-keyframes valo-modal-window-indication {
		0% {
		opacity: 0;
	}
		100% {
		opacity: 1;
	}
	}

@keyframes valo-modal-window-indication {
		0% {
		opacity: 0;
	}
		100% {
		opacity: 1;
	}
	}

@-webkit-keyframes valo-animate-out-scale-down-fade {
		100% {
		-webkit-transform: scale(0.8);
		opacity: 0;
	}
	}

@-moz-keyframes valo-animate-out-scale-down-fade {
		100% {
		-moz-transform: scale(0.8);
		opacity: 0;
	}
	}

@keyframes valo-animate-out-scale-down-fade {
		100% {
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 0;
	}
	}

/**
 * @group valo-menu
 */

.v-vaadin-version:after {
	content: "8.14.3";
}

.v-widget {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.v-generated-body {
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
}

.v-app {
	height: 100%;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-app input[type="text"], .v-app .v-slot > .v-caption, .v-app .v-gridlayout-slot > .v-caption, .v-app .v-has-caption > .v-caption, .v-app .v-formlayout-captioncell > .v-caption, .v-app .v-csslayout > .v-caption {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.v-app input::-ms-clear {
	display: none;
}

.v-ui {
	position: relative;
}

.v-ui.v-ui-embedded {
	margin-top: -1px;
	border-top: 1px solid transparent;
}

.v-ui:focus {
	outline: none;
}

.v-overlay-container {
	width: 0;
	height: 0;
}

.v-drag-element {
	z-index: 60000;
	position: absolute !important;
	cursor: default;
}

.v-clip {
	overflow: hidden;
}

.v-scrollable {
	overflow: auto;
}

.v-scrollable  > .v-widget {
	vertical-align: middle;
	overflow: hidden;
}

.v-ios.v-webkit .v-scrollable {
	-webkit-overflow-scrolling: touch;
}

.v-ios5.v-webkit .v-scrollable {
	-webkit-overflow-scrolling: none;
}

.v-webkit.v-ios .v-browserframe {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

.v-assistive-device-only, .v-assistive-device-only-label label {
	position: absolute;
	top: -2000px;
	left: -2000px;
	width: 10px;
	overflow: hidden;
}

.v-icon {
	cursor: inherit;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-icon, .v-errorindicator, .v-required-field-indicator {
	display: inline-block;
	line-height: inherit;
}

.v-caption {
	display: inline-block;
	white-space: nowrap;
	line-height: 1.55;
}

.v-captiontext {
	display: inline-block;
	line-height: inherit;
}

div.v-layout.v-horizontal.v-widget {
	white-space: nowrap;
}

.v-layout.v-vertical > .v-expand, .v-layout.v-horizontal > .v-expand {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.v-slot, .v-spacing {
	display: inline-block;
	white-space: nowrap;
	vertical-align: top;
}

.v-vertical > .v-slot:after {
	display: inline-block;
	clear: both;
	width: 0;
	height: 0;
	overflow: hidden;
}

.v-vertical > .v-slot, .v-vertical > .v-expand > .v-slot {
	display: block;
	clear: both;
}

.v-horizontal > .v-slot, .v-horizontal > .v-expand > .v-slot {
	height: 100%;
}

.v-horizontal > .v-expand > .v-slot {
	position: relative;
}

.v-vertical > .v-spacing, .v-vertical > .v-expand > .v-spacing {
	width: 0 !important;
	display: block;
	clear: both;
}

.v-horizontal > .v-spacing, .v-horizontal > .v-expand > .v-spacing {
	height: 0 !important;
}

.v-align-middle:before, .v-align-bottom:before, .v-expand > .v-align-middle:before, .v-expand > .v-align-bottom:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	width: 0;
}

.v-align-middle, .v-align-bottom {
	white-space: nowrap;
}

.v-align-middle > .v-widget, .v-align-bottom > .v-widget {
	display: inline-block;
}

.v-align-middle, .v-align-middle > .v-widget {
	vertical-align: middle;
}

.v-align-bottom, .v-align-bottom > .v-widget {
	vertical-align: bottom;
}

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

.v-align-center > .v-widget {
	margin-left: auto;
	margin-right: auto;
}

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

.v-align-right > .v-widget {
	margin-left: auto;
}

.v-has-caption, .v-has-caption > .v-caption {
	display: inline-block;
}

.v-caption-on-left, .v-caption-on-right {
	white-space: nowrap;
}

.v-caption-on-top > .v-caption, .v-caption-on-bottom > .v-caption {
	display: block;
}

.v-caption-on-left > .v-caption {
	padding-right: 0.5em;
}

.v-caption-on-left > .v-widget, .v-caption-on-right > .v-widget {
	display: inline-block;
}

.v-has-caption.v-has-width > .v-widget {
	width: 100% !important;
}

.v-has-caption.v-has-height > .v-widget {
	height: 100% !important;
}

.v-gridlayout {
	position: relative;
}

.v-gridlayout-slot {
	position: absolute;
	line-height: 1.55;
}

.v-gridlayout-spacing-on {
	overflow: hidden;
}

.v-gridlayout-spacing, .v-gridlayout-spacing-off {
	padding-left: 0;
	padding-top: 0;
}

.v-gridlayout-spacing-off {
	overflow: hidden;
}

.v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.v-calendar-week-wrapper {
	position: relative;
	overflow: hidden;
}

.v-calendar-current-time {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: red;
	z-index: 2;
}

.v-calendar-event-resizetop, .v-calendar-event-resizebottom {
	position: absolute;
	height: 5%;
	min-height: 3px;
	width: 100%;
	z-index: 1;
}

.v-calendar-event-resizetop {
	cursor: row-resize;
	top: 0;
}

.v-calendar-event-resizebottom {
	cursor: row-resize;
	bottom: 0;
}

.v-calendar-header-month td:first-child {
	padding-left: 20px;
}

.v-calendar-month-sizedheight .v-calendar-month-day {
	height: 100px;
}

.v-calendar-month-sizedwidth .v-calendar-month-day {
	width: 100px;
}

.v-calendar-header-month-Hsized .v-calendar-header-day {
	width: 101px;
}

.v-calendar-header-month-Hsized td:first-child {
	padding-left: 21px;
}

.v-calendar-header-day-Hsized {
	width: 200px;
}

.v-calendar-week-numbers-Vsized .v-calendar-week-number {
	height: 100px;
	line-height: 100px;
}

.v-calendar-week-wrapper-Vsized {
	height: 400px;
	overflow-x: hidden !important;
}

.v-calendar-times-Vsized .v-calendar-time {
	height: 38px;
}

.v-calendar-times-Hsized .v-calendar-time {
	width: 42px;
}

.v-calendar-day-times-Vsized .v-datecellslot, .v-calendar-day-times-Vsized .v-datecellslot-even {
	height: 18px;
}

.v-calendar-day-times-Hsized, .v-calendar-day-times-Hsized .v-datecellslot, .v-calendar-day-times-Hsized .v-datecellslot-even {
	width: 200px;
}

.v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.v-colorpicker-gradient-container {
	overflow: visible !important;
}

.v-colorpicker-gradient-clicklayer {
	opacity: 0;
	filter: alpha(opacity=0) ;
}

.rgb-gradient .v-colorpicker-gradient-background {
	background: url(../valo/components/img/colorpicker/gradient2.png);
}

.hsv-gradient .v-colorpicker-gradient-foreground {
	background: url(../valo/components/img/colorpicker/gradient.png);
}

.v-colorpicker-gradient-higherbox:before {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 7px;
	border: 1px solid #fff;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
	position: absolute;
	bottom: -6px;
	left: -6px;
}

.v-colorpicker-popup .v-slider.v-slider-red:before {
	background-color: red;
}

.v-colorpicker-popup .v-slider.v-slider-green:before {
	background-color: green;
}

.v-colorpicker-popup .v-slider.v-slider-blue:before {
	background-color: blue;
}

.v-colorpicker-popup .v-slider.hue-slider:before {
	background: url(../valo/components/img/colorpicker/slider_hue_bg.png);
}

.v-colorpicker-popup input.v-textfield-dark {
	color: #fff;
}

.v-colorpicker-popup input.v-textfield-light {
	color: #000;
}

.v-colorpicker-grid {
	height: 319px;
}

.v-colorpicker-popup .colorselect td {
	line-height: 15px;
}

.v-table-header table, .v-table-footer table, .v-table-table {
	border-spacing: 0;
	border-collapse: separate;
	margin: 0;
	padding: 0;
	border: 0;
	line-height: 1.55;
}

.v-table-resizer, .v-table-sort-indicator {
	float: right;
}

.v-table-caption-container-align-center {
	text-align: center;
}

.v-table-caption-container-align-right {
	text-align: right;
}

.v-table-header td, .v-table-footer td, .v-table-cell-content {
	padding: 0;
}

.v-table-sort-indicator {
	width: 0;
}

.v-tabsheet-hidetabs > .v-tabsheet-tabcontainer, .v-tabsheet-spacertd, .v-disabled .v-tabsheet-scroller, .v-tabsheet .v-disabled .v-tabsheet-caption-close {
	display: none;
}

.v-tabsheet {
	overflow: visible !important;
	position: relative;
}

.v-tabsheet-tabcontainer table, .v-tabsheet-tabcontainer tbody, .v-tabsheet-tabcontainer tr {
	display: inline-block;
	border-spacing: 0;
	border-collapse: collapse;
	vertical-align: top;
}

.v-tabsheet-tabcontainer td {
	display: inline-block;
	padding: 0;
}

.v-tabsheet-tabs {
	white-space: nowrap;
	box-sizing: border-box;
}

.v-tabsheet-content {
	position: relative;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-top {
	padding-top: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-right {
	padding-right: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-left {
	padding-left: 12px;
}

.v-splitpanel-vertical, .v-splitpanel-horizontal {
	overflow: hidden;
	white-space: nowrap;
}

.v-splitpanel-hsplitter {
	z-index: 100;
	cursor: e-resize;
	cursor: col-resize;
}

.v-splitpanel-vsplitter {
	z-index: 100;
	cursor: s-resize;
	cursor: row-resize;
}

.v-splitpanel-hsplitter:after, .v-splitpanel-vsplitter:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-splitpanel-hsplitter div, .v-splitpanel-vsplitter div {
	width: inherit;
	height: inherit;
	overflow: hidden;
	position: relative;
}

.v-splitpanel-hsplitter div:before, .v-splitpanel-vsplitter div:before {
	box-sizing: border-box;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-disabled [class$="splitter"] div {
	cursor: default;
}

.v-disabled [class$="splitter"] div:before {
	display: none;
}

.v-splitpanel-horizontal > div  > .v-splitpanel-second-container {
	position: static !important;
	display: inline-block;
	vertical-align: top;
}

.v-splitpanel-horizontal > div  > .v-splitpanel-first-container {
	display: inline-block;
	vertical-align: top;
}

@font-face {
	font-family: "icomoon";
	src: url(icons/fonts/icomoon.ttf?vx70bw) format("truetype"), url(icons/fonts/icomoon.woff?vx70bw) format("woff"), url(icons/fonts/icomoon.svg?vx70bw#icomoon) format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-hide:before {
	content: "\e901";
}

.icon-show:before {
	content: "\e902";
}

.icon-big-check:before {
	content: "\e900";
}

.icon-adminiszstracio:before {
	content: "\e000";
}

.icon-check:before {
	content: "\e001";
}

.icon-csoport:before {
	content: "\e002";
}

.icon-dashboard:before {
	content: "\e003";
}

.icon-edzesterv-eves:before {
	content: "\e004";
}

.icon-edzesterv-napi:before {
	content: "\e005";
}

.icon-edzo:before {
	content: "\e006";
}

.icon-felmeres:before {
	content: "\e007";
}

.icon-jelenlet-stat:before {
	content: "\e008";
}

.icon-jelenletiiv:before {
	content: "\e009";
}

.icon-merkozes:before {
	content: "\e00a";
}

.icon-naptar:before {
	content: "\e00b";
}

.icon-naptar-edzes:before {
	content: "\e00c";
}

.icon-tagdij:before {
	content: "\e00d";
}

.icon-sportolo:before {
	content: "\e00e";
}

.icon-naptar-edzomerkozes:before {
	content: "\e00f";
}

.icon-naptar-egyeni:before {
	content: "\e010";
}

.icon-notification:before {
	content: "\e011";
}

.icon-pass:before {
	content: "\e012";
}

.icon-csapatvalaszto:before {
	content: "\e013";
}

.icon-dashboard-ora:before {
	content: "\e014";
}

.icon-more:before {
	content: "\e015";
}

.icon-naptar-datum:before {
	content: "\e016";
}

.icon-szurok:before {
	content: "\e017";
}

.icon-print-1:before {
	content: "\e01d";
}

.icon-pdf:before {
	content: "\e018";
}

.icon-excel:before {
	content: "\e019";
}

.icon-close-global:before {
	content: "\e01a";
}

.icon-checkbox-keret:before {
	content: "\e01b";
}

.icon-kerdojel:before {
	content: "\e01e";
}

.icon-ujesemeny-kicsi:before {
	content: "\e020";
}

.icon-chevron-down:before {
	content: "\e021";
}

.icon-chevron-up:before {
	content: "\e02a";
}

.icon-chevron-left:before {
	content: "\e02b";
}

.icon-chevron-right:before {
	content: "\e02c";
}

.icon-csillag-off:before {
	content: "\e022";
}

.icon-csillag-on:before {
	content: "\e023";
}

.icon-error:before {
	content: "\e01c";
}

.icon-social:before {
	content: "\e024";
}

.icon-plusz:before {
	content: "\e025";
}

.icon-csatolmany:before {
	content: "\e026";
}

.icon-kikero:before {
	content: "\e027";
}

.icon-nemjatszik:before {
	content: "\e028";
}

.icon-busz:before {
	content: "\e029";
}

.v-app, .v-app-loading {
	font: 400 14px/1.55 "A", "Helvetica", Arial, "lucida grande", tahoma, verdana, arial, sans-serif;
	color: #333333;
	background-color: #eaecee;
	cursor: default;
}

.v-app-loading {
	width: 100%;
	height: 100%;
	background: #eaecee;
}

.v-app-loading:before {
	content: "";
	position: fixed;
	z-index: 100;
	top: 45%;
	left: 50%;
	width: 28px;
	height: 28px;
	padding: 10px;
	margin-top: -24px;
	margin-left: -24px;
	background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50%;
	border-radius: 6px;
}

.v-loading-indicator {
	position: fixed !important;
	z-index: 99999;
	left: 0;
	right: auto;
	top: 0;
	width: 50%;
	opacity: 1;
	height: 4px;
	background-color: #197de1;
	pointer-events: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	-webkit-animation: v-progress-start 1000ms 200ms both;
	-moz-animation: v-progress-start 1000ms 200ms both;
	animation: v-progress-start 1000ms 200ms both;
}

.v-loading-indicator[style*="none"] {
	display: block !important;
	width: 100% !important;
	opacity: 0;
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
	-webkit-transition: opacity 500ms 300ms, width 300ms;
	-moz-transition: opacity 500ms 300ms, width 300ms;
	transition: opacity 500ms 300ms, width 300ms;
}

.v-loading-indicator-delay {
	width: 90%;
	-webkit-animation: v-progress-delay 3.8s forwards;
	-moz-animation: v-progress-delay 3.8s forwards;
	animation: v-progress-delay 3.8s forwards;
}

.v-ff .v-loading-indicator-delay {
	width: 50%;
}

.v-loading-indicator-wait {
	width: 96%;
	-webkit-animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
	-moz-animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
	animation: v-progress-wait 5s forwards, v-progress-wait-pulse 1s 4s infinite backwards;
}

.v-ff .v-loading-indicator-wait {
	width: 90%;
}

.v-scrollable:focus {
	outline: none;
}

img.v-icon {
	vertical-align: middle;
}

.v-caption {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
}

.v-caption-on-left .v-caption, .v-caption-on-right .v-caption {
	padding-top: 0;
	padding-bottom: 0;
}

.v-icon + .v-captiontext, .v-icon + span {
	margin-left: 8px;
}

.v-icon + .v-captiontext:empty, .v-icon + span:empty {
	margin-left: 0;
}

.v-errorindicator {
	color: #d63030;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.v-errorindicator:before {
	content: "!";
}

.v-errorindicator-info {
	color: #00a7f5;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.v-errorindicator-info:before {
	content: "!";
}

.v-errorindicator-warning {
	color: #fc9c00;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.v-errorindicator-warning:before {
	content: "!";
}

.v-errorindicator-error {
	color: #ed473b;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.v-errorindicator-error:before {
	content: "!";
}

.v-errorindicator-critical {
	color: #fa007d;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.v-errorindicator-critical:before {
	content: "!";
}

.v-errorindicator-system {
	color: #bb00ff;
	font-weight: 600;
	width: 19px;
	text-align: center;
}

.v-errorindicator-system:before {
	content: "!";
}

.v-required-field-indicator {
	color: #ed473b;
	padding: 0 0.2em;
}

select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 5px;
	margin: 0;
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	color: #474747;
}

select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-disabled {
	cursor: default !important;
}

.v-drag-element {
	background: #eaecee;
	color: #3e4247;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-draggable {
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	-webkit-user-select: none !important;
	user-select: none !important;
}

.v-tooltip {
	background-color: rgba(50, 50, 50, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 5px 9px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 14px;
}

.v-tooltip div[style*="width"] {
	width: auto !important;
}

.v-tooltip .v-errormessage {
	background-color: white;
	background-color: #fff;
	color: #ed473b;
	margin: -5px -9px;
	padding: 5px 9px;
	max-height: 10em;
	overflow: auto;
	font-weight: 500;
}

.v-tooltip .v-errormessage h2:only-child {
	font: inherit;
	line-height: inherit;
}

.v-tooltip .v-errormessage-info {
	color: #00a7f5;
}

.v-tooltip .v-errormessage-warning {
	color: #fc9c00;
}

.v-tooltip .v-errormessage-error {
	color: #ed473b;
}

.v-tooltip .v-errormessage-critical {
	color: #fa007d;
}

.v-tooltip .v-errormessage-system {
	color: #bb00ff;
}

.v-tooltip .v-tooltip-text {
	max-height: 10em;
	overflow: auto;
	margin-top: 10px;
}

.v-tooltip .v-tooltip-text pre {
	margin: 0px;
}

.v-tooltip .v-errormessage[aria-hidden="true"] + .v-tooltip-text {
	margin-top: 0;
}

.v-tooltip h1, .v-tooltip h2, .v-tooltip h3, .v-tooltip h4 {
	color: inherit;
}

.v-tooltip pre.v-tooltip-pre {
	font: inherit;
	white-space: pre-wrap;
}

.v-contextmenu {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
}

.v-contextmenu[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.v-contextmenu[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.v-contextmenu table {
	border-spacing: 0;
}

.v-contextmenu .gwt-MenuItem {
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	display: block;
}

.v-contextmenu .gwt-MenuItem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.v-contextmenu .gwt-MenuItem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.v-contextmenu .gwt-MenuItem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-reconnect-dialog {
	color: white;
	top: 15px;
	right: 15px;
	max-width: 100%;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 13px 15px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	line-height: 20px;
	text-align: center;
}

.v-reconnect-dialog .text {
	display: inline-block;
	padding-left: 10px;
}

.v-reconnect-dialog .spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	vertical-align: middle;
}

.v-reconnect-dialog.active .spinner {
	display: inline-block;
}

.v-absolutelayout-wrapper {
	position: absolute;
}

.v-absolutelayout-margin, .v-absolutelayout-canvas {
	box-sizing: border-box;
}

.v-absolutelayout.v-has-height > div, .v-absolutelayout.v-has-height .v-absolutelayout-margin {
	height: 100%;
}

.v-absolutelayout.v-has-height > div, .v-absolutelayout.v-has-width .v-absolutelayout-margin {
	width: 100%;
}

.v-margin-top {
	padding-top: 15px;
}

.v-margin-right {
	padding-right: 15px;
}

.v-margin-bottom {
	padding-bottom: 15px;
}

.v-margin-left {
	padding-left: 15px;
}

.v-spacing {
	width: 15px;
	height: 15px;
}

.v-verticallayout-well, .v-horizontallayout-well {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset none;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset none;
	border-radius: 6px;
	border: 1px solid #c9c9c9;
}

.v-verticallayout-well  > div > [class*="-caption"], .v-horizontallayout-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-verticallayout-well  > .v-margin-top, .v-horizontallayout-well  > .v-margin-top {
	padding-top: 13px;
}

.v-verticallayout-well  > .v-margin-right, .v-horizontallayout-well  > .v-margin-right {
	padding-right: 13px;
}

.v-verticallayout-well  > .v-margin-bottom, .v-horizontallayout-well  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-verticallayout-well  > .v-margin-left, .v-horizontallayout-well  > .v-margin-left {
	padding-left: 13px;
}

.v-verticallayout-card, .v-horizontallayout-card {
	background: white;
	color: #474747;
	border-radius: 6px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-verticallayout-card  > .v-margin-top, .v-horizontallayout-card  > .v-margin-top {
	padding-top: 13px;
}

.v-verticallayout-card  > .v-margin-right, .v-horizontallayout-card  > .v-margin-right {
	padding-right: 13px;
}

.v-verticallayout-card  > .v-margin-bottom, .v-horizontallayout-card  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-verticallayout-card  > .v-margin-left, .v-horizontallayout-card  > .v-margin-left {
	padding-left: 13px;
}

.v-horizontallayout-wrapping {
	white-space: normal !important;
}

.v-horizontallayout-wrapping > .v-spacing + .v-slot, .v-horizontallayout-wrapping > .v-slot:first-child {
	margin-bottom: 15px;
}

.v-horizontallayout-wrapping > .v-slot:first-child:last-child {
	margin-bottom: 0;
}

.v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}

.v-button > div {
	vertical-align: middle;
}

.v-sa .v-button:before {
	height: 110%;
}

.v-ff .v-button:before {
	height: 107%;
}

.v-ie .v-button:before {
	margin-top: 4px;
}

.v-button:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.v-button:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.v-button.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-button.v-disabled:after {
	display: none;
}

.v-button:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-button:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-button-primary {
	height: 38px;
	padding: 0 18px;
	color: #ecf2f8;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #1362b1;
	border-top-color: #1362b1;
	border-bottom-color: #1362b1;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0 19px;
	font-weight: bold;
	min-width: 84px;
}

.v-button-primary:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button-primary:hover:after {
	background-color: rgba(90, 163, 237, 0.1);
}

.v-button-primary:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button-primary:active:after {
	background-color: rgba(2, 62, 122, 0.2);
}

.v-button-friendly {
	height: 38px;
	padding: 0 18px;
	color: #eaf4e9;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #227719;
	border-top-color: #227719;
	border-bottom-color: #227719;
	background-color: #2c9720;
	background-image: -webkit-linear-gradient(top, #2c9720 0%, #2c9720 100%);
	background-image: linear-gradient(to bottom,#2c9720 0%, #2c9720 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button-friendly:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button-friendly:hover:after {
	background-color: rgba(65, 211, 48, 0.1);
}

.v-button-friendly:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button-friendly:active:after {
	background-color: rgba(14, 86, 6, 0.2);
}

.v-button-danger {
	height: 38px;
	padding: 0 18px;
	color: #f7eeee;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #a92525;
	border-top-color: #a92525;
	border-bottom-color: #a92525;
	background-color: #d63030;
	background-image: -webkit-linear-gradient(top, #d63030 0%, #d63030 100%);
	background-image: linear-gradient(to bottom,#d63030 0%, #d63030 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button-danger:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button-danger:hover:after {
	background-color: rgba(227, 112, 112, 0.1);
}

.v-button-danger:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button-danger:active:after {
	background-color: rgba(124, 7, 7, 0.2);
}

.v-button-borderless {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
}

.v-button-borderless:hover:after {
	background: transparent;
}

.v-button-borderless:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.v-button-borderless:active:not(.v-disabled):after {
	background: transparent;
}

.v-button-borderless-colored {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: #197de1;
}

.v-button-borderless-colored:hover {
	color: #4396ea;
}

.v-button-borderless-colored:hover:after {
	background: transparent;
}

.v-button-borderless-colored:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.v-button-borderless-colored:active:not(.v-disabled):after {
	background: transparent;
}

.v-button-quiet {
	visibility: hidden;
}

.v-button-quiet:focus, .v-button-quiet:hover {
	visibility: visible;
}

.v-button-quiet [class*="wrap"] {
	visibility: visible;
}

.v-button-quiet [class*="caption"] {
	display: inline-block;
}

.v-button-link {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-button-link:hover:after {
	background: transparent;
}

.v-button-link:active:not(.v-disabled) {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
}

.v-button-link:active:not(.v-disabled):after {
	background: transparent;
}

.v-button-link:hover {
	color: #4396ea;
}

.v-button-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-button-tiny {
	height: 28px;
	padding: 0 14px;
	
	
	font-size: 12px;
	
	border-radius: 6px;
}

.v-button-tiny:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button-small {
	height: 31px;
	padding: 0 15px;
	
	
	font-size: 14px;
	
	border-radius: 6px;
}

.v-button-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button-large {
	height: 44px;
	padding: 0 20px;
	
	
	font-size: 20px;
	
	border-radius: 6px;
}

.v-button-large:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button-huge {
	height: 59px;
	padding: 0 27px;
	
	
	font-size: 26px;
	
	border-radius: 6px;
}

.v-button-huge:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button-icon-align-right [class*="wrap"] {
	display: inline-block;
}

.v-button-icon-align-right .v-icon {
	float: right;
	margin-left: 13px;
}

.v-button-icon-align-right .v-icon  + span:not(:empty) {
	margin-left: 0;
}

.v-button-icon-align-top {
	height: auto;
	padding-top: 5px;
	padding-bottom: 5px;
}

.v-button-icon-align-top [class*="wrap"] {
	display: inline-block;
}

.v-button-icon-align-top .v-icon {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.v-button-icon-align-top .v-icon  + span:not(:empty) {
	margin-top: 7px;
	margin-left: 0;
}

.v-button-icon-only {
	width: 38px;
	padding: 0;
}

.v-button-icon-only.v-button-tiny {
	width: 28px;
}

.v-button-icon-only.v-button-small {
	width: 31px;
}

.v-button-icon-only.v-button-large {
	width: 44px;
}

.v-button-icon-only.v-button-huge {
	width: 59px;
}

.v-button-icon-only .v-button-caption {
	display: none;
}

.v-checkbox {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.v-checkbox.v-has-width label {
	white-space: normal;
}

:root .v-checkbox {
	padding-left: 25px;
}

:root .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-checkbox > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-checkbox > input ~ label:before, :root .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 6px;
	font-size: 11px;
	text-align: center;
}

:root .v-checkbox > input ~ label:before {
	height: 19px;
	padding: 0 10px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 19px;
}

:root .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.v-checkbox > .v-icon, .v-checkbox > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-checkbox.v-disabled  > label, .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-checkbox.v-readonly  > label, .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-checkbox-small {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
	font-size: 14px;
}

.v-checkbox-small.v-has-width label {
	white-space: normal;
}

:root .v-checkbox-small {
	padding-left: 21px;
}

:root .v-checkbox-small label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-checkbox-small > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-checkbox-small > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-checkbox-small > input ~ label:before, :root .v-checkbox-small > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	font-size: 9px;
	text-align: center;
}

:root .v-checkbox-small > input ~ label:before {
	height: 15.5px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 5px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 16px;
}

:root .v-checkbox-small > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-checkbox-small > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-checkbox-small > input:checked ~ label:after {
	color: #197de1;
}

.v-checkbox-small > .v-icon, .v-checkbox-small > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-checkbox-small.v-disabled  > label, .v-checkbox-small.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-checkbox-small.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-checkbox-small.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-checkbox-small.v-readonly  > label, .v-checkbox-small.v-readonly  > .v-icon {
	cursor: default;
}

.v-checkbox-small.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-checkbox-small.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-checkbox-small.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-checkbox-large {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
	font-size: 20px;
}

.v-checkbox-large.v-has-width label {
	white-space: normal;
}

:root .v-checkbox-large {
	padding-left: 29px;
}

:root .v-checkbox-large label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-checkbox-large > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-checkbox-large > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-checkbox-large > input ~ label:before, :root .v-checkbox-large > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 6px;
	font-size: 13px;
	text-align: center;
}

:root .v-checkbox-large > input ~ label:before {
	height: 22px;
	padding: 0 11px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 22px;
}

:root .v-checkbox-large > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-checkbox-large > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-checkbox-large > input:checked ~ label:after {
	color: #197de1;
}

.v-checkbox-large > .v-icon, .v-checkbox-large > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.v-checkbox-large.v-disabled  > label, .v-checkbox-large.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-checkbox-large.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-checkbox-large.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-checkbox-large.v-readonly  > label, .v-checkbox-large.v-readonly  > .v-icon {
	cursor: default;
}

.v-checkbox-large.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-checkbox-large.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-checkbox-large.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect {
	position: relative;
	width: 185px;
	height: 38px;
	border-radius: 6px;
	white-space: nowrap;
}

.v-filterselect [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 6px;
	padding: 4px 9px;
	border: 1px solid white;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 39px;
	border-radius: inherit;
}

.v-filterselect [class*="input"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-filterselect [class*="input"][class*="prompt"] {
	color: #a3a3a3;
}

.v-filterselect .v-icon + [class*="input"] {
	padding-left: 38px;
}

.v-filterselect img.v-icon {
	max-height: 38px;
	margin-left: 9px;
}

.v-filterselect span.v-icon {
	color: #474747;
	width: 38px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 9px;
}

.v-filterselect[class*="prompt"] > [class*="input"] {
	color: #a3a3a3;
}

.v-filterselect [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 38px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	border-left: 1px solid white;
	color: #a3a3a3;
	border-radius: 0 5px 5px 0;
}

.v-filterselect [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 38px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.v-filterselect [class$="button"]:hover:before {
	color: #474747;
}

.v-filterselect [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	background-color: rgba(128, 128, 128, 0.2);
}

.v-filterselect.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect.v-disabled [class$="button"]:active:after {
	display: none;
}

.v-filterselect.v-readonly [class*="input"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-filterselect.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect.v-readonly [class$="button"]:active:after {
	display: none;
}

.v-filterselect.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-filterselect.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect .v-icon {
	position: absolute;
	pointer-events: none;
}

.v-filterselect .v-icon.FontAwesome {
	margin-left: 0px;
}

.v-filterselect-error .v-filterselect-input {
	border-color: #d63030 !important;
	background: #fefbfb;
	color: #652828;
}

.v-filterselect-error .v-filterselect-button {
	color: #d63030;
	border-color: #d63030;
}

.v-filterselect-error-info .v-filterselect-input {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.v-filterselect-error-info .v-filterselect-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.v-filterselect-error-warning .v-filterselect-input {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.v-filterselect-error-warning .v-filterselect-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.v-filterselect-error-error .v-filterselect-input {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-filterselect-error-error .v-filterselect-button {
	color: #ed473b;
	border-color: #ed473b;
}

.v-filterselect-error-critical .v-filterselect-input {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.v-filterselect-error-critical .v-filterselect-button {
	color: #fa007d;
	border-color: #fa007d;
}

.v-filterselect-error-system .v-filterselect-input {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.v-filterselect-error-system .v-filterselect-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.v-filterselect-suggestpopup {
	margin-top: 5px !important;
}

.v-filterselect-suggestpopup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

.v-filterselect-suggestpopup table, .v-filterselect-suggestpopup tbody, .v-filterselect-suggestpopup tr, .v-filterselect-suggestpopup td {
	display: block;
	width: 100%;
	overflow-y: hidden;
	float: left;
	clear: both;
}

.v-filterselect-suggestpopup .gwt-MenuItem {
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	height: 27px;
	box-sizing: border-box;
	text-overflow: ellipsis;
	overflow-x: hidden;
}

.v-filterselect-suggestpopup .gwt-MenuItem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.v-filterselect-suggestpopup .gwt-MenuItem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-filterselect-suggestpopup [class$="status"] {
	position: absolute;
	right: 6px;
	background: rgba(217, 217, 217, 0.9);
	color: #3d3d3d;
	border-radius: 0 0 6px 6px;
	height: 23px;
	bottom: -23px;
	font-size: 11px;
	line-height: 23px;
	padding: 0 6px;
	cursor: default;
	pointer-events: none;
	-webkit-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	-moz-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	animation: valo-animate-in-slide-down 200ms 80ms backwards;
}

.v-filterselect-suggestpopup [class$="status"]  > * {
	color: #3d3d3d;
	text-decoration: none;
}

.v-filterselect-suggestpopup div[class*="page"] {
	position: absolute;
	z-index: 3;
	right: 0;
	opacity: 0.2;
	filter: alpha(opacity=20) ;
	cursor: pointer;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	font-family: ThemeIcons;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	color: #474747;
}

.v-filterselect-suggestpopup div[class*="page"]:after {
	content: "";
	position: absolute;
	display: block;
	border-radius: 50%;
}

.v-filterselect-suggestpopup div[class*="page"]:hover {
	opacity: 1;
	filter: none ;
	background: rgba(255, 255, 255, 0.5);
}

.v-filterselect-suggestpopup div[class*="page"]:hover:after {
	top: -10px;
	bottom: -10px;
	left: -20px;
	right: -20px;
}

.v-filterselect-suggestpopup div[class*="page"] span {
	display: none;
}

.v-filterselect-suggestpopup:hover div[class*="page"] {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.v-filterselect-suggestpopup div[class*="prev"] {
	top: 0;
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
	border-radius: 0 6px 0 6px;
}

.v-filterselect-suggestpopup div[class*="prev"]:before {
	content: "\f0d8";
}

.v-filterselect-suggestpopup div[class*="next"] {
	bottom: 0;
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	border-radius: 6px 0 6px 0;
}

.v-filterselect-suggestpopup div[class*="next"]:before {
	content: "\f0d7";
}

.v-filterselect-suggestpopup div[class*="-off"] {
	display: none;
}

.v-filterselect-no-input {
	cursor: pointer;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-filterselect-no-input [class*="input"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	cursor: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	text-shadow: inherit;
	text-overflow: ellipsis;
	border-radius: inherit;
}

.v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-filterselect-no-input [class$="button"] {
	border-left: none !important;
}

.v-filterselect-no-input:hover [class$="button"]:before {
	color: inherit;
}

.v-filterselect-borderless .v-filterselect-input {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-filterselect-borderless .v-filterselect-input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-borderless .v-filterselect-input[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-borderless .v-filterselect-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-borderless.v-filterselect-prompt .v-filterselect-input {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-align-right input {
	text-align: right;
}

.v-filterselect-align-center input {
	text-align: center;
}

.v-filterselect-tiny {
	height: 28px;
	
	font-size: 12px;
}

.v-filterselect-tiny [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	
	padding: 3px 5px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 29px;
	border-radius: inherit;
}

.v-filterselect-tiny .v-icon + [class*="input"] {
	padding-left: 28px;
}

.v-filterselect-tiny img.v-icon {
	max-height: 28px;
	margin-left: 5px;
}

.v-filterselect-tiny span.v-icon {
	
	width: 28px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 5px;
}

.v-filterselect-tiny [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 28px;
	border-radius: 0 6px 6px 0;
}

.v-filterselect-tiny [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 28px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.v-filterselect-tiny [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-filterselect-tiny.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-tiny.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-tiny.v-disabled [class$="button"]:active:after {
	display: none;
}

.v-filterselect-tiny.v-readonly [class*="input"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-tiny.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-filterselect-tiny.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-tiny.v-readonly [class$="button"]:active:after {
	display: none;
}

.v-filterselect-tiny.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-filterselect-tiny.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-tiny.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-compact, .v-filterselect-small {
	height: 31px;
	
}

.v-filterselect-compact [class*="input"], .v-filterselect-small [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	
	padding: 3px 6px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 32px;
	border-radius: inherit;
}

.v-filterselect-compact .v-icon + [class*="input"], .v-filterselect-small .v-icon + [class*="input"] {
	padding-left: 31px;
}

.v-filterselect-compact img.v-icon, .v-filterselect-small img.v-icon {
	max-height: 31px;
	margin-left: 6px;
}

.v-filterselect-compact span.v-icon, .v-filterselect-small span.v-icon {
	
	width: 31px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 6px;
}

.v-filterselect-compact [class$="button"], .v-filterselect-small [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 31px;
	border-radius: 0 6px 6px 0;
}

.v-filterselect-compact [class$="button"]:before, .v-filterselect-small [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 31px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.v-filterselect-compact [class$="button"]:active:after, .v-filterselect-small [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-filterselect-compact.v-disabled, .v-filterselect-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-compact.v-disabled [class$="button"], .v-filterselect-small.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-compact.v-disabled [class$="button"]:active:after, .v-filterselect-small.v-disabled [class$="button"]:active:after {
	display: none;
}

.v-filterselect-compact.v-readonly [class*="input"], .v-filterselect-small.v-readonly [class*="input"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-compact.v-readonly [class*="input"]:focus, .v-filterselect-small.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-filterselect-compact.v-readonly [class$="button"], .v-filterselect-small.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-compact.v-readonly [class$="button"]:active:after, .v-filterselect-small.v-readonly [class$="button"]:active:after {
	display: none;
}

.v-filterselect-compact.v-readonly.borderless [class*="input"], .v-filterselect-small.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-filterselect-compact.v-readonly.borderless [class*="input"]:focus, .v-filterselect-small.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-compact.v-readonly.borderless [class*="input"][class*="prompt"], .v-filterselect-small.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-small {
	font-size: 14px;
}

.v-filterselect-large {
	height: 44px;
	
	font-size: 20px;
}

.v-filterselect-large [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	
	padding: 5px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 45px;
	border-radius: inherit;
}

.v-filterselect-large .v-icon + [class*="input"] {
	padding-left: 44px;
}

.v-filterselect-large img.v-icon {
	max-height: 44px;
	margin-left: 8px;
}

.v-filterselect-large span.v-icon {
	
	width: 44px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 8px;
}

.v-filterselect-large [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 44px;
	border-radius: 0 6px 6px 0;
}

.v-filterselect-large [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 44px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.v-filterselect-large [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-filterselect-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-large.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-large.v-disabled [class$="button"]:active:after {
	display: none;
}

.v-filterselect-large.v-readonly [class*="input"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-large.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-filterselect-large.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-large.v-readonly [class$="button"]:active:after {
	display: none;
}

.v-filterselect-large.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-filterselect-large.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-large.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-huge {
	height: 59px;
	
	font-size: 26px;
}

.v-filterselect-huge [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	
	padding: 7px 10px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 60px;
	border-radius: inherit;
}

.v-filterselect-huge .v-icon + [class*="input"] {
	padding-left: 59px;
}

.v-filterselect-huge img.v-icon {
	max-height: 59px;
	margin-left: 10px;
}

.v-filterselect-huge span.v-icon {
	
	width: 59px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 10px;
}

.v-filterselect-huge [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 59px;
	border-radius: 0 6px 6px 0;
}

.v-filterselect-huge [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	position: absolute;
	width: 59px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.v-filterselect-huge [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-filterselect-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-filterselect-huge.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-huge.v-disabled [class$="button"]:active:after {
	display: none;
}

.v-filterselect-huge.v-readonly [class*="input"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-huge.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-filterselect-huge.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.v-filterselect-huge.v-readonly [class$="button"]:active:after {
	display: none;
}

.v-filterselect-huge.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-filterselect-huge.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-filterselect-huge.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-csslayout-well {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset none;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset none;
	border-radius: 6px;
	border: 1px solid #c9c9c9;
}

.v-csslayout-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-csslayout-well  > .v-margin-top {
	padding-top: 13px;
}

.v-csslayout-well  > .v-margin-right {
	padding-right: 13px;
}

.v-csslayout-well  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-csslayout-well  > .v-margin-left {
	padding-left: 13px;
}

.v-csslayout-card {
	background: white;
	color: #474747;
	border-radius: 6px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-csslayout-card  > .v-margin-top {
	padding-top: 13px;
}

.v-csslayout-card  > .v-margin-right {
	padding-right: 13px;
}

.v-csslayout-card  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-csslayout-card  > .v-margin-left {
	padding-left: 13px;
}

.v-csslayout-v-component-group {
	white-space: nowrap;
	position: relative;
}

.v-csslayout-v-component-group .v-widget ~ .v-widget:not(:last-child) {
	border-radius: 0;
}

.v-csslayout-v-component-group .v-widget ~ .v-widget.v-upload:not(:last-child) .v-button {
	border-radius: 0;
}

.v-csslayout-v-component-group .v-widget:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.v-csslayout-v-component-group .v-widget.v-upload:last-child .v-button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.v-csslayout-v-component-group .v-widget:first-child, .v-csslayout-v-component-group .v-caption:first-child + .v-widget {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.v-csslayout-v-component-group .v-widget.v-upload:first-child .v-button, .v-csslayout-v-component-group .v-caption:first-child + .v-widget.v-upload .v-button {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.v-csslayout-v-component-group .v-widget ~ .v-widget.first.first {
	border-radius: 6px 0 0 6px;
}

.v-csslayout-v-component-group .v-widget ~ .v-widget.first.first.v-upload .v-button {
	border-radius: 6px 0 0 6px;
}

.v-csslayout-v-component-group .v-widget ~ .v-widget.last.last {
	border-radius: 0 6px 6px 0;
}

.v-csslayout-v-component-group .v-widget ~ .v-widget.last.last.v-upload .v-button {
	border-radius: 0 6px 6px 0;
}

.v-csslayout-v-component-group .v-widget {
	vertical-align: middle;
	margin-left: -1px;
}

.v-csslayout-v-component-group .v-widget:first-child {
	margin-left: 0;
}

.v-csslayout-v-component-group .v-widget:focus, .v-csslayout-v-component-group .v-widget[class*="focus"], .v-csslayout-v-component-group .v-widget [class*="focus"] {
	position: relative;
	z-index: 5;
}

.v-form fieldset {
	border: none;
	padding: 0;
	margin: 0;
	height: 100%;
}

.v-form-content {
	height: 100%;
	box-sizing: border-box;
}

[class*="spacing"] > tbody > [class*="row"] > td {
	padding-top: 15px;
}

[class*="spacing"] > tbody > [class*="firstrow"] > td {
	padding-top: 0;
}

[class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 15px;
}

[class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 15px;
}

[class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 15px;
}

[class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 15px;
}

[class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 15px;
}

[class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 15px;
}

.v-formlayout > table {
	border-spacing: 0;
	position: relative;
}

.v-formlayout.v-has-width > table, .v-formlayout.v-has-width .v-formlayout-contentcell {
	width: 100%;
}

.v-formlayout-error-indicator {
	width: 19px;
}

.v-formlayout-captioncell {
	vertical-align: top;
	line-height: 37px;
}

.v-formlayout-captioncell .v-caption {
	padding-bottom: 0;
}

.v-formlayout-captioncell .v-caption-h2, .v-formlayout-captioncell .v-caption-h3, .v-formlayout-captioncell .v-caption-h4 {
	height: 3em;
}

.v-formlayout-contentcell .v-checkbox, .v-formlayout-contentcell .v-radiobutton {
	font-weight: 500;
}

.v-formlayout-contentcell  > .v-label-h2, .v-formlayout-contentcell  > .v-label-h3, .v-formlayout-contentcell  > .v-label-h4 {
	position: absolute;
	left: 0;
	right: 0;
	width: auto !important;
	margin-top: -0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #d1d3d5;
}

.v-formlayout.light  > table {
	padding: 0;
}

.v-formlayout.light  > table > tbody > tr > td {
	padding-top: 0;
	height: 38px;
	border-bottom: 1px solid #dbdddf;
}

.v-formlayout.light  > table > tbody > [class*="lastrow"] > td {
	border-bottom: none;
}

.v-formlayout.light  > table > tbody > tr > [class*="captioncell"] {
	color: gray;
	text-align: right;
	padding-left: 13px;
	line-height: 38px;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 0;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-input, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-textfield {
	width: 100%;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 0;
	padding: 4px 7px;
	
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	background: transparent;
	border: none;
	color: inherit;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield.v-disabled, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea.v-disabled, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input.v-disabled, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input.v-disabled, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
	box-shadow: none;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield-prompt, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea-prompt, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-prompt input, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-prompt input {
	color: #a3a3a3;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	height: auto;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	border-bottom: none;
	left: 0;
	right: 0;
}

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	margin-top: 0;
}

.v-formlayout.light .v-richtextarea {
	margin: 5px 0;
}

.v-formlayout.light .v-filterselect-button, .v-formlayout.light .v-datefield-button {
	border: none;
}

.v-formlayout.light .v-filterselect-button:active:after, .v-formlayout.light .v-datefield-button:active:after {
	display: none;
}

.v-formlayout.light .v-datefield-button {
	right: 0;
	left: auto;
}

.v-formlayout.light .v-checkbox {
	margin-left: 7px;
}

.v-grid {
	position: relative;
}

.v-grid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.v-grid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.v-grid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.v-grid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.v-grid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.v-grid-header-deco, .v-grid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.v-grid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.v-grid-header, .v-grid-body, .v-grid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.v-grid-header, .v-grid-header-deco {
	top: 0;
}

.v-grid-footer, .v-grid-footer-deco {
	bottom: 0;
}

.v-grid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.v-grid-body .v-grid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.v-grid-body .v-grid-header > .v-grid-row {
	position: relative;
}

.v-grid-row {
	display: block;
}

.v-grid-row  > td, .v-grid-row  > th {
	background-color: white;
}

.v-grid-row {
	width: inherit;
}

.v-grid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.v-grid-cell.frozen {
	position: relative;
	z-index: 1;
}

.v-grid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.v-grid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.v-grid {
	outline: none;
}

.v-grid-scroller-vertical, .v-grid-scroller-horizontal {
	border: none;
}

.v-grid-scroller-vertical {
	border-left: none;
}

.v-grid-scroller-horizontal {
	border-top: none;
}

.v-grid-tablewrapper {
	border: none;
}

.v-grid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.v-grid .header-drag-table .v-grid-header {
	position: absolute;
}

.v-grid .header-drag-table .v-grid-header  > .v-grid-cell {
	border: none;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.v-grid .header-drag-table .v-grid-header  > .v-grid-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.v-grid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #eaecee;
	border: none;
	padding: 0;
	z-index: 5;
}

.v-grid-sidebar.v-contextmenu.v-grid-sidebar-popup {
	right: auto;
}

.v-grid-sidebar.v-contextmenu .v-grid-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.v-grid-sidebar.v-contextmenu .v-grid-sidebar-button[disabled] {
	cursor: default;
}

.v-grid-sidebar.v-contextmenu .v-grid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.v-grid-sidebar.v-contextmenu .v-grid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.v-grid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
	width: 100%;
}

.v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
	vertical-align: middle;
}

.v-grid-sidebar.v-contextmenu .v-grid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-grid-sidebar.v-contextmenu .v-grid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.v-grid-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 47px;
	text-overflow: ellipsis;
}

.v-grid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.v-grid-cell  > div {
	display: inline-block;
}

.v-grid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.v-grid-cell.frozen  + th, .v-grid-cell.frozen  + td {
	border-left: none;
}

.v-grid-cell div.component-wrap {
	width: 100%;
}

.v-grid-row > td, .v-grid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.v-grid-row > td:first-child, .v-grid-editor-cells > div:first-child {
	border-left: none;
}

.v-grid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.v-grid-row-stripe > td {
	background-color: #f5f5f5;
}

.v-grid-row-selected > td {
	background: #197de1;
}

.v-grid-row-focused > td {
	
}

.v-grid-header th {
	position: relative;
	background-color: #eaecee;
	font-size: 14px;
	font-weight: inherit;
	border-left: none;
	border-bottom: none;
	
	text-align: left;
}

.v-grid-header th:first-child {
	border-left: none;
}

.v-grid-header .sort-asc, .v-grid-header .sort-desc {
	padding-right: 35px;
}

.v-grid-header .sort-asc:after, .v-grid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.v-grid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.v-grid-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-grid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-grid-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.v-grid-footer td:first-child {
	border-left: none;
}

.v-grid-header .v-grid-cell, .v-grid-footer .v-grid-cell {
	overflow: visible;
}

.v-grid-column-header-content, .v-grid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 47px;
	vertical-align: baseline;
}

.v-grid-header-deco {
	border-top: none;
	border-right: none;
	background-color: #eaecee;
}

.v-grid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.v-grid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.v-grid-cell-focused {
	position: relative;
}

.v-grid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: none;
	display: none;
	pointer-events: none;
}

.v-grid:focus .v-grid-cell-focused:before {
	display: block;
}

.v-grid.v-disabled:focus .v-grid-cell-focused:before {
	display: none;
}

.v-grid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: none;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.v-grid-editor.unbuffered .v-grid-editor-footer {
	width: 100%;
}

.v-grid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.v-grid-editor-cells.frozen {
	z-index: 2;
}

.v-grid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.v-grid-editor-cells  > div:first-child {
	border-left: none;
}

.v-grid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.v-grid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.v-grid-editor-cells  > div input[type="text"], .v-grid-editor-cells  > div input[type="text"].v-filterselect-input, .v-grid-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.v-grid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .v-grid-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.v-grid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.v-grid-editor-cells  > div .v-textfield, .v-grid-editor-cells  > div .v-datefield, .v-grid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.v-grid-editor-cells  > div .v-select, .v-grid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.v-grid-editor-cells  > div.not-editable.v-grid-cell {
	float: none;
}

.v-grid-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.v-grid-editor-cells .error, .v-grid-editor-cells .error > input {
	background-color: #fee;
}

.v-grid-editor-footer {
	display: table;
	height: 47px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.v-grid-editor-footer  + .v-grid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.v-grid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.v-grid-editor-message, .v-grid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.v-grid-editor-message {
	width: 100%;
	position: relative;
}

.v-grid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 47px;
	top: 0;
}

.v-grid-editor-save {
	margin-right: 4px;
}

.v-grid-spacer {
	padding-left: 1px;
}

.v-grid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.v-grid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.v-grid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.v-grid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.v-grid-cell > .v-progressbar {
	width: 100%;
}

.v-grid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: white;
}

.v-grid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-grid-header .v-grid-cell {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-grid-header .v-grid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.v-grid-header .v-grid-cell.dragged-column-header {
	margin-top: -24px;
}

.v-grid-footer .v-grid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-grid-header-deco {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
}

.v-grid-footer-deco, .v-grid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.v-grid-row-selected  > .v-grid-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: #71b0ef;
}

.v-grid-editor {
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	border-color: transparent;
}

.v-grid-editor-footer {
	font-size: 14px;
	padding: 0 8px;
	background: #eaecee;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.v-grid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.v-grid-editor-cells {
	z-index: 1;
}

.v-grid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.v-grid-editor-cells > div.not-editable.v-grid-cell {
	float: none;
}

.v-grid-editor-cells > div .error::before {
	border-top: 10px solid #d63030;
	border-right: 10px solid transparent;
}

.v-grid-editor-cells > div .error, .v-grid-editor-cells > div .error > input {
	background-color: #fefbfb;
}

.v-grid-editor-cells > div .v-textfield, .v-grid-editor-cells > div .v-textfield-focus, .v-grid-editor-cells > div .v-datefield, .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .v-grid-editor-cells > div .v-filterselect-input, .v-grid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	
	
}

.v-grid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 45.6px;
}

.v-grid-editor-cells > div .v-textfield-focus, .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .v-grid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.v-grid-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.v-grid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.v-grid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.v-grid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.v-grid-editor-message > div:before {
	display: inline-block;
	color: #d63030;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.v-grid-editor-save, .v-grid-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 8px 8px;
	margin: 0;
	outline: none;
}

.v-grid-editor-save:hover, .v-grid-editor-cancel:hover {
	color: #4396ea;
}

.v-grid-editor-save.v-disabled, .v-grid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-grid-spacer {
	
}

.v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-grid-sidebar.v-contextmenu.closed {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
}

.v-grid-scroller::-webkit-scrollbar {
	border: none;
}

.v-grid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.v-grid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.v-grid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.v-grid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.v-grid-row-drag-top, .v-grid-row-drag-bottom {
	z-index: 100;
}

.v-grid-row-drag-top:before, .v-grid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.v-grid-row-drag-bottom:after {
	bottom: -1px;
}

.v-grid-row-drag-top:before {
	top: -1px;
}

.v-grid-row-drag-top:first-child:before {
	top: 0;
}

.v-grid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: #1463b3;
}

.v-grid-row-selected.v-grid-row-drag-top:before, .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: #1463b3;
}

.v-grid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

.v-textfield {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 6px;
	padding: 4px 9px;
	border: 1px solid white;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 185px;
}

.v-textfield.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-textfield:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-textfield[class*="prompt"] {
	color: #a3a3a3;
}

.v-textfield-readonly {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-textfield-readonly:focus {
	box-shadow: none;
	border-color: white;
}

.v-textfield-error {
	border-color: #d63030 !important;
	background: #fefbfb;
	color: #652828;
}

.v-textfield-error-info {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.v-textfield-error-warning {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.v-textfield-error-error {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-textfield-error-critical {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.v-textfield-error-system {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.v-textfield-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-textfield-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-textfield-borderless[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-textfield-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 6px;
	padding: 3px 7px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 12px;
}

.v-textfield-compact, .v-textfield-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 6px;
	padding: 3px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.v-textfield-small {
	font-size: 14px;
}

.v-textfield-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 6px;
	padding: 5px 10px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 20px;
}

.v-textfield-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 6px;
	padding: 7px 12px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 26px;
}

.v-slot-inline-icon {
	position: relative;
}

.v-caption-inline-icon {
	padding: 0;
}

.v-caption-inline-icon .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
	margin: 0;
}

.v-caption-inline-icon .v-icon {
	position: absolute;
	z-index: 10;
}

.v-caption-inline-icon span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 38px;
	line-height: 36px;
	text-align: center;
	font-size: 14px;
}

.v-caption-inline-icon img.v-icon {
	left: 11px;
	bottom: 11px;
}

.v-textfield-inline-icon  {
	padding-left: 38px;
}

.v-slot-inline-icon.v-slot-tiny {
	position: relative;
}

.v-caption-inline-icon.v-caption-tiny {
	padding: 0;
}

.v-caption-inline-icon.v-caption-tiny .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
	margin: 0;
}

.v-caption-inline-icon.v-caption-tiny .v-icon {
	position: absolute;
	z-index: 10;
}

.v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 28px;
	line-height: 26px;
	text-align: center;
	font-size: 12px;
}

.v-caption-inline-icon.v-caption-tiny img.v-icon {
	left: 6px;
	bottom: 6px;
}

.v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 28px;
}

.v-slot-inline-icon.v-slot-compact {
	position: relative;
}

.v-caption-inline-icon.v-caption-compact {
	padding: 0;
}

.v-caption-inline-icon.v-caption-compact .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
	margin: 0;
}

.v-caption-inline-icon.v-caption-compact .v-icon {
	position: absolute;
	z-index: 10;
}

.v-caption-inline-icon.v-caption-compact span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 31px;
	line-height: 29px;
	text-align: center;
	font-size: 14px;
}

.v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 8px;
	bottom: 8px;
}

.v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 31px;
}

.v-slot-inline-icon.v-slot-small {
	position: relative;
}

.v-caption-inline-icon.v-caption-small {
	padding: 0;
}

.v-caption-inline-icon.v-caption-small .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
	margin: 0;
}

.v-caption-inline-icon.v-caption-small .v-icon {
	position: absolute;
	z-index: 10;
}

.v-caption-inline-icon.v-caption-small span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 31px;
	line-height: 29px;
	text-align: center;
	font-size: 14px;
}

.v-caption-inline-icon.v-caption-small img.v-icon {
	left: 8px;
	bottom: 8px;
}

.v-textfield-inline-icon.v-textfield-small  {
	padding-left: 31px;
}

.v-slot-inline-icon.v-slot-large {
	position: relative;
}

.v-caption-inline-icon.v-caption-large {
	padding: 0;
}

.v-caption-inline-icon.v-caption-large .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
	margin: 0;
}

.v-caption-inline-icon.v-caption-large .v-icon {
	position: absolute;
	z-index: 10;
}

.v-caption-inline-icon.v-caption-large span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 44px;
	line-height: 42px;
	text-align: center;
	font-size: 20px;
}

.v-caption-inline-icon.v-caption-large img.v-icon {
	left: 14px;
	bottom: 14px;
}

.v-textfield-inline-icon.v-textfield-large  {
	padding-left: 44px;
}

.v-slot-inline-icon.v-slot-huge {
	position: relative;
}

.v-caption-inline-icon.v-caption-huge {
	padding: 0;
}

.v-caption-inline-icon.v-caption-huge .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
	margin: 0;
}

.v-caption-inline-icon.v-caption-huge .v-icon {
	position: absolute;
	z-index: 10;
}

.v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 59px;
	line-height: 57px;
	text-align: center;
	font-size: 26px;
}

.v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 22px;
	bottom: 22px;
}

.v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 59px;
}

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

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

.v-textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 6px;
	padding: 6px;
	border: 1px solid white;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	width: 185px;
}

.v-textarea.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-textarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-textarea[class*="prompt"] {
	color: #a3a3a3;
}

.v-textarea-readonly {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-textarea-readonly:focus {
	box-shadow: none;
	border-color: white;
}

.v-textarea-error {
	border-color: #d63030 !important;
	background: #fefbfb;
	color: #652828;
}

.v-textarea-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-textarea-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-textarea-borderless[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-textarea-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 6px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 12px;
}

.v-textarea-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 6px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 14px;
}

.v-textarea-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 6px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 20px;
}

.v-textarea-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 6px;
	padding: 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 26px;
}

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

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

.v-datefield {
	position: relative;
	width: 185px;
	height: 38px;
	border-radius: 6px;
}

.v-datefield [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 6px;
	padding: 4px 9px;
	border: 1px solid white;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 45.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield [class*="textfield"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield [class*="textfield"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 0 transparent, 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-datefield [class*="textfield"][class*="prompt"] {
	color: #a3a3a3;
}

.v-datefield[class*="prompt"] > [class*="textfield"] {
	color: #a3a3a3;
}

.v-datefield [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 38px;
	line-height: 36px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	top: 1px;
	bottom: 1px;
	left: 1px;
	border: none;
	border-right: 1px solid white;
	color: #a3a3a3;
	border-radius: 5px 0 0 5px;
}

.v-datefield [class*="button"]:hover {
	color: #474747;
}

.v-datefield [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-datefield [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(128, 128, 128, 0.2);
	border-radius: inherit;
}

.v-datefield.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield.v-disabled [class*="button"]:active:after {
	display: none;
}

.v-datefield.v-readonly [class*="textfield"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-datefield.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield.v-readonly [class*="button"]:active:after {
	display: none;
}

.v-datefield.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-datefield.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-error .v-datefield-textfield {
	border-color: #d63030 !important;
	background: #fefbfb;
	color: #652828;
}

.v-datefield-error .v-datefield-button {
	color: #d63030;
	border-color: #d63030;
}

.v-datefield-error-info .v-datefield-textfield {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.v-datefield-error-info .v-datefield-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.v-datefield-error-warning .v-datefield-textfield {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.v-datefield-error-warning .v-datefield-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.v-datefield-error-error .v-datefield-textfield {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-datefield-error-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

.v-datefield-error-critical .v-datefield-textfield {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.v-datefield-error-critical .v-datefield-button {
	color: #fa007d;
	border-color: #fa007d;
}

.v-datefield-error-system .v-datefield-textfield {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.v-datefield-error-system .v-datefield-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.v-datefield-full {
	width: 210px;
}

.v-datefield-day {
	width: 185px;
}

.v-datefield-month {
	width: 105px;
}

.v-datefield-year {
	width: 91px;
}

.v-datefield-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 5px !important;
	margin-bottom: 5px !important;
	margin-right: 5px !important;
	cursor: default;
	width: auto;
}

.v-datefield-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.v-datefield-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.v-datefield-popup table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
}

.v-datefield-popup td {
	padding: 2px;
}

.v-datefield-popup .v-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.v-datefield-popup .v-datefield-calendarpanel:focus {
	outline: none;
}

.v-datefield-popup .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 27px;
	border: 1px solid transparent;
	line-height: 27px;
	text-align: center;
	font-size: 13px;
	background: white;
	border-radius: 3px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: #a3a3a3;
	background: transparent;
}

.v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #1a1a1a;
	font-weight: 600;
	border-color: #b3b3b3;
}

.v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	border: none;
	font-weight: 600;
}

.v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	position: relative;
}

.v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a3a3a3;
	cursor: not-allowed;
}

.v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 27px;
	color: rgba(135, 135, 135, 0.85);
}

.v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.v-datefield-popup .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.v-datefield-popup td[class*="year"] button, .v-datefield-popup td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.v-datefield-popup td[class*="year"] button:before, .v-datefield-popup td[class*="month"] button:before {
	color: #a3a3a3;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.v-datefield-popup td[class*="year"] button:hover:before, .v-datefield-popup td[class*="month"] button:hover:before {
	color: transparent;
}

.v-datefield-popup td[class*="year"] button.outside-range, .v-datefield-popup td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.v-datefield-popup td[class*="year"] button.outside-range:hover:before, .v-datefield-popup td[class*="month"] button.outside-range:hover:before {
	color: #a3a3a3;
}

.v-datefield-popup .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.v-datefield-popup .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.v-datefield-popup .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.v-datefield-popup .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 152px;
	cursor: default;
	color: #197de1;
}

.v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 76px;
}

.v-datefield-popup .v-datefield-calendarpanel-weeknumber, .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(135, 135, 135, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.v-datefield-popup .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 39px;
	bottom: 0;
	left: 0;
	width: 35px;
	border-top: 1px solid #dbdddf;
	border-right: 1px solid #dbdddf;
	border-top-right-radius: 6px;
	border-bottom-left-radius: 6px;
	background: #eaecee;
}

.v-datefield-popup td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.v-datefield-popup td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.v-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.v-datefield-calendarpanel:focus {
	outline: none;
}

.v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 27px;
	border: 1px solid transparent;
	line-height: 27px;
	text-align: center;
	font-size: 13px;
	background: white;
	border-radius: 3px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.v-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.v-datefield-calendarpanel-day-offmonth {
	color: #a3a3a3;
	background: transparent;
}

.v-datefield-calendarpanel-day-today {
	color: #1a1a1a;
	font-weight: 600;
	border-color: #b3b3b3;
}

.v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	border: none;
	font-weight: 600;
}

.v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	position: relative;
}

.v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a3a3a3;
	cursor: not-allowed;
}

.v-datefield-calendarpanel-weekdays {
	height: 27px;
	color: rgba(135, 135, 135, 0.85);
}

.v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.v-datefield-calendarpanel-header {
	white-space: nowrap;
}

td[class*="year"] button, td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

td[class*="year"] button:before, td[class*="month"] button:before {
	color: #a3a3a3;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

td[class*="year"] button:hover:before, td[class*="month"] button:hover:before {
	color: transparent;
}

td[class*="year"] button.outside-range, td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

td[class*="year"] button.outside-range:hover:before, td[class*="month"] button.outside-range:hover:before {
	color: #a3a3a3;
}

.v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

td.v-datefield-calendarpanel-month {
	width: 152px;
	cursor: default;
	color: #197de1;
}

td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 76px;
}

.v-datefield-calendarpanel-weeknumber, .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(135, 135, 135, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 39px;
	bottom: 0;
	left: 0;
	width: 35px;
	border-top: 1px solid #dbdddf;
	border-right: 1px solid #dbdddf;
	border-top-right-radius: 6px;
	border-bottom-left-radius: 6px;
	background: #eaecee;
}

td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.v-datefield-borderless .v-datefield-textfield {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-datefield-borderless .v-datefield-textfield:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-borderless .v-datefield-textfield[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-borderless .v-datefield-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-align-right input {
	text-align: right;
}

.v-datefield-align-center input {
	text-align: center;
}

.v-datefield-tiny {
	height: 28px;
	border-radius: 6px;
	font-size: 12px;
}

.v-datefield-tiny [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 6px;
	padding: 3px 7px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 33.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield-tiny [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 28px;
	line-height: 28px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 6px 0 0 6px;
}

.v-datefield-tiny [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-datefield-tiny [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-datefield-tiny.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-tiny.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-tiny.v-disabled [class*="button"]:active:after {
	display: none;
}

.v-datefield-tiny.v-readonly [class*="textfield"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-tiny.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-datefield-tiny.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-tiny.v-readonly [class*="button"]:active:after {
	display: none;
}

.v-datefield-tiny.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-datefield-tiny.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-tiny.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-compact, .v-datefield-small {
	height: 31px;
	border-radius: 6px;
}

.v-datefield-compact [class*="textfield"], .v-datefield-small [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 31px;
	border-radius: 6px;
	padding: 3px 8px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 37.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield-compact [class*="button"], .v-datefield-small [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 31px;
	line-height: 31px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 6px 0 0 6px;
}

.v-datefield-compact [class*="button"]:before, .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-datefield-compact [class*="button"]:active:after, .v-datefield-small [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-datefield-compact.v-disabled, .v-datefield-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-compact.v-disabled [class*="button"], .v-datefield-small.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-compact.v-disabled [class*="button"]:active:after, .v-datefield-small.v-disabled [class*="button"]:active:after {
	display: none;
}

.v-datefield-compact.v-readonly [class*="textfield"], .v-datefield-small.v-readonly [class*="textfield"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-compact.v-readonly [class*="textfield"]:focus, .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-datefield-compact.v-readonly [class*="button"], .v-datefield-small.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-compact.v-readonly [class*="button"]:active:after, .v-datefield-small.v-readonly [class*="button"]:active:after {
	display: none;
}

.v-datefield-compact.v-readonly.borderless [class*="textfield"], .v-datefield-small.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-datefield-compact.v-readonly.borderless [class*="textfield"]:focus, .v-datefield-small.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-compact.v-readonly.borderless [class*="textfield"][class*="prompt"], .v-datefield-small.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-small {
	font-size: 14px;
}

.v-datefield-large {
	height: 44px;
	border-radius: 6px;
	font-size: 20px;
}

.v-datefield-large [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 44px;
	border-radius: 6px;
	padding: 5px 10px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 52.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield-large [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 44px;
	line-height: 44px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 6px 0 0 6px;
}

.v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-datefield-large [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-datefield-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-large.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-large.v-disabled [class*="button"]:active:after {
	display: none;
}

.v-datefield-large.v-readonly [class*="textfield"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-datefield-large.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-large.v-readonly [class*="button"]:active:after {
	display: none;
}

.v-datefield-large.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-datefield-large.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-large.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-huge {
	height: 59px;
	border-radius: 6px;
	font-size: 26px;
}

.v-datefield-huge [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 59px;
	border-radius: 6px;
	padding: 7px 12px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 70.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield-huge [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 59px;
	line-height: 59px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 6px 0 0 6px;
}

.v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-datefield-huge [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-datefield-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-datefield-huge.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-huge.v-disabled [class*="button"]:active:after {
	display: none;
}

.v-datefield-huge.v-readonly [class*="textfield"] {
	background: #d8d8d8;
	color: #3c3c3c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: white;
}

.v-datefield-huge.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.v-datefield-huge.v-readonly [class*="button"]:active:after {
	display: none;
}

.v-datefield-huge.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.v-datefield-huge.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-huge.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-inline-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 30px;
	height: 27px;
	border: 1px solid transparent;
	line-height: 27px;
	text-align: center;
	font-size: 13px;
	background: white;
	border-radius: 3px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.v-inline-datefield-calendarpanel-day:hover {
	color: #197de1;
}

.v-inline-datefield-calendarpanel-day-offmonth {
	color: #a3a3a3;
	background: transparent;
}

.v-inline-datefield-calendarpanel-day-today {
	color: #1a1a1a;
	font-weight: 600;
	border-color: #b3b3b3;
}

.v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #c8dbed;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	border: none;
	font-weight: 600;
}

.v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	position: relative;
}

.v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a3a3a3;
	cursor: not-allowed;
}

.v-inline-datefield-calendarpanel-weekdays {
	height: 27px;
	color: rgba(135, 135, 135, 0.85);
}

.v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

td[class*="year"] button, td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 19px;
	height: 25px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

td[class*="year"] button:before, td[class*="month"] button:before {
	color: #a3a3a3;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

td[class*="year"] button:hover:before, td[class*="month"] button:hover:before {
	color: transparent;
}

td[class*="year"] button.outside-range, td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

td[class*="year"] button.outside-range:hover:before, td[class*="month"] button.outside-range:hover:before {
	color: #a3a3a3;
}

.v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

td.v-inline-datefield-calendarpanel-month {
	width: 152px;
	cursor: default;
	color: #197de1;
}

td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 76px;
}

.v-inline-datefield-calendarpanel-weeknumber, .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 30px;
	color: rgba(135, 135, 135, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 39px;
	bottom: 0;
	left: 0;
	width: 35px;
	border-top: 1px solid #dbdddf;
	border-right: 1px solid #dbdddf;
	border-top-right-radius: 6px;
	border-bottom-left-radius: 6px;
	background: #eaecee;
}

td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

td.v-inline-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 6px;
}

.v-gridlayout-margin-top {
	padding-top: 15px;
}

.v-gridlayout-margin-bottom {
	padding-bottom: 15px;
}

.v-gridlayout-margin-left {
	padding-left: 15px;
}

.v-gridlayout-margin-right {
	padding-right: 15px;
}

.v-gridlayout-spacing-on {
	padding-left: 15px;
	padding-top: 15px;
}

.v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	cursor: default;
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	text-align: left;
	line-height: 36px;
}

.v-menubar:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.v-menubar.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-menubar.v-disabled:after {
	display: none;
}

.v-menubar:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-menubar:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-menubar  > .v-menubar-menuitem {
	padding: 0 15px;
}

.v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 38px;
}

.v-menubar:active:after {
	background: transparent;
}

.v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 38px;
	padding: 0 16px;
	color: inherit;
	font-weight: 500;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	
	
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-width: 0 1px 0 0;
	border-color: inherit;
	height: 100%;
	line-height: inherit;
	vertical-align: top;
	text-align: center;
}

.v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 5px 0 0 5px;
}

.v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 5px 5px 0;
	border-right-width: 0;
}

.v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 5px;
}

.v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 4px 0 -4px;
	cursor: inherit;
}

.v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 38px;
	padding: 0;
}

.v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #f2f2f2;
	background-image: -webkit-linear-gradient(bottom, #f2f2f2 0%, #f2f2f2 100%);
	background-image: linear-gradient(to top,#f2f2f2 0%, #f2f2f2 100%);
	color: #181818;
}

.v-disabled > .v-menubar-menuitem, .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.v-disabled > .v-menubar-menuitem:before, .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-menubar > .v-menubar-menuitem-selected {
	color: #ecf2f8;
	
	
	
	border-radius: 0;
	border: 1px solid #1362b1;
	border-top-color: #1362b1;
	border-bottom-color: #1362b1;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	
	
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	font-family: ThemeIcons;
	content: "\f078";
	font-size: 0.7em;
	vertical-align: 0.15em;
	margin: 0 -0.2em 0 0.5em;
	opacity: 0.5;
}

.v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.v-menubar-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 4px 4px;
	margin: 5px 0 0 1px !important;
}

.v-menubar-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.v-menubar-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 27px;
	padding: 0 20px 0 10px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 32px;
	padding-right: 38px;
	position: relative;
}

.v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0957a6;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 27px;
	margin-right: 5px;
	min-width: 1em;
}

.v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 10px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 29px;
}

.v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 4px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
}

.v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 10px;
}

.v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.v-menubar-small {
	height: 31px;
	padding: 0 15px;
	
	font-weight: 500;
	
	cursor: default;
	border-radius: 6px;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	text-align: left;
	line-height: 29px;
	font-size: 14px;
}

.v-menubar-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-menubar-small  > .v-menubar-menuitem {
	padding: 0 12px;
}

.v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 31px;
}

.v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.v-menubar-borderless:focus:after {
	display: none;
}

.v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 6px;
	color: #197de1;
	padding: 0 13px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-menubar-borderless .v-menubar-menuitem:first-child, .v-menubar-borderless .v-menubar-menuitem:last-child, .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 6px;
}

.v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.v-menubar-borderless .v-menubar-menuitem:hover {
	color: #4396ea;
}

.v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.v-menubar-borderless .v-menubar-menuitem-checked, .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c9c9c9;
	color: #197de1;
}

.v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.v-menubar-borderless .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.v-menubar-borderless .v-menubar-menuitem-disabled, .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.v-radiobutton {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .v-radiobutton {
	padding-left: 25px;
}

:root .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-radiobutton > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-radiobutton > input ~ label:before, :root .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 6px;
	font-size: 11px;
	text-align: center;
}

:root .v-radiobutton > input ~ label:before {
	height: 19px;
	padding: 0 10px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 19px;
}

:root .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.v-radiobutton > .v-icon, .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-radiobutton.v-disabled  > label, .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-radiobutton.v-readonly  > label, .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .v-radiobutton > input:checked ~ label:after {
	width: 7px;
	height: 7px;
	top: 6px;
	left: 6px;
	background: #197de1;
}

:root .v-radiobutton > input ~ label:before, :root .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.v-select-optiongroup .v-radiobutton, .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 10px 14px 0 0;
}

.v-select-optiongroup .v-radiobutton:first-child, .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 6px;
}

.v-select-optiongroup .v-radiobutton:last-child, .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 6px;
}

.v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.v-select-optiongroup-small {
	font-size: 14px;
}

.v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .v-select-optiongroup-small .v-checkbox {
	padding-left: 21px;
}

:root .v-select-optiongroup-small .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-select-optiongroup-small .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-select-optiongroup-small .v-checkbox > input ~ label:before, :root .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	font-size: 9px;
	text-align: center;
}

:root .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 15.5px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 5px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 16px;
}

:root .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.v-select-optiongroup-small .v-checkbox > .v-icon, .v-select-optiongroup-small .v-checkbox > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-select-optiongroup-small .v-checkbox.v-disabled  > label, .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-small .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-select-optiongroup-small .v-checkbox.v-readonly  > label, .v-select-optiongroup-small .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-small .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .v-select-optiongroup-small .v-radiobutton {
	padding-left: 21px;
}

:root .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-select-optiongroup-small .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	font-size: 9px;
	text-align: center;
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 15.5px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 5px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 16px;
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.v-select-optiongroup-small .v-radiobutton > .v-icon, .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 5px;
	left: 5px;
	background: #197de1;
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.v-select-optiongroup-small .v-radiobutton, .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 8px 14px 0 0;
}

.v-select-optiongroup-small .v-radiobutton:first-child, .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 5px;
}

.v-select-optiongroup-small .v-radiobutton:last-child, .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 5px;
}

.v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.v-select-optiongroup-large {
	font-size: 20px;
}

.v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
}

.v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .v-select-optiongroup-large .v-checkbox {
	padding-left: 29px;
}

:root .v-select-optiongroup-large .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-select-optiongroup-large .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-select-optiongroup-large .v-checkbox > input ~ label:before, :root .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 6px;
	font-size: 13px;
	text-align: center;
}

:root .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 22px;
	padding: 0 11px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 22px;
}

:root .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #197de1;
}

.v-select-optiongroup-large .v-checkbox > .v-icon, .v-select-optiongroup-large .v-checkbox > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.v-select-optiongroup-large .v-checkbox.v-disabled  > label, .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-select-optiongroup-large .v-checkbox.v-readonly  > label, .v-select-optiongroup-large .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 22px;
	white-space: nowrap;
}

.v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .v-select-optiongroup-large .v-radiobutton {
	padding-left: 29px;
}

:root .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-select-optiongroup-large .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-box-shadow: 0 0 0 0 transparent, none;
	box-shadow: 0 0 0 0 transparent, none;
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 6px;
	font-size: 13px;
	text-align: center;
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 22px;
	padding: 0 11px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	height: 22px;
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #197de1;
}

.v-select-optiongroup-large .v-radiobutton > .v-icon, .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 7px 0 4px;
	min-width: 1em;
	cursor: pointer;
}

.v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 8px;
	height: 8px;
	top: 7px;
	left: 7px;
	background: #197de1;
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.v-select-optiongroup-large .v-radiobutton, .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 11px 14px 0 0;
}

.v-select-optiongroup-large .v-radiobutton:first-child, .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 7px;
}

.v-select-optiongroup-large .v-radiobutton:last-child, .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 7px;
}

.v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.v-select-optiongroup-horizontal .v-radiobutton, .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.v-link {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-link:hover {
	color: #4396ea;
}

.v-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-link a {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	cursor: inherit;
	color: inherit;
	text-decoration: inherit;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	transition: inherit;
}

.v-link a:hover {
	color: #4396ea;
}

.v-link a.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-link .v-icon {
	cursor: inherit;
}

.v-link-small {
	font-size: 14px;
}

.v-link-large {
	font-size: 20px;
}

.v-window {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	border-radius: 4px;
	padding: 0;
	min-width: 152px !important;
	min-height: 38px !important;
	white-space: nowrap;
	overflow: hidden !important;
	-webkit-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	-moz-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	transition: width 200ms, height 200ms, top 200ms, left 200ms;
}

.v-window[class*="animate-in"] {
	-webkit-animation: valo-animate-in-fade 140ms;
	-moz-animation: valo-animate-in-fade 140ms;
	animation: valo-animate-in-fade 140ms;
}

.v-window[class*="animate-out"] {
	-webkit-animation: valo-animate-out-scale-down-fade 100ms;
	-moz-animation: valo-animate-out-scale-down-fade 100ms;
	animation: valo-animate-out-scale-down-fade 100ms;
}

.v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.v-window-modalitycurtain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #222;
	background-image: -webkit-radial-gradient(50% 50%, circle, #222, #222222);
	background-image: radial-gradient(  circle at 50% 50%, #222, #222222);
	opacity: 0.8;
	filter: alpha(opacity=80) ;
	-webkit-animation: valo-animate-in-fade 400ms 100ms backwards;
	-moz-animation: valo-animate-in-fade 400ms 100ms backwards;
	animation: valo-animate-in-fade 400ms 100ms backwards;
}

.v-op12 .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.v-window-draggingCurtain {
	position: fixed !important;
}

.v-window-resizingCurtain + .v-window, .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.v-window-outerheader {
	cursor: move;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	transform: translatez(0);
}

.v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e4e4e4;
	border-color: rgba(201, 201, 201, 0.5);
}

.v-window-header {
	line-height: 37px;
	padding-left: 13px;
	margin-right: 76px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 38px;
}

.v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 13px;
}

.v-window-closebox, .v-window-maximizebox, .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 34px;
	height: 37px;
	background-color: white;
	line-height: 35px;
	text-align: center;
	cursor: pointer;
	font-size: 18px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-window-closebox:focus, .v-window-maximizebox:focus, .v-window-restorebox:focus {
	outline: none;
}

.v-window-closebox:hover, .v-window-maximizebox:hover, .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.v-window-closebox:active, .v-window-maximizebox:active, .v-window-restorebox:active {
	color: inherit;
}

.v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 2px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-window-maximizebox:focus::after, .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 2px;
	bottom: 6px;
	left: 6px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-window-closebox {
	padding-right: 4px;
	border-radius: 0 4px 0 4px;
}

.v-window-closebox:before {
	content: "\00d7";
}

.v-window-maximizebox, .v-window-restorebox {
	right: 34px;
	padding-left: 4px;
	border-radius: 0 0 0 4px;
}

.v-window-maximizebox  + .v-window-closebox, .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.v-window-closebox-disabled, .v-window-resizebox-disabled, .v-window-restorebox-disabled, .v-window-maximizebox-disabled {
	display: none;
}

.v-window-closebox-disabled  + .v-window-closebox, .v-window-resizebox-disabled  + .v-window-closebox, .v-window-restorebox-disabled  + .v-window-closebox, .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 38px;
	padding-right: 0;
	border-bottom-left-radius: 4px;
}

.v-window-closebox-disabled  + .v-window-closebox:focus::after, .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 6px;
}

.v-window-maximizebox:before {
	content: "+";
}

.v-window-restorebox:before {
	content: "\2013";
}

.v-window > .popupContent, .v-window-wrap, .v-window-contents, .v-window-contents > .v-scrollable {
	height: 100%;
}

.v-window-contents {
	box-sizing: border-box;
	border-radius: 6px;
	margin-top: 0 !important;
}

.v-window-contents  > .v-scrollable {
	position: relative;
}

.v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 13px;
}

.v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 13px;
}

.v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 13px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 13px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 13px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 13px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 13px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 13px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 13px;
}

.v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.v-window-contents  > .v-scrollable:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid white;
	left: 0;
	right: 0;
}

.v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #e4e4e4;
}

.v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.v-window-footer {
	height: 0;
}

.v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 19px;
	height: 19px;
	cursor: nwse-resize;
}

.v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.v-window-top-toolbar  > .v-widget, .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.v-window-top-toolbar .v-label, .v-window-bottom-toolbar .v-label {
	line-height: 37px;
}

.v-window-top-toolbar .v-spacing, .v-window-bottom-toolbar .v-spacing {
	width: 8px;
}

.v-window-top-toolbar.v-layout {
	padding: 8px 13px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	background-color: white;
}

.v-window-top-toolbar.v-menubar {
	margin: 13px 13px 6px;
}

.v-window-top-toolbar.v-menubar-borderless {
	padding-left: 6px;
	padding-right: 6px;
	margin: 5px 0;
}

.v-window-bottom-toolbar.v-layout {
	padding: 8px 13px;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0, white 4px);
	background-image: linear-gradient(to bottom,white 0, white 4px);
	border-top: 1px solid #e4e4e4;
	border-radius: 0 0 6px 6px;
}

.v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -13px -13px 0;
}

.v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -7px -7px 0;
	padding: 0;
}

.v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -13px -13px;
}

.v-tree {
	position: relative;
	white-space: nowrap;
}

.v-tree:focus {
	outline: none;
}

.v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 28px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.v-tree-node-caption {
	height: 28px;
	line-height: 27px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.v-tree-node-caption > div:before {
	content: "\f0da";
	font-family: ThemeIcons;
	display: inline-block;
	width: 0.5em;
	text-align: center;
	margin: 0 0.6em 0 0.8em;
	-webkit-transition: all 100ms;
	-moz-transition: all 100ms;
	transition: all 100ms;
}

.v-tree-node-caption span {
	padding-right: 28px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .v-tree-node-caption span {
	width: auto;
}

.v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -28px;
	width: 100%;
	height: 28px;
	border-radius: 6px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

.v-tree-node-expanded > .v-tree-node-caption > div:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-tree-node-leaf:before, .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid transparent;
}

.v-tree-node-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-tree-node-selected:after {
	opacity: 1;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	border: none;
}

.v-tree-node-children {
	padding-left: 19px;
}

.v-tree-node-drag-top:before, .v-tree-node-drag-bottom:after, .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded > .v-tree-node-children:before {
	content: "\2022";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: transparent;
	font-size: 28px;
	line-height: 2px;
	color: transparent;
	text-indent: -4px;
	text-shadow: 0 0 1px white, 0 0 1px white;
	opacity: 1;
	visibility: visible;
}

.v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px transparent;
	box-shadow: 0 0 0 2px transparent;
	position: relative;
	border-radius: 6px;
}

.v-ff  .v-tree-node-drag-top:before, .v-ff  .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.v-tree8 {
	position: relative;
}

.v-tree8-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.v-tree8-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.v-tree8-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.v-tree8-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.v-tree8-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.v-tree8-header-deco, .v-tree8-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.v-tree8-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.v-tree8-header, .v-tree8-body, .v-tree8-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.v-tree8-header, .v-tree8-header-deco {
	top: 0;
}

.v-tree8-footer, .v-tree8-footer-deco {
	bottom: 0;
}

.v-tree8-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.v-tree8-body .v-tree8-header > .v-tree8-row {
	position: relative;
}

.v-tree8-row {
	display: block;
}

.v-tree8-row  > td, .v-tree8-row  > th {
	background-color: white;
}

.v-tree8-row {
	width: inherit;
}

.v-tree8-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.v-tree8-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.v-tree8 {
	outline: none;
}

.v-tree8-scroller-vertical, .v-tree8-scroller-horizontal {
	border: none;
}

.v-tree8-scroller-vertical {
	border-left: none;
}

.v-tree8-scroller-horizontal {
	border-top: none;
}

.v-tree8-tablewrapper {
	border: none;
}

.v-tree8 .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-cell {
	border: none;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #eaecee;
	border: none;
	padding: 0;
	z-index: 5;
}

.v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.v-tree8-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 47px;
	text-overflow: ellipsis;
}

.v-tree8-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.v-tree8-cell  > div {
	display: inline-block;
}

.v-tree8-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.v-tree8-cell.frozen  + th, .v-tree8-cell.frozen  + td {
	border-left: none;
}

.v-tree8-cell div.component-wrap {
	width: 100%;
}

.v-tree8-row > td, .v-tree8-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.v-tree8-row > td:first-child, .v-tree8-editor-cells > div:first-child {
	border-left: none;
}

.v-tree8-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.v-tree8-row-stripe > td {
	background-color: #f5f5f5;
}

.v-tree8-row-selected > td {
	background: #197de1;
}

.v-tree8-row-focused > td {
	
}

.v-tree8-header th {
	position: relative;
	background-color: #eaecee;
	font-size: 14px;
	font-weight: inherit;
	border-left: none;
	border-bottom: none;
	
	text-align: left;
}

.v-tree8-header th:first-child {
	border-left: none;
}

.v-tree8-header .sort-asc, .v-tree8-header .sort-desc {
	padding-right: 35px;
}

.v-tree8-header .sort-asc:after, .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.v-tree8-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.v-tree8-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-tree8-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.v-tree8-footer td:first-child {
	border-left: none;
}

.v-tree8-header .v-tree8-cell, .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

.v-tree8-column-header-content, .v-tree8-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 47px;
	vertical-align: baseline;
}

.v-tree8-header-deco {
	border-top: none;
	border-right: none;
	background-color: #eaecee;
}

.v-tree8-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.v-tree8-cell-focused {
	position: relative;
}

.v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: none;
	display: none;
	pointer-events: none;
}

.v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: none;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.v-tree8-editor-cells.frozen {
	z-index: 2;
}

.v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.v-tree8-editor-cells  > div:first-child {
	border-left: none;
}

.v-tree8-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.v-tree8-editor-cells  > div input[type="text"], .v-tree8-editor-cells  > div input[type="text"].v-filterselect-input, .v-tree8-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.v-tree8-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .v-tree8-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.v-tree8-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.v-tree8-editor-cells  > div .v-textfield, .v-tree8-editor-cells  > div .v-datefield, .v-tree8-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.v-tree8-editor-cells  > div .v-select, .v-tree8-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.v-tree8-editor-cells  > div.not-editable.v-tree8-cell {
	float: none;
}

.v-tree8-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.v-tree8-editor-cells .error, .v-tree8-editor-cells .error > input {
	background-color: #fee;
}

.v-tree8-editor-footer {
	display: table;
	height: 47px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.v-tree8-editor-message, .v-tree8-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.v-tree8-editor-message {
	width: 100%;
	position: relative;
}

.v-tree8-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 47px;
	top: 0;
}

.v-tree8-editor-save {
	margin-right: 4px;
}

.v-tree8-spacer {
	padding-left: 1px;
}

.v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.v-tree8-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.v-tree8-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.v-tree8-cell > .v-progressbar {
	width: 100%;
}

.v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: white;
}

.v-tree8.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-tree8-header .v-tree8-cell {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-tree8-header .v-tree8-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -24px;
}

.v-tree8-footer .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-tree8-header-deco {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
}

.v-tree8-footer-deco, .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.v-tree8-row-selected  > .v-tree8-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #71b0ef;
}

.v-tree8-editor {
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	border-color: transparent;
}

.v-tree8-editor-footer {
	font-size: 14px;
	padding: 0 8px;
	background: #eaecee;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.v-tree8-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.v-tree8-editor-cells {
	z-index: 1;
}

.v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.v-tree8-editor-cells > div.not-editable.v-tree8-cell {
	float: none;
}

.v-tree8-editor-cells > div .error::before {
	border-top: 10px solid #d63030;
	border-right: 10px solid transparent;
}

.v-tree8-editor-cells > div .error, .v-tree8-editor-cells > div .error > input {
	background-color: #fefbfb;
}

.v-tree8-editor-cells > div .v-textfield, .v-tree8-editor-cells > div .v-textfield-focus, .v-tree8-editor-cells > div .v-datefield, .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .v-tree8-editor-cells > div .v-filterselect-input, .v-tree8-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	
	
}

.v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 45.6px;
}

.v-tree8-editor-cells > div .v-textfield-focus, .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.v-tree8-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.v-tree8-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.v-tree8-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.v-tree8-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.v-tree8-editor-message > div:before {
	display: inline-block;
	color: #d63030;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.v-tree8-editor-save, .v-tree8-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 8px 8px;
	margin: 0;
	outline: none;
}

.v-tree8-editor-save:hover, .v-tree8-editor-cancel:hover {
	color: #4396ea;
}

.v-tree8-editor-save.v-disabled, .v-tree8-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-tree8-spacer {
	
}

.v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-tree8-sidebar.v-contextmenu.closed {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
}

.v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.v-tree8-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.v-tree8-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.v-tree8-row-drag-top, .v-tree8-row-drag-bottom {
	z-index: 100;
}

.v-tree8-row-drag-top:before, .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.v-tree8-row-drag-top:before {
	top: -1px;
}

.v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #1463b3;
}

.v-tree8-row-selected.v-tree8-row-drag-top:before, .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #1463b3;
}

.v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

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

.v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-tree8-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.v-tree8-node.depth-0 {
	padding-left: 0em;
}

.v-tree8-node.depth-1 {
	padding-left: 1em;
}

.v-tree8-node.depth-2 {
	padding-left: 2em;
}

.v-tree8-node.depth-3 {
	padding-left: 3em;
}

.v-tree8-node.depth-4 {
	padding-left: 4em;
}

.v-tree8-node.depth-5 {
	padding-left: 5em;
}

.v-tree8-node.depth-6 {
	padding-left: 6em;
}

.v-tree8-node.depth-7 {
	padding-left: 7em;
}

.v-tree8-node.depth-8 {
	padding-left: 8em;
}

.v-tree8-node.depth-9 {
	padding-left: 9em;
}

.v-tree8-node.depth-10 {
	padding-left: 10em;
}

.v-tree8-node.depth-11 {
	padding-left: 11em;
}

.v-tree8-node.depth-12 {
	padding-left: 12em;
}

.v-tree8-node.depth-13 {
	padding-left: 13em;
}

.v-tree8-node.depth-14 {
	padding-left: 14em;
}

.v-tree8-node.depth-15 {
	padding-left: 15em;
}

.v-tree8-node.depth-16 {
	padding-left: 16em;
}

.v-tree8-node.depth-17 {
	padding-left: 17em;
}

.v-tree8-node.depth-18 {
	padding-left: 18em;
}

.v-tree8-node.depth-19 {
	padding-left: 19em;
}

.v-tree8-node.depth-20 {
	padding-left: 20em;
}

.v-tree8-node.depth-21 {
	padding-left: 21em;
}

.v-tree8-node.depth-22 {
	padding-left: 22em;
}

.v-tree8-node.depth-23 {
	padding-left: 23em;
}

.v-tree8-node.depth-24 {
	padding-left: 24em;
}

.v-tree8-node.depth-25 {
	padding-left: 25em;
}

.v-tree8-node.depth-26 {
	padding-left: 26em;
}

.v-tree8-node.depth-27 {
	padding-left: 27em;
}

.v-tree8-node.depth-28 {
	padding-left: 28em;
}

.v-tree8-node.depth-29 {
	padding-left: 29em;
}

.v-tree8-node.depth-30 {
	padding-left: 30em;
}

.v-tree8-node.depth-31 {
	padding-left: 31em;
}

.v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: none;
	display: none;
	pointer-events: none;
}

.v-tree8-cell-focused {
	position: static;
}

.v-tree8-cell-focused::before {
	display: none;
}

.v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.v-tree8 {
	background-color: transparent;
}

.v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.v-tree8-row > td  > * {
	vertical-align: baseline;
}

.v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.v-tree8-row::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	pointer-events: none;
	border-width: 1px;
}

.v-tree8-cell {
	position: relative;
}

.v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.v-tree8-row-selected::before {
	display: block;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
}

.v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #c8dbed;
}

.v-tree8-scroller-vertical {
	border: none;
}

.v-tree8-scroller-horizontal {
	border: none;
}

.v-tree8-header-deco, .v-tree8-footer-deco, .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.v-treegrid {
	position: relative;
}

.v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.v-treegrid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.v-treegrid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.v-treegrid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.v-treegrid-header-deco, .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.v-treegrid-header, .v-treegrid-body, .v-treegrid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.v-treegrid-header, .v-treegrid-header-deco {
	top: 0;
}

.v-treegrid-footer, .v-treegrid-footer-deco {
	bottom: 0;
}

.v-treegrid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.v-treegrid-row {
	display: block;
}

.v-treegrid-row  > td, .v-treegrid-row  > th {
	background-color: white;
}

.v-treegrid-row {
	width: inherit;
}

.v-treegrid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.v-treegrid {
	outline: none;
}

.v-treegrid-scroller-vertical, .v-treegrid-scroller-horizontal {
	border: none;
}

.v-treegrid-scroller-vertical {
	border-left: none;
}

.v-treegrid-scroller-horizontal {
	border-top: none;
}

.v-treegrid-tablewrapper {
	border: none;
}

.v-treegrid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-cell {
	border: none;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #197de1;
	position: absolute;
	width: 3px;
}

.v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #eaecee;
	border: none;
	padding: 0;
	z-index: 5;
}

.v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 14px;
}

.v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 14px;
	line-height: 1;
}

.v-ie .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.v-treegrid-cell {
	background-color: white;
	padding: 0 18px;
	line-height: 47px;
	text-overflow: ellipsis;
}

.v-treegrid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.v-treegrid-cell  > div {
	display: inline-block;
}

.v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.v-treegrid-cell.frozen  + th, .v-treegrid-cell.frozen  + td {
	border-left: none;
}

.v-treegrid-cell div.component-wrap {
	width: 100%;
}

.v-treegrid-row > td, .v-treegrid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.v-treegrid-row > td:first-child, .v-treegrid-editor-cells > div:first-child {
	border-left: none;
}

.v-treegrid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.v-treegrid-row-stripe > td {
	background-color: #f5f5f5;
}

.v-treegrid-row-selected > td {
	background: #197de1;
}

.v-treegrid-row-focused > td {
	
}

.v-treegrid-header th {
	position: relative;
	background-color: #eaecee;
	font-size: 14px;
	font-weight: inherit;
	border-left: none;
	border-bottom: none;
	
	text-align: left;
}

.v-treegrid-header th:first-child {
	border-left: none;
}

.v-treegrid-header .sort-asc, .v-treegrid-header .sort-desc {
	padding-right: 35px;
}

.v-treegrid-header .sort-asc:after, .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 18px;
	font-size: 12px;
}

.v-treegrid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.v-treegrid-column-resize-handle {
	position: absolute;
	width: 36px;
	right: -18px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 18px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.v-treegrid-footer td {
	background-color: #fafafa;
	font-size: 14px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.v-treegrid-footer td:first-child {
	border-left: none;
}

.v-treegrid-header .v-treegrid-cell, .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

.v-treegrid-column-header-content, .v-treegrid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 47px;
	vertical-align: baseline;
}

.v-treegrid-header-deco {
	border-top: none;
	border-right: none;
	background-color: #eaecee;
}

.v-treegrid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.v-treegrid-cell-focused {
	position: relative;
}

.v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: none;
	display: none;
	pointer-events: none;
}

.v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: none;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.v-treegrid-editor-cells  > div:first-child {
	border-left: none;
}

.v-treegrid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.v-treegrid-editor-cells  > div input[type="text"], .v-treegrid-editor-cells  > div input[type="text"].v-filterselect-input, .v-treegrid-editor-cells  > div input[type="password"] {
	padding-left: 18px;
}

.v-treegrid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .v-treegrid-editor-cells  > div input[type="password"] {
	padding-right: 9px;
}

.v-treegrid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 18px;
}

.v-treegrid-editor-cells  > div .v-textfield, .v-treegrid-editor-cells  > div .v-datefield, .v-treegrid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.v-treegrid-editor-cells  > div .v-select, .v-treegrid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.v-treegrid-editor-cells  > div.not-editable.v-treegrid-cell {
	float: none;
}

.v-treegrid-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.v-treegrid-editor-cells .error, .v-treegrid-editor-cells .error > input {
	background-color: #fee;
}

.v-treegrid-editor-footer {
	display: table;
	height: 47px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.v-treegrid-editor-message, .v-treegrid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

.v-treegrid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 47px;
	top: 0;
}

.v-treegrid-editor-save {
	margin-right: 4px;
}

.v-treegrid-spacer {
	padding-left: 1px;
}

.v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.v-treegrid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.v-treegrid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #197de1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: white;
}

.v-treegrid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-treegrid-header .v-treegrid-cell {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-treegrid-header .v-treegrid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -24px;
}

.v-treegrid-footer .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-treegrid-header-deco {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
}

.v-treegrid-footer-deco, .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: #c8dbed;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #1d69b4;
}

.v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #71b0ef;
}

.v-treegrid-editor {
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	border-color: transparent;
}

.v-treegrid-editor-footer {
	font-size: 14px;
	padding: 0 8px;
	background: #eaecee;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.v-treegrid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.v-treegrid-editor-cells {
	z-index: 1;
}

.v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.v-treegrid-editor-cells > div.not-editable.v-treegrid-cell {
	float: none;
}

.v-treegrid-editor-cells > div .error::before {
	border-top: 10px solid #d63030;
	border-right: 10px solid transparent;
}

.v-treegrid-editor-cells > div .error, .v-treegrid-editor-cells > div .error > input {
	background-color: #fefbfb;
}

.v-treegrid-editor-cells > div .v-textfield, .v-treegrid-editor-cells > div .v-textfield-focus, .v-treegrid-editor-cells > div .v-datefield, .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .v-treegrid-editor-cells > div .v-filterselect-input, .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	
	
}

.v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 45.6px;
}

.v-treegrid-editor-cells > div .v-textfield-focus, .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.v-treegrid-editor-cells > div .v-select {
	padding-left: 9px;
	padding-right: 9px;
}

.v-treegrid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 9px 0 18px;
}

.v-treegrid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.v-treegrid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.v-treegrid-editor-message > div:before {
	display: inline-block;
	color: #d63030;
	font-weight: 600;
	width: 19px;
	text-align: center;
	content: "!";
}

.v-treegrid-editor-save, .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 8px 8px;
	margin: 0;
	outline: none;
}

.v-treegrid-editor-save:hover, .v-treegrid-editor-cancel:hover {
	color: #4396ea;
}

.v-treegrid-editor-save.v-disabled, .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-treegrid-spacer {
	
}

.v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
}

.v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.v-treegrid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.v-treegrid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.v-treegrid-row-drag-top, .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.v-treegrid-row-drag-top:before, .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #197de1;
	pointer-events: none;
	border: none;
}

.v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.v-treegrid-row-drag-top:before {
	top: -1px;
}

.v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #197de1;
	pointer-events: none;
}

.v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #1463b3;
}

.v-treegrid-row-selected.v-treegrid-row-drag-top:before, .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #1463b3;
}

.v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #197de1;
	z-index: 100;
}

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

.v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-treegrid-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: none;
	display: none;
	pointer-events: none;
}

.v-treegrid-cell-focused {
	position: static;
}

.v-treegrid-cell-focused::before {
	display: none;
}

.v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.v-table {
	position: relative;
	background: white;
	color: #474747;
	overflow: hidden;
}

.v-table-header table, .v-table-footer table, .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4d4d4;
	box-shadow: 0 0 0 1px #d4d4d4;
}

.v-table-header-wrap, .v-table-footer-wrap, .v-table-header-drag {
	border: 1px solid #d4d4d4;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	white-space: nowrap;
	font-size: 14px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.v-table-footer-wrap {
	border-top: none;
}

.v-table-footer td {
	border-left: 1px solid #d4d4d4;
}

.v-table-footer-container, .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 37px;
	box-sizing: border-box;
}

.v-table-footer-container {
	padding: 11px 12px 12px;
	float: right;
}

[class^="v-table-header-cell"] {
	position: relative;
}

.v-table-caption-container, .v-table-header-drag {
	padding: 12px 12px 11px;
	border-left: 1px solid #d4d4d4;
}

.v-table-caption-container-align-right {
	padding-right: 4px;
}

.v-table-resizer {
	height: 37px;
	width: 8px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -8px;
}

.v-table-cell-content {
	border-left: 1px solid #d4d4d4;
	overflow: hidden;
	height: 38px;
	vertical-align: middle;
}

.v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.v-table-header td:first-child .v-table-caption-container, .v-table-footer td:first-child {
	border-left-color: transparent;
}

.v-table-cell-wrapper {
	line-height: 1;
	padding: 0 12px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.v-table-cell-wrapper  > .v-widget {
	margin: 3px -6px;
}

.v-table-cell-wrapper  > .v-widget.v-label, .v-table-cell-wrapper  > .v-widget.v-checkbox, .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.v-table-body {
	border: 1px solid #d4d4d4;
	overflow-anchor: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.v-table-table {
	background-color: white;
	white-space: nowrap;
}

.v-table-table td {
	border-top: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.v-table-table tr:first-child > td {
	height: 37px;
	border-top: none;
}

.v-table-row {
	background-color: white;
	cursor: pointer;
}

.v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.v-table-body-noselection .v-table-row, .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.v-table [class*="-row"].v-selected {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	background-origin: border-box;
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-table [class*="-row"].v-selected  + .v-selected {
	background: #197de1;
}

.v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #197de1;
}

.v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #1d69b4;
}

.v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.v-table-header-cell-asc .v-table-sort-indicator, .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 19px;
	height: 37px;
	line-height: 37px;
	margin-left: -19px;
}

.v-table-header-cell-asc .v-table-sort-indicator:before, .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

[class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.v-table-focus {
	outline: 1px solid transparent;
	outline-offset: -1px;
}

.v-drag-element.v-table-focus, .v-drag-element .v-table-focus {
	outline: none;
}

.v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -19px;
	z-index: 30000;
	line-height: 1;
}

.v-table-focus-slot-right {
	border-right: 3px solid transparent;
	right: -2px;
	margin-left: -11px !important;
}

.v-table-focus-slot-left {
	float: left;
	border-left: 3px solid transparent;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -11px;
}

.v-table-column-selector {
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	
	
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 19px;
	height: 19px;
	line-height: 19px;
	padding: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-radius: 0 0 0 6px;
	cursor: pointer;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0) ;
	-webkit-transition: opacity 200ms 2s;
	-moz-transition: opacity 200ms 2s;
	transition: opacity 200ms 2s;
}

.v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-table-column-selector:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-table-column-selector:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.v-on:before, .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 6px;
}

.v-on div, .v-off div {
	display: inline;
}

.v-on.v-disabled, .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-off:before {
	visibility: hidden;
}

tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

tbody.v-drag-element tr {
	display: block;
	
	
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.v-table-body {
	position: relative;
	z-index: 1;
}

.v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 38px;
	line-height: 38px;
	margin: -19px 0 0 !important;
	text-align: center;
}

.v-table-drag {
	overflow: visible;
}

.v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
	border-color: transparent;
}

.v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.v-table-row-drag-middle .v-table-cell-content {
	background-color: rgba(255, 255, 255, 0.8);
	color: rgba(71, 71, 71, 0.8);
}

.v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid transparent;
	height: 36px;
}

.v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid transparent;
	height: 37px;
}

.v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.v-table-no-stripes .v-table-row, .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 13px;
}

.v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 37px;
}

.v-table-no-header .v-table-header-wrap {
	display: none;
}

.v-table-borderless .v-table-header-wrap, .v-table-borderless .v-table-footer-wrap, .v-table-borderless .v-table-header-drag, .v-table-borderless .v-table-body {
	border: none;
}

.v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9d9d9;
}

.v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9d9d9;
}

.v-table-compact .v-table-header-wrap, .v-table-compact .v-table-footer-wrap, .v-table-compact .v-table-header-drag, .v-table-small .v-table-header-wrap, .v-table-small .v-table-footer-wrap, .v-table-small .v-table-header-drag {
	font-size: 14px;
}

.v-table-compact .v-table-footer-container, .v-table-small .v-table-footer-container {
	padding: 8px 7px 9px;
}

.v-table-compact .v-table-caption-container, .v-table-compact .v-table-header-drag, .v-table-small .v-table-caption-container, .v-table-small .v-table-header-drag {
	padding-top: 9px;
	padding-bottom: 8px;
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact .v-table-caption-container-align-right, .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.v-table-compact .v-table-resizer, .v-table-small .v-table-resizer {
	height: 31px;
}

.v-table-compact .v-table-cell-content, .v-table-small .v-table-cell-content {
	height: 31px;
}

.v-table-compact .v-table-cell-wrapper, .v-table-small .v-table-cell-wrapper {
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact .v-table-cell-wrapper  > .v-widget, .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 2px -3px;
}

.v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 31px;
	line-height: 31px;
}

.v-table-compact .v-table-header-drag, .v-table-small .v-table-header-drag {
	margin-top: -16px;
}

.v-table-compact.v-treetable .v-table-cell-wrapper, .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 14px;
}

.v-table-compact.v-treetable .v-table-cell-content, .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact.v-treetable .v-table-cell-content:first-child, .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 7px;
}

.v-table-compact.v-treetable .v-table-footer-container, .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact .v-table-row-drag-top .v-table-cell-content, .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .v-table-small .v-table-row-drag-top .v-table-cell-content, .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 30px;
}

.v-table-small {
	font-size: 14px;
}

.v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 14px;
}

.v-treetable [class*="caption-container"], .v-treetable [class*="footer-container"], .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.v-treetable [class*="caption-container"], .v-treetable [class*="footer-container"] {
	min-height: 14px;
}

.v-treetable [class*="cell-wrapper"] {
	min-height: 14px;
}

.v-treetable [class*="caption-container"] {
	padding-left: 12px;
}

.v-treetable [class*="caption-container-align-right"] {
	padding-left: 20px;
}

.v-treetable [class*="footer-container"] {
	padding-right: 12px;
}

.v-treetable [class*="cell-content"] {
	padding-left: 12px;
	padding-right: 12px;
}

.v-treetable [class*="cell-content"]:first-child {
	padding-left: 13px;
}

.v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 19px !important;
	margin-left: -25px;
	text-align: center;
	cursor: pointer;
}

.v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -6px;
	right: -6px;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: white;
	background-image: -webkit-linear-gradient(left, white 0%, white 100%);
	background-image: linear-gradient(to right,white 0%, white 100%);
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -6px;
	bottom: -6px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 13px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: white;
	background-image: -webkit-linear-gradient(left, white 0%, white 100%);
	background-image: linear-gradient(to right,white 0%, white 100%);
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #dedede;
	border-top-color: #bebebe;
	border-left-color: #bebebe;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 38px;
	margin-left: -1px;
	margin-top: -19px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 13px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 13px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #dedede;
	border-top-color: #bebebe;
	border-left-color: #bebebe;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 38px;
	height: 0;
	margin-left: -19px;
	margin-top: -1px;
}

.v-progressbar-wrapper {
	border-radius: 4px;
	height: 10px;
	background-color: #d9d9d9;
	background-image: -webkit-linear-gradient(bottom, #d9d9d9 0%, #d9d9d9 100%);
	background-image: linear-gradient(to top,#d9d9d9 0%, #d9d9d9 100%);
	box-sizing: border-box;
	min-width: 76px;
}

.v-progressbar-indicator {
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 12px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	width: 10px;
	vertical-align: top;
}

.v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.v-slider {
	position: relative;
}

.v-slider:focus {
	outline: none;
}

.v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

.v-slider.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-slider-base {
	border-radius: 4px;
	height: 10px;
	background-color: #d9d9d9;
	background-image: -webkit-linear-gradient(bottom, #d9d9d9 0%, #d9d9d9 100%);
	background-image: linear-gradient(to top,#d9d9d9 0%, #d9d9d9 100%);
	box-sizing: border-box;
	min-width: 76px;
	height: 6px;
	margin: 16px 11px;
	white-space: nowrap;
	overflow: hidden;
	
}

.v-slider-base:before {
	content: "";
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 11px;
	width: 12px;
	border-radius: 6px;
	border-left: 1px solid #1362b1;
}

.v-slider-base:after {
	border-radius: 4px;
	height: inherit;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	
	
	border: 1px solid #1362b1;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.v-has-width > .v-slider-base {
	min-width: 0;
}

.v-slider-handle {
	margin-top: -16px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.v-slider-handle:before {
	height: 38px;
	padding: 0 18px;
	color: #1a1a1a;
	font-weight: 500;
	
	
	border-radius: 6px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-slider-handle:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-slider-handle:before:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-slider-handle:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-slider-handle:after {
	border: 1px solid #c9c9c9;
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.v-slider-handle:before, .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 22px;
	height: 22px;
	border-radius: 11px;
	position: absolute;
	z-index: 1;
	margin-top: 8px;
	margin-left: -11px;
}

.v-slider-feedback {
	background-color: rgba(50, 50, 50, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 5px 9px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 14px;
}

.v-slider-vertical {
	padding: 11px 0;
	height: 98px;
}

.v-slider-vertical .v-slider-base {
	background-color: #d9d9d9;
	background-image: -webkit-linear-gradient(right, #d9d9d9 0%, #d9d9d9 100%);
	background-image: linear-gradient(to left,#d9d9d9 0%, #d9d9d9 100%);
	width: 6px;
	height: 100% !important;
	min-width: 0;
	margin: 0 16px;
}

.v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 11px;
	left: 16px;
	right: 16px;
	width: auto;
	height: 12px;
	border-left: none;
	border-bottom: 1px solid #1362b1;
}

.v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(left, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to right,#197de1 0%, #197de1 100%);
}

.v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 38px;
	display: block;
}

.v-slider-vertical .v-slider-handle:before, .v-slider-vertical .v-slider-handle:after {
	width: 22px;
	height: 22px;
	margin-top: -11px;
	margin-left: -8px;
}

.v-slider-no-indicator .v-slider-base:before, .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.v-tabsheet-spacertd {
	display: none !important;
}

.v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #d1d3d5;
	bottom: 0;
	left: 0;
	right: 0;
}

.v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.v-tabsheet-tabitemcell .v-caption {
	margin-left: 19px;
	padding: 0 4px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 38px;
	font-size: 13px;
	font-weight: 400;
	color: #5c636b;
	width: auto !important;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 2px solid transparent;
	position: relative;
	-webkit-transition: border-bottom 200ms, color 200ms;
	-moz-transition: border-bottom 200ms, color 200ms;
	transition: border-bottom 200ms, color 200ms;
}

.v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 10px;
}

.v-tabsheet-tabitemcell .v-caption:hover {
	color: #197de1;
}

.v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.v-tabsheet-tabitemcell:first-child .v-caption, .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.v-tabsheet-tabitemcell:not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 19px;
}

.v-tabsheet-tabitemcell:focus {
	outline: none;
}

.v-tabsheet-tabitemcell:focus .v-caption {
	color: #197de1;
}

.v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #197de1;
	color: #197de1;
}

.v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 19px;
}

.v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 4px;
}

.v-tabsheet-tabitemcell .v-tabsheet-caption-close {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -7px 0 0;
	font-size: 15px;
	line-height: 15px;
	width: 15px;
	text-align: center;
	border-radius: 3px;
	color: #848e97;
}

.v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #197de1;
}

.v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #197de1;
	color: #c8dbed;
}

.v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 19px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, white 70%, rgba(255, 255, 255, 0) 100%);
	background-image: linear-gradient(to left,white 70%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.v-tabsheet-scroller:after {
	content: "";
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #e4e4e4 70%, rgba(228, 228, 228, 0) 100%);
	background-image: linear-gradient(to left,#e4e4e4 70%, rgba(228, 228, 228, 0) 100%);
}

.v-tabsheet-scroller button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	height: 100%;
	margin: 0;
	padding: 0 10px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #197de1;
}

.v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #197de1;
}

.v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.v-tabsheet-scroller [class*="Next"] {
	padding-left: 5px;
}

.v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.v-tabsheet-scroller [class*="Prev"] {
	padding-right: 5px;
}

.v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.v-tabsheet-tabsheetpanel > .v-scrollable > .v-widget {
	-webkit-animation: valo-animate-in-fade 300ms backwards;
	-moz-animation: valo-animate-in-fade 300ms backwards;
	animation: valo-animate-in-fade 300ms backwards;
}

.v-tabsheet-deco {
	height: 20px !important;
	width: 20px !important;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	position: absolute;
	z-index: 1;
	bottom: 50%;
	margin-bottom: -29px;
	left: 50%;
	margin-left: -10px;
}

.v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 4px;
	padding: 0 15px;
	background-color: #eaecee;
	border: 1px solid transparent;
	line-height: 37px;
	border-radius: 6px 6px 0 0;
	font-weight: 500;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	transition: background-color 160ms;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #e2e4e7;
	border-bottom-color: #d1d3d5;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #eaecee;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 30px;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 4px;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #d1d3d5;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #d1d3d5;
	border-bottom: none;
	padding-bottom: 1px;
}

.v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #d1d3d5;
	border-top: none;
}

.v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #d1d3d5;
	border-bottom: none;
	background: white;
	padding-top: 6px;
}

.v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 7px;
}

.v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 10px;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 6px;
	padding-bottom: 6px;
	line-height: 1.2;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 15px;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 10px;
}

.v-colorpicker-popup [class$="sliders"] {
	padding: 13px;
}

.v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 42px;
}

.v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -42px;
	width: 42px;
}

.v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 70px;
}

.v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -70px;
	width: 70px;
}

.v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.v-colorpicker-popup .resize-button-caption {
	display: none;
}

.v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 10px 0;
	background-color: white;
	border-top: 1px solid #f2f2f2;
}

.v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 10px;
	display: inline-flex;
}

.v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.v-colorpicker {
	width: auto;
}

.v-colorpicker-button-color {
	position: absolute;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 6px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 23px;
}

.v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 19px;
}

.v-panel {
	background: white;
	color: #474747;
	border-radius: 6px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	overflow: visible !important;
}

.v-panel-caption {
	box-sizing: border-box;
	padding: 0 13px;
	line-height: 37px;
	border-bottom: none;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	color: #474747;
	font-weight: 400;
	font-size: 13px;
	
	
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 5px 5px 0 0;
}

.v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.v-panel-content  > .v-margin-top {
	padding-top: 13px;
}

.v-panel-content  > .v-margin-right {
	padding-right: 13px;
}

.v-panel-content  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-panel-content  > .v-margin-left {
	padding-left: 13px;
}

.v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 13px;
	border-bottom: none;
}

.v-panel-well {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset none;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset none;
	border-radius: 6px;
	border: 1px solid #c9c9c9;
}

.v-panel-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.v-panel-caption.v-horizontallayout .v-label {
	line-height: 38px;
}

.v-accordion {
	background: white;
	color: #474747;
	border-radius: 6px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	overflow: hidden;
}

.v-accordion-item {
	position: relative;
}

.v-accordion-item:first-child {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.v-accordion-item:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: none;
}

.v-accordion-item-caption {
	border-radius: inherit;
}

.v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 13px;
	line-height: 37px;
	border-bottom: none;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	color: #474747;
	font-weight: 400;
	font-size: 13px;
	
	
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: block;
	background: transparent;
	border-bottom-color: #c9c9c9;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.v-accordion-item-caption  > .v-caption:hover:before, .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-accordion-item-content {
	-webkit-box-shadow: inset none;
	box-shadow: inset none;
	background-color: white;
	box-sizing: border-box;
}

.v-accordion-item-content  > .v-margin-top {
	padding-top: 13px;
}

.v-accordion-item-content  > .v-margin-right {
	padding-right: 13px;
}

.v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-accordion-item-content  > .v-margin-left {
	padding-left: 13px;
}

.v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-accordion-borderless  > .v-accordion-item, .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.v-select-twincol {
	white-space: normal;
}

.v-select-twincol select {
	border: 1px solid #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	color: #474747;
}

.v-select-twincol select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-select-twincol .v-textfield, .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 10px;
}

.v-select-twincol .v-nativebutton {
	margin-left: 10px;
}

.v-select-twincol-caption-left, .v-select-twincol-caption-right {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 2px;
}

.v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.v-select-twincol-buttons .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
	position: absolute;
	left: 10px;
	right: 10px;
	top: 37px;
	padding: 0;
	text-align: center;
}

.v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.v-select-twincol-buttons .v-button-caption {
	display: none;
}

.v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.v-select-twincol-buttons .v-button:first-child {
	border-radius: 6px 6px 0 0;
}

.v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 6px 6px;
}

.v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.v-select-twincol-error .v-select-twincol-options, .v-select-twincol-error .v-select-twincol-selections {
	border-color: #d63030 !important;
	background: #fefbfb;
	color: #652828;
}

.v-select-twincol-error-info .v-select-twincol-options, .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.v-select-twincol-error-warning .v-select-twincol-options, .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.v-select-twincol-error-error .v-select-twincol-options, .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-select-twincol-error-critical .v-select-twincol-options, .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.v-select-twincol-error-system .v-select-twincol-options, .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.v-select select {
	border: 1px solid #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	color: #474747;
}

.v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-select-select {
	display: block;
}

.v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 10px;
}

.v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 10px;
	margin-left: 10px;
}

.v-select-error .v-select-select {
	border-color: #d63030 !important;
	background: #fefbfb;
	color: #652828;
}

.v-calendar-header-day {
	font-weight: 500;
	text-align: center;
	padding: 8px 0;
}

.v-calendar-header-week .v-calendar-back, .v-calendar-header-week .v-calendar-next {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	outline: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-header-week .v-calendar-back:focus, .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.v-calendar-header-week .v-calendar-back:hover, .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.v-calendar-header-week .v-calendar-back:active, .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.v-calendar-month {
	outline: none;
	overflow: hidden;
}

.v-calendar-month td {
	vertical-align: top;
}

.v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.v-calendar-bottom-spacer, .v-calendar-spacer, .v-calendar-bottom-spacer-empty {
	height: 17px;
	margin-bottom: 3px;
}

.v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 5px;
	cursor: pointer;
}

.v-calendar-bottom-spacer:hover {
	color: transparent;
}

.v-calendar-day-number {
	line-height: 25px;
	font-size: 14px;
	text-align: right;
	margin: 0 5px;
	white-space: nowrap;
	border-top: 1px solid #f7f7f7;
	cursor: pointer;
}

.v-calendar-day-number:hover {
	color: transparent;
}

.v-calendar-month-day-today {
	background: #f2f2f2;
}

.v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 500;
	color: transparent;
	border-top: 2px solid transparent;
	line-height: 24px;
	margin: 0;
	padding: 0 5px;
}

.v-calendar-month-day-selected {
	background-color: #e8f2fc;
}

.v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

.v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e6e6e6;
}

.v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 19px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.v-calendar-header-week td {
	vertical-align: middle !important;
}

.v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.v-calendar-time {
	text-align: right;
	padding-right: 10px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.v-calendar-day-times, .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.v-calendar-day-times:focus, .v-calendar-day-times-today:focus {
	outline: none;
}

.v-calendar .v-datecellslot, .v-calendar .v-datecellslot-even {
	border-top: 1px solid #d1d3d5;
}

.v-calendar .v-datecellslot:first-child, .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.v-calendar .v-datecellslot, .v-calendar .v-datecellslot-even {
	margin-right: 5px;
}

.v-calendar-current-time {
	background: transparent;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-current-time:before {
	content: "\2022";
	color: transparent;
	font-size: 22px;
	margin-left: -0.07em;
}

.v-calendar .v-daterange {
	position: relative;
}

.v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #197de1;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 6px 6px 0 0;
}

.v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 6px;
}

.v-calendar-event:focus {
	outline: none;
}

.v-calendar-event-month {
	padding: 0 5px;
	box-sizing: border-box;
	margin-bottom: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 17px;
	line-height: 17px;
}

.v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 17px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.v-calendar-event-all-day {
	padding: 0 5px;
	box-sizing: border-box;
	height: 17px;
	line-height: 17px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.v-calendar-event-all-day:before {
	content: "";
}

.v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.v-calendar-event-start.v-calendar-event-continued-to, .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.v-calendar-event-start {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	margin-left: 5px;
}

.v-calendar-event-end {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	margin-right: 5px;
}

.v-calendar-event-caption {
	font-weight: 600;
	line-height: 1.2;
	padding: 5px 0;
	position: absolute;
	overflow: hidden;
	right: 10px;
	left: 5px;
	bottom: 0;
	top: 0;
}

.v-calendar-event-caption span {
	font-weight: 400;
	white-space: nowrap;
}

.v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 7px;
	border: 1px solid #eaecee;
	padding-top: 3px;
	margin-right: 5px;
}

.v-calendar-event-month:before {
	color: #00ace0;
}

.v-calendar-event-all-day {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
	color: #00ace0;
}

.v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
}

.v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.v-calendar-event-all-day[class*="color2"] {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
	color: #2d9f19;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
}

.v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.v-calendar-event-all-day[class*="color3"] {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
	color: #d18100;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
}

.v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.v-calendar-event-all-day[class*="color4"] {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
	color: #ce3812;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
}

.v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.v-calendar-event-all-day[class*="color5"] {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
	color: #2d55cd;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
}

.v-calendar.v-disabled * {
	cursor: default;
}

.v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.v-label.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-label-undef-w {
	white-space: nowrap;
}

h1, .v-label-h1, h2, .v-label-h2, h3, .v-label-h3 {
	line-height: 1.1;
	font-weight: 200;
	color: #121314;
}

h1, .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

h2, .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

h3, .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

h4, .v-label-h4 {
	line-height: 1.1;
	font-weight: 600;
	font-size: 14px;
	color: #393d41;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.v-csslayout  > h1:first-child, .v-csslayout  > h2:first-child, .v-csslayout  > h3:first-child, .v-csslayout  > h4 > .v-label-h1:first-child, .v-csslayout  > .v-label-h2:first-child, .v-csslayout  > .v-label-h3:first-child, .v-csslayout  > .v-label-h4:first-child {
	margin-top: 14px;
}

.v-verticallayout > .v-slot:first-child h1, .v-verticallayout > .v-slot:first-child .v-label-h1, .v-verticallayout > .v-slot:first-child h2, .v-verticallayout > .v-slot:first-child .v-label-h2, .v-verticallayout > .v-slot:first-child h3, .v-verticallayout > .v-slot:first-child .v-label-h3, .v-verticallayout > .v-slot:first-child h4, .v-verticallayout > .v-slot:first-child .v-label-h4, .v-verticallayout > div > .v-slot:first-child h1, .v-verticallayout > div > .v-slot:first-child .v-label-h1, .v-verticallayout > div > .v-slot:first-child h2, .v-verticallayout > div > .v-slot:first-child .v-label-h2, .v-verticallayout > div > .v-slot:first-child h3, .v-verticallayout > div > .v-slot:first-child .v-label-h3, .v-verticallayout > div > .v-slot:first-child h4, .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 14px;
}

.v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

h1.no-margin, .v-label-h1.no-margin, h2.no-margin, .v-label-h2.no-margin, h3.no-margin, .v-label-h3.no-margin, h4.no-margin, .v-label-h4.no-margin {
	margin: 0 !important;
}

.v-label-colored {
	color: #197de1;
}

.v-label-large {
	font-size: 20px;
}

.v-label-small {
	font-size: 14px;
}

.v-label-tiny {
	font-size: 12px;
}

.v-label-huge {
	font-size: 26px;
}

.v-label-bold {
	font-weight: 600;
}

.v-label-light {
	font-weight: 300;
}

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

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

.v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.v-label-success, .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #2c9720;
	border-radius: 6px;
	padding: 8px 19px 8px 38px;
	font-weight: 500;
	font-size: 13px;
}

.v-label-success:before, .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -19px;
	color: #2c9720;
}

.v-label-failure {
	border-color: #d63030;
}

.v-label-failure:before {
	content: "\f05e";
	color: #d63030;
}

[draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.v-ddwrapper {
	position: relative;
}

.v-ddwrapper-over:before, .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid transparent;
}

.v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.no-vertical-drag-hints .v-ddwrapper-over-top:before, .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.no-vertical-drag-hints .v-ddwrapper-over-top:after, .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 6px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(128, 128, 128, 0);
}

.no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 6px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(128, 128, 128, 0);
}

.no-horizontal-drag-hints.v-ddwrapper-over-left:before, .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.no-horizontal-drag-hints.v-ddwrapper-over-left:after, .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 6px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(128, 128, 128, 0);
}

.no-horizontal-drag-hints.v-ddwrapper-over-right:before, .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.no-horizontal-drag-hints.v-ddwrapper-over-right:after, .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 6px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(128, 128, 128, 0);
}

.v-ddwrapper-over-middle:after, .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 6px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(128, 128, 128, 0);
}

.no-box-drag-hints.v-ddwrapper:after, .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.v-nativebutton {
	-webkit-touch-callout: none;
}

.v-select select {
	border: 1px solid #c9c9c9;
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	color: #474747;
}

.v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-select-select {
	display: block;
}

.v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 10px;
}

.v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 10px;
	margin-left: 10px;
}

.v-select-error .v-select-select {
	border-color: #d63030 !important;
	background: #fefbfb;
	color: #652828;
}

.v-popupview {
	cursor: pointer;
	color: #197de1;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-popupview:hover {
	color: #4396ea;
}

.v-popupview.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-popupview-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.v-popupview-popup[class*="animate-in"] {
	-webkit-animation: v-popupview-animate-in 120ms;
	-moz-animation: v-popupview-animate-in 120ms;
	animation: v-popupview-animate-in 120ms;
}

.v-popupview-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 13px;
}

.v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 13px;
}

.v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 13px;
}

.v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 13px;
}

.v-popupview-loading {
	margin: 15px 15px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 6px;
	padding: 0;
	border: 1px solid white;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	overflow: hidden;
}

.v-richtextarea[class*="prompt"] {
	color: #a3a3a3;
}

.v-richtextarea .gwt-RichTextToolbar {
	background-color: white;
	background-image: -webkit-linear-gradient(top, white 0%, white 100%);
	background-image: linear-gradient(to bottom,white 0%, white 100%);
	
	
	border-bottom: 1px solid #c9c9c9;
	color: #474747;
}

.v-richtextarea .gwt-ToggleButton, .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 38px;
	width: 38px;
	text-align: center;
	outline: none;
}

.v-richtextarea .gwt-ToggleButton:hover, .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.v-richtextarea .gwt-ToggleButton-down, .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e6e6e6;
	background-image: -webkit-linear-gradient(bottom, #e6e6e6 0%, #e6e6e6 100%);
	background-image: linear-gradient(to top,#e6e6e6 0%, #e6e6e6 100%);
}

.v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 11px;
	padding: 0 10px 10px 0;
}

.v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 10px 0 0 10px;
}

.v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.v-richtextarea-readonly {
	padding: 5px 7px;
	background: transparent;
}

.v-upload .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.v-upload-immediate .v-button {
	width: 100%;
}

.v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 38px;
	text-align: right;
	border: none;
	background: transparent;
}

.v-Notification.v-position-top {
	top: 15px;
}

.v-Notification.v-position-right {
	right: 15px;
}

.v-Notification.v-position-bottom {
	bottom: 15px;
}

.v-Notification.v-position-left {
	left: 15px;
}

.v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.v-Notification-animate-in {
	-webkit-animation: valo-animate-in-fade 180ms 10ms backwards;
	-moz-animation: valo-animate-in-fade 180ms 10ms backwards;
	animation: valo-animate-in-fade 180ms 10ms backwards;
}

.v-Notification-animate-in.v-position-top {
	-webkit-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	animation: valo-animate-in-slide-down 400ms 10ms backwards;
}

.v-Notification-animate-in.v-position-bottom {
	-webkit-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	animation: valo-animate-in-slide-up 400ms 10ms backwards;
}

.v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.v-Notification-animate-out.v-position-top, .v-Notification-animate-out.v-position-bottom {
	-webkit-animation: valo-animate-out-slide-down-fade 200ms;
	-moz-animation: valo-animate-out-slide-down-fade 200ms;
	animation: valo-animate-out-slide-down-fade 200ms;
}

.v-Notification {
	border-radius: 6px;
	text-align: center;
	position: fixed !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	background: white;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	padding: 19px 22px;
}

.v-Notification .v-Notification-caption {
	color: #197de1;
	font-size: 17px;
	line-height: 1;
}

.v-Notification .v-Notification-description {
	line-height: 1.4;
}

.v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.v-Notification-description, .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.v-Notification-caption ~ .v-Notification-description, .v-Notification-caption ~ .v-Notification-details {
	margin-left: 21px;
}

.v-icon + .v-Notification-caption {
	margin-left: 14px;
}

.v-Notification-system {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 13px 15px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 500;
	line-height: 20px;
}

.v-Notification-system .v-Notification-description, .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.v-Notification-system.v-position-top {
	top: 0;
}

.v-Notification-system.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.v-Notification-system.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.v-Notification-system.v-position-bottom {
	bottom: 0;
}

.v-Notification-system.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.v-Notification-system.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.v-Notification-system .v-Notification-description, .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.v-Notification-system u {
	text-decoration: none;
}

.v-Notification.tray {
	text-align: left;
}

.v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.v-Notification.warning {
	background: #FFF3D2;
}

.v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.v-Notification.error {
	background: #d63030;
	font-weight: 500;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	padding-right: 60px;
	overflow: hidden !important;
	cursor: pointer;
}

.v-Notification.error .v-Notification-caption {
	color: white;
}

.v-Notification.error .v-Notification-description {
	color: #f0dcdc;
}

.v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -13px;
	right: 13px;
	width: 25px;
	height: 25px;
	line-height: 24px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.v-Notification.error:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 500;
	line-height: 20px;
}

.v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.v-Notification.dark .v-Notification-description, .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.v-Notification.bar {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 13px 15px;
}

.v-Notification.bar .v-Notification-description, .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.v-Notification.bar.v-position-top {
	top: 0;
}

.v-Notification.bar.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.v-Notification.bar.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.v-Notification.bar.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.v-Notification.bar.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.v-Notification.small {
	padding: 12px 14px;
}

.v-Notification.small .v-Notification-caption {
	font-size: 14px;
}

.v-Notification.small .v-Notification-description {
	font-size: 12px;
}

.v-Notification.critical-error {
	background: #d63030;
	font-weight: 500;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
}

.v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.v-Notification.critical-error .v-Notification-description {
	color: #f0dcdc;
}

.v-Notification.closable {
	padding-right: 60px;
	overflow: hidden !important;
	cursor: pointer;
}

.v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -13px;
	right: 13px;
	width: 25px;
	height: 25px;
	line-height: 24px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.v-Notification.closable:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.v-Notification.closable.dark:after, .v-Notification.closable.critical-error:after, .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.v-Notification.closable.dark:active:after, .v-Notification.closable.critical-error:active:after, .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.v-Notification.closable.tray:after {
	top: 17px;
	margin-top: 0;
}

.v-Notification.success, .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.v-Notification.success .v-Notification-caption, .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 500;
}

.v-Notification.success .v-Notification-caption:before, .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.v-Notification.success.bar, .v-Notification.failure.bar {
	margin: -2px !important;
}

.v-Notification.failure {
	border-color: #d63030;
}

.v-Notification.failure .v-Notification-caption {
	color: #d63030;
}

.v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.valo-menu {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #4b4b4b 0%, #4b4b4b 10px);
	background-image: linear-gradient(to left,#4b4b4b 0%, #4b4b4b 10px);
	color: #a5a5a5;
	font-size: 13px;
	line-height: 30px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
}

.valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.valo-menu-part {
	border-left: 1px solid #414141;
	height: 100%;
	padding-bottom: 38px;
	overflow: auto;
}

.valo-menu-part:first-child {
	border-left: none;
}

.valo-menu-title, .valo-menu-subtitle, .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.valo-menu-title .valo-menu-badge, .valo-menu-subtitle .valo-menu-badge, .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 19px;
}

.valo-menu-title {
	line-height: 1.2;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 13px 19px;
	font-size: 13px;
	border-bottom: 1px solid #1362b1;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-align: center;
}

.valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #1362b1;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.valo-menu-title .v-menubar-menuitem {
	background: transparent;
	
	
	text-shadow: inherit;
	font-size: 14px;
	border-color: inherit;
}

.valo-menu-title h1, .valo-menu-title .v-label-h1, .valo-menu-title h2, .valo-menu-title .v-label-h2, .valo-menu-title h3, .valo-menu-title .v-label-h3, .valo-menu-title h4, .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.v-menubar-user-menu {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
	margin: 19px 8px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.v-menubar-user-menu:focus:after {
	display: none;
}

.v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 6px;
	color: #197de1;
	padding: 0 13px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-menubar-user-menu .v-menubar-menuitem:first-child, .v-menubar-user-menu .v-menubar-menuitem:last-child, .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 6px;
}

.v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #4396ea;
}

.v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.v-menubar-user-menu .v-menubar-menuitem-checked, .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c9c9c9;
	color: #197de1;
}

.v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #ecf2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #ecf2f8;
}

.v-menubar-user-menu .v-menubar-menuitem-disabled, .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 57px;
	height: 57px;
	border-radius: 30px;
	box-shadow: none;
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #c9c9c9;
}

.v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.valo-menu-subtitle {
	color: #868686;
	margin: 8px 0 8px 19px;
	border-bottom: 1px solid #666666;
}

.valo-menu-subtitle [class*="badge"] {
	color: #73a5d7;
}

.valo-menuitems {
	display: block;
}

.valo-menu-item {
	outline: none;
	font-weight: 500;
	padding: 0 38px 0 19px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
	-webkit-transition: background-color 300ms, color 60ms;
	-moz-transition: background-color 300ms, color 60ms;
	transition: background-color 300ms, color 60ms;
}

.valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 19px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.valo-menu-item [class*="badge"] {
	color: #73a5d7;
}

.valo-menu-item.selected {
	background: #434343;
}

.valo-menu-item.selected .v-icon {
	color: #197de1;
}

.valo-menu-item.selected [class*="badge"] {
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: #c8dbed;
}

.valo-menu-item:focus, .valo-menu-item:hover, .valo-menu-item.selected {
	color: white;
}

.valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 19px;
	text-align: center;
	vertical-align: middle;
	-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0.75)));
}

.valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.valo-menu-item [class*="badge"] {
	background-color: #585858;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 4px 6px;
	min-width: 9px;
	text-align: center;
	top: 4.5px;
	border-radius: 6px;
}

.valo-menu-part.large-icons {
	background-color: #4b4b4b;
	min-width: 76px;
	max-width: 114px;
}

.valo-menu-part.large-icons .valo-menu-title {
	font-size: 11px;
}

.valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 29px;
	height: 29px;
}

.valo-menu-part.large-icons [class*="subtitle"] {
	margin: 10px 0 0;
	padding: 8px 25px 8px 10px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 11px;
	box-shadow: none;
}

.valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 10px;
}

.valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 13px;
	text-align: center;
	border-top: 1px solid #555555;
}

.valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.3;
}

.valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.valo-menu-part.large-icons .valo-menu-item.selected {
	background: #434343;
}

.valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 8px;
	right: 8px;
	border: 2px solid #4b4b4b;
}

.valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 46px !important;
	height: 46px;
	border-radius: 6px;
	text-align: center;
	background-color: #197de1;
	background-image: -webkit-linear-gradient(top, #197de1 0%, #197de1 100%);
	background-image: linear-gradient(to bottom,#197de1 0%, #197de1 100%);
	color: white;
	font-size: 25px;
	line-height: 46px;
	margin: 19px auto;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valo-menu-logo:focus {
	outline: none;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #4b4b4b;
	min-width: 76px;
	max-width: 114px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 11px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 29px;
	height: 29px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 10px 0 0;
	padding: 8px 25px 8px 10px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 11px;
	box-shadow: none;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 10px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 13px;
	text-align: center;
	border-top: 1px solid #555555;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.3;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #434343;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 8px;
	right: 8px;
	border: 2px solid #4b4b4b;
}

.valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 38px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 38px;
}

.valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 38px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	height: 38px;
	color: #97bee5;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 37px;
	white-space: nowrap;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu img.v-icon {
	display: inline-block;
	margin: 0 6px 0 0;
	width: 19px;
	height: 19px;
	border-radius: 10px;
	border: none;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #4b4b4b 0%, #4b4b4b 10px);
	background-image: linear-gradient(to left,#4b4b4b 0%, #4b4b4b 10px);
	color: #a5a5a5;
	font-size: 13px;
	line-height: 30px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 38px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 19px 0;
	-webkit-transform: translatex(-100%);
	-moz-transform: translatex(-100%);
	-ms-transform: translatex(-100%);
	-o-transform: translatex(-100%);
	transform: translatex(-100%);
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .valo-menu-responsive[width-range~="0-800px"] .valo-menu-hover:hover .valo-menuitems {
	-webkit-transform: translatex(0%);
	-moz-transform: translatex(0%);
	-ms-transform: translatex(0%);
	-o-transform: translatex(0%);
	transform: translatex(0%);
}

.valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 19px;
	overflow: hidden;
}

.scrollme {
	position: relative;
	width: 100%;
}

.ps {
	overflow: hidden !important;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;
}

.ps__rail-x {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	height: 15px;
	bottom: 0px;
	position: absolute;
}

.ps__rail-y {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	width: 15px;
	right: 0;
	position: absolute;
}

.ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y {
	display: block;
	background-color: transparent;
}

.ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y, .ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y {
	opacity: 0.6;
}

.ps .ps__rail-x:hover, .ps .ps__rail-y:hover, .ps .ps__rail-x:focus, .ps .ps__rail-y:focus, .ps .ps__rail-x.ps--clicking, .ps .ps__rail-y.ps--clicking {
	background-color: #eee;
	opacity: 0.9;
}

.ps__thumb-x {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, height 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
	height: 6px;
	bottom: 2px;
	position: absolute;
}

.ps__thumb-y {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, width 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
	width: 6px;
	right: 2px;
	position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x.ps--clicking .ps__thumb-x {
	background-color: #999;
	height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y.ps--clicking .ps__thumb-y {
	background-color: #999;
	width: 11px;
}

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.ps {
		overflow: auto !important;
	}
}

.page-wrapper {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	height: 100%;
}

.page-header {
	align-items: center;
	display: flex;
	max-height: 60px;
	min-height: 60px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: white;
	z-index: 10;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-breadcrumb-layout {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.page-breadcrumb-layout .v-image {
	height: 16px;
}

.page-header__breadcrumb-layout {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.page-header__breadcrumb-layout  > .page-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page-header__button-wrapper {
	align-items: center;
	display: flex;
	flex-grow: 1;
	justify-content: flex-end;
}

.page-header__button-wrapper  > .v-widget {
	margin-left: 15px;
}

.page-header__button-wrapper  > .v-widget:first-child {
	margin-left: 0;
}

.header-title {
	position: absolute;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	width: 100%;
}

.page-content {
	display: block;
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 15px;
}

.page-text-content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.page-content--inside {
	padding: 0;
	justify-content: center;
	display: flex;
	align-items: center;
}

.page-header--inside-background {
	background: none;
	padding: 0;
	box-shadow: none;
}

.page-title {
	color: #333333;
	font-size: 20px;
	font-weight: 500;
	font-family: "U";
	line-height: 24px;
}

.block-title {
	color: #333333;
	font-size: 15px;
	font-weight: 700;
	font-family: "U";
	max-width: 160px;
	min-width: 160px;
	white-space: normal;
	width: 160px;
}

.page-header__search {
	display: flex;
	align-items: center;
}

.page-header__search  > .v-widget {
	margin-left: 10px;
}

.page-header__search  > .v-widget:first-child {
	margin-left: 0;
}

.page-sidebar-wrapper {
	height: calc(100% - 60px);
	width: 100%;
}

.page-sidebar {
	background: white;
	display: block;
	height: 100%;
	max-width: 200px;
	min-width: 200px;
	padding: 10px 10px;
	width: 200px;
}

.page-navigation {
	display: block;
	height: 100%;
	overflow: hidden;
}

.page-navigation__link {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 13px;
	font-weight: 600;
	justify-content: space-between;
	padding: 11px 10px;
	position: relative;
	transition: color 0.2s;
}

.page-navigation__link .page-navigation__link-wrap {
	z-index: 2;
}

.page-navigation__link:before {
	background: #F0EBD7;
	border: 1px solid transparent;
	border-radius: 6px;
	bottom: 5px;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 5px;
	transform: scale(0.9);
	transition: 0.1s;
	z-index: 1;
}

.page-navigation__link:after {
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e02c";
	color: #3688dc;
	opacity: 0;
	transform: scale(1.6) translateX(0);
	transform-origin: left center;
	transition: 0.1s;
}

.page-navigation__link:focus {
	outline: none;
}

.page-navigation__link:hover:before {
	outline: none;
	background: #F0EBD7;
	border: 1px solid transparent;
	transform: scale(1);
	opacity: 1;
}

.page-navigation__link:not(.page-navigation__link-selected):hover:after {
	opacity: 1;
	transform: scale(1.6);
	color: #333758;
	position: relative;
	z-index: 1;
}

.page-navigation__link--disabled {
	color: rgba(0, 0, 0, 0.5);
}

.page-navigation__link--disabled:hover:before {
	display: none;
}

.page-navigation__link--disabled:hover:after {
	display: none;
}

.page-navigation__link-selected {
	color: #333758;
}

.page-navigation__link-selected:before {
	opacity: 1;
	transform: scale(1);
	transition: 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.page-navigation-combo-box {
	display: none;
	border-radius: 0;
	width: 100%;
}

@media (max-width: 1199px) {
	.page-header {
		padding-left: 55px;
	}
}

@media (max-width: 992px) {
	.page-sidebar-wrapper {
		flex-direction: column;
		overflow: auto;
	}
	.page-sidebar-wrapper .page-sidebar {
		display: none;
		width: 100%;
		max-width: unset;
		padding: 0;
		height: 60px;
		overflow: auto;
	}
	.page-sidebar-wrapper .page-sidebar .page-navigation {
		display: inline-flex;
		padding: 2px 10px;
	}
	.page-sidebar-wrapper .page-sidebar .page-navigation .page-navigation__link {
		display: inline-flex;
		width: auto;
		margin: 0;
		white-space: nowrap;
		padding: 10px 15px;
	}
	.page-sidebar-wrapper .page-sidebar .page-navigation .page-navigation__link:after {
		display: none;
	}
	.page-sidebar-wrapper .page-sidebar .page-navigation .page-navigation__separator {
		display: none;
	}
	.page-sidebar-wrapper .page-content {
		height: calc(100% - 60px);
	}
	.page-navigation-combo-box {
		display: inline-block;
	}
	.page-content {
		width: 100%;
	}
}

@media (max-width: 699px) {
	.page-header {
		flex-wrap: wrap;
		height: auto;
	}
	.page-header__breadcrumb-layout {
		height: 60px;
		margin-top: 10px;
	}
	.page-header__button-wrapper {
		align-items: center;
		height: 60px;
		margin-bottom: 10px;
		position: fixed;
		top: 0;
		right: 0;
	}
	.page-header__search {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	.page-header__search  > .position-relative {
		width: 100%;
	}
	.page-header__search  > .v-widget {
		margin-left: 0;
		margin-top: 10px;
	}
	.page-header__search  > .v-widget:first-child {
		margin-top: 0;
	}
	.page-header__search  > .v-widget  > .v-caption {
		width: auto !important;
	}
}

.v-button {
	height: 38px;
	padding: 0 18px;
	color: #687684;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid #eaecee;
	border-top-color: #eaecee;
	border-bottom-color: #eaecee;
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.v-button:hover:after {
	background-color: rgba(164, 172, 181, 0.1);
}

.v-button:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button:active:after {
	background-color: rgba(94, 118, 142, 0.2);
}

.v-button.outline {
	height: 38px;
	padding: 0 18px;
	color: #687684;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 1px solid #687684;
	border-top-color: #687684;
	border-bottom-color: #687684;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button.outline:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button.outline:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button.outline:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.outline:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button.link {
	height: auto;
	padding: 0;
	color: #687684;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	display: inline-flex;
	padding: 2px 0;
}

.v-button.link:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.v-button.link:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button.link:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.link:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button.link:hover {
	color: #4c4c54;
}

.v-button.link:hover:after {
	background-color: transparent;
}

.v-button:hover:not(.link):after {
	background-color: rgba(0, 0, 0, 0.1);
}

.v-button.primary {
	height: 38px;
	padding: 0 18px;
	color: white;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid #3688dc;
	border-top-color: #3688dc;
	border-bottom-color: #3688dc;
	background-color: #3688dc;
	background-image: -webkit-linear-gradient(top, #3688dc 0%, #3688dc 100%);
	background-image: linear-gradient(to bottom,#3688dc 0%, #3688dc 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button.primary:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.v-button.primary:hover:after {
	background-color: rgba(119, 175, 231, 0.1);
}

.v-button.primary:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.primary:active:after {
	background-color: rgba(6, 68, 131, 0.2);
}

.v-button.primary.outline {
	height: 38px;
	padding: 0 18px;
	color: #3688dc;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 1px solid #3688dc;
	border-top-color: #3688dc;
	border-bottom-color: #3688dc;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button.primary.outline:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button.primary.outline:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button.primary.outline:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.primary.outline:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button.primary.link {
	height: auto;
	padding: 0;
	color: #3688dc;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	display: inline-flex;
	padding: 2px 0;
}

.v-button.primary.link:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.v-button.primary.link:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button.primary.link:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.primary.link:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button.primary.link:hover {
	color: #0a56a4;
}

.v-button.primary.link:hover:after {
	background-color: transparent;
}

.v-button.primary:hover:not(.outline):not(.link):after {
	background-color: #0a56a4;
}

.v-button.danger {
	height: 38px;
	padding: 0 18px;
	color: white;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid #d63030;
	border-top-color: #d63030;
	border-bottom-color: #d63030;
	background-color: #d63030;
	background-image: -webkit-linear-gradient(top, #d63030 0%, #d63030 100%);
	background-image: linear-gradient(to bottom,#d63030 0%, #d63030 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button.danger:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.v-button.danger:hover:after {
	background-color: rgba(227, 112, 112, 0.1);
}

.v-button.danger:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.danger:active:after {
	background-color: rgba(124, 7, 7, 0.2);
}

.v-button.danger.outline {
	height: 38px;
	padding: 0 18px;
	color: #d63030;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 1px solid #d63030;
	border-top-color: #d63030;
	border-bottom-color: #d63030;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button.danger.outline:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-button.danger.outline:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button.danger.outline:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.danger.outline:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button.danger.link {
	height: auto;
	padding: 0;
	color: #d63030;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	display: inline-flex;
	padding: 2px 0;
}

.v-button.danger.link:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.v-button.danger.link:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button.danger.link:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.danger.link:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button.danger.link:hover {
	background: #941212;
}

.v-button.danger.link:hover:after {
	background-color: transparent;
}

.v-button.danger:hover:not(.outline):not(.link):after {
	background-color: #941212;
}

.v-button.icon-only {
	height: 38px;
	padding: 0 18px;
	color: #687684;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button.icon-only:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.v-button.icon-only:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button.icon-only:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button.icon-only:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button.icon-only .v-button-wrap, .v-button.icon-only .v-button-caption {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.v-button.icon-only .v-button-wrap:before, .v-button.icon-only .v-button-caption:before {
	content: "";
	width: 22px;
	height: 22px;
	display: inline-flex;
	background-size: contain !important;
}

.v-button.icon-only.mini {
	width: 20px;
	height: 20px;
	padding: 5px;
}

.v-button.icon-only.mini .v-button-caption:before {
	width: 15px;
	height: 15px;
}

.v-button.icon-only.download .v-button-caption:before {
	background: url(img/icon/download.svg) no-repeat center;
}

.v-button.icon-only.send .v-button-caption:before {
	background: url(img/icon/send.svg) no-repeat center;
}

.v-button.icon-only.warning .v-button-caption:before {
	background: url(img/icon/warning.svg) no-repeat center;
}

.v-button.icon-only.alert .v-button-caption:before {
	background: url(img/icon/alert_boxed.svg) no-repeat center;
}

.v-button.icon-only.resend .v-button-caption:before {
	background: url(img/icon/resend.svg) no-repeat center;
}

.v-button.icon-only.plus .v-button-caption:before {
	background: url(img/icon/plus.svg) no-repeat center;
}

.v-button.icon-only.delete .v-button-caption:before {
	background: url(img/icon/trash.svg) no-repeat center;
}

.v-button.icon-only.copy .v-button-caption:before {
	background: url(img/icon/copy.svg) no-repeat center;
}

.v-button.icon-only.merge .v-button-caption:before {
	background: url(img/icon/merge.svg) no-repeat center;
}

.v-button.icon-only.menu .v-button-caption:before {
	background: url(img/icon/menu.svg) no-repeat center;
}

.v-button.icon-only.payment .v-button-caption:before {
	background: url(img/icon/payment.svg) no-repeat center;
}

.v-button.icon-only.transaction-del .v-button-caption:before {
	background: url(img/icon/transaction-del.svg) no-repeat center;
}

.v-button.icon-only.advanced-search .v-button-caption:before {
	background: url(img/icon/filter_config.svg) no-repeat center;
}

.v-button.icon-only.close .v-button-caption:before {
	background: url(img/icon/close.svg) no-repeat center;
}

.v-button.icon-only.close2 .v-button-caption:before {
	background: url(img/icon/close2.svg) no-repeat center;
}

.v-button.icon-only.delete2 .v-button-caption:before {
	background: url(img/icon/delete.svg) no-repeat center;
}

.v-button.icon-only.delete2-blue .v-button-caption:before {
	background: url(img/icon/delete_blue.svg) no-repeat center;
}

.v-button.icon-only.delete-white .v-button-caption:before {
	background: url(img/icon/delete_white.svg) no-repeat center;
}

.v-button.icon-only.edit .v-button-caption:before {
	background: url(img/icon/edit.svg) no-repeat center;
}

.v-button.icon-only.dropdown .v-button-caption:before {
	background: url(img/icon/dropdown.svg) no-repeat center;
}

.v-button.icon-only.bell .v-button-caption:before {
	background: url(img/icon/bell.svg) no-repeat center;
}

.v-button.icon-only.re-open .v-button-caption:before {
	background: url(img/icon/re_open.svg) no-repeat center;
}

.v-button.icon-only.news {
	padding: 0;
	margin-right: 35px;
}

.v-button.icon-only.news .v-button-caption:before {
	background: url(img/icon/news.svg) no-repeat center;
}

.v-button.icon-only.news:before {
	content: "";
	position: relative;
	width: 1px;
	height: 30px;
	background-color: #d8d8d8;
	right: -38px;
	top: 4px;
	pointer-events: none;
}

.v-button.icon-only.master-calendar .v-button-caption:before {
	background: url(img/icon/calendar/szervezoi_naptar_icon.svg) no-repeat center;
}

.v-button.icon-only.calendar-export .v-button-caption:before {
	background: url(img/icon/calendar/naptar_export_icon.svg) no-repeat center;
}

.v-button.icon-only.bus-order .v-button-caption:before {
	background: url(img/icon/calendar/buszrendeles_export_icon.svg) no-repeat center;
}

.v-button.icon-only.menu-toggle-button .v-button-wrap::before {
	display: none;
}

.v-button.icon-only-bg {
	background-color: #eaecee;
}

.v-button .v-button-wrap {
	position: relative;
	z-index: 1;
}

.v-button:after {
	z-index: 0;
	transition: background-color 0.2s;
}

.v-link {
	cursor: default;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.2s;
}

.v-link:hover {
	color: inherit;
}

.v-link a {
	color: #3688dc;
	cursor: pointer;
	display: inline-block;
	font-weight: 900;
	line-height: 1.55;
	padding: 2px 0;
	position: relative;
	text-decoration: none;
}

.v-link a:hover {
	color: #0a56a4;
}

span.cke_button__paymentvariableslist_icon:before {
	display: inline;
	color: black;
	font-family: "Vaadin-Icons";
	font-size: 18px;
	content: "\e7D8";
}

.tat-button a {
	height: 38px;
	padding: 0 18px;
	color: #687684;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid #eaecee;
	border-top-color: #eaecee;
	border-bottom-color: #eaecee;
	background-color: #eaecee;
	background-image: -webkit-linear-gradient(top, #eaecee 0%, #eaecee 100%);
	background-image: linear-gradient(to bottom,#eaecee 0%, #eaecee 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	align-items: center;
	display: flex;
	justify-content: center;
	cursor: pointer;
	width: 100%;
	height: 38px;
	color: #687684;
}

.tat-button a:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.tat-button a:hover:after {
	background-color: rgba(164, 172, 181, 0.1);
}

.tat-button a:focus:after {
	border-color: transparent;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.tat-button a:active:after {
	background-color: rgba(94, 118, 142, 0.2);
}

.tat-button a:hover {
	background-color: #d2d4d6;
	background-image: none;
	color: #687684;
}

.v-textfield, .v-textarea, .v-filter {
	font-weight: 600;
	color: #333333;
}

.v-textfield:not(.v-disabled):not(.v-readonly):focus, .v-textarea:not(.v-disabled):not(.v-readonly):focus, .v-filter:not(.v-disabled):not(.v-readonly):focus {
	border-color: #3688dc;
	box-shadow: 0 0 0 3px rgba(54, 136, 220, 0.2);
}

.v-textfield.v-readonly, .v-textarea.v-readonly, .v-filter.v-readonly {
	border-color: #d8d8d8;
	background: #d8d8d8;
	cursor: not-allowed;
}

.v-textfield.v-textfield-error, .v-textfield.v-textarea-error, .v-textfield.v-filter-error, .v-textarea.v-textfield-error, .v-textarea.v-textarea-error, .v-textarea.v-filter-error, .v-filter.v-textfield-error, .v-filter.v-textarea-error, .v-filter.v-filter-error {
	border-color: #d63030 !important;
}

.v-textfield.with-border, .v-textarea.with-border, .v-filter.with-border {
	border: 1px solid #d8d8d8;
}

.v-customcomponent.with-border .v-textfield, .v-customcomponent.with-border .v-textarea, .v-customcomponent.with-border .v-filter, .v-customcomponent.with-border .v-filterselect {
	border: 1px solid #d8d8d8;
}

.v-filterselect input, .v-filterselect-focus input {
	font-weight: 600;
	color: #333333;
}

.v-filterselect input:not(.v-disabled):not(.v-readonly) [class*="input"]:focus, .v-filterselect-focus input:not(.v-disabled):not(.v-readonly) [class*="input"]:focus {
	border-color: #3688dc;
	box-shadow: 0 0 0 3px rgba(54, 136, 220, 0.2);
}

.v-filterselect .v-filterselect-textfield, .v-filterselect .v-datefield-textfield, .v-filterselect [class*="input"], .v-datefield .v-filterselect-textfield, .v-datefield .v-datefield-textfield, .v-datefield [class*="input"] {
	width: 100%;
	padding-left: 9px;
	padding-right: 34px;
	font-weight: 600;
	color: #333333;
}

.v-filterselect .v-filterselect-textfield.v-readonly, .v-filterselect .v-datefield-textfield.v-readonly, .v-filterselect [class*="input"].v-readonly, .v-datefield .v-filterselect-textfield.v-readonly, .v-datefield .v-datefield-textfield.v-readonly, .v-datefield [class*="input"].v-readonly {
	background: #eaecee;
}

.v-filterselect .v-filterselect-button, .v-filterselect .v-datefield-button, .v-datefield .v-filterselect-button, .v-datefield .v-datefield-button {
	width: 38px !important;
	height: 100%;
	left: auto;
	top: 0;
	right: 0;
	border: none;
}

.v-filterselect .v-filterselect-button:before, .v-filterselect .v-datefield-button:before, .v-datefield .v-filterselect-button:before, .v-datefield .v-datefield-button:before {
	content: "";
	position: absolute;
	margin: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.v-filterselect .v-filterselect-button:after, .v-filterselect .v-datefield-button:after, .v-datefield .v-filterselect-button:after, .v-datefield .v-datefield-button:after {
	content: "";
	position: absolute;
	left: 4px !important;
	top: 4px !important;
	right: 4px !important;
	bottom: 4px !important;
	border-radius: 4px !important;
	margin: 0;
	transition: background-color 0.2s;
}

.v-filterselect .v-filterselect-button:hover:after, .v-filterselect .v-datefield-button:hover:after, .v-datefield .v-filterselect-button:hover:after, .v-datefield .v-datefield-button:hover:after {
	background-color: rgba(0, 0, 0, 0.1);
}

.v-filterselect .v-filterselect-button.v-datefield-button-readonly, .v-filterselect .v-datefield-button.v-datefield-button-readonly, .v-datefield .v-filterselect-button.v-datefield-button-readonly, .v-datefield .v-datefield-button.v-datefield-button-readonly {
	opacity: 0.2;
}

.v-filterselect .v-filterselect-button:before, .v-datefield .v-filterselect-button:before {
	background: url(img/icon/field_select_default.svg) no-repeat center;
	background-size: 20px 20px;
}

.v-filterselect .v-datefield-button:before, .v-datefield .v-datefield-button:before {
	background: url(img/icon/field_calendar_default.svg) no-repeat center;
	background-size: 20px 20px;
}

.v-filterselect.with-border, .v-datefield.with-border {
	border: 1px solid #d8d8d8;
}

.v-filterselect.v-readonly .v-filterselect-input {
	background: #eaecee;
}

.v-filterselect.v-readonly .v-filterselect-button {
	opacity: 0.2;
}

input::placeholder {
	color: #687684;
	font-weight: 600;
	font-size: 14px;
}

input::-webkit-input-placeholder {
	color: #687684;
	font-weight: 500;
	font-size: 14px;
}

input:-moz-placeholder {
	color: #687684;
	font-weight: 500;
	opacity: 1;
	font-size: 14px;
}

input::-moz-placeholder {
	color: #687684;
	font-weight: 500;
	opacity: 1;
	font-size: 14px;
}

input:-ms-input-placeholder {
	color: #687684;
	font-weight: 500;
	font-size: 14px;
}

.w-errormessage {
	font-size: 11px;
	font-weight: 500;
	color: #d63030;
}

:root .v-checkbox, :root .v-radiobutton {
	padding: 0;
	margin: 0 15px 0 0;
}

:root .v-checkbox  > input ~ label, :root .v-checkbox  > input:focus ~ label, :root .v-checkbox  > input:active ~ label, :root .v-radiobutton  > input ~ label, :root .v-radiobutton  > input:focus ~ label, :root .v-radiobutton  > input:active ~ label {
	position: relative;
	display: inline-flex;
	vertical-align: middle;
	align-items: center;
	font-weight: 500;
	padding-left: 24px;
	color: #687684;
}

:root .v-checkbox  > input ~ label:before, :root .v-checkbox  > input:focus ~ label:before, :root .v-checkbox  > input:active ~ label:before, :root .v-radiobutton  > input ~ label:before, :root .v-radiobutton  > input:focus ~ label:before, :root .v-radiobutton  > input:active ~ label:before {
	margin-right: 7px;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 6px;
	border: 1px solid #d8d8d8;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

:root .v-checkbox  > input ~ label:after, :root .v-checkbox  > input:focus ~ label:after, :root .v-checkbox  > input:active ~ label:after, :root .v-radiobutton  > input ~ label:after, :root .v-radiobutton  > input:focus ~ label:after, :root .v-radiobutton  > input:active ~ label:after {
	width: 20px;
	height: 20px;
	top: 0;
	font-size: 14px;
	line-height: 20px;
}

:root .v-checkbox  > input:checked ~ label, :root .v-checkbox  > input:checked:focus ~ label, :root .v-checkbox  > input:checked:active ~ label, :root .v-radiobutton  > input:checked ~ label, :root .v-radiobutton  > input:checked:focus ~ label, :root .v-radiobutton  > input:checked:active ~ label {
	color: #333333;
}

:root .v-checkbox  > input:checked ~ label:before, :root .v-checkbox  > input:checked:focus ~ label:before, :root .v-checkbox  > input:checked:active ~ label:before, :root .v-radiobutton  > input:checked ~ label:before, :root .v-radiobutton  > input:checked:focus ~ label:before, :root .v-radiobutton  > input:checked:active ~ label:before {
	border: 1px solid #3688dc;
}

:root .v-checkbox.only-checkbox, :root .v-radiobutton.only-checkbox {
	margin: 0;
}

:root .v-radiobutton  > input ~ label:before, :root .v-radiobutton  > input:focus ~ label:before, :root .v-radiobutton  > input:active ~ label:before {
	border-radius: 20px;
}

:root .v-radiobutton  > input ~ label:after, :root .v-radiobutton  > input:focus ~ label:after, :root .v-radiobutton  > input:active ~ label:after {
	top: 0;
}

:root .v-radiobutton  > input:checked ~ label:after, :root .v-radiobutton  > input:checked:focus ~ label:after, :root .v-radiobutton  > input:checked:active ~ label:after {
	width: 10px;
	height: 10px;
	top: 5px;
	left: 5px;
	color: white;
}

.v-checkbox.v-widget > input:checked ~ label:before, .v-select-optiongroup .v-checkbox > input:checked ~ label:before, .v-filterselect-suggestpopup .v-checkbox > input:checked ~ label:before {
	background: #3688dc;
}

.v-checkbox.v-widget > input:checked ~ label:after, .v-select-optiongroup .v-checkbox > input:checked ~ label:after, .v-filterselect-suggestpopup .v-checkbox > input:checked ~ label:after {
	color: white;
}

.v-slot + .v-spacing + .v-slot-inline-checkbox .v-checkbox {
	margin-top: 20px !important;
}

.v-filterselect-suggestpopup .gwt-MenuItem {
	border: 1px solid transparent;
}

.v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background: rgba(54, 136, 220, 0.1);
	border-color: #3688dc;
	box-shadow: none;
	color: #3688dc;
	text-shadow: none;
}

.wrap-check-box  > input ~ label, .wrap-check-box  > input:focus ~ label, .wrap-check-box  > input:active ~ label {
	white-space: normal;
}

.v-panel {
	background: white;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	padding: 0 !important;
}

.v-panel-caption {
	box-shadow: none;
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
	padding: 0;
}

.v-panel-content {
	background: none;
	display: block;
	flex-grow: 1;
	padding: 10px 15px 15px;
}

.form-notification {
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
	width: 100%;
}

.form-notification:last-child {
	margin-bottom: 0;
}

.form-notification--error {
	color: #d63030;
}

.field-notification {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-top: 1px;
	white-space: normal;
}

.field-notification--error {
	color: #d63030;
}

.v-Notification {
	padding: 0;
	border-radius: 0;
	overflow: hidden !important;
}

.v-Notification .gwt-HTML {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 10px 10px 10px 20px;
	min-width: 200px;
}

.v-Notification .gwt-HTML:before {
	content: "";
	display: inline-flex;
	flex-direction: row;
	flex-shrink: 0;
	margin-right: 10px;
	background-size: contain !important;
	width: 16px;
	height: 16px;
}

.v-Notification .v-Notification-caption {
	color: #333333 !important;
	margin: 0 0 10px;
	font-weight: 500;
	font-size: 15px;
	width: calc(100% - 26px);
	font-family: "U";
}

.v-Notification .v-Notification-description {
	color: #333333 !important;
	margin: 0 !important;
	font-weight: 400;
	font-size: 13px;
	padding-left: 26px;
}

.v-Notification .v-Notification-description span {
	color: #696D85;
}

.v-Notification.info .gwt-HTML:before, .v-Notification.tray .gwt-HTML:before {
	background: url(img/icon/success.svg) no-repeat center;
}

.v-Notification.success .gwt-HTML:before {
	background: url(img/icon/success.svg) no-repeat center;
}

.v-Notification.alert .gwt-HTML:before {
	background: url(img/icon/alert.svg) no-repeat center;
}

.v-Notification.error .gwt-HTML:before {
	background: url(img/icon/error.svg) no-repeat center;
}

.v-Notification.info, .v-Notification.warning, .v-Notification.error {
	background-color: white;
}

.v-Notification:before {
	content: "";
	width: 10px;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	background-color: #00b894;
}

.v-Notification.error:before {
	background-color: #d63030;
}

.v-Notification.tray:before {
	background-color: #00b894;
}

.v-Notification.error:after {
	top: 20px;
	right: 5px;
	color: #687684;
	transition: color 0.2s;
}

.v-Notification.error:after:hover {
	color: #333333;
}

.v-Notification.warning:before {
	background-color: #ffc86e;
}

.error-notification-time-label {
	margin-top: 10px;
	color: #82828c;
	font-weight: 400;
	font-size: 12px;
}

.v-Notification.system {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed !important;
	top: 0;
	left: 0 !important;
	right: 0 !important;
	border-radius: 0 !important;
}

.v-Notification.system:before {
	display: none;
}

.v-Notification.system .gwt-HTML {
	display: flex;
	align-items: center;
	padding: 10px;
}

.v-Notification.system .gwt-HTML:before {
	width: 30px;
	height: 30px;
	background: url(img/icon/alert_filled.svg) no-repeat center;
}

.v-Notification.system .gwt-HTML .v-Notification-caption {
	width: auto;
	color: white !important;
	margin: 0;
}

.v-Notification.system .gwt-HTML .v-Notification-description {
	padding: 2px 0 0 10px;
	color: white !important;
}

.v-reconnect-dialog {
	border-radius: 6px;
}

.v-reconnect-dialog.active .spinner {
	border-top-color: white;
	border-right-color: white;
	animation-duration: 1s;
}

.v-Notification__datetime {
	color: #82828c;
	font-size: 14px;
}

.v-csslayout.w-breadcrumb {
	display: inline-flex !important;
	flex-grow: 1;
}

.v-button.link.w-breadcrumb-item {
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin-left: 15px;
	background: none;
	box-shadow: none;
	font-size: 12px;
	font-weight: 500;
	color: #3688dc;
	text-decoration: none;
}

.v-button.link.w-breadcrumb-item:hover {
	color: #0a56a4;
}

.v-button.link.w-breadcrumb-item:after {
	display: none;
}

.v-button.link.w-breadcrumb-item:before {
	content: "";
	background: url(img/icon/arrow_dark.svg) no-repeat center;
	background-size: contain;
	width: 8px;
	height: 13px !important;
	display: inline-flex;
	margin-right: 15px;
	opacity: 0.5;
}

.cycle-thumbnail-view .v-customcomponent-cycle-thumbnail-view {
	min-width: 1155px;
}

.cycle-thumbnail-view .fixedTable .table {
	width: auto;
}

.cycle-thumbnail-view .fixedTable .table tr td, .cycle-thumbnail-view .fixedTable .table tr th {
	min-width: 50px;
	max-width: 50px;
	width: 50px;
	min-height: 20px;
	height: 20px;
}

.cycle-thumbnail-view .fixedTable .table tr td div, .cycle-thumbnail-view .fixedTable .table tr th div {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.cycle-thumbnail-view .fixedTable .fixedTable-fix-header {
	float: left;
	height: 50px;
	padding-top: 30px;
	background-color: $background-color-hover;
}

.cycle-thumbnail-view .fixedTable .fixedTable-fix-header .table-bordered {
	background-color: $background-color-hover;
}

.cycle-thumbnail-view .fixedTable .fixedTable-fix-header .training-name-header {
	min-width: 180px;
	max-width: 180px;
	padding-left: 15px;
}

.cycle-thumbnail-view .fixedTable .fixedTable-header {
	width: 950px;
	height: 80px;
	margin-left: 125px;
	overflow: hidden;
	border-bottom: 1px solid $background-color-hover;
}

.cycle-thumbnail-view .fixedTable .fixedTable-header th {
	text-align: center;
	background-color: $background-color-hover;
}

.cycle-thumbnail-view .fixedTable .fixedTable-header th div:hover {
	background-color: $color-medium;
}

.cycle-thumbnail-view .fixedTable .fixedTable-sidebar {
	width: 200px;
	height: 400px;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-right: 1px solid $background-color-hover;
	position: absolute;
}

.cycle-thumbnail-view .fixedTable .fixedTable-sidebar .table-bordered {
	padding-left: 15px;
}

.cycle-thumbnail-view .fixedTable .fixedTable-sidebar .table-bordered div {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 180px;
}

.cycle-thumbnail-view .fixedTable .fixedTable-body {
	margin-left: 200px;
	overflow: auto;
	width: 950px;
	height: 400px;
	float: left;
}

.cycle-thumbnail-view .fixedTable .fixedTable-body tr:hover {
	background-color: $background-color-hover;
}

.cycle-thumbnail-view .fixedTable .fixedTable-body td {
	text-align: center;
}

.v-slot-master-calendar-container {
	margin-top: 10px;
}

.master-calendar-container .fixedTable .table {
	background-color: $color-light;
}

.master-calendar-container .fixedTable-header {
	width: calc(100vw - 140px);
	height: 20px;
	font-size: 12px;
	margin-left: 133px;
	overflow: hidden;
	border-bottom: 1px solid #CCC;
}

.master-calendar-container .fixedTable-header th {
	min-width: 147px;
	max-width: 147px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.master-calendar-container .fixedTable-sidebar {
	width: 130px;
	height: calc(100% - 135px);
	float: left;
	overflow: hidden;
}

.master-calendar-container .fixedTable-sidebar table {
	border-collapse: collapse;
	font-size: 12px;
	width: 130px;
}

.master-calendar-container .fixedTable-sidebar table tbody {
	border-right: 1px solid #CCC;
}

.master-calendar-container .fixedTable-sidebar table td {
	background-color: #f0f0f0;
	min-width: 50px;
	text-align: center;
	padding-top: 2px;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
}

.master-calendar-container .fixedTable-sidebar table td.row-month {
	min-width: 20px;
	background-color: #f0f0f0;
}

.master-calendar-container .fixedTable-sidebar table td.row-month div {
	width: 25px;
	transform: rotate(-90deg);
	white-space: nowrap;
}

.master-calendar-container .fixedTable-sidebar table td.weekEnd {
	background-color: rgba(0, 0, 0, 0.15);
}

.master-calendar-container .fixedTable-sidebar table td.toDay {
	background-color: #66E9E4;
}

.master-calendar-container .fixedTable-body {
	overflow: auto;
	width: calc(100vw - 140px);
	height: calc(100vh - 135px);
	float: left;
}

.master-calendar-container .fixedTable-body .table-bordered {
	border-collapse: collapse;
}

.master-calendar-container .fixedTable-body .table-bordered tr {
	border-bottom: 1px solid #CCC;
	height: 48px;
}

.master-calendar-container .fixedTable-body .table-bordered td {
	min-width: 150px;
	max-width: 150px;
	text-align: center;
	padding-top: 2px;
}

.master-calendar-container .fixedTable-body .event {
	min-height: 38px;
	display: inline-block;
	white-space: nowrap;
	border-radius: 5px;
	padding: 4px;
	margin-bottom: 2px;
	width: 140px;
	float: left;
	font-size: 10px;
}

.master-calendar-container .fixedTable-body .event div {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.master-calendar-container .fixedTable-body .event-general_event {
	background-color: #EEE8AA;
}

.master-calendar-container .fixedTable-body .event-private_training {
	background-color: #FC9DCF;
}

.master-calendar-container .fixedTable-body .event-training {
	background-color: rgba(249, 144, 144, 0.5);
}

.master-calendar-container .fixedTable-body .event-match {
	background-color: #66E9E4;
}

.master-calendar-container .fixedTable-body .event-training_match {
	background-color: #66E9E4;
}

.master-calendar-container .fixedTable-body td.team-column {
	background-color: #eeeeee;
}

.master-calendar-container .tooltip {
	position: relative;
	display: inline-block;
}

.master-calendar-container .tooltip .tooltiptext {
	visibility: hidden;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	text-align: center;
	padding: 5px 5px;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
}

.master-calendar-container .tooltip:hover .tooltiptext {
	visibility: visible;
}

.master-calendar-container tr.weekEnd {
	background-color: rgba(0, 0, 0, 0.05);
}

.master-calendar-container tr.weekEnd td.team-column {
	background-color: rgba(0, 0, 0, 0.05);
}

.v-menubar-popup .v-menubar-submenu .v-menubar-menuitem {
	border: 1px solid transparent;
	padding-left: 10px;
}

.v-menubar-popup .v-menubar-submenu .v-menubar-menuitem-selected {
	background: rgba(54, 136, 220, 0.1);
	border-color: #3688dc;
	box-shadow: none;
	color: #3688dc;
	text-shadow: none;
}

.v-menubar-popup .v-menubar-submenu .v-menubar-menuitem-unchecked, .v-menubar-popup .v-menubar-submenu .v-menubar-menuitem-checked {
	padding-left: 30px;
}

.v-app .v-menubar-popup:nth-of-type(2) {
	padding: 20px;
	overflow: hidden !important;
}

.v-app .v-menubar-popup:nth-of-type(2):before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	border-top: 74px solid #f5f5f5;
	border-right: 365px solid transparent;
}

.v-app .v-menubar-popup:nth-of-type(2) {
	padding: 20px;
}

.v-app .v-menubar-popup {
	min-width: 230px;
}

.v-app .v-menubar-popup .v-menubar-submenu {
	width: 100%;
}

.v-app .v-menubar-popup .v-menubar-separator {
	display: none;
}

.v-app .v-menubar-popup .v-menubar-menuitem {
	border-bottom: 1px solid #f5f5f5;
	padding-top: 4px;
	padding-bottom: 4px;
}

.v-app .v-menubar-popup .v-menubar-menuitem:last-of-type {
	border-bottom: 0;
}

.v-app .v-menubar-popup .v-menubar-menuitem.v-menubar-menuitem-selected {
	background: #F0EBD7;
	border: 1px solid transparent;
	color: #333758;
}

.v-app .v-menubar-popup .logout-button {
	padding: 0;
	text-align: center;
	margin-top: 17px;
	font-family: "U";
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	color: #7D4545;
}

.v-app .v-menubar-popup .logout-button.v-menubar-menuitem-selected {
	border-bottom: 0;
}

.v-app .v-menubar-popup .menu-header, .v-app .v-menubar-popup .menu-title {
	padding: 0;
	margin: 0;
	text-align: center;
	border-bottom: 0;
	margin-top: 20px;
	margin-bottom: 8px;
	font-family: "u";
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	color: #232323;
	cursor: default;
}

.v-app .v-menubar-popup .menu-header.v-menubar-menuitem-selected, .v-app .v-menubar-popup .menu-title.v-menubar-menuitem-selected {
	background: none;
	border-bottom: 0;
	color: #232323;
}

.v-app .v-menubar-popup .menu-header.v-menubar-menuitem:active:before, .v-app .v-menubar-popup .menu-title.v-menubar-menuitem:active:before {
	background: none;
}

.v-app .v-menubar-popup .menu-header {
	margin-bottom: 20px;
	max-width: 250px;
	white-space: normal;
}

.v-app .main-user-menu-item__secondary-row {
	color: rgba(0, 0, 0, 0.5);
	font-size: 12px;
}

.v-grid-cell > .component-wrap > .tat-row-menu {
	border: none;
	box-shadow: none;
	background: white;
	height: 30px;
}

.v-grid-cell > .component-wrap > .tat-row-menu  > .v-menubar-menuitem {
	padding: 0;
	width: 30px;
}

.v-grid-cell > .component-wrap > .tat-row-menu  > .v-menubar-menuitem:hover {
	background: #eaecee;
}

.v-grid-cell > .component-wrap > .tat-row-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected {
	background: #d8d8d8;
}

.v-grid-cell > .component-wrap > .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption {
	color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.v-grid-cell > .component-wrap > .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption:after {
	display: none;
}

.v-grid-cell > .component-wrap > .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption:before {
	content: "";
	display: inline-flex;
	width: 20px;
	height: 20px;
	background: url(img/icon/arrow_blue.svg) no-repeat center;
	background-size: contain;
	transform: rotate(90deg);
}

@media (max-width: 502px) {
	.page-header__button-wrapper .v-menubar .v-menubar-menuitem .v-menubar-menuitem-caption {
		font-size: 0;
	}
	.page-header__button-wrapper .v-menubar .v-menubar-menuitem .v-menubar-menuitem-caption span {
		font-size: 14px;
	}
	.page-header__button-wrapper .v-menubar .v-menubar-menuitem .v-menubar-menuitem-caption:after {
		font-size: 14px;
	}
}

.tat-calendar-widget {
	padding-right: 15px;
	border-right: 4px solid #f5f5f5;
}

.tat-calendar-widget .tuning-datefield-calendar {
	padding: 0;
	border: none;
	background: transparent;
}

.tat-calendar-widget .tuning-datefield-calendar table, .tat-calendar-widget .tuning-datefield-calendar table tbody {
	width: 100%;
}

.tat-calendar-widget .tuning-datefield-calendar td, .tat-calendar-widget .tuning-datefield-calendar th {
	width: 30px;
	height: 30px;
	font-size: 14px;
	font-family: "A", "Helvetica", Arial, "lucida grande", tahoma, verdana, arial, sans-serif;
	background: transparent;
	padding: 0;
	z-index: 1;
	position: relative;
}

.tat-calendar-widget .controls td, .tat-calendar-widget .controls th, .tat-calendar-widget .daynames td, .tat-calendar-widget .daynames th {
	height: 20px;
}

.tat-calendar-widget .controls {
	text-transform: none !important;
}

.tat-calendar-widget .controls .resolution-control {
	width: 100%;
	font-weight: 500;
	height: 26px;
}

.tat-calendar-widget .controls .previous-control, .tat-calendar-widget .controls .next-control {
	width: 30px;
	height: 30px;
	display: inline-flex;
	color: transparent;
}

.tat-calendar-widget .controls .previous-control:before, .tat-calendar-widget .controls .next-control:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	display: inline-flex;
	background: url(img/icon/arrow_blue.svg) no-repeat center;
	background-size: contain;
}

.tat-calendar-widget .controls .previous-control:before {
	transform: rotate(180deg);
}

.tat-calendar-widget tr.daynames {
	height: 50px;
}

.tat-calendar-widget tr.daynames td {
	width: calc(100% / 7);
}

.tat-calendar-widget tr.week {
	height: 33px;
}

.tat-calendar-widget tr.week td {
	width: calc(100% / 7);
}

.tat-calendar-widget .tuning-datefield-calendar .day.selected, .tat-calendar-widget .tuning-datefield-calendar .day.selected:hover {
	background-image: none;
	background-color: transparent;
}

.tat-calendar-widget td.day.enabled:hover {
	background: none;
}

.tat-calendar-widget td.day.enabled:hover:before {
	background-color: #d8d8d8;
	left: 1px;
	top: 1px;
	width: 31px;
	height: 31px;
	position: absolute;
	content: "";
	z-index: -1;
	border-radius: 50%;
}

.tat-calendar-widget td.selected.day.event:after {
	background-color: white;
}

.tat-calendar-widget td.today:before {
	background-color: #ffc86e;
	left: 1px;
	top: 1px;
	width: 31px;
	height: 31px;
	position: absolute;
	content: "";
	z-index: -1;
	border-radius: 50%;
}

.tat-calendar-widget td.day.selected:before {
	background-color: #d63030;
	border: none;
	position: absolute;
	left: 1px;
	top: 1px;
	width: 31px;
	height: 31px;
	content: "";
	z-index: -1;
	border-radius: 50%;
}

.tat-calendar-widget .day.event:after {
	background-color: #82828c;
	width: 4px;
	height: 4px;
	position: absolute;
	content: "";
	z-index: -1;
	border-radius: 50%;
	left: calc(50% - 2px);
	top: 25px;
}

.tat-calendar-widget .tuning-datefield-calendar .day.selected {
	color: white;
}

.tat-calendar-widget .tuning-datefield-calendar .selected, .tat-calendar-widget .tuning-datefield-calendar .selected:hover {
	color: #82828c;
	background: #EEEEEE;
}

@media (max-width: 700px) {
	.tat-calendar-widget {
		border-right: none;
		padding-bottom: 15px;
		border-bottom: 4px solid #f5f5f5;
		margin-bottom: 15px;
	}
}

.slide-toggle input {
	opacity: 0;
	position: absolute;
}

.slide-toggle label {
	background: #d8d8d8;
	border-radius: 18px;
	display: inline-block;
	height: 18px;
	position: relative;
	transition: 0.2s ease-out;
	vertical-align: middle;
	width: 29px;
}

.slide-toggle label:after {
	background: white;
	border-radius: 50%;
	content: "";
	height: 12px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translate(3px, -50%);
	transition: 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
	width: 12px;
}

.slide-toggle--on label {
	background: #00b894;
}

.slide-toggle--on label:after {
	transform: translate(14px, -50%);
}

.event-tag {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 26px;
	background-color: #d8d8d8;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	padding: 0 8px;
	margin: 2px 4px 2px 0;
	white-space: nowrap;
}

.event-tag:last-child {
	margin: 2px 0;
}

.event-tag.yellow {
	background-color: #ffc86e;
}

.event-tag.yellow2 {
	background-color: rgba(255, 200, 110, 0.5);
}

.event-tag.gray {
	background-color: rgba(0, 0, 0, 0.2);
}

.tat-documentboard-documents-layout .v-gridlayout-slot .v-horizontal .icon-only {
	color: transparent;
	width: 20px;
	height: 20px;
}

.tat-documentboard-documents-layout .v-gridlayout-slot .v-horizontal .icon-only:before {
	opacity: 0;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: url(img/icon/trash.svg) no-repeat center;
	background-size: 16px;
	right: 0;
	top: 0;
	transition: opacity 0.2s;
}

.tat-documentboard-documents-layout .v-gridlayout-slot .v-horizontal:hover .icon-only:before {
	opacity: 1;
}

.daily-event-row .v-grid-cell {
	align-items: center;
}

.daily-event-tag-label {
	height: 38px;
}

.daily-event-name-block-layout {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
}

.daily-event-type-block-layout {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: 10px;
	margin-right: 10px;
}

.daily-event-type-block-layout .v-link {
	white-space: nowrap;
}

.tag-layout {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.daily-event-menu-column {
	width: 50px;
	display: flex;
	justify-content: center;
}

.daily-event-menu-column .tat-row-menu {
	border: none;
	box-shadow: none;
	background: white;
	height: 30px;
}

.daily-event-menu-column .tat-row-menu  > .v-menubar-menuitem {
	padding: 0;
	width: 30px;
}

.daily-event-menu-column .tat-row-menu  > .v-menubar-menuitem:hover {
	background: #eaecee;
}

.daily-event-menu-column .tat-row-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected {
	background: #d8d8d8;
}

.daily-event-menu-column .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption {
	color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.daily-event-menu-column .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption:after {
	display: none;
}

.daily-event-menu-column .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption:before {
	content: "";
	display: inline-flex;
	width: 20px;
	height: 20px;
	background: url(img/icon/arrow_blue.svg) no-repeat center;
	background-size: contain;
	transform: rotate(90deg);
}

.daily-event-layout {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: auto;
	height: 235px;
}

.daily-event-row-layout {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 45px;
	min-height: 45px;
	max-height: 45px;
	padding: 0 5px;
	margin: 5px 0;
}

.daily-event-row-layout:hover {
	border: 1px solid #3688dc;
	cursor: pointer;
	border-radius: 6px;
	padding: 0 4px;
	height: 100%;
}

@media (max-width: 700px) {
	.daily-event-row-layout {
		flex-direction: column;
		height: 100px;
		min-height: 100px;
		max-height: 100px;
		align-items: flex-start;
		justify-content: space-evenly;
	}
}

.v-window-header {
	font-size: 20px;
	font-weight: 700;
	color: #4c4c54;
	padding-left: 20px;
}

.tat-confirm-dialog-window {
	z-index: 30000 !important;
}

@media (max-width: 992px) {
	.profile-selector-window .flex, .profile-selector-window .flex-row {
		flex-wrap: nowrap !important;
	}
}

@media (min-width: 700px) {
	.password-window-layout {
		width: 350px;
	}
}

@media (max-width: 699px) {
	.password-window-layout {
		width: 99%;
	}
}

@media (max-height: 699px) {
	.event-bus-order-window, .profile-selector-window, .attendance-register-window {
		height: 100%;
	}
}

@media (min-height: 700px) {
	.profile-selector-window {
		height: 80%;
	}
	.event-bus-order-window {
		height: 65%;
	}
	.attendance-register-window {
		height: 90%;
	}
}

.v-window.tat2-window {
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0 !important;
	top: 0 !important;
	max-width: unset !important;
	max-height: unset !important;
	background: none !important;
	width: 100% !important;
	height: 100% !important;
	pointer-events: none;
}

.v-window.tat2-window .popupContent {
	display: inline-flex;
	position: relative;
	background: white;
	border-radius: 6px;
	border: none;
	pointer-events: auto;
	max-width: 80vw;
	max-height: 80vh;
	height: auto;
	width: auto;
	box-shadow: 0 24px 48px 3px rgba(0, 0, 0, 0.2), 0 9px 66px 8px rgba(0, 0, 0, 0.2), 0 11px 15px -7px rgba(0, 0, 0, 0.3);
}

.v-window.tat2-window .popupContent .v-window-wrap {
	max-width: 100%;
	height: auto;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-outerheader {
	margin: 0 20px;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-outerheader .v-window-closebox {
	position: absolute;
	width: 40px;
	height: 40px;
	right: -20px;
	top: 10px;
	color: #333333;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-outerheader .v-window-closebox:before {
	font-size: 34px;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-outerheader .v-window-closebox:hover {
	opacity: 0.5;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-outerheader .v-window-header {
	color: #333333;
	font-family: "U";
	text-align: center;
	font-weight: 800;
	font-size: 16px;
	margin: 0;
	padding: 20px 0;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-layout {
	display: flex;
	flex-direction: column;
	max-height: 80vh;
	height: 100%;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-layout  > .v-slot:not(.v-slot-smart-window-button-container) {
	overflow: hidden;
	overflow-y: auto;
	flex-grow: 1;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-layout  > .v-slot:not(.v-slot-smart-window-button-container)  > .v-layout {
	padding: 0 20px;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-layout  > .v-slot.v-slot-smart-window-button-container .smart-window-button-container {
	padding: 40px 20px 20px;
	display: flex;
	justify-content: space-between;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 0;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 0;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 0;
}

.v-window.tat2-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 0;
}

.v-window.tat2-window.inline-smart-window .popupContent .v-window-wrap .v-window-outerheader .v-window-header {
	padding: 15px 0;
}

.v-window.tat2-window.inline-smart-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-layout  > .v-slot:not(.v-slot-smart-window-button-container)  > .v-layout {
	padding: 0 15px 15px;
}

.v-window.tat2-window.inline-smart-window .popupContent .v-window-wrap .v-window-contents  > .v-scrollable  > .v-layout  > .v-slot.v-slot-smart-window-button-container .smart-window-button-container {
	padding: 0 15px 15px;
}

.password-component__label {
	font-size: 13px;
}

.password-component__show-password {
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 0;
}

.password-component__show-password:before {
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e902";
	display: inline-block;
	margin-right: 8px;
	transform: scale(1.4);
	transition: transform 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.password-component__show-password.visible:before {
	content: "\e901";
}

.password-component__show-password:not(.visible):hover:before {
	animation: blinking 0.4s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.v-label, .v-label-undef-w {
	white-space: normal;
}

.v-caption {
	font-family: "U";
}

.v-caption .v-errorindicator {
	display: none !important;
}

.v-caption-multiline {
	white-space: pre;
}

.v-caption-hidden-caption {
	display: none;
}

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

.v-label-required-indicator::after {
	content: "*";
	color: #d63030;
	padding: 0 0.2em;
}

.field-label {
	height: 38px;
	width: 100%;
	padding: 0 5px;
	align-items: center;
	display: flex;
	font-weight: 700;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	overflow-y: auto;
	overflow-x: hidden;
	white-space: nowrap;
}

.field-label.wrap-content {
	white-space: normal;
}

.v-slot-field-label-vertical .v-caption-on-top {
	display: flex;
	flex-direction: row;
}

.v-slot-field-label-vertical .v-caption-field-label-vertical {
	font-weight: 700;
	margin-right: 15px;
	width: 175px;
}

.v-slot-field-label-vertical .field-label-vertical {
	display: flex;
}

.v-slot-field-label-vertical .field-label-vertical.green-light-color {
	color: #82828c;
}

.ui-timepicker-list {
	font-family: "A";
	font-weight: 700;
	color: #333333;
	font-size: 14px;
	height: 300px;
	background-color: white;
	overflow: auto;
	padding: 0;
	border-radius: 2px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ui-timepicker-list li {
	list-style-type: none;
	padding: 3px 10px;
	transition: border 0.2s;
	border: 1px solid transparent;
}

li.ui-timepicker-selected, .ui-timepicker-list li:hover {
	background: rgba(54, 136, 220, 0.1);
	border: 1px solid #3688dc;
}

.selector__controller-layout {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.selector__presenter-card {
	font-size: 13px;
	background: white;
	display: flex;
	flex-basis: calc(100% / 3 - 4px);
	margin: 6px 6px 0 0;
	padding: 5px 10px;
	align-items: center;
	border-radius: 6px;
	position: relative;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.selector__presenter-card:nth-child(3n+0) {
	margin-right: 0;
}

.selector__presenter-card-selected {
	font-size: 13px;
	display: flex;
	flex-basis: calc(100% / 3 - 4px);
	margin: 6px 6px 0 0;
	padding: 5px 10px;
	align-items: center;
	border-radius: 6px;
	position: relative;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	color: white;
	border: 0 solid #3688dc;
	background: #3688dc;
}

.selector__presenter-card-selected:nth-child(3n+0) {
	margin-right: 0;
}

.selector_presenter-card-no-school {
	font-size: 13px;
	display: flex;
	flex-basis: calc(100% / 3 - 4px);
	margin: 6px 6px 0 0;
	padding: 5px 10px;
	align-items: center;
	border-radius: 6px;
	position: relative;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	color: white;
	border: 0 solid #82828c;
	background: #82828c;
}

.selector_presenter-card-no-school:nth-child(3n+0) {
	margin-right: 0;
}

.presenter-card__medical-condition-icon {
	margin-right: 16px;
	height: 16px;
}

.presenter-card__player-feedback-icon {
	margin-right: 16px;
	height: 16px;
}

.presenter-card__leaves-of-absence-icon {
	margin-right: 16px;
}

.v-button.icon-only.presenter-card__remove-button {
	position: absolute;
	right: 2px;
	width: 26px;
	height: 26px;
	padding: 0;
}

.v-button.icon-only.presenter-card__remove-button .v-button-wrap:before {
	background: url(img/icon/close.svg) no-repeat center;
	opacity: 0.4;
	width: 14px;
	height: 14px;
}

.v-button.icon-only.presenter-card__remove-button .v-button-wrap .v-icon {
	display: none;
}

.v-button.icon-only.presenter-card__remove-button:hover .v-button-wrap:before {
	opacity: 1;
}

.participant-card__no-answer {
	width: 8px;
	height: 8px;
	content: "";
	background-color: #82828c;
	border-radius: 50%;
	margin-right: 5px;
	display: inline-block;
}

.participant-card__accept {
	width: 8px;
	height: 8px;
	content: "";
	background-color: #3688dc;
	border-radius: 50%;
	margin-right: 5px;
	display: inline-block;
}

.participant-card__decline {
	width: 8px;
	height: 8px;
	content: "";
	background-color: #d63030;
	border-radius: 50%;
	margin-right: 5px;
	display: inline-block;
}

.participant-card__maybe {
	width: 8px;
	height: 8px;
	content: "";
	background-color: #eaecee;
	border-radius: 50%;
	margin-right: 5px;
	display: inline-block;
}

.tat-list.selector-list.v-grid {
	background-color: #eaecee;
}

.profile-grid-item {
	display: flex;
	flex-direction: column;
	position: relative;
	font-weight: 700;
	width: 100%;
}

.profile-grid-item--player {
	line-height: 1;
}

.equipment-grid-item {
	display: flex;
	flex-direction: column;
	position: relative;
	font-weight: 700;
	width: 100%;
}

.equipment-grid-item__extra {
	line-height: 1;
	font-weight: 200;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
}

.profile-grid-item__medical-condition {
	background: url(img/icon/sick.svg) no-repeat center;
	background-size: contain;
	display: inline-flex;
	margin-left: 4px;
	height: 12px;
	width: 12px;
}

.profile-grid-item__team {
	width: 95%;
	display: inline-block;
	padding-top: 2px;
	font-size: 10px;
	font-weight: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.selected-grid-header .v-grid-column-header-content {
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #4c4c54;
	background-color: #eaecee;
	height: 35px;
	line-height: 40px;
}

@media (max-width: 992px) {
	.selector__controller-layout {
		justify-content: flex-start;
	}
}

.wcs-token-field-layout {
	display: flex;
	flex-direction: column;
}

.wcs-token-field-layout .token-selector {
	width: 100%;
}

.wcs-token-field-layout .tokens-layout {
	display: flex;
	flex-wrap: wrap;
	max-width: 350px;
}

.wcs-token-field-layout .token-layout {
	font-size: 14px;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.1);
	display: flex;
	margin: 5px 5px 0 0;
	padding: 2px 2px 2px 5px;
	align-items: center;
	border-radius: 6px;
	justify-content: space-between;
}

.wcs-token-field-layout .token-button {
	background: none;
	margin-left: 10px;
	padding: 0;
	width: 22px;
	height: 22px;
}

.wcs-token-field-layout .token-button .v-button-wrap:before {
	content: "";
	background: url(img/icon/close.svg) no-repeat center;
	opacity: 0.4;
	width: 22px;
	height: 22px;
	background-size: 14px;
	display: inline-flex;
}

.wcs-token-field-layout .token-button .v-button-wrap .v-icon {
	display: none;
}

.wcs-token-field-layout .token-button:hover .v-button-wrap:before {
	opacity: 1;
}

@media (min-width: 701px) {
	.v-customcomponent-w10 .wcs-token-field-layout {
		width: 10px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w20 .wcs-token-field-layout {
		width: 20px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w30 .wcs-token-field-layout {
		width: 30px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w40 .wcs-token-field-layout {
		width: 40px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w50 .wcs-token-field-layout {
		width: 50px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w60 .wcs-token-field-layout {
		width: 60px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w70 .wcs-token-field-layout {
		width: 70px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w80 .wcs-token-field-layout {
		width: 80px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w90 .wcs-token-field-layout {
		width: 90px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w100 .wcs-token-field-layout {
		width: 100px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w110 .wcs-token-field-layout {
		width: 110px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w120 .wcs-token-field-layout {
		width: 120px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w130 .wcs-token-field-layout {
		width: 130px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w140 .wcs-token-field-layout {
		width: 140px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w150 .wcs-token-field-layout {
		width: 150px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w160 .wcs-token-field-layout {
		width: 160px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w170 .wcs-token-field-layout {
		width: 170px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w180 .wcs-token-field-layout {
		width: 180px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w190 .wcs-token-field-layout {
		width: 190px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w200 .wcs-token-field-layout {
		width: 200px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w210 .wcs-token-field-layout {
		width: 210px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w220 .wcs-token-field-layout {
		width: 220px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w230 .wcs-token-field-layout {
		width: 230px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w240 .wcs-token-field-layout {
		width: 240px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w250 .wcs-token-field-layout {
		width: 250px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w260 .wcs-token-field-layout {
		width: 260px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w270 .wcs-token-field-layout {
		width: 270px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w280 .wcs-token-field-layout {
		width: 280px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w290 .wcs-token-field-layout {
		width: 290px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w300 .wcs-token-field-layout {
		width: 300px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w310 .wcs-token-field-layout {
		width: 310px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w320 .wcs-token-field-layout {
		width: 320px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w330 .wcs-token-field-layout {
		width: 330px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w340 .wcs-token-field-layout {
		width: 340px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w350 .wcs-token-field-layout {
		width: 350px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w360 .wcs-token-field-layout {
		width: 360px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w370 .wcs-token-field-layout {
		width: 370px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w380 .wcs-token-field-layout {
		width: 380px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w390 .wcs-token-field-layout {
		width: 390px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w400 .wcs-token-field-layout {
		width: 400px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w410 .wcs-token-field-layout {
		width: 410px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w420 .wcs-token-field-layout {
		width: 420px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w430 .wcs-token-field-layout {
		width: 430px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w440 .wcs-token-field-layout {
		width: 440px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w450 .wcs-token-field-layout {
		width: 450px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w460 .wcs-token-field-layout {
		width: 460px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w470 .wcs-token-field-layout {
		width: 470px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w480 .wcs-token-field-layout {
		width: 480px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w490 .wcs-token-field-layout {
		width: 490px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w500 .wcs-token-field-layout {
		width: 500px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w510 .wcs-token-field-layout {
		width: 510px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w520 .wcs-token-field-layout {
		width: 520px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w530 .wcs-token-field-layout {
		width: 530px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w540 .wcs-token-field-layout {
		width: 540px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w550 .wcs-token-field-layout {
		width: 550px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w560 .wcs-token-field-layout {
		width: 560px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w570 .wcs-token-field-layout {
		width: 570px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w580 .wcs-token-field-layout {
		width: 580px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w590 .wcs-token-field-layout {
		width: 590px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w600 .wcs-token-field-layout {
		width: 600px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w610 .wcs-token-field-layout {
		width: 610px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w620 .wcs-token-field-layout {
		width: 620px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w630 .wcs-token-field-layout {
		width: 630px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w640 .wcs-token-field-layout {
		width: 640px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w650 .wcs-token-field-layout {
		width: 650px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w660 .wcs-token-field-layout {
		width: 660px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w670 .wcs-token-field-layout {
		width: 670px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w680 .wcs-token-field-layout {
		width: 680px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w690 .wcs-token-field-layout {
		width: 690px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w700 .wcs-token-field-layout {
		width: 700px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w710 .wcs-token-field-layout {
		width: 710px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w720 .wcs-token-field-layout {
		width: 720px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w730 .wcs-token-field-layout {
		width: 730px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w740 .wcs-token-field-layout {
		width: 740px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w750 .wcs-token-field-layout {
		width: 750px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w760 .wcs-token-field-layout {
		width: 760px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w770 .wcs-token-field-layout {
		width: 770px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w780 .wcs-token-field-layout {
		width: 780px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w790 .wcs-token-field-layout {
		width: 790px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w800 .wcs-token-field-layout {
		width: 800px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w810 .wcs-token-field-layout {
		width: 810px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w820 .wcs-token-field-layout {
		width: 820px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w830 .wcs-token-field-layout {
		width: 830px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w840 .wcs-token-field-layout {
		width: 840px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w850 .wcs-token-field-layout {
		width: 850px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w860 .wcs-token-field-layout {
		width: 860px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w870 .wcs-token-field-layout {
		width: 870px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w880 .wcs-token-field-layout {
		width: 880px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w890 .wcs-token-field-layout {
		width: 890px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w900 .wcs-token-field-layout {
		width: 900px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w910 .wcs-token-field-layout {
		width: 910px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w920 .wcs-token-field-layout {
		width: 920px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w930 .wcs-token-field-layout {
		width: 930px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w940 .wcs-token-field-layout {
		width: 940px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w950 .wcs-token-field-layout {
		width: 950px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w960 .wcs-token-field-layout {
		width: 960px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w970 .wcs-token-field-layout {
		width: 970px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w980 .wcs-token-field-layout {
		width: 980px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w990 .wcs-token-field-layout {
		width: 990px;
	}
}

@media (min-width: 701px) {
	.v-customcomponent-w1000 .wcs-token-field-layout {
		width: 1000px;
	}
}

.v-filterselect-suggestpopup .gwt-MenuItem {
	display: flex;
	flex-direction: row;
}

.v-filterselect-suggestpopup .gwt-MenuItem .v-checkbox {
	margin-top: -8px;
}

.gwt-MenuItem.align-center {
	justify-content: center;
}

.v-window.multiple-upload-state-window {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	border-radius: 6px;
}

.v-window.multiple-upload-state-window.position-bottom-right {
	bottom: 15px !important;
	right: 15px !important;
}

.v-window.multiple-upload-state-window .popupContent .v-window-wrap .v-window-outerheader .v-window-header {
	padding: 0 0 0 10px;
	color: #333333;
	font-weight: 500;
	font-size: 15px;
	font-family: "U";
}

.v-window.multiple-upload-state-window .popupContent .v-window-wrap .v-window-contents .v-scrollable .multiple-upload-state-window-layout {
	padding: 0 10px;
}

.v-window.multiple-upload-state-window .popupContent .v-window-wrap .v-window-contents .v-scrollable .multiple-upload-state-window-layout .v-slot-multiple-upload-state-panel {
	margin: 0;
}

.v-window.multiple-upload-state-window .popupContent .v-window-wrap .v-window-contents .v-scrollable .multiple-upload-state-window-layout .v-slot-multiple-upload-state-panel .multiple-upload-state-panel .v-panel-content-multiple-upload-state-panel {
	padding: 0;
}

.v-window.multiple-upload-state-window .popupContent .v-window-wrap .v-window-contents .v-scrollable .multiple-upload-state-window-layout .v-slot-multiple-upload-state-panel .multiple-upload-state-panel .v-panel-content-multiple-upload-state-panel .v-label {
	font-weight: 500;
}

.v-window.multiple-upload-state-window .popupContent .v-window-wrap .v-window-contents .v-scrollable .multiple-upload-state-window-layout .v-slot-multiple-upload-state-panel .multiple-upload-state-panel .v-panel-content-multiple-upload-state-panel .v-slot-multiple-upload-state-cancelbuttonlayout .multiple-upload-state-cancelbuttonlayout {
	margin: 0 !important;
	padding: 0 0 10px;
}

.v-window.multiple-upload-state-window .popupContent .v-window-wrap .v-window-contents .v-scrollable .multiple-upload-state-window-layout .v-slot-multiple-upload-state-panel .multiple-upload-state-panel .v-panel-content-multiple-upload-state-panel .v-slot-multiple-upload-state-cancelbuttonlayout .multiple-upload-state-cancelbuttonlayout .v-label {
	padding-top: 8px;
	color: #687684;
}

.v-Notification-caption {
	color: #333333 !important;
	margin: 0 0 10px;
	font-weight: 500;
	font-size: 15px;
	width: calc(100% - 26px);
}

.v-Notification-description {
	color: #333333 !important;
	margin: 0 !important;
	font-weight: 400;
	font-size: 13px;
	padding-left: 30px;
}

.chooser-layout {
	align-items: center;
	display: flex;
	flex-direction: row;
	background: #d8d8d8;
	border-radius: 6px;
	padding: 10px;
	height: 100%;
}

.chooser-layout__team-layout {
	width: 100%;
	overflow: auto;
	display: flex;
	width: 100%;
	overflow: auto;
	flex-direction: row;
}

.media-component-layout {
	max-width: 775px;
}

.media-button-layout {
	border: 1px solid #3688dc;
	border-radius: 6px;
	background-color: white;
	padding: 5px;
	margin-bottom: 10px;
}

.media-upload-button .v-button {
	height: 20px;
	padding: 0 8px;
	color: #3688dc;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 0;
	border: none;
	
	
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	border-right: 1px solid #3688dc;
}

.media-upload-button .v-button:after {
	border: inherit;
	
	
	
	
}

.media-upload-button .v-button:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.media-upload-button .v-button:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.media-upload-button .v-button:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-button-media-upload-button {
	height: 20px;
	padding: 0 8px;
	color: #3688dc;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 0;
	border: none;
	
	
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-button-media-upload-button:after {
	border: inherit;
	
	
	
	
}

.v-button-media-upload-button:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.v-button-media-upload-button:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.v-button-media-upload-button:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.v-image-document-mime-image {
	margin-right: 10px;
	height: 25px;
}

.image-card-layout__image, .document-card-layout__name, .video-card-layout__name {
	cursor: pointer;
	max-height: 150px;
}

.form-block-attachment .image-card-layout {
	height: 100%;
	padding: 0 15px 15px 0;
}

.form-block-attachment .image-card-layout .image-layout {
	flex-grow: 1;
	max-width: 140px;
}

.form-block-attachment .image-card-layout .image-layout .v-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.form-block-attachment .image-card-layout .image-layout .v-image.public-document {
	box-shadow: 0 0 5px 1px #3688dc;
}

.form-block-attachment .image-card-layout .image-layout .delete-button-layout {
	position: absolute;
	top: 0;
	right: 0;
}

.form-block-attachment .image-card-layout .image-layout .delete-button-layout .image-card-layout__delete-button {
	border-radius: 30px;
	background: white;
	width: 24px;
	height: 24px;
	padding: 0;
	right: -10px;
	top: -10px;
	color: #d63030;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.form-block-attachment .image-card-layout .image-layout .delete-button-layout .image-card-layout__delete-button .v-button-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.form-block-attachment .image-card-layout .image-layout .delete-button-layout .image-card-layout__delete-button .v-button-wrap .v-icon {
	font-size: 12px;
}

.form-block-attachment .media-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.form-block-attachment .document-card-layout, .form-block-attachment .video-card-layout {
	background: white;
	border-radius: 6px;
	padding: 5px 5px 5px 10px;
	margin: 0 0 5px;
}

.form-block-attachment .document-card-layout.public-document, .form-block-attachment .video-card-layout.public-document {
	box-shadow: 0 0 5px 1px #3688dc;
}

.form-panel .document-card-layout {
	margin: 5px 0;
}

.form-panel .document-card-layout .document-card-layout__name {
	font-weight: 900;
	color: #687684;
}

.form-panel .document-card-layout .document-card-layout__name .v-label {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 185px;
}

.form-panel .document-card-layout .v-button.delete {
	height: 16px;
	width: 16px;
	padding: 0;
	margin-right: 5px;
}

.form-panel .document-card-layout .v-button.delete, .form-panel .document-card-layout .v-button.delete:after {
	background: none !important;
}

.form-panel .document-card-layout .v-button.delete .v-button-wrap .v-button-caption:before {
	opacity: 0;
}

.form-panel .document-card-layout:hover .document-card-layout__name {
	color: #333333;
}

.form-panel .document-card-layout:hover .v-button.delete .v-button-wrap .v-button-caption:before {
	opacity: 1;
}

.form-panel .media-upload-button .v-button {
	height: auto;
	padding: 0;
	color: #3688dc;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	display: inline-flex;
	padding: 2px 0;
}

.form-panel .media-upload-button .v-button:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.form-panel .media-upload-button .v-button:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.form-panel .media-upload-button .v-button:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.form-panel .media-upload-button .v-button:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.form-panel .media-upload-button .v-button:hover {
	color: #0a56a4;
}

.form-panel .media-upload-button .v-button:hover:after {
	background-color: transparent;
}

.small .image-card-layout__image {
	max-width: 70px;
}

.file-upload-link .v-button {
	height: auto;
	padding: 0;
	color: #687684;
	font-weight: 900;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	display: inline-flex;
	padding: 2px 0;
}

.file-upload-link .v-button:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.file-upload-link .v-button:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.file-upload-link .v-button:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.file-upload-link .v-button:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.file-upload-link .v-button:hover {
	color: #4c4c54;
}

.file-upload-link .v-button:hover:after {
	background-color: transparent;
}

.v-colorpicker-button-color + .v-button-caption:not(:empty) {
	margin-left: 35px;
}

.v-colorpicker-button-color {
	top: 3px;
	bottom: 3px;
}

.tat-confirm-dialog-window-layout .v-label {
	max-width: 750px;
	min-width: 250px;
}

.tat-confirm-dialog-window-layout .v-label pre {
	white-space: pre-wrap;
}

.tat-confirm-dialog-window {
	z-index: 30000 !important;
}

.audit-info-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.audit-info-row .v-label {
	font-weight: 700;
}

.audit-info-row.separator {
	margin-top: 5px;
	border-top: 1px solid #d8d8d8;
	padding-top: 5px;
}

.exercise-sport-field-photo-layout {
	display: flex;
	justify-content: center;
	align-items: center;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo__image__wrapper {
	width: 175px;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo__image__wrapper .exercise-sport-field-photo__image {
	width: 175px;
	cursor: pointer;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo__image__wrapper .exercise-sport-field-photo__image .v-image {
	width: 175px;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo__image__wrapper .v-image {
	width: 175px;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo-upload-link {
	position: absolute;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo-upload-link .v-customcomponent.v-widget .gwt-FileUpload {
	display: none;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo-upload-link .v-customcomponent.v-widget .v-button {
	background: none;
	padding: 0;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo-upload-link .v-customcomponent.v-widget .v-button:after {
	background: none;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo-upload-link .v-customcomponent.v-widget .v-button:after:hover {
	background: none;
}

.exercise-sport-field-photo-layout .exercise-sport-field-photo-upload-link .v-customcomponent.v-widget .v-button:before {
	background: url(img/icon/upload.svg) no-repeat center;
	width: 40px;
	height: 40px;
}

.v-slot-check-box-info-link {
	margin-left: -10px;
	margin-top: 2px;
}

.v-slot-shared-event-link {
	margin-left: -15px;
}

.v-slot-text-area-info-link {
	margin-left: 5px;
	margin-top: 2px;
	margin-bottom: 3px;
}

.v-slot-label-info-link, .finance-dashboard-label-info-link {
	margin-left: 5px;
}

.text-area-info-link, .check-box-info-link, .label-info-link {
	position: relative;
}

.text-area-info-link a, .check-box-info-link a, .label-info-link a {
	width: 15px;
	position: absolute;
	left: 0;
	height: 15px;
}

.text-area-info-link:before, .check-box-info-link:before, .label-info-link:before {
	content: "";
	width: 15px;
	height: 15px;
	display: inline-flex;
	background: url(img/icon/info.svg) no-repeat center;
}

.v-link-with-border {
	border: 1px solid;
	padding: 5px 15px;
	border-radius: 5px;
}

.v-link.icon-only {
	display: flex;
	align-items: center;
	justify-content: center;
}

.v-link.icon-only a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 35px;
	height: 35px;
	border-radius: 5px;
}

.v-link.icon-only:hover a {
	background-color: rgba(0, 0, 0, 0.1);
}

.v-link.icon-only:before {
	content: "";
	width: 22px;
	height: 22px;
	display: inline-flex;
	background-size: contain !important;
}

.v-link.icon-only.download:before {
	background: url(img/icon/download.svg) no-repeat center;
}

.v-link.icon-only.video:before {
	background: url(img/icon/video.svg) no-repeat center;
}

.news-window {
	max-height: 95vh;
}

.news-window .v-window-outerheader {
	position: unset;
	border-bottom: 1px solid #D8D8D8;
	padding-bottom: 15px;
	margin: 20px 20px 0 20px;
}

.news-window .v-window-outerheader .v-window-closebox {
	font-size: 30px;
}

.news-window .v-window-outerheader .v-window-header {
	padding: 0;
	font-weight: bold;
	font-size: 20px;
	line-height: 23px;
	color: #333333;
	font-family: "U";
	display: flex;
	align-items: center;
	flex-direction: row;
}

.news-window .v-window-outerheader .v-window-header:before {
	margin-right: 15px;
	content: "";
	width: 28px;
	height: 28px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/news.svg) no-repeat center;
}

.news-window .v-window-contents {
	margin: 0 !important;
	padding: 0 !important;
}

.news-window .v-window-contents .news-content-layout {
	display: flex;
	flex-direction: column;
	overflow: auto;
	max-height: 85vh;
	padding: 0 30px;
}

.v-caption-search-combo-box__search-field span.v-icon {
	bottom: 5px;
}

.search-combo-box__layout-row {
	height: auto;
	padding: 5px;
	color: #333333;
	font-weight: 500;
	font-size: 14px;
	
	border-radius: 6px;
	border: 0px solid transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
	background-image: linear-gradient(to bottom,transparent 0%, transparent 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-align: left;
}

.search-combo-box__layout-row:after {
	border: inherit;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.search-combo-box__layout-row:hover:after {
	background-color: rgba(38, 38, 38, 0.1);
}

.search-combo-box__layout-row:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}

.search-combo-box__layout-row:active:after {
	background-color: rgba(0, 0, 0, 0.2);
}

.search-combo-box__layout-row:before {
	display: none;
}

.search-combo-box__layout-row .v-button-wrap {
	width: 100%;
	display: flex;
	padding: 0 5px;
	flex-direction: row;
	align-items: center;
}

.search-combo-box__layout-row .v-button-caption {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-combo-box__layout-row.new {
	padding: 0 5px;
}

.search-combo-box__layout-row.new .v-button-caption {
	font-weight: 700;
}

.search-combo-box__layout-row.new .v-button-wrap:before {
	content: "+";
	font-size: 24px;
	margin-right: 10px;
}

.w-errormessage {
	font-size: 14px;
	color: #d63030;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.w-errormessage-right .w-errormessage {
	display: inline-block;
	margin-left: 10px;
	margin-top: 4px;
}

.v-formlayout-light.w-errormessage-right .w-errormessage {
	position: absolute;
	width: 100%;
	margin-top: 4px;
}

.v-formlayout-light.w-errormessage-right-over .w-errormessage {
	display: inline-block;
	position: absolute;
	right: 30px;
	width: auto;
	margin-top: 2px;
	background: white;
	color: #474747;
	border: 1px solid #d63030;
	border-radius: 6px;
	padding: 2px 5px;
	font-weight: 500;
}

.v-formlayout-light.w-errormessage-right-over .w-errormessage-hide + .w-errormessage {
	opacity: 0;
}

.certified-athlete-window {
	max-height: 95vh;
	overflow: auto !important;
}

.certified-athlete-window .v-window-outerheader {
	position: unset;
	border-bottom: 1px solid #D8D8D8;
	padding-bottom: 15px;
	margin: 20px 20px 0 20px;
}

.certified-athlete-window .v-window-outerheader .v-window-closebox {
	font-size: 30px;
}

.certified-athlete-window .v-window-outerheader .v-window-header {
	padding: 0;
	font-weight: bold;
	font-size: 20px;
	line-height: 23px;
	color: #333333;
	font-family: "U";
	display: flex;
	align-items: center;
	flex-direction: row;
}

.certified-athlete-window .v-window-contents {
	margin: 0 !important;
	padding: 0 !important;
}

.certified-athlete-window .v-window-contents .certified-athlete-layout {
	display: flex;
	flex-direction: column;
	overflow: auto;
	max-height: 85vh;
	padding: 0 30px;
}

.certified-athlete-window .v-caption-certified-athlete-block {
	font-weight: bold;
	font-size: 18px;
}

.certified-athlete-window .v-label-certified-athlete-info-label {
	margin-bottom: 30px;
	margin-top: 30px;
}

::placeholder {
	color: #82828c;
}

:-ms-input-placeholder {
	color: #82828c;
}

::-ms-input-placeholder {
	color: #82828c;
}

:focus {
	outline: none;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-shadow: none;
}

pre {
	font-family: "A";
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: inherit;
	display: block;
	font-weight: 700;
	line-height: 1.2em;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: none;
	font-family: "U";
}

h1.no-margin, h2.no-margin, h3.no-margin, h4.no-margin, h5.no-margin, h6.no-margin, .h1.no-margin, .h2.no-margin, .h3.no-margin, .h4.no-margin, .h5.no-margin, .h6.no-margin {
	margin: 0 !important;
}

.h1, h1 {
	font-size: 1.25rem;
}

.h2, h2 {
	font-size: 0.95rem;
}

.h3, h3 {
	font-size: 0.88rem;
}

.h4, h4 {
	font-size: 0.8rem;
}

.h5, h5 {
	font-size: 0.77rem;
}

.h6, h6 {
	font-size: 0.75rem;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5.h6:first-child, .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child, p:first-child, ul:first-child, ol:first-child {
	margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5.h6:last-child, .h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, p:last-child, ul:last-child, ol:last-child {
	margin-bottom: 0;
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

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

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

.text-black {
	font-weight: 900;
}

.font-color-red {
	color: #d63030;
}

.font-color-green {
	color: #00b894;
}

.text-bold {
	font-weight: 700;
}

.text-medium {
	font-weight: 500;
}

.text-secondary {
	color: #687684;
}

.text-strikethrough {
	text-decoration: line-through;
}

.block {
	display: block;
}

.flex {
	display: flex;
}

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

.flex-column {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

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

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

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

.flex-row-reverse {
	flex-direction: row-reverse;
}

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

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

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

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

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

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

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

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

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

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

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

.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
	grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
	grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
	grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-rows-1 {
	grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-2 {
	grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
	grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
	grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5 {
	grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6 {
	grid-template-rows: repeat(6, minmax(0, 1fr));
}

.grid-gap-5 {
	gap: 5px;
}

.grid-column-gap-5 {
	column-gap: 5px;
}

.grid-row-gap-5 {
	row-gap: 5px;
}

.grid-gap-10 {
	gap: 10px;
}

.grid-column-gap-10 {
	column-gap: 10px;
}

.grid-row-gap-10 {
	row-gap: 10px;
}

.grid-gap-15 {
	gap: 15px;
}

.grid-column-gap-15 {
	column-gap: 15px;
}

.grid-row-gap-15 {
	row-gap: 15px;
}

.grid-gap-20 {
	gap: 20px;
}

.grid-column-gap-20 {
	column-gap: 20px;
}

.grid-row-gap-20 {
	row-gap: 20px;
}

.grid-gap-25 {
	gap: 25px;
}

.grid-column-gap-25 {
	column-gap: 25px;
}

.grid-row-gap-25 {
	row-gap: 25px;
}

.overflow-auto {
	overflow: auto;
}

.no-shadow {
	box-shadow: none;
}

.bottom-divider {
	border-bottom: 2px solid #eaecee;
}

.bottom-divider-mobile {
	border-bottom: 1px solid #d4d4d4;
}

.cursor-pointer {
	cursor: pointer;
}

.text-overflow-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
}

.pre-wrap pre {
	white-space: pre-wrap;
}

.row-pointer {
	padding: 2px 5px;
}

.row-pointer:hover {
	border-radius: 5px;
	border: 1px solid #3688dc;
	padding: 0 4px;
	cursor: pointer;
	margin: 0;
}

.v-slot-w0p .v-widget {
	width: 100%;
}

.layout-w0p, .v-button-w0p, .v-label-w0p, .v-textfield-w0p, .v-textarea-w0p, .v-filterselect-w0p, .v-datefield-w0p, .v-checkbox-w0p, .v-customcomponent-w0p {
	width: 0%;
}

.v-slot-w10p .v-widget {
	width: 100%;
}

.layout-w10p, .v-button-w10p, .v-label-w10p, .v-textfield-w10p, .v-textarea-w10p, .v-filterselect-w10p, .v-datefield-w10p, .v-checkbox-w10p, .v-customcomponent-w10p {
	width: 10%;
}

.v-slot-w20p .v-widget {
	width: 100%;
}

.layout-w20p, .v-button-w20p, .v-label-w20p, .v-textfield-w20p, .v-textarea-w20p, .v-filterselect-w20p, .v-datefield-w20p, .v-checkbox-w20p, .v-customcomponent-w20p {
	width: 20%;
}

.v-slot-w30p .v-widget {
	width: 100%;
}

.layout-w30p, .v-button-w30p, .v-label-w30p, .v-textfield-w30p, .v-textarea-w30p, .v-filterselect-w30p, .v-datefield-w30p, .v-checkbox-w30p, .v-customcomponent-w30p {
	width: 30%;
}

.v-slot-w40p .v-widget {
	width: 100%;
}

.layout-w40p, .v-button-w40p, .v-label-w40p, .v-textfield-w40p, .v-textarea-w40p, .v-filterselect-w40p, .v-datefield-w40p, .v-checkbox-w40p, .v-customcomponent-w40p {
	width: 40%;
}

.v-slot-w50p .v-widget {
	width: 100%;
}

.layout-w50p, .v-button-w50p, .v-label-w50p, .v-textfield-w50p, .v-textarea-w50p, .v-filterselect-w50p, .v-datefield-w50p, .v-checkbox-w50p, .v-customcomponent-w50p {
	width: 50%;
}

.v-slot-w60p .v-widget {
	width: 100%;
}

.layout-w60p, .v-button-w60p, .v-label-w60p, .v-textfield-w60p, .v-textarea-w60p, .v-filterselect-w60p, .v-datefield-w60p, .v-checkbox-w60p, .v-customcomponent-w60p {
	width: 60%;
}

.v-slot-w70p .v-widget {
	width: 100%;
}

.layout-w70p, .v-button-w70p, .v-label-w70p, .v-textfield-w70p, .v-textarea-w70p, .v-filterselect-w70p, .v-datefield-w70p, .v-checkbox-w70p, .v-customcomponent-w70p {
	width: 70%;
}

.v-slot-w80p .v-widget {
	width: 100%;
}

.layout-w80p, .v-button-w80p, .v-label-w80p, .v-textfield-w80p, .v-textarea-w80p, .v-filterselect-w80p, .v-datefield-w80p, .v-checkbox-w80p, .v-customcomponent-w80p {
	width: 80%;
}

.v-slot-w90p .v-widget {
	width: 100%;
}

.layout-w90p, .v-button-w90p, .v-label-w90p, .v-textfield-w90p, .v-textarea-w90p, .v-filterselect-w90p, .v-datefield-w90p, .v-checkbox-w90p, .v-customcomponent-w90p {
	width: 90%;
}

.v-slot-w100p .v-widget {
	width: 100%;
}

.layout-w100p, .v-button-w100p, .v-label-w100p, .v-textfield-w100p, .v-textarea-w100p, .v-filterselect-w100p, .v-datefield-w100p, .v-checkbox-w100p, .v-customcomponent-w100p {
	width: 100%;
}

.layout-w10, .v-button-w10, .v-label-w10, .v-textfield-w10, .v-textarea-w10, .v-filterselect-w10, .v-datefield-w10, .v-checkbox-w10, .v-customcomponent-w10 {
	width: 10px;
}

.layout-w20, .v-button-w20, .v-label-w20, .v-textfield-w20, .v-textarea-w20, .v-filterselect-w20, .v-datefield-w20, .v-checkbox-w20, .v-customcomponent-w20 {
	width: 20px;
}

.layout-w30, .v-button-w30, .v-label-w30, .v-textfield-w30, .v-textarea-w30, .v-filterselect-w30, .v-datefield-w30, .v-checkbox-w30, .v-customcomponent-w30 {
	width: 30px;
}

.layout-w40, .v-button-w40, .v-label-w40, .v-textfield-w40, .v-textarea-w40, .v-filterselect-w40, .v-datefield-w40, .v-checkbox-w40, .v-customcomponent-w40 {
	width: 40px;
}

.layout-w50, .v-button-w50, .v-label-w50, .v-textfield-w50, .v-textarea-w50, .v-filterselect-w50, .v-datefield-w50, .v-checkbox-w50, .v-customcomponent-w50 {
	width: 50px;
}

.layout-w60, .v-button-w60, .v-label-w60, .v-textfield-w60, .v-textarea-w60, .v-filterselect-w60, .v-datefield-w60, .v-checkbox-w60, .v-customcomponent-w60 {
	width: 60px;
}

.layout-w70, .v-button-w70, .v-label-w70, .v-textfield-w70, .v-textarea-w70, .v-filterselect-w70, .v-datefield-w70, .v-checkbox-w70, .v-customcomponent-w70 {
	width: 70px;
}

.layout-w80, .v-button-w80, .v-label-w80, .v-textfield-w80, .v-textarea-w80, .v-filterselect-w80, .v-datefield-w80, .v-checkbox-w80, .v-customcomponent-w80 {
	width: 80px;
}

.layout-w90, .v-button-w90, .v-label-w90, .v-textfield-w90, .v-textarea-w90, .v-filterselect-w90, .v-datefield-w90, .v-checkbox-w90, .v-customcomponent-w90 {
	width: 90px;
}

.layout-w100, .v-button-w100, .v-label-w100, .v-textfield-w100, .v-textarea-w100, .v-filterselect-w100, .v-datefield-w100, .v-checkbox-w100, .v-customcomponent-w100 {
	width: 100px;
}

.layout-w110, .v-button-w110, .v-label-w110, .v-textfield-w110, .v-textarea-w110, .v-filterselect-w110, .v-datefield-w110, .v-checkbox-w110, .v-customcomponent-w110 {
	width: 110px;
}

.layout-w120, .v-button-w120, .v-label-w120, .v-textfield-w120, .v-textarea-w120, .v-filterselect-w120, .v-datefield-w120, .v-checkbox-w120, .v-customcomponent-w120 {
	width: 120px;
}

.layout-w130, .v-button-w130, .v-label-w130, .v-textfield-w130, .v-textarea-w130, .v-filterselect-w130, .v-datefield-w130, .v-checkbox-w130, .v-customcomponent-w130 {
	width: 130px;
}

.layout-w140, .v-button-w140, .v-label-w140, .v-textfield-w140, .v-textarea-w140, .v-filterselect-w140, .v-datefield-w140, .v-checkbox-w140, .v-customcomponent-w140 {
	width: 140px;
}

.layout-w150, .v-button-w150, .v-label-w150, .v-textfield-w150, .v-textarea-w150, .v-filterselect-w150, .v-datefield-w150, .v-checkbox-w150, .v-customcomponent-w150 {
	width: 150px;
}

.layout-w160, .v-button-w160, .v-label-w160, .v-textfield-w160, .v-textarea-w160, .v-filterselect-w160, .v-datefield-w160, .v-checkbox-w160, .v-customcomponent-w160 {
	width: 160px;
}

.layout-w170, .v-button-w170, .v-label-w170, .v-textfield-w170, .v-textarea-w170, .v-filterselect-w170, .v-datefield-w170, .v-checkbox-w170, .v-customcomponent-w170 {
	width: 170px;
}

.layout-w180, .v-button-w180, .v-label-w180, .v-textfield-w180, .v-textarea-w180, .v-filterselect-w180, .v-datefield-w180, .v-checkbox-w180, .v-customcomponent-w180 {
	width: 180px;
}

.layout-w190, .v-button-w190, .v-label-w190, .v-textfield-w190, .v-textarea-w190, .v-filterselect-w190, .v-datefield-w190, .v-checkbox-w190, .v-customcomponent-w190 {
	width: 190px;
}

.layout-w200, .v-button-w200, .v-label-w200, .v-textfield-w200, .v-textarea-w200, .v-filterselect-w200, .v-datefield-w200, .v-checkbox-w200, .v-customcomponent-w200 {
	width: 200px;
}

.layout-w210, .v-button-w210, .v-label-w210, .v-textfield-w210, .v-textarea-w210, .v-filterselect-w210, .v-datefield-w210, .v-checkbox-w210, .v-customcomponent-w210 {
	width: 210px;
}

.layout-w220, .v-button-w220, .v-label-w220, .v-textfield-w220, .v-textarea-w220, .v-filterselect-w220, .v-datefield-w220, .v-checkbox-w220, .v-customcomponent-w220 {
	width: 220px;
}

.layout-w230, .v-button-w230, .v-label-w230, .v-textfield-w230, .v-textarea-w230, .v-filterselect-w230, .v-datefield-w230, .v-checkbox-w230, .v-customcomponent-w230 {
	width: 230px;
}

.layout-w240, .v-button-w240, .v-label-w240, .v-textfield-w240, .v-textarea-w240, .v-filterselect-w240, .v-datefield-w240, .v-checkbox-w240, .v-customcomponent-w240 {
	width: 240px;
}

.layout-w250, .v-button-w250, .v-label-w250, .v-textfield-w250, .v-textarea-w250, .v-filterselect-w250, .v-datefield-w250, .v-checkbox-w250, .v-customcomponent-w250 {
	width: 250px;
}

.layout-w260, .v-button-w260, .v-label-w260, .v-textfield-w260, .v-textarea-w260, .v-filterselect-w260, .v-datefield-w260, .v-checkbox-w260, .v-customcomponent-w260 {
	width: 260px;
}

.layout-w270, .v-button-w270, .v-label-w270, .v-textfield-w270, .v-textarea-w270, .v-filterselect-w270, .v-datefield-w270, .v-checkbox-w270, .v-customcomponent-w270 {
	width: 270px;
}

.layout-w280, .v-button-w280, .v-label-w280, .v-textfield-w280, .v-textarea-w280, .v-filterselect-w280, .v-datefield-w280, .v-checkbox-w280, .v-customcomponent-w280 {
	width: 280px;
}

.layout-w290, .v-button-w290, .v-label-w290, .v-textfield-w290, .v-textarea-w290, .v-filterselect-w290, .v-datefield-w290, .v-checkbox-w290, .v-customcomponent-w290 {
	width: 290px;
}

.layout-w300, .v-button-w300, .v-label-w300, .v-textfield-w300, .v-textarea-w300, .v-filterselect-w300, .v-datefield-w300, .v-checkbox-w300, .v-customcomponent-w300 {
	width: 300px;
}

.layout-w310, .v-button-w310, .v-label-w310, .v-textfield-w310, .v-textarea-w310, .v-filterselect-w310, .v-datefield-w310, .v-checkbox-w310, .v-customcomponent-w310 {
	width: 310px;
}

.layout-w320, .v-button-w320, .v-label-w320, .v-textfield-w320, .v-textarea-w320, .v-filterselect-w320, .v-datefield-w320, .v-checkbox-w320, .v-customcomponent-w320 {
	width: 320px;
}

.layout-w330, .v-button-w330, .v-label-w330, .v-textfield-w330, .v-textarea-w330, .v-filterselect-w330, .v-datefield-w330, .v-checkbox-w330, .v-customcomponent-w330 {
	width: 330px;
}

.layout-w340, .v-button-w340, .v-label-w340, .v-textfield-w340, .v-textarea-w340, .v-filterselect-w340, .v-datefield-w340, .v-checkbox-w340, .v-customcomponent-w340 {
	width: 340px;
}

.layout-w350, .v-button-w350, .v-label-w350, .v-textfield-w350, .v-textarea-w350, .v-filterselect-w350, .v-datefield-w350, .v-checkbox-w350, .v-customcomponent-w350 {
	width: 350px;
}

.layout-w360, .v-button-w360, .v-label-w360, .v-textfield-w360, .v-textarea-w360, .v-filterselect-w360, .v-datefield-w360, .v-checkbox-w360, .v-customcomponent-w360 {
	width: 360px;
}

.layout-w370, .v-button-w370, .v-label-w370, .v-textfield-w370, .v-textarea-w370, .v-filterselect-w370, .v-datefield-w370, .v-checkbox-w370, .v-customcomponent-w370 {
	width: 370px;
}

.layout-w380, .v-button-w380, .v-label-w380, .v-textfield-w380, .v-textarea-w380, .v-filterselect-w380, .v-datefield-w380, .v-checkbox-w380, .v-customcomponent-w380 {
	width: 380px;
}

.layout-w390, .v-button-w390, .v-label-w390, .v-textfield-w390, .v-textarea-w390, .v-filterselect-w390, .v-datefield-w390, .v-checkbox-w390, .v-customcomponent-w390 {
	width: 390px;
}

.layout-w400, .v-button-w400, .v-label-w400, .v-textfield-w400, .v-textarea-w400, .v-filterselect-w400, .v-datefield-w400, .v-checkbox-w400, .v-customcomponent-w400 {
	width: 400px;
}

.layout-w410, .v-button-w410, .v-label-w410, .v-textfield-w410, .v-textarea-w410, .v-filterselect-w410, .v-datefield-w410, .v-checkbox-w410, .v-customcomponent-w410 {
	width: 410px;
}

.layout-w420, .v-button-w420, .v-label-w420, .v-textfield-w420, .v-textarea-w420, .v-filterselect-w420, .v-datefield-w420, .v-checkbox-w420, .v-customcomponent-w420 {
	width: 420px;
}

.layout-w430, .v-button-w430, .v-label-w430, .v-textfield-w430, .v-textarea-w430, .v-filterselect-w430, .v-datefield-w430, .v-checkbox-w430, .v-customcomponent-w430 {
	width: 430px;
}

.layout-w440, .v-button-w440, .v-label-w440, .v-textfield-w440, .v-textarea-w440, .v-filterselect-w440, .v-datefield-w440, .v-checkbox-w440, .v-customcomponent-w440 {
	width: 440px;
}

.layout-w450, .v-button-w450, .v-label-w450, .v-textfield-w450, .v-textarea-w450, .v-filterselect-w450, .v-datefield-w450, .v-checkbox-w450, .v-customcomponent-w450 {
	width: 450px;
}

.layout-w460, .v-button-w460, .v-label-w460, .v-textfield-w460, .v-textarea-w460, .v-filterselect-w460, .v-datefield-w460, .v-checkbox-w460, .v-customcomponent-w460 {
	width: 460px;
}

.layout-w470, .v-button-w470, .v-label-w470, .v-textfield-w470, .v-textarea-w470, .v-filterselect-w470, .v-datefield-w470, .v-checkbox-w470, .v-customcomponent-w470 {
	width: 470px;
}

.layout-w480, .v-button-w480, .v-label-w480, .v-textfield-w480, .v-textarea-w480, .v-filterselect-w480, .v-datefield-w480, .v-checkbox-w480, .v-customcomponent-w480 {
	width: 480px;
}

.layout-w490, .v-button-w490, .v-label-w490, .v-textfield-w490, .v-textarea-w490, .v-filterselect-w490, .v-datefield-w490, .v-checkbox-w490, .v-customcomponent-w490 {
	width: 490px;
}

.layout-w500, .v-button-w500, .v-label-w500, .v-textfield-w500, .v-textarea-w500, .v-filterselect-w500, .v-datefield-w500, .v-checkbox-w500, .v-customcomponent-w500 {
	width: 500px;
}

.layout-w510, .v-button-w510, .v-label-w510, .v-textfield-w510, .v-textarea-w510, .v-filterselect-w510, .v-datefield-w510, .v-checkbox-w510, .v-customcomponent-w510 {
	width: 510px;
}

.layout-w520, .v-button-w520, .v-label-w520, .v-textfield-w520, .v-textarea-w520, .v-filterselect-w520, .v-datefield-w520, .v-checkbox-w520, .v-customcomponent-w520 {
	width: 520px;
}

.layout-w530, .v-button-w530, .v-label-w530, .v-textfield-w530, .v-textarea-w530, .v-filterselect-w530, .v-datefield-w530, .v-checkbox-w530, .v-customcomponent-w530 {
	width: 530px;
}

.layout-w540, .v-button-w540, .v-label-w540, .v-textfield-w540, .v-textarea-w540, .v-filterselect-w540, .v-datefield-w540, .v-checkbox-w540, .v-customcomponent-w540 {
	width: 540px;
}

.layout-w550, .v-button-w550, .v-label-w550, .v-textfield-w550, .v-textarea-w550, .v-filterselect-w550, .v-datefield-w550, .v-checkbox-w550, .v-customcomponent-w550 {
	width: 550px;
}

.layout-w560, .v-button-w560, .v-label-w560, .v-textfield-w560, .v-textarea-w560, .v-filterselect-w560, .v-datefield-w560, .v-checkbox-w560, .v-customcomponent-w560 {
	width: 560px;
}

.layout-w570, .v-button-w570, .v-label-w570, .v-textfield-w570, .v-textarea-w570, .v-filterselect-w570, .v-datefield-w570, .v-checkbox-w570, .v-customcomponent-w570 {
	width: 570px;
}

.layout-w580, .v-button-w580, .v-label-w580, .v-textfield-w580, .v-textarea-w580, .v-filterselect-w580, .v-datefield-w580, .v-checkbox-w580, .v-customcomponent-w580 {
	width: 580px;
}

.layout-w590, .v-button-w590, .v-label-w590, .v-textfield-w590, .v-textarea-w590, .v-filterselect-w590, .v-datefield-w590, .v-checkbox-w590, .v-customcomponent-w590 {
	width: 590px;
}

.layout-w600, .v-button-w600, .v-label-w600, .v-textfield-w600, .v-textarea-w600, .v-filterselect-w600, .v-datefield-w600, .v-checkbox-w600, .v-customcomponent-w600 {
	width: 600px;
}

.layout-w610, .v-button-w610, .v-label-w610, .v-textfield-w610, .v-textarea-w610, .v-filterselect-w610, .v-datefield-w610, .v-checkbox-w610, .v-customcomponent-w610 {
	width: 610px;
}

.layout-w620, .v-button-w620, .v-label-w620, .v-textfield-w620, .v-textarea-w620, .v-filterselect-w620, .v-datefield-w620, .v-checkbox-w620, .v-customcomponent-w620 {
	width: 620px;
}

.layout-w630, .v-button-w630, .v-label-w630, .v-textfield-w630, .v-textarea-w630, .v-filterselect-w630, .v-datefield-w630, .v-checkbox-w630, .v-customcomponent-w630 {
	width: 630px;
}

.layout-w640, .v-button-w640, .v-label-w640, .v-textfield-w640, .v-textarea-w640, .v-filterselect-w640, .v-datefield-w640, .v-checkbox-w640, .v-customcomponent-w640 {
	width: 640px;
}

.layout-w650, .v-button-w650, .v-label-w650, .v-textfield-w650, .v-textarea-w650, .v-filterselect-w650, .v-datefield-w650, .v-checkbox-w650, .v-customcomponent-w650 {
	width: 650px;
}

.layout-w660, .v-button-w660, .v-label-w660, .v-textfield-w660, .v-textarea-w660, .v-filterselect-w660, .v-datefield-w660, .v-checkbox-w660, .v-customcomponent-w660 {
	width: 660px;
}

.layout-w670, .v-button-w670, .v-label-w670, .v-textfield-w670, .v-textarea-w670, .v-filterselect-w670, .v-datefield-w670, .v-checkbox-w670, .v-customcomponent-w670 {
	width: 670px;
}

.layout-w680, .v-button-w680, .v-label-w680, .v-textfield-w680, .v-textarea-w680, .v-filterselect-w680, .v-datefield-w680, .v-checkbox-w680, .v-customcomponent-w680 {
	width: 680px;
}

.layout-w690, .v-button-w690, .v-label-w690, .v-textfield-w690, .v-textarea-w690, .v-filterselect-w690, .v-datefield-w690, .v-checkbox-w690, .v-customcomponent-w690 {
	width: 690px;
}

.layout-w700, .v-button-w700, .v-label-w700, .v-textfield-w700, .v-textarea-w700, .v-filterselect-w700, .v-datefield-w700, .v-checkbox-w700, .v-customcomponent-w700 {
	width: 700px;
}

.layout-w710, .v-button-w710, .v-label-w710, .v-textfield-w710, .v-textarea-w710, .v-filterselect-w710, .v-datefield-w710, .v-checkbox-w710, .v-customcomponent-w710 {
	width: 710px;
}

.layout-w720, .v-button-w720, .v-label-w720, .v-textfield-w720, .v-textarea-w720, .v-filterselect-w720, .v-datefield-w720, .v-checkbox-w720, .v-customcomponent-w720 {
	width: 720px;
}

.layout-w730, .v-button-w730, .v-label-w730, .v-textfield-w730, .v-textarea-w730, .v-filterselect-w730, .v-datefield-w730, .v-checkbox-w730, .v-customcomponent-w730 {
	width: 730px;
}

.layout-w740, .v-button-w740, .v-label-w740, .v-textfield-w740, .v-textarea-w740, .v-filterselect-w740, .v-datefield-w740, .v-checkbox-w740, .v-customcomponent-w740 {
	width: 740px;
}

.layout-w750, .v-button-w750, .v-label-w750, .v-textfield-w750, .v-textarea-w750, .v-filterselect-w750, .v-datefield-w750, .v-checkbox-w750, .v-customcomponent-w750 {
	width: 750px;
}

.layout-w760, .v-button-w760, .v-label-w760, .v-textfield-w760, .v-textarea-w760, .v-filterselect-w760, .v-datefield-w760, .v-checkbox-w760, .v-customcomponent-w760 {
	width: 760px;
}

.layout-w770, .v-button-w770, .v-label-w770, .v-textfield-w770, .v-textarea-w770, .v-filterselect-w770, .v-datefield-w770, .v-checkbox-w770, .v-customcomponent-w770 {
	width: 770px;
}

.layout-w780, .v-button-w780, .v-label-w780, .v-textfield-w780, .v-textarea-w780, .v-filterselect-w780, .v-datefield-w780, .v-checkbox-w780, .v-customcomponent-w780 {
	width: 780px;
}

.layout-w790, .v-button-w790, .v-label-w790, .v-textfield-w790, .v-textarea-w790, .v-filterselect-w790, .v-datefield-w790, .v-checkbox-w790, .v-customcomponent-w790 {
	width: 790px;
}

.layout-w800, .v-button-w800, .v-label-w800, .v-textfield-w800, .v-textarea-w800, .v-filterselect-w800, .v-datefield-w800, .v-checkbox-w800, .v-customcomponent-w800 {
	width: 800px;
}

.layout-w810, .v-button-w810, .v-label-w810, .v-textfield-w810, .v-textarea-w810, .v-filterselect-w810, .v-datefield-w810, .v-checkbox-w810, .v-customcomponent-w810 {
	width: 810px;
}

.layout-w820, .v-button-w820, .v-label-w820, .v-textfield-w820, .v-textarea-w820, .v-filterselect-w820, .v-datefield-w820, .v-checkbox-w820, .v-customcomponent-w820 {
	width: 820px;
}

.layout-w830, .v-button-w830, .v-label-w830, .v-textfield-w830, .v-textarea-w830, .v-filterselect-w830, .v-datefield-w830, .v-checkbox-w830, .v-customcomponent-w830 {
	width: 830px;
}

.layout-w840, .v-button-w840, .v-label-w840, .v-textfield-w840, .v-textarea-w840, .v-filterselect-w840, .v-datefield-w840, .v-checkbox-w840, .v-customcomponent-w840 {
	width: 840px;
}

.layout-w850, .v-button-w850, .v-label-w850, .v-textfield-w850, .v-textarea-w850, .v-filterselect-w850, .v-datefield-w850, .v-checkbox-w850, .v-customcomponent-w850 {
	width: 850px;
}

.layout-w860, .v-button-w860, .v-label-w860, .v-textfield-w860, .v-textarea-w860, .v-filterselect-w860, .v-datefield-w860, .v-checkbox-w860, .v-customcomponent-w860 {
	width: 860px;
}

.layout-w870, .v-button-w870, .v-label-w870, .v-textfield-w870, .v-textarea-w870, .v-filterselect-w870, .v-datefield-w870, .v-checkbox-w870, .v-customcomponent-w870 {
	width: 870px;
}

.layout-w880, .v-button-w880, .v-label-w880, .v-textfield-w880, .v-textarea-w880, .v-filterselect-w880, .v-datefield-w880, .v-checkbox-w880, .v-customcomponent-w880 {
	width: 880px;
}

.layout-w890, .v-button-w890, .v-label-w890, .v-textfield-w890, .v-textarea-w890, .v-filterselect-w890, .v-datefield-w890, .v-checkbox-w890, .v-customcomponent-w890 {
	width: 890px;
}

.layout-w900, .v-button-w900, .v-label-w900, .v-textfield-w900, .v-textarea-w900, .v-filterselect-w900, .v-datefield-w900, .v-checkbox-w900, .v-customcomponent-w900 {
	width: 900px;
}

.layout-w910, .v-button-w910, .v-label-w910, .v-textfield-w910, .v-textarea-w910, .v-filterselect-w910, .v-datefield-w910, .v-checkbox-w910, .v-customcomponent-w910 {
	width: 910px;
}

.layout-w920, .v-button-w920, .v-label-w920, .v-textfield-w920, .v-textarea-w920, .v-filterselect-w920, .v-datefield-w920, .v-checkbox-w920, .v-customcomponent-w920 {
	width: 920px;
}

.layout-w930, .v-button-w930, .v-label-w930, .v-textfield-w930, .v-textarea-w930, .v-filterselect-w930, .v-datefield-w930, .v-checkbox-w930, .v-customcomponent-w930 {
	width: 930px;
}

.layout-w940, .v-button-w940, .v-label-w940, .v-textfield-w940, .v-textarea-w940, .v-filterselect-w940, .v-datefield-w940, .v-checkbox-w940, .v-customcomponent-w940 {
	width: 940px;
}

.layout-w950, .v-button-w950, .v-label-w950, .v-textfield-w950, .v-textarea-w950, .v-filterselect-w950, .v-datefield-w950, .v-checkbox-w950, .v-customcomponent-w950 {
	width: 950px;
}

.layout-w960, .v-button-w960, .v-label-w960, .v-textfield-w960, .v-textarea-w960, .v-filterselect-w960, .v-datefield-w960, .v-checkbox-w960, .v-customcomponent-w960 {
	width: 960px;
}

.layout-w970, .v-button-w970, .v-label-w970, .v-textfield-w970, .v-textarea-w970, .v-filterselect-w970, .v-datefield-w970, .v-checkbox-w970, .v-customcomponent-w970 {
	width: 970px;
}

.layout-w980, .v-button-w980, .v-label-w980, .v-textfield-w980, .v-textarea-w980, .v-filterselect-w980, .v-datefield-w980, .v-checkbox-w980, .v-customcomponent-w980 {
	width: 980px;
}

.layout-w990, .v-button-w990, .v-label-w990, .v-textfield-w990, .v-textarea-w990, .v-filterselect-w990, .v-datefield-w990, .v-checkbox-w990, .v-customcomponent-w990 {
	width: 990px;
}

.layout-w1000, .v-button-w1000, .v-label-w1000, .v-textfield-w1000, .v-textarea-w1000, .v-filterselect-w1000, .v-datefield-w1000, .v-checkbox-w1000, .v-customcomponent-w1000 {
	width: 1000px;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mb5 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.ml5 {
	margin-left: 5px;
}

.ml10 {
	margin-left: 10px;
}

.mr5 {
	margin-right: 5px;
}

.mr10 {
	margin-right: 10px;
}

.pt5 {
	padding-top: 5px;
}

.pt10 {
	padding-top: 10px;
}

.pb5 {
	padding-bottom: 5px;
}

.pb10 {
	padding-bottom: 10px;
}

.pl5 {
	padding-left: 5px;
}

.pl10 {
	padding-left: 10px;
}

.pr5 {
	padding-right: 5px;
}

.pr10 {
	padding-right: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.ml15 {
	margin-left: 15px;
}

.ml20 {
	margin-left: 20px;
}

.mr15 {
	margin-right: 15px;
}

.mr20 {
	margin-right: 20px;
}

.pt15 {
	padding-top: 15px;
}

.pt20 {
	padding-top: 20px;
}

.pb15 {
	padding-bottom: 15px;
}

.pb20 {
	padding-bottom: 20px;
}

.pl15 {
	padding-left: 15px;
}

.pl20 {
	padding-left: 20px;
}

.pr15 {
	padding-right: 15px;
}

.pr20 {
	padding-right: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt30 {
	margin-top: 30px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.ml25 {
	margin-left: 25px;
}

.ml30 {
	margin-left: 30px;
}

.mr25 {
	margin-right: 25px;
}

.mr30 {
	margin-right: 30px;
}

.pt25 {
	padding-top: 25px;
}

.pt30 {
	padding-top: 30px;
}

.pb25 {
	padding-bottom: 25px;
}

.pb30 {
	padding-bottom: 30px;
}

.pl25 {
	padding-left: 25px;
}

.pl30 {
	padding-left: 30px;
}

.pr25 {
	padding-right: 25px;
}

.pr30 {
	padding-right: 30px;
}

.mt35 {
	margin-top: 35px;
}

.mt40 {
	margin-top: 40px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.ml35 {
	margin-left: 35px;
}

.ml40 {
	margin-left: 40px;
}

.mr35 {
	margin-right: 35px;
}

.mr40 {
	margin-right: 40px;
}

.pt35 {
	padding-top: 35px;
}

.pt40 {
	padding-top: 40px;
}

.pb35 {
	padding-bottom: 35px;
}

.pb40 {
	padding-bottom: 40px;
}

.pl35 {
	padding-left: 35px;
}

.pl40 {
	padding-left: 40px;
}

.pr35 {
	padding-right: 35px;
}

.pr40 {
	padding-right: 40px;
}

.mt45 {
	margin-top: 45px;
}

.mt50 {
	margin-top: 50px;
}

.mb45 {
	margin-bottom: 45px;
}

.mb50 {
	margin-bottom: 50px;
}

.ml45 {
	margin-left: 45px;
}

.ml50 {
	margin-left: 50px;
}

.mr45 {
	margin-right: 45px;
}

.mr50 {
	margin-right: 50px;
}

.pt45 {
	padding-top: 45px;
}

.pt50 {
	padding-top: 50px;
}

.pb45 {
	padding-bottom: 45px;
}

.pb50 {
	padding-bottom: 50px;
}

.pl45 {
	padding-left: 45px;
}

.pl50 {
	padding-left: 50px;
}

.pr45 {
	padding-right: 45px;
}

.pr50 {
	padding-right: 50px;
}

.mt55 {
	margin-top: 55px;
}

.mt60 {
	margin-top: 60px;
}

.mb55 {
	margin-bottom: 55px;
}

.mb60 {
	margin-bottom: 60px;
}

.ml55 {
	margin-left: 55px;
}

.ml60 {
	margin-left: 60px;
}

.mr55 {
	margin-right: 55px;
}

.mr60 {
	margin-right: 60px;
}

.pt55 {
	padding-top: 55px;
}

.pt60 {
	padding-top: 60px;
}

.pb55 {
	padding-bottom: 55px;
}

.pb60 {
	padding-bottom: 60px;
}

.pl55 {
	padding-left: 55px;
}

.pl60 {
	padding-left: 60px;
}

.pr55 {
	padding-right: 55px;
}

.pr60 {
	padding-right: 60px;
}

.mt65 {
	margin-top: 65px;
}

.mt70 {
	margin-top: 70px;
}

.mb65 {
	margin-bottom: 65px;
}

.mb70 {
	margin-bottom: 70px;
}

.ml65 {
	margin-left: 65px;
}

.ml70 {
	margin-left: 70px;
}

.mr65 {
	margin-right: 65px;
}

.mr70 {
	margin-right: 70px;
}

.pt65 {
	padding-top: 65px;
}

.pt70 {
	padding-top: 70px;
}

.pb65 {
	padding-bottom: 65px;
}

.pb70 {
	padding-bottom: 70px;
}

.pl65 {
	padding-left: 65px;
}

.pl70 {
	padding-left: 70px;
}

.pr65 {
	padding-right: 65px;
}

.pr70 {
	padding-right: 70px;
}

.mt75 {
	margin-top: 75px;
}

.mt80 {
	margin-top: 80px;
}

.mb75 {
	margin-bottom: 75px;
}

.mb80 {
	margin-bottom: 80px;
}

.ml75 {
	margin-left: 75px;
}

.ml80 {
	margin-left: 80px;
}

.mr75 {
	margin-right: 75px;
}

.mr80 {
	margin-right: 80px;
}

.pt75 {
	padding-top: 75px;
}

.pt80 {
	padding-top: 80px;
}

.pb75 {
	padding-bottom: 75px;
}

.pb80 {
	padding-bottom: 80px;
}

.pl75 {
	padding-left: 75px;
}

.pl80 {
	padding-left: 80px;
}

.pr75 {
	padding-right: 75px;
}

.pr80 {
	padding-right: 80px;
}

.mt85 {
	margin-top: 85px;
}

.mt90 {
	margin-top: 90px;
}

.mb85 {
	margin-bottom: 85px;
}

.mb90 {
	margin-bottom: 90px;
}

.ml85 {
	margin-left: 85px;
}

.ml90 {
	margin-left: 90px;
}

.mr85 {
	margin-right: 85px;
}

.mr90 {
	margin-right: 90px;
}

.pt85 {
	padding-top: 85px;
}

.pt90 {
	padding-top: 90px;
}

.pb85 {
	padding-bottom: 85px;
}

.pb90 {
	padding-bottom: 90px;
}

.pl85 {
	padding-left: 85px;
}

.pl90 {
	padding-left: 90px;
}

.pr85 {
	padding-right: 85px;
}

.pr90 {
	padding-right: 90px;
}

.mt95 {
	margin-top: 95px;
}

.mt100 {
	margin-top: 100px;
}

.mb95 {
	margin-bottom: 95px;
}

.mb100 {
	margin-bottom: 100px;
}

.ml95 {
	margin-left: 95px;
}

.ml100 {
	margin-left: 100px;
}

.mr95 {
	margin-right: 95px;
}

.mr100 {
	margin-right: 100px;
}

.pt95 {
	padding-top: 95px;
}

.pt100 {
	padding-top: 100px;
}

.pb95 {
	padding-bottom: 95px;
}

.pb100 {
	padding-bottom: 100px;
}

.pl95 {
	padding-left: 95px;
}

.pl100 {
	padding-left: 100px;
}

.pr95 {
	padding-right: 95px;
}

.pr100 {
	padding-right: 100px;
}

.mt105 {
	margin-top: 105px;
}

.mt110 {
	margin-top: 110px;
}

.mb105 {
	margin-bottom: 105px;
}

.mb110 {
	margin-bottom: 110px;
}

.ml105 {
	margin-left: 105px;
}

.ml110 {
	margin-left: 110px;
}

.mr105 {
	margin-right: 105px;
}

.mr110 {
	margin-right: 110px;
}

.pt105 {
	padding-top: 105px;
}

.pt110 {
	padding-top: 110px;
}

.pb105 {
	padding-bottom: 105px;
}

.pb110 {
	padding-bottom: 110px;
}

.pl105 {
	padding-left: 105px;
}

.pl110 {
	padding-left: 110px;
}

.pr105 {
	padding-right: 105px;
}

.pr110 {
	padding-right: 110px;
}

.mt115 {
	margin-top: 115px;
}

.mt120 {
	margin-top: 120px;
}

.mb115 {
	margin-bottom: 115px;
}

.mb120 {
	margin-bottom: 120px;
}

.ml115 {
	margin-left: 115px;
}

.ml120 {
	margin-left: 120px;
}

.mr115 {
	margin-right: 115px;
}

.mr120 {
	margin-right: 120px;
}

.pt115 {
	padding-top: 115px;
}

.pt120 {
	padding-top: 120px;
}

.pb115 {
	padding-bottom: 115px;
}

.pb120 {
	padding-bottom: 120px;
}

.pl115 {
	padding-left: 115px;
}

.pl120 {
	padding-left: 120px;
}

.pr115 {
	padding-right: 115px;
}

.pr120 {
	padding-right: 120px;
}

.mt125 {
	margin-top: 125px;
}

.mt130 {
	margin-top: 130px;
}

.mb125 {
	margin-bottom: 125px;
}

.mb130 {
	margin-bottom: 130px;
}

.ml125 {
	margin-left: 125px;
}

.ml130 {
	margin-left: 130px;
}

.mr125 {
	margin-right: 125px;
}

.mr130 {
	margin-right: 130px;
}

.pt125 {
	padding-top: 125px;
}

.pt130 {
	padding-top: 130px;
}

.pb125 {
	padding-bottom: 125px;
}

.pb130 {
	padding-bottom: 130px;
}

.pl125 {
	padding-left: 125px;
}

.pl130 {
	padding-left: 130px;
}

.pr125 {
	padding-right: 125px;
}

.pr130 {
	padding-right: 130px;
}

.mt135 {
	margin-top: 135px;
}

.mt140 {
	margin-top: 140px;
}

.mb135 {
	margin-bottom: 135px;
}

.mb140 {
	margin-bottom: 140px;
}

.ml135 {
	margin-left: 135px;
}

.ml140 {
	margin-left: 140px;
}

.mr135 {
	margin-right: 135px;
}

.mr140 {
	margin-right: 140px;
}

.pt135 {
	padding-top: 135px;
}

.pt140 {
	padding-top: 140px;
}

.pb135 {
	padding-bottom: 135px;
}

.pb140 {
	padding-bottom: 140px;
}

.pl135 {
	padding-left: 135px;
}

.pl140 {
	padding-left: 140px;
}

.pr135 {
	padding-right: 135px;
}

.pr140 {
	padding-right: 140px;
}

.mt145 {
	margin-top: 145px;
}

.mt150 {
	margin-top: 150px;
}

.mb145 {
	margin-bottom: 145px;
}

.mb150 {
	margin-bottom: 150px;
}

.ml145 {
	margin-left: 145px;
}

.ml150 {
	margin-left: 150px;
}

.mr145 {
	margin-right: 145px;
}

.mr150 {
	margin-right: 150px;
}

.pt145 {
	padding-top: 145px;
}

.pt150 {
	padding-top: 150px;
}

.pb145 {
	padding-bottom: 145px;
}

.pb150 {
	padding-bottom: 150px;
}

.pl145 {
	padding-left: 145px;
}

.pl150 {
	padding-left: 150px;
}

.pr145 {
	padding-right: 145px;
}

.pr150 {
	padding-right: 150px;
}

.pl0 {
	padding-left: 0;
}

.pr0 {
	padding-right: 0;
}

.pt0 {
	padding-top: 0;
}

.pb0 {
	padding-bottom: 0;
}

.schedule-print-error-label {
	color: red;
}

.tat-clickable {
	cursor: pointer;
}

@media (max-width: 992px) {
	.flex:not(.flex-wrap-nowrap) {
		flex-wrap: wrap;
	}
	.flex-column {
		height: auto;
		width: 100%;
	}
	.flex-row:not(.flex-wrap-nowrap) {
		flex-wrap: wrap;
		width: 100%;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml5 {
		margin-left: 0;
		margin-top: 5px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml10 {
		margin-left: 0;
		margin-top: 10px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr5 {
		margin-right: 0;
		margin-bottom: 5px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr10 {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl5 {
		padding-left: 0;
		padding-top: 5px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl10 {
		padding-left: 0;
		padding-top: 10px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr5 {
		padding-right: 0;
		padding-bottom: 5px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr10 {
		padding-right: 0;
		padding-bottom: 10px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml15 {
		margin-left: 0;
		margin-top: 15px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml20 {
		margin-left: 0;
		margin-top: 20px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr15 {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr20 {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl15 {
		padding-left: 0;
		padding-top: 15px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl20 {
		padding-left: 0;
		padding-top: 20px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr15 {
		padding-right: 0;
		padding-bottom: 15px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr20 {
		padding-right: 0;
		padding-bottom: 20px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml25 {
		margin-left: 0;
		margin-top: 25px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml30 {
		margin-left: 0;
		margin-top: 30px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr25 {
		margin-right: 0;
		margin-bottom: 25px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr30 {
		margin-right: 0;
		margin-bottom: 30px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl25 {
		padding-left: 0;
		padding-top: 25px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl30 {
		padding-left: 0;
		padding-top: 30px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr25 {
		padding-right: 0;
		padding-bottom: 25px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr30 {
		padding-right: 0;
		padding-bottom: 30px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml35 {
		margin-left: 0;
		margin-top: 35px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml40 {
		margin-left: 0;
		margin-top: 40px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr35 {
		margin-right: 0;
		margin-bottom: 35px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr40 {
		margin-right: 0;
		margin-bottom: 40px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl35 {
		padding-left: 0;
		padding-top: 35px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl40 {
		padding-left: 0;
		padding-top: 40px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr35 {
		padding-right: 0;
		padding-bottom: 35px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr40 {
		padding-right: 0;
		padding-bottom: 40px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml45 {
		margin-left: 0;
		margin-top: 45px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml50 {
		margin-left: 0;
		margin-top: 50px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr45 {
		margin-right: 0;
		margin-bottom: 45px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr50 {
		margin-right: 0;
		margin-bottom: 50px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl45 {
		padding-left: 0;
		padding-top: 45px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl50 {
		padding-left: 0;
		padding-top: 50px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr45 {
		padding-right: 0;
		padding-bottom: 45px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr50 {
		padding-right: 0;
		padding-bottom: 50px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml55 {
		margin-left: 0;
		margin-top: 55px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml60 {
		margin-left: 0;
		margin-top: 60px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr55 {
		margin-right: 0;
		margin-bottom: 55px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr60 {
		margin-right: 0;
		margin-bottom: 60px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl55 {
		padding-left: 0;
		padding-top: 55px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl60 {
		padding-left: 0;
		padding-top: 60px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr55 {
		padding-right: 0;
		padding-bottom: 55px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr60 {
		padding-right: 0;
		padding-bottom: 60px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml65 {
		margin-left: 0;
		margin-top: 65px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml70 {
		margin-left: 0;
		margin-top: 70px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr65 {
		margin-right: 0;
		margin-bottom: 65px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr70 {
		margin-right: 0;
		margin-bottom: 70px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl65 {
		padding-left: 0;
		padding-top: 65px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl70 {
		padding-left: 0;
		padding-top: 70px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr65 {
		padding-right: 0;
		padding-bottom: 65px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr70 {
		padding-right: 0;
		padding-bottom: 70px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml75 {
		margin-left: 0;
		margin-top: 75px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml80 {
		margin-left: 0;
		margin-top: 80px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr75 {
		margin-right: 0;
		margin-bottom: 75px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr80 {
		margin-right: 0;
		margin-bottom: 80px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl75 {
		padding-left: 0;
		padding-top: 75px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl80 {
		padding-left: 0;
		padding-top: 80px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr75 {
		padding-right: 0;
		padding-bottom: 75px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr80 {
		padding-right: 0;
		padding-bottom: 80px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml85 {
		margin-left: 0;
		margin-top: 85px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml90 {
		margin-left: 0;
		margin-top: 90px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr85 {
		margin-right: 0;
		margin-bottom: 85px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr90 {
		margin-right: 0;
		margin-bottom: 90px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl85 {
		padding-left: 0;
		padding-top: 85px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl90 {
		padding-left: 0;
		padding-top: 90px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr85 {
		padding-right: 0;
		padding-bottom: 85px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr90 {
		padding-right: 0;
		padding-bottom: 90px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml95 {
		margin-left: 0;
		margin-top: 95px;
	}
	.flex-row:not(.flex-wrap-nowrap) .ml100 {
		margin-left: 0;
		margin-top: 100px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr95 {
		margin-right: 0;
		margin-bottom: 95px;
	}
	.flex-row:not(.flex-wrap-nowrap) .mr100 {
		margin-right: 0;
		margin-bottom: 100px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl95 {
		padding-left: 0;
		padding-top: 95px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pl100 {
		padding-left: 0;
		padding-top: 100px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr95 {
		padding-right: 0;
		padding-bottom: 95px;
	}
	.flex-row:not(.flex-wrap-nowrap) .pr100 {
		padding-right: 0;
		padding-bottom: 100px;
	}
	.tat15-theme .w0p {
		width: 100%;
	}
	.tat15-theme .w10p {
		width: 100%;
	}
	.tat15-theme .w20p {
		width: 100%;
	}
	.tat15-theme .w30p {
		width: 100%;
	}
	.tat15-theme .w40p {
		width: 100%;
	}
	.tat15-theme .w50p {
		width: 100%;
	}
	.tat15-theme .w60p {
		width: 100%;
	}
	.tat15-theme .w70p {
		width: 100%;
	}
	.tat15-theme .w80p {
		width: 100%;
	}
	.tat15-theme .w90p {
		width: 100%;
	}
	.tat15-theme .w100p {
		width: 100%;
	}
	.tat15-theme .flex {
		width: 100%;
	}
	.tat15-theme .flex-grow {
		width: 100%;
	}
	.tat15-theme .v-caption-on-top {
		width: 100%;
	}
	.tat15-theme .width-auto-m {
		width: auto;
	}
	.tat15-theme .layout-w0p, .tat15-theme .v-button-w0p, .tat15-theme .v-label-w0p, .tat15-theme .v-textfield-w0p, .tat15-theme .v-textarea-w0p, .tat15-theme .v-filterselect-w0p, .tat15-theme .v-datefield-w0p, .tat15-theme .v-checkbox-w0p, .tat15-theme .v-customcomponent-w0p {
		width: 100%;
	}
	.tat15-theme .layout-w10p, .tat15-theme .v-button-w10p, .tat15-theme .v-label-w10p, .tat15-theme .v-textfield-w10p, .tat15-theme .v-textarea-w10p, .tat15-theme .v-filterselect-w10p, .tat15-theme .v-datefield-w10p, .tat15-theme .v-checkbox-w10p, .tat15-theme .v-customcomponent-w10p {
		width: 100%;
	}
	.tat15-theme .layout-w20p, .tat15-theme .v-button-w20p, .tat15-theme .v-label-w20p, .tat15-theme .v-textfield-w20p, .tat15-theme .v-textarea-w20p, .tat15-theme .v-filterselect-w20p, .tat15-theme .v-datefield-w20p, .tat15-theme .v-checkbox-w20p, .tat15-theme .v-customcomponent-w20p {
		width: 100%;
	}
	.tat15-theme .layout-w30p, .tat15-theme .v-button-w30p, .tat15-theme .v-label-w30p, .tat15-theme .v-textfield-w30p, .tat15-theme .v-textarea-w30p, .tat15-theme .v-filterselect-w30p, .tat15-theme .v-datefield-w30p, .tat15-theme .v-checkbox-w30p, .tat15-theme .v-customcomponent-w30p {
		width: 100%;
	}
	.tat15-theme .layout-w40p, .tat15-theme .v-button-w40p, .tat15-theme .v-label-w40p, .tat15-theme .v-textfield-w40p, .tat15-theme .v-textarea-w40p, .tat15-theme .v-filterselect-w40p, .tat15-theme .v-datefield-w40p, .tat15-theme .v-checkbox-w40p, .tat15-theme .v-customcomponent-w40p {
		width: 100%;
	}
	.tat15-theme .layout-w50p, .tat15-theme .v-button-w50p, .tat15-theme .v-label-w50p, .tat15-theme .v-textfield-w50p, .tat15-theme .v-textarea-w50p, .tat15-theme .v-filterselect-w50p, .tat15-theme .v-datefield-w50p, .tat15-theme .v-checkbox-w50p, .tat15-theme .v-customcomponent-w50p {
		width: 100%;
	}
	.tat15-theme .layout-w60p, .tat15-theme .v-button-w60p, .tat15-theme .v-label-w60p, .tat15-theme .v-textfield-w60p, .tat15-theme .v-textarea-w60p, .tat15-theme .v-filterselect-w60p, .tat15-theme .v-datefield-w60p, .tat15-theme .v-checkbox-w60p, .tat15-theme .v-customcomponent-w60p {
		width: 100%;
	}
	.tat15-theme .layout-w70p, .tat15-theme .v-button-w70p, .tat15-theme .v-label-w70p, .tat15-theme .v-textfield-w70p, .tat15-theme .v-textarea-w70p, .tat15-theme .v-filterselect-w70p, .tat15-theme .v-datefield-w70p, .tat15-theme .v-checkbox-w70p, .tat15-theme .v-customcomponent-w70p {
		width: 100%;
	}
	.tat15-theme .layout-w80p, .tat15-theme .v-button-w80p, .tat15-theme .v-label-w80p, .tat15-theme .v-textfield-w80p, .tat15-theme .v-textarea-w80p, .tat15-theme .v-filterselect-w80p, .tat15-theme .v-datefield-w80p, .tat15-theme .v-checkbox-w80p, .tat15-theme .v-customcomponent-w80p {
		width: 100%;
	}
	.tat15-theme .layout-w90p, .tat15-theme .v-button-w90p, .tat15-theme .v-label-w90p, .tat15-theme .v-textfield-w90p, .tat15-theme .v-textarea-w90p, .tat15-theme .v-filterselect-w90p, .tat15-theme .v-datefield-w90p, .tat15-theme .v-checkbox-w90p, .tat15-theme .v-customcomponent-w90p {
		width: 100%;
	}
	.tat15-theme .layout-w100p, .tat15-theme .v-button-w100p, .tat15-theme .v-label-w100p, .tat15-theme .v-textfield-w100p, .tat15-theme .v-textarea-w100p, .tat15-theme .v-filterselect-w100p, .tat15-theme .v-datefield-w100p, .tat15-theme .v-checkbox-w100p, .tat15-theme .v-customcomponent-w100p {
		width: 100%;
	}
	.tat15-theme .layout-w10, .tat15-theme .v-button-w10, .tat15-theme .v-caption-w10, .tat15-theme .v-label-w10, .tat15-theme .v-textfield-w10, .tat15-theme .v-textarea-w10, .tat15-theme .v-filterselect-w10, .tat15-theme .v-datefield-w10, .tat15-theme .v-checkbox-w10, .tat15-theme .v-slot-w10, .tat15-theme .v-customcomponent-w10 {
		width: 100% !important;
	}
	.tat15-theme .layout-w20, .tat15-theme .v-button-w20, .tat15-theme .v-caption-w20, .tat15-theme .v-label-w20, .tat15-theme .v-textfield-w20, .tat15-theme .v-textarea-w20, .tat15-theme .v-filterselect-w20, .tat15-theme .v-datefield-w20, .tat15-theme .v-checkbox-w20, .tat15-theme .v-slot-w20, .tat15-theme .v-customcomponent-w20 {
		width: 100% !important;
	}
	.tat15-theme .layout-w30, .tat15-theme .v-button-w30, .tat15-theme .v-caption-w30, .tat15-theme .v-label-w30, .tat15-theme .v-textfield-w30, .tat15-theme .v-textarea-w30, .tat15-theme .v-filterselect-w30, .tat15-theme .v-datefield-w30, .tat15-theme .v-checkbox-w30, .tat15-theme .v-slot-w30, .tat15-theme .v-customcomponent-w30 {
		width: 100% !important;
	}
	.tat15-theme .layout-w40, .tat15-theme .v-button-w40, .tat15-theme .v-caption-w40, .tat15-theme .v-label-w40, .tat15-theme .v-textfield-w40, .tat15-theme .v-textarea-w40, .tat15-theme .v-filterselect-w40, .tat15-theme .v-datefield-w40, .tat15-theme .v-checkbox-w40, .tat15-theme .v-slot-w40, .tat15-theme .v-customcomponent-w40 {
		width: 100% !important;
	}
	.tat15-theme .layout-w50, .tat15-theme .v-button-w50, .tat15-theme .v-caption-w50, .tat15-theme .v-label-w50, .tat15-theme .v-textfield-w50, .tat15-theme .v-textarea-w50, .tat15-theme .v-filterselect-w50, .tat15-theme .v-datefield-w50, .tat15-theme .v-checkbox-w50, .tat15-theme .v-slot-w50, .tat15-theme .v-customcomponent-w50 {
		width: 100% !important;
	}
	.tat15-theme .layout-w60, .tat15-theme .v-button-w60, .tat15-theme .v-caption-w60, .tat15-theme .v-label-w60, .tat15-theme .v-textfield-w60, .tat15-theme .v-textarea-w60, .tat15-theme .v-filterselect-w60, .tat15-theme .v-datefield-w60, .tat15-theme .v-checkbox-w60, .tat15-theme .v-slot-w60, .tat15-theme .v-customcomponent-w60 {
		width: 100% !important;
	}
	.tat15-theme .layout-w70, .tat15-theme .v-button-w70, .tat15-theme .v-caption-w70, .tat15-theme .v-label-w70, .tat15-theme .v-textfield-w70, .tat15-theme .v-textarea-w70, .tat15-theme .v-filterselect-w70, .tat15-theme .v-datefield-w70, .tat15-theme .v-checkbox-w70, .tat15-theme .v-slot-w70, .tat15-theme .v-customcomponent-w70 {
		width: 100% !important;
	}
	.tat15-theme .layout-w80, .tat15-theme .v-button-w80, .tat15-theme .v-caption-w80, .tat15-theme .v-label-w80, .tat15-theme .v-textfield-w80, .tat15-theme .v-textarea-w80, .tat15-theme .v-filterselect-w80, .tat15-theme .v-datefield-w80, .tat15-theme .v-checkbox-w80, .tat15-theme .v-slot-w80, .tat15-theme .v-customcomponent-w80 {
		width: 100% !important;
	}
	.tat15-theme .layout-w90, .tat15-theme .v-button-w90, .tat15-theme .v-caption-w90, .tat15-theme .v-label-w90, .tat15-theme .v-textfield-w90, .tat15-theme .v-textarea-w90, .tat15-theme .v-filterselect-w90, .tat15-theme .v-datefield-w90, .tat15-theme .v-checkbox-w90, .tat15-theme .v-slot-w90, .tat15-theme .v-customcomponent-w90 {
		width: 100% !important;
	}
	.tat15-theme .layout-w100, .tat15-theme .v-button-w100, .tat15-theme .v-caption-w100, .tat15-theme .v-label-w100, .tat15-theme .v-textfield-w100, .tat15-theme .v-textarea-w100, .tat15-theme .v-filterselect-w100, .tat15-theme .v-datefield-w100, .tat15-theme .v-checkbox-w100, .tat15-theme .v-slot-w100, .tat15-theme .v-customcomponent-w100 {
		width: 100% !important;
	}
	.tat15-theme .layout-w110, .tat15-theme .v-button-w110, .tat15-theme .v-caption-w110, .tat15-theme .v-label-w110, .tat15-theme .v-textfield-w110, .tat15-theme .v-textarea-w110, .tat15-theme .v-filterselect-w110, .tat15-theme .v-datefield-w110, .tat15-theme .v-checkbox-w110, .tat15-theme .v-slot-w110, .tat15-theme .v-customcomponent-w110 {
		width: 100% !important;
	}
	.tat15-theme .layout-w120, .tat15-theme .v-button-w120, .tat15-theme .v-caption-w120, .tat15-theme .v-label-w120, .tat15-theme .v-textfield-w120, .tat15-theme .v-textarea-w120, .tat15-theme .v-filterselect-w120, .tat15-theme .v-datefield-w120, .tat15-theme .v-checkbox-w120, .tat15-theme .v-slot-w120, .tat15-theme .v-customcomponent-w120 {
		width: 100% !important;
	}
	.tat15-theme .layout-w130, .tat15-theme .v-button-w130, .tat15-theme .v-caption-w130, .tat15-theme .v-label-w130, .tat15-theme .v-textfield-w130, .tat15-theme .v-textarea-w130, .tat15-theme .v-filterselect-w130, .tat15-theme .v-datefield-w130, .tat15-theme .v-checkbox-w130, .tat15-theme .v-slot-w130, .tat15-theme .v-customcomponent-w130 {
		width: 100% !important;
	}
	.tat15-theme .layout-w140, .tat15-theme .v-button-w140, .tat15-theme .v-caption-w140, .tat15-theme .v-label-w140, .tat15-theme .v-textfield-w140, .tat15-theme .v-textarea-w140, .tat15-theme .v-filterselect-w140, .tat15-theme .v-datefield-w140, .tat15-theme .v-checkbox-w140, .tat15-theme .v-slot-w140, .tat15-theme .v-customcomponent-w140 {
		width: 100% !important;
	}
	.tat15-theme .layout-w150, .tat15-theme .v-button-w150, .tat15-theme .v-caption-w150, .tat15-theme .v-label-w150, .tat15-theme .v-textfield-w150, .tat15-theme .v-textarea-w150, .tat15-theme .v-filterselect-w150, .tat15-theme .v-datefield-w150, .tat15-theme .v-checkbox-w150, .tat15-theme .v-slot-w150, .tat15-theme .v-customcomponent-w150 {
		width: 100% !important;
	}
	.tat15-theme .layout-w160, .tat15-theme .v-button-w160, .tat15-theme .v-caption-w160, .tat15-theme .v-label-w160, .tat15-theme .v-textfield-w160, .tat15-theme .v-textarea-w160, .tat15-theme .v-filterselect-w160, .tat15-theme .v-datefield-w160, .tat15-theme .v-checkbox-w160, .tat15-theme .v-slot-w160, .tat15-theme .v-customcomponent-w160 {
		width: 100% !important;
	}
	.tat15-theme .layout-w170, .tat15-theme .v-button-w170, .tat15-theme .v-caption-w170, .tat15-theme .v-label-w170, .tat15-theme .v-textfield-w170, .tat15-theme .v-textarea-w170, .tat15-theme .v-filterselect-w170, .tat15-theme .v-datefield-w170, .tat15-theme .v-checkbox-w170, .tat15-theme .v-slot-w170, .tat15-theme .v-customcomponent-w170 {
		width: 100% !important;
	}
	.tat15-theme .layout-w180, .tat15-theme .v-button-w180, .tat15-theme .v-caption-w180, .tat15-theme .v-label-w180, .tat15-theme .v-textfield-w180, .tat15-theme .v-textarea-w180, .tat15-theme .v-filterselect-w180, .tat15-theme .v-datefield-w180, .tat15-theme .v-checkbox-w180, .tat15-theme .v-slot-w180, .tat15-theme .v-customcomponent-w180 {
		width: 100% !important;
	}
	.tat15-theme .layout-w190, .tat15-theme .v-button-w190, .tat15-theme .v-caption-w190, .tat15-theme .v-label-w190, .tat15-theme .v-textfield-w190, .tat15-theme .v-textarea-w190, .tat15-theme .v-filterselect-w190, .tat15-theme .v-datefield-w190, .tat15-theme .v-checkbox-w190, .tat15-theme .v-slot-w190, .tat15-theme .v-customcomponent-w190 {
		width: 100% !important;
	}
	.tat15-theme .layout-w200, .tat15-theme .v-button-w200, .tat15-theme .v-caption-w200, .tat15-theme .v-label-w200, .tat15-theme .v-textfield-w200, .tat15-theme .v-textarea-w200, .tat15-theme .v-filterselect-w200, .tat15-theme .v-datefield-w200, .tat15-theme .v-checkbox-w200, .tat15-theme .v-slot-w200, .tat15-theme .v-customcomponent-w200 {
		width: 100% !important;
	}
	.tat15-theme .layout-w210, .tat15-theme .v-button-w210, .tat15-theme .v-caption-w210, .tat15-theme .v-label-w210, .tat15-theme .v-textfield-w210, .tat15-theme .v-textarea-w210, .tat15-theme .v-filterselect-w210, .tat15-theme .v-datefield-w210, .tat15-theme .v-checkbox-w210, .tat15-theme .v-slot-w210, .tat15-theme .v-customcomponent-w210 {
		width: 100% !important;
	}
	.tat15-theme .layout-w220, .tat15-theme .v-button-w220, .tat15-theme .v-caption-w220, .tat15-theme .v-label-w220, .tat15-theme .v-textfield-w220, .tat15-theme .v-textarea-w220, .tat15-theme .v-filterselect-w220, .tat15-theme .v-datefield-w220, .tat15-theme .v-checkbox-w220, .tat15-theme .v-slot-w220, .tat15-theme .v-customcomponent-w220 {
		width: 100% !important;
	}
	.tat15-theme .layout-w230, .tat15-theme .v-button-w230, .tat15-theme .v-caption-w230, .tat15-theme .v-label-w230, .tat15-theme .v-textfield-w230, .tat15-theme .v-textarea-w230, .tat15-theme .v-filterselect-w230, .tat15-theme .v-datefield-w230, .tat15-theme .v-checkbox-w230, .tat15-theme .v-slot-w230, .tat15-theme .v-customcomponent-w230 {
		width: 100% !important;
	}
	.tat15-theme .layout-w240, .tat15-theme .v-button-w240, .tat15-theme .v-caption-w240, .tat15-theme .v-label-w240, .tat15-theme .v-textfield-w240, .tat15-theme .v-textarea-w240, .tat15-theme .v-filterselect-w240, .tat15-theme .v-datefield-w240, .tat15-theme .v-checkbox-w240, .tat15-theme .v-slot-w240, .tat15-theme .v-customcomponent-w240 {
		width: 100% !important;
	}
	.tat15-theme .layout-w250, .tat15-theme .v-button-w250, .tat15-theme .v-caption-w250, .tat15-theme .v-label-w250, .tat15-theme .v-textfield-w250, .tat15-theme .v-textarea-w250, .tat15-theme .v-filterselect-w250, .tat15-theme .v-datefield-w250, .tat15-theme .v-checkbox-w250, .tat15-theme .v-slot-w250, .tat15-theme .v-customcomponent-w250 {
		width: 100% !important;
	}
	.tat15-theme .layout-w260, .tat15-theme .v-button-w260, .tat15-theme .v-caption-w260, .tat15-theme .v-label-w260, .tat15-theme .v-textfield-w260, .tat15-theme .v-textarea-w260, .tat15-theme .v-filterselect-w260, .tat15-theme .v-datefield-w260, .tat15-theme .v-checkbox-w260, .tat15-theme .v-slot-w260, .tat15-theme .v-customcomponent-w260 {
		width: 100% !important;
	}
	.tat15-theme .layout-w270, .tat15-theme .v-button-w270, .tat15-theme .v-caption-w270, .tat15-theme .v-label-w270, .tat15-theme .v-textfield-w270, .tat15-theme .v-textarea-w270, .tat15-theme .v-filterselect-w270, .tat15-theme .v-datefield-w270, .tat15-theme .v-checkbox-w270, .tat15-theme .v-slot-w270, .tat15-theme .v-customcomponent-w270 {
		width: 100% !important;
	}
	.tat15-theme .layout-w280, .tat15-theme .v-button-w280, .tat15-theme .v-caption-w280, .tat15-theme .v-label-w280, .tat15-theme .v-textfield-w280, .tat15-theme .v-textarea-w280, .tat15-theme .v-filterselect-w280, .tat15-theme .v-datefield-w280, .tat15-theme .v-checkbox-w280, .tat15-theme .v-slot-w280, .tat15-theme .v-customcomponent-w280 {
		width: 100% !important;
	}
	.tat15-theme .layout-w290, .tat15-theme .v-button-w290, .tat15-theme .v-caption-w290, .tat15-theme .v-label-w290, .tat15-theme .v-textfield-w290, .tat15-theme .v-textarea-w290, .tat15-theme .v-filterselect-w290, .tat15-theme .v-datefield-w290, .tat15-theme .v-checkbox-w290, .tat15-theme .v-slot-w290, .tat15-theme .v-customcomponent-w290 {
		width: 100% !important;
	}
	.tat15-theme .layout-w300, .tat15-theme .v-button-w300, .tat15-theme .v-caption-w300, .tat15-theme .v-label-w300, .tat15-theme .v-textfield-w300, .tat15-theme .v-textarea-w300, .tat15-theme .v-filterselect-w300, .tat15-theme .v-datefield-w300, .tat15-theme .v-checkbox-w300, .tat15-theme .v-slot-w300, .tat15-theme .v-customcomponent-w300 {
		width: 100% !important;
	}
	.tat15-theme .layout-w310, .tat15-theme .v-button-w310, .tat15-theme .v-caption-w310, .tat15-theme .v-label-w310, .tat15-theme .v-textfield-w310, .tat15-theme .v-textarea-w310, .tat15-theme .v-filterselect-w310, .tat15-theme .v-datefield-w310, .tat15-theme .v-checkbox-w310, .tat15-theme .v-slot-w310, .tat15-theme .v-customcomponent-w310 {
		width: 100% !important;
	}
	.tat15-theme .layout-w320, .tat15-theme .v-button-w320, .tat15-theme .v-caption-w320, .tat15-theme .v-label-w320, .tat15-theme .v-textfield-w320, .tat15-theme .v-textarea-w320, .tat15-theme .v-filterselect-w320, .tat15-theme .v-datefield-w320, .tat15-theme .v-checkbox-w320, .tat15-theme .v-slot-w320, .tat15-theme .v-customcomponent-w320 {
		width: 100% !important;
	}
	.tat15-theme .layout-w330, .tat15-theme .v-button-w330, .tat15-theme .v-caption-w330, .tat15-theme .v-label-w330, .tat15-theme .v-textfield-w330, .tat15-theme .v-textarea-w330, .tat15-theme .v-filterselect-w330, .tat15-theme .v-datefield-w330, .tat15-theme .v-checkbox-w330, .tat15-theme .v-slot-w330, .tat15-theme .v-customcomponent-w330 {
		width: 100% !important;
	}
	.tat15-theme .layout-w340, .tat15-theme .v-button-w340, .tat15-theme .v-caption-w340, .tat15-theme .v-label-w340, .tat15-theme .v-textfield-w340, .tat15-theme .v-textarea-w340, .tat15-theme .v-filterselect-w340, .tat15-theme .v-datefield-w340, .tat15-theme .v-checkbox-w340, .tat15-theme .v-slot-w340, .tat15-theme .v-customcomponent-w340 {
		width: 100% !important;
	}
	.tat15-theme .layout-w350, .tat15-theme .v-button-w350, .tat15-theme .v-caption-w350, .tat15-theme .v-label-w350, .tat15-theme .v-textfield-w350, .tat15-theme .v-textarea-w350, .tat15-theme .v-filterselect-w350, .tat15-theme .v-datefield-w350, .tat15-theme .v-checkbox-w350, .tat15-theme .v-slot-w350, .tat15-theme .v-customcomponent-w350 {
		width: 100% !important;
	}
	.tat15-theme .layout-w360, .tat15-theme .v-button-w360, .tat15-theme .v-caption-w360, .tat15-theme .v-label-w360, .tat15-theme .v-textfield-w360, .tat15-theme .v-textarea-w360, .tat15-theme .v-filterselect-w360, .tat15-theme .v-datefield-w360, .tat15-theme .v-checkbox-w360, .tat15-theme .v-slot-w360, .tat15-theme .v-customcomponent-w360 {
		width: 100% !important;
	}
	.tat15-theme .layout-w370, .tat15-theme .v-button-w370, .tat15-theme .v-caption-w370, .tat15-theme .v-label-w370, .tat15-theme .v-textfield-w370, .tat15-theme .v-textarea-w370, .tat15-theme .v-filterselect-w370, .tat15-theme .v-datefield-w370, .tat15-theme .v-checkbox-w370, .tat15-theme .v-slot-w370, .tat15-theme .v-customcomponent-w370 {
		width: 100% !important;
	}
	.tat15-theme .layout-w380, .tat15-theme .v-button-w380, .tat15-theme .v-caption-w380, .tat15-theme .v-label-w380, .tat15-theme .v-textfield-w380, .tat15-theme .v-textarea-w380, .tat15-theme .v-filterselect-w380, .tat15-theme .v-datefield-w380, .tat15-theme .v-checkbox-w380, .tat15-theme .v-slot-w380, .tat15-theme .v-customcomponent-w380 {
		width: 100% !important;
	}
	.tat15-theme .layout-w390, .tat15-theme .v-button-w390, .tat15-theme .v-caption-w390, .tat15-theme .v-label-w390, .tat15-theme .v-textfield-w390, .tat15-theme .v-textarea-w390, .tat15-theme .v-filterselect-w390, .tat15-theme .v-datefield-w390, .tat15-theme .v-checkbox-w390, .tat15-theme .v-slot-w390, .tat15-theme .v-customcomponent-w390 {
		width: 100% !important;
	}
	.tat15-theme .layout-w400, .tat15-theme .v-button-w400, .tat15-theme .v-caption-w400, .tat15-theme .v-label-w400, .tat15-theme .v-textfield-w400, .tat15-theme .v-textarea-w400, .tat15-theme .v-filterselect-w400, .tat15-theme .v-datefield-w400, .tat15-theme .v-checkbox-w400, .tat15-theme .v-slot-w400, .tat15-theme .v-customcomponent-w400 {
		width: 100% !important;
	}
	.tat15-theme .layout-w410, .tat15-theme .v-button-w410, .tat15-theme .v-caption-w410, .tat15-theme .v-label-w410, .tat15-theme .v-textfield-w410, .tat15-theme .v-textarea-w410, .tat15-theme .v-filterselect-w410, .tat15-theme .v-datefield-w410, .tat15-theme .v-checkbox-w410, .tat15-theme .v-slot-w410, .tat15-theme .v-customcomponent-w410 {
		width: 100% !important;
	}
	.tat15-theme .layout-w420, .tat15-theme .v-button-w420, .tat15-theme .v-caption-w420, .tat15-theme .v-label-w420, .tat15-theme .v-textfield-w420, .tat15-theme .v-textarea-w420, .tat15-theme .v-filterselect-w420, .tat15-theme .v-datefield-w420, .tat15-theme .v-checkbox-w420, .tat15-theme .v-slot-w420, .tat15-theme .v-customcomponent-w420 {
		width: 100% !important;
	}
	.tat15-theme .layout-w430, .tat15-theme .v-button-w430, .tat15-theme .v-caption-w430, .tat15-theme .v-label-w430, .tat15-theme .v-textfield-w430, .tat15-theme .v-textarea-w430, .tat15-theme .v-filterselect-w430, .tat15-theme .v-datefield-w430, .tat15-theme .v-checkbox-w430, .tat15-theme .v-slot-w430, .tat15-theme .v-customcomponent-w430 {
		width: 100% !important;
	}
	.tat15-theme .layout-w440, .tat15-theme .v-button-w440, .tat15-theme .v-caption-w440, .tat15-theme .v-label-w440, .tat15-theme .v-textfield-w440, .tat15-theme .v-textarea-w440, .tat15-theme .v-filterselect-w440, .tat15-theme .v-datefield-w440, .tat15-theme .v-checkbox-w440, .tat15-theme .v-slot-w440, .tat15-theme .v-customcomponent-w440 {
		width: 100% !important;
	}
	.tat15-theme .layout-w450, .tat15-theme .v-button-w450, .tat15-theme .v-caption-w450, .tat15-theme .v-label-w450, .tat15-theme .v-textfield-w450, .tat15-theme .v-textarea-w450, .tat15-theme .v-filterselect-w450, .tat15-theme .v-datefield-w450, .tat15-theme .v-checkbox-w450, .tat15-theme .v-slot-w450, .tat15-theme .v-customcomponent-w450 {
		width: 100% !important;
	}
	.tat15-theme .layout-w460, .tat15-theme .v-button-w460, .tat15-theme .v-caption-w460, .tat15-theme .v-label-w460, .tat15-theme .v-textfield-w460, .tat15-theme .v-textarea-w460, .tat15-theme .v-filterselect-w460, .tat15-theme .v-datefield-w460, .tat15-theme .v-checkbox-w460, .tat15-theme .v-slot-w460, .tat15-theme .v-customcomponent-w460 {
		width: 100% !important;
	}
	.tat15-theme .layout-w470, .tat15-theme .v-button-w470, .tat15-theme .v-caption-w470, .tat15-theme .v-label-w470, .tat15-theme .v-textfield-w470, .tat15-theme .v-textarea-w470, .tat15-theme .v-filterselect-w470, .tat15-theme .v-datefield-w470, .tat15-theme .v-checkbox-w470, .tat15-theme .v-slot-w470, .tat15-theme .v-customcomponent-w470 {
		width: 100% !important;
	}
	.tat15-theme .layout-w480, .tat15-theme .v-button-w480, .tat15-theme .v-caption-w480, .tat15-theme .v-label-w480, .tat15-theme .v-textfield-w480, .tat15-theme .v-textarea-w480, .tat15-theme .v-filterselect-w480, .tat15-theme .v-datefield-w480, .tat15-theme .v-checkbox-w480, .tat15-theme .v-slot-w480, .tat15-theme .v-customcomponent-w480 {
		width: 100% !important;
	}
	.tat15-theme .layout-w490, .tat15-theme .v-button-w490, .tat15-theme .v-caption-w490, .tat15-theme .v-label-w490, .tat15-theme .v-textfield-w490, .tat15-theme .v-textarea-w490, .tat15-theme .v-filterselect-w490, .tat15-theme .v-datefield-w490, .tat15-theme .v-checkbox-w490, .tat15-theme .v-slot-w490, .tat15-theme .v-customcomponent-w490 {
		width: 100% !important;
	}
	.tat15-theme .layout-w500, .tat15-theme .v-button-w500, .tat15-theme .v-caption-w500, .tat15-theme .v-label-w500, .tat15-theme .v-textfield-w500, .tat15-theme .v-textarea-w500, .tat15-theme .v-filterselect-w500, .tat15-theme .v-datefield-w500, .tat15-theme .v-checkbox-w500, .tat15-theme .v-slot-w500, .tat15-theme .v-customcomponent-w500 {
		width: 100% !important;
	}
	.tat15-theme .layout-w510, .tat15-theme .v-button-w510, .tat15-theme .v-caption-w510, .tat15-theme .v-label-w510, .tat15-theme .v-textfield-w510, .tat15-theme .v-textarea-w510, .tat15-theme .v-filterselect-w510, .tat15-theme .v-datefield-w510, .tat15-theme .v-checkbox-w510, .tat15-theme .v-slot-w510, .tat15-theme .v-customcomponent-w510 {
		width: 100% !important;
	}
	.tat15-theme .layout-w520, .tat15-theme .v-button-w520, .tat15-theme .v-caption-w520, .tat15-theme .v-label-w520, .tat15-theme .v-textfield-w520, .tat15-theme .v-textarea-w520, .tat15-theme .v-filterselect-w520, .tat15-theme .v-datefield-w520, .tat15-theme .v-checkbox-w520, .tat15-theme .v-slot-w520, .tat15-theme .v-customcomponent-w520 {
		width: 100% !important;
	}
	.tat15-theme .layout-w530, .tat15-theme .v-button-w530, .tat15-theme .v-caption-w530, .tat15-theme .v-label-w530, .tat15-theme .v-textfield-w530, .tat15-theme .v-textarea-w530, .tat15-theme .v-filterselect-w530, .tat15-theme .v-datefield-w530, .tat15-theme .v-checkbox-w530, .tat15-theme .v-slot-w530, .tat15-theme .v-customcomponent-w530 {
		width: 100% !important;
	}
	.tat15-theme .layout-w540, .tat15-theme .v-button-w540, .tat15-theme .v-caption-w540, .tat15-theme .v-label-w540, .tat15-theme .v-textfield-w540, .tat15-theme .v-textarea-w540, .tat15-theme .v-filterselect-w540, .tat15-theme .v-datefield-w540, .tat15-theme .v-checkbox-w540, .tat15-theme .v-slot-w540, .tat15-theme .v-customcomponent-w540 {
		width: 100% !important;
	}
	.tat15-theme .layout-w550, .tat15-theme .v-button-w550, .tat15-theme .v-caption-w550, .tat15-theme .v-label-w550, .tat15-theme .v-textfield-w550, .tat15-theme .v-textarea-w550, .tat15-theme .v-filterselect-w550, .tat15-theme .v-datefield-w550, .tat15-theme .v-checkbox-w550, .tat15-theme .v-slot-w550, .tat15-theme .v-customcomponent-w550 {
		width: 100% !important;
	}
	.tat15-theme .layout-w560, .tat15-theme .v-button-w560, .tat15-theme .v-caption-w560, .tat15-theme .v-label-w560, .tat15-theme .v-textfield-w560, .tat15-theme .v-textarea-w560, .tat15-theme .v-filterselect-w560, .tat15-theme .v-datefield-w560, .tat15-theme .v-checkbox-w560, .tat15-theme .v-slot-w560, .tat15-theme .v-customcomponent-w560 {
		width: 100% !important;
	}
	.tat15-theme .layout-w570, .tat15-theme .v-button-w570, .tat15-theme .v-caption-w570, .tat15-theme .v-label-w570, .tat15-theme .v-textfield-w570, .tat15-theme .v-textarea-w570, .tat15-theme .v-filterselect-w570, .tat15-theme .v-datefield-w570, .tat15-theme .v-checkbox-w570, .tat15-theme .v-slot-w570, .tat15-theme .v-customcomponent-w570 {
		width: 100% !important;
	}
	.tat15-theme .layout-w580, .tat15-theme .v-button-w580, .tat15-theme .v-caption-w580, .tat15-theme .v-label-w580, .tat15-theme .v-textfield-w580, .tat15-theme .v-textarea-w580, .tat15-theme .v-filterselect-w580, .tat15-theme .v-datefield-w580, .tat15-theme .v-checkbox-w580, .tat15-theme .v-slot-w580, .tat15-theme .v-customcomponent-w580 {
		width: 100% !important;
	}
	.tat15-theme .layout-w590, .tat15-theme .v-button-w590, .tat15-theme .v-caption-w590, .tat15-theme .v-label-w590, .tat15-theme .v-textfield-w590, .tat15-theme .v-textarea-w590, .tat15-theme .v-filterselect-w590, .tat15-theme .v-datefield-w590, .tat15-theme .v-checkbox-w590, .tat15-theme .v-slot-w590, .tat15-theme .v-customcomponent-w590 {
		width: 100% !important;
	}
	.tat15-theme .layout-w600, .tat15-theme .v-button-w600, .tat15-theme .v-caption-w600, .tat15-theme .v-label-w600, .tat15-theme .v-textfield-w600, .tat15-theme .v-textarea-w600, .tat15-theme .v-filterselect-w600, .tat15-theme .v-datefield-w600, .tat15-theme .v-checkbox-w600, .tat15-theme .v-slot-w600, .tat15-theme .v-customcomponent-w600 {
		width: 100% !important;
	}
	.tat15-theme .layout-w610, .tat15-theme .v-button-w610, .tat15-theme .v-caption-w610, .tat15-theme .v-label-w610, .tat15-theme .v-textfield-w610, .tat15-theme .v-textarea-w610, .tat15-theme .v-filterselect-w610, .tat15-theme .v-datefield-w610, .tat15-theme .v-checkbox-w610, .tat15-theme .v-slot-w610, .tat15-theme .v-customcomponent-w610 {
		width: 100% !important;
	}
	.tat15-theme .layout-w620, .tat15-theme .v-button-w620, .tat15-theme .v-caption-w620, .tat15-theme .v-label-w620, .tat15-theme .v-textfield-w620, .tat15-theme .v-textarea-w620, .tat15-theme .v-filterselect-w620, .tat15-theme .v-datefield-w620, .tat15-theme .v-checkbox-w620, .tat15-theme .v-slot-w620, .tat15-theme .v-customcomponent-w620 {
		width: 100% !important;
	}
	.tat15-theme .layout-w630, .tat15-theme .v-button-w630, .tat15-theme .v-caption-w630, .tat15-theme .v-label-w630, .tat15-theme .v-textfield-w630, .tat15-theme .v-textarea-w630, .tat15-theme .v-filterselect-w630, .tat15-theme .v-datefield-w630, .tat15-theme .v-checkbox-w630, .tat15-theme .v-slot-w630, .tat15-theme .v-customcomponent-w630 {
		width: 100% !important;
	}
	.tat15-theme .layout-w640, .tat15-theme .v-button-w640, .tat15-theme .v-caption-w640, .tat15-theme .v-label-w640, .tat15-theme .v-textfield-w640, .tat15-theme .v-textarea-w640, .tat15-theme .v-filterselect-w640, .tat15-theme .v-datefield-w640, .tat15-theme .v-checkbox-w640, .tat15-theme .v-slot-w640, .tat15-theme .v-customcomponent-w640 {
		width: 100% !important;
	}
	.tat15-theme .layout-w650, .tat15-theme .v-button-w650, .tat15-theme .v-caption-w650, .tat15-theme .v-label-w650, .tat15-theme .v-textfield-w650, .tat15-theme .v-textarea-w650, .tat15-theme .v-filterselect-w650, .tat15-theme .v-datefield-w650, .tat15-theme .v-checkbox-w650, .tat15-theme .v-slot-w650, .tat15-theme .v-customcomponent-w650 {
		width: 100% !important;
	}
	.tat15-theme .layout-w660, .tat15-theme .v-button-w660, .tat15-theme .v-caption-w660, .tat15-theme .v-label-w660, .tat15-theme .v-textfield-w660, .tat15-theme .v-textarea-w660, .tat15-theme .v-filterselect-w660, .tat15-theme .v-datefield-w660, .tat15-theme .v-checkbox-w660, .tat15-theme .v-slot-w660, .tat15-theme .v-customcomponent-w660 {
		width: 100% !important;
	}
	.tat15-theme .layout-w670, .tat15-theme .v-button-w670, .tat15-theme .v-caption-w670, .tat15-theme .v-label-w670, .tat15-theme .v-textfield-w670, .tat15-theme .v-textarea-w670, .tat15-theme .v-filterselect-w670, .tat15-theme .v-datefield-w670, .tat15-theme .v-checkbox-w670, .tat15-theme .v-slot-w670, .tat15-theme .v-customcomponent-w670 {
		width: 100% !important;
	}
	.tat15-theme .layout-w680, .tat15-theme .v-button-w680, .tat15-theme .v-caption-w680, .tat15-theme .v-label-w680, .tat15-theme .v-textfield-w680, .tat15-theme .v-textarea-w680, .tat15-theme .v-filterselect-w680, .tat15-theme .v-datefield-w680, .tat15-theme .v-checkbox-w680, .tat15-theme .v-slot-w680, .tat15-theme .v-customcomponent-w680 {
		width: 100% !important;
	}
	.tat15-theme .layout-w690, .tat15-theme .v-button-w690, .tat15-theme .v-caption-w690, .tat15-theme .v-label-w690, .tat15-theme .v-textfield-w690, .tat15-theme .v-textarea-w690, .tat15-theme .v-filterselect-w690, .tat15-theme .v-datefield-w690, .tat15-theme .v-checkbox-w690, .tat15-theme .v-slot-w690, .tat15-theme .v-customcomponent-w690 {
		width: 100% !important;
	}
	.tat15-theme .layout-w700, .tat15-theme .v-button-w700, .tat15-theme .v-caption-w700, .tat15-theme .v-label-w700, .tat15-theme .v-textfield-w700, .tat15-theme .v-textarea-w700, .tat15-theme .v-filterselect-w700, .tat15-theme .v-datefield-w700, .tat15-theme .v-checkbox-w700, .tat15-theme .v-slot-w700, .tat15-theme .v-customcomponent-w700 {
		width: 100% !important;
	}
	.tat15-theme .layout-w710, .tat15-theme .v-button-w710, .tat15-theme .v-caption-w710, .tat15-theme .v-label-w710, .tat15-theme .v-textfield-w710, .tat15-theme .v-textarea-w710, .tat15-theme .v-filterselect-w710, .tat15-theme .v-datefield-w710, .tat15-theme .v-checkbox-w710, .tat15-theme .v-slot-w710, .tat15-theme .v-customcomponent-w710 {
		width: 100% !important;
	}
	.tat15-theme .layout-w720, .tat15-theme .v-button-w720, .tat15-theme .v-caption-w720, .tat15-theme .v-label-w720, .tat15-theme .v-textfield-w720, .tat15-theme .v-textarea-w720, .tat15-theme .v-filterselect-w720, .tat15-theme .v-datefield-w720, .tat15-theme .v-checkbox-w720, .tat15-theme .v-slot-w720, .tat15-theme .v-customcomponent-w720 {
		width: 100% !important;
	}
	.tat15-theme .layout-w730, .tat15-theme .v-button-w730, .tat15-theme .v-caption-w730, .tat15-theme .v-label-w730, .tat15-theme .v-textfield-w730, .tat15-theme .v-textarea-w730, .tat15-theme .v-filterselect-w730, .tat15-theme .v-datefield-w730, .tat15-theme .v-checkbox-w730, .tat15-theme .v-slot-w730, .tat15-theme .v-customcomponent-w730 {
		width: 100% !important;
	}
	.tat15-theme .layout-w740, .tat15-theme .v-button-w740, .tat15-theme .v-caption-w740, .tat15-theme .v-label-w740, .tat15-theme .v-textfield-w740, .tat15-theme .v-textarea-w740, .tat15-theme .v-filterselect-w740, .tat15-theme .v-datefield-w740, .tat15-theme .v-checkbox-w740, .tat15-theme .v-slot-w740, .tat15-theme .v-customcomponent-w740 {
		width: 100% !important;
	}
	.tat15-theme .layout-w750, .tat15-theme .v-button-w750, .tat15-theme .v-caption-w750, .tat15-theme .v-label-w750, .tat15-theme .v-textfield-w750, .tat15-theme .v-textarea-w750, .tat15-theme .v-filterselect-w750, .tat15-theme .v-datefield-w750, .tat15-theme .v-checkbox-w750, .tat15-theme .v-slot-w750, .tat15-theme .v-customcomponent-w750 {
		width: 100% !important;
	}
	.tat15-theme .layout-w760, .tat15-theme .v-button-w760, .tat15-theme .v-caption-w760, .tat15-theme .v-label-w760, .tat15-theme .v-textfield-w760, .tat15-theme .v-textarea-w760, .tat15-theme .v-filterselect-w760, .tat15-theme .v-datefield-w760, .tat15-theme .v-checkbox-w760, .tat15-theme .v-slot-w760, .tat15-theme .v-customcomponent-w760 {
		width: 100% !important;
	}
	.tat15-theme .layout-w770, .tat15-theme .v-button-w770, .tat15-theme .v-caption-w770, .tat15-theme .v-label-w770, .tat15-theme .v-textfield-w770, .tat15-theme .v-textarea-w770, .tat15-theme .v-filterselect-w770, .tat15-theme .v-datefield-w770, .tat15-theme .v-checkbox-w770, .tat15-theme .v-slot-w770, .tat15-theme .v-customcomponent-w770 {
		width: 100% !important;
	}
	.tat15-theme .layout-w780, .tat15-theme .v-button-w780, .tat15-theme .v-caption-w780, .tat15-theme .v-label-w780, .tat15-theme .v-textfield-w780, .tat15-theme .v-textarea-w780, .tat15-theme .v-filterselect-w780, .tat15-theme .v-datefield-w780, .tat15-theme .v-checkbox-w780, .tat15-theme .v-slot-w780, .tat15-theme .v-customcomponent-w780 {
		width: 100% !important;
	}
	.tat15-theme .layout-w790, .tat15-theme .v-button-w790, .tat15-theme .v-caption-w790, .tat15-theme .v-label-w790, .tat15-theme .v-textfield-w790, .tat15-theme .v-textarea-w790, .tat15-theme .v-filterselect-w790, .tat15-theme .v-datefield-w790, .tat15-theme .v-checkbox-w790, .tat15-theme .v-slot-w790, .tat15-theme .v-customcomponent-w790 {
		width: 100% !important;
	}
	.tat15-theme .layout-w800, .tat15-theme .v-button-w800, .tat15-theme .v-caption-w800, .tat15-theme .v-label-w800, .tat15-theme .v-textfield-w800, .tat15-theme .v-textarea-w800, .tat15-theme .v-filterselect-w800, .tat15-theme .v-datefield-w800, .tat15-theme .v-checkbox-w800, .tat15-theme .v-slot-w800, .tat15-theme .v-customcomponent-w800 {
		width: 100% !important;
	}
	.tat15-theme .layout-w810, .tat15-theme .v-button-w810, .tat15-theme .v-caption-w810, .tat15-theme .v-label-w810, .tat15-theme .v-textfield-w810, .tat15-theme .v-textarea-w810, .tat15-theme .v-filterselect-w810, .tat15-theme .v-datefield-w810, .tat15-theme .v-checkbox-w810, .tat15-theme .v-slot-w810, .tat15-theme .v-customcomponent-w810 {
		width: 100% !important;
	}
	.tat15-theme .layout-w820, .tat15-theme .v-button-w820, .tat15-theme .v-caption-w820, .tat15-theme .v-label-w820, .tat15-theme .v-textfield-w820, .tat15-theme .v-textarea-w820, .tat15-theme .v-filterselect-w820, .tat15-theme .v-datefield-w820, .tat15-theme .v-checkbox-w820, .tat15-theme .v-slot-w820, .tat15-theme .v-customcomponent-w820 {
		width: 100% !important;
	}
	.tat15-theme .layout-w830, .tat15-theme .v-button-w830, .tat15-theme .v-caption-w830, .tat15-theme .v-label-w830, .tat15-theme .v-textfield-w830, .tat15-theme .v-textarea-w830, .tat15-theme .v-filterselect-w830, .tat15-theme .v-datefield-w830, .tat15-theme .v-checkbox-w830, .tat15-theme .v-slot-w830, .tat15-theme .v-customcomponent-w830 {
		width: 100% !important;
	}
	.tat15-theme .layout-w840, .tat15-theme .v-button-w840, .tat15-theme .v-caption-w840, .tat15-theme .v-label-w840, .tat15-theme .v-textfield-w840, .tat15-theme .v-textarea-w840, .tat15-theme .v-filterselect-w840, .tat15-theme .v-datefield-w840, .tat15-theme .v-checkbox-w840, .tat15-theme .v-slot-w840, .tat15-theme .v-customcomponent-w840 {
		width: 100% !important;
	}
	.tat15-theme .layout-w850, .tat15-theme .v-button-w850, .tat15-theme .v-caption-w850, .tat15-theme .v-label-w850, .tat15-theme .v-textfield-w850, .tat15-theme .v-textarea-w850, .tat15-theme .v-filterselect-w850, .tat15-theme .v-datefield-w850, .tat15-theme .v-checkbox-w850, .tat15-theme .v-slot-w850, .tat15-theme .v-customcomponent-w850 {
		width: 100% !important;
	}
	.tat15-theme .layout-w860, .tat15-theme .v-button-w860, .tat15-theme .v-caption-w860, .tat15-theme .v-label-w860, .tat15-theme .v-textfield-w860, .tat15-theme .v-textarea-w860, .tat15-theme .v-filterselect-w860, .tat15-theme .v-datefield-w860, .tat15-theme .v-checkbox-w860, .tat15-theme .v-slot-w860, .tat15-theme .v-customcomponent-w860 {
		width: 100% !important;
	}
	.tat15-theme .layout-w870, .tat15-theme .v-button-w870, .tat15-theme .v-caption-w870, .tat15-theme .v-label-w870, .tat15-theme .v-textfield-w870, .tat15-theme .v-textarea-w870, .tat15-theme .v-filterselect-w870, .tat15-theme .v-datefield-w870, .tat15-theme .v-checkbox-w870, .tat15-theme .v-slot-w870, .tat15-theme .v-customcomponent-w870 {
		width: 100% !important;
	}
	.tat15-theme .layout-w880, .tat15-theme .v-button-w880, .tat15-theme .v-caption-w880, .tat15-theme .v-label-w880, .tat15-theme .v-textfield-w880, .tat15-theme .v-textarea-w880, .tat15-theme .v-filterselect-w880, .tat15-theme .v-datefield-w880, .tat15-theme .v-checkbox-w880, .tat15-theme .v-slot-w880, .tat15-theme .v-customcomponent-w880 {
		width: 100% !important;
	}
	.tat15-theme .layout-w890, .tat15-theme .v-button-w890, .tat15-theme .v-caption-w890, .tat15-theme .v-label-w890, .tat15-theme .v-textfield-w890, .tat15-theme .v-textarea-w890, .tat15-theme .v-filterselect-w890, .tat15-theme .v-datefield-w890, .tat15-theme .v-checkbox-w890, .tat15-theme .v-slot-w890, .tat15-theme .v-customcomponent-w890 {
		width: 100% !important;
	}
	.tat15-theme .layout-w900, .tat15-theme .v-button-w900, .tat15-theme .v-caption-w900, .tat15-theme .v-label-w900, .tat15-theme .v-textfield-w900, .tat15-theme .v-textarea-w900, .tat15-theme .v-filterselect-w900, .tat15-theme .v-datefield-w900, .tat15-theme .v-checkbox-w900, .tat15-theme .v-slot-w900, .tat15-theme .v-customcomponent-w900 {
		width: 100% !important;
	}
	.tat15-theme .layout-w910, .tat15-theme .v-button-w910, .tat15-theme .v-caption-w910, .tat15-theme .v-label-w910, .tat15-theme .v-textfield-w910, .tat15-theme .v-textarea-w910, .tat15-theme .v-filterselect-w910, .tat15-theme .v-datefield-w910, .tat15-theme .v-checkbox-w910, .tat15-theme .v-slot-w910, .tat15-theme .v-customcomponent-w910 {
		width: 100% !important;
	}
	.tat15-theme .layout-w920, .tat15-theme .v-button-w920, .tat15-theme .v-caption-w920, .tat15-theme .v-label-w920, .tat15-theme .v-textfield-w920, .tat15-theme .v-textarea-w920, .tat15-theme .v-filterselect-w920, .tat15-theme .v-datefield-w920, .tat15-theme .v-checkbox-w920, .tat15-theme .v-slot-w920, .tat15-theme .v-customcomponent-w920 {
		width: 100% !important;
	}
	.tat15-theme .layout-w930, .tat15-theme .v-button-w930, .tat15-theme .v-caption-w930, .tat15-theme .v-label-w930, .tat15-theme .v-textfield-w930, .tat15-theme .v-textarea-w930, .tat15-theme .v-filterselect-w930, .tat15-theme .v-datefield-w930, .tat15-theme .v-checkbox-w930, .tat15-theme .v-slot-w930, .tat15-theme .v-customcomponent-w930 {
		width: 100% !important;
	}
	.tat15-theme .layout-w940, .tat15-theme .v-button-w940, .tat15-theme .v-caption-w940, .tat15-theme .v-label-w940, .tat15-theme .v-textfield-w940, .tat15-theme .v-textarea-w940, .tat15-theme .v-filterselect-w940, .tat15-theme .v-datefield-w940, .tat15-theme .v-checkbox-w940, .tat15-theme .v-slot-w940, .tat15-theme .v-customcomponent-w940 {
		width: 100% !important;
	}
	.tat15-theme .layout-w950, .tat15-theme .v-button-w950, .tat15-theme .v-caption-w950, .tat15-theme .v-label-w950, .tat15-theme .v-textfield-w950, .tat15-theme .v-textarea-w950, .tat15-theme .v-filterselect-w950, .tat15-theme .v-datefield-w950, .tat15-theme .v-checkbox-w950, .tat15-theme .v-slot-w950, .tat15-theme .v-customcomponent-w950 {
		width: 100% !important;
	}
	.tat15-theme .layout-w960, .tat15-theme .v-button-w960, .tat15-theme .v-caption-w960, .tat15-theme .v-label-w960, .tat15-theme .v-textfield-w960, .tat15-theme .v-textarea-w960, .tat15-theme .v-filterselect-w960, .tat15-theme .v-datefield-w960, .tat15-theme .v-checkbox-w960, .tat15-theme .v-slot-w960, .tat15-theme .v-customcomponent-w960 {
		width: 100% !important;
	}
	.tat15-theme .layout-w970, .tat15-theme .v-button-w970, .tat15-theme .v-caption-w970, .tat15-theme .v-label-w970, .tat15-theme .v-textfield-w970, .tat15-theme .v-textarea-w970, .tat15-theme .v-filterselect-w970, .tat15-theme .v-datefield-w970, .tat15-theme .v-checkbox-w970, .tat15-theme .v-slot-w970, .tat15-theme .v-customcomponent-w970 {
		width: 100% !important;
	}
	.tat15-theme .layout-w980, .tat15-theme .v-button-w980, .tat15-theme .v-caption-w980, .tat15-theme .v-label-w980, .tat15-theme .v-textfield-w980, .tat15-theme .v-textarea-w980, .tat15-theme .v-filterselect-w980, .tat15-theme .v-datefield-w980, .tat15-theme .v-checkbox-w980, .tat15-theme .v-slot-w980, .tat15-theme .v-customcomponent-w980 {
		width: 100% !important;
	}
	.tat15-theme .layout-w990, .tat15-theme .v-button-w990, .tat15-theme .v-caption-w990, .tat15-theme .v-label-w990, .tat15-theme .v-textfield-w990, .tat15-theme .v-textarea-w990, .tat15-theme .v-filterselect-w990, .tat15-theme .v-datefield-w990, .tat15-theme .v-checkbox-w990, .tat15-theme .v-slot-w990, .tat15-theme .v-customcomponent-w990 {
		width: 100% !important;
	}
	.tat15-theme .layout-w1000, .tat15-theme .v-button-w1000, .tat15-theme .v-caption-w1000, .tat15-theme .v-label-w1000, .tat15-theme .v-textfield-w1000, .tat15-theme .v-textarea-w1000, .tat15-theme .v-filterselect-w1000, .tat15-theme .v-datefield-w1000, .tat15-theme .v-checkbox-w1000, .tat15-theme .v-slot-w1000, .tat15-theme .v-customcomponent-w1000 {
		width: 100% !important;
	}
}

.form-block {
	align-items: flex-start;
	border-top: 1px solid #d8d8d8;
	display: flex;
	margin-top: 20px;
	padding-top: 20px;
	width: 100%;
}

.form-block:first-child {
	border-top: none;
	margin-top: 0;
	padding-top: 0;
}

.form-block:last-child {
	margin-bottom: 10px;
	padding-bottom: 20px;
}

.v-caption-form-block__layout {
	font-size: 15px;
	font-weight: 700;
	max-width: 160px;
	min-width: 160px;
	padding-right: 20px;
	white-space: normal;
	width: 160px;
}

.field-group {
	margin-bottom: 15px;
}

.field-group:last-child {
	margin-top: 0;
}

.form-panel {
	margin: 0 0 15px 15px;
	width: calc(100% - 15px);
	min-width: 280px;
	max-width: 280px;
}

.layout-content-center {
	display: flex;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
}

.photo-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

@media (min-width: 993px) and (max-width: 1350px) {
	.form-block {
		flex-direction: column;
	}
	.v-caption-form-block__layout {
		margin-bottom: 10px;
	}
}

@media (max-width: 992px) {
	.form-panel {
		width: 100%;
		margin: 15px 0 0;
	}
	.form-panel:last-child {
		margin-bottom: 15px;
	}
}

@media (max-width: 767px) {
	.form-panel {
		max-width: 100%;
	}
}

@media (max-width: 700px) {
	.form-block {
		flex-direction: column;
	}
	.form-block .v-horizontallayout {
		display: flex;
		flex-direction: column;
		height: auto !important;
	}
	.form-block .v-horizontallayout  > .v-spacing {
		display: inline-block;
		height: 15px !important;
	}
	.form-block .info-link-layout {
		flex-direction: row;
	}
	.v-caption-form-block__layout {
		margin-bottom: 10px;
	}
}

.tat-list__filter__trigger:focus {
	outline: none;
}

.tat-list__filter__trigger.filter-open {
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.tat-list__filter {
	align-items: center;
	display: flex;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	margin: 10px 15px 0;
	padding: 10px;
}

.tat-list__filter  > .v-widget {
	margin-left: 10px;
}

.tat-list__filter  > .v-widget:first-child {
	margin-left: 0;
}

.tat-list.v-grid {
	background: none;
}

.tat-list .v-grid-cell, .tat-list .v-grid-cell-focused {
	background: none;
	border: none;
	padding: 0 5px 0 10px;
	text-shadow: none;
}

.tat-list .v-grid-cell:first-child, .tat-list .v-grid-cell-focused:first-child {
	padding: 0 5px 0 15px;
}

.tat-list .v-grid-cell:last-child, .tat-list .v-grid-cell-focused:last-child {
	padding: 0 10px;
}

.tat-list .v-grid-cell .v-button.icon-only .v-button-wrap:before, .tat-list .v-grid-cell-focused .v-button.icon-only .v-button-wrap:before {
	display: none;
}

.tat-list .v-grid-selection-checkbox {
	padding-left: 10px;
}

.tat-list .v-grid-header {
	background-color: #eaecee;
}

.tat-list .v-grid-header .v-grid-cell {
	color: #4c4c54;
	font-size: 13px;
	font-weight: 500;
	background: none;
}

.tat-list .v-grid-header .v-grid-cell.frozen {
	background-color: #eaecee;
}

.tat-list .v-grid-header .v-grid-cell:after {
	right: 3px;
}

.tat-list .v-grid-header .v-grid-cell .v-grid-column-resize-handle {
	width: 20px;
	right: -10px;
}

.tat-list .v-grid-header .v-grid-cell .v-grid-column-resize-handle:before {
	content: "";
	width: 2px;
	height: 16px;
	background: rgba(0, 0, 0, 0.1);
	display: inline-flex;
	position: absolute;
	right: 6px;
	top: 14px;
	border-radius: 2px;
}

.tat-list .v-grid-cell.frozen {
	box-shadow: none;
}

.tat-list .v-grid-cell.frozen .component-wrap {
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 15px;
}

.tat-list .v-grid-body .v-grid-cell {
	position: relative;
	align-items: center;
	display: flex;
}

.tat-list .v-grid-body .v-grid-cell.frozen {
	padding-left: 0;
}

.tat-list .v-grid-body .v-grid-cell.frozen .frozen-column-text {
	height: 46px;
	line-height: 46px;
	padding-left: 13px;
	width: 100%;
}

.tat-list .v-grid-body .v-grid-cell .v-textfield {
	border: 1px solid #d3d3d3;
}

.tat-list .v-grid-body .v-grid-row:before {
	background-color: white;
	border-radius: 6px;
	bottom: 5px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03);
	content: "";
	position: absolute;
	right: 3px;
	left: 3px;
	top: 5px;
	transition: border 0.2s, box-shadow 0.3s;
}

.tat-list .v-grid-body .v-grid-row:hover:before {
	border: 1px solid #3688dc;
	border-left: 6px solid #3688dc;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03), 0 0 0 3px rgba(54, 136, 220, 0.2);
}

.tat-list .v-grid-body .v-grid-row.v-grid-row-focused:before {
	outline-offset: -1px;
}

.tat-list .v-grid-body .v-grid-row.v-grid-row-selected  > .v-grid-cell {
	color: white;
}

.tat-list .v-grid-body .v-grid-row.v-grid-row-selected  > .v-grid-cell.frozen .frozen-column-text {
	background-color: #3688dc;
}

.tat-list .v-grid-body .v-grid-row.v-grid-row-selected:before {
	background: #3688dc;
}

.tat-list .v-grid-body .v-grid-row.v-grid-row-selected .slide-toggle label {
	background-color: rgba(0, 0, 0, 0.2);
}

.tat-list .v-grid-body .v-grid-row.v-grid-row-selected .slide-toggle label:after {
	background: #3688dc;
}

.tat-list .v-grid-header-deco, .tat-list .v-grid-footer-deco {
	background: none;
	border: none;
}

.tat-list .v-grid-footer:before {
	background: #d8d8d8;
	border-radius: 6px;
	bottom: 0;
	content: "";
	position: absolute;
	right: 3px;
	left: 3px;
	top: 0;
}

.tat-list .v-grid-footer .v-label {
	position: relative;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row {
	background: none;
	cursor: pointer;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row:before {
	background: none;
	box-shadow: none;
	border-radius: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top: 1px solid #eaecee;
	border-bottom: 1px solid #eaecee;
	border-right: none;
	border-left: none;
	transition: all 0.2s;
	z-index: -2;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row:after {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	top: 5px;
	bottom: 5px;
	right: 0;
	border-radius: 6px;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row:first-child:before {
	border-top: none !important;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row:last-child:before {
	border-bottom: none !important;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row:hover:before {
	border-top: 1px solid #eaecee;
	border-bottom: 1px solid #eaecee;
	border-right: none;
	border-left: none;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row:hover:after {
	border: 1px solid #3688dc;
}

.tat-list.inline-list .v-grid-tablewrapper .v-grid-body .v-grid-row .v-grid-cell {
	padding: 0 5px;
}

.tat-list .v-grid-scroller, .tat-list .v-grid-vertical-scrollbar-deco, .tat-list .v-grid-horizontal-scrollbar-deco {
	background: none;
	border: none;
}

.tat-list.frozen .v-grid-row:before {
	left: 0;
}

.tat-list.v-treegrid {
	background: none;
}

.tat-list .v-treegrid-cell, .tat-list .v-treegrid-cell-focused {
	background: none;
	border: none;
	padding: 0 5px 0 10px;
	text-shadow: none;
}

.tat-list .v-treegrid-cell:first-child, .tat-list .v-treegrid-cell-focused:first-child {
	padding: 0 5px 0 15px;
}

.tat-list .v-treegrid-cell:last-child, .tat-list .v-treegrid-cell-focused:last-child {
	padding: 0 10px;
}

.tat-list .v-treegrid-cell .v-button.icon-only .v-button-wrap:before, .tat-list .v-treegrid-cell-focused .v-button.icon-only .v-button-wrap:before {
	display: none;
}

.tat-list .v-treegrid-header {
	background-color: #eaecee;
}

.tat-list .v-treegrid-header .v-treegrid-cell {
	color: #4c4c54;
	font-size: 13px;
	font-weight: 500;
	background: none;
}

.tat-list .v-treegrid-header .v-treegrid-cell.frozen {
	background-color: #eaecee;
}

.tat-list .v-treegrid-header .v-treegrid-cell:after {
	right: 3px;
}

.tat-list .v-treegrid-header .v-treegrid-cell .v-treegrid-column-resize-handle {
	width: 20px;
	right: -10px;
}

.tat-list .v-treegrid-header .v-treegrid-cell .v-treegrid-column-resize-handle:before {
	content: "";
	width: 2px;
	height: 16px;
	background: rgba(0, 0, 0, 0.1);
	display: inline-flex;
	position: absolute;
	right: 6px;
	top: 14px;
	border-radius: 2px;
}

.tat-list .v-treegrid-cell.frozen {
	box-shadow: none;
}

.tat-list .v-treegrid-body .v-treegrid-cell {
	line-height: 60px;
	position: relative;
}

.tat-list .v-treegrid-body .v-treegrid-row:before {
	background-color: white;
	border-radius: 6px;
	bottom: 5px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03);
	content: "";
	position: absolute;
	right: 3px;
	left: 3px;
	top: 5px;
	transition: border 0.2s, box-shadow 0.3s;
}

.tat-list .v-treegrid-body .v-treegrid-row:hover:before {
	border: 1px solid #3688dc;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03), 0 0 0 3px rgba(54, 136, 220, 0.2);
}

.tat-list .v-treegrid-body .v-treegrid-row.v-treegrid-row-focused:before {
	outline-offset: -1px;
	display: block;
}

.tat-list .v-treegrid-body .v-treegrid-row.v-treegrid-row-selected  > .v-treegrid-cell {
	color: white;
}

.tat-list .v-treegrid-body .v-treegrid-row.v-treegrid-row-selected:before {
	background: #3688dc;
}

.tat-list .v-treegrid-body .v-treegrid-row.v-treegrid-row-selected .slide-toggle label {
	background-color: rgba(0, 0, 0, 0.2);
}

.tat-list .v-treegrid-body .v-treegrid-row.v-treegrid-row-selected .slide-toggle label:after {
	background: #3688dc;
}

.tat-list .v-treegrid-header-deco, .tat-list .v-treegrid-footer-deco {
	background-image: none;
	border: none;
}

.grid-count-title {
	font-weight: 700;
}

.grid-row-pointer .v-grid-body .v-grid-row {
	cursor: pointer;
}

.v-ui {
	position: static;
}

.app {
	align-items: stretch;
	background-color: #eaecee;
	display: flex;
	height: 100%;
	overflow: hidden;
}

.app-container__wrapper {
	position: relative;
	flex-grow: 1;
	height: 100%;
	overflow: hidden;
	z-index: 101;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.app-content__wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.app-container {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.app-content {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.app .breadcrumb-content {
	overflow: hidden !important;
}

.app-sidebar__user-layout {
	position: absolute;
	right: 10px;
}

.subscription-wrapper {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 101;
}

.subscription-wrapper .subscription-wrapper__content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	padding: 10px 50px;
	align-items: center;
	justify-content: center;
	font-family: "U";
}

.subscription-wrapper .subscription-wrapper__content.first-dead-line {
	background-color: #F7941E;
}

.subscription-wrapper .subscription-wrapper__content.last-dead-line {
	background-color: #B33939;
}

.subscription-wrapper .subscription-wrapper__content .subscription-content__text {
	margin-right: 20px;
	font-weight: 500;
	font-size: 14px;
	line-height: 23px;
}

.subscription-wrapper .subscription-wrapper__content .subscription-content__text span {
	font-size: 20px;
	font-weight: bold;
}

.subscription-wrapper .subscription-wrapper__content .subscription-content__text.first-dead-line {
	color: white;
}

.subscription-wrapper .subscription-wrapper__content .subscription-content__text.last-dead-line {
	color: white;
}

.subscription-wrapper .subscription-wrapper__content .subscription-content__button {
	height: 30px;
	background-color: white;
	color: #333333;
	padding: 0 40px;
	border: 0;
	text-transform: uppercase;
}

.subscription-wrapper .subscription-wrapper__content .subscription-content__button.outline {
	height: 30px;
}

.subscription-wrapper .subscription-wrapper__content .subscription-content__button:hover:after {
	background-color: rgba(0, 0, 0, 0.03);
}

.notification-rows .v-checkbox {
	margin-bottom: 5px;
}

.notification-rows .v-checkbox:last-of-type {
	margin-bottom: 0;
}

.role-settings-rows .v-radiobutton {
	margin-bottom: 5px;
}

.role-settings-rows .v-radiobutton:last-of-type {
	margin-bottom: 0;
}

.v-ratingstars-bar {
	background-image: none !important;
	background: #FDCB6E;
}

.v-widget .v-slot-felmeres-tokens .felmeres-tokens {
	width: 350px !important;
}

.multiple-button-container .v-slot {
	margin-right: 10px;
}

.multiple-button-container .v-slot:last-of-type {
	margin-right: 0;
}

.player-upload-link .v-button-caption {
	color: #3688dc;
}

.player-data-container {
	position: relative;
	overflow: hidden !important;
}

.player-data-container:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	border-top: 74px solid #f5f5f5;
	border-right: 365px solid transparent;
}

.tat-upload-content {
	min-height: 80px;
}

.tat-upload-content .v-slot-tat-file-upload-button {
	margin-top: 13px;
}

.tat-upload-content .v-slot-tat-file-upload-button .v-upload .v-button {
	background: none;
	height: unset;
	color: #3688dc;
}

.modules-checkbox .v-checkbox {
	margin-bottom: 5px;
}

.modules-checkbox .v-checkbox:last-of-type {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
	.app-container__wrapper {
		left: 0;
		transition: left 0.4s ease-out;
	}
	.open-sidebar .app-container__wrapper {
		left: 210px;
	}
}

@media (max-width: 767px) {
	.subscription-wrapper .sub-close {
		width: 40px;
		height: 30px;
		border-top-right-radius: 11px;
		border-top-left-radius: 11px;
		position: absolute;
		right: 10px;
		top: -30px;
		background-color: #B33939;
	}
	.subscription-wrapper .sub-close:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background: url(img/icon/arrow_white.svg) no-repeat center;
		background-size: 16px;
		transform: rotate(0deg);
		transition: 0.3s all ease;
	}
	.subscription-wrapper.closed-wrapper .sub-close:before {
		transform: rotate(180deg);
	}
	.subscription-wrapper .subscription-wrapper__content {
		padding: 15px;
		flex-direction: column;
	}
	.subscription-wrapper .subscription-wrapper__content .subscription-content__text {
		margin-left: 0;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 20px;
	}
	.subscription-wrapper .subscription-wrapper__content .subscription-content__button {
		width: 100%;
	}
}

@media (min-width: 600px) {
	.subscription-wrapper .sub-close {
		display: none;
	}
}

.app-sidebar {
	background-color: #6c6c74;
	background-image: -webkit-linear-gradient(right, #6c6c74, #4c4c54);
	background-image: linear-gradient(to left,#6c6c74, #4c4c54);
	position: relative;
	display: flex;
	flex-shrink: 0;
	width: 210px;
	height: 100%;
	color: white;
	z-index: 100;
}

.app-sidebar__content {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.app-sidebar__tat-logo {
	cursor: pointer;
}

.app-sidebar__user {
	display: flex;
	align-items: center;
	height: 45px;
	padding: 0 10px;
}

.app-sidebar__user .v-image {
	height: 24px;
}

.app-sidebar__user__menu {
	background: none;
	border: none;
	box-shadow: none;
	height: auto;
	line-height: 1.3em;
}

.app-sidebar__user__menu:before, .app-sidebar__user__menu:after {
	display: none;
}

.app-sidebar__user__label {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: #4c4c54 !important;
	padding: 0 !important;
	text-align: left !important;
}

.app-sidebar__user__label:before, .app-sidebar__user__label:after {
	display: none;
}

.app-sidebar__user__label .v-icon-user {
	display: none;
}

.app-sidebar__user__label  > .v-menubar-menuitem-caption {
	display: block;
	padding: 10px;
	width: 24px;
	height: 24px;
	position: relative;
	background: url(img/icon/settings.svg) no-repeat center;
	background-size: 24px;
	transition: opacity 0.2s;
}

.app-sidebar__user__label  > .v-menubar-menuitem-caption:hover {
	opacity: 0.7;
}

.app-sidebar__user__label  > .v-menubar-menuitem-caption:after {
	display: none;
}

.app-workspace {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 15px 0 0;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
}

.app-workspace:before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 55px;
	height: 100%;
	background: url(img/layout/team_section_background.svg) no-repeat center right;
	background-size: auto 100%;
}

.app-sidebar--closed {
	position: fixed;
	overflow: auto;
	left: -210px;
	transition: left 0.4s ease-out;
}

.app-workspace-logo {
	background-size: contain;
	border-radius: 20px;
	width: 40px;
	height: 40px;
	margin-left: 10px;
	display: inline-flex;
	flex-shrink: 0;
	cursor: pointer;
}

.app-workspace-logo--empty {
	background: url(images/user-nopic.svg) no-repeat center;
}

.app-workspace-name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-left: 10px;
	white-space: normal;
	line-height: 1.25;
}

.app-navigation {
	display: flex;
	flex-direction: column;
	font-weight: 600;
	padding: 8px;
}

.app-navigation__item {
	position: relative;
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	flex-wrap: wrap;
	font-family: "U";
	font-weight: 500;
	width: 100%;
	text-transform: uppercase;
	font-size: 11px;
	margin: 1px 0;
}

.app-navigation__item .app-navigation__link {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 7px 7px 7px 10px;
}

.app-navigation__item .app-navigation__link .app-navigation__link-wrap {
	display: inline-flex;
	opacity: 0.5;
	flex-grow: 1;
	transition: opacity 0.2s;
}

.app-navigation__item .app-navigation__link:hover .app-navigation__link-wrap {
	opacity: 1;
}

.app-navigation__item .app-navigation__link.app-navigation__link-badge .app-navigation__link-caption:after {
	background: #d63030;
	border-radius: 50%;
	display: inline-block;
	min-width: 18px;
	margin-left: 10px;
	text-align: center;
}

.app-navigation__item .app-navigation__link:before {
	content: "";
	display: inline-flex;
	width: 20px;
	height: 20px;
	opacity: 0.5;
	margin-right: 10px;
	background-size: 18px !important;
	transition: opacity 0.2s;
}

.app-navigation__item .app-navigation__link.app-navigation__link--dashboard:before {
	background: url(img/icon/icon_sm_kezdooldal.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--external_dashboard:before {
	background: url(img/icon/icon_sm_kezdooldal.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--calendar:before {
	background: url(img/icon/icon_sm_naptar.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--administrator:before {
	background: url(img/icon/icon_sm_adminisztracio.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--training_plan:before {
	background: url(img/icon/icon_sm_edzesterv.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--external_training_plan_template:before {
	background: url(img/icon/icon_sm_edzesterv.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--equipment:before {
	background: url(img/icon/icon_sm_eszkoz.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--assessment:before {
	background: url(img/icon/icon_sm_felmeres.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--external_exercise:before {
	background: url(img/icon/icon_sm_eszkoz.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--dues:before {
	background: url(img/icon/icon_sm_tagdij.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--parent_dues:before {
	background: url(img/icon/icon_sm_tagdij.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--attendance:before {
	background: url(img/icon/icon_sm_jelenlet.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--match:before {
	background: url(img/icon/icon_sm_eredmeny.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--video:before {
	background: url(img/icon/icon_sm_video.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--scouting:before {
	background: url(img/icon/icon_sm_figyeles.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--comment_entry:before {
	background: url(img/icon/icon_sm_uzenofal.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--player_profile:before {
	background: url(img/icon/icon_sm_adminisztracio.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--news:before {
	background: url(img/icon/news.svg) no-repeat center;
}

.app-navigation__item .app-navigation__link.app-navigation__link--club_list_entry:before {
	background: url(img/icon/icon_sm_adminisztracio.svg) no-repeat center;
}

.app-navigation__item.has-child .app-navigation__link:after {
	content: "";
	display: inline-flex;
	width: 14px;
	height: 12px;
	background: url(img/icon/arrow_white.svg) no-repeat center;
	background-size: contain;
	opacity: 0.5;
	transition: opacity 0.4s, transform 0.4s;
}

.app-navigation__item.selected, .app-navigation__item.app-sub-navigation--open {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 6px;
}

.app-navigation__item.selected .app-navigation__link:before, .app-navigation__item.selected .app-navigation__link:after, .app-navigation__item.selected .app-navigation__link .app-navigation__link-wrap, .app-navigation__item.app-sub-navigation--open .app-navigation__link:before, .app-navigation__item.app-sub-navigation--open .app-navigation__link:after, .app-navigation__item.app-sub-navigation--open .app-navigation__link .app-navigation__link-wrap {
	opacity: 1;
}

.app-navigation__item.selected:not(.app-sub-navigation--open):before {
	content: "";
	position: absolute;
	left: -9px;
	top: 15px;
	width: 11px;
	background: #3688dc;
	height: 4px;
	border-radius: 0 1px 1px 0;
}

.app-navigation__item.app-sub-navigation--open .app-navigation__link:after {
	transform: rotate(180deg);
}

.app-navigation__item.app-sub-navigation--open .app-sub-navigation {
	max-height: 178px;
	padding-bottom: 5px;
}

.app-navigation__item .app-sub-navigation {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.5s, padding-bottom 0.5s;
}

.app-navigation__item .app-sub-navigation .app-sub-navigation__link {
	position: relative;
	font-size: 12px;
	text-transform: none;
	padding: 5px 5px 5px 37px;
	cursor: pointer;
}

.app-navigation__item .app-sub-navigation .app-sub-navigation__link .app-sub-navigation__link-wrap {
	opacity: 0.6;
}

.app-navigation__item .app-sub-navigation .app-sub-navigation__link:hover .app-sub-navigation__link-wrap {
	opacity: 1;
}

.app-navigation__item .app-sub-navigation .app-sub-navigation__link.selected {
	opacity: 1;
}

.app-navigation__item .app-sub-navigation .app-sub-navigation__link.selected:before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 20px;
	background: #3688dc;
	height: 4px;
	border-radius: 0 1px 1px 0;
}

.has-new-comment:after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #d63030;
	top: 2px;
	left: 23px;
}

@keyframes opacity {
		from {
		opacity: 1;
	}
		50% {
		opacity: 0.4;
	}
		to {
		opacity: 1;
	}
	}

.has-failed-invoice:after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #d63030;
	top: 10px;
	right: 25px;
	opacity: 1;
	animation: opacity 3s infinite;
}

.sidebar-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 40px;
	height: 60px;
	background: #eaecee;
	z-index: 1000;
	cursor: pointer;
}

.sidebar-toggle:before {
	content: "";
	display: inline-flex;
	width: 24px;
	height: 24px;
	background: url(img/icon/menu.svg) no-repeat center;
	background-size: 24px;
}

.sidebar-toggle:hover {
	background: #d8d8d8;
}

@media (max-width: 1199px) {
	.sidebar-toggle {
		display: inline-flex;
		transition: left 0.4s ease-out;
	}
	.app-sidebar {
		position: fixed;
		overflow: auto;
		left: -210px;
		transition: left 0.4s ease-out;
	}
	.app-sidebar__user, .app-workspace {
		flex-shrink: 0;
	}
	.open-sidebar .app-sidebar {
		left: 0;
	}
	.open-sidebar .sidebar-toggle {
		left: 210px;
	}
}

.login-page {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.login-page:before {
	content: "";
	background-image: linear, to bottom, #FAFAFB, #EBEDEF;
	background-size: 100% 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
}

.login-page__content__wrapper {
	position: relative;
	width: calc(100% - 30px);
	max-width: 450px;
	margin: 0 auto;
}

.login-page__content {
	background: white;
	border-radius: 6px;
	box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.3);
	display: block;
	padding: 50px 60px;
}

.login-page__workspace {
	display: block;
	margin-bottom: 15px;
	text-align: center;
}

.login-page__workspace-logo {
	width: 90px;
}

.login-page__workspace-name {
	display: block;
	margin-top: 10px;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.login_page__logo-container {
	margin-top: 20px;
	position: relative;
}

.login_page__logo-container img {
	width: 150px;
}

.v-button.link.login-page__lost-password {
	padding: 5px 0;
}

.login-page__content__wrapper .login-page__content .field-group input:focus {
	border-color: #d8d8d8;
	box-shadow: none;
}

.login-page__content__wrapper .login-page__content .field-group .tat-password-field-eye {
	position: relative;
	flex-wrap: nowrap;
}

.login-page__content__wrapper .login-page__content .field-group .tat-password-field-eye:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	pointer-events: none;
}

.login-page__content__wrapper .login-page__content .field-group .tat-password-field-eye input {
	box-shadow: none;
	padding-right: 38px;
}

.login-page__content__wrapper .login-page__content .field-group .tat-password-field-eye .password-component__show-password {
	display: flex;
	height: 38px;
	width: 38px;
	align-items: center;
	justify-content: center;
	border-bottom-right-radius: 6px;
	border-top-right-radius: 6px;
	position: absolute;
	right: 0;
}

.login-page__content__wrapper .login-page__content .field-group .tat-password-field-eye .password-component__show-password .password-component__show-password-wrap {
	display: none;
}

.login-page__footer {
	display: inline-flex;
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 0;
	width: 100%;
}

.login-page__footer .v-label {
	padding: 3px;
	text-align: right;
	color: #333333;
	font-size: 10px;
	font-weight: 600;
}

.login-page__logo-container {
	margin-top: 15px;
}

.tat-more-login {
	text-align: center;
	width: 100%;
}

@keyframes blinking {
		0%, 100% {
		transform: scale(1.4);
	}
		60% {
		transform: scale(1.4, 0);
	}
	}

@media (max-width: 600px) {
	.login-page__content {
		padding: 30px;
	}
	.login-page__content .field-group {
		margin-bottom: 0;
	}
	.login-page__footer .v-label {
		text-align: center;
	}
}

.registration-page {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	padding-top: 100px !important;
	text-align: center;
	width: 100%;
}

.registration-page:before {
	content: "";
	background: url(images/login-background.png) no-repeat;
	background-size: 100% 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
}

.registration-page__content__wrapper {
	position: relative;
	width: 450px;
}

.registration-page__content {
	background: white;
	border-radius: 6px;
	box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.3);
	display: block;
	padding: 50px 60px;
}

.registration-page__logo {
	margin-top: 20px;
	position: relative;
	width: 150px;
}

.registration-page__success-message {
	font-weight: 700;
	text-align: center;
}

.registration-page__success-message span {
	content: "����";
	display: block;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2em;
	margin-bottom: 10px;
}

.player-page__name {
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-top: 15px;
	text-align: center;
}

.player-page__image__wrapper {
	width: 70px;
	height: 70px;
	margin: 6px 21px 21px 6px;
	border-radius: 50%;
	display: block;
	position: relative;
	text-align: center;
	cursor: pointer;
}

.player-page__image__wrapper:before {
	border-radius: 50%;
	border: 1px solid #3688dc;
	bottom: -1px;
	box-shadow: 0 0 0 5px rgba(54, 136, 220, 0.2);
	box-sizing: content-box;
	content: "";
	left: -1px;
	position: absolute;
	right: -1px;
	top: -1px;
}

.player-page__image {
	border: 3px solid white;
	border-radius: 50%;
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.player-page__image img {
	left: 50%;
	max-height: 100px;
	max-width: 100px;
	min-height: 70px;
	min-width: 70px;
	position: relative;
	top: 50%;
	transform: translate(-50%, -50%);
}

.player-page__image:hover:after {
	opacity: 1;
}

.player-page__delete-image {
	background: white;
	border-radius: 50%;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
	height: 2em;
	line-height: 2em;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	transform: translate(40%, -40%);
	transition: 0.2s;
	width: 2em;
}

.player-page__delete-image:hover {
	background: #d63030;
	color: white;
}

.player-page__delete-image:focus {
	outline: none;
	box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.player-team-grid-row-disabled {
	color: rgba(0, 0, 0, 0.2);
}

.parent-card-layout {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	flex-grow: 1;
	flex-direction: column;
}

.comment-list-footer {
	margin: 20px;
}

.comment-button-layout {
	margin-bottom: 10px;
	position: relative;
	height: 30px;
}

.comment-button-layout .v-button {
	position: absolute;
	right: 0;
}

.comment-box {
	background-color: white;
	border-radius: 6px;
	padding: 5px;
	margin-bottom: 15px;
	width: 100%;
	display: flex;
	flex-direction: row;
}

.comment-box__image {
	width: 40px;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	min-height: 40px;
	max-height: 40px;
	margin-right: 20px;
	margin-left: 15px;
	border-radius: 50%;
}

.comment-box__content {
	border-left: 1px solid #eaecee;
	padding-left: 10px;
	width: 100%;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
}

.comment-box__content__header {
	position: relative;
	display: flex;
	flex-direction: row;
}

.comment-box__content__header-name {
	font-weight: 700;
}

.comment-box__content__header-date {
	margin-left: 15px;
	font-size: 10px;
}

.comment-box__content__header-button {
	position: absolute;
	right: 5px;
}

.comment-box__content__body {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
}

.comment-box__content__body .tat-documentboard-documents-layout .v-gridlayout-slot .v-horizontallayout {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	padding: 5px;
	width: calc(100% - 10px) !important;
}

.comment-box__text pre {
	white-space: pre-wrap;
}

.due-date--expired {
	color: #d63030;
}

.due-date--current {
	color: #ffc86e;
}

.final-debt-item {
	background-color: white;
	border-radius: 6px;
	padding: 10px 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.final-debt-item .v-image {
	height: 40px;
}

.final-debt-item__amount {
	color: #00b894;
}

.balance-widget .balance-title div {
	margin: 0 !important;
	margin-left: 18px !important;
}

.balance-widget .balance-amount {
	margin-top: 0 !important;
	margin-left: 50px;
}

.parent-dashboard-block {
	align-items: flex-start;
	border-top: 1px solid #d8d8d8;
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	padding-top: 20px;
	width: 100%;
}

.parent-dashboard-block:first-child {
	border-top: none;
	margin-top: 0;
	padding-top: 0;
}

.parent-dashboard-block:last-child {
	margin-bottom: 10px;
	padding-bottom: 20px;
}

@media (max-width: 400px) {
	.final-debt-item__amount {
		font-size: 17px;
	}
}

@media (max-width: 600px) {
	.creditcard-pay-button {
		width: 100% !important;
	}
}

@media (max-width: 700px) {
	.balance-widget {
		flex-direction: column;
		align-items: flex-start;
	}
	.balance-widget .balance-title img {
		position: relative;
		top: 12px;
	}
}

.player-payment-button-disabled {
	visibility: hidden;
}

.month-basic-membership-fee-button {
	padding: 0;
	text-align: left;
	background: none;
	box-shadow: none;
}

.month-basic-membership-fee-button:hover {
	box-shadow: none;
}

.debt-month-label {
	font-size: 10px;
	font-weight: 700;
	text-align: center;
}

.debt-month-label::before {
	content: "";
	width: 24px;
	height: 24px;
	display: block;
	border: 1px solid #687684;
	border-radius: 24px;
}

.debt-month-label--not-completed::before {
	border: none;
	background: url(img/icon/finance/sargakor_plus.svg) no-repeat center;
	background-size: 24px;
}

.debt-month-label--completed::before {
	border: none;
	background: url(img/icon/success_filled.svg) no-repeat center;
	background-size: 24px;
}

.debt-month-label--missed-deadline::before {
	border: none;
	background: #c4283a url(img/icon/finance/piroskor.svg) no-repeat center;
	background-size: 24px;
}

.debt-month-label--missed-deadline:hover::before {
	border: none;
	background: url(img/icon/finance/piroskor_plus.svg) no-repeat center;
	background-size: 24px;
}

.debt-month-label--deadline-warning::before {
	border: none;
	background: url(img/icon/finance/sargakor_plus.svg) no-repeat center;
	background-size: 24px;
}

.debt-month-label--in-progress::before {
	border: none;
	background: url(img/icon/finance/sargakor_folyamatban.svg) no-repeat center;
	background-size: 24px;
}

.player-payment-row-button.outline, .player-payment-row-button.primary {
	height: 34px;
	padding: 0;
}

.expired-license {
	color: #d63030;
}

.paid-payment {
	color: #82828c;
}

.expired-payment {
	color: #d63030;
}

.player-medical-condition-end {
	color: #82828c;
}

.attendance-radio-group {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.attendance-radio-group .v-radiobutton.v-select-option {
	display: flex;
	flex-basis: 33%;
	padding: 3px;
	margin: 0;
	height: 25px;
}

.attendance-radio-group .v-radiobutton.v-select-option label {
	font-size: 14px;
	border: 1px solid transparent;
	padding: 3px;
	border-radius: 5px;
}

.attendance-radio-group .v-radiobutton.v-select-option label img {
	height: 18px;
	width: 18px;
}

.attendance-radio-group .v-radiobutton.v-select-option label::before {
	display: none;
}

.attendance-radio-group .v-radiobutton.v-select-option label::after {
	display: none;
}

.attendance-radio-group .v-radiobutton.v-select-option.v-select-option-selected label {
	background: rgba(120, 94, 244, 0.1);
	border-color: #785ef4;
}

.attendance-register-entry {
	color: darkgreen;
}

.attendance-register-entry .v-select-optiongroup-attendance-radio-group .v-select-option input:focus ~ label, .attendance-register-entry .v-select-optiongroup-attendance-radio-group .v-select-option input:active ~ label {
	padding-left: 3px;
}

.attendance-window-button-layout {
	margin: 20px;
}

.attendance-header-last-mod {
	font-size: small;
	color: #9f9f9f;
	margin-left: 10px;
}

@media (max-width: 992px) {
	.attendance-window-button-layout {
		margin: 20px 0;
	}
	.attendance-window-button-layout .v-button {
		width: 90% !important;
	}
}

div.feedback-comment {
	max-width: 200px;
}

div.v-caption-feedback-reason img {
	height: 18px;
	width: 18px;
}

.box-border {
	border: 2px solid #d8d8d8;
	border-radius: 5px;
	padding: 10px;
}

.header-label {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 1px;
}

.right-position-button {
	position: absolute;
	right: 0;
}

.v-calendar {
	height: 100%;
}

.v-calendar-week-wrapper-Vsized {
	height: calc(100% - 230px);
}

.v-calendar-times-Vsized .v-calendar-time {
	height: 63px;
	margin: -3px 5px 0px 0;
	padding: 0;
}

button.v-calendar-back.v-calendar-back-Hsized, button.v-calendar-next.v-calendar-next-Hsized {
	display: none;
}

.v-calendar-day-times.v-calendar-day-times-Vsized {
	border-right: 1px dotted #d8d8d8;
}

.v-calendar-day-times-Vsized .v-datecellslot, .v-calendar-day-times-Vsized .v-datecellslot-even {
	height: 30px;
}

.v-calendar-day-times-today {
	background-color: #f5f5f5;
}

.v-calendar-header-day-today {
	background-color: #f5f5f5;
	font-weight: 700;
}

.v-calendar-event.v-calendar-event-all-day {
	height: auto;
	font-weight: 700;
	color: #333333;
	max-height: 100px;
}

.v-calendar-event.v-calendar-event-all-day b, .v-calendar-event.v-calendar-event-all-day br {
	display: none;
}

.v-calendar-week-wrapper .v-calendar-event-caption {
	color: #595058;
}

.v-calendar-week-wrapper .v-calendar-event-training .v-calendar-event-content {
	background-color: #F99090;
}

.v-calendar-week-wrapper .v-calendar-event-private_training .v-calendar-event-content {
	background-color: #FC9DCF;
}

.v-calendar-week-wrapper .v-calendar-event-general_event .v-calendar-event-content {
	background-color: #EEE8AA;
}

.v-calendar-week-wrapper .v-calendar-event-match .v-calendar-event-content, .v-calendar-week-wrapper .v-calendar-event-tournament .v-calendar-event-content {
	background-color: #66E9E4;
}

.v-calendar-week-wrapper .v-calendar-event-training_match .v-calendar-event-content {
	background-color: #60F59B;
}

.calendar-view .v-radiobutton > input ~ label::before {
	display: none;
}

.calendar-view .v-radiobutton > input ~ label:after {
	display: none;
}

.calendar-view .v-select-option-selected label {
	font-weight: 700;
	border-bottom: 2px solid;
}

.calendar-view .v-select-option-selected label:hover {
	color: #333333;
}

.calendar-control {
	position: absolute;
	display: flex;
	flex-grow: 1;
	flex-direction: row;
	align-items: center;
	background: #eaecee;
	height: 50px;
	margin: 0;
	left: 0;
	width: 100%;
	top: 60px;
	z-index: 10;
	padding: 0 31px;
}

.calendar-control .v-select-optiongroup .v-select-option label {
	padding-left: 7px !important;
	padding-right: 7px !important;
}

.calendar-control .v-select-optiongroup .v-select-option input {
	display: none;
}

.calendar-control .v-select-optiongroup-calendar-view .v-radiobutton label {
	font-weight: 700 !important;
	color: #687684;
}

.calendar-control .v-select-optiongroup-calendar-view .v-radiobutton label:hover {
	color: #333333;
}

.calendar-control .v-select-optiongroup-calendar-view .v-radiobutton.v-select-option-selected label {
	color: #333333;
}

.calendar-control .calendar-back, .calendar-control .calendar-forward {
	width: 38px;
	padding: 0;
}

.calendar-control .calendar-back .v-button-wrap .v-icon, .calendar-control .calendar-forward .v-button-wrap .v-icon {
	color: transparent;
	width: 20px;
	height: 20px;
}

.calendar-control .calendar-back .v-button-wrap .v-icon:before, .calendar-control .calendar-forward .v-button-wrap .v-icon:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: url(img/icon/arrow_blue.svg) no-repeat center;
	background-size: contain;
	right: 0;
	top: 0;
	transition: opacity 0.2s;
}

.calendar-control .calendar-back .v-button-wrap .v-icon:before {
	transform: rotate(180deg);
}

.calendar-content {
	padding-top: 50px;
}

.calendar-content .v-calendar {
	padding-top: 43px;
}

.calendar-content .v-calendar  > tbody  > tr:first-child {
	position: fixed;
	display: inline-flex;
	align-items: center;
	background: white;
	z-index: 10;
	top: 110px;
	height: 50px;
	border-bottom: 2px solid #3688dc;
}

.calendar-content .v-calendar  > tbody  > tr:first-child .v-calendar-header-day {
	color: #687684;
}

.calendar-content .v-calendar  > tbody  > tr:first-child .v-calendar-header-day.v-calendar-header-day-today {
	border-radius: 6px;
	color: #d63030;
}

.calendar-content .v-calendar  > tbody  > tr:first-child .v-calendar-header-day:hover {
	color: #333333;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-day-number {
	border-color: #d8d8d8;
	font-weight: 500;
	margin: 0 1px;
	color: #687684;
	font-size: 12px;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-day-number:hover {
	color: #333333;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-event-month .v-calendar-event-time {
	opacity: 1;
	font-weight: 500;
	color: #687684;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-event-month.v-calendar-event-match:before, .calendar-content .v-calendar .v-calendar-month-day .v-calendar-event-month.v-calendar-event-tournament:before, .calendar-content .v-calendar .v-calendar-month-day .v-calendar-event-month.v-calendar-event-training_match:before {
	color: #66E9E4;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-event-month.v-calendar-event-general_event:before {
	color: #ffc86e;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-event-month.v-calendar-event-training:before, .calendar-content .v-calendar .v-calendar-month-day .v-calendar-event-month.v-calendar-event-private_training:before {
	color: #F99090;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-bottom-spacer {
	padding: 1px 0;
	margin: -2px 1px;
	width: calc(100% - 2px) !important;
	text-align: center;
	height: auto !important;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.1);
	color: #687684;
	font-weight: 900;
}

.calendar-content .v-calendar .v-calendar-month-day .v-calendar-bottom-spacer:hover {
	color: #333333;
}

.calendar-content .v-calendar .v-calendar-month-day.v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 900;
	color: #d63030;
}

.calendar-content .v-calendar .v-calendar-week-wrapper .v-calendar-event-content {
	margin: 1px 2px 1px 1px;
	border: none;
}

.calendar-content .v-calendar .v-datecellslot, .calendar-content .v-calendar .v-datecellslot-even {
	margin: 0 1px;
}

.calendar-content .v-calendar .v-calendar-current-time {
	background: #d63030;
	opacity: 1;
}

.calendar-content .v-calendar .v-calendar-current-time:before {
	content: "";
	display: inline-flex;
	position: relative;
	width: 9px;
	height: 9px;
	left: 2px;
	top: -4px;
	background: #d63030;
	border-radius: 10px;
}

.dashboard-widget {
	background-color: white;
	border-radius: 6px;
	padding: 10px 15px;
}

.dashboard-widget .v-button-primary {
	min-width: 0;
}

.coach-dashboard, .manager-dashboard, .parent-dashboard, .player-dashboard {
	padding: 15px;
}

.manager-dashboard .player-count-widget {
	align-items: center;
}

.manager-dashboard .player-count-widget .mb20 {
	margin-bottom: 0;
}

.manager-dashboard .player-count-widget .h2 {
	display: none;
}

.manager-dashboard .player-count-widget .team-image {
	width: 90px;
	height: 90px;
	display: flex;
	margin: 30px auto 40px;
	background: rgba(255, 200, 110, 0.5) url(img/icon/team.svg) no-repeat center;
	background-size: 50px;
	border-radius: 50px;
	padding: 20px;
}

.manager-dashboard .player-count-widget .association-image {
	width: 90px;
	height: 90px;
	display: flex;
	margin: 30px auto 40px;
	background: rgba(255, 200, 110, 0.5) url(img/icon/bar-chart.svg) no-repeat center;
	background-size: 50px;
	border-radius: 50px;
	padding: 20px;
}

.manager-dashboard .player-count-widget .title-label {
	color: #687684;
	font-family: "U";
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2em;
	text-align: center;
}

.manager-dashboard .player-count-widget .count-label {
	font-size: 36px;
	font-weight: 900;
	text-align: center;
}

.coach-dashboard, .manager-dashboard, .parent-dashboard, .player-dashboard {
	overflow: auto;
	height: calc(100vh - 60px);
}

.coach-dashboard .daily-event, .manager-dashboard .daily-event, .parent-dashboard .daily-event, .player-dashboard .daily-event {
	margin-left: 15px;
}

.coach-dashboard .last-match-layout, .manager-dashboard .last-match-layout, .parent-dashboard .last-match-layout, .player-dashboard .last-match-layout {
	border-bottom: 2px solid #eaecee;
	padding: 5px 0;
}

.coach-dashboard .last-match-layout:last-child, .manager-dashboard .last-match-layout:last-child, .parent-dashboard .last-match-layout:last-child, .player-dashboard .last-match-layout:last-child {
	border-bottom: none;
}

.coach-dashboard .last-match-layout .match-name-layout, .manager-dashboard .last-match-layout .match-name-layout, .parent-dashboard .last-match-layout .match-name-layout, .player-dashboard .last-match-layout .match-name-layout {
	display: flex;
	width: 100%;
	cursor: pointer;
}

.coach-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label, .coach-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label, .manager-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label, .manager-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label, .parent-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label, .parent-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label, .player-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label, .player-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38%;
	text-align: center;
}

.coach-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label--winner, .coach-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label--winner, .manager-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label--winner, .manager-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label--winner, .parent-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label--winner, .parent-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label--winner, .player-dashboard .last-match-layout .match-name-layout .match-name-layout__home-team-name-label--winner, .player-dashboard .last-match-layout .match-name-layout .match-name-layout__opponent-team-name-label--winner {
	color: #00b894;
	font-weight: 700;
}

.coach-dashboard .last-match-layout .match-name-layout .match-name-layout__score-label, .manager-dashboard .last-match-layout .match-name-layout .match-name-layout__score-label, .parent-dashboard .last-match-layout .match-name-layout .match-name-layout__score-label, .player-dashboard .last-match-layout .match-name-layout .match-name-layout__score-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24%;
	font-weight: 700;
	text-align: center;
}

.debt-progress-layout {
	display: flex;
	justify-content: center;
	position: relative;
}

.debt-progress-layout .v-caption-debt-progress {
	display: block;
	position: absolute;
}

.debt-progress-layout .debt-progress .v-progressbar-wrapper {
	height: 20px;
	background-image: none;
	background-color: #f5f5f5;
	border: none;
}

.debt-progress-layout .debt-progress .v-progressbar-wrapper .v-progressbar-indicator {
	background-image: none;
	background-color: rgba(0, 0, 0, 0.2);
	border: none;
}

.attendance-layout {
	width: 30%;
}

.attendance-layout__row-layout {
	display: flex;
	flex-direction: row;
}

.attendance-layout__data-layout {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.attendance-layout__button-layout {
	display: flex;
	align-items: center;
}

.coach-balance {
	width: 30%;
	margin-bottom: 15px;
	height: 65px;
}

.coach-balance .v-image {
	height: 26px;
}

.team-chooser {
	background: none;
	box-shadow: none;
	border: none;
	font-size: 18px;
	display: flex;
	flex-grow: 1;
	height: 65px;
	margin-bottom: 15px;
	width: 70%;
	padding-right: 15px;
}

.medical-condition-widget-row {
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: 2px 5px;
	border: 1px solid transparent;
}

.medical-condition-widget-row:hover {
	border-radius: 5px;
	border: 1px solid #3688dc;
	padding: 2px 5px;
	cursor: pointer;
}

.monthly-debts-widget-list .v-grid-header, .monthly-debts-widget-list .v-grid-header-deco {
	background-color: white;
}

.parent-dashboard .player-stats .count-label, .player-dashboard .player-stats .count-label {
	font-weight: 900;
	font-size: 30px;
	line-height: 30px;
	text-align: center;
}

.parent-dashboard .player-stats .h2, .player-dashboard .player-stats .h2 {
	color: #687684;
	text-align: center;
}

.parent-dashboard .player-debts .debt-layout, .player-dashboard .player-debts .debt-layout {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #eaecee;
	margin-bottom: 5px;
	padding-bottom: 5px;
}

.parent-dashboard .player-debts .debt-layout .amount-label, .player-dashboard .player-debts .debt-layout .amount-label {
	font-weight: 900;
	white-space: nowrap;
}

.external-dashboard {
	display: flex;
	align-items: center;
	flex-grow: 1;
	flex-direction: column;
}

.external-dashboard__image {
	height: 200px;
	margin-top: 150px;
}

.external-dashboard__title {
	font-weight: 700;
	font-size: 26px;
	margin-top: 40px;
}

@media (min-width: 700px) {
	.parent-dashboard .player-stats, .player-dashboard .player-stats {
		max-width: 230px;
	}
	.parent-dashboard .last-match .flex-column-dashboard-widget, .parent-dashboard .player-debts .flex-column-dashboard-widget, .player-dashboard .last-match .flex-column-dashboard-widget, .player-dashboard .player-debts .flex-column-dashboard-widget {
		max-height: 250px;
		overflow-y: scroll;
	}
}

@media (max-width: 700px) {
	.coach-dashboard .calendar, .manager-dashboard .calendar, .parent-dashboard .calendar, .player-dashboard .calendar {
		width: 100%;
		border-bottom: 5px solid #eaecee;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.coach-dashboard .calendar .tat-calendar-widget, .manager-dashboard .calendar .tat-calendar-widget, .parent-dashboard .calendar .tat-calendar-widget, .player-dashboard .calendar .tat-calendar-widget {
		width: 100%;
		padding: 0;
		border: 0;
	}
	.coach-dashboard .daily-event, .manager-dashboard .daily-event, .parent-dashboard .daily-event, .player-dashboard .daily-event {
		margin: 0;
	}
	.coach-dashboard .daily-event .flex-column, .manager-dashboard .daily-event .flex-column, .parent-dashboard .daily-event .flex-column, .player-dashboard .daily-event .flex-column {
		flex-direction: unset;
	}
	.tat-widget-button {
		width: auto !important;
	}
	.tat-widget-button .link {
		padding: 0 !important;
	}
}

@media (max-width: 992px) {
	.coach-dashboard, .manager-dashboard, .parent-dashboard, .player-dashboard {
		padding: 15px 15px 0;
	}
	.dashboard-widget {
		border-radius: 0;
		margin: 0 0 15px;
	}
	.player-count-widget {
		flex-grow: 1;
	}
	.player-stats {
		flex-grow: 1;
	}
	.player-stats .stats-count {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		width: 100%;
	}
	.first-row {
		flex-direction: column-reverse;
		margin-bottom: 0;
	}
	.tat-list {
		min-height: 300px;
	}
	.team-chooser {
		height: 100px;
	}
	.attendance-layout {
		width: 100%;
	}
	.coach-balance {
		width: 100%;
		height: 100px;
		margin-left: 0;
	}
}

.feedback-button img {
	width: 18px;
	height: 18px;
}

.feedback-button-not-present {
	background-image: none;
	background-color: #d63030;
	color: white;
}

.v-menubar > .v-menubar-menuitem.v-menubar-menuitem-highlighted-statistics {
	background-color: #63ebe7;
	color: white;
}

.statistics-criteria-layout {
	border-bottom: 2px solid #82828c;
}

.statistics-player-layout {
	border-right: 2px solid #82828c;
}

.assessment-criteria-header-cell {
	width: 78px;
	background-color: #e9e9eb;
	border-right: 2px solid #82828c;
}

.assessment-criteria-header-cell .v-menubar-menuitem {
	width: 75px;
	color: #333333;
}

.assessment-criteria-header-cell .v-menubar-menuitem-selected {
	background: none;
}

.statistics-criteria-add-button {
	width: 75px;
}

.statistics-form-layout__filed-layout {
	display: flex;
	flex-direction: column;
	width: 360px;
}

.statistics-form-layout__filed-layout .v-caption {
	width: 95%;
}

.statistics-form-layout__filed-layout .v-caption .v-captiontext {
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.training-plan-exercise-layout {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 5px 10px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.training-plan-exercise-layout:before {
	content: "";
	width: 22px;
	height: 22px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/dropdown.svg) no-repeat center;
	margin-right: 10px;
}

.training-plan-new-exercise-layout {
	margin-bottom: 20px;
	padding: 15px 15px;
	width: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #4c4c54;
	border-radius: 5px;
}

.training-plan-section-list-name {
	font-weight: 700;
	width: 165px;
}

.v-button-training-plan-button {
	border: 1px dotted #666;
	height: 40px;
	text-align: left;
	background: none;
}

.v-button-training-plan-button .v-button-caption {
	padding-left: 25px;
}

.v-button-training-plan-button .v-button-caption:before {
	content: "";
	width: 15px;
	height: 15px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/delete.svg) no-repeat center;
	top: 0;
	left: 0;
	transform: rotate(45deg);
	position: absolute;
}

.v-button-training-plan-button.color-blue {
	color: #3688dc;
	border-color: #3688dc;
	max-width: 950px;
}

.v-button-training-plan-button.color-blue .v-button-caption:before {
	background: url(img/icon/delete_blue.svg) no-repeat center;
}

.v-button-training-plan-button:after {
	display: none;
}

.training-plan-section-layout {
	background-color: white;
	border-radius: 6px;
	padding: 15px;
	max-width: 950px;
}

.training-plan-section-layout__header-layout {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 15px;
}

.training-plan-section-layout__header-layout:before {
	content: "";
	width: 22px;
	height: 22px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/dropdown.svg) no-repeat center;
	margin-right: 10px;
}

.training-plan-exercise-layout__name_layout {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	margin-left: 10px;
}

.training-plan-exercise-image-component-image {
	width: 150px;
	min-width: 150px;
	max-width: 150px;
	margin-right: 10px;
	height: fit-content;
	min-height: 115px;
	max-height: 115px;
}

.popup-title {
	height: 30px;
	font-weight: 700;
}

.has-training-plan-image {
	align-items: center;
}

.v-caption-training-plan-exercise-attachment {
	background-color: #eaecee;
	width: 100%;
	padding-top: 5px;
	padding-left: 5px;
}

.v-caption-training-plan-exercise-attachment {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.training-plan-exercise-attachment {
	background-color: #eaecee;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	padding: 10px;
	height: 100%;
	overflow: auto;
	max-height: 100%;
}

.training-plan-exercise-editor-attachment-layout {
	margin-bottom: 25px;
	width: 300px;
	min-width: 300px;
	max-width: 300px;
}

.training-plan-exercise-editor-attachment-layout .document-card-layout__name {
	width: calc(100% - 50px);
}

.training-plan-exercise-editor-attachment-layout .document-card-layout__name .v-label {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.training-plan-exercise-editor-window {
	width: 875px;
	height: auto;
	max-height: 95%;
	overflow: auto !important;
}

.training-plan-template-save-window {
	width: 450px;
	height: auto;
	max-height: 95%;
	overflow: auto !important;
}

.training-plan-exercise-editor-layout {
	display: flex;
	height: 100%;
	width: 100%;
	flex-direction: row;
}

.training-plan-exercise-editor-template-layout {
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	padding: 10px;
	width: 530px;
}

.training-plan-exercise-editor-template-layout  > .v-label-h2:first-child {
	margin-top: 0;
}

.training-plan-section-menu .tat-row-menu {
	border: none;
	box-shadow: none;
	background: white;
	height: 30px;
}

.training-plan-section-menu .tat-row-menu  > .v-menubar-menuitem {
	padding: 0;
	width: 30px;
}

.training-plan-section-menu .tat-row-menu  > .v-menubar-menuitem:hover {
	background: #eaecee;
}

.training-plan-section-menu .tat-row-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected {
	background: #d8d8d8;
}

.training-plan-section-menu .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption {
	color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.training-plan-section-menu .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption:after {
	display: none;
}

.training-plan-section-menu .tat-row-menu  > .v-menubar-menuitem  > .v-menubar-menuitem-caption:before {
	content: "";
	display: inline-flex;
	width: 20px;
	height: 20px;
	background: url(img/icon/arrow_blue.svg) no-repeat center;
	background-size: contain;
	transform: rotate(90deg);
}

.training-plan-view {
	height: 100%;
}

.training-plan-view__content {
	margin: 0 20px;
}

.training-plan-view__content .v-caption {
	font-weight: bold;
	padding-left: 0;
}

.training-plan-view__header {
	border-bottom: 1px solid #d8d8d8;
	padding: 15px 0;
	margin-bottom: 15px;
}

.training-plan-view__tenant-logo {
	height: 40px;
	width: 40px;
}

.training-plan-view__section {
	margin-bottom: 15px;
}

.training-plan-view__section:last-child {
	margin-bottom: 0;
}

.training-plan-view__section .training-plan-view__exercise {
	padding: 10px 20px;
}

.training-plan-view__section .training-plan-view__exercise:nth-child(even) {
	background-color: #eaecee;
}

.training-plan-view__section .training-plan-view__exercise .training-plan-view__toggle-button {
	content: "";
	display: inline-flex;
	width: 20px;
	height: 20px;
	background: url(img/icon/arrow_dark.svg) no-repeat center;
	background-size: contain;
	transform: rotate(90deg);
}

.training-plan-view__section .training-plan-view__exercise .training-plan-view__toggle-button--opened {
	transform: rotate(270deg);
}

.training-plan-view__section .training-plan-view__exercise .document-card-layout__name .v-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.training-plan-view__section-name {
	border-bottom: 2px solid #687684;
	color: #687684;
	font-size: 1rem;
	font-weight: bold;
	margin: 5px 0;
}

.training-plan-view__exercise__header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.training-plan-view__exercise__tags {
	font-size: 0.75rem;
}

.training-plan-view__exercise__photo {
	background-color: white;
	width: 175px;
	height: 125px;
	max-height: 125px;
}

@media (max-width: 992px) {
	.training-plan-view__exercise__header {
		flex-direction: column;
	}
	.training-plan-view__content {
		margin: 0;
	}
	.training-plan-view__content .align-items-end {
		align-items: flex-start;
	}
}

@media (max-width: 700px) {
	.training-plan-exercise-editor-window {
		width: 90%;
	}
}

@media (max-height: 700px) {
	.training-plan-exercise-editor-window {
		height: 95%;
	}
}

.video-store-table__thumbnail {
	align-items: center;
	display: flex;
}

.video-store-table__thumbnail-image {
	height: 150px;
}

.video-store-table__thumbnail-image--small {
	height: 90px;
}

.event-category .v-filterselect {
	border: 1px solid #d8d8d8;
}

.event-category .wcs-token-field-layout .tokens-layout {
	width: 100%;
}

.event-category .wcs-token-field-layout .token-layout {
	flex-basis: auto;
}

.v-slot-score-field--left .v-widget, .v-slot-score-field--right .v-widget {
	text-align: right;
}

.v-slot-score-field--left .v-caption-score-field--left, .v-slot-score-field--left .v-caption-score-field--right, .v-slot-score-field--right .v-caption-score-field--left, .v-slot-score-field--right .v-caption-score-field--right {
	width: 115px;
}

.v-slot-score-field--left .v-caption-score-field--left .v-captiontext, .v-slot-score-field--left .v-caption-score-field--right .v-captiontext, .v-slot-score-field--right .v-caption-score-field--left .v-captiontext, .v-slot-score-field--right .v-caption-score-field--right .v-captiontext {
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.v-slot-score-field--left .v-textfield, .v-slot-score-field--right .v-textfield {
	border: 1px solid #d8d8d8;
	text-align: center;
}

.v-slot-score-field--right .v-widget {
	text-align: left;
}

.outsider-email-field .v-filterselect-button {
	display: none;
}

.v-button.link.event-button .v-button-wrap {
	width: 100%;
}

.v-button.link.event-button .v-button-wrap:before {
	content: "";
	display: flex;
	margin: 0 auto 10px;
	width: 70px;
	height: 70px;
	background-size: contain !important;
}

.v-button.link.event-button.training .v-button-wrap:before {
	background: url(img/icon/icon_event_training.svg) no-repeat center;
}

.v-button.link.event-button.private-training .v-button-wrap:before {
	background: url(img/icon/icon_event_private_training.svg) no-repeat center;
}

.v-button.link.event-button.training-match .v-button-wrap:before {
	background: url(img/icon/icon_event_training_match.svg) no-repeat center;
}

.v-button.link.event-button.match .v-button-wrap:before {
	background: url(img/icon/icon_event_match.svg) no-repeat center;
}

.v-button.link.event-button.general .v-button-wrap:before {
	background: url(img/icon/icon_event_general_event.svg) no-repeat center;
}

.v-button.link.event-button.tournament .v-button-wrap:before {
	background: url(img/icon/icon_event_training.svg) no-repeat center;
}

.event-player-training-note-row-layout {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 10px;
}

.event-player-training-note-row-layout .event-player-training-note-box-layout {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d8d8d8;
}

.event-player-training-note-row-layout .event-player-training-note-box-layout:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bus-row-layout {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-bottom: 10px;
}

.bus-row-layout .bus-order-box-layout {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d8d8d8;
}

.bus-row-layout .bus-order-box-layout:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.right-panel-layout {
	display: flex;
	flex-direction: column;
	position: relative;
}

.right-panel-layout__persist-label {
	background-color: rgba(255, 255, 255, 0.9);
	height: 100%;
	width: calc(100% - 15px);
	position: absolute;
	top: 0;
	z-index: 3;
	margin-left: 15px;
	align-items: center;
	display: flex;
	justify-content: center;
	font-weight: 700;
	text-align: center;
	padding: 20px;
	border-radius: 5px;
}

.event-comment-box {
	display: flex;
	flex-direction: column;
	max-width: 75%;
}

.event-comment-box.my-comment {
	align-items: flex-end;
}

.v-slot.v-slot-event-comment-box {
	display: flex !important;
}

.v-slot.v-slot-event-comment-box.v-slot-my-comment {
	justify-content: flex-end;
}

.event-comment-box__header {
	display: flex;
	flex-direction: row;
	font-size: 12px;
	color: gray;
}

.event-comment-box__comment {
	background-color: white;
	padding: 0 10px;
	border-radius: 5px;
	width: 100%;
	display: flex;
	align-items: flex-start;
}

.event-comment-box__comment.my-comment {
	color: white;
	background-color: #3688dc;
}

.event-comment-box__comment pre {
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
	word-break: break-word;
}

.event-comment-window {
	width: 550px;
}

.at-event-start-radio span.v-select-option {
	margin-top: 10px;
}

.at-event-deadline-hours {
	margin-top: 5px;
	height: 30px;
	width: 40px;
	text-align: center;
}

.feedback-hours-label {
	font-weight: 500;
}

.feedback-hours-label-unselected {
	color: #687684;
}

.blink {
	animation: blinker 2.5s linear infinite;
}

@keyframes blinker {
		50% {
		opacity: 0.5;
	}
	}

.pay-button .v-button-wrap {
	display: block;
	top: 5px;
	position: absolute;
	width: calc(100% - 34px);
}

.simple-pay-info-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	border-radius: 6px;
	background-color: white;
	max-width: 400px;
}

.simple-pay-header-label {
	text-align: center;
	margin-bottom: 25px;
	font-size: 25px;
	font-weight: 500;
	font-family: "U";
	color: #333333;
}

.simple-pay-info-content.success:before {
	content: "";
	height: 40px;
	text-align: center;
	background: url(img/icon/success_filled.svg) no-repeat center;
}

.simple-pay-info-content.error:before {
	content: "";
	height: 40px;
	text-align: center;
	background: url(img/icon/fail.svg) no-repeat center;
}

.simple-pay-header-label {
	text-align: center;
	margin-bottom: 25px;
	font-size: 25px;
	font-weight: 500;
	font-family: "U";
	color: #333333;
}

.simple-pay-info-label {
	color: #333333;
	font-size: 16px;
	font-weight: 500;
	font-family: "U";
	margin-right: 25px;
	margin-bottom: 10px;
}

.simple-pay-info-label:last-child {
	margin-bottom: 25px;
}

.finance-payment-type-layout {
	display: flex;
	flex-direction: row;
	background-color: #e8ecef;
	padding: 2px;
	border-radius: 4px;
}

.finance-payment-player-name {
	font-weight: 700;
}

.finance-status-column {
	display: flex;
	align-items: center;
}

.finance-status-column .finance-payment {
	width: 38px;
	height: 38px;
	border-radius: 3px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	color: white;
	font-size: 12px;
	position: relative;
	padding-bottom: 4px;
	font-weight: 700;
}

.finance-status-column .finance-payment:before {
	content: "";
	width: 32px;
	height: 32px;
	position: absolute;
	top: 3px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/finance/calendar.svg) no-repeat center;
}

.finance-status-column .finance-payment.done {
	background-color: #00B894;
}

.finance-status-column .finance-payment.today {
	background-color: #a6c4e4;
}

.finance-status-column .finance-payment.future {
	background-color: #a6c4e4;
}

.finance-status-column .finance-payment.late {
	background-color: #dfa6ad;
}

.coach-dues-widget__coach {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border-bottom: 2px solid #eaecee;
	margin-bottom: 5px;
	padding-bottom: 5px;
}

.coach-dues-widget__coach:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.coach-dues-widget__coach-name-layout {
	width: calc(100% - 160px);
	display: flex;
	flex-direction: column;
}

.coach-dues-widget__coach-button-layout {
	width: 150px;
	display: flex;
	justify-content: space-between;
}

.dues-items-row-layout {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	max-width: 750px;
	border-bottom: 1px solid #d8d8d8;
	margin-top: 5px;
	padding-right: 20px;
}

.dues-summary-row-layout {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	max-width: 750px;
	font-weight: 700;
	margin-left: 20px;
	margin-top: 10px;
	padding-right: 20px;
}

.dues-items-billing-address-layout {
	max-width: 750px;
	width: 100%;
	background-color: white;
	min-height: 105px;
	height: 105px;
	max-height: 105px;
	border-radius: 5px;
	margin-top: 15px;
	margin-left: 20px;
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-grow: 1;
	padding: 5px 20px;
}

.debt-basicMembership-fee {
	flex-grow: 1;
	text-align: right;
}

.debt-basicMembership-fee.empty {
	margin-right: 58px;
}

.dues-items-billing-address-modified-button.empty {
	color: #d63030;
	align-items: center;
	display: flex;
	height: 100%;
	width: 100%;
	font-weight: normal;
}

.dues-items-billing-address-modified-button.empty:before {
	content: "";
	width: 22px;
	height: 22px;
	margin-right: 10px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/red_plus.svg) no-repeat center;
}

.dues-items-billing-address-label {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.summary-debt-sum {
	font-weight: 700;
	margin: 20px 0;
}

.simple-pay-layout {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.simple-pay-privacy-policy-layout {
	display: flex;
	flex-direction: column;
}

.privacy-policy-layout {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.privacy-policy-layout .v-link {
	margin-left: 5px;
}

.finance-payment-type-switch input {
	opacity: 0;
	position: absolute;
}

.finance-payment-type-switch input ~ label:before {
	opacity: 0;
}

.finance-payment-type-switch input ~ label:after {
	opacity: 0;
}

.finance-payment-type-switch label {
	background: #d8d8d8;
	display: inline-block;
	position: relative;
	transition: 0.2s ease-out;
	vertical-align: middle;
	width: 125px;
	height: 38px;
}

.finance-payment-type-switch.cash label {
	background: url(img/icon/finance/keszpenz_aktiv.svg) no-repeat center;
}

.finance-payment-type-switch.transfer label {
	background: url(img/icon/finance/atutalas_aktiv.svg) no-repeat center;
}

.finance-payment-type-switch.cash-only label {
	background: url(img/icon/finance/keszpenzes.svg) no-repeat center;
}

.v-button.debt-description-button {
	margin-top: -8px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-right: 15px;
	margin-left: 5px;
}

.v-button.debt-description-button:before {
	content: "";
	width: 18px;
	margin-right: 10px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/finance/mini_comment.svg) no-repeat center;
}

.v-button.debt-description-button.empty:before {
	background: url(img/icon/finance/mini_pencil.svg) no-repeat center;
}

.finance-description-window {
	height: auto;
}

.monthly-debts-count {
	background: #D63031;
	border-radius: 12px;
	color: white;
	font-weight: 900;
	margin-left: 5px;
	font-size: 9px;
	height: 16px;
	width: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.finance-list-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.other-debt-item {
	padding-bottom: 12px;
	padding-top: 12px;
}

.other-debt-item:first-of-type {
	padding-top: 0;
}

.other-debt-item:last-of-type {
	padding-bottom: 0;
}

.payment-day-description-layout {
	background-color: white;
	border-radius: 10px;
	padding: 15px;
	font-size: 13px;
}

.payment-day-description a {
	color: #3688dc;
	font-weight: 900;
	text-decoration: none;
}

.payment-day-description a:hover {
	color: #0a56a4;
}

.payment-settings-info-link a {
	height: 20px;
	width: 20px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/info.svg) no-repeat center;
}

.payment-settings-online-main-info {
	background-color: white;
	border-radius: 10px;
	padding: 15px;
	max-width: 800px;
}

.payment-settings-notifications-main-info {
	background-color: white;
	border-radius: 10px;
	padding: 15px;
	max-width: 800px;
}

.payment-settings-simple-pay-block, .payment-settings-billing-block, .payment-settings-notifications-notice-block, .payment-settings-notifications-late-block {
	margin-top: 10px;
	background-color: white;
	border-radius: 10px;
	padding: 15px;
	max-width: 800px;
}

.payment-settings-simple-pay-header-label, .payment-settings-billing-header-label {
	font-weight: bolder;
	text-align: right;
}

.payment-settings-simple-pay-third-party-data-label {
	font-weight: bolder;
}

.payment-settings-email-header-label {
	vertical-align: center;
	font-weight: bolder;
	line-height: 45px;
	margin-left: 10px;
}

.switch-button-on .v-button-caption:before {
	content: "";
	width: 30px;
	height: 15px;
	display: inline-flex;
	background-size: contain !important;
	top: 0;
	left: 0;
	position: absolute;
	background: url(img/finance/active_switch.svg) no-repeat center;
}

.switch-button-off .v-button-caption:before {
	content: "";
	width: 30px;
	height: 15px;
	display: inline-flex;
	background-size: contain !important;
	top: 0;
	left: 0;
	position: absolute;
	background: url(img/finance/inactive_switch.svg) no-repeat center;
}

.separator-line hr {
	width: 100%;
	border: 0;
	height: 2px;
	background-color: #979797;
}

.v-button.icon-only.card-layout__remove-button {
	height: 22px;
}

.v-button.icon-only.card-layout__remove-button:hover:after {
	background-color: white;
}

@media (max-width: 600px) {
	.parents .v-panel {
		width: 100% !important;
	}
}

.news-card-content {
	display: flex;
	flex-direction: row;
	flex: 1 0 auto;
	align-items: flex-start;
	padding: 20px 10px 25px 40px;
	border-bottom: 1px solid #d8d8d8;
}

.news-card-content:last-of-type {
	border-bottom: 0;
}

.news-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.news-content__date {
	font-size: 12px;
	line-height: 14px;
	color: #697685;
}

.news-content__title {
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	font-family: "U";
	color: #333333;
}

.news-content__content {
	margin-top: 20px;
}

.news-content__content p {
	font-size: 12px;
	line-height: 16px;
	color: #333333;
	font-family: "U";
}

.news-content__content img {
	width: 100%;
	height: auto;
}

.news-content__link {
	margin-top: 20px;
	justify-content: flex-end;
	display: flex;
}

.news-content__link::after {
	content: "";
	width: 22px;
	height: 22px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/arrow_blue.svg) no-repeat center;
}

.player-badge-row {
	display: flex;
	flex-direction: row;
}

.achievement-layout__badge--small {
	width: 66%;
}

.achievement-layout__badge--unfilled {
	opacity: 0.3;
}

.achievement-layout__title {
	font-weight: 700 !important;
}

.achievement-layout__description {
	text-align: center !important;
}

.achievement-layout__fb-share-button .v-button-wrap:before, .achievement-layout__fb-share-button .v-button-caption:before {
	width: 0 !important;
}

.achievement-layout__fb-share-button .v-icon {
	font-size: 22px;
}

.v-button.points-edit-button {
	height: 25px;
	width: 25px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-right: 15px;
	margin-left: 5px;
	background: transparent url(img/icon/finance/mini_pencil.svg) no-repeat center;
}

.simplepaybackui .payment-info__content {
	display: flex;
	flex-direction: column;
	padding: 16px 16px 50px 16px;
}

.simplepaybackui .payment-info__content  > .flex {
	flex-shrink: 1;
}

.simplepaybackui .payment-info__content .simple-pay-info-content {
	display: flex;
	flex-direction: column;
	padding: 16px;
}

.simplepaybackui .payment-info__content .simple-pay-info-content .simple-pay-header-label {
	font: 400 13px/18px;
	color: #333333;
	text-align: center;
	font-weight: 700;
}

.simplepaybackui .payment-info__content .simple-pay-info-content .simple-pay-status-text {
	color: #333333;
	text-align: center;
}

.calendar-workspace-logo {
	height: 40px;
	width: 100px;
	top: 20px;
	position: fixed;
	left: 10px;
}

.calendarrootui {
	min-width: 700px;
}

.calendarrootui .root-layout {
	overflow: hidden;
}

.calendarrootui .v-Notification-system {
	height: 0;
}

.fc-icon, body .fc {
	font-size: 13px;
}

.fc-button-group, .fc-icon {
	display: inline-block;
}

.fc-bg, .fc-row .fc-bgevent-skeleton, .fc-row .fc-highlight-skeleton {
	bottom: 0;
}

.fc-icon, .fc-unselectable {
	-khtml-user-select: none;
	-webkit-touch-callout: none;
}

.fc {
	direction: ltr;
	text-align: left;
}

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

.fc th, .fc-basic-view td.fc-week-number, .fc-icon, .fc-toolbar {
	text-align: center;
}

.fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
	border-color: #ddd;
}

.fc-unthemed .fc-popover {
	background-color: #fff;
}

.fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-popover .fc-header {
	background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	color: #666;
}

.fc-unthemed td.fc-today {
	background: #F5F5F5;
}

.fc-highlight {
	background: #bce8f1;
	opacity: 0.3;
}

.fc-bgevent {
	background: #8fdf82;
	opacity: 0.3;
}

.fc-nonbusiness {
	background: #d7d7d7;
}

.fc-unthemed .fc-disabled-day {
	background: #d7d7d7;
	opacity: 0.3;
}

.ui-widget .fc-disabled-day {
	background-image: none;
}

.fc-icon {
	height: 1em;
	line-height: 1em;
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fc-icon:after {
	position: relative;
}

.fc-icon-left-single-arrow:after {
	content: "\02039";
	font-weight: 700;
	font-size: 200%;
	top: -7%;
}

.fc-icon-right-single-arrow:after {
	content: "\0203A";
	font-weight: 700;
	font-size: 200%;
	top: -7%;
}

.fc-icon-left-double-arrow:after {
	content: "\000AB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-right-double-arrow:after {
	content: "\000BB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-left-triangle:after {
	content: "\25C4";
	font-size: 125%;
	top: 3%;
}

.fc-icon-right-triangle:after {
	content: "\25BA";
	font-size: 125%;
	top: 3%;
}

.fc-icon-down-triangle:after {
	content: "\25BC";
	font-size: 125%;
	top: 2%;
}

.fc-icon-x:after {
	content: "\000D7";
	font-size: 200%;
	top: 6%;
}

.fc button {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	height: 2.1em;
	padding: 0 0.6em;
	font-size: 1em;
	white-space: nowrap;
	cursor: pointer;
}

.fc button::-moz-focus-inner {
	margin: 0;
	padding: 0;
}

.fc-state-default {
	border: 1px solid;
	background-image: -moz-linear-gradient(top, #fff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
	background-image: -o-linear-gradient(top, #fff, #e6e6e6);
	background-image: linear, to bottom, #fff, #e6e6e6;
	background-repeat: repeat-x;
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	color: #333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.fc-state-default.fc-corner-left {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.fc button .fc-icon {
	position: relative;
	top: -0.05em;
	margin: 0 0.2em;
	vertical-align: middle;
}

.fc-state-active, .fc-state-disabled, .fc-state-down, .fc-state-hover {
	color: #333;
	background-color: #e6e6e6;
}

.fc-state-hover {
	color: #333;
	text-decoration: none;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}

.fc-state-active, .fc-state-down {
	background-color: #ccc;
	background-image: none;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.fc-state-disabled {
	cursor: default;
	background-image: none;
	opacity: 0.65;
	box-shadow: none;
}

.fc-event.fc-draggable, .fc-event[href], .fc-popover .fc-header .fc-close, a[data-goto] {
	cursor: pointer;
}

.fc .fc-button-group > * {
	float: left;
	margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
	margin-left: 0;
}

.fc-popover {
	position: absolute;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
	padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
	margin: 0 2px;
}

.fc-ltr .fc-popover .fc-header .fc-title, .fc-rtl .fc-popover .fc-header .fc-close {
	float: left;
}

.fc-ltr .fc-popover .fc-header .fc-close, .fc-rtl .fc-popover .fc-header .fc-title {
	float: right;
}

.fc-unthemed .fc-popover {
	border-width: 1px;
	border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	font-size: 0.9em;
	margin-top: 2px;
}

.fc-popover > .ui-widget-header + .ui-widget-content {
	border-top: 0;
}

.fc-divider {
	border-style: solid;
	border-width: 1px;
}

hr.fc-divider {
	height: 0;
	margin: 0;
	padding: 0 0 2px;
	border-width: 1px 0;
}

.fc-bg table, .fc-row .fc-bgevent-skeleton table, .fc-row .fc-highlight-skeleton table {
	height: 100%;
}

.fc-clear {
	clear: both;
}

.fc-bg, .fc-bgevent-skeleton, .fc-helper-skeleton, .fc-highlight-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc table {
	width: 100%;
	box-sizing: border-box;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 13px;
}

.fc td, .fc th {
	border-style: solid;
	border-width: 1px;
	padding: 0;
	vertical-align: top;
}

.fc td.fc-today {
	border-style: double;
}

a[data-goto]:hover {
	text-decoration: underline;
}

.fc .fc-row {
	border-style: solid;
	border-width: 0;
}

.fc-row table {
	border-left: 0 hidden transparent;
	border-right: 0 hidden transparent;
	border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
	border-top: 0 hidden transparent;
}

.fc-row {
	position: relative;
}

.fc-row .fc-bg {
	z-index: 1;
}

.fc-row .fc-bgevent-skeleton td, .fc-row .fc-highlight-skeleton td {
	border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
	z-index: 2;
}

.fc-row .fc-highlight-skeleton {
	z-index: 3;
}

.fc-row .fc-content-skeleton {
	position: relative;
	z-index: 4;
	padding-bottom: 2px;
}

.fc-row .fc-helper-skeleton {
	z-index: 5;
}

.fc-row .fc-content-skeleton td, .fc-row .fc-helper-skeleton td {
	background: 0 0;
	border-color: transparent;
	border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, .fc-row .fc-helper-skeleton tbody td {
	border-top: 0;
}

.fc-scroller {
	-webkit-overflow-scrolling: touch;
	height: calc(100vh - 140px) !important;
}

.fc-row.fc-rigid, .fc-time-grid-event {
	overflow: hidden;
}

.fc-scroller > .fc-day-grid, .fc-scroller > .fc-time-grid {
	position: relative;
	width: 100%;
}

.fc-event {
	position: relative;
	display: block;
	font-size: 13px;
	line-height: 1.3;
	border-radius: 3px;
	border-top: 10px solid #3a87ad;
	font-weight: 400;
}

.fc-event, .fc-event-dot {
	background-color: #3a87ad;
}

.fc-event, .fc-event:hover, .ui-widget .fc-event {
	color: #595058;
	text-decoration: none;
}

.fc-not-allowed, .fc-not-allowed .fc-event {
	cursor: not-allowed;
}

.fc-event .fc-bg {
	z-index: 1;
	background: #fff;
	opacity: 0.25;
}

.fc-event .fc-content {
	position: relative;
	z-index: 2;
	padding: 5px;
}

.fc-event .fc-resizer {
	position: absolute;
	z-index: 4;
	display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer, .fc-event.fc-selected .fc-resizer {
	display: block;
}

.fc-event.fc-selected .fc-resizer:before {
	content: "";
	position: absolute;
	z-index: 9999;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-top: -20px;
}

.fc-event.fc-selected {
	z-index: 9999 !important;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

.fc-h-event.fc-selected:before {
	content: "";
	position: absolute;
	z-index: 3;
	top: -10px;
	bottom: -10px;
	left: 0;
	right: 0;
}

.fc-ltr .fc-h-event.fc-not-start, .fc-rtl .fc-h-event.fc-not-end {
	margin-left: 0;
	border-left-width: 0;
	padding-left: 1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end, .fc-rtl .fc-h-event.fc-not-start {
	margin-right: 0;
	border-right-width: 0;
	padding-right: 1px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.fc-ltr .fc-h-event .fc-start-resizer, .fc-rtl .fc-h-event .fc-end-resizer {
	cursor: w-resize;
	left: -1px;
}

.fc-ltr .fc-h-event .fc-end-resizer, .fc-rtl .fc-h-event .fc-start-resizer {
	cursor: e-resize;
	right: -1px;
}

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
	width: 7px;
	top: -1px;
	bottom: -1px;
}

.fc-h-event.fc-selected .fc-resizer {
	border-radius: 4px;
	border-width: 1px;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-color: inherit;
	background: #fff;
	top: 50%;
	margin-top: -4px;
}

.fc-ltr .fc-h-event.fc-selected .fc-start-resizer, .fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
	margin-left: -4px;
}

.fc-ltr .fc-h-event.fc-selected .fc-end-resizer, .fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
	margin-right: -4px;
}

.fc-day-grid-event {
	margin: 1px 2px 0;
	padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
	margin-top: 2px;
}

.fc-day-grid-event.fc-selected:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	background: #000;
	opacity: 0.25;
}

.fc-day-grid-event .fc-content {
	white-space: nowrap;
	overflow: hidden;
}

.fc-day-grid-event .fc-time {
	font-weight: 700;
}

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer, .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
	margin-left: -2px;
}

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer, .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
	margin-right: -2px;
}

a.fc-more {
	margin: 1px 3px;
	font-size: 0.85em;
	cursor: pointer;
	text-decoration: none;
}

a.fc-more:hover {
	text-decoration: underline;
}

.fc-limited {
	display: none;
}

.fc-day-grid .fc-row {
	z-index: 1;
}

.fc-more-popover {
	z-index: 2;
	width: 220px;
}

.fc-more-popover .fc-event-container {
	padding: 10px;
}

.fc-now-indicator {
	position: absolute;
	border: 0 solid red;
}

.fc-unselectable {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.fc-toolbar.fc-header-toolbar {
	margin: 25px 125px;
}

@media (max-width: 960px) {
	.fc-toolbar.fc-header-toolbar {
		margin: 100px 25px 25px 25px;
	}
}

.publicTeamComboBoxDiv, .publicLocationComboBoxDiv {
	position: fixed;
	right: 15px;
}

.publicTeamComboBoxDiv select#teamComboBox, .publicTeamComboBoxDiv select#locationComboBox, .publicLocationComboBoxDiv select#teamComboBox, .publicLocationComboBoxDiv select#locationComboBox {
	max-width: 300px;
	min-width: 300px;
	width: 300px;
}

.publicTeamComboBoxDiv span, .publicLocationComboBoxDiv span {
	font-size: 12px;
}

.publicLocationComboBoxDiv {
	top: 38px;
}

.fc-toolbar.fc-footer-toolbar {
	margin-top: 1em;
}

.fc-toolbar .fc-left {
	float: left;
	padding-left: 5px;
}

.fc-toolbar .fc-right {
	float: right;
}

.fc-toolbar .fc-center {
	display: inline-block;
}

.fc .fc-toolbar > * > * {
	float: left;
	margin-left: 0.75em;
}

.fc .fc-toolbar > * > :first-child {
	margin-left: 0;
}

.fc-toolbar h2 {
	margin: 0;
}

.fc-toolbar button {
	position: relative;
}

.fc-toolbar .fc-state-hover, .fc-toolbar .ui-state-hover {
	z-index: 2;
}

.fc-toolbar .fc-state-down {
	z-index: 3;
}

.fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active {
	z-index: 4;
}

.fc-toolbar button:focus {
	z-index: 5;
}

.fc-view-container *, .fc-view-container :after, .fc-view-container :before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.fc-view, .fc-view > table {
	position: relative;
	z-index: 1;
}

.fc-basicDay-view .fc-content-skeleton, .fc-basicWeek-view .fc-content-skeleton {
	padding-bottom: 1em;
}

.fc-basic-view .fc-body .fc-row {
	min-height: 4em;
}

.fc-row.fc-rigid .fc-content-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc-day-top.fc-other-month {
	opacity: 0.3;
}

.fc-basic-view .fc-day-number, .fc-basic-view .fc-week-number {
	padding: 2px;
}

.fc-basic-view th.fc-day-number, .fc-basic-view th.fc-week-number {
	padding: 0 2px;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
	float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
	float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
	float: left;
	border-radius: 0 0 3px;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
	float: right;
	border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
	min-width: 1.5em;
	text-align: center;
	background-color: #f2f2f2;
	color: grey;
}

.fc-basic-view td.fc-week-number > * {
	display: inline-block;
	min-width: 1.25em;
}

.fc-agenda-view .fc-day-grid {
	position: relative;
	z-index: 2;
}

.fc-agenda-view .fc-day-grid .fc-row {
	min-height: 3em;
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
	padding-bottom: 1em;
}

.fc .fc-axis {
	vertical-align: middle;
	padding: 0 4px;
	white-space: nowrap;
}

.fc-ltr .fc-axis {
	text-align: right;
}

.fc-rtl .fc-axis {
	text-align: left;
}

.ui-widget td.fc-axis {
	font-weight: 400;
}

.fc-time-grid, .fc-time-grid-container {
	position: relative;
	z-index: 1;
}

.fc-time-grid {
	min-height: 100%;
}

.fc-time-grid table {
	border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
	z-index: 1;
}

.fc-time-grid .fc-slats, .fc-time-grid > hr {
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-content-col {
	position: relative;
}

.fc-time-grid .fc-content-skeleton {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
}

.fc-time-grid .fc-business-container {
	position: relative;
	z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-highlight-container {
	z-index: 3;
	position: relative;
}

.fc-time-grid .fc-event-container {
	position: relative;
	z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
	z-index: 5;
}

.fc-time-grid .fc-helper-container {
	position: relative;
	z-index: 6;
}

.fc-time-grid .fc-slats td {
	height: 40px;
	border-bottom: 0;
}

.fc-time-grid .fc-slats .fc-minor td {
	border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content {
	background: 0 0;
}

.fc-time-grid .fc-highlight {
	position: absolute;
	left: 0;
	right: 0;
}

.fc-ltr .fc-time-grid .fc-event-container {
	margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
	margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-bgevent, .fc-time-grid .fc-event {
	position: absolute;
	z-index: 1;
}

.fc-time-grid .fc-bgevent {
	left: 0;
	right: 0;
}

.fc-v-event.fc-not-start {
	border-top-width: 0;
	padding-top: 1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
	border-bottom-width: 0;
	padding-bottom: 1px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.fc-time-grid-event.fc-selected {
	overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
	display: none;
}

.fc-time-grid-event .fc-content {
	overflow: hidden;
}

.fc-time-grid-event .fc-time, .fc-time-grid-event .fc-title {
	padding: 0 1px;
}

.fc-time-grid-event .fc-time {
	font-size: 0.85em;
	white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-content {
	white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time, .fc-time-grid-event.fc-short .fc-title {
	display: inline-block;
	vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
	display: none;
}

.fc-time-grid-event.fc-short .fc-time:before {
	content: attr(data-start);
}

.fc-time-grid-event.fc-short .fc-time:after {
	content: "\000A0-\000A0";
}

.fc-time-grid-event.fc-short .fc-title {
	font-size: 0.85em;
	padding: 0;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
	left: 0;
	right: 0;
	bottom: 0;
	height: 8px;
	overflow: hidden;
	line-height: 8px;
	font-size: 11px;
	font-family: monospace;
	text-align: center;
	cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
	content: "=";
}

.fc-time-grid-event.fc-selected .fc-resizer {
	border-radius: 5px;
	border-width: 1px;
	width: 8px;
	height: 8px;
	border-style: solid;
	border-color: inherit;
	background: #fff;
	left: 50%;
	margin-left: -5px;
	bottom: -5px;
}

.fc-time-grid .fc-now-indicator-line {
	border-top-width: 1px;
	left: 0;
	right: 0;
}

.fc-time-grid .fc-now-indicator-arrow {
	margin-top: -5px;
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
	left: 0;
	border-width: 5px 0 5px 6px;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
	right: 0;
	border-width: 5px 6px 5px 0;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.fc-event-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
}

.fc-rtl .fc-list-view {
	direction: rtl;
}

.fc-list-view {
	border-width: 1px;
	border-style: solid;
}

.fc .fc-list-table {
	table-layout: auto;
}

.fc-list-table td {
	border-width: 1px 0 0;
	padding: 8px 14px;
}

.fc-list-table tr:first-child td {
	border-top-width: 0;
}

.fc-list-heading {
	border-bottom-width: 1px;
}

.fc-list-heading td {
	font-weight: 700;
}

.fc-ltr .fc-list-heading-main {
	float: left;
}

.fc-ltr .fc-list-heading-alt, .fc-rtl .fc-list-heading-main {
	float: right;
}

.fc-rtl .fc-list-heading-alt {
	float: left;
}

.fc-list-item.fc-has-url {
	cursor: pointer;
}

.fc-list-item-marker, .fc-list-item-time {
	white-space: nowrap;
	width: 1px;
}

.fc-ltr .fc-list-item-marker {
	padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
	padding-left: 0;
}

.fc-list-item-title a {
	text-decoration: none;
	color: inherit;
}

.fc-list-item-title a[href]:hover {
	text-decoration: underline;
}

.fc-list-empty-wrap2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.fc-list-empty-wrap1 {
	width: 100%;
	height: 100%;
	display: table;
}

.fc-list-empty {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.fc-unthemed .fc-list-empty {
	background-color: #eee;
}

.reindeer.v-app {
	background: #FFFFFF;
}

th.fc-day-header.fc-widget-header {
	font-weight: normal;
}

th.fc-axis.fc-week-number.fc-widget-header {
	font-weight: normal;
}

.qtip {
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;
	max-width: 280px;
	min-width: 50px;
	font-size: 10.5px;
	line-height: 12px;
	direction: ltr;
	box-shadow: none;
	padding: 0;
}

.qtip-tat-full-calendar {
	border-radius: 2px;
	box-shadow: 0 0 3px #333;
	color: #fff;
	border: 0 solid transparent;
	background: rgba(74, 74, 74, 0.75);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(74, 74, 74, 0.75)), color-stop(100%, rgba(0, 0, 0, 0.1)));
	background-image: -webkit-linear-gradient(top, rgba(74, 74, 74, 0.75) 0, rgba(0, 0, 0, 0.1) 100%);
	background-image: -moz-linear-gradient(top, rgba(74, 74, 74, 0.75) 0, rgba(0, 0, 0, 0.1) 100%);
	background-image: -ms-linear-gradient(top, rgba(74, 74, 74, 0.75) 0, rgba(0, 0, 0, 0.1) 100%);
	background-image: -o-linear-gradient(top, rgba(74, 74, 74, 0.75) 0, rgba(0, 0, 0, 0.1) 100%);
}

.qtip-tat-full-calendar .qtip-titlebar {
	background-color: #4A4A4A;
	background-color: transparent;
}

.qtip-tat-full-calendar .qtip-content {
	padding: 0.75em;
	font-size: 12px;
}

.qtip-tat-full-calendar .qtip-icon {
	border-color: #222;
}

.qtip-tat-full-calendar .qtip-titlebar .ui-state-hover {
	border-color: #303030;
}

.subscription-window {
	height: 550px;
	max-height: 550px;
}

.subscription-window .v-window-closebox {
	font-size: 36px;
	top: 15px;
	right: 15px;
}

.subscription-window-content {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
}

.subscription-navigation-header-title {
	color: #696D85;
	margin-bottom: 25px;
	margin-left: 20px;
	font-weight: 500;
	font-size: 14px;
	font-family: "U";
}

.subscription-navigation-header-title .subscription-title-header {
	font-weight: bold;
	font-size: 24px;
	color: #333333;
}

.subscription-navigation-content {
	display: flex;
	flex-direction: column;
	width: 320px;
	padding: 20px 0;
	background-color: #EBEDEF;
}

.subscription-navigation-content.aszf-open .subscription-label.hide-label {
	transition: 0.3s all ease;
	opacity: 0;
	height: 0px;
}

.subscription-navigation-content.aszf-open .subscription-label.hide-label .subscription-label-row:before {
	transition: 0.3s all ease;
	height: 0px;
	opacity: 0;
}

.subscription-navigation-content.aszf-open .subscription-label.hide-label .subscription-label-row:after {
	transition: 0.3s all ease;
	height: 0px;
	opacity: 0;
}

.subscription-navigation-content.aszf-open .subscription-label.last-label .subscription-label-row:before {
	transition: 0.3s all ease;
	height: 0px;
	opacity: 0;
}

.subscription-navigation-content.aszf-open .subscription-label .subscription-aszf-container {
	opacity: 1;
	transition: 0.3s all ease;
}

.subscription-navigation-content.aszf-open .subscription-window-info-block {
	left: -330px;
	transition: 0.3s all ease;
}

.subscription-navigation-content .subscription-label {
	margin-left: 20px;
}

.subscription-navigation-content .subscription-label .subscription-label-title {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: 700;
	font-size: 14px;
	font-family: "U";
	color: #696D85;
}

.subscription-navigation-content .subscription-label.active .subscription-label-title {
	color: #333333;
}

.subscription-navigation-content .subscription-label .subscription-aszf-container {
	opacity: 0;
	margin-top: 22px;
	padding-right: 20px;
}

.subscription-navigation-content .subscription-label .subscription-aszf-container .subscription-aszf-container-inner p {
	margin-bottom: 15px;
	font-size: 14px;
	color: #333333;
	font-family: "A";
	line-height: 19px;
}

.subscription-navigation-content .subscription-label .subscription-aszf-container .subscription-aszf-container-inner p:last-of-type {
	margin-bottom: 0;
}

.subscription-navigation-content .subscription-label-circle {
	border-radius: 50%;
	background-color: #AAADBA;
	color: white;
	padding: 5px;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 25px;
	height: 25px;
	margin-right: 10px;
	justify-content: center;
}

.subscription-navigation-content .subscription-label.active .subscription-label-circle {
	background-color: #3788DB;
}

.subscription-navigation-content .subscription-label.before .subscription-label-row:before {
	content: "";
	height: 22px;
	width: 4px;
	display: block;
	background-color: #AAADBA;
	margin-left: 11px;
}

.subscription-navigation-content .subscription-label.active.before .subscription-label-row:before {
	background-color: #3788DB;
}

.subscription-navigation-content .subscription-label.after .subscription-label-row:after {
	content: "";
	height: 20px;
	width: 4px;
	display: block;
	background-color: #AAADBA;
	margin-left: 11px;
	justify-content: center;
}

.subscription-navigation-content .subscription-label.active.after .subscription-label-row:after {
	background-color: #3788DB;
}

.subscription-navigation-content .subscription-label.select .subscription-label-circle {
	width: 20px;
	height: 20px;
	margin-right: 0;
}

.subscription-navigation-content .subscription-label.select .subscription-label-select {
	border: 1px solid #3788DB;
	padding: 1px;
	border-radius: 50%;
	margin-right: 10px;
}

.subscription-window-info-block {
	width: 300px;
	padding: 10px 5px;
	border-radius: 5px;
	background-color: white;
	position: absolute;
	bottom: 20px;
	left: 0;
}

.subscription-window-info-__title {
	text-align: center;
	font-weight: 700;
	color: #696D85;
	width: 100%;
}

.subscription-window-info-block__content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-evenly;
	margin-top: 10px;
}

.subscription-window-info-content__image {
	width: 55px;
}

.subscription-window-info-content {
	display: flex;
	flex-direction: column;
}

.subscription-window-info-content__title {
	font-weight: 700;
	font-size: 16px;
}

.subscription-window-wrapper .subscription-content {
	width: 680px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 100%;
	padding: 20px 20px 20px 30px;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_title {
	font-family: "A";
	font-size: 20px;
	margin-bottom: 32px;
	color: #333333;
	margin-right: 30px;
	font-weight: 800;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_title .sub-red-star {
	color: #c62135;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_title {
	font-size: 16px;
	color: #333333;
	font-family: "U";
	margin-bottom: 28px;
	font-weight: bold;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_inner ul {
	margin: 0;
	padding: 0;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_inner ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-family: "A";
	margin-bottom: 25px;
	font-size: 16px;
	display: flex;
	align-items: center;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_inner ul li .sub-first-line {
	display: flex;
	flex-direction: column;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_inner ul li .sub-time {
	font-size: 14px;
	font-weight: bold;
	display: block;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_inner ul li .subscription_list-icon {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_inner ul li .subscription_list-icon img {
	width: 34px;
	height: 34px;
}

.subscription-window-wrapper .subscription-content .subscription_container .subscription_container--inner .subscription_content-container .subscription_content .sub-content_body .sub-content_inner ul li:last-of-type {
	margin-bottom: 0;
}

.subscription-window-wrapper .subscription-content .subscription-button-layout {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	flex-grow: 1;
}

.subscription-window-wrapper .subscription-last-page {
	display: flex;
	height: 100%;
}

.subscription-window-wrapper .subscription-last-page .last-page-image {
	width: 50%;
	height: 100%;
	padding-right: 60px;
}

.subscription-window-wrapper .subscription-last-page .last-page-image img {
	width: 100%;
	height: auto;
}

.subscription-window-wrapper .subscription-last-page .last-page-text {
	width: 50%;
	height: 100%;
}

.subscription-window-wrapper .subscription-last-page .last-page-text h3 {
	margin-bottom: 40px;
}

.subscription-window-wrapper .subscription-last-page .last-page-text .last-page-text-container {
	margin-bottom: 30px;
}

.subscription-window-wrapper .subscription-last-page .last-page-text .last-page-text-container p {
	font-family: "A";
	font-size: 16px;
	margin-bottom: 30px;
}

.subscription-window-wrapper .subscription-last-page .last-page-text .last-page-text-container p:last-of-type {
	margin-bottom: 0;
}

.subscription-window-wrapper .subscription-last-page .last-page-text button {
	color: #696D85;
	font-size: 14px;
	background-color: #E9EBEF;
	border-radius: 5px;
	padding: 10px;
	font-weight: 900;
	display: flex;
	justify-content: center;
	align-items: center;
}

.subscription-window-wrapper .subscription-last-page .last-page-text button .icon {
	margin-right: 10px;
}

.subscription-info-block {
	display: flex;
	flex-direction: column;
	background-color: white;
	width: 450px;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 15px;
}

.subscription-info-content {
	padding: 15px 0;
}

.subscription-info-content .v-spacing {
	height: 8px;
}

.v-caption-subscription-info-content {
	font-size: 18px;
	font-weight: 700;
	border-bottom: 1px solid #d8d8d8;
	align-items: center;
	display: flex;
}

.v-caption-subscription-info-content::before {
	margin-right: 15px;
	content: "";
	width: 30px;
	height: 25px;
	display: inline-flex;
	background-size: contain !important;
}

.v-caption-subscription-info-content.v-caption-data1::before {
	background: url(img/icon/subscription/info_data1.svg) no-repeat center;
}

.v-caption-subscription-info-content.v-caption-data2::before {
	background: url(img/icon/subscription/info_data2.svg) no-repeat center;
}

.v-slot-subscription-info-label .v-has-caption {
	display: flex;
	flex-direction: row;
}

.v-slot-subscription-info-label .v-has-caption .v-caption-subscription-info-label {
	font-weight: normal;
}

.v-slot-subscription-info-label .v-has-caption .v-caption-subscription-info-label.v-caption-empty {
	width: 100%;
	white-space: normal;
}

.subscription-info-label {
	margin-left: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: 700;
}

.subscription-info-info {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.subscription-info-info:before {
	margin-right: 15px;
	content: "";
	width: 22px;
	height: 22px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/info.svg) no-repeat center;
}

.v-button-pdf {
	display: flex;
	align-items: center;
}

.v-button-pdf .v-button-caption {
	display: flex;
	align-items: center;
}

.v-button-pdf .v-button-caption:before {
	content: "";
	width: 22px;
	height: 22px;
	display: inline-flex;
	margin-right: 10px;
	background: url(img/icon/pdf.svg) no-repeat center;
}

.subscription-welcome-footer-label {
	width: 375px;
	color: #696D85;
	display: flex;
	flex-direction: row;
}

.subscription-welcome-footer-label .sub-red-star {
	margin-right: 15px;
	font-weight: 700;
	font-size: 16px;
}

.subscription-welcome-button-caption {
	margin-top: 35px;
	width: 225px;
	text-align: center;
	position: absolute;
	right: 10px;
	font-size: 12px;
}

.subscription-calc-info-block {
	background-color: #ebedef;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	padding: 10px 25px 15px;
}

.subscription-calc-info-block__title {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: 33px;
}

.subscription-calc-type-switch input {
	opacity: 0;
	position: absolute;
}

.subscription-calc-type-switch input ~ label:before {
	opacity: 0;
}

.subscription-calc-type-switch input ~ label:after {
	opacity: 0;
}

.subscription-calc-type-switch label {
	background: #d8d8d8;
	display: inline-block;
	position: relative;
	transition: 0.2s ease-out;
	vertical-align: middle;
	width: 232px;
	height: 36px;
}

.subscription-calc-type-switch.monthly label {
	background: url(img/icon/subscription/type_switch_monthly.svg) no-repeat center;
}

.subscription-calc-type-switch.yearly label {
	background: url(img/icon/subscription/type_switch_yearly.svg) no-repeat center;
}

.subscription-content__box__second-column {
	border-left: 1px solid #82828c;
	padding-left: 20px;
}

.subscription-unique-offer-data-title {
	margin-top: 10px;
	color: #696D85;
}

.subscription-window-aszf label {
	width: 630px;
	white-space: normal;
	padding-left: 30px;
}

.subscription-content__info {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
}

.subscription-review-info-block {
	background-color: #ebedef;
	padding: 15px 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
}

.subscription-review-info-block::before {
	margin-bottom: 10px;
	content: "";
	width: 50px;
	height: 50px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/subscription/final_info.svg) no-repeat center;
}

.subscription-review-info-block__type {
	font-size: 20px;
	font-weight: 700;
}

.subscription-review-info-block__full {
	font-size: 14px;
	margin-top: 10px;
	color: #696D85;
}

.subscription-review-info-block__discount {
	font-size: 24px;
	font-weight: 700;
	color: #00B894;
}

.subscription-final-wrapper {
	width: 1000px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 100%;
}

.subscription-final-content {
	display: flex;
	flex-grow: 1;
	flex-direction: row;
	align-items: center;
}

.subscription-final-content::before {
	margin-right: 25px;
	content: "";
	width: 500px;
	height: 500px;
	display: inline-flex;
	background-size: contain !important;
	background: url(img/icon/subscription/trackateam.svg) no-repeat center;
}

.subscription-final-content__header {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.subscription-final-content__content {
	font-size: 16px;
}