/**
 * 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: "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: 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: 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;
}

@font-face {
	font-family: "Lato";
	src: url(../valo/fonts/lato/lato-light-webfont.eot);
	src: url(../valo/fonts/lato/lato-light-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/lato/lato-light-webfont.woff) format("woff"), url(../valo/fonts/lato/lato-light-webfont.ttf) format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Lato";
	src: url(../valo/fonts/lato/lato-regular-webfont.eot);
	src: url(../valo/fonts/lato/lato-regular-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/lato/lato-regular-webfont.woff) format("woff"), url(../valo/fonts/lato/lato-regular-webfont.ttf) format("truetype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Lato";
	src: url(../valo/fonts/lato/lato-bold-webfont.eot);
	src: url(../valo/fonts/lato/lato-bold-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/fonts/lato/lato-bold-webfont.woff) format("woff"), url(../valo/fonts/lato/lato-bold-webfont.ttf) format("truetype");
	font-weight: 700;
	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: 31px;
	}
		3% {
		width: 91%;
		height: 31px;
	}
		100% {
		width: 96%;
		height: 31px;
	}
	}

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

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

@-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: -30px;
	}
	}

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

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

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

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

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -31px;
	}
		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: -30px;
	}
	}

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

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

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

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

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

/**
 *
 * @group table
 */

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

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

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

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

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

@keyframes valo-grid-editor-footer-animate-in-alt {
		0% {
		margin-bottom: -31px;
	}
		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.8.2";
}

.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: 10px;
}

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

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

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

.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;
}

@media screen and (max-width: 1200px) {
	.redesigned-menu .shell-header .v-slot-iconsAndDate {
		float: none;
	}
	.redesigned-menu .shell-header .recently-visited .selected-page {
		max-width: 125px !important;
	}
}

@media screen and (max-height: 600px) {
	.redesigned-menu #ideaslogoicon {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
	.shell-header .v-slot-shellLogo {
		width: unset !important;
	}
	.shell-header .propertyDropDown {
		padding-left: 0 !important;
		width: unset !important;
	}
	.shell-header .v-slot-iconsAndDate {
		width: unset !important;
		float: right;
	}
}

@media screen and (max-width: 1200px) {
	#badDataDetailsRootLayout {
		width: 975px !important;
		grid-template-rows: 0 50px 30px !important;
	}
	#badDataDetailsRootLayout #dataDetailsToolBar {
		justify-self: center !important;
		transform: translate(0px, 0px) !important;
	}
	#badDataDetailsRootLayout #dataDetailsTabSheet {
		width: 975px !important;
	}
}

@media screen and (max-width: 850px) {
	#badDataDetailsRootLayout {
		width: 700px !important;
		grid-template-rows: 0 50px 30px !important;
	}
	#badDataDetailsRootLayout #dataDetailsToolBar {
		justify-self: center !important;
		transform: translate(0px, 0px) !important;
	}
	#badDataDetailsRootLayout #dataDetailsTabSheet {
		width: 700px !important;
	}
}

@media screen and (max-width: 1200px) {
	.highcharts-container.vaadin-chart {
		width: 970px !important;
	}
}

@media screen and (max-width: 850px) {
	.highcharts-container.vaadin-chart {
		width: 700px !important;
	}
}

.badScreenAlignment {
	margin-top: -65px;
}

@media only screen and (max-width: 1200px) {
	#performanceContentLayout {
		grid-template-columns: 950px !important;
	}
	#performanceContentLayout #performanceTopCharts {
		grid-template-columns: 99% !important;
	}
}

@media only screen and (max-width: 800px) {
	#performanceContentLayout {
		grid-template-columns: 700px !important;
	}
	#performanceContentLayout #performanceTopCharts {
		grid-template-columns: 99% !important;
	}
}

.inline-edit-error-message-left {
	padding-top: 15px;
	padding-left: 10px;
	padding-bottom: 10px;
}

.inline-edit-allowed-error-message-left {
	font-size: 20px;
}

.inline-edit-error-message-right {
	padding: 15px;
	font: 400 14px "Open Sans", sans-serif;
}

.inline-edit-error-message-span {
	text-align: center;
	width: inherit;
}

.rounding-rule-error-table {
	border-collapse: collapse;
	text-align: center;
	width: 520px;
	border: solid #d1d1d1 2px;
}

.rounding-rule-error-table td, .rounding-rule-error-table tr {
	border: solid #d1d1d1 2px;
	text-align: center;
	min-width: 43px;
	height: 34px;
}

.inline-editing-cell {
	border: none;
	outline: none;
}

.optimized-inline-editing-cell {
	border-style: solid;
	border-color: black;
	border-width: 1px;
	outline: none;
	font: inherit;
}

.warning-icon-64px.v-icon, .warning-icon-64px .v-icon {
	font-size: 32px;
	color: #FF9900;
}

.red-warning-icon-32px.v-icon, .red-warning-icon-32px .v-icon {
	font-size: 32px !important;
	color: #CC0000;
}

.inline-edit-allowed-error-messages-container {
	display: grid;
	padding: 10px;
}

.inline-edit-allowed-error-messages-top {
	display: inline-flex;
}

.inline-edit-not-allowed-error-messages-top {
	display: inline-flex;
}

.inline-edit-allowed-message-continue {
	width: 100%;
	text-align: center;
}

.inline-edit-continue-button {
	color: white;
	background: #0099CC;
	text-align: center;
	font: 400 14px "Open Sans", sans-serif;
	padding: 8px;
	border: 1px solid #d1d1d1;
}

.inline-edit-clear-button {
	background: #e4e4e4;
	text-align: center;
	font: 400 14px "Open Sans", sans-serif;
	padding: 8px;
	border: 1px solid #d1d1d1;
	margin-left: 10px;
}

.inline-edit-allowed-error-message-icon {
	color: #999999;
	padding-top: 15px;
	padding-left: 10px;
	font-size: 20px;
}

.inline-edit-tool-tip {
	position: fixed;
	background-color: #fff;
	color: #333;
	z-index: 5000;
	white-space: pre-line;
	padding: 5px;
	box-shadow: 0 2px 6px 0;
}

.red-warning-border {
	border: 1px solid red;
	padding: 5px;
}

.single-day-warning-icon {
	margin-right: 5px !important;
}

.red-warning-text {
	color: red;
}

@media only screen and (max-width: 800px) {
	.v-window.v-widget.tetris-window.v-window-tetris-window {
		width: 500px;
	}
	.v-window.v-widget.tetris-window.v-window-tetris-window #agileRatesOverridePopupLayout {
		grid-template-rows: 30px 130px 1px auto !important;
	}
	.v-window.v-widget.tetris-window.v-window-tetris-window #agileRatesOverridePopupTabSheet, .v-window.v-widget.tetris-window.v-window-tetris-window .v-tabsheet-content, .v-window.v-widget.tetris-window.v-window-tetris-window .v-tabsheet-tabsheetpanel, .v-window.v-widget.tetris-window.v-window-tetris-window .v-scrollable {
		width: 100%;
	}
}

@media screen and (max-width: 1200px) {
	#demandAndWashCalendarLayouts {
		display: grid;
		grid-template-columns: 950px !important;
	}
}

@media screen and (max-width: 950px) {
	#demandAndWashCalendarLayouts {
		display: grid;
		grid-template-columns: 700px !important;
	}
}

@media screen and (max-width: 1200px) {
	#calendarViewId {
		grid-template-columns: 900px !important;
	}
	#calendarViewId tbody {
		width: 900px !important;
	}
}

@media screen and (max-width: 850px) {
	#calendarViewId {
		grid-template-columns: 666px !important;
	}
	#calendarViewId tbody {
		width: 666px !important;
	}
	#revParOccupancyCharts {
		grid-template-columns: 666px !important;
		grid-row-gap: 10px;
	}
}

@media screen and (max-width: 1200px) {
	#pricingManagementCalendarsLayout {
		grid-template-columns: 950px !important;
	}
}

@media screen and (max-width: 950px) {
	#pricingManagementCalendarsLayout {
		grid-template-columns: 700px !important;
	}
}

@media only screen and (max-width: 800px) {
	#jobFilterPopupView {
		height: 400px !important;
	}
	#jobFilterPopupLayout {
		width: 300px !important;
	}
	#jobFilterPopupLayout #jobFilterFirstRowLayout {
		grid-template-columns: 300px !important;
	}
	#jobFilterPopupLayout #jobFilterFirstRowLayout #clientComboBox {
		grid-row-start: 2;
	}
	#jobFilterPopupLayout #jobFilterSecondRowLayout {
		grid-template-columns: 300px !important;
		grid-column-gap: 5px;
	}
	#jobFilterPopupLayout #jobFilterSecondRowLayout #statusListSelect {
		grid-row-start: 2;
	}
	#jobFilterPopupLayout #jobFilterSecondRowLayout #stageListSelect {
		grid-row-start: 4;
	}
	#jobFilterPopupLayout #jobFilterThirdRowLayout {
		grid-template-columns: 210px !important;
	}
	#jobFilterPopupLayout #jobFilterThirdRowLayout #startDateField {
		grid-row-start: 2;
	}
	#jobFilterPopupLayout #jobFilterFourthRowLayout {
		grid-template-columns: 150px !important;
	}
	#jobFilterPopupLayout #jobFilterFourthRowLayout #nodeField {
		grid-row-start: 2 !important;
	}
	#jobFilterPopupLayout #jobFilterFourthRowLayout #sasServerName {
		grid-row-start: 4 !important;
	}
	#jobFilterPopupLayout #jobFilterFourthRowLayout #classifierField {
		grid-row-start: 6 !important;
	}
	#problemMonitorFilterPopup {
		height: 400px !important;
	}
	#problemFilterPopupLayout {
		width: 300px !important;
	}
	#problemFilterPopupLayout #problemFilterFirstRowLayout {
		grid-template-columns: 300px !important;
	}
	#problemFilterPopupLayout #problemFilterSecondRowLayout {
		grid-template-columns: 300px !important;
	}
	#problemFilterPopupLayout #problemFilterSecondRowLayout #problemClaimLayout {
		display: grid;
	}
	#problemFilterPopupLayout #problemFilterSecondRowLayout #ownerListLayout {
		grid-template-columns: 200px;
	}
	#problemFilterPopupLayout #problemFilterSecondRowLayout #emailFilterLayout {
		display: grid;
	}
	#problemFilterPopupLayout #problemFilterThirdRowLayout #problemBetweenLayout {
		grid-template-columns: 250px !important;
		grid-row-gap: 5px;
	}
	#problemFilterPopupLayout #problemFilterThirdRowLayout #problemOpenLayout {
		grid-template-columns: 200px !important;
		grid-row-gap: 5px;
	}
}

@media screen and (max-width: 1200px) {
	#overbookingCalendarLayouts {
		display: grid;
		grid-template-columns: 950px !important;
	}
}

@media screen and (max-width: 950px) {
	#overbookingCalendarLayouts {
		display: grid;
		grid-template-columns: 700px !important;
	}
}

@keyframes cell-highlight {
		0% {
		outline-color: transparent;
	}
		20% {
		outline-color: #38AEF7;
	}
		100% {
		outline-color: transparent;
	}
	}

@-moz-keyframes cell-highlight {
		0% {
		outline-color: transparent;
	}
		20% {
		outline-color: #38AEF7;
	}
		100% {
		outline-color: transparent;
	}
	}

@-webkit-keyframes cell-highlight {
		0% {
		outline-color: transparent;
	}
		20% {
		outline-color: #38AEF7;
	}
		100% {
		outline-color: transparent;
	}
	}

.tetris-valo.v-app, .tetris-valo.v-app-loading {
	font: 300 14px/1.55 "Open Sans", "Lato", sans-serif;
	color: black;
	background-color: #ffffff;
	cursor: default;
}

.tetris-valo .v-app-loading {
	width: 100%;
	height: 100%;
	background: #ffffff;
}

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

.tetris-valo .v-loading-indicator {
	position: fixed !important;
	z-index: 99999;
	left: 0;
	right: auto;
	top: 0;
	width: 50%;
	opacity: 1;
	height: 31px;
	background-color: rgba(45, 127, 255, 0.8);
	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;
}

.tetris-valo .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;
}

.tetris-valo .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 .tetris-valo .v-loading-indicator-delay {
	width: 50%;
}

.tetris-valo .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 .tetris-valo .v-loading-indicator-wait {
	width: 90%;
}

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

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

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

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

.tetris-valo .v-icon + .v-captiontext, .tetris-valo .v-icon + span {
	margin-left: 6px;
}

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

.tetris-valo .v-errorindicator {
	color: #d94560;
	font-weight: 600;
	width: 15px;
	text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tetris-valo select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 4px;
	margin: 0;
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	color: #474747;
}

.tetris-valo select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

.tetris-valo .v-drag-element {
	background: #ffffff;
	color: #474747;
	-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: 0px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

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

.tetris-valo .v-tooltip {
	background-color: #ffffff;
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	
	padding: 4px 8px;
	border-radius: -1px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

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

.tetris-valo .v-tooltip .v-errormessage {
	background-color: white;
	background-color: #fff;
	color: #d94560;
	margin: -4px -8px;
	padding: 4px 8px;
	max-height: 10em;
	overflow: auto;
	font-weight: 400;
}

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

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

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

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

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

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

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

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

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

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

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

.tetris-valo .v-contextmenu {
	padding: 3px 3px;
	border-radius: 0px;
	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.09);
	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.09);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 3px 3px;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

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

.tetris-valo .v-contextmenu .gwt-MenuItem {
	cursor: pointer;
	line-height: 22px;
	padding: 0 16px 0 8px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	display: block;
}

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

.tetris-valo .v-contextmenu .gwt-MenuItem .v-icon {
	max-height: 22px;
	margin-right: 4px;
	min-width: 1em;
}

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

.tetris-valo .v-reconnect-dialog {
	color: white;
	top: 10px;
	right: 10px;
	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: 10px 12px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	line-height: 20px;
	text-align: center;
}

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

.tetris-valo .v-reconnect-dialog .spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(133, 133, 133, 0.2);
	border-top-color: #858585;
	border-right-color: #858585;
	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;
}

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

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

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

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

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

.tetris-valo .v-margin-top {
	padding-top: 30px;
}

.tetris-valo .v-margin-right {
	padding-right: 30px;
}

.tetris-valo .v-margin-bottom {
	padding-bottom: 30px;
}

.tetris-valo .v-margin-left {
	padding-left: 30px;
}

.tetris-valo .v-spacing {
	width: 10px;
	height: 10px;
}

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

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

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

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

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

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

.tetris-valo .v-verticallayout-card, .tetris-valo .v-horizontallayout-card {
	background: white;
	color: #474747;
	border-radius: 0px;
	border: 1px solid #dedede;
	
	
}

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

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

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

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

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

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

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

.tetris-valo .v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
}

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

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

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

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

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

.tetris-valo .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;
}

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

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

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

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

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

.tetris-valo .v-button:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

.tetris-valo .v-button-primary {
	height: 30px;
	padding: 0 12px;
	color: #e6f2f8;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #00699a;
	border-top-color: #00699a;
	border-bottom-color: #00699a;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	
	
	padding: 0 15px;
	font-weight: bold;
	min-width: 66px;
}

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

.tetris-valo .v-button-primary:hover:after {
	background-color: rgba(10, 177, 255, 0.1);
}

.tetris-valo .v-button-primary:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-button-primary:active:after {
	background-color: rgba(0, 64, 94, 0.2);
}

.tetris-valo .v-button-friendly {
	height: 30px;
	padding: 0 12px;
	color: #071008;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #1aa125;
	border-top-color: #1aa125;
	border-bottom-color: #1aa125;
	background-color: #20c52e;
	background-image: -webkit-linear-gradient(top, #20c52e 0%, #20c52e 100%);
	background-image: linear-gradient(to bottom,#20c52e 0%, #20c52e 100%);
	
	
}

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

.tetris-valo .v-button-friendly:hover:after {
	background-color: rgba(14, 88, 20, 0.1);
}

.tetris-valo .v-button-friendly:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-button-friendly:active:after {
	background-color: rgba(4, 110, 13, 0.2);
}

.tetris-valo .v-button-danger {
	height: 30px;
	padding: 0 12px;
	color: #f8f0f1;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #b1384e;
	border-top-color: #b1384e;
	border-bottom-color: #b1384e;
	background-color: #d94560;
	background-image: -webkit-linear-gradient(top, #d94560 0%, #d94560 100%);
	background-image: linear-gradient(to bottom,#d94560 0%, #d94560 100%);
	
	
}

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

.tetris-valo .v-button-danger:hover:after {
	background-color: rgba(230, 132, 150, 0.1);
}

.tetris-valo .v-button-danger:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-button-danger:active:after {
	background-color: rgba(135, 8, 31, 0.2);
}

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

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

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

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

.tetris-valo .v-button-borderless-colored {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: #0081bd;
}

.tetris-valo .v-button-borderless-colored:hover {
	color: #00a4f0;
}

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

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

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

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

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

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

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

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

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

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

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

.tetris-valo .v-button-link:hover {
	color: #0080ff;
}

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

.tetris-valo .v-button-tiny {
	height: 23px;
	padding: 0 10px;
	
	
	font-size: 11px;
	
	border-radius: 0px;
}

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

.tetris-valo .v-button-small {
	height: 26px;
	padding: 0 11px;
	
	
	font-size: 12px;
	
	border-radius: 0px;
}

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

.tetris-valo .v-button-large {
	height: 36px;
	padding: 0 15px;
	
	
	font-size: 17px;
	
	border-radius: 0px;
}

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

.tetris-valo .v-button-huge {
	height: 48px;
	padding: 0 20px;
	
	
	font-size: 23px;
	
	border-radius: 0px;
}

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

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

.tetris-valo .v-button-icon-align-right .v-icon {
	float: right;
	margin-left: 11px;
}

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

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

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

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

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

.tetris-valo .v-button-icon-only {
	width: 30px;
	padding: 0;
}

.tetris-valo .v-button-icon-only.v-button-tiny {
	width: 23px;
}

.tetris-valo .v-button-icon-only.v-button-small {
	width: 26px;
}

.tetris-valo .v-button-icon-only.v-button-large {
	width: 36px;
}

.tetris-valo .v-button-icon-only.v-button-huge {
	width: 48px;
}

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

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

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

:root .tetris-valo .v-checkbox {
	padding-left: 20px;
}

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

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

:root .tetris-valo .v-checkbox > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

:root .tetris-valo .v-checkbox > input ~ label:before {
	height: 15px;
	padding: 0 6px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 15px;
}

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

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

:root .tetris-valo .v-checkbox > input:checked ~ label:after {
	color: #0081bd;
}

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

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

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

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

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

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

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

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

.tetris-valo .v-checkbox-small {
	position: relative;
	line-height: 13px;
	white-space: nowrap;
	font-size: 12px;
}

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

:root .tetris-valo .v-checkbox-small {
	padding-left: 17px;
}

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

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

:root .tetris-valo .v-checkbox-small > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

:root .tetris-valo .v-checkbox-small > input ~ label:before {
	height: 13px;
	padding: 0 5px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 13px;
}

:root .tetris-valo .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 .tetris-valo .v-checkbox-small > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .tetris-valo .v-checkbox-small > input:checked ~ label:after {
	color: #0081bd;
}

.tetris-valo .v-checkbox-small > .v-icon, .tetris-valo .v-checkbox-small > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

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

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

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

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

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

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

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

.tetris-valo .v-checkbox-large {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
	font-size: 17px;
}

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

:root .tetris-valo .v-checkbox-large {
	padding-left: 24px;
}

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

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

:root .tetris-valo .v-checkbox-large > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

:root .tetris-valo .v-checkbox-large > input ~ label:before {
	height: 18px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 18px;
}

:root .tetris-valo .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 .tetris-valo .v-checkbox-large > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .tetris-valo .v-checkbox-large > input:checked ~ label:after {
	color: #0081bd;
}

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

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

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

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

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

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

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

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

.tetris-valo .v-filterselect {
	position: relative;
	width: 150px;
	height: 30px;
	border-radius: 0px;
	white-space: nowrap;
}

.tetris-valo .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: 30px;
	border-radius: 0px;
	padding: 3px 5px;
	border: 1px solid #d1d1d1;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-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: 31px;
	border-radius: inherit;
}

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

.tetris-valo .v-filterselect [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

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

.tetris-valo .v-filterselect img.v-icon {
	max-height: 30px;
	margin-left: 5px;
}

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

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

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

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

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

.tetris-valo .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);
}

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

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

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

.tetris-valo .v-filterselect.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

.tetris-valo .v-filterselect-error .v-filterselect-input {
	border-color: #d94560 !important;
	background: #fefbfc;
	color: #652934;
}

.tetris-valo .v-filterselect-error .v-filterselect-button {
	color: #d94560;
	border-color: #d94560;
}

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

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

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

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

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

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

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

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

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

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

.tetris-valo .v-filterselect-suggestpopup {
	margin-top: 4px !important;
}

.tetris-valo .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;
}

.tetris-valo .v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 3px 3px;
	border-radius: 0px;
	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.09);
	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.09);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 3px 3px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

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

.tetris-valo .v-filterselect-suggestpopup .gwt-MenuItem {
	cursor: pointer;
	line-height: 22px;
	padding: 0 16px 0 8px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	height: 22px;
	box-sizing: border-box;
	text-overflow: ellipsis;
	overflow-x: hidden;
}

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

.tetris-valo .v-filterselect-suggestpopup .gwt-MenuItem .v-icon {
	max-height: 22px;
	margin-right: 4px;
	min-width: 1em;
}

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

.tetris-valo .v-filterselect-suggestpopup [class$="status"] {
	position: absolute;
	right: 0px;
	background: rgba(217, 217, 217, 0.9);
	color: #3d3d3d;
	border-radius: 0 0 0px 0px;
	height: 18px;
	bottom: -18px;
	font-size: 11px;
	line-height: 18px;
	padding: 0 5px;
	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;
}

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

.tetris-valo .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: 20px;
	height: 20px;
	line-height: 20px;
	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;
}

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

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

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

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

.tetris-valo .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);
}

.tetris-valo .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 0px 0 0px;
}

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

.tetris-valo .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: 0px 0 0px 0;
}

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

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

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

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

.tetris-valo .v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

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

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

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

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

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

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

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

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

.tetris-valo .v-filterselect-tiny {
	height: 23px;
	
	font-size: 11px;
}

.tetris-valo .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: 23px;
	
	padding: 3px 4px;
	
	
	-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: 24px;
	border-radius: inherit;
}

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

.tetris-valo .v-filterselect-tiny img.v-icon {
	max-height: 23px;
	margin-left: 4px;
}

.tetris-valo .v-filterselect-tiny span.v-icon {
	
	width: 23px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 4px;
}

.tetris-valo .v-filterselect-tiny [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 23px;
}

.tetris-valo .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: 23px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

.tetris-valo .v-filterselect-tiny.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

.tetris-valo .v-filterselect-compact, .tetris-valo .v-filterselect-small {
	height: 26px;
	
}

.tetris-valo .v-filterselect-compact [class*="input"], .tetris-valo .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: 26px;
	
	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: 27px;
	border-radius: inherit;
}

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

.tetris-valo .v-filterselect-compact img.v-icon, .tetris-valo .v-filterselect-small img.v-icon {
	max-height: 26px;
	margin-left: 5px;
}

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

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

.tetris-valo .v-filterselect-compact [class$="button"]:before, .tetris-valo .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: 26px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

.tetris-valo .v-filterselect-compact.v-readonly [class*="input"], .tetris-valo .v-filterselect-small.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

.tetris-valo .v-filterselect-small {
	font-size: 12px;
}

.tetris-valo .v-filterselect-large {
	height: 36px;
	
	font-size: 17px;
}

.tetris-valo .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: 36px;
	
	padding: 4px 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: 37px;
	border-radius: inherit;
}

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

.tetris-valo .v-filterselect-large img.v-icon {
	max-height: 36px;
	margin-left: 6px;
}

.tetris-valo .v-filterselect-large span.v-icon {
	
	width: 36px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 6px;
}

.tetris-valo .v-filterselect-large [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 36px;
}

.tetris-valo .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: 36px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

.tetris-valo .v-filterselect-large.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

.tetris-valo .v-filterselect-huge {
	height: 48px;
	
	font-size: 23px;
}

.tetris-valo .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: 48px;
	
	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: 49px;
	border-radius: inherit;
}

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

.tetris-valo .v-filterselect-huge img.v-icon {
	max-height: 48px;
	margin-left: 8px;
}

.tetris-valo .v-filterselect-huge span.v-icon {
	
	width: 48px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 8px;
}

.tetris-valo .v-filterselect-huge [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 48px;
}

.tetris-valo .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: 48px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

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

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

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

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

.tetris-valo .v-filterselect-huge.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

.tetris-valo .v-csslayout-well  > .v-margin-top {
	padding-top: 10px;
}

.tetris-valo .v-csslayout-well  > .v-margin-right {
	padding-right: 10px;
}

.tetris-valo .v-csslayout-well  > .v-margin-bottom {
	padding-bottom: 10px;
}

.tetris-valo .v-csslayout-well  > .v-margin-left {
	padding-left: 10px;
}

.tetris-valo .v-csslayout-card {
	background: white;
	color: #474747;
	border-radius: 0px;
	border: 1px solid #dedede;
	
	
}

.tetris-valo .v-csslayout-card  > .v-margin-top {
	padding-top: 10px;
}

.tetris-valo .v-csslayout-card  > .v-margin-right {
	padding-right: 10px;
}

.tetris-valo .v-csslayout-card  > .v-margin-bottom {
	padding-bottom: 10px;
}

.tetris-valo .v-csslayout-card  > .v-margin-left {
	padding-left: 10px;
}

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

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

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

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

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

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

.tetris-valo [class*="spacing"] > tbody > [class*="row"] > td {
	padding-top: 10px;
}

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

.tetris-valo [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 30px;
}

.tetris-valo [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 30px;
}

.tetris-valo [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 30px;
}

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

.tetris-valo [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 30px;
}

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

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

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

.tetris-valo .v-formlayout-error-indicator {
	width: 15px;
}

.tetris-valo .v-formlayout-captioncell {
	vertical-align: top;
	line-height: 29px;
}

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

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

.tetris-valo .v-formlayout-contentcell .v-checkbox, .tetris-valo .v-formlayout-contentcell .v-radiobutton {
	font-weight: 400;
}

.tetris-valo .v-formlayout-contentcell  > .v-label-h2, .tetris-valo .v-formlayout-contentcell  > .v-label-h3, .tetris-valo .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 #e8e8e8;
}

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

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

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

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

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

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

.tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .tetris-valo .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: 30px;
	border-radius: 0;
	padding: 3px 5px;
	
	-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;
}

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

.tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .tetris-valo .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), none;
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), none;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

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

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

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

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

.tetris-valo .v-formlayout.light .v-richtextarea {
	margin: 4px 0;
}

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

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

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

.tetris-valo .v-formlayout.light .v-checkbox {
	margin-left: 5px;
}

.tetris-valo .v-grid {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tetris-valo .v-grid {
	outline: none;
}

.tetris-valo .v-grid-scroller-vertical, .tetris-valo .v-grid-scroller-horizontal {
	border: 1px solid #dadada;
}

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

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

.tetris-valo .v-grid-tablewrapper {
	border: 1px solid #dadada;
}

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

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

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

.tetris-valo .v-grid .header-drag-table .v-grid-header  > .v-grid-drop-marker {
	background-color: #0081bd;
	position: absolute;
	width: 3px;
}

.tetris-valo .v-grid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #E4E4E4;
	border: 1px solid #dadada;
	padding: 0;
	z-index: 5;
}

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

.tetris-valo .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;
}

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

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

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

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

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

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

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

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

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

.tetris-valo .v-grid-cell {
	background-color: white;
	padding: 0 15px;
	line-height: 30px;
	text-overflow: ellipsis;
}

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

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

.tetris-valo .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 #dadada;
}

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

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

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

.tetris-valo .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 #dadada;
	border-left: none;
}

.tetris-valo .v-grid-row-stripe > td {
	background-color: #ffffff;
}

.tetris-valo .v-grid-row-selected > td {
	background: #0081bd;
}

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

.tetris-valo .v-grid-header th {
	position: relative;
	background-color: #E4E4E4;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	
	text-align: left;
}

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

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

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

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

.tetris-valo .v-grid-column-resize-handle {
	position: absolute;
	width: 30px;
	right: -15px;
	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;
}

.tetris-valo .v-grid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 15px;
	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;
}

.tetris-valo .v-grid-footer td {
	background-color: #E4E4E4;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #dadada;
	border-top: 1px solid #dadada;
	border-bottom: none;
	
}

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

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

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

.tetris-valo .v-grid-header-deco {
	border-top: 1px solid #dadada;
	border-right: 1px solid #dadada;
	background-color: #E4E4E4;
}

.tetris-valo .v-grid-footer-deco {
	border-bottom: 1px solid #dadada;
	border-right: 1px solid #dadada;
	background-color: #E4E4E4;
}

.tetris-valo .v-grid-horizontal-scrollbar-deco {
	background-color: #E4E4E4;
	border: 1px solid #dadada;
	border-top: none;
}

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

.tetris-valo .v-grid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0081bd;
	display: none;
	pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tetris-valo .v-grid-editor-cells  > div input[type="checkbox"] {
	margin-left: 15px;
}

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

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

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

.tetris-valo .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;
}

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

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

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

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

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

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

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

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

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

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

.tetris-valo .v-grid-spacer.stripe > td {
	background-color: #ffffff;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #dadada;
}

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

.tetris-valo .v-grid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #0081bd;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.tetris-valo .v-grid-cell > .v-progressbar {
	width: 100%;
}

.tetris-valo .v-grid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #ffffff;
}

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

.tetris-valo .v-grid-header .v-grid-cell {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tetris-valo .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;
}

.tetris-valo .v-grid-header .v-grid-cell.dragged-column-header {
	margin-top: -15px;
}

.tetris-valo .v-grid-footer .v-grid-cell {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tetris-valo .v-grid-header-deco {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-grid-footer-deco, .tetris-valo .v-grid-horizontal-scrollbar-deco {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-grid-row-selected  > .v-grid-cell {
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	color: #b5ddef;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #06638e;
}

.tetris-valo .v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: #24baff;
}

.tetris-valo .v-grid-editor {
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	border-color: #858585;
}

.tetris-valo .v-grid-editor-footer {
	font-size: 12px;
	padding: 0 5px;
	background: #ffffff;
	-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;
}

.tetris-valo .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;
}

.tetris-valo .v-grid-editor-cells {
	z-index: 1;
}

.tetris-valo .v-grid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

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

.tetris-valo .v-grid-editor-cells > div .error::before {
	border-top: 8px solid #d94560;
	border-right: 8px solid transparent;
}

.tetris-valo .v-grid-editor-cells > div .error, .tetris-valo .v-grid-editor-cells > div .error > input {
	background-color: #fefbfc;
}

.tetris-valo .v-grid-editor-cells > div .v-textfield, .tetris-valo .v-grid-editor-cells > div .v-textfield-focus, .tetris-valo .v-grid-editor-cells > div .v-datefield, .tetris-valo .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .tetris-valo .v-grid-editor-cells > div .v-filterselect-input, .tetris-valo .v-grid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-grid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 36px;
}

.tetris-valo .v-grid-editor-cells > div .v-textfield-focus, .tetris-valo .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .tetris-valo .v-grid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.tetris-valo .v-grid-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.tetris-valo .v-grid-editor-cells > div .v-checkbox {
	margin: 0 8px 0 15px;
}

.tetris-valo .v-grid-editor-cells > div .v-checkbox  > input[type="checkbox"] {
	margin-left: 0;
}

.tetris-valo .v-grid-editor-cells > div .v-checkbox  > label {
	white-space: nowrap;
}

.tetris-valo .v-grid-editor-message > div:before {
	display: inline-block;
	color: #d94560;
	font-weight: 600;
	width: 15px;
	text-align: center;
	content: "!";
}

.tetris-valo .v-grid-editor-save, .tetris-valo .v-grid-editor-cancel {
	cursor: pointer;
	color: #0066cc;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 5px;
	margin: 0;
	outline: none;
}

.tetris-valo .v-grid-editor-save:hover, .tetris-valo .v-grid-editor-cancel:hover {
	color: #0080ff;
}

.tetris-valo .v-grid-editor-save.v-disabled, .tetris-valo .v-grid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-grid-spacer {
	margin-top: -1px;
}

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

.tetris-valo .v-grid-sidebar.v-contextmenu.closed {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-grid-scroller::-webkit-scrollbar {
	border: none;
}

.tetris-valo .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;
}

.tetris-valo .v-grid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.tetris-valo .v-grid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.tetris-valo .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;
}

.tetris-valo .v-grid-row-drag-top, .tetris-valo .v-grid-row-drag-bottom {
	z-index: 100;
}

.tetris-valo .v-grid-row-drag-top:before, .tetris-valo .v-grid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #858585;
	pointer-events: none;
	border: none;
}

.tetris-valo .v-grid-row-drag-bottom:after {
	bottom: -1px;
}

.tetris-valo .v-grid-row-drag-top:before {
	top: -1px;
}

.tetris-valo .v-grid-row-drag-top:first-child:before {
	top: 0;
}

.tetris-valo .v-grid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #858585;
	pointer-events: none;
}

.tetris-valo .v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: #6b6b6b;
}

.tetris-valo .v-grid-row-selected.v-grid-row-drag-top:before, .tetris-valo .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: #6b6b6b;
}

.tetris-valo .v-grid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #858585;
	z-index: 100;
}

.tetris-valo .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: 30px;
	border-radius: 0px;
	padding: 3px 5px;
	border: 1px solid #d1d1d1;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 150px;
}

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

.tetris-valo .v-textfield:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-textfield[class*="prompt"] {
	color: #a3a3a3;
}

.tetris-valo .v-textfield-readonly {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-textfield-readonly:focus {
	box-shadow: none;
	border-color: #cdcdcd;
}

.tetris-valo .v-textfield-error {
	border-color: #d94560 !important;
	background: #fefbfc;
	color: #652934;
}

.tetris-valo .v-textfield-error-info {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.tetris-valo .v-textfield-error-warning {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.tetris-valo .v-textfield-error-error {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.tetris-valo .v-textfield-error-critical {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.tetris-valo .v-textfield-error-system {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.tetris-valo .v-textfield-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.tetris-valo .v-textfield-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

.tetris-valo .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: 23px;
	border-radius: 0px;
	padding: 3px 4px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 11px;
}

.tetris-valo .v-textfield-compact, .tetris-valo .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: 26px;
	border-radius: 0px;
	padding: 3px 5px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.tetris-valo .v-textfield-small {
	font-size: 12px;
}

.tetris-valo .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: 36px;
	border-radius: 0px;
	padding: 4px 6px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 17px;
}

.tetris-valo .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: 48px;
	border-radius: 0px;
	padding: 5px 8px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 23px;
}

.tetris-valo .v-slot-inline-icon {
	position: relative;
}

.tetris-valo .v-caption-inline-icon {
	padding: 0;
}

.tetris-valo .v-caption-inline-icon .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	margin: 0;
}

.tetris-valo .v-caption-inline-icon .v-icon {
	position: absolute;
	z-index: 10;
}

.tetris-valo .v-caption-inline-icon span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 30px;
	line-height: 28px;
	text-align: center;
	font-size: 14px;
}

.tetris-valo .v-caption-inline-icon img.v-icon {
	left: 7px;
	bottom: 7px;
}

.tetris-valo .v-textfield-inline-icon  {
	padding-left: 30px;
}

.tetris-valo .v-slot-inline-icon.v-slot-tiny {
	position: relative;
}

.tetris-valo .v-caption-inline-icon.v-caption-tiny {
	padding: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-tiny .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	margin: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-tiny .v-icon {
	position: absolute;
	z-index: 10;
}

.tetris-valo .v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 23px;
	line-height: 21px;
	text-align: center;
	font-size: 11px;
}

.tetris-valo .v-caption-inline-icon.v-caption-tiny img.v-icon {
	left: 4px;
	bottom: 4px;
}

.tetris-valo .v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 23px;
}

.tetris-valo .v-slot-inline-icon.v-slot-compact {
	position: relative;
}

.tetris-valo .v-caption-inline-icon.v-caption-compact {
	padding: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-compact .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	margin: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-compact .v-icon {
	position: absolute;
	z-index: 10;
}

.tetris-valo .v-caption-inline-icon.v-caption-compact span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 26px;
	line-height: 24px;
	text-align: center;
	font-size: 14px;
}

.tetris-valo .v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 5px;
	bottom: 5px;
}

.tetris-valo .v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 26px;
}

.tetris-valo .v-slot-inline-icon.v-slot-small {
	position: relative;
}

.tetris-valo .v-caption-inline-icon.v-caption-small {
	padding: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-small .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	margin: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-small .v-icon {
	position: absolute;
	z-index: 10;
}

.tetris-valo .v-caption-inline-icon.v-caption-small span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 26px;
	line-height: 24px;
	text-align: center;
	font-size: 12px;
}

.tetris-valo .v-caption-inline-icon.v-caption-small img.v-icon {
	left: 5px;
	bottom: 5px;
}

.tetris-valo .v-textfield-inline-icon.v-textfield-small  {
	padding-left: 26px;
}

.tetris-valo .v-slot-inline-icon.v-slot-large {
	position: relative;
}

.tetris-valo .v-caption-inline-icon.v-caption-large {
	padding: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-large .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	margin: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-large .v-icon {
	position: absolute;
	z-index: 10;
}

.tetris-valo .v-caption-inline-icon.v-caption-large span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 36px;
	line-height: 34px;
	text-align: center;
	font-size: 17px;
}

.tetris-valo .v-caption-inline-icon.v-caption-large img.v-icon {
	left: 10px;
	bottom: 10px;
}

.tetris-valo .v-textfield-inline-icon.v-textfield-large  {
	padding-left: 36px;
}

.tetris-valo .v-slot-inline-icon.v-slot-huge {
	position: relative;
}

.tetris-valo .v-caption-inline-icon.v-caption-huge {
	padding: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-huge .v-captiontext {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	margin: 0;
}

.tetris-valo .v-caption-inline-icon.v-caption-huge .v-icon {
	position: absolute;
	z-index: 10;
}

.tetris-valo .v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 48px;
	line-height: 46px;
	text-align: center;
	font-size: 23px;
}

.tetris-valo .v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 16px;
	bottom: 16px;
}

.tetris-valo .v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 48px;
}

.tetris-valo .v-textfield-align-right {
	text-align: right;
}

.tetris-valo .v-textfield-align-center {
	text-align: center;
}

.tetris-valo .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: 30px;
	border-radius: 0px;
	padding: 5px;
	border: 1px solid #d1d1d1;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-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: 150px;
}

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

.tetris-valo .v-textarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-textarea[class*="prompt"] {
	color: #a3a3a3;
}

.tetris-valo .v-textarea-readonly {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-textarea-readonly:focus {
	box-shadow: none;
	border-color: #cdcdcd;
}

.tetris-valo .v-textarea-error {
	border-color: #d94560 !important;
	background: #fefbfc;
	color: #652934;
}

.tetris-valo .v-textarea-borderless {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.tetris-valo .v-textarea-borderless:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

.tetris-valo .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: 23px;
	border-radius: 0px;
	padding: 5px;
	
	
	
	-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: 11px;
}

.tetris-valo .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: 26px;
	border-radius: 0px;
	padding: 5px;
	
	
	
	-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;
}

.tetris-valo .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: 36px;
	border-radius: 0px;
	padding: 5px;
	
	
	
	-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: 17px;
}

.tetris-valo .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: 48px;
	border-radius: 0px;
	padding: 5px;
	
	
	
	-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: 23px;
}

.tetris-valo .v-textarea-align-right {
	text-align: right;
}

.tetris-valo .v-textarea-align-center {
	text-align: center;
}

.tetris-valo .v-datefield {
	position: relative;
	width: 150px;
	height: 30px;
	border-radius: 0px;
}

.tetris-valo .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: 30px;
	border-radius: 0px;
	padding: 3px 5px;
	border: 1px solid #d1d1d1;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 36px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.tetris-valo .v-datefield [class*="textfield"].v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-datefield [class*="textfield"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5), 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-datefield [class*="textfield"][class*="prompt"] {
	color: #a3a3a3;
}

.tetris-valo .v-datefield[class*="prompt"] > [class*="textfield"] {
	color: #a3a3a3;
}

.tetris-valo .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: 30px;
	line-height: 28px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	top: 1px;
	bottom: 1px;
	left: 1px;
	border: none;
	border-right: 1px solid #e8e8e8;
	color: #a3a3a3;
}

.tetris-valo .v-datefield [class*="button"]:hover {
	color: #474747;
}

.tetris-valo .v-datefield [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.tetris-valo .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;
}

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

.tetris-valo .v-datefield.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield.v-disabled [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-datefield.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #cdcdcd;
}

.tetris-valo .v-datefield.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield.v-readonly [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-error .v-datefield-textfield {
	border-color: #d94560 !important;
	background: #fefbfc;
	color: #652934;
}

.tetris-valo .v-datefield-error .v-datefield-button {
	color: #d94560;
	border-color: #d94560;
}

.tetris-valo .v-datefield-error-info .v-datefield-textfield {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.tetris-valo .v-datefield-error-info .v-datefield-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.tetris-valo .v-datefield-error-warning .v-datefield-textfield {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.tetris-valo .v-datefield-error-warning .v-datefield-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.tetris-valo .v-datefield-error-error .v-datefield-textfield {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.tetris-valo .v-datefield-error-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

.tetris-valo .v-datefield-error-critical .v-datefield-textfield {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.tetris-valo .v-datefield-error-critical .v-datefield-button {
	color: #fa007d;
	border-color: #fa007d;
}

.tetris-valo .v-datefield-error-system .v-datefield-textfield {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.tetris-valo .v-datefield-error-system .v-datefield-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.tetris-valo .v-datefield-full {
	width: 210px;
}

.tetris-valo .v-datefield-day {
	width: 150px;
}

.tetris-valo .v-datefield-month {
	width: 105px;
}

.tetris-valo .v-datefield-year {
	width: 91px;
}

.tetris-valo .v-datefield-popup {
	padding: 3px 3px;
	border-radius: 0px;
	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.09);
	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.09);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 4px !important;
	margin-bottom: 4px !important;
	margin-right: 4px !important;
	cursor: default;
	width: auto;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-datefield-popup table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
}

.tetris-valo .v-datefield-popup td {
	padding: 2px;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel:focus {
	outline: none;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 24px;
	height: 21px;
	border: 1px solid transparent;
	line-height: 21px;
	text-align: center;
	font-size: 13px;
	background: #ffffff;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #0081bd;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: #a3a3a3;
	background: transparent;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #1a1a1a;
	font-weight: 600;
	border-color: #b3b3b3;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #b5ddef;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	border: none;
	font-weight: 600;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	position: relative;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .tetris-valo .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a3a3a3;
	cursor: not-allowed;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(135, 135, 135, 0.85);
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.tetris-valo .v-datefield-popup td[class*="year"] button, .tetris-valo .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: 15px;
	height: 20px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.tetris-valo .v-datefield-popup td[class*="year"] button:before, .tetris-valo .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;
}

.tetris-valo .v-datefield-popup td[class*="year"] button:hover:before, .tetris-valo .v-datefield-popup td[class*="month"] button:hover:before {
	color: #858585;
}

.tetris-valo .v-datefield-popup td[class*="year"] button.outside-range, .tetris-valo .v-datefield-popup td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.tetris-valo .v-datefield-popup td[class*="year"] button.outside-range:hover:before, .tetris-valo .v-datefield-popup td[class*="month"] button.outside-range:hover:before {
	color: #a3a3a3;
}

.tetris-valo .v-datefield-popup .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.tetris-valo .v-datefield-popup .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.tetris-valo .v-datefield-popup .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.tetris-valo .v-datefield-popup .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.tetris-valo .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 120px;
	color: #0081bd;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 60px;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-weeknumber, .tetris-valo .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 24px;
	color: rgba(135, 135, 135, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.tetris-valo .v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	width: 27px;
	border-top: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	background: #ffffff;
}

.tetris-valo .v-datefield-popup td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.tetris-valo .v-datefield-popup td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.tetris-valo .v-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.tetris-valo .v-datefield-calendarpanel:focus {
	outline: none;
}

.tetris-valo .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 24px;
	height: 21px;
	border: 1px solid transparent;
	line-height: 21px;
	text-align: center;
	font-size: 13px;
	background: #ffffff;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.tetris-valo .v-datefield-calendarpanel-day:hover {
	color: #0081bd;
}

.tetris-valo .v-datefield-calendarpanel-day-offmonth {
	color: #a3a3a3;
	background: transparent;
}

.tetris-valo .v-datefield-calendarpanel-day-today {
	color: #1a1a1a;
	font-weight: 600;
	border-color: #b3b3b3;
}

.tetris-valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .tetris-valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #b5ddef;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	border: none;
	font-weight: 600;
}

.tetris-valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	position: relative;
}

.tetris-valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .tetris-valo .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a3a3a3;
	cursor: not-allowed;
}

.tetris-valo .v-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(135, 135, 135, 0.85);
}

.tetris-valo .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.tetris-valo .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.tetris-valo td[class*="year"] button, .tetris-valo 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: 15px;
	height: 20px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.tetris-valo td[class*="year"] button:before, .tetris-valo td[class*="month"] button:before {
	color: #a3a3a3;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.tetris-valo td[class*="year"] button:hover:before, .tetris-valo td[class*="month"] button:hover:before {
	color: #858585;
}

.tetris-valo td[class*="year"] button.outside-range, .tetris-valo td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.tetris-valo td[class*="year"] button.outside-range:hover:before, .tetris-valo td[class*="month"] button.outside-range:hover:before {
	color: #a3a3a3;
}

.tetris-valo .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.tetris-valo .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.tetris-valo .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.tetris-valo .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.tetris-valo td.v-datefield-calendarpanel-month {
	width: 120px;
	color: #0081bd;
}

.tetris-valo .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 60px;
}

.tetris-valo .v-datefield-calendarpanel-weeknumber, .tetris-valo .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 24px;
	color: rgba(135, 135, 135, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.tetris-valo .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.tetris-valo .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	width: 27px;
	border-top: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	background: #ffffff;
}

.tetris-valo td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.tetris-valo td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.tetris-valo .v-datefield-borderless .v-datefield-textfield {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.tetris-valo .v-datefield-borderless .v-datefield-textfield:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

.tetris-valo .v-datefield-align-right input {
	text-align: right;
}

.tetris-valo .v-datefield-align-center input {
	text-align: center;
}

.tetris-valo .v-datefield-tiny {
	height: 23px;
	border-radius: 0px;
	font-size: 11px;
}

.tetris-valo .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: 23px;
	border-radius: 0px;
	padding: 3px 4px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 27.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.tetris-valo .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: 23px;
	line-height: 23px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.tetris-valo .v-datefield-tiny [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.tetris-valo .v-datefield-tiny.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-tiny.v-disabled [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-tiny.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-datefield-tiny.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #cdcdcd;
}

.tetris-valo .v-datefield-tiny.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-tiny.v-readonly [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-compact, .tetris-valo .v-datefield-small {
	height: 26px;
	border-radius: 0px;
}

.tetris-valo .v-datefield-compact [class*="textfield"], .tetris-valo .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: 26px;
	border-radius: 0px;
	padding: 3px 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 31.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.tetris-valo .v-datefield-compact [class*="button"], .tetris-valo .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: 26px;
	line-height: 26px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.tetris-valo .v-datefield-compact [class*="button"]:before, .tetris-valo .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.tetris-valo .v-datefield-compact.v-disabled [class*="button"], .tetris-valo .v-datefield-small.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-compact.v-disabled [class*="button"]:active:after, .tetris-valo .v-datefield-small.v-disabled [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-compact.v-readonly [class*="textfield"], .tetris-valo .v-datefield-small.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-datefield-compact.v-readonly [class*="textfield"]:focus, .tetris-valo .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #cdcdcd;
}

.tetris-valo .v-datefield-compact.v-readonly [class*="button"], .tetris-valo .v-datefield-small.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-compact.v-readonly [class*="button"]:active:after, .tetris-valo .v-datefield-small.v-readonly [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-small {
	font-size: 12px;
}

.tetris-valo .v-datefield-large {
	height: 36px;
	border-radius: 0px;
	font-size: 17px;
}

.tetris-valo .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: 36px;
	border-radius: 0px;
	padding: 4px 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 43.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.tetris-valo .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: 36px;
	line-height: 36px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.tetris-valo .v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.tetris-valo .v-datefield-large.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-large.v-disabled [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-large.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #cdcdcd;
}

.tetris-valo .v-datefield-large.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-large.v-readonly [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-huge {
	height: 48px;
	border-radius: 0px;
	font-size: 23px;
}

.tetris-valo .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: 48px;
	border-radius: 0px;
	padding: 5px 8px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 57.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.tetris-valo .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: 48px;
	line-height: 48px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.tetris-valo .v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

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

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

.tetris-valo .v-datefield-huge.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-huge.v-disabled [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-datefield-huge.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #cdcdcd;
}

.tetris-valo .v-datefield-huge.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.tetris-valo .v-datefield-huge.v-readonly [class*="button"]:active:after {
	display: none;
}

.tetris-valo .v-inline-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.tetris-valo .v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.tetris-valo .v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 24px;
	height: 21px;
	border: 1px solid transparent;
	line-height: 21px;
	text-align: center;
	font-size: 13px;
	background: #ffffff;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.tetris-valo .v-inline-datefield-calendarpanel-day:hover {
	color: #0081bd;
}

.tetris-valo .v-inline-datefield-calendarpanel-day-offmonth {
	color: #a3a3a3;
	background: transparent;
}

.tetris-valo .v-inline-datefield-calendarpanel-day-today {
	color: #1a1a1a;
	font-weight: 600;
	border-color: #b3b3b3;
}

.tetris-valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .tetris-valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #b5ddef;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	border: none;
	font-weight: 600;
}

.tetris-valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	position: relative;
}

.tetris-valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .tetris-valo .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a3a3a3;
	cursor: not-allowed;
}

.tetris-valo .v-inline-datefield-calendarpanel-weekdays {
	height: 21px;
	color: rgba(135, 135, 135, 0.85);
}

.tetris-valo .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.tetris-valo .v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

.tetris-valo td[class*="year"] button, .tetris-valo 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: 15px;
	height: 20px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.tetris-valo td[class*="year"] button:before, .tetris-valo td[class*="month"] button:before {
	color: #a3a3a3;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.tetris-valo td[class*="year"] button:hover:before, .tetris-valo td[class*="month"] button:hover:before {
	color: #858585;
}

.tetris-valo td[class*="year"] button.outside-range, .tetris-valo td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.tetris-valo td[class*="year"] button.outside-range:hover:before, .tetris-valo td[class*="month"] button.outside-range:hover:before {
	color: #a3a3a3;
}

.tetris-valo .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.tetris-valo .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.tetris-valo .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.tetris-valo .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.tetris-valo td.v-inline-datefield-calendarpanel-month {
	width: 120px;
	color: #0081bd;
}

.tetris-valo .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 60px;
}

.tetris-valo .v-inline-datefield-calendarpanel-weeknumber, .tetris-valo .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 24px;
	color: rgba(135, 135, 135, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.tetris-valo .v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.tetris-valo .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	width: 27px;
	border-top: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	background: #ffffff;
}

.tetris-valo td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.tetris-valo td.v-inline-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.tetris-valo .v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 5px;
}

.tetris-valo .v-gridlayout-margin-top {
	padding-top: 30px;
}

.tetris-valo .v-gridlayout-margin-bottom {
	padding-bottom: 30px;
}

.tetris-valo .v-gridlayout-margin-left {
	padding-left: 30px;
}

.tetris-valo .v-gridlayout-margin-right {
	padding-right: 30px;
}

.tetris-valo .v-gridlayout-spacing-on {
	padding-left: 10px;
	padding-top: 10px;
}

.tetris-valo .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	cursor: default;
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	text-align: left;
	line-height: 28px;
}

.tetris-valo .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;
}

.tetris-valo .v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

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

.tetris-valo .v-menubar.v-disabled:after {
	display: none;
}

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

.tetris-valo .v-menubar:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-menubar  > .v-menubar-menuitem {
	padding: 0 12px;
}

.tetris-valo .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 30px;
}

.tetris-valo .v-menubar:active:after {
	background: transparent;
}

.tetris-valo .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 30px;
	padding: 0 12px;
	color: inherit;
	font-weight: 400;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 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;
}

.tetris-valo .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
}

.tetris-valo .v-menubar > .v-menubar-menuitem:last-child {
	border-right-width: 0;
}

.tetris-valo .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.tetris-valo .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.tetris-valo .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.tetris-valo .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 3px 0 -3px;
	cursor: inherit;
}

.tetris-valo .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 30px;
	padding: 0;
}

.tetris-valo .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.tetris-valo .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;
}

.tetris-valo .v-disabled > .v-menubar-menuitem, .tetris-valo .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.tetris-valo .v-disabled > .v-menubar-menuitem:before, .tetris-valo .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.tetris-valo .v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-menubar > .v-menubar-menuitem-selected {
	color: #e6f2f8;
	
	
	
	border-radius: 0;
	border: 1px solid #00699a;
	border-top-color: #00699a;
	border-bottom-color: #00699a;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	
	
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.tetris-valo .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.tetris-valo .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.tetris-valo .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;
}

.tetris-valo .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.tetris-valo .v-menubar-popup {
	padding: 3px 3px;
	border-radius: 0px;
	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.09);
	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.09);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 3px 3px;
	margin: 4px 0 0 1px !important;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.tetris-valo .v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 22px;
	padding: 0 16px 0 8px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 26px;
	padding-right: 30px;
	position: relative;
}

.tetris-valo .v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #005a84;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.tetris-valo .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 22px;
	margin-right: 4px;
	min-width: 1em;
}

.tetris-valo .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.tetris-valo .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 8px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 24px;
}

.tetris-valo .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	color: #e6f2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.tetris-valo .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 3px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e8e8e8;
}

.tetris-valo .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 8px;
}

.tetris-valo .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.tetris-valo .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.tetris-valo .v-menubar-small {
	height: 26px;
	padding: 0 11px;
	
	font-weight: 400;
	
	cursor: default;
	border-radius: 0px;
	padding: 0;
	text-align: left;
	line-height: 24px;
	font-size: 12px;
}

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

.tetris-valo .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 10px;
}

.tetris-valo .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 26px;
}

.tetris-valo .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.tetris-valo .v-menubar-borderless:focus:after {
	display: none;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 0px;
	color: #0081bd;
	padding: 0 10px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem:first-child, .tetris-valo .v-menubar-borderless .v-menubar-menuitem:last-child, .tetris-valo .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 0px;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem:hover {
	color: #00a4f0;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem-checked, .tetris-valo .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #d1d1d1;
	color: #0081bd;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .tetris-valo .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem-selected {
	color: #e6f2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #e6f2f8;
}

.tetris-valo .v-menubar-borderless .v-menubar-menuitem-disabled, .tetris-valo .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.tetris-valo .v-radiobutton {
	position: relative;
	line-height: 15px;
	white-space: nowrap;
}

.tetris-valo .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .tetris-valo .v-radiobutton {
	padding-left: 20px;
}

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

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

:root .tetris-valo .v-radiobutton > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

:root .tetris-valo .v-radiobutton > input ~ label:before {
	height: 15px;
	padding: 0 6px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 15px;
}

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

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

:root .tetris-valo .v-radiobutton > input:checked ~ label:after {
	color: #0081bd;
}

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

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

.tetris-valo .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

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

.tetris-valo .v-radiobutton.v-readonly  > label, .tetris-valo .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.tetris-valo .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

:root .tetris-valo .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 5px;
	left: 5px;
	background: #0081bd;
}

:root .tetris-valo .v-radiobutton > input ~ label:before, :root .tetris-valo .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.tetris-valo .v-select-optiongroup .v-radiobutton, .tetris-valo .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 8px 14px 0 0;
}

.tetris-valo .v-select-optiongroup .v-radiobutton:first-child, .tetris-valo .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 5px;
}

.tetris-valo .v-select-optiongroup .v-radiobutton:last-child, .tetris-valo .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 5px;
}

.tetris-valo .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.tetris-valo .v-select-optiongroup-small {
	font-size: 12px;
}

.tetris-valo .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 13px;
	white-space: nowrap;
}

.tetris-valo .v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .tetris-valo .v-select-optiongroup-small .v-checkbox {
	padding-left: 17px;
}

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

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

:root .tetris-valo .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 13px;
	padding: 0 5px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 13px;
}

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .tetris-valo .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #0081bd;
}

.tetris-valo .v-select-optiongroup-small .v-checkbox > .v-icon, .tetris-valo .v-select-optiongroup-small .v-checkbox > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

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

.tetris-valo .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

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

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

.tetris-valo .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

.tetris-valo .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 13px;
	white-space: nowrap;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton {
	padding-left: 17px;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .tetris-valo .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0px;
	font-size: 10px;
	text-align: center;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 13px;
	padding: 0 5px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 13px;
}

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #0081bd;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton > .v-icon, .tetris-valo .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .tetris-valo .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .tetris-valo .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 4px;
	left: 4px;
	background: #0081bd;
}

:root .tetris-valo .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .tetris-valo .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton, .tetris-valo .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 7px 14px 0 0;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton:first-child, .tetris-valo .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 4px;
}

.tetris-valo .v-select-optiongroup-small .v-radiobutton:last-child, .tetris-valo .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 4px;
}

.tetris-valo .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.tetris-valo .v-select-optiongroup-large {
	font-size: 17px;
}

.tetris-valo .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
}

.tetris-valo .v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .tetris-valo .v-select-optiongroup-large .v-checkbox {
	padding-left: 24px;
}

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

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

:root .tetris-valo .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 18px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 18px;
}

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .tetris-valo .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #0081bd;
}

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

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

.tetris-valo .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

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

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

.tetris-valo .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

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

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

.tetris-valo .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 18px;
	white-space: nowrap;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton {
	padding-left: 24px;
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

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

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 18px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	padding: 0;
	height: 18px;
}

:root .tetris-valo .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 .tetris-valo .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #0081bd;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton > .v-icon, .tetris-valo .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .tetris-valo .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .tetris-valo .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 6px;
	left: 6px;
	background: #0081bd;
}

:root .tetris-valo .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .tetris-valo .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton, .tetris-valo .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 9px 14px 0 0;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton:first-child, .tetris-valo .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 6px;
}

.tetris-valo .v-select-optiongroup-large .v-radiobutton:last-child, .tetris-valo .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 6px;
}

.tetris-valo .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.tetris-valo .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.tetris-valo .v-select-optiongroup-horizontal .v-radiobutton, .tetris-valo .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.tetris-valo .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.tetris-valo .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.tetris-valo .v-link {
	cursor: pointer;
	color: #0066cc;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.tetris-valo .v-link:hover {
	color: #0080ff;
}

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

.tetris-valo .v-link a {
	cursor: pointer;
	color: #0066cc;
	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;
}

.tetris-valo .v-link a:hover {
	color: #0080ff;
}

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

.tetris-valo .v-link .v-icon {
	cursor: inherit;
}

.tetris-valo .v-link-small {
	font-size: 12px;
}

.tetris-valo .v-link-large {
	font-size: 17px;
}

.tetris-valo .v-window {
	padding: 3px 3px;
	border-radius: 0px;
	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.09);
	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.09);
	-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.09);
	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.09);
	padding: 0;
	min-width: 120px !important;
	min-height: 30px !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;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.tetris-valo .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 .tetris-valo .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.tetris-valo .v-window-draggingCurtain {
	position: fixed !important;
}

.tetris-valo .v-window-resizingCurtain + .v-window, .tetris-valo .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.tetris-valo .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);
}

.tetris-valo .v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e8e8e8;
	border-color: rgba(209, 209, 209, 0.5);
}

.tetris-valo .v-window-header {
	line-height: 29px;
	padding-left: 10px;
	margin-right: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.tetris-valo .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .tetris-valo .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 30px;
}

.tetris-valo .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .tetris-valo .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 10px;
}

.tetris-valo .v-window-closebox, .tetris-valo .v-window-maximizebox, .tetris-valo .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 27px;
	height: 29px;
	background-color: white;
	line-height: 27px;
	text-align: center;
	cursor: pointer;
	font-size: 18px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.tetris-valo .v-window-closebox:focus, .tetris-valo .v-window-maximizebox:focus, .tetris-valo .v-window-restorebox:focus {
	outline: none;
}

.tetris-valo .v-window-closebox:hover, .tetris-valo .v-window-maximizebox:hover, .tetris-valo .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #0081bd;
}

.tetris-valo .v-window-closebox:active, .tetris-valo .v-window-maximizebox:active, .tetris-valo .v-window-restorebox:active {
	color: inherit;
}

.tetris-valo .v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 2px;
	border-radius: 0px;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-window-maximizebox:focus::after, .tetris-valo .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 2px;
	bottom: 5px;
	left: 5px;
	border-radius: 0px;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-window-closebox {
	padding-right: 3px;
}

.tetris-valo .v-window-closebox:before {
	content: "\00d7";
}

.tetris-valo .v-window-maximizebox, .tetris-valo .v-window-restorebox {
	right: 27px;
	padding-left: 3px;
}

.tetris-valo .v-window-closebox-disabled, .tetris-valo .v-window-resizebox-disabled, .tetris-valo .v-window-restorebox-disabled, .tetris-valo .v-window-maximizebox-disabled {
	display: none;
}

.tetris-valo .v-window-closebox-disabled  + .v-window-closebox, .tetris-valo .v-window-resizebox-disabled  + .v-window-closebox, .tetris-valo .v-window-restorebox-disabled  + .v-window-closebox, .tetris-valo .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 30px;
	padding-right: 0;
	border-bottom-left-radius: 0px;
}

.tetris-valo .v-window-closebox-disabled  + .v-window-closebox:focus::after, .tetris-valo .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .tetris-valo .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .tetris-valo .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 5px;
}

.tetris-valo .v-window-maximizebox:before {
	content: "+";
}

.tetris-valo .v-window-restorebox:before {
	content: "\2013";
}

.tetris-valo .v-window > .popupContent, .tetris-valo .v-window-wrap, .tetris-valo .v-window-contents, .tetris-valo .v-window-contents > .v-scrollable {
	height: 100%;
}

.tetris-valo .v-window-contents {
	box-sizing: border-box;
	border-radius: 0px;
	margin-top: 0 !important;
}

.tetris-valo .v-window-contents  > .v-scrollable {
	position: relative;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .tetris-valo .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 10px;
}

.tetris-valo .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.tetris-valo .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;
}

.tetris-valo .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #e8e8e8;
}

.tetris-valo .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.tetris-valo .v-window-footer {
	height: 0;
}

.tetris-valo .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 15px;
	height: 15px;
	cursor: nwse-resize;
}

.tetris-valo .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.tetris-valo .v-window-top-toolbar  > .v-widget, .tetris-valo .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.tetris-valo .v-window-top-toolbar .v-label, .tetris-valo .v-window-bottom-toolbar .v-label {
	line-height: 29px;
}

.tetris-valo .v-window-top-toolbar .v-spacing, .tetris-valo .v-window-bottom-toolbar .v-spacing {
	width: 5px;
}

.tetris-valo .v-window-top-toolbar.v-layout {
	padding: 6px 10px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	background-color: #ffffff;
}

.tetris-valo .v-window-top-toolbar.v-menubar {
	margin: 10px 10px 5px;
}

.tetris-valo .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 5px;
	padding-right: 5px;
	margin: 4px 0;
}

.tetris-valo .v-window-bottom-toolbar.v-layout {
	padding: 6px 10px;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 0, #ffffff 3px);
	background-image: linear-gradient(to bottom,white 0, #ffffff 3px);
	border-top: 1px solid #e8e8e8;
	border-radius: 0 0 0px 0px;
}

.tetris-valo .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -10px -10px 0;
}

.tetris-valo .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.tetris-valo .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -5px -5px 0;
	padding: 0;
}

.tetris-valo .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -10px -10px;
}

.tetris-valo .v-tree {
	position: relative;
	white-space: nowrap;
}

.tetris-valo .v-tree:focus {
	outline: none;
}

.tetris-valo .v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 23px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.tetris-valo .v-tree-node-caption {
	height: 23px;
	line-height: 22px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.tetris-valo .v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.tetris-valo .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;
}

.tetris-valo .v-tree-node-caption span {
	padding-right: 23px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .tetris-valo .v-tree-node-caption span {
	width: auto;
}

.tetris-valo .v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.tetris-valo .v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -23px;
	width: 100%;
	height: 23px;
	border-radius: 0px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

.tetris-valo .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;
}

.tetris-valo .v-tree-node-leaf:before, .tetris-valo .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.tetris-valo .v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid #858585;
}

.tetris-valo .v-tree-node-selected {
	color: #e6f2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.tetris-valo .v-tree-node-selected:after {
	opacity: 1;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	border: none;
}

.tetris-valo .v-tree-node-children {
	padding-left: 15px;
}

.tetris-valo .v-tree-node-drag-top:before, .tetris-valo .v-tree-node-drag-bottom:after, .tetris-valo .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: #858585;
	font-size: 28px;
	line-height: 2px;
	color: #858585;
	text-indent: -4px;
	text-shadow: 0 0 1px #ffffff, 0 0 1px #ffffff;
	opacity: 1;
	visibility: visible;
}

.tetris-valo .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.tetris-valo .v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px #858585;
	box-shadow: 0 0 0 2px #858585;
	position: relative;
	border-radius: 0px;
}

.v-ff .tetris-valo .v-tree-node-drag-top:before, .v-ff .tetris-valo .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.tetris-valo .v-tree8 {
	position: relative;
}

.tetris-valo .v-tree8-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

.tetris-valo .v-tree8-tablewrapper {
	position: absolute;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 5;
}

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

.tetris-valo .v-tree8-header-deco, .tetris-valo .v-tree8-footer-deco {
	position: absolute;
	right: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.tetris-valo .v-tree8-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

.tetris-valo .v-tree8-header, .tetris-valo .v-tree8-header-deco {
	top: 0;
}

.tetris-valo .v-tree8-footer, .tetris-valo .v-tree8-footer-deco {
	bottom: 0;
}

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

.tetris-valo .v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.tetris-valo .v-tree8-row {
	display: block;
}

.tetris-valo .v-tree8-row  > td, .tetris-valo .v-tree8-row  > th {
	background-color: white;
}

.tetris-valo .v-tree8-row {
	width: inherit;
}

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

.tetris-valo .v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.tetris-valo .v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.tetris-valo .v-tree8-spacer  > td {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.tetris-valo .v-tree8 {
	outline: none;
}

.tetris-valo .v-tree8-scroller-vertical, .tetris-valo .v-tree8-scroller-horizontal {
	border: 1px solid #dadada;
}

.tetris-valo .v-tree8-scroller-vertical {
	border-left: none;
}

.tetris-valo .v-tree8-scroller-horizontal {
	border-top: none;
}

.tetris-valo .v-tree8-tablewrapper {
	border: 1px solid #dadada;
}

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

.tetris-valo .v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.tetris-valo .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-cell {
	border: 1px solid #dadada;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.tetris-valo .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #0081bd;
	position: absolute;
	width: 3px;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #E4E4E4;
	border: 1px solid #dadada;
	padding: 0;
	z-index: 5;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.tetris-valo .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;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

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

.tetris-valo .v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .tetris-valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

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

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

.tetris-valo .v-tree8-cell {
	background-color: white;
	padding: 0 15px;
	line-height: 30px;
	text-overflow: ellipsis;
}

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

.tetris-valo .v-tree8-cell  > div {
	display: inline-block;
}

.tetris-valo .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 #dadada;
}

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

.tetris-valo .v-tree8-row > td, .tetris-valo .v-tree8-editor-cells > div {
	border-left: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}

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

.tetris-valo .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 #dadada;
	border-left: none;
}

.tetris-valo .v-tree8-row-stripe > td {
	background-color: #ffffff;
}

.tetris-valo .v-tree8-row-selected > td {
	background: #0081bd;
}

.tetris-valo .v-tree8-row-focused > td {
	
}

.tetris-valo .v-tree8-header th {
	position: relative;
	background-color: #E4E4E4;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	
	text-align: left;
}

.tetris-valo .v-tree8-header th:first-child {
	border-left: none;
}

.tetris-valo .v-tree8-header .sort-asc, .tetris-valo .v-tree8-header .sort-desc {
	padding-right: 29px;
}

.tetris-valo .v-tree8-header .sort-asc:after, .tetris-valo .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 15px;
	font-size: 10px;
}

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

.tetris-valo .v-tree8-column-resize-handle {
	position: absolute;
	width: 30px;
	right: -15px;
	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;
}

.tetris-valo .v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 15px;
	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;
}

.tetris-valo .v-tree8-footer td {
	background-color: #E4E4E4;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #dadada;
	border-top: 1px solid #dadada;
	border-bottom: none;
	
}

.tetris-valo .v-tree8-footer td:first-child {
	border-left: none;
}

.tetris-valo .v-tree8-header .v-tree8-cell, .tetris-valo .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

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

.tetris-valo .v-tree8-header-deco {
	border-top: 1px solid #dadada;
	border-right: 1px solid #dadada;
	background-color: #E4E4E4;
}

.tetris-valo .v-tree8-footer-deco {
	border-bottom: 1px solid #dadada;
	border-right: 1px solid #dadada;
	background-color: #E4E4E4;
}

.tetris-valo .v-tree8-horizontal-scrollbar-deco {
	background-color: #E4E4E4;
	border: 1px solid #dadada;
	border-top: none;
}

.tetris-valo .v-tree8-cell-focused {
	position: relative;
}

.tetris-valo .v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0081bd;
	display: none;
	pointer-events: none;
}

.tetris-valo .v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.tetris-valo .v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.tetris-valo .v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #dadada;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.tetris-valo .v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.tetris-valo .v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.tetris-valo .v-tree8-editor-cells.frozen {
	z-index: 2;
}

.tetris-valo .v-tree8-editor-cells  > div {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

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

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

.tetris-valo .v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

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

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

.tetris-valo .v-tree8-editor-cells  > div input[type="checkbox"] {
	margin-left: 15px;
}

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

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

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

.tetris-valo .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;
}

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

.tetris-valo .v-tree8-editor-footer {
	display: table;
	height: 30px;
	border-top: 1px solid #dadada;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.tetris-valo .v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #dadada;
}

.tetris-valo .v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #dadada;
	margin-bottom: -1px;
}

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

.tetris-valo .v-tree8-editor-message {
	width: 100%;
	position: relative;
}

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

.tetris-valo .v-tree8-editor-save {
	margin-right: 4px;
}

.tetris-valo .v-tree8-spacer {
	padding-left: 1px;
}

.tetris-valo .v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #dadada;
}

.tetris-valo .v-tree8-spacer.stripe > td {
	background-color: #ffffff;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #dadada;
}

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

.tetris-valo .v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #0081bd;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.tetris-valo .v-tree8-cell > .v-progressbar {
	width: 100%;
}

.tetris-valo .v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #ffffff;
}

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

.tetris-valo .v-tree8-header .v-tree8-cell {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tetris-valo .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;
}

.tetris-valo .v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -15px;
}

.tetris-valo .v-tree8-footer .v-tree8-cell {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tetris-valo .v-tree8-header-deco {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-tree8-footer-deco, .tetris-valo .v-tree8-horizontal-scrollbar-deco {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-tree8-row-selected  > .v-tree8-cell {
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	color: #b5ddef;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #06638e;
}

.tetris-valo .v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #24baff;
}

.tetris-valo .v-tree8-editor {
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	border-color: #858585;
}

.tetris-valo .v-tree8-editor-footer {
	font-size: 12px;
	padding: 0 5px;
	background: #ffffff;
	-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;
}

.tetris-valo .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;
}

.tetris-valo .v-tree8-editor-cells {
	z-index: 1;
}

.tetris-valo .v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

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

.tetris-valo .v-tree8-editor-cells > div .error::before {
	border-top: 8px solid #d94560;
	border-right: 8px solid transparent;
}

.tetris-valo .v-tree8-editor-cells > div .error, .tetris-valo .v-tree8-editor-cells > div .error > input {
	background-color: #fefbfc;
}

.tetris-valo .v-tree8-editor-cells > div .v-textfield, .tetris-valo .v-tree8-editor-cells > div .v-textfield-focus, .tetris-valo .v-tree8-editor-cells > div .v-datefield, .tetris-valo .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .tetris-valo .v-tree8-editor-cells > div .v-filterselect-input, .tetris-valo .v-tree8-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 36px;
}

.tetris-valo .v-tree8-editor-cells > div .v-textfield-focus, .tetris-valo .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .tetris-valo .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.tetris-valo .v-tree8-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.tetris-valo .v-tree8-editor-cells > div .v-checkbox {
	margin: 0 8px 0 15px;
}

.tetris-valo .v-tree8-editor-cells > div .v-checkbox  > input[type="checkbox"] {
	margin-left: 0;
}

.tetris-valo .v-tree8-editor-cells > div .v-checkbox  > label {
	white-space: nowrap;
}

.tetris-valo .v-tree8-editor-message > div:before {
	display: inline-block;
	color: #d94560;
	font-weight: 600;
	width: 15px;
	text-align: center;
	content: "!";
}

.tetris-valo .v-tree8-editor-save, .tetris-valo .v-tree8-editor-cancel {
	cursor: pointer;
	color: #0066cc;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 5px;
	margin: 0;
	outline: none;
}

.tetris-valo .v-tree8-editor-save:hover, .tetris-valo .v-tree8-editor-cancel:hover {
	color: #0080ff;
}

.tetris-valo .v-tree8-editor-save.v-disabled, .tetris-valo .v-tree8-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-tree8-spacer {
	margin-top: -1px;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.tetris-valo .v-tree8-sidebar.v-contextmenu.closed {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.tetris-valo .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;
}

.tetris-valo .v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.tetris-valo .v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.tetris-valo .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;
}

.tetris-valo .v-tree8-row-drag-top, .tetris-valo .v-tree8-row-drag-bottom {
	z-index: 100;
}

.tetris-valo .v-tree8-row-drag-top:before, .tetris-valo .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #858585;
	pointer-events: none;
	border: none;
}

.tetris-valo .v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.tetris-valo .v-tree8-row-drag-top:before {
	top: -1px;
}

.tetris-valo .v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.tetris-valo .v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #858585;
	pointer-events: none;
}

.tetris-valo .v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #6b6b6b;
}

.tetris-valo .v-tree8-row-selected.v-tree8-row-drag-top:before, .tetris-valo .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #6b6b6b;
}

.tetris-valo .v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #858585;
	z-index: 100;
}

.tetris-valo .v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.tetris-valo .v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.tetris-valo .v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.tetris-valo .v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.tetris-valo .v-tree8-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.tetris-valo .v-tree8-node.depth-0 {
	padding-left: 0em;
}

.tetris-valo .v-tree8-node.depth-1 {
	padding-left: 1em;
}

.tetris-valo .v-tree8-node.depth-2 {
	padding-left: 2em;
}

.tetris-valo .v-tree8-node.depth-3 {
	padding-left: 3em;
}

.tetris-valo .v-tree8-node.depth-4 {
	padding-left: 4em;
}

.tetris-valo .v-tree8-node.depth-5 {
	padding-left: 5em;
}

.tetris-valo .v-tree8-node.depth-6 {
	padding-left: 6em;
}

.tetris-valo .v-tree8-node.depth-7 {
	padding-left: 7em;
}

.tetris-valo .v-tree8-node.depth-8 {
	padding-left: 8em;
}

.tetris-valo .v-tree8-node.depth-9 {
	padding-left: 9em;
}

.tetris-valo .v-tree8-node.depth-10 {
	padding-left: 10em;
}

.tetris-valo .v-tree8-node.depth-11 {
	padding-left: 11em;
}

.tetris-valo .v-tree8-node.depth-12 {
	padding-left: 12em;
}

.tetris-valo .v-tree8-node.depth-13 {
	padding-left: 13em;
}

.tetris-valo .v-tree8-node.depth-14 {
	padding-left: 14em;
}

.tetris-valo .v-tree8-node.depth-15 {
	padding-left: 15em;
}

.tetris-valo .v-tree8-node.depth-16 {
	padding-left: 16em;
}

.tetris-valo .v-tree8-node.depth-17 {
	padding-left: 17em;
}

.tetris-valo .v-tree8-node.depth-18 {
	padding-left: 18em;
}

.tetris-valo .v-tree8-node.depth-19 {
	padding-left: 19em;
}

.tetris-valo .v-tree8-node.depth-20 {
	padding-left: 20em;
}

.tetris-valo .v-tree8-node.depth-21 {
	padding-left: 21em;
}

.tetris-valo .v-tree8-node.depth-22 {
	padding-left: 22em;
}

.tetris-valo .v-tree8-node.depth-23 {
	padding-left: 23em;
}

.tetris-valo .v-tree8-node.depth-24 {
	padding-left: 24em;
}

.tetris-valo .v-tree8-node.depth-25 {
	padding-left: 25em;
}

.tetris-valo .v-tree8-node.depth-26 {
	padding-left: 26em;
}

.tetris-valo .v-tree8-node.depth-27 {
	padding-left: 27em;
}

.tetris-valo .v-tree8-node.depth-28 {
	padding-left: 28em;
}

.tetris-valo .v-tree8-node.depth-29 {
	padding-left: 29em;
}

.tetris-valo .v-tree8-node.depth-30 {
	padding-left: 30em;
}

.tetris-valo .v-tree8-node.depth-31 {
	padding-left: 31em;
}

.tetris-valo .v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.tetris-valo .v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0081bd;
	display: none;
	pointer-events: none;
}

.tetris-valo .v-tree8-cell-focused {
	position: static;
}

.tetris-valo .v-tree8-cell-focused::before {
	display: none;
}

.tetris-valo .v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.tetris-valo .v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.tetris-valo .v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.tetris-valo .v-tree8 {
	background-color: transparent;
}

.tetris-valo .v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.tetris-valo .v-tree8-row > td  > * {
	vertical-align: baseline;
}

.tetris-valo .v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.tetris-valo .v-tree8-row::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 0px;
	pointer-events: none;
	border-width: 1px;
}

.tetris-valo .v-tree8-cell {
	position: relative;
}

.tetris-valo .v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.tetris-valo .v-tree8-row-selected::before {
	display: block;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
}

.tetris-valo .v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #b5ddef;
}

.tetris-valo .v-tree8-scroller-vertical {
	border: none;
}

.tetris-valo .v-tree8-scroller-horizontal {
	border: none;
}

.tetris-valo .v-tree8-header-deco, .tetris-valo .v-tree8-footer-deco, .tetris-valo .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.tetris-valo .v-treegrid {
	position: relative;
}

.tetris-valo .v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

.tetris-valo .v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 5;
}

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

.tetris-valo .v-treegrid-header-deco, .tetris-valo .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.tetris-valo .v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

.tetris-valo .v-treegrid-header, .tetris-valo .v-treegrid-header-deco {
	top: 0;
}

.tetris-valo .v-treegrid-footer, .tetris-valo .v-treegrid-footer-deco {
	bottom: 0;
}

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

.tetris-valo .v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.tetris-valo .v-treegrid-row {
	display: block;
}

.tetris-valo .v-treegrid-row  > td, .tetris-valo .v-treegrid-row  > th {
	background-color: white;
}

.tetris-valo .v-treegrid-row {
	width: inherit;
}

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

.tetris-valo .v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.tetris-valo .v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.tetris-valo .v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.tetris-valo .v-treegrid {
	outline: none;
}

.tetris-valo .v-treegrid-scroller-vertical, .tetris-valo .v-treegrid-scroller-horizontal {
	border: 1px solid #dadada;
}

.tetris-valo .v-treegrid-scroller-vertical {
	border-left: none;
}

.tetris-valo .v-treegrid-scroller-horizontal {
	border-top: none;
}

.tetris-valo .v-treegrid-tablewrapper {
	border: 1px solid #dadada;
}

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

.tetris-valo .v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.tetris-valo .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-cell {
	border: 1px solid #dadada;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.tetris-valo .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #0081bd;
	position: absolute;
	width: 3px;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #E4E4E4;
	border: 1px solid #dadada;
	padding: 0;
	z-index: 5;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.tetris-valo .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;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

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

.tetris-valo .v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .tetris-valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

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

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

.tetris-valo .v-treegrid-cell {
	background-color: white;
	padding: 0 15px;
	line-height: 30px;
	text-overflow: ellipsis;
}

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

.tetris-valo .v-treegrid-cell  > div {
	display: inline-block;
}

.tetris-valo .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 #dadada;
}

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

.tetris-valo .v-treegrid-row > td, .tetris-valo .v-treegrid-editor-cells > div {
	border-left: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}

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

.tetris-valo .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 #dadada;
	border-left: none;
}

.tetris-valo .v-treegrid-row-stripe > td {
	background-color: #ffffff;
}

.tetris-valo .v-treegrid-row-selected > td {
	background: #0081bd;
}

.tetris-valo .v-treegrid-row-focused > td {
	
}

.tetris-valo .v-treegrid-header th {
	position: relative;
	background-color: #E4E4E4;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	
	text-align: left;
}

.tetris-valo .v-treegrid-header th:first-child {
	border-left: none;
}

.tetris-valo .v-treegrid-header .sort-asc, .tetris-valo .v-treegrid-header .sort-desc {
	padding-right: 29px;
}

.tetris-valo .v-treegrid-header .sort-asc:after, .tetris-valo .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 15px;
	font-size: 10px;
}

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

.tetris-valo .v-treegrid-column-resize-handle {
	position: absolute;
	width: 30px;
	right: -15px;
	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;
}

.tetris-valo .v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 15px;
	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;
}

.tetris-valo .v-treegrid-footer td {
	background-color: #E4E4E4;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #dadada;
	border-top: 1px solid #dadada;
	border-bottom: none;
	
}

.tetris-valo .v-treegrid-footer td:first-child {
	border-left: none;
}

.tetris-valo .v-treegrid-header .v-treegrid-cell, .tetris-valo .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

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

.tetris-valo .v-treegrid-header-deco {
	border-top: 1px solid #dadada;
	border-right: 1px solid #dadada;
	background-color: #E4E4E4;
}

.tetris-valo .v-treegrid-footer-deco {
	border-bottom: 1px solid #dadada;
	border-right: 1px solid #dadada;
	background-color: #E4E4E4;
}

.tetris-valo .v-treegrid-horizontal-scrollbar-deco {
	background-color: #E4E4E4;
	border: 1px solid #dadada;
	border-top: none;
}

.tetris-valo .v-treegrid-cell-focused {
	position: relative;
}

.tetris-valo .v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0081bd;
	display: none;
	pointer-events: none;
}

.tetris-valo .v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.tetris-valo .v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.tetris-valo .v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #dadada;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.tetris-valo .v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.tetris-valo .v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.tetris-valo .v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.tetris-valo .v-treegrid-editor-cells  > div {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

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

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

.tetris-valo .v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

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

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

.tetris-valo .v-treegrid-editor-cells  > div input[type="checkbox"] {
	margin-left: 15px;
}

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

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

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

.tetris-valo .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;
}

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

.tetris-valo .v-treegrid-editor-footer {
	display: table;
	height: 30px;
	border-top: 1px solid #dadada;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.tetris-valo .v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #dadada;
}

.tetris-valo .v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #dadada;
	margin-bottom: -1px;
}

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

.tetris-valo .v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

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

.tetris-valo .v-treegrid-editor-save {
	margin-right: 4px;
}

.tetris-valo .v-treegrid-spacer {
	padding-left: 1px;
}

.tetris-valo .v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #dadada;
}

.tetris-valo .v-treegrid-spacer.stripe > td {
	background-color: #ffffff;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #dadada;
}

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

.tetris-valo .v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #0081bd;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.tetris-valo .v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.tetris-valo .v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #ffffff;
}

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

.tetris-valo .v-treegrid-header .v-treegrid-cell {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tetris-valo .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;
}

.tetris-valo .v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -15px;
}

.tetris-valo .v-treegrid-footer .v-treegrid-cell {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tetris-valo .v-treegrid-header-deco {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-treegrid-footer-deco, .tetris-valo .v-treegrid-horizontal-scrollbar-deco {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	color: #b5ddef;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #06638e;
}

.tetris-valo .v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #24baff;
}

.tetris-valo .v-treegrid-editor {
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	border-color: #858585;
}

.tetris-valo .v-treegrid-editor-footer {
	font-size: 12px;
	padding: 0 5px;
	background: #ffffff;
	-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;
}

.tetris-valo .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;
}

.tetris-valo .v-treegrid-editor-cells {
	z-index: 1;
}

.tetris-valo .v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

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

.tetris-valo .v-treegrid-editor-cells > div .error::before {
	border-top: 8px solid #d94560;
	border-right: 8px solid transparent;
}

.tetris-valo .v-treegrid-editor-cells > div .error, .tetris-valo .v-treegrid-editor-cells > div .error > input {
	background-color: #fefbfc;
}

.tetris-valo .v-treegrid-editor-cells > div .v-textfield, .tetris-valo .v-treegrid-editor-cells > div .v-textfield-focus, .tetris-valo .v-treegrid-editor-cells > div .v-datefield, .tetris-valo .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .tetris-valo .v-treegrid-editor-cells > div .v-filterselect-input, .tetris-valo .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 36px;
}

.tetris-valo .v-treegrid-editor-cells > div .v-textfield-focus, .tetris-valo .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .tetris-valo .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.tetris-valo .v-treegrid-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.tetris-valo .v-treegrid-editor-cells > div .v-checkbox {
	margin: 0 8px 0 15px;
}

.tetris-valo .v-treegrid-editor-cells > div .v-checkbox  > input[type="checkbox"] {
	margin-left: 0;
}

.tetris-valo .v-treegrid-editor-cells > div .v-checkbox  > label {
	white-space: nowrap;
}

.tetris-valo .v-treegrid-editor-message > div:before {
	display: inline-block;
	color: #d94560;
	font-weight: 600;
	width: 15px;
	text-align: center;
	content: "!";
}

.tetris-valo .v-treegrid-editor-save, .tetris-valo .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #0066cc;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 5px;
	margin: 0;
	outline: none;
}

.tetris-valo .v-treegrid-editor-save:hover, .tetris-valo .v-treegrid-editor-cancel:hover {
	color: #0080ff;
}

.tetris-valo .v-treegrid-editor-save.v-disabled, .tetris-valo .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-treegrid-spacer {
	margin-top: -1px;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.tetris-valo .v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #E4E4E4;
	background-image: -webkit-linear-gradient(top, #E4E4E4 0%, #E4E4E4 100%);
	background-image: linear-gradient(to bottom,#E4E4E4 0%, #E4E4E4 100%);
}

.tetris-valo .v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.tetris-valo .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;
}

.tetris-valo .v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.tetris-valo .v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.tetris-valo .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;
}

.tetris-valo .v-treegrid-row-drag-top, .tetris-valo .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.tetris-valo .v-treegrid-row-drag-top:before, .tetris-valo .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #858585;
	pointer-events: none;
	border: none;
}

.tetris-valo .v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.tetris-valo .v-treegrid-row-drag-top:before {
	top: -1px;
}

.tetris-valo .v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.tetris-valo .v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #858585;
	pointer-events: none;
}

.tetris-valo .v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #6b6b6b;
}

.tetris-valo .v-treegrid-row-selected.v-treegrid-row-drag-top:before, .tetris-valo .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #6b6b6b;
}

.tetris-valo .v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #858585;
	z-index: 100;
}

.tetris-valo .v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.tetris-valo .v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.tetris-valo .v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.tetris-valo .v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.tetris-valo .v-treegrid-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.tetris-valo .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.tetris-valo .v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.tetris-valo .v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.tetris-valo .v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.tetris-valo .v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.tetris-valo .v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.tetris-valo .v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.tetris-valo .v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.tetris-valo .v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.tetris-valo .v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.tetris-valo .v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.tetris-valo .v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.tetris-valo .v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.tetris-valo .v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.tetris-valo .v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.tetris-valo .v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.tetris-valo .v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.tetris-valo .v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.tetris-valo .v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.tetris-valo .v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.tetris-valo .v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.tetris-valo .v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.tetris-valo .v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.tetris-valo .v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.tetris-valo .v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.tetris-valo .v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.tetris-valo .v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.tetris-valo .v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.tetris-valo .v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.tetris-valo .v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.tetris-valo .v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.tetris-valo .v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.tetris-valo .v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.tetris-valo .v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0081bd;
	display: none;
	pointer-events: none;
}

.tetris-valo .v-treegrid-cell-focused {
	position: static;
}

.tetris-valo .v-treegrid-cell-focused::before {
	display: none;
}

.tetris-valo .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.tetris-valo .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.tetris-valo .v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.tetris-valo .v-table {
	position: relative;
	background: #ffffff;
	color: #474747;
	overflow: hidden;
}

.tetris-valo .v-table-header table, .tetris-valo .v-table-footer table, .tetris-valo .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #dadada;
	box-shadow: 0 0 0 1px #dadada;
}

.tetris-valo .v-table-header-wrap, .tetris-valo .v-table-footer-wrap, .tetris-valo .v-table-header-drag {
	border: 1px solid #dadada;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	white-space: nowrap;
	font-size: 12px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tetris-valo .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.tetris-valo .v-table-footer-wrap {
	border-top: none;
}

.tetris-valo .v-table-footer td {
	border-left: 1px solid #dadada;
}

.tetris-valo .v-table-footer-container, .tetris-valo .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 30px;
	box-sizing: border-box;
}

.tetris-valo .v-table-footer-container {
	padding: 8px 10px 9px;
	float: right;
}

.tetris-valo [class^="v-table-header-cell"] {
	position: relative;
}

.tetris-valo .v-table-caption-container, .tetris-valo .v-table-header-drag {
	padding: 9px 10px 8px;
	border-left: 1px solid #dadada;
}

.tetris-valo .v-table-caption-container-align-right {
	padding-right: 3px;
}

.tetris-valo .v-table-resizer {
	height: 30px;
	width: 7px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -7px;
}

.tetris-valo .v-table-cell-content {
	border-left: 1px solid #dadada;
	overflow: hidden;
	height: 30px;
	vertical-align: middle;
}

.tetris-valo .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.tetris-valo .v-table-header td:first-child .v-table-caption-container, .tetris-valo .v-table-footer td:first-child {
	border-left-color: transparent;
}

.tetris-valo .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 10px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.tetris-valo .v-table-cell-wrapper  > .v-widget {
	margin: 3px -5px;
}

.tetris-valo .v-table-cell-wrapper  > .v-widget.v-label, .tetris-valo .v-table-cell-wrapper  > .v-widget.v-checkbox, .tetris-valo .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.tetris-valo .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.tetris-valo .v-table-body {
	border: 1px solid #dadada;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.tetris-valo .v-table-table {
	background-color: white;
	white-space: nowrap;
}

.tetris-valo .v-table-table td {
	border-top: 1px solid #dadada;
}

.tetris-valo .v-table-table tr:first-child > td {
	border-top: none;
}

.tetris-valo .v-table-row {
	background-color: white;
	cursor: pointer;
}

.tetris-valo .v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.tetris-valo .v-table-body-noselection .v-table-row, .tetris-valo .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.tetris-valo .v-table [class*="-row"].v-selected {
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	background-origin: border-box;
	color: #e6f2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.tetris-valo .v-table [class*="-row"].v-selected  + .v-selected {
	background: #0081bd;
}

.tetris-valo .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #0081bd;
}

.tetris-valo .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #06638e;
}

.tetris-valo .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.tetris-valo .v-table-header-cell-asc .v-table-sort-indicator, .tetris-valo .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 15px;
	height: 30px;
	line-height: 30px;
	margin-left: -15px;
}

.tetris-valo .v-table-header-cell-asc .v-table-sort-indicator:before, .tetris-valo .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.tetris-valo .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.tetris-valo .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.tetris-valo [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.tetris-valo .v-table-focus {
	outline: 1px solid #858585;
	outline-offset: -1px;
}

.tetris-valo .v-drag-element.v-table-focus, .tetris-valo .v-drag-element .v-table-focus {
	outline: none;
}

.tetris-valo .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -15px;
	z-index: 30000;
	line-height: 1;
}

.tetris-valo .v-table-focus-slot-right {
	border-right: 3px solid #858585;
	right: -2px;
	margin-left: -10px !important;
}

.tetris-valo .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #858585;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -10px;
}

.tetris-valo .v-table-column-selector {
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 15px;
	height: 15px;
	line-height: 15px;
	padding: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-radius: 0 0 0 0px;
	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;
}

.tetris-valo .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.tetris-valo .v-table-column-selector:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.tetris-valo .v-table-column-selector:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.tetris-valo .v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.tetris-valo .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.tetris-valo .v-on:before, .tetris-valo .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 5px;
}

.tetris-valo .v-on div, .tetris-valo .v-off div {
	display: inline;
}

.tetris-valo .v-on.v-disabled, .tetris-valo .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-off:before {
	visibility: hidden;
}

.tetris-valo tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.tetris-valo 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: 0px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.tetris-valo .v-table-body {
	position: relative;
	z-index: 1;
}

.tetris-valo .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 30px;
	line-height: 30px;
	margin: -15px 0 0 !important;
	text-align: center;
}

.tetris-valo .v-table-drag {
	overflow: visible;
}

.tetris-valo .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 2px rgba(133, 133, 133, 0.5);
	border-color: #858585;
}

.tetris-valo .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.tetris-valo .v-table-row-drag-middle .v-table-cell-content {
	background-color: #e6e6e6;
	color: #404040;
}

.tetris-valo .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #858585;
	height: 28px;
}

.tetris-valo .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.tetris-valo .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #858585;
	height: 29px;
}

.tetris-valo .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.tetris-valo .v-table-no-stripes .v-table-row, .tetris-valo .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.tetris-valo .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.tetris-valo .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 11px;
}

.tetris-valo .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.tetris-valo .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .tetris-valo .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 29px;
}

.tetris-valo .v-table-no-header .v-table-header-wrap {
	display: none;
}

.tetris-valo .v-table-borderless .v-table-header-wrap, .tetris-valo .v-table-borderless .v-table-footer-wrap, .tetris-valo .v-table-borderless .v-table-header-drag, .tetris-valo .v-table-borderless .v-table-body {
	border: none;
}

.tetris-valo .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #dedede;
}

.tetris-valo .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #dedede;
}

.tetris-valo .v-table-compact .v-table-header-wrap, .tetris-valo .v-table-compact .v-table-footer-wrap, .tetris-valo .v-table-compact .v-table-header-drag, .tetris-valo .v-table-small .v-table-header-wrap, .tetris-valo .v-table-small .v-table-footer-wrap, .tetris-valo .v-table-small .v-table-header-drag {
	font-size: 12px;
}

.tetris-valo .v-table-compact .v-table-footer-container, .tetris-valo .v-table-small .v-table-footer-container {
	padding: 6px 6px 7px;
}

.tetris-valo .v-table-compact .v-table-caption-container, .tetris-valo .v-table-compact .v-table-header-drag, .tetris-valo .v-table-small .v-table-caption-container, .tetris-valo .v-table-small .v-table-header-drag {
	padding-top: 7px;
	padding-bottom: 6px;
	padding-left: 5px;
	padding-right: 5px;
}

.tetris-valo .v-table-compact .v-table-caption-container-align-right, .tetris-valo .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.tetris-valo .v-table-compact .v-table-resizer, .tetris-valo .v-table-small .v-table-resizer {
	height: 26px;
}

.tetris-valo .v-table-compact .v-table-cell-content, .tetris-valo .v-table-small .v-table-cell-content {
	height: 26px;
}

.tetris-valo .v-table-compact .v-table-cell-wrapper, .tetris-valo .v-table-small .v-table-cell-wrapper {
	padding-left: 5px;
	padding-right: 5px;
}

.tetris-valo .v-table-compact .v-table-cell-wrapper  > .v-widget, .tetris-valo .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 1px -3px;
}

.tetris-valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .tetris-valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .tetris-valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .tetris-valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .tetris-valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .tetris-valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.tetris-valo .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .tetris-valo .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.tetris-valo .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .tetris-valo .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .tetris-valo .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .tetris-valo .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 26px;
	line-height: 26px;
}

.tetris-valo .v-table-compact .v-table-header-drag, .tetris-valo .v-table-small .v-table-header-drag {
	margin-top: -13px;
}

.tetris-valo .v-table-compact.v-treetable .v-table-cell-wrapper, .tetris-valo .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 14px;
}

.tetris-valo .v-table-compact.v-treetable .v-table-cell-content, .tetris-valo .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 5px;
	padding-right: 5px;
}

.tetris-valo .v-table-compact.v-treetable .v-table-cell-content:first-child, .tetris-valo .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 6px;
}

.tetris-valo .v-table-compact.v-treetable .v-table-footer-container, .tetris-valo .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 5px;
	padding-right: 5px;
}

.tetris-valo .v-table-compact .v-table-row-drag-top .v-table-cell-content, .tetris-valo .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .tetris-valo .v-table-small .v-table-row-drag-top .v-table-cell-content, .tetris-valo .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 25px;
}

.tetris-valo .v-table-small {
	font-size: 12px;
}

.tetris-valo .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 12px;
}

.tetris-valo .v-treetable [class*="caption-container"], .tetris-valo .v-treetable [class*="footer-container"], .tetris-valo .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.tetris-valo .v-treetable [class*="caption-container"], .tetris-valo .v-treetable [class*="footer-container"] {
	min-height: 13px;
}

.tetris-valo .v-treetable [class*="cell-wrapper"] {
	min-height: 14px;
}

.tetris-valo .v-treetable [class*="caption-container"] {
	padding-left: 10px;
}

.tetris-valo .v-treetable [class*="caption-container-align-right"] {
	padding-left: 17px;
}

.tetris-valo .v-treetable [class*="footer-container"] {
	padding-right: 10px;
}

.tetris-valo .v-treetable [class*="cell-content"] {
	padding-left: 10px;
	padding-right: 10px;
}

.tetris-valo .v-treetable [class*="cell-content"]:first-child {
	padding-left: 11px;
}

.tetris-valo .v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 15px !important;
	margin-left: -20px;
	text-align: center;
	cursor: pointer;
}

.tetris-valo .v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.tetris-valo .v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -5px;
	right: -5px;
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to right,#ffffff 0%, #ffffff 100%);
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.tetris-valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.tetris-valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -5px;
	bottom: -5px;
}

.tetris-valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
}

.tetris-valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.tetris-valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.tetris-valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 10px;
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to right,#ffffff 0%, #ffffff 100%);
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #e3e3e3;
	border-top-color: #c7c7c7;
	border-left-color: #c7c7c7;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 30px;
	margin-left: -1px;
	margin-top: -15px;
}

.tetris-valo .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 10px;
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 10px;
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #e3e3e3;
	border-top-color: #c7c7c7;
	border-left-color: #c7c7c7;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 0;
	margin-left: -15px;
	margin-top: -1px;
}

.tetris-valo .v-progressbar-wrapper {
	border-radius: 0px;
	height: 8px;
	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: 60px;
}

.tetris-valo .v-progressbar-indicator {
	border-radius: 0px;
	height: inherit;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	
	
	border: 1px solid #00699a;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 3px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.tetris-valo .v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.tetris-valo .v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 0px;
	height: inherit;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	
	
	border: 1px solid #00699a;
	box-sizing: border-box;
	max-width: 100%;
	width: 8px;
	vertical-align: top;
}

.tetris-valo .v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(133, 133, 133, 0.2);
	border-top-color: #858585;
	border-right-color: #858585;
	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;
}

.tetris-valo .v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.tetris-valo .v-slider {
	position: relative;
}

.tetris-valo .v-slider:focus {
	outline: none;
}

.tetris-valo .v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

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

.tetris-valo .v-slider-base {
	border-radius: 0px;
	height: 8px;
	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: 60px;
	height: 4px;
	margin: 13px 9px;
	white-space: nowrap;
	overflow: hidden;
	
}

.tetris-valo .v-slider-base:before {
	content: "";
	position: absolute;
	top: 13px;
	bottom: 13px;
	left: 9px;
	width: 0px;
	border-radius: 0px;
	border-left: 1px solid #00699a;
}

.tetris-valo .v-slider-base:after {
	border-radius: 0px;
	height: inherit;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	
	
	border: 1px solid #00699a;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.tetris-valo .v-has-width > .v-slider-base {
	min-width: 0;
}

.tetris-valo .v-slider-handle {
	margin-top: -13px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.tetris-valo .v-slider-handle:before {
	height: 30px;
	padding: 0 12px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 0px;
	border: 1px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom-color: #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
}

.tetris-valo .v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.tetris-valo .v-slider-handle:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.tetris-valo .v-slider-handle:before:focus:after {
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-slider-handle:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-slider-handle:after {
	border: 1px solid #d1d1d1;
	border-color: #858585;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.tetris-valo .v-slider-handle:before, .tetris-valo .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	position: absolute;
	z-index: 1;
	margin-top: 6px;
	margin-left: -9px;
}

.tetris-valo .v-slider-feedback {
	background-color: #ffffff;
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	
	padding: 4px 8px;
	border-radius: -1px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

.tetris-valo .v-slider-vertical {
	padding: 9px 0;
	height: 78px;
}

.tetris-valo .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: 4px;
	height: 100% !important;
	min-width: 0;
	margin: 0 13px;
}

.tetris-valo .v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 9px;
	left: 13px;
	right: 13px;
	width: auto;
	height: 0px;
	border-left: none;
	border-bottom: 1px solid #00699a;
}

.tetris-valo .v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(left, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to right,#0081bd 0%, #0081bd 100%);
}

.tetris-valo .v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 30px;
	display: block;
}

.tetris-valo .v-slider-vertical .v-slider-handle:before, .tetris-valo .v-slider-vertical .v-slider-handle:after {
	width: 18px;
	height: 18px;
	margin-top: -9px;
	margin-left: -7px;
}

.tetris-valo .v-slider-no-indicator .v-slider-base:before, .tetris-valo .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.tetris-valo .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.tetris-valo .v-tabsheet-spacertd {
	display: none !important;
}

.tetris-valo .v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.tetris-valo .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #e8e8e8;
	bottom: 0;
	left: 0;
	right: 0;
}

.tetris-valo .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.tetris-valo .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.tetris-valo .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.tetris-valo .v-tabsheet-tabitemcell .v-caption {
	margin-left: 15px;
	padding: 0 3px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	font-weight: 300;
	color: #6b6b6b;
	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;
}

.tetris-valo .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.tetris-valo .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 8px;
}

.tetris-valo .v-tabsheet-tabitemcell .v-caption:hover {
	color: #0081bd;
}

.tetris-valo .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.tetris-valo .v-tabsheet-tabitemcell:first-child .v-caption, .tetris-valo .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.tetris-valo .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.tetris-valo .v-tabsheet-tabitemcell:focus .v-caption {
	color: #0081bd;
}

.tetris-valo .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #0081bd;
	color: #0081bd;
}

.tetris-valo .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 18px;
}

.tetris-valo .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 3px;
}

.tetris-valo .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: 0px;
	color: #999999;
}

.tetris-valo .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #0081bd;
}

.tetris-valo .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #0081bd;
	color: #b5ddef;
}

.tetris-valo .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 15px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #ffffff 70%, rgba(255, 255, 255, 0) 100%);
	background-image: linear-gradient(to left,#ffffff 70%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.tetris-valo .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, #e8e8e8 70%, rgba(232, 232, 232, 0) 100%);
	background-image: linear-gradient(to left,#e8e8e8 70%, rgba(232, 232, 232, 0) 100%);
}

.tetris-valo .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 8px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #0081bd;
}

.tetris-valo .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #0081bd;
}

.tetris-valo .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.tetris-valo .v-tabsheet-scroller [class*="Next"] {
	padding-left: 4px;
}

.tetris-valo .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.tetris-valo .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 4px;
}

.tetris-valo .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.tetris-valo .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.tetris-valo .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;
}

.tetris-valo .v-tabsheet-deco {
	height: 16px !important;
	width: 16px !important;
	box-sizing: border-box;
	border: 2px solid rgba(133, 133, 133, 0.2);
	border-top-color: #858585;
	border-right-color: #858585;
	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: -23px;
	left: 50%;
	margin-left: -8px;
}

.tetris-valo .v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.tetris-valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .tetris-valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .tetris-valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.tetris-valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.tetris-valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.tetris-valo .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 3px;
	padding: 0 10px;
	background-color: #ffffff;
	border: 1px solid transparent;
	line-height: 29px;
	border-radius: 0px 0px 0 0;
	font-weight: 400;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	transition: background-color 160ms;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f7f7f7;
	border-bottom-color: #e8e8e8;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #ffffff;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 25px;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #e8e8e8;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #e8e8e8;
	border-bottom: none;
	padding-bottom: 1px;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #e8e8e8;
	border-top: none;
}

.tetris-valo .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.tetris-valo .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #e8e8e8;
	border-bottom: none;
	background: #ffffff;
	padding-top: 5px;
}

.tetris-valo .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 6px;
}

.tetris-valo .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.tetris-valo .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.tetris-valo .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.tetris-valo .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.tetris-valo .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 8px;
}

.tetris-valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1.2;
}

.tetris-valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.tetris-valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.tetris-valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 10px;
}

.tetris-valo .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.tetris-valo .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.tetris-valo .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.tetris-valo .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

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

.tetris-valo .v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 8px;
}

.tetris-valo .v-colorpicker-popup [class$="sliders"] {
	padding: 10px;
}

.tetris-valo .v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.tetris-valo .v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 42px;
}

.tetris-valo .v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -42px;
	width: 42px;
}

.tetris-valo .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 70px;
}

.tetris-valo .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -70px;
	width: 70px;
}

.tetris-valo .v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.tetris-valo .v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.tetris-valo .v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.tetris-valo .v-colorpicker-popup .resize-button-caption {
	display: none;
}

.tetris-valo .v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 8px 0;
	background-color: #ffffff;
	border-top: 1px solid #f2f2f2;
}

.tetris-valo .v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.tetris-valo .v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.tetris-valo .v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 8px;
	display: inline-flex;
}

.tetris-valo .v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.tetris-valo .v-colorpicker {
	width: auto;
}

.tetris-valo .v-colorpicker-button-color {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border-radius: -1px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 18px;
}

.tetris-valo .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 15px;
}

.tetris-valo .v-panel {
	background: white;
	color: #474747;
	border-radius: 0px;
	border: 1px solid #dedede;
	
	
	overflow: visible !important;
}

.tetris-valo .v-panel-caption {
	box-sizing: border-box;
	padding: 0 10px;
	line-height: 29px;
	border-bottom: 1px solid #dedede;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	color: #474747;
	font-weight: 400;
	font-size: 13px;
	
	
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: -1px -1px 0 0;
}

.tetris-valo .v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.tetris-valo .v-panel-content  > .v-margin-top {
	padding-top: 10px;
}

.tetris-valo .v-panel-content  > .v-margin-right {
	padding-right: 10px;
}

.tetris-valo .v-panel-content  > .v-margin-bottom {
	padding-bottom: 10px;
}

.tetris-valo .v-panel-content  > .v-margin-left {
	padding-left: 10px;
}

.tetris-valo .v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 10px;
	border-bottom: none;
}

.tetris-valo .v-panel-well {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset false;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset false;
	border-radius: 0px;
	border: 1px solid #d1d1d1;
}

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

.tetris-valo .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.tetris-valo .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e8e8e8;
	border-color: rgba(209, 209, 209, 0.5);
}

.tetris-valo .v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #ffffff;
	left: 0;
	right: 0;
}

.tetris-valo .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.tetris-valo .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.tetris-valo .v-panel-caption.v-horizontallayout .v-label {
	line-height: 30px;
}

.tetris-valo .v-accordion {
	background: white;
	color: #474747;
	border-radius: 0px;
	border: 1px solid #dedede;
	
	
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	overflow: hidden;
}

.tetris-valo .v-accordion-item {
	position: relative;
}

.tetris-valo .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.tetris-valo .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.tetris-valo .v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #dedede;
}

.tetris-valo .v-accordion-item-caption {
	border-radius: inherit;
}

.tetris-valo .v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 10px;
	line-height: 29px;
	border-bottom: 1px solid #dedede;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 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: #d1d1d1;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.tetris-valo .v-accordion-item-caption  > .v-caption:hover:before, .tetris-valo .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.tetris-valo .v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.tetris-valo .v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.tetris-valo .v-accordion-item-content {
	-webkit-box-shadow: inset false;
	box-shadow: inset false;
	background-color: white;
	box-sizing: border-box;
}

.tetris-valo .v-accordion-item-content  > .v-margin-top {
	padding-top: 10px;
}

.tetris-valo .v-accordion-item-content  > .v-margin-right {
	padding-right: 10px;
}

.tetris-valo .v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 10px;
}

.tetris-valo .v-accordion-item-content  > .v-margin-left {
	padding-left: 10px;
}

.tetris-valo .v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-accordion-borderless  > .v-accordion-item, .tetris-valo .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .tetris-valo .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.tetris-valo .v-select-twincol {
	white-space: normal;
}

.tetris-valo .v-select-twincol select {
	border: 1px solid #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	color: #474747;
}

.tetris-valo .v-select-twincol select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-select-twincol .v-textfield, .tetris-valo .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 8px;
}

.tetris-valo .v-select-twincol .v-nativebutton {
	margin-left: 8px;
}

.tetris-valo .v-select-twincol-caption-left, .tetris-valo .v-select-twincol-caption-right {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
}

.tetris-valo .v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.tetris-valo .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: 8px;
	right: 8px;
	top: 29px;
	padding: 0;
	text-align: center;
}

.tetris-valo .v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.tetris-valo .v-select-twincol-buttons .v-button-caption {
	display: none;
}

.tetris-valo .v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.tetris-valo .v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.tetris-valo .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.tetris-valo .v-select-twincol-error .v-select-twincol-options, .tetris-valo .v-select-twincol-error .v-select-twincol-selections {
	border-color: #d94560 !important;
	background: #fefbfc;
	color: #652934;
}

.tetris-valo .v-select-twincol-error-info .v-select-twincol-options, .tetris-valo .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.tetris-valo .v-select-twincol-error-warning .v-select-twincol-options, .tetris-valo .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.tetris-valo .v-select-twincol-error-error .v-select-twincol-options, .tetris-valo .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.tetris-valo .v-select-twincol-error-critical .v-select-twincol-options, .tetris-valo .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.tetris-valo .v-select-twincol-error-system .v-select-twincol-options, .tetris-valo .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.tetris-valo .v-select select {
	border: 1px solid #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	color: #474747;
}

.tetris-valo .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-select-select {
	display: block;
}

.tetris-valo .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.tetris-valo .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.tetris-valo .v-select-error .v-select-select {
	border-color: #d94560 !important;
	background: #fefbfc;
	color: #652934;
}

.tetris-valo .v-calendar-header-day {
	font-weight: 400;
	text-align: center;
	padding: 6px 0;
}

.tetris-valo .v-calendar-header-week .v-calendar-back, .tetris-valo .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) ;
}

.tetris-valo .v-calendar-header-week .v-calendar-back:focus, .tetris-valo .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.tetris-valo .v-calendar-header-week .v-calendar-back:hover, .tetris-valo .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.tetris-valo .v-calendar-header-week .v-calendar-back:active, .tetris-valo .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.tetris-valo .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.tetris-valo .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.tetris-valo .v-calendar-month td {
	vertical-align: top;
}

.tetris-valo .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.tetris-valo .v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.tetris-valo .v-calendar-bottom-spacer, .tetris-valo .v-calendar-spacer, .tetris-valo .v-calendar-bottom-spacer-empty {
	height: 17px;
	margin-bottom: 3px;
}

.tetris-valo .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 4px;
	cursor: pointer;
}

.tetris-valo .v-calendar-bottom-spacer:hover {
	color: #858585;
}

.tetris-valo .v-calendar-day-number {
	line-height: 20px;
	font-size: 14px;
	text-align: right;
	margin: 0 4px;
	white-space: nowrap;
	border-top: 1px solid #f7f7f7;
	cursor: pointer;
}

.tetris-valo .v-calendar-day-number:hover {
	color: #858585;
}

.tetris-valo .v-calendar-month-day-today {
	background: #f8f8f8;
}

.tetris-valo .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 400;
	color: #858585;
	border-top: 2px solid #858585;
	line-height: 19px;
	margin: 0;
	padding: 0 4px;
}

.tetris-valo .v-calendar-month-day-selected {
	background-color: #e5f2f8;
}

.tetris-valo .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

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

.tetris-valo .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e6e6e6;
}

.tetris-valo .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 19px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.tetris-valo .v-calendar-header-week td {
	vertical-align: middle !important;
}

.tetris-valo .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.tetris-valo .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.tetris-valo .v-calendar-time {
	text-align: right;
	padding-right: 8px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.tetris-valo .v-calendar-day-times, .tetris-valo .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.tetris-valo .v-calendar-day-times:focus, .tetris-valo .v-calendar-day-times-today:focus {
	outline: none;
}

.tetris-valo .v-calendar .v-datecellslot, .tetris-valo .v-calendar .v-datecellslot-even {
	border-top: 1px solid #e8e8e8;
}

.tetris-valo .v-calendar .v-datecellslot:first-child, .tetris-valo .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.tetris-valo .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.tetris-valo .v-calendar .v-datecellslot, .tetris-valo .v-calendar .v-datecellslot-even {
	margin-right: 4px;
}

.tetris-valo .v-calendar-current-time {
	background: #858585;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-calendar-current-time:before {
	content: "\2022";
	color: #858585;
	font-size: 22px;
	margin-left: -0.07em;
}

.tetris-valo .v-calendar .v-daterange {
	position: relative;
}

.tetris-valo .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #0081bd;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.tetris-valo .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 0px;
}

.tetris-valo .v-calendar-event:focus {
	outline: none;
}

.tetris-valo .v-calendar-event-month {
	padding: 0 4px;
	box-sizing: border-box;
	margin-bottom: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 17px;
	line-height: 17px;
}

.tetris-valo .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 17px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.tetris-valo .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.tetris-valo .v-calendar-event-all-day {
	padding: 0 4px;
	box-sizing: border-box;
	height: 17px;
	line-height: 17px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.tetris-valo .v-calendar-event-all-day:before {
	content: "";
}

.tetris-valo .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.tetris-valo .v-calendar-event-start.v-calendar-event-continued-to, .tetris-valo .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.tetris-valo .v-calendar-event-caption {
	font-weight: 500;
	line-height: 1.2;
	padding: 4px 0;
	position: absolute;
	overflow: hidden;
	right: 8px;
	left: 4px;
	bottom: 0;
	top: 0;
}

.tetris-valo .v-calendar-event-caption span {
	font-weight: 300;
	white-space: nowrap;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 1px;
	border: 1px solid #ffffff;
	padding-top: 3px;
	margin-right: 4px;
}

.tetris-valo .v-calendar-event-month:before {
	color: #00ace0;
}

.tetris-valo .v-calendar-event-all-day {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
	color: #00ace0;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
}

.tetris-valo .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.tetris-valo .v-calendar-event-all-day[class*="color2"] {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
	color: #2d9f19;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
}

.tetris-valo .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.tetris-valo .v-calendar-event-all-day[class*="color3"] {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
	color: #d18100;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
}

.tetris-valo .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.tetris-valo .v-calendar-event-all-day[class*="color4"] {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
	color: #ce3812;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
}

.tetris-valo .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.tetris-valo .v-calendar-event-all-day[class*="color5"] {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
	color: #2d55cd;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.tetris-valo .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
}

.tetris-valo .v-calendar.v-disabled * {
	cursor: default;
}

.tetris-valo .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

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

.tetris-valo .v-label-undef-w {
	white-space: nowrap;
}

.tetris-valo h1, .tetris-valo .v-label-h1, .tetris-valo h2, .tetris-valo .v-label-h2, .tetris-valo h3, .tetris-valo .v-label-h3 {
	line-height: 1.1;
	font-weight: 200;
	color: #141414;
}

.tetris-valo h1, .tetris-valo .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.tetris-valo h2, .tetris-valo .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.tetris-valo h3, .tetris-valo .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.tetris-valo h4, .tetris-valo .v-label-h4 {
	line-height: 1.1;
	font-weight: 500;
	font-size: 12px;
	color: #424242;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.tetris-valo .v-csslayout  > h1:first-child, .tetris-valo .v-csslayout  > h2:first-child, .tetris-valo .v-csslayout  > h3:first-child, .tetris-valo .v-csslayout  > h4 > .v-label-h1:first-child, .tetris-valo .v-csslayout  > .v-label-h2:first-child, .tetris-valo .v-csslayout  > .v-label-h3:first-child, .tetris-valo .v-csslayout  > .v-label-h4:first-child {
	margin-top: 14px;
}

.tetris-valo .v-verticallayout > .v-slot:first-child h1, .tetris-valo .v-verticallayout > .v-slot:first-child .v-label-h1, .tetris-valo .v-verticallayout > .v-slot:first-child h2, .tetris-valo .v-verticallayout > .v-slot:first-child .v-label-h2, .tetris-valo .v-verticallayout > .v-slot:first-child h3, .tetris-valo .v-verticallayout > .v-slot:first-child .v-label-h3, .tetris-valo .v-verticallayout > .v-slot:first-child h4, .tetris-valo .v-verticallayout > .v-slot:first-child .v-label-h4, .tetris-valo .v-verticallayout > div > .v-slot:first-child h1, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-label-h1, .tetris-valo .v-verticallayout > div > .v-slot:first-child h2, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-label-h2, .tetris-valo .v-verticallayout > div > .v-slot:first-child h3, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-label-h3, .tetris-valo .v-verticallayout > div > .v-slot:first-child h4, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 14px;
}

.tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .tetris-valo .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .tetris-valo .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.tetris-valo h1.no-margin, .tetris-valo .v-label-h1.no-margin, .tetris-valo h2.no-margin, .tetris-valo .v-label-h2.no-margin, .tetris-valo h3.no-margin, .tetris-valo .v-label-h3.no-margin, .tetris-valo h4.no-margin, .tetris-valo .v-label-h4.no-margin {
	margin: 0 !important;
}

.tetris-valo .v-label-colored {
	color: #0081bd;
}

.tetris-valo .v-label-large {
	font-size: 17px;
}

.tetris-valo .v-label-small {
	font-size: 12px;
}

.tetris-valo .v-label-tiny {
	font-size: 11px;
}

.tetris-valo .v-label-huge {
	font-size: 23px;
}

.tetris-valo .v-label-bold {
	font-weight: 500;
}

.tetris-valo .v-label-light {
	font-weight: 200;
	color: gray;
}

.tetris-valo .v-label-align-right {
	text-align: right;
}

.tetris-valo .v-label-align-center {
	text-align: center;
}

.tetris-valo .v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(133, 133, 133, 0.2);
	border-top-color: #858585;
	border-right-color: #858585;
	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;
}

.tetris-valo .v-label-success, .tetris-valo .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #20c52e;
	border-radius: 0px;
	padding: 6px 15px 6px 30px;
	font-weight: 400;
	font-size: 13px;
}

.tetris-valo .v-label-success:before, .tetris-valo .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -15px;
	color: #20c52e;
}

.tetris-valo .v-label-failure {
	border-color: #d94560;
}

.tetris-valo .v-label-failure:before {
	content: "\f05e";
	color: #d94560;
}

.tetris-valo [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.tetris-valo .v-ddwrapper {
	position: relative;
}

.tetris-valo .v-ddwrapper-over:before, .tetris-valo .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #858585;
}

.tetris-valo .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.tetris-valo .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.tetris-valo .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.tetris-valo .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.tetris-valo .no-vertical-drag-hints .v-ddwrapper-over-top:before, .tetris-valo .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.tetris-valo .no-vertical-drag-hints .v-ddwrapper-over-top:after, .tetris-valo .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 0px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #c2c2c2;
}

.tetris-valo .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .tetris-valo .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.tetris-valo .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .tetris-valo .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 0px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #c2c2c2;
}

.tetris-valo .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .tetris-valo .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.tetris-valo .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .tetris-valo .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 0px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #c2c2c2;
}

.tetris-valo .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .tetris-valo .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.tetris-valo .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .tetris-valo .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 0px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #c2c2c2;
}

.tetris-valo .v-ddwrapper-over-middle:after, .tetris-valo .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 0px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #c2c2c2;
}

.tetris-valo .no-box-drag-hints.v-ddwrapper:after, .tetris-valo .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.tetris-valo button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.tetris-valo .v-nativebutton {
	-webkit-touch-callout: none;
}

.tetris-valo .v-select select {
	border: 1px solid #d1d1d1;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	color: #474747;
}

.tetris-valo .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
	box-shadow: 0 0 0 0px rgba(133, 133, 133, 0.5);
}

.tetris-valo .v-select-select {
	display: block;
}

.tetris-valo .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.tetris-valo .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.tetris-valo .v-select-error .v-select-select {
	border-color: #d94560 !important;
	background: #fefbfc;
	color: #652934;
}

.tetris-valo .v-popupview {
	cursor: pointer;
	color: #0066cc;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.tetris-valo .v-popupview:hover {
	color: #0080ff;
}

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

.tetris-valo .v-popupview-popup {
	padding: 3px 3px;
	border-radius: 0px;
	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.09);
	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.09);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 10px;
}

.tetris-valo .v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 10px;
}

.tetris-valo .v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 10px;
}

.tetris-valo .v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 10px;
}

.tetris-valo .v-popupview-loading {
	margin: 10px 10px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(133, 133, 133, 0.2);
	border-top-color: #858585;
	border-right-color: #858585;
	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;
}

.tetris-valo .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: 30px;
	border-radius: 0px;
	padding: 0;
	border: 1px solid #d1d1d1;
	background: white;
	color: #474747;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	overflow: hidden;
}

.tetris-valo .v-richtextarea[class*="prompt"] {
	color: #a3a3a3;
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
	
	
	border-bottom: 1px solid #d1d1d1;
	color: #474747;
}

.tetris-valo .v-richtextarea .gwt-ToggleButton, .tetris-valo .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 30px;
	width: 30px;
	text-align: center;
	outline: none;
}

.tetris-valo .v-richtextarea .gwt-ToggleButton:hover, .tetris-valo .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.tetris-valo .v-richtextarea .gwt-ToggleButton-down, .tetris-valo .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%);
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 11px;
	padding: 0 8px 8px 0;
}

.tetris-valo .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 8px 0 0 8px;
}

.tetris-valo .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.tetris-valo .v-richtextarea-readonly {
	padding: 4px 5px;
	background: transparent;
}

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

.tetris-valo .v-upload-immediate .v-button {
	width: 100%;
}

.tetris-valo .v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 30px;
	text-align: right;
	border: none;
	background: transparent;
}

.tetris-valo .v-Notification.v-position-top {
	top: 10px;
}

.tetris-valo .v-Notification.v-position-right {
	right: 10px;
}

.tetris-valo .v-Notification.v-position-bottom {
	bottom: 10px;
}

.tetris-valo .v-Notification.v-position-left {
	left: 10px;
}

.tetris-valo .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.tetris-valo .v-Notification-animate-out.v-position-top, .tetris-valo .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;
}

.tetris-valo .v-Notification {
	border-radius: 0px;
	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: 15px 18px;
}

.tetris-valo .v-Notification .v-Notification-caption {
	color: #858585;
	font-size: 17px;
	line-height: 1;
}

.tetris-valo .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.tetris-valo .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.tetris-valo .v-Notification-description, .tetris-valo .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.tetris-valo .v-Notification-caption ~ .v-Notification-description, .tetris-valo .v-Notification-caption ~ .v-Notification-details {
	margin-left: 21px;
}

.tetris-valo .v-icon + .v-Notification-caption {
	margin-left: 14px;
}

.tetris-valo .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: 10px 12px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 20px;
}

.tetris-valo .v-Notification-system .v-Notification-description, .tetris-valo .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.tetris-valo .v-Notification-system.v-position-top {
	top: 0;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-Notification-system.v-position-bottom {
	bottom: 0;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.tetris-valo .v-Notification-system .v-Notification-description, .tetris-valo .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.tetris-valo .v-Notification-system u {
	text-decoration: none;
}

.tetris-valo .v-Notification.tray {
	text-align: left;
}

.tetris-valo .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.tetris-valo .v-Notification.warning {
	background: #FFF3D2;
}

.tetris-valo .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.tetris-valo .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.tetris-valo .v-Notification.error {
	background: #d94560;
	font-weight: 400;
	-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: 48px;
	overflow: hidden !important;
	cursor: pointer;
}

.tetris-valo .v-Notification.error .v-Notification-caption {
	color: white;
}

.tetris-valo .v-Notification.error .v-Notification-description {
	color: #f1e0e3;
}

.tetris-valo .v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 10px;
	width: 20px;
	height: 20px;
	line-height: 19px;
	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;
}

.tetris-valo .v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.tetris-valo .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;
}

.tetris-valo .v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.tetris-valo .v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.tetris-valo .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 20px;
}

.tetris-valo .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.tetris-valo .v-Notification.dark .v-Notification-description, .tetris-valo .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.tetris-valo .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: 10px 12px;
}

.tetris-valo .v-Notification.bar .v-Notification-description, .tetris-valo .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.tetris-valo .v-Notification.bar.v-position-top {
	top: 0;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.tetris-valo .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;
}

.tetris-valo .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;
}

.tetris-valo .v-Notification.small {
	padding: 9px 11px;
}

.tetris-valo .v-Notification.small .v-Notification-caption {
	font-size: 14px;
}

.tetris-valo .v-Notification.small .v-Notification-description {
	font-size: 12px;
}

.tetris-valo .v-Notification.critical-error {
	background: #d94560;
	font-weight: 400;
	-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);
}

.tetris-valo .v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.tetris-valo .v-Notification.critical-error .v-Notification-description {
	color: #f1e0e3;
}

.tetris-valo .v-Notification.closable {
	padding-right: 48px;
	overflow: hidden !important;
	cursor: pointer;
}

.tetris-valo .v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 10px;
	width: 20px;
	height: 20px;
	line-height: 19px;
	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;
}

.tetris-valo .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.tetris-valo .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;
}

.tetris-valo .v-Notification.closable.dark:after, .tetris-valo .v-Notification.closable.critical-error:after, .tetris-valo .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.tetris-valo .v-Notification.closable.dark:active:after, .tetris-valo .v-Notification.closable.critical-error:active:after, .tetris-valo .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.tetris-valo .v-Notification.closable.tray:after {
	top: 13px;
	margin-top: 0;
}

.tetris-valo .v-Notification.success, .tetris-valo .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #20c52e;
}

.tetris-valo .v-Notification.success .v-Notification-caption, .tetris-valo .v-Notification.failure .v-Notification-caption {
	color: #20c52e;
	font-weight: 400;
}

.tetris-valo .v-Notification.success .v-Notification-caption:before, .tetris-valo .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.tetris-valo .v-Notification.success.bar, .tetris-valo .v-Notification.failure.bar {
	margin: -2px !important;
}

.tetris-valo .v-Notification.failure {
	border-color: #d94560;
}

.tetris-valo .v-Notification.failure .v-Notification-caption {
	color: #d94560;
}

.tetris-valo .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.tetris-valo .valo-menu {
	height: 100%;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(right, white 0%, #ffffff 8px);
	background-image: linear-gradient(to left,white 0%, #ffffff 8px);
	color: gray;
	font-size: 13px;
	line-height: 24px;
	border-right: 1px solid #d1d1d1;
	white-space: nowrap;
}

.tetris-valo .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.tetris-valo .valo-menu-part {
	border-left: 1px solid #e3e3e3;
	height: 100%;
	padding-bottom: 30px;
	overflow: auto;
}

.tetris-valo .valo-menu-part:first-child {
	border-left: none;
}

.tetris-valo .valo-menu-title, .tetris-valo .valo-menu-subtitle, .tetris-valo .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.tetris-valo .valo-menu-title .valo-menu-badge, .tetris-valo .valo-menu-subtitle .valo-menu-badge, .tetris-valo .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 15px;
}

.tetris-valo .valo-menu-title {
	line-height: 1.2;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 10px 15px;
	font-size: 13px;
	border-bottom: 1px solid #00699a;
	
	
	text-align: center;
}

.tetris-valo .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #00699a;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.tetris-valo .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	
	
	text-shadow: inherit;
	font-size: 14px;
	border-color: inherit;
}

.tetris-valo .valo-menu-title h1, .tetris-valo .valo-menu-title .v-label-h1, .tetris-valo .valo-menu-title h2, .tetris-valo .valo-menu-title .v-label-h2, .tetris-valo .valo-menu-title h3, .tetris-valo .valo-menu-title .v-label-h3, .tetris-valo .valo-menu-title h4, .tetris-valo .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.tetris-valo .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: 15px 6px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.tetris-valo .v-menubar-user-menu:focus:after {
	display: none;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 0px;
	color: #0081bd;
	padding: 0 10px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem:first-child, .tetris-valo .v-menubar-user-menu .v-menubar-menuitem:last-child, .tetris-valo .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 0px;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #00a4f0;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem-checked, .tetris-valo .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #d1d1d1;
	color: #0081bd;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .tetris-valo .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #e6f2f8;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #e6f2f8;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem-disabled, .tetris-valo .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.tetris-valo .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.tetris-valo .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 45px;
	height: 45px;
	border-radius: 24px;
	
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #d1d1d1;
}

.tetris-valo .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.tetris-valo .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.tetris-valo .valo-menu-subtitle {
	color: #ababab;
	margin: 6px 0 6px 15px;
	border-bottom: 1px solid #d8d8d8;
}

.tetris-valo .valo-menu-subtitle [class*="badge"] {
	color: #236482;
}

.tetris-valo .valo-menuitems {
	display: block;
}

.tetris-valo .valo-menu-item {
	outline: none;
	font-weight: 400;
	padding: 0 30px 0 15px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-shadow: 0 -2px 0 rgba(255, 255, 255, 0.05);
	-webkit-transition: background-color 300ms, color 60ms;
	-moz-transition: background-color 300ms, color 60ms;
	transition: background-color 300ms, color 60ms;
}

.tetris-valo .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 15px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.tetris-valo .valo-menu-item [class*="badge"] {
	color: #0081bd;
}

.tetris-valo .valo-menu-item.selected {
	background: white;
}

.tetris-valo .valo-menu-item.selected .v-icon {
	color: #0081bd;
}

.tetris-valo .valo-menu-item.selected [class*="badge"] {
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	color: #b5ddef;
}

.tetris-valo .valo-menu-item:focus, .tetris-valo .valo-menu-item:hover, .tetris-valo .valo-menu-item.selected {
	color: black;
}

.tetris-valo .valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 15px;
	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)));
}

.tetris-valo .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.tetris-valo .valo-menu-item [class*="badge"] {
	background-color: white;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 3px 5px;
	min-width: 9px;
	text-align: center;
	top: 2.5px;
	border-radius: 0px;
}

.tetris-valo .valo-menu-part.large-icons {
	background-color: #ffffff;
	min-width: 60px;
	max-width: 90px;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-title {
	font-size: 11px;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.tetris-valo .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.tetris-valo .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 23px;
	height: 23px;
}

.tetris-valo .valo-menu-part.large-icons [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 20px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #f0f0f0;
	font-size: 11px;
	
}

.tetris-valo .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.tetris-valo .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 10px;
	text-align: center;
	border-top: 1px solid #efefef;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.tetris-valo .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;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item.selected {
	background: white;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #f7f7f7;
}

.tetris-valo .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #ffffff;
}

.tetris-valo .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 36px !important;
	height: 36px;
	border-radius: 0px;
	text-align: center;
	background-color: #0081bd;
	background-image: -webkit-linear-gradient(top, #0081bd 0%, #0081bd 100%);
	background-image: linear-gradient(to bottom,#0081bd 0%, #0081bd 100%);
	color: white;
	font-size: 20px;
	line-height: 36px;
	margin: 15px auto;
	
	
}

.tetris-valo .valo-menu-logo:focus {
	outline: none;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #ffffff;
	min-width: 60px;
	max-width: 90px;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 11px;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 23px;
	height: 23px;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 20px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #f0f0f0;
	font-size: 11px;
	
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 10px;
	text-align: center;
	border-top: 1px solid #efefef;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.tetris-valo .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;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: white;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #f7f7f7;
}

.tetris-valo .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #ffffff;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 30px;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 30px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.tetris-valo .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: 30px;
	color: #72c5eb;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 29px;
	white-space: nowrap;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu img.v-icon {
	display: inline-block;
	margin: 0 5px 0 0;
	width: 15px;
	height: 15px;
	border-radius: 8px;
	border: none;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(right, white 0%, #ffffff 8px);
	background-image: linear-gradient(to left,white 0%, #ffffff 8px);
	color: gray;
	font-size: 13px;
	line-height: 24px;
	border-right: 1px solid #d1d1d1;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 30px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 15px 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;
}

.tetris-valo .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .tetris-valo .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%);
}

.tetris-valo .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.tetris-valo .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 15px;
	overflow: hidden;
}

.tetris-valo .v-orderedlayout-margin-top, .tetris-valo .v-horizontallayout-margin-top, .tetris-valo .v-verticallayout-margin-top, .tetris-valo .v-layout.v-margin-top {
	padding-top: 10px;
}

.tetris-valo .v-orderedlayout-margin-right, .tetris-valo .v-horizontallayout-margin-right, .tetris-valo .v-verticallayout-margin-right, .tetris-valo .v-layout.v-margin-right {
	padding-right: 10px;
}

.tetris-valo .v-orderedlayout-margin-bottom, .tetris-valo .v-horizontallayout-margin-bottom, .tetris-valo .v-verticallayout-margin-bottom, .tetris-valo .v-layout.v-margin-bottom {
	padding-bottom: 10px;
}

.tetris-valo .v-orderedlayout-margin-left, .tetris-valo .v-horizontallayout-margin-left, .tetris-valo .v-verticallayout-margin-left, .tetris-valo .v-layout.v-margin-left {
	padding-left: 10px;
}

.tetris-valo .tightMargin {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 2px;
	padding-right: 2px;
}

.tetris-valo .tetris-vertical-layout .v-spacing {
	height: 10px;
}

.tetris-valo .v-horizontallayout .v-slot .v-checkbox {
	vertical-align: middle;
}

.tetris-valo .v-horizontallayout .v-slot .v-label {
	vertical-align: middle;
}

.tetris-valo .v-horizontallayout .v-slot-vertical-line {
	vertical-align: middle;
}

.tetris-valo .tetris-form-horizontal-layout-columns .v-spacing {
	width: 40px;
}

.tetris-valo .tetris-form-horizontal-layout-columns.v-layout.v-margin-left {
	padding-left: 20px;
}

.tetris-valo .tetris-form-horizontal-layout-columns.v-layout.v-margin-bottom {
	padding-bottom: 20px;
}

.tetris-valo .tetris-form-horizontal-layout-columns.v-layout.v-margin-right {
	padding-right: 20px;
}

.tetris-valo .tetris-form-horizontal-layout-columns.v-layout.v-margin-top {
	padding-top: 20px;
}

.tetris-valo .backColorYellow {
	background-color: #ffea84;
}

.tetris-valo .tetris-form-borders .v-formlayout-captioncell {
	vertical-align: top;
}

.tetris-valo .tetris-form-borders  > table {
	padding: 0;
	border-spacing: 0;
	position: relative;
}

.tetris-valo .tetris-form-borders  > table > tbody > tr > td {
	padding-top: 0;
	border-bottom-style: solid;
	border-bottom-color: #BCBCBC;
	border-bottom-width: 1px;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="lastrow"] > td {
	border-bottom: none;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-select-optiongroup > .v-checkbox {
	padding-top: 0px;
	padding-left: 0px;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield {
	padding-bottom: 5px;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"]  > .label-field {
	padding-bottom: 5px;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"]  > .label-field .v-label {
	line-height: normal !important;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-select-optiongroup > .v-radiobutton {
	padding-left: 0px;
	padding-top: 0px;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-select-optiongroup > .v-radiobutton  > label {
	padding-left: 3px;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield {
	margin-bottom: 5px;
}

.tetris-valo .tetris-form-borders  > table > tbody > [class*="row"] > [class*="contentcell"] .v-flexibleoptiongroupitemcomponent > .v-radiobutton > input {
	vertical-align: middle;
}

.tetris-valo [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 10px;
}

.tetris-valo [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 10px;
}

.tetris-valo [class*="spacing"] > tbody > [class*="firstrow"] > td {
	padding-top: 10px !important;
}

.tetris-valo .v-formlayout .v-formlayout-row .v-formlayout-captioncell {
	text-align: right;
	white-space: nowrap;
}

.tetris-valo .horizontalFormLayoutStyle tr {
	float: left;
	padding-left: 10px;
}

.tetris-valo .horizontalFormLayoutStyle tr .v-checkbox {
	margin-top: 3px !important;
}

.tetris-valo .no-margin {
	margin: 0 !important;
}

.tetris-valo .centered {
	text-align: center;
}

.tetris-valo .box-red {
	background-color: red;
}

.tetris-valo .box-blue {
	background-color: blue;
}

.tetris-valo .box-green {
	background-color: green;
}

.tetris-valo .box-yellow {
	background-color: yellow;
}

.tetris-valo .box-violet {
	background-color: violet;
}

.tetris-valo .box-black {
	background-color: black;
}

.tetris-valo .box-white {
	background-color: white;
}

.tetris-valo .box-grey {
	background-color: grey;
}

.tetris-valo .box-light-grey {
	background-color: #EEEEEE;
}

.tetris-valo .box-light-blue {
	background-color: #D3F0FE;
}

.tetris-valo .border-black, .tetris-valo .border-blue, .tetris-valo .border-red, .tetris-valo .border-default {
	border-width: 1px;
	border-style: solid;
}

.tetris-valo .border-black {
	border-color: #000000;
}

.tetris-valo .border-blue {
	border-color: #0000ff;
}

.tetris-valo .border-red {
	border-color: #CC0000;
}

.tetris-valo .border-default {
	border-color: #BCBCBC;
}

.tetris-valo .tetris-button .v-popup-indicator, .tetris-valo .tetris-image-button .v-popup-indicator {
	display: none !important;
}

.tetris-valo .vertical-line {
	border-left-style: solid;
	border-left-width: 1px;
	border-left-color: #D7D7D7;
}

.tetris-valo .linkplainbutton .v-button-caption {
	text-decoration: none;
}

.tetris-valo .linkplainbuttonselected .v-button-caption {
	font-weight: bold;
}

.tetris-valo .tetris-text-centered {
	text-align: center;
}

.tetris-valo .visibility-hidden {
	visibility: hidden;
}

.tetris-valo .tetris-label-past-background {
	background-color: #888888;
}

.tetris-valo .tetris-label-present-background {
	background-color: #339900;
}

.tetris-valo .tetris-label-future-background {
	background-color: #FF9900;
}

.tetris-valo .tetris-bold {
	font-weight: bold;
}

.tetris-valo .clear-cancel {
	color: #b53535 !important;
}

.tetris-valo .legendItem {
	padding-left: 15px;
	display: inline;
}

.tetris-valo .tetris-padding-10 {
	padding-left: 10px;
}

.tetris-valo .tetris-padding-5-top-and-bottom {
	padding-top: 5px;
	padding-bottom: 5px;
}

.tetris-valo .tetris-padding-3-top-and-bottom {
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 4px;
}

.tetris-valo .tetris-top-padding-off {
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}

.tetris-valo .bubble-top > div {
	box-shadow: -2px -2px 0px #aaaaaa;
}

.tetris-valo .bubble-bottom > div {
	box-shadow: 2px 2px 0px #aaaaaa;
}

.tetris-valo .bubble-left > div {
	box-shadow: -2px 2px 0px #aaaaaa;
}

.tetris-valo .bubble-right > div {
	box-shadow: 2px 2px 0px #aaaaaa;
}

.tetris-valo .bubble-fields .text-bold {
	font-weight: bold;
}

.tetris-valo .bubble-fields .text-underline {
	text-decoration: underline;
}

.tetris-valo .filter-bar {
	background: #EFEFEF;
}

.tetris-valo .bottom-bar {
	padding-right: 10px;
	padding-bottom: 5px;
}

.tetris-valo .section-header {
	background-color: #F2F2F2;
	text-align: center;
	font-weight: bold;
	font-size: small;
	padding: 10px 10px 5px 10px;
}

.tetris-valo .inboundOutbound {
	background-color: white;
}

.tetris-valo .inboundOutbound .v-gridlayout-slot {
	position: absolute;
	padding: 6px;
}

.tetris-valo .tetris-h1 {
	color: #006D9E;
	size: 13px;
	font-weight: 700;
}

.tetris-valo .tetris-h2 {
	color: #5CBEEF;
	font-weight: 700;
}

.tetris-valo .tetris-custom-field {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px;
}

.tetris-valo .v-window {
	color: black;
}

.tetris-valo .tetris-yellow {
	color: #ecb100;
	font-weight: 700;
}

.tetris-valo .tetris-light-green-background {
	background: #7CFC00;
}

.tetris-valo .tetris-light-purple-background {
	background: #EE82EE;
}

.tetris-valo .tetris-red-background {
	background: #FF0000;
}

.tetris-valo .tetris-light-red-background {
	background: #FF6600;
}

.tetris-valo .tetris-date-input-hidden input.v-datefield-textfield {
	display: none;
}

.tetris-valo .tetris-rolling-date-img .v-datefield-button {
	background-image: url(common/images/popup-btn.png);
	width: 21px;
	margin-right: -22px;
	margin-left: 2px;
	border: none;
}

.tetris-valo .tetris-rolling-date-img .v-datefield-button:active {
	background-image: url(common/images/popup-btn-pressed.png);
}

.tetris-valo .tetris-text-centered {
	text-align: center;
}

.tetris-valo .tetris-text-right-aligned {
	text-align: right;
}

.tetris-valo .tetris-text-right-aligned-readonly.v-textfield-readonly {
	text-align: right;
}

.tetris-valo .intro-text {
	font-size: 18px;
	line-height: 24px !important;
	padding-bottom: 30px;
}

.tetris-valo .tetris-radius-3 {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

.tetris-valo .legend-checkbox {
	padding-left: 1px !important;
}

.tetris-valo .v-caption.v-disabled {
	opacity: 0.3;
}

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

.tetris-valo .tetris-label, .tetris-valo .tetris-label-important, .tetris-valo .tetris-label-success, .tetris-valo .result-code-mar-label-warning, .tetris-valo .result-code-ceiling-label-warning, .tetris-valo .result-code-rooms-revenue-not-profitable-label-warning, .tetris-valo .result-code-rate-adjusted-min-profit-warning, .tetris-valo .result-code-rate-not-following-price-ranking-warning, .tetris-valo .result-code-optimal-rate-doesnt-satisfy-floor-ceil-constraints {
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 2px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	color: #ffffff;
}

.tetris-valo .tetris-label-important {
	background-color: #FF3300;
}

.tetris-valo .tetris-label-success {
	background-color: #339900;
}

.tetris-valo .v-popupview {
	text-decoration: none;
}

.tetris-valo .v-panel {
	color: #000000;
}

.tetris-valo .tetris-red {
	color: red;
	font-weight: 700;
}

.tetris-valo .italic-label {
	font-style: italic;
	font-size: 12px;
}

.tetris-valo.v-app, .tetris-valo.v-app-loading {
	font-weight: 400;
	color: #000000;
}

.tetris-valo.v-app .v-textfield, .tetris-valo.v-app .v-radiobutton, .tetris-valo.v-app-loading .v-textfield, .tetris-valo.v-app-loading .v-radiobutton {
	color: #000000;
}

.tetris-valo.v-app .v-textfield.v-disabled, .tetris-valo.v-app .v-radiobutton.v-disabled, .tetris-valo.v-app-loading .v-textfield.v-disabled, .tetris-valo.v-app-loading .v-radiobutton.v-disabled {
	opacity: 1;
	color: #949494;
}

.tetris-valo.v-app .v-filterselect, .tetris-valo.v-app .v-checkbox, .tetris-valo.v-app .v-select-select, .tetris-valo.v-app-loading .v-filterselect, .tetris-valo.v-app-loading .v-checkbox, .tetris-valo.v-app-loading .v-select-select {
	color: #000000;
}

.tetris-valo.v-app .v-filterselect.v-disabled, .tetris-valo.v-app .v-checkbox.v-disabled, .tetris-valo.v-app .v-select-select.v-disabled, .tetris-valo.v-app-loading .v-filterselect.v-disabled, .tetris-valo.v-app-loading .v-checkbox.v-disabled, .tetris-valo.v-app-loading .v-select-select.v-disabled {
	color: #949494;
}

.tetris-valo.v-app .v-checkbox > input, .tetris-valo.v-app .v-checkbox > label, .tetris-valo.v-app-loading .v-checkbox > input, .tetris-valo.v-app-loading .v-checkbox > label {
	color: inherit;
}

.tetris-valo.v-app .v-filterselect-input, .tetris-valo.v-app-loading .v-filterselect-input {
	color: inherit;
}

.tetris-valo.v-app .v-select-select > option, .tetris-valo.v-app-loading .v-select-select > option {
	color: inherit;
}

.tetris-valo.v-app .v-radiobutton > label, .tetris-valo.v-app .v-radiobutton > input, .tetris-valo.v-app-loading .v-radiobutton > label, .tetris-valo.v-app-loading .v-radiobutton > input {
	color: inherit;
}

.tetris-valo .wrap-by-flex {
	display: flex !important;
	flex-wrap: wrap;
}

.tetris-valo .information-label {
	color: black;
	max-width: 100%;
	border-radius: 0;
	margin-top: 7px;
	padding-left: 14px;
	padding-right: 14px;
	background-color: #91c2f4;
	text-align: center;
}

.tetris-valo .button-bar.link .v-button {
	border: 0px !important;
	background: none;
	padding: 5px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .button-bar.link .v-button:after {
	content: none;
}

.tetris-valo .button-bar.link .first-pressed, .tetris-valo .button-bar.link .mid-pressed, .tetris-valo .button-bar.link .last-pressed {
	text-decoration: underline;
}

.tetris-valo .v-horizontallayout-button-bar .v-spacing {
	width: 0px !important;
}

.tetris-valo .v-horizontallayout-button-bar .first .v-button-wrap {
	background-position: left top;
}

.tetris-valo .v-horizontallayout-button-bar .mid {
	background-image: none;
}

.tetris-valo .v-horizontallayout-button-bar .mid .v-button-wrap {
	background-position: left top;
}

.tetris-valo .v-horizontallayout-button-bar .last {
	background-image: none;
}

.tetris-valo .v-horizontallayout-button-bar .last-pressed {
	background: #EEEEEE;
}

.tetris-valo .v-horizontallayout-button-bar .last-pressed .v-button-wrap {
	background: #EEEEEE;
}

.tetris-valo .v-horizontallayout-button-bar .first-pressed {
	background: #EEEEEE;
}

.tetris-valo .v-horizontallayout-button-bar .first-pressed .v-button-wrap {
	background: #EEEEEE;
}

.tetris-valo .v-horizontallayout-button-bar .mid-pressed {
	background: #EEEEEE;
}

.tetris-valo .v-horizontallayout-button-bar .mid-pressed .v-button-wrap {
	background: #EEEEEE;
}

.tetris-valo .shell-root-layout {
	min-height: 100%;
}

.tetris-valo .shell-header {
	box-sizing: border-box;
	padding-top: 5px;
	position: relative;
	background-color: white;
	box-shadow: 0 2px 5px -3px #888;
	z-index: 2000;
}

.tetris-valo .shell-header .nsight-button .v-button-wrap .v-icon {
	margin-left: -11px;
}

.tetris-valo .shell-header .gemini-button .v-button-wrap .v-icon {
	margin-left: -18px;
}

.tetris-valo .shell-header .shellLogo {
	padding-left: 5px;
	margin-top: -1px;
}

.tetris-valo .shell-header .syncFlag {
	color: #FF9900;
}

.tetris-valo .shell-header .userMenuBtns {
	padding: 0;
}

.tetris-valo .propertyDropDown {
	padding-left: 45px;
}

.tetris-valo .iconsAndDate {
	padding: 0 !important;
	margin: 0 !important;
	margin-top: 0 !important;
}

.tetris-valo .iconsAndDate .topSection {
	padding-right: 10px;
}

.tetris-valo .iconsAndDate .topSection .userNameLabel {
	vertical-align: bottom;
}

.tetris-valo .iconsAndDate .systemDateLabel {
	font-family: "Open Sans";
	padding-right: 15px;
	font-size: 12px;
	font-weight: 400;
	color: #333333;
}

.tetris-valo .shell-preferences {
	z-index: 10005 !important;
}

.tetris-valo .shell-preferences .saveAndResetButtons .saveButton {
	height: 30px;
	background: inherit;
	background-color: #2b82bd;
	border: 0 none;
	border-radius: 0;
	font-family: "Open Sans Semibold", "Open Sans Regular", "Open Sans";
	font-weight: 600;
	font-style: normal;
	font-size: 14px;
	color: #FFFFFF;
}

.tetris-valo .shell-preferences .saveAndResetButtons .resetButton {
	height: 30px;
	background: inherit;
	background-color: #f2f2f2;
	border: 0 none;
	border-radius: 0;
	font-family: "Open Sans Semibold", "Open Sans Regular", "Open Sans";
	font-weight: 600;
	font-style: normal;
	font-size: 14px;
	color: #464646;
}

.tetris-valo .shell-preferences .passwordLayout .v-slot-h3 .v-label {
	margin-top: 0;
}

.tetris-valo .shell-preferences .passwordLayout .passwordCriteria {
	font-family: "Open Sans";
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
}

.tetris-valo .shell-preferences .passwordLayout .v-caption-required-indicator-not-visible .v-required-field-indicator {
	display: none;
}

.tetris-valo .shell-preferences .passwordRulesLayout .v-expand .v-slot .v-label {
	font-family: "Open Sans";
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
}

.tetris-valo .shell-preferences .passwordRulesLayout .v-expand .v-slot .v-label .v-icon {
	font-size: 8px;
}

.tetris-valo .shell-preferences .smallSizing {
	font: inherit;
	font-size: 12px;
	width: 150px;
	height: 26px;
	border-radius: 0;
	white-space: nowrap;
}

.tetris-valo .informationWindowLabels {
	text-align: right;
}

.tetris-valo .shell-menu-position {
	position: fixed;
	z-index: 1999;
	top: 0;
	bottom: 0;
	box-shadow: 4px 0 5px -2px #b3b3b3;
}

.tetris-valo .menu-item-separator {
	width: 50px;
	height: 1px;
	margin-bottom: 0.8em;
	color: #868686;
	background-color: #868686;
	border: none;
}

.tetris-valo .menu-wrapper {
	height: 100%;
	width: 60px;
	padding-top: 54px;
	display: flex;
	flex-flow: column nowrap;
}

.tetris-valo .menu-wrapper .expandCollapseIcon {
	display: none;
}

.tetris-valo .menu-wrapper .menu-item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.2em;
	padding: 0.4em 0;
	position: relative;
}

.tetris-valo .menu-wrapper .menu-item .menu-item-icon {
	font-size: 1.6em;
	color: #868686;
}

.tetris-valo .menu-wrapper .menu-item:hover > .menu-item-icon {
	color: #e57c07;
}

.tetris-valo .menu-wrapper .opened-menu-item .menu-item-icon {
	color: #e57c07;
}

.tetris-valo .menu-wrapper .opened-menu-item .flyout {
	display: block;
}

.tetris-valo .menu-wrapper .selected-menu-item .menu-item-icon {
	color: #e57c07;
}

.tetris-valo .menu-wrapper .submenu {
	padding: 0.2em;
	background-color: white;
	border: 1px solid lightgray;
	box-shadow: 11px 4px 10px 3px rgba(0, 0, 0, 0.1);
	max-width: 90vw;
	overflow: auto;
}

.tetris-valo .menu-wrapper .submenu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.tetris-valo .menu-wrapper .submenu .title {
	margin: 0.1em 0;
	font-weight: bold;
	font-size: 1em;
	color: #e57c07;
}

.tetris-valo .menu-wrapper .submenu .tag {
	width: auto;
	margin-bottom: 0.25em;
	padding: 0 0.5em;
	border-radius: 0.25em;
	font-weight: normal;
	font-size: 1em;
	white-space: nowrap;
	color: #474747;
	background-color: #f2f2f2;
}

.tetris-valo .menu-wrapper .submenu .content {
	margin-left: 0.25em;
}

.tetris-valo .menu-wrapper .submenu .grid {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(10, auto);
}

.tetris-valo .menu-wrapper .submenu .categorized {
	display: flex;
	flex-flow: column wrap;
	max-height: 60vh;
}

.tetris-valo .menu-wrapper .submenu .categorized .grid {
	grid-auto-flow: row;
	grid-template-rows: unset;
	grid-auto-rows: auto;
}

.tetris-valo .menu-wrapper .submenu .categorized .category {
	margin-left: 0.2em;
	margin-bottom: 0.2em;
}

.tetris-valo .menu-wrapper .submenu .column-layout {
	column-gap: 0.1em;
}

.tetris-valo .menu-wrapper .submenu .entry {
	padding: 0.15em;
	margin: 0.1em;
	font-size: 0.85em;
	color: #1a1a1a;
	white-space: nowrap;
}

.tetris-valo .menu-wrapper .submenu .entry a, .tetris-valo .menu-wrapper .submenu .entry a:visited, .tetris-valo .menu-wrapper .submenu .entry a:active, .tetris-valo .menu-wrapper .submenu .entry a:focus {
	text-decoration: none;
	color: inherit;
	border: none;
	outline: 0;
	white-space: nowrap;
	padding: 0.25em;
}

.tetris-valo .menu-wrapper .submenu .entry a:hover {
	border-radius: 0.25em;
	background-color: gainsboro;
}

.tetris-valo .menu-wrapper .flyout {
	display: none;
	position: absolute;
	top: 0;
	-webkit-transform: translate(calc(30px - 0.5em + 50%), -0.75em);
	-moz-transform: translate(calc(30px - 0.5em + 50%), -0.75em);
	-ms-transform: translate(15px, -0.75em);
	-o-transform: translate(calc(30px - 0.5em + 50%), -0.75em);
	transform: translate(calc(30px - 0.5em + 50%), -0.75em);
	z-index: 1999;
	padding: 0.75em;
}

.tetris-valo .shell-content {
	margin-left: 60px;
	padding-right: 60px;
}

.tetris-valo .shell-content .navigationHeader {
	width: 100%;
	background-image: url(shell/images/Module_Title_Bar.png);
	height: 25px;
	padding-right: 15px;
	padding-left: 15px;
	text-align: center;
}

.tetris-valo .shell-content .navigationHeader .moduleTitle {
	font-weight: 400;
	font-size: 16px;
	color: white;
}

.tetris-valo .shell-content .navigationHeader .pageHelpIcon.v-icon, .tetris-valo .shell-content .navigationHeader .pageHelpIcon .v-icon {
	color: #FFFFFF;
	font-size: 20px;
	margin-top: -3px;
	text-align: center;
}

.tetris-valo .shell-content .navigationHeader .pageFilterIcon {
	height: 100%;
	margin-top: 0;
}

.tetris-valo .shell-content .navigationHeader .pageFilterIcon.v-icon, .tetris-valo .shell-content .navigationHeader .pageFilterIcon .v-icon {
	color: white;
	font-size: 18px;
	text-align: center;
}

.tetris-valo .shell-content .navigationHeader .pageLoadTime {
	font-size: 12px;
	color: white;
	vertical-align: middle;
}

.tetris-valo .menu {
	padding-top: 176px;
}

.tetris-valo .menu .v-spacing {
	padding-bottom: 8px;
	margin-top: 5px;
	width: 60px !important;
	height: 8px !important;
}

.tetris-valo .menu .v-slot-menuBtns {
	vertical-align: middle;
}

.tetris-valo .menu .menuBtns {
	color: #868686;
	font-size: 24px;
}

.tetris-valo .menu .menuBtns span.v-icon {
	padding-left: 12px;
}

.tetris-valo .menu .selectedMenuBtn {
	color: #e57c07;
}

.tetris-valo .menu .menuBtns:hover {
	color: #e57c07;
}

.tetris-valo .shell-drop-down-module-btns {
	display: inline-block;
	font-size: 12px;
	font-weight: 400;
	color: #1a1a1a;
	text-decoration: none;
	padding-right: 11px;
	padding-left: 11px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.tetris-valo .shell-drop-down-module-btns:hover {
	background: #F8F8F8;
}

.tetris-valo .shellMenuSubCategoryTitle {
	background-color: #f2f2f2;
	font-weight: 400;
	font-size: 14px;
	padding-left: 10px;
	width: 100%;
}

.tetris-valo .v-caption-shellMenuPopUp {
	color: #e57c07;
	font-weight: 700;
	font-size: 14px;
}

.tetris-valo .v-popupbutton-popup-menuBtns {
	box-shadow: 11px 4px 10px 3px rgba(0, 0, 0, 0.1);
	border: 1px solid lightgray;
	margin-left: 65px !important;
	margin-top: -33px !important;
}

.tetris-valo .singleAnnouncement {
	border-bottom: lightgray 1px solid;
}

.tetris-valo #announcementLayout {
	display: grid;
	overflow-y: auto;
}

.tetris-valo #announcementLayout #checkBoxAndButtonsLayout {
	position: relative;
	bottom: 0;
}

.tetris-valo .beta-tag {
	color: #FFFFFF;
	font-style: italic;
	background-color: orange;
	padding-left: 3px;
	padding-right: 4px;
}

.tetris-valo .shellIcon {
	opacity: 1 !important;
}

.tetris-valo .shellIcon.upload-pacific-blue.v-icon, .tetris-valo .shellIcon.upload-pacific-blue .v-icon, .tetris-valo .shellIcon.lock-gray.v-icon, .tetris-valo .shellIcon.lock-gray .v-icon {
	color: #00CC00;
}

.tetris-valo #informationManagerAlertIconButton {
	top: -9px;
}

.tetris-valo .shell-root-layout.redesigned-menu .spinner-img img {
	animation: v-rotate-360 2s infinite linear;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-menu-position {
	font-family: Lato;
	font-weight: 400;
	font-style: normal;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper {
	font-family: Lato;
	background: #1B84C5;
	padding-top: 10px;
	width: 75px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .menu-item {
	padding: 0.5em 0;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .menu-item.opened-menu-item .triangle {
	width: 11px;
	height: 11px;
	background: #D8F0FF;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	rotate: -90deg;
	position: absolute;
	right: -1px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .entry, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .menu-item-icon, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .pin, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .pinned, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .tag {
	cursor: pointer;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .menu-item-icon {
	color: white !important;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .menu-item-icon#ideaslogoicon {
	bottom: 15px;
	position: fixed;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .selected-menu-item .menu-item-icon {
	background: white;
	color: #1B84C5 !important;
	width: 40px;
	border-radius: 8px;
	text-align: center;
	padding-top: 5px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .page-nav-input {
	margin-top: 10px;
	width: 85%;
	height: 32px;
	border-style: none;
	padding-left: 25px;
	background-image: url(shell/images/icons/search_icon.svg);
	background-repeat: no-repeat;
	background-position: left 0.3rem top 0.6rem;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .page-nav-input:hover {
	box-shadow: 0 0 0 1px #1B84C5;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout {
	overflow: auto;
	position: fixed;
	height: 100%;
	background: #D8F0FF;
	top: 0.75em;
	min-width: 250px;
	padding: 0 0 0 0.75em;
	-webkit-transform: translate(calc(45px - 0.5em + 50%), -0.75em);
	-moz-transform: translate(calc(45px - 0.5em + 50%), -0.75em);
	-ms-transform: translate(30px, -0.75em);
	-o-transform: translate(calc(45px - 0.5em + 50%), -0.75em);
	transform: translate(calc(45px - 0.5em + 50%), -0.75em);
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu {
	background-color: #D8F0FF !important;
	border: none;
	box-shadow: none !important;
	padding-top: 20px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .title {
	font-size: 1.25em;
	color: #000;
	padding: 0 0.5em 0.5em 0;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .categorized {
	max-height: 100%;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .category ul {
	border-left: 1px solid black;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .category .entry {
	padding-left: 1em;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu a:hover, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu li.entry:hover {
	background: white;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu a:hover .pin, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu a:hover .pinned, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu li.entry:hover .pin, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu li.entry:hover .pinned {
	display: inline-block;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .pin, .tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .pinned {
	position: absolute;
	right: 15px;
	padding-top: 4px;
	margin-top: 4px;
	height: 13px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .pin {
	display: none;
	content: url(shell/images/icons/sharp-light-thumbtack.svg);
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .pinned {
	display: inline-block;
	content: url(shell/images/icons/sharp-light-thumbtack-slash.svg);
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .tag {
	font-size: 16px;
	padding: 0.5em 0.5em 0.5em 0.5em;
	background-color: #D8F0FF !important;
	color: #000;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .tag:hover {
	background-color: white !important;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .entry {
	font-size: 16px;
	padding: 0.5em 2em 0.5em 0.5em;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .entry a {
	padding: 0;
	text-wrap: wrap;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .entry #alertIcon {
	color: #176416;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .entry #alertIcon .alert-count-icon {
	font-weight: 700;
	font-size: 10px;
	font-family: Lato;
	margin-top: -2px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .expandCollapseIcon {
	float: right;
	display: block;
	transform: rotate(90deg);
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .collapsed .grid {
	display: none;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .collapsed .expandCollapseIcon {
	transform: rotate(0deg);
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .grid {
	grid-template-rows: repeat(100, auto);
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout .submenu .content {
	margin: 0;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .autoComplete_wrapper {
	font-weight: 400;
	font-size: 14px;
	color: #4B4B4B;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .autoComplete_wrapper li.autoComplete_result {
	display: block;
	padding: 10px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .autoComplete_wrapper li.autoComplete_result:hover {
	cursor: pointer;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .autoComplete_wrapper li.autoComplete_result a {
	text-decoration: none;
	color: #4B4B4B;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .autoComplete_wrapper li.autoComplete_result span {
	display: block;
	font-size: 16px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .autoComplete_wrapper li.autoComplete_result span mark.autoComplete_highlight {
	font-weight: 700;
	background-color: #D8F0FF;
	color: #000;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .autoComplete_wrapper ul {
	padding: 5px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout::-webkit-scrollbar-track {
	background-color: #F5F5F5;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout::-webkit-scrollbar {
	width: 6px;
}

.tetris-valo .shell-root-layout.redesigned-menu .menu-wrapper .flyout::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: #A9A9A9;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header {
	z-index: auto;
	padding-left: 75px;
	margin-bottom: 2px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .shellLogo {
	padding-left: 20px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .topSection div {
	width: 45px !important;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .topSection div.user-preference {
	height: 32px !important;
	width: 32px !important;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .topSection div#switchMeBack {
	position: absolute;
	top: 0;
	right: 200px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .propertyDropDown {
	padding-left: 0;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recent-layout {
	margin-left: 20px;
	border-right: 0.5px solid #D3D3D3;
	border-left: 0.5px solid #D3D3D3;
	min-width: 150px;
	max-width: 420px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recent-icon {
	content: url(shell/images/icons/rectangle-history-light.svg);
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .user-preference {
	color: white;
	font-size: 10px;
	font-weight: 700;
	border-color: white;
	background-color: #1B84C5 !important;
	border-radius: 50%;
	display: inline-block;
	padding-left: 3px;
	background-image: none;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .user-preference .v-popup-indicator {
	display: none;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited {
	font-family: Lato;
	cursor: pointer;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .category {
	font-weight: 300;
	font-size: 1.1em;
	cursor: none;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .selected-page {
	display: block;
	font-weight: 600;
	font-size: 1.1em;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 390px;
	overflow: hidden;
	background-image: url(shell/images/icons/drop_down_arrow.svg);
	background-repeat: no-repeat;
	background-position: right;
	padding-right: 20px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper {
	position: absolute;
	top: 50px;
	width: 100%;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper input#recently-visited-input, .tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper input#recently-visited-input:focus, .tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper input#recently-visited-input:active {
	border: none;
	opacity: 0;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper span {
	font-size: 1.2em;
	font-weight: 600;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper span img {
	padding-right: 10px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper ul {
	position: absolute;
	padding: 1em;
	background: #FFF;
	margin-block-start: 1px;
	z-index: 9999;
	border-radius: 4px;
	box-shadow: 0 4px 4px 0 rgba(129, 129, 129, 0.2);
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .recently-visited .autoComplete_wrapper ul li {
	border-bottom: 0.6px solid #CDCDCD;
	list-style: none;
	padding: 10px 0 10px 0;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header .topSection .v-slot-tetris-image-button {
	width: 30px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header #informationManagerAlertIconButton {
	top: 0 !important;
	color: white;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-header #informationManagerAlertIconButton .v-button-caption {
	position: absolute;
	left: -6px;
	margin-top: 9px;
	width: 100%;
	font-size: 10px;
	font-weight: 700;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-content {
	margin-left: 75px;
	padding-right: 75px;
}

.tetris-valo .shell-root-layout.redesigned-menu .shell-content .floating-menu {
	position: absolute;
	display: block;
	right: 10px;
	top: 76px;
}

.tetris-valo .optix-property-component .clear-blue-filter-button {
	font-size: 12px !important;
	font-weight: bold !important;
	color: #1D72AA !important;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .optix-property-component .blue-filter-button {
	font-size: 12px !important;
	font-weight: bold !important;
	color: #1D72AA !important;
	border: 1px solid #d1d1d1;
	height: 26px;
}

.tetris-valo .optix-property-component .filter-icon-green {
	border: 2px solid #00cc00 !important;
}

.tetris-valo .optix-property-component .grey-filter-button {
	font-size: 12px !important;
	font-weight: bold;
	color: #999999 !important;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .optix-property-component .remove-icon .v-popup-indicator {
	display: none !important;
}

.tetris-valo .optix-property-component .icon-float-right .v-popup-indicator {
	float: right !important;
}

.tetris-valo .optix-property-component .text-align-left {
	text-align: left !important;
}

.tetris-valo .optix-property-component .custom-font-size {
	font-size: 12px !important;
}

.tetris-valo .multi-property-reports-view .date-selector-layout {
	text-align: center;
}

.tetris-valo .multi-property-reports-view .date-selector-layout .v-button {
	margin-right: -1px;
}

.tetris-valo .multi-property-reports-view .date-selector-layout .v-checkbox {
	padding-left: 10px;
	margin-top: 10px;
	margin-left: 15px;
	font-size: 12px;
}

.tetris-valo .multi-property-reports-view .select-ms-margin-left {
	margin-left: 3px;
}

.tetris-valo .multi-property-reports-view .report-selection-layout {
	text-align: right;
}

.tetris-valo .multi-property-reports-view .report-selection-layout .v-label {
	margin-top: 5px;
	margin-left: 30px;
	margin-right: 10px;
}

.tetris-valo .multi-property-reports-view .date-configuration-layout {
	border-top: 1px solid lightgray;
	border-bottom: 1px solid lightgray;
	padding: 5px;
}

.tetris-valo .multi-property-reports-view .left-bordered-layout {
	border-left: 1px solid lightgray;
}

.tetris-valo .multi-property-reports-view .bold-font-style {
	font-weight: bold;
	font-size: 12px;
}

.tetris-valo .multi-property-reports-view .bold-font-with-margin {
	font-weight: bold;
	font-size: 14px;
	margin-left: 60px;
	margin-top: 20px;
}

.tetris-valo .multi-property-reports-view .v-checkbox {
	padding-left: 10px;
	margin-top: 10px;
	margin-left: 20px;
}

.tetris-valo .multi-property-reports-view .label-style {
	margin-top: 5px;
	margin-left: 30px;
	margin-right: 10px;
}

.tetris-valo .multi-property-reports-view .wrap-text {
	padding-left: 15px;
	word-wrap: break-word;
	white-space: -moz-pre-wrap;
	font-size: 11px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.tetris-valo .multi-property-reports-view .chart-title {
	color: #44698B;
	font-size: 15px;
	font-weight: bold;
	fill: #44698B;
}

.tetris-valo .multi-property-reports-view .v-horizontallayout-button-bar .first-pressed {
	background: #d3d3d3;
}

.tetris-valo .multi-property-reports-view .v-horizontallayout-button-bar .first-pressed .v-button-wrap {
	background: #d3d3d3;
}

.tetris-valo .multi-property-reports-view .v-horizontallayout-button-bar .mid-pressed {
	background: #d3d3d3;
}

.tetris-valo .multi-property-reports-view .v-horizontallayout-button-bar .mid-pressed .v-button-wrap {
	background: #d3d3d3;
}

.tetris-valo .multi-property-reports-view .v-horizontallayout-button-bar .last-pressed {
	background: #d3d3d3;
}

.tetris-valo .multi-property-reports-view .v-horizontallayout-button-bar .last-pressed .v-button-wrap {
	background: #d3d3d3;
}

.tetris-valo .multi-property-reports-view .expand-collapse-button {
	padding-top: 15px;
	margin-left: 15px;
}

.tetris-valo .multi-property-reports-view .breadCrumb {
	font-size: 11px;
}

.tetris-valo .multi-property-reports-view .v-slot-bringToFront {
	z-index: 1;
}

.tetris-valo .multi-property-reports-view .compact-link {
	padding: 0 0 0 10px;
}

.tetris-valo .multi-property-reports-view .compact-link .v-spacing {
	width: 0px;
}

.tetris-valo .multi-property-reports-view .compact-link .v-button-link {
	padding: 0 10px 5px 0;
}

.tetris-valo .multi-property-reports-view .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo .multi-property-reports-view .multi-property-banner {
	font-size: 16px;
	background-color: #1d72aa;
	color: #FFFFFF;
}

.tetris-valo .multi-property-reports-view .multi-property-banner .v-label {
	padding-top: 7px;
}

.tetris-valo .multi-property-reports-view .multi-property-banner .label-layout {
	padding-left: 10px;
}

.tetris-valo .multi-property-reports-view .multi-property-banner .v-icon {
	padding-top: 8px;
	color: #00bbff;
}

.tetris-valo .multi-property-reports-view .borderless-darkblue-image-button {
	font-size: 12px;
	color: #fffdfa;
	border: 0px;
	border-color: transparent;
	background: #0d385d;
}

.tetris-valo .multi-property-reports-view .borderless-darkblue-image-button .v-icon {
	float: right;
	padding-left: 10px;
	font-size: 16px;
}

.tetris-valo .multi-property-reports-view .borderless-green-image-button {
	font-size: 12px;
	color: #000000;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .multi-property-reports-view .borderless-green-image-button .v-icon {
	font-size: 18px;
	color: #0E9C0E;
	float: right;
	padding-left: 5px;
}

.tetris-valo .multi-property-reports-view .text-align-center .v-tabsheet-tabcontainer {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 10px;
}

.tetris-valo .multi-property-reports-view .sidebyside-chart-layout .v-verticallayout:nth-child(1) {
	border: 1px solid lightgrey;
	border-top: none;
	border-left: none;
}

.tetris-valo .multi-property-reports-view .sidebyside-chart-layout .v-verticallayout:nth-child(2) {
	border-bottom: 1px solid lightgrey;
}

.tetris-valo .multi-property-reports-view .sidebyside-chart-layout .v-verticallayout:nth-child(3) {
	border-right: 1px solid lightgrey;
}

.tetris-valo .multi-property-reports-view .sidebyside-chart-layout .vaadin-chart {
	margin-top: 15px;
}

.tetris-valo .multi-property-reports-view .sidebyside-chart-layout .chart-expand-button {
	margin-top: 20px;
}

.tetris-valo .multi-property-reports-view .sidebyside-chart-layout .chart-expand-button .v-icon {
	color: #1d72aa;
}

.tetris-valo .multi-property-reports-view .apply-reset-button-style {
	text-align: right;
}

.tetris-valo .multi-property-reports-view .apply-reset-button-style .tetris-button {
	margin-left: 15px;
}

.tetris-valo .select-property-Window .select-property-label {
	padding-left: 12px;
	font-size: 17px;
	background: #F2F2F2;
	color: #0a0b0b;
}

.tetris-valo .select-property-Window .dashed-border {
	border: #f1f1f1;
	border-style: dashed;
}

.tetris-valo .select-property-Window .padding-unset {
	padding: unset !important;
}

.tetris-valo .select-property-Window .v-caption-select-property-label-info {
	font-size: 12px;
	padding-left: 25px;
	color: #0a0b0b;
}

.tetris-valo .select-property-Window .add-button {
	font-size: 350%;
	position: absolute;
	z-index: 1;
	top: 30%;
	bottom: 30%;
	right: 40%;
	left: 40%;
	opacity: 0.3;
}

.tetris-valo .select-property-Window .done-button {
	background: #2B82BD;
	color: white;
	border-color: #00699a;
	z-index: 1;
}

.tetris-valo .select-property-Window .cancel-button {
	background: #ffffff;
	border-color: #d1d1d1;
	z-index: 1;
}

.tetris-valo .select-property-Window .save-and-cancel {
	padding-right: 32px;
	padding-bottom: 10px;
}

.tetris-valo .select-property-Window .list-select {
	z-index: 1;
	position: absolute;
	top: 45%;
	left: 9%;
}

.tetris-valo .select-property-Window .solid-border {
	border: #f1f1f1;
	border-style: solid;
}

.tetris-valo .select-property-Window .close-button {
	z-index: 1;
	position: absolute;
	top: 1%;
	right: 0%;
	opacity: 0.3;
}

.tetris-valo .select-property-Window .search-field {
	z-index: 1;
	position: absolute;
	top: 31%;
	left: 9%;
}

.tetris-valo .select-property-Window .v-caption-search-field {
	z-index: 1;
	position: absolute;
	top: 22%;
	left: 9%;
}

.tetris-valo .select-property-Window .enable-properties-of-propgrp {
	z-index: 1;
	position: absolute;
	top: 36%;
	left: 9%;
	font-size: 12.5px;
}

.tetris-valo .select-property-Window .v-checkbox-enable-properties-of-propgrp {
	padding-left: 8px;
}

.tetris-valo .select-property-Window .property-group-combo-box {
	z-index: 1;
	position: absolute;
	top: 18%;
	left: 9%;
}

.tetris-valo .select-property-Window .property-group-list-select-disable {
	opacity: 0.6;
}

.tetris-valo .select-property-Window .property-group-list-select-enable {
	opacity: 1;
}

.tetris-valo .select-property-Window .property-attribute-filter {
	zindex: 1;
	position: absolute;
	top: 9%;
	left: 8%;
}

.tetris-valo .select-property-Window .clear-blue-filter-button {
	font-size: 12px !important;
	font-weight: bold !important;
	color: #1D72AA !important;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .select-property-Window .blue-filter-button {
	font-size: 12px !important;
	font-weight: bold !important;
	color: #1D72AA !important;
	border: 1px solid #d1d1d1;
	height: 26px;
}

.tetris-valo .select-property-Window .filter-icon-green {
	border: 2px solid #00cc00 !important;
}

.tetris-valo .select-property-Window .grey-filter-button {
	font-size: 12px !important;
	font-weight: bold;
	color: #999999 !important;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .select-property-Window .remove-icon .v-popup-indicator {
	display: none !important;
}

.tetris-valo .select-property-Window .v-gridlayout-grid-padding {
	padding-bottom: 12px;
	padding-top: 12px;
}

.tetris-valo .configuration-layout .v-popup-indicator {
	display: none !important;
}

.tetris-valo .rate-plan-report {
	background-color: #ffffff;
}

.tetris-valo .rate-plan-report .breadCrumb {
	font-size: 11px;
}

.tetris-valo .rate-plan-report .padding-unset {
	padding: unset !important;
}

.tetris-valo .rate-plan-report .v-treegrid-column-header-content {
	text-align: center;
}

.tetris-valo .rate-plan-report .filter-icon-green {
	border: 2px solid #00cc00 !important;
}

.tetris-valo .rate-plan-report .filter-icon {
	font-size: 14px;
	margin-top: 1px;
}

.tetris-valo .rate-plan-report .date-configuration-layout {
	border-top: 1px solid lightgray;
	border-bottom: 1px solid lightgray;
	padding: 5px;
}

.tetris-valo .rate-plan-report .left-bordered-layout {
	border-left: 1px solid lightgray;
}

.tetris-valo .rate-plan-report .label-style {
	margin-top: 5px;
	margin-left: 30px;
	margin-right: 10px;
}

.tetris-valo .rate-plan-report .wrap-text {
	padding-left: 15px;
	word-wrap: break-word;
	white-space: -moz-pre-wrap;
	font-size: 11px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.tetris-valo .rate-plan-report .date-selector-layout {
	text-align: center;
}

.tetris-valo .rate-plan-report .date-selector-layout .v-button {
	margin-right: -1px;
}

.tetris-valo .rate-plan-report .date-selector-layout .v-checkbox {
	padding-left: 10px;
	margin-top: 10px;
	margin-left: 15px;
	font-size: 12px;
}

.tetris-valo .rate-plan-report .bold-font-style {
	font-weight: bold;
	font-size: 12px;
}

.tetris-valo .rate-plan-report .horizontal-checkbox .v-checkbox, .tetris-valo .rate-plan-report .horizontal-radio .v-radiobutton {
	float: left;
	margin-top: 2px;
}

.tetris-valo .rate-plan-report .v-button.link {
	outline: none;
}

.tetris-valo .rate-plan-report .ui-slider {
	border-radius: 0px;
}

.tetris-valo .rate-plan-report .ui-slider .ui.slider-range {
	background-color: #CDE3EC;
}

.tetris-valo .rate-plan-report .ui-slider .dualSliderRightPart {
	background-color: #CDE3EC;
}

.tetris-valo .rate-plan-report .ui-slider .ui-corner-all {
	border-radius: 0px;
}

.tetris-valo .rate-plan-report .ui-slider .ui-state-focus {
	border: none;
}

.tetris-valo .rate-plan-report .ui-slider .slider-tip {
	margin-top: 17px;
}

.tetris-valo .rate-plan-report .ui-slider .ui-state-focus .slider-tip {
	text-color: red !important;
}

.tetris-valo .rate-plan-report .ui-slider .ui-state-default, .tetris-valo .rate-plan-report .ui-slider .ui-widget .ui-state-default {
	background-image: none;
	background-color: #3090f0;
	border-radius: 0px;
	box-shadow: none;
}

.tetris-valo .rate-plan-report a.ui-slider-handle {
	outline: none;
	margin-top: -32px;
}

.tetris-valo .rate-plan-report .rateCodeRangeLabel {
	margin-top: -6px;
}

.tetris-valo .rate-plan-report .v-button .v-icon {
	font-size: 18px;
}

.tetris-valo .rate-plan-report .pie-chart-layout {
	border-left: 1px solid lightgrey;
}

.tetris-valo .rate-plan-report .rate-plan-bar-chart .bar-chart-back-button {
	font-size: 12px;
	right: 68px;
}

.tetris-valo .rate-plan-report .rate-plan-bar-chart .chart-title {
	color: #44698B;
	font-size: 15px;
	font-weight: bold;
	fill: #44698B;
}

.tetris-valo .rate-plan-report .borderless-darkblue-image-button {
	font-size: 12px;
	color: #fffdfa;
	border: 0px;
	border-color: transparent;
	background: #0d385d;
}

.tetris-valo .rate-plan-report .borderless-darkblue-image-button .v-icon {
	float: right;
	padding-left: 10px;
	font-size: 16px;
}

.tetris-valo .rate-plan-report .borderless-green-image-button {
	font-size: 12px;
	color: #000000;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .rate-plan-report .borderless-green-image-button .v-icon {
	font-size: 18px;
	color: #0E9C0E;
	float: right;
	padding-left: 5px;
}

.tetris-valo .rate-plan-report .multi-property-banner {
	font-size: 16px;
	background-color: #1d72aa;
	color: #FFFFFF;
}

.tetris-valo .rate-plan-report .multi-property-banner .v-label {
	padding-top: 7px;
}

.tetris-valo .rate-plan-report .multi-property-banner .label-layout {
	padding-left: 10px;
}

.tetris-valo .rate-plan-report .multi-property-banner .v-icon {
	padding-top: 8px;
	color: #00bbff;
}

.tetris-valo .rate-plan-report .text-align-center {
	text-align: center;
}

.tetris-valo .rate-plan-report .apply-reset-button-style {
	text-align: right;
}

.tetris-valo .rate-plan-report .apply-reset-button-style .tetris-button {
	margin-left: 15px;
}

.tetris-valo .rate-plan-report .rate-code-configuration-layout {
	border-top: 1px solid lightgray;
	padding: 16px;
	padding-bottom: 5px;
}

.tetris-valo .rate-plan-report .or-label {
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	font-weight: 400;
}

.tetris-valo .rate-plan-report .rate-code-label {
	padding-top: 5px;
	padding-right: 10px;
	font-weight: 400;
}

.tetris-valo .rate-plan-report .filter-rate-code-margin {
	margin-top: 20px;
	margin-bottom: 5px;
	margin-left: 10px;
}

.tetris-valo .rate-plan-report .no-of-rate-codes-padding {
	margin-left: 10px;
	margin-right: 10px;
}

.tetris-valo .dashboard .KPIs-Component {
	background: #1d72aa;
	padding-top: 0px;
}

.tetris-valo .dashboard .kpis-label {
	font-size: 20px;
	color: white;
	position: absolute;
	padding-top: 27px;
}

.tetris-valo .dashboard .report-label {
	font-size: 20px;
	color: black;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding-left: 30px;
	padding-top: 12px;
}

.tetris-valo .dashboard .configure-button {
	font-size: 24px;
	color: #1d72aa;
	border: 0px;
	border-color: transparent;
	background: transparent;
	padding-right: 30px;
	padding-top: 10px;
}

.tetris-valo .dashboard .custom-spacing .v-gridlayout-spacing-on {
	padding-right: 15px;
	padding-bottom: 10px;
}

.tetris-valo .dashboard .scroll-off {
	overflow-x: hidden;
	overflow-y: hidden;
}

.tetris-valo .dashboard .unset-padding {
	padding: unset;
}

.tetris-valo .dashboard .gray-background {
	background: #F6F6F6;
}

.tetris-valo .dashboard .bright-blue-background {
	background: #1d72aa !important;
}

.tetris-valo .dashboard .dark-blue-background {
	background: #0d385d !important;
}

.tetris-valo .dashboard .panel-label {
	font-size: 24px;
	color: #0099CC;
	position: absolute;
	bottom: 10px;
	padding-left: 25px;
	padding-bottom: 10px;
}

.tetris-valo .dashboard .kpi-panel-custom-spacing .v-gridlayout-spacing-on {
	padding-bottom: 10px;
}

.tetris-valo .dashboard .gemini-dashboard-panel {
	background: #FFFFFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.tetris-valo .dashboard .optionsBtn {
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 5px;
}

.tetris-valo .dashboard .favoriteBtn {
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 35px;
	opacity: 0.5;
}

.tetris-valo .dashboard .viewMoreBtn {
	background: #134F7C !important;
	color: #ffffff;
	margin-right: 30px;
	font-size: 12px;
}

.tetris-valo .dashboard .selection-label {
	font-size: 14px;
	padding-left: 102px;
}

.tetris-valo .dashboard .selection-info {
	font-size: 12px;
	padding-left: 578px;
}

.tetris-valo .dashboard .categories-custom-padding {
	padding-left: 20px;
}

.tetris-valo .dashboard .customize-dashboard-label {
	padding-left: 15px;
	font-size: 20px;
	color: black;
}

.tetris-valo .dashboard .custom-icon .v-icon {
	padding-left: 30px;
	float: right;
}

.tetris-valo .dashboard .v-tree8-row-selected > .v-tree8-cell {
	background-color: #f6f6f6;
	background-image: -webkit-linear-gradient(top, #f6f6f6 0%, #f6f6f6 100%);
	background-image: linear, to bottom, #f6f6f6 0%, #f6f6f6 100%;
	color: #0d385d;
}

.tetris-valo .dashboard .v-tree8-row > .v-tree8-cell {
	padding-left: 0px;
}

.tetris-valo .dashboard .unset-padding-right {
	padding-right: 0px;
}

.tetris-valo .dashboard .tree-menu-padding {
	padding-left: 0px;
}

.tetris-valo .dashboard .icon-float-right .v-icon {
	color: #999999;
}

.tetris-valo .dashboard .custom-caption-size .v-caption {
	font-size: 14px;
	padding-left: 18px;
	padding-bottom: 15px;
}

.tetris-valo .dashboard .v-tree8-expander {
	display: inline-grid;
}

.tetris-valo .dashboard .customize-dashboard {
	background: #1d72aa !important;
	color: white !important;
}

.tetris-valo .dashboard .customize-dashboard-info {
	padding-left: 18px;
	font-size: 12px;
}

.tetris-valo .dashboard .reports-options-group .v-checkbox {
	line-height: 18px;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports-header {
	box-shadow: 0px 3px 3px lightgrey;
}

.tetris-valo .multi-property-reports-dashboard .header-button-layout .v-button {
	border-right: 0px;
	border-left: 0px;
	border-top: 0px;
	border-bottom-width: 0px;
	color: #0d385d;
}

.tetris-valo .multi-property-reports-dashboard .header-button-layout .v-button.v-disabled {
	border-right: 0px !important;
	border-left: 0px;
	border-top: 0px;
	border-bottom-width: 5px !important;
	border-bottom-color: #00bbff !important;
	opacity: 1;
}

.tetris-valo .multi-property-reports-dashboard .header-button-layout .v-icon {
	color: #0d385d;
}

.tetris-valo .multi-property-reports-dashboard .flag-button .v-icon {
	color: #0d385d;
	font-size: 16px;
}

.tetris-valo .multi-property-reports-dashboard .user-menubar {
	padding-left: 30px;
	margin: 10px 0px;
	border-top: 0px;
	border-bottom: 0px;
	border-right: 0px;
}

.tetris-valo .multi-property-reports-dashboard .user-menubar.v-menubar  > .v-menubar-menuitem-selected {
	color: black;
	background-color: #CCCACB !important;
	background-image: none !important;
}

.tetris-valo .multi-property-reports-dashboard .info-menu .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after {
	content: none;
	color: grey;
}

.tetris-valo .multi-property-reports-dashboard .info-menu .v-icon {
	font-size: 16px;
	color: #0d385d;
}

.tetris-valo .multi-property-reports-dashboard .info-menu.v-menubar  > .v-menubar-menuitem-selected {
	background-color: #CCCACB !important;
	background-image: none !important;
}

.tetris-valo .multi-property-reports-dashboard .v-splitpanel-horizontal  > div  > .v-splitpanel-first-container {
	box-shadow: 2px 5px 5px lightgrey;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports {
	font-family: "Open Sans";
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .nav-menu {
	background-color: #EEEEEE;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .nav-menu .v-caption {
	font-size: 16px;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .nav-menu .v-tree8-row-selected  > .v-tree8-cell {
	color: #0c0d0e;
	background-color: #CCCACB !important;
	border: 0px;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .nav-menu .v-tree8-cell:hover {
	background-color: #E0DEE0;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .menu-expand-button {
	background: #1d72aa;
	color: #FFFFFF;
	text-align: left;
	padding: 2px;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .menu-expand-button .v-icon {
	color: #FFFFFF;
	float: right;
	margin-right: 5px;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .menu-collapse-button {
	background: #1d72aa;
	color: #FFFFFF;
	padding: 10px;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .menu-collapse-button .v-icon {
	color: #FFFFFF;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .collapsed-menu-button-layout {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg) translate(-100%, 0);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	zoom: 1;
	transform-origin: 0 0;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .collapsed-menu-button {
	background: #EEEEEE;
}

.tetris-valo .multi-property-reports-dashboard .multi-property-reports .collapsed-menu-button .v-icon {
	margin-left: -10px;
	margin-bottom: 10px;
}

.tetris-valo .user-forecast-grid .v-treegrid-header .v-treegrid-cell, .tetris-valo .user-forecast-grid .tetris-valo .v-treegrid-footer .v-treegrid-cell {
	text-align: center;
	font-weight: bold;
}

.tetris-valo .user-forecast-grid .v-treegrid-cell > div {
	display: contents;
}

.tetris-valo .user-forecast-grid .v-treegrid-expander {
	display: contents;
}

.tetris-valo .user-forecast-grid .v-treegrid-row > td, .tetris-valo .user-forecast-grid .tetris-valo .v-treegrid-editor-cells > div {
	line-height: 3.5;
}

.tetris-valo .user-forecast-dow-table .v-grid-row-focused > td {
	padding-top: 4px;
}

.tetris-valo .user-forecast-dow-window .v-window-contents .v-scrollable {
	overflow: hidden;
}

.tetris-valo #rootLayout {
	display: grid;
	grid-template-rows: 0 0 0 1fr;
}

.tetris-valo #rootLayoutWithInventoryGroups {
	display: grid;
	grid-template-rows: 50px 0 0 1fr;
}

.tetris-valo #dateSelector {
	justify-self: center;
	transform: translate(30px, 50px);
	position: relative;
	z-index: 1;
}

.tetris-valo #rangePopupSelector {
	width: 193px;
	height: 30px;
	justify-self: center;
	transform: translate(-3px, 50px);
}

.tetris-valo #angleLeftRightButton {
	line-height: 0.8;
}

.tetris-valo .removeCheckboxMargin .v-checkbox > label {
	margin-right: 0px;
	margin-left: 0px;
}

.tetris-valo #badDataDetailsRootLayout {
	margin-top: 50px;
	display: grid;
	grid-template-rows: 0 60px 0;
}

.tetris-valo #badDataDetailsRootLayout #dataDetailsToolBar {
	justify-self: end;
	transform: translate(-5px, 0px);
	position: relative;
	z-index: 1;
}

.tetris-valo #buttonsLayout {
	display: flex;
	justify-self: right;
	align-items: center;
	transform: translate(-25px, -20px);
}

.tetris-valo #buttonsLayout .v-button {
	margin-right: 0 !important;
}

.tetris-valo #businessAnalysisFilterPopupWindow .v-scrollable {
	overflow: hidden;
}

.tetris-valo .data-details-filter {
	font-family: "Open Sans", sans-serif;
	font-feature-settings: "kern";
	font-kerning: normal;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: normal;
	line-height: normal;
	overflow-wrap: break-word;
	text-align: left;
	text-rendering: optimizelegibility;
	text-transform: none;
	margin-left: 3%;
}

.tetris-valo .data-details-filter .title {
	color: #333333;
	margin-top: 10px;
	margin-bottom: 2%;
}

.tetris-valo .data-details-filter .contentShowData {
	color: black;
	margin-top: 0;
}

.tetris-valo .data-details-filter .contentShowData .v-slot {
	margin-right: 30%;
}

.tetris-valo .data-details-filter .contentShowDataInBlock {
	color: black;
	margin-top: 0;
	display: inline-block;
}

.tetris-valo .data-details-filter .contentShowDataInBlock .v-slot {
	margin-right: 30%;
	display: inline-block;
}

.tetris-valo .data-details-filter .contentDisplayBy {
	color: black;
	margin-top: 0;
}

.tetris-valo .data-details-filter .contentDisplayBy .v-slot {
	margin-right: 3%;
}

.tetris-valo .data-details-filter .badDisplayByLayout .v-slot {
	padding-right: 4%;
}

.tetris-valo .data-details-filter .v-checkbox {
	padding-right: 0;
	margin-bottom: 7%;
}

.tetris-valo .data-details-filter .v-checkbox > label {
	margin-right: 0;
	margin-left: 0;
}

.tetris-valo .data-details-filter .buttonLayout .v-slot {
	padding-right: 10px;
}

.tetris-valo .data-details-filter .buttonLayout .v-slot .badFilterSaveDefault {
	margin-top: 2%;
}

.tetris-valo .data-details-filter .buttonLayout .v-slot .applyResetButtonsLayout {
	margin-left: 110px;
}

.tetris-valo .data-details-filter .buttonLayoutSecondary {
	margin-top: 60px;
}

.tetris-valo .data-details-filter .buttonLayoutSecondary .v-slot {
	padding-right: 10px;
}

.tetris-valo .data-details-filter .buttonLayoutSecondary .v-slot .badFilterSaveDefault {
	margin-top: 2%;
}

.tetris-valo .data-details-filter .buttonLayoutSecondary .v-slot .applyResetButtonsLayout {
	margin-left: 110px;
}

.tetris-valo .data-details-tabs .v-tabsheet-tabcontainer {
	padding-bottom: 10px;
}

.tetris-valo .data-details-tabs .v-panel {
	border: none;
}

.tetris-valo .data-details-tabs .v-horizontallayout .v-slot .v-label {
	line-height: 17px;
}

.tetris-valo .data-details-tabs .v-checkbox > label {
	margin-left: 0;
}

.tetris-valo .data-details-tree-table .v-table-header-wrap, .tetris-valo .data-details-tree-table .v-table-header {
	height: 48px;
}

.tetris-valo .data-details-tree-table .v-table-header-wrap tbody, .tetris-valo .data-details-tree-table .v-table-header tbody {
	vertical-align: top;
}

.tetris-valo .data-details-tree-table .v-table-header-wrap .v-table-header-cell, .tetris-valo .data-details-tree-table .v-table-header .v-table-header-cell {
	height: 1px;
}

.tetris-valo .data-details-tree-table .v-table-header-wrap .v-table-header-cell  > .v-table-caption-container, .tetris-valo .data-details-tree-table .v-table-header .v-table-header-cell  > .v-table-caption-container {
	white-space: normal;
	word-wrap: break-word;
	height: 100%;
}

.tetris-valo .data-details-tree-table .v-table-header-wrap .v-table-header-cell  > .v-table-resizer, .tetris-valo .data-details-tree-table .v-table-header .v-table-header-cell  > .v-table-resizer {
	height: 48px;
}

.tetris-valo .data-details-tree-table .v-table-header-wrap .v-table-header-cell:first-child, .tetris-valo .data-details-tree-table .v-table-header .v-table-header-cell:first-child {
	position: sticky;
	left: 0.1px;
	z-index: 1;
}

.tetris-valo .data-details-tree-table .v-table-cell-content:first-child {
	position: sticky;
	left: 0.1px;
	background-color: #ffffff;
}

.tetris-valo .data-details-tree-table.large-header .v-table-header-wrap, .tetris-valo .data-details-tree-table.large-header .v-table-header {
	height: 86px;
}

.tetris-valo .data-details-tree-table.large-header .v-table-header-wrap .v-table-header-cell > .v-table-resizer, .tetris-valo .data-details-tree-table.large-header .v-table-header .v-table-header-cell > .v-table-resizer {
	height: 86px;
}

.tetris-valo .last-year-data label, .tetris-valo .v-table-cell-content-last-year-data > div {
	color: #0E9C0E;
}

.tetris-valo .yearly-variance-data label, .tetris-valo .v-table-cell-content-yearly-variance-data > div {
	color: #C323EB;
}

.tetris-valo .pickup-days-panel > .v-panel-content {
	background: none;
}

.tetris-valo .toolbar-label-black {
	font-weight: 400;
}

.tetris-valo .v-table-cell-content-user-remaining-demand .v-table-cell-wrapper {
	padding-top: 2px;
}

.tetris-valo .v-table-cell-content-user-remaining-demand .v-table-cell-wrapper .v-link {
	text-decoration: none;
}

.tetris-valo .v-table-cell-content-user-remaining-demand .v-table-cell-wrapper .v-link span {
	text-decoration: none;
	color: #0066CC !important;
	cursor: pointer;
}

.tetris-valo #businessAnalysisDataSlider div.noUi-base div.noUi-draggable {
	background: #FF9900;
}

.tetris-valo #badPaceDataRootLayout {
	margin-top: 50px;
	display: grid;
	padding-right: 5px;
	grid-template-rows: 0 50px;
}

.tetris-valo #businessAnalysisPaceDataFilterButton {
	justify-self: end;
	transform: translate(-10px, -35px);
}

.tetris-valo .display-criteria-content {
	min-width: 525px;
}

.tetris-valo .display-criteria-content .v-panel-content {
	padding-right: 25px;
	overflow-x: hidden;
}

.tetris-valo #businessAnalysisPaceSlider div.noUi-base div.noUi-draggable {
	background: #FF9900;
}

.tetris-valo #badSummaryRootLayout {
	margin-top: 50px;
	display: grid;
	grid-template-rows: 0 50px;
}

.tetris-valo .tetris-popup .optimized-icon .v-icon {
	color: #009933;
}

.tetris-valo .tetris-popup .independent-icon .v-icon {
	color: #9b2bfc;
}

.tetris-valo .tetris-popup .linked-icon .v-icon {
	color: #fa9e00;
}

.tetris-valo #viewModeButtons {
	justify-self: center;
}

.tetris-valo #businessAnalysisSummarySlider div.noUi-base div.noUi-draggable {
	background: #FF9900;
	padding-right: 10px;
}

.tetris-valo #buttonsLayout {
	display: flex;
	justify-self: right;
	align-items: center;
	transform: translate(-25px, -20px);
}

.tetris-valo #buttonsLayout .v-button {
	margin-right: 0 !important;
}

.tetris-valo #contentLayout {
	width: 100%;
	overflow-x: auto;
	padding-left: 10px;
}

.tetris-valo #contentLayout .summarygrid {
	width: 100% !important;
}

.tetris-valo .popup-window .v-window-contents {
	margin-right: 20px;
	margin-left: 20px;
}

.tetris-valo .popup-window .popUp .right-text-align {
	text-align: right;
}

.tetris-valo .summarygrid .v-horizontallayout .v-slot .v-label {
	vertical-align: baseline;
}

.tetris-valo .summarygrid .v-grid-row > td:first-child, .tetris-valo .tetris-valo .v-grid-editor-cells > div:first-child {
	text-align: left;
}

.tetris-valo .summarygrid .v-label-light {
	font-weight: bold;
	color: #333333;
}

.tetris-valo .summarygrid .v-button:before {
	height: 100%;
}

.tetris-valo .summarygrid .v-button.mediumFont .v-icon {
	font-size: 15px;
}

.tetris-valo .summarygrid .mediumFont, .tetris-valo .tetris-valo .mediumFont > .v-icon {
	font-size: 15px;
}

.tetris-valo .summarygrid .v-button {
	padding: 0 0;
	height: 23px;
}

.tetris-valo .summarygrid .v-grid-header .v-grid-cell {
	height: 60px !important;
}

.tetris-valo .wrap-image-buttons {
	height: 40px !important;
	margin-top: 2px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: space-around;
	justify-content: space-evenly;
	align-items: center;
}

.tetris-valo .summarygrid .summary-row-bar .light-purple-icon.v-icon {
	margin-bottom: 2px;
}

.tetris-valo .summarygrid .summary-row-bar .green-color.v-icon {
	margin-bottom: 2px;
}

.tetris-valo .summarygrid .summary-row-bar .orange-icon.v-icon {
	margin-bottom: 2px;
}

.tetris-valo .v-grid-row.separator > .v-grid-cell {
	border-bottom: 1px solid #BCBCBC;
}

.tetris-valo .v-grid-row.fake-link > .v-grid-cell {
	cursor: hand;
	cursor: pointer;
}

.tetris-valo .v-grid-row.fake-link > .v-grid-cell  > a {
	color: #0066cc;
}

.tetris-valo .unlink {
	color: black !important;
	cursor: auto !important;
}

.tetris-valo .filtered {
	cursor: auto !important;
	opacity: 0.3;
	pointer-events: none;
}

.tetris-valo .header-filtered {
	opacity: 0.3;
	pointer-events: none;
}

.tetris-valo .fake-link-label {
	color: blue;
	cursor: hand;
	cursor: pointer;
}

.tetris-valo .summarygrid .v-grid-cell {
	padding: 1px;
	font-size: 11px;
	font-weight: 400;
	line-height: 20px;
	color: black;
}

.tetris-valo .out-of-order-override {
	background-color: #FFEBD4 !important;
}

.tetris-valo .summarygrid .v-grid-column-header-content {
	font-size: 10px;
}

.tetris-valo .summary-row > td {
	background-color: #fff;
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: #BCBCBC;
}

.tetris-valo .summary-row-bar > td {
	background-color: #fff;
	border: 0 solid #BCBCBC;
	border-left-width: 1px;
}

.tetris-valo .bar-by-los span {
	color: white;
}

.tetris-valo .bubble {
	text-align: left !important;
	color: black;
	position: absolute;
	background: #d9d9d9;
	margin: -50px 0px 0px 20px;
	padding: 10px;
	border: 1px solid;
}

.tetris-valo .ceiling-override {
	color: #9963FF;
	padding: 5px 0 0 5px;
}

.tetris-valo .floor-override {
	color: #D8B200;
	padding: 5px 5px 0 0;
}

.tetris-valo .specific-override {
	color: #CF2AC1;
	padding: 5px 0 0 5px;
}

.tetris-valo .groupfloor-override {
	color: #FB8B06;
	padding: 5px 0 0 5px;
}

.tetris-valo .limit-override {
	color: #800080;
	padding: 5px 0 0 5px;
}

.tetris-valo .value-override {
	color: #EE77EE;
	padding: 5px 0 0 5px;
}

.tetris-valo .occupancy-demand-override {
	color: #00AAFF;
	padding: 5px 5px 0 0;
}

.tetris-valo .arrival-demand-override {
	color: #FF0000;
	padding: 5px 0 0 5px;
}

.tetris-valo .wash-override {
	color: #4DB400;
	padding: 5px 0 0 5px;
}

.tetris-valo .daily-overview tr {
	height: 18px;
}

.tetris-valo .close-lv0-override {
	color: #0099CC;
	padding: 5px 0 0 5px;
}

.tetris-valo .summarygrid .v-grid-tablewrapper {
	border-width: 0 0 0 1px;
}

.tetris-valo .v-button-bad-button {
	position: relative;
	z-index: 999;
	margin-right: 17px;
}

.tetris-valo .bar-by-los-grid .v-grid-cell {
	font-size: 11px;
}

.tetris-valo .v-slot-bad-slider {
	margin-right: 19px;
}

.tetris-valo .label-margin-left {
	margin-left: 15px;
}

.tetris-valo .v-grid-cell > a {
	text-decoration: none;
}

.tetris-valo .summary-popup-view-label {
	cursor: pointer;
}

.tetris-valo .summary-popup-view {
	margin-top: -30px;
}

.tetris-valo #businessAnalysisNoteImageButton * {
	font-size: 15px !important;
	margin-top: -1px;
}

.tetris-valo #businessAnalysisDetailsButton * {
	font-size: 15px;
}

.tetris-valo #businessAnalysisXLSButton * {
	font-size: 20px !important;
}

.tetris-valo #dataDetailsXLSButton * {
	margin-top: 2px;
}

.tetris-valo #businessAnalysisSummaryContent {
	background: none;
	border: none;
}

.tetris-valo #summaryPopupButtonLink {
	margin-left: 3px;
}

.tetris-valo .channel-costs .v-caption {
	font-size: 14px;
}

.tetris-valo .childCheckBox {
	margin-left: 50px;
}

.tetris-valo .scrollable-container {
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
}

.tetris-valo .custom-margin {
	margin-right: 15px;
	border: 1px solid #D7D7D7;
}

.tetris-valo .label-align {
	padding-left: 9px;
}

.tetris-valo .list-align {
	margin-top: 15px;
	margin-right: 60px;
}

.tetris-valo #badPerformanceRootLayout {
	margin-top: 50px;
}

.tetris-valo #performanceContentLayout {
	display: grid;
	grid-template-columns: 100%;
}

.tetris-valo #performanceContentLayout #performanceTopCharts {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.tetris-valo .checkbox-holder .v-checkbox > label {
	margin-left: 0;
}

.tetris-valo .performance-tab-scroll {
	overflow-y: auto !important;
	overflow-x: hidden !important;
}

.tetris-valo #businessAnalysisPerformanceSlider div.noUi-base div.noUi-draggable {
	background: #FF9900;
}

.tetris-valo .icon-red {
	color: #CC0000 !important;
}

.tetris-valo .background-color-grey {
	background-color: #bcbcbc;
}

.tetris-valo .investigatorPopUp #overridesLayout {
	display: grid;
	grid-template-columns: 630px 1fr;
}

.tetris-valo .investigatorPopUp #overridesLayout #closeLv0Layout {
	display: grid;
	grid-template-rows: 20px 1fr;
}

.tetris-valo .investigatorPopUp #overridesLayout #closeLv0Layout .v-select-optiongroup {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	border: 1px solid lightgray;
}

.tetris-valo .investigatorPopUp #rootOverrideLayout {
	display: flex;
	justify-content: center;
}

.tetris-valo .investigatorPopUp #overrideEntriesLayout > .v-spacing {
	width: 40px;
}

.tetris-valo .investigatorPopUp .v-select-optiongroup {
	display: inline;
}

.tetris-valo .investigatorPopUp .updateAllOverride {
	padding-left: 9px;
}

.tetris-valo .investigatorPopUp .padding-right20px {
	padding-right: 20px;
}

.tetris-valo .investigatorPopUp .chart-header {
	text-align: center;
	color: #F0861C;
	background-color: #F2F2F2;
	font-weight: bolder;
	height: 30px;
	padding-top: 5px;
}

.tetris-valo .investigatorPopUp .chart-layout[width-range~="0-1150px"] .v-verticallayout {
	width: 379px;
}

.tetris-valo .investigatorPopUp .chart-layout[width-range~="1151px-"] .v-verticallayout {
	width: 33%;
}

.tetris-valo .investigatorPopUp .bold-text {
	font-weight: bold;
	font-size: 14px;
}

.tetris-valo .investigatorPopUp .italics-text {
	font-style: italic;
	font-size: 12px;
}

.tetris-valo .investigatorPopUp .font-size-14 {
	font-size: 14px;
}

.tetris-valo .investigatorPopUp .text-color {
	color: #333333;
}

.tetris-valo .investigatorPopUp .no-space .v-spacing {
	height: 0px;
}

.tetris-valo .investigatorPopUp .layout-background-color {
	background: white;
}

.tetris-valo .investigatorPopUp .padding-top-5px {
	padding-top: 5px;
}

.tetris-valo .investigatorPopUp .background-color-white {
	background: #FFFFFF;
}

.tetris-valo .investigatorPopUp .borderless-blue-image-button {
	padding: 5px 5px;
	border: 0px;
	font-size: 20px;
	color: #0099CC;
	background: transparent;
}

.tetris-valo .investigatorPopUp .borderless-gray-image-button {
	padding: 5px 5px;
	font-size: 20px;
	color: #999999;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .investigatorPopUp .binocular-image {
	border: 0px;
	font-size: 20px;
	color: #0099CC;
}

.tetris-valo .investigatorPopUp .v-slot-specific-override-icon .v-icon {
	color: #CF2AC1;
}

.tetris-valo .investigatorPopUp .v-slot-groupFloor-override-icon .v-icon {
	color: #FB8B06;
}

.tetris-valo .investigatorPopUp .v-slot-groupFloor-override-icon .v-captiontext {
	color: #0066cc;
}

.tetris-valo .investigatorPopUp .v-slot-floor-override-icon .v-icon {
	color: #D8B200;
}

.tetris-valo .investigatorPopUp .v-slot-ceiling-override-icon .v-icon {
	color: #9963FF;
}

.tetris-valo .investigatorPopUp .grid-cell-layout {
	padding-left: 17px;
	width: 50px;
	vertical-align: super;
}

.tetris-valo .investigatorPopUp .v-treegrid-column-header-content {
	text-align: center;
}

.tetris-valo .investigatorPopUp .v-treegrid-cell.closelv0 {
	padding: unset;
	text-align: center;
}

.tetris-valo .investigatorPopUp .v-treegrid-cell.closelv0-header {
	padding: unset;
	text-align: left;
}

.tetris-valo .investigatorPopUp .v-slot-highest-price-group-label .v-caption {
	padding: 0px 10px;
}

.tetris-valo .investigatorPopUp .v-slot-override-delete-icon .v-button-link {
	right: 16px;
	top: 8px;
}

.tetris-valo .investigatorPopUp .no-bottom-space {
	padding-bottom: 0px;
}

.tetris-valo .investigatorPopUp .no-top-space {
	padding-top: 0px;
}

.tetris-valo .investigatorPopUp .v-grid-header .v-grid-cell {
	background: #E4E4E4;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}

.tetris-valo .investigatorPopUp .room-class .v-icon {
	color: #0099CC;
	font-size: 15px;
}

.tetris-valo .investigatorPopUp .borderless-image-button {
	padding-top: 5px;
	font-size: 20px;
	color: #0099CC;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .investigatorPage .forecast-investigator .title {
	font-size: 20px;
	font-weight: bolder;
	color: #F0861C;
}

.tetris-valo .investigatorPage .hide-space .v-spacing {
	height: 0px;
	width: 0px;
}

.tetris-valo .investigatorPage .help-icon-tiny {
	padding: 0px;
	color: #0099CC;
	border: 0px;
}

.tetris-valo .investigatorPage .grey_text_box {
	background-color: #DCDCDC;
	border-color: #A9A9A9;
	font-style: italic;
}

.tetris-valo .investigatorPage .black-star {
	color: black;
}

.tetris-valo .investigatorPage .font-size-10 {
	font-weight: normal;
	font-size: 10px;
}

.tetris-valo .investigatorPage .chart-header {
	text-align: center;
	color: #F0861C;
	font-weight: bolder;
	background-color: transparent;
}

.tetris-valo .investigatorPage .v-datefield [class*="button"] {
	right: 1px;
	left: auto;
}

.tetris-valo .investigatorPage .filter-title {
	font-size: 20px;
	font-weight: bolder;
}

.tetris-valo .investigatorPage .filter-title-bold {
	font-size: 20px;
	font-weight: bold;
}

.tetris-valo .investigatorPage .center-align {
	text-align: center;
}

.tetris-valo .investigatorPage .gridlayout-label-header {
	text-align: center;
	color: #333333;
	font-weight: bold;
	background: #E4E4E4;
	height: 100%;
	border-right: #dadada;
	border-right-style: solid;
	border-right-width: 1px;
}

.tetris-valo .investigatorPage .gridlayout-label-cell {
	text-align: left;
	padding-left: 10px;
	color: black;
	height: auto;
	background: white;
}

.tetris-valo .investigatorPage .v-gridlayout-slot {
	border-style: solid;
	border-color: #dadada;
	border-width: 0.5px;
}

.tetris-valo .investigatorPage .gridlayout-link-label-cell {
	text-align: center;
	color: blue;
	background: transparent;
}

.tetris-valo .investigatorPage .column-header-cell {
	background: #E4E4E4;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}

.tetris-valo .investigatorPage .grid {
	font-size: 14px;
	text-align: left;
	background: white;
}

.tetris-valo .investigatorPage .active-button {
	color: white;
	background: #2B82BD;
	font-size: 14px;
	border: 0px;
}

.tetris-valo .investigatorPage .v-grid-header .v-grid-cell {
	background: #E4E4E4;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}

.tetris-valo .investigatorPage .v-grid-cell {
	text-align: center;
	color: black;
}

.tetris-valo .investigatorPage .bold-text {
	font-weight: bold;
	font-size: 14px;
}

.tetris-valo .investigatorPage .borderless-blue-image-button {
	padding-top: 5px;
	border: 0px;
	font-size: 20px;
	color: #0099CC;
	background: transparent;
}

.tetris-valo .investigatorPage .borderless-gray-image-button {
	font-size: 24px;
	color: #999999;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .investigatorPage .borderless-image-button {
	padding-top: 5px;
	font-size: 20px;
	color: #0099CC;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .investigatorPage .binocular-image {
	border: 0px;
	font-size: 20px;
	color: #0099CC;
}

.tetris-valo .investigatorPage .background-color-grey {
	background: #FAFAFA;
}

.tetris-valo .investigatorPage .background-color-white {
	background: #FFFFFF;
}

.tetris-valo .investigatorPage .padding-left-20px {
	padding-left: 20px;
}

.tetris-valo .investigatorPage .padding-left-27px {
	padding-left: 27px;
}

.tetris-valo .investigatorPage .padding-left-43px {
	padding-left: 43px;
}

.tetris-valo .investigatorPage .padding-bottom-10px {
	padding-bottom: 10px;
}

.tetris-valo .investigatorPage .padding-bottom-5px {
	padding-bottom: 5px;
}

.tetris-valo .investigatorPage .padding-top-5px {
	padding-top: 5px;
}

.tetris-valo .investigatorPage .font-normal-type {
	color: #333333;
	font-size: 14px;
	font-weight: bolder;
}

.tetris-valo .investigatorPage .v-grid-body .v-grid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
	height: auto;
	word-wrap: break-word;
	word-break: break-all;
	background: white;
}

.tetris-valo .investigatorPage .tetris-text-centered {
	text-align: center;
	font-weight: bold;
}

.tetris-valo .investigatorPage .v-spacing {
	height: 0px;
}

.tetris-valo .investigatorPage .v-button-caption:hover {
	color: transparent;
}

.tetris-valo .investigatorPage .italics {
	font-style: italic;
}

.tetris-valo .investigatorPage .font-size-14 {
	font-size: 14px;
}

.tetris-valo .investigatorPage .borderlessGridlayout .v-gridlayout-slot {
	border: 0px;
}

.tetris-valo .investigatorPage .v-grid-cell.bar-decision-background-color, .tetris-valo .investigatorPage .bar-decision-box {
	background-color: #99FF99;
}

.tetris-valo .investigatorPage .v-grid-cell.on-books-selected-date-background-color {
	background-color: #d9e1f2;
}

.tetris-valo .investigatorPage .v-grid-cell.on-books-grid-alignment-and-padding {
	text-align: left;
	padding-bottom: 2px;
	padding-left: 10px;
	padding-top: 2px;
}

.tetris-valo .investigatorPage .v-grid-cell.bar-user-selection-background-color, .tetris-valo .investigatorPage .user-selection-box {
	background-color: #BDE2F4;
}

.tetris-valo .investigatorPage .bar-decision-box, .tetris-valo .investigatorPage .user-selection-box {
	width: 17px;
	height: 17px;
	float: left;
	margin-right: 5px;
}

.tetris-valo .investigatorPage .layout-with-border {
	border: 1px solid lightgray;
	margin-top: 10px;
}

.tetris-valo .investigatorPage .room-class .v-icon {
	color: #0099CC;
	font-size: 15px;
}

.tetris-valo .investigatorPage .no-space .v-spacing {
	height: 0px;
}

.tetris-valo #investigatorPage_button_exportToPdf {
	background-image: none;
	background-color: #E4E4E4;
	border: 1px solid #E4E4E4;
	border-top-color: #E4E4E4;
	border-bottom-color: #E4E4E4;
	color: black !important;
	font-weight: 400;
}

.tetris-valo #tetrisNotificationIcon .warning-icon-64px.v-icon, .tetris-valo #tetrisNotificationIcon .warning-icon-64px .v-icon {
	font-size: 32px;
	color: #FF9900;
}

.tetris-valo #investigatorOverrideTabView {
	width: 80%;
}

.tetris-valo .massbaruploadPage .v-upload .v-button {
	background-image: none;
	background-color: #2B82BD;
	border: 1px solid #2B82BD;
	border-top-color: #2B82BD;
	border-bottom-color: #2B82BD;
	color: white;
	font-weight: 400;
}

.tetris-valo .pricingPage .custom-tooltip {
	position: absolute;
	width: 150px;
	height: 70px;
	border: 1px solid cornflowerblue;
	overflow: hidden;
	pointer-events: none;
	transition: opacity 1s;
	background-color: white;
}

.tetris-valo .pricingPage .icon-tooltip {
	position: fixed;
	background-color: #fff;
	color: #333;
	z-index: 1;
	white-space: pre-line;
	padding: 5px;
	box-shadow: 0 2px 6px 0;
}

.tetris-valo .pricingPage .custom-tooltip.ag-tooltip-hiding {
	opacity: 0;
}

.tetris-valo .pricingPage .custom-tooltip p {
	margin: 5px;
	white-space: nowrap;
}

.tetris-valo .pricingPage .custom-tooltip p:first-of-type {
	font-weight: bold;
}

.tetris-valo .pricingPage .chart-header {
	text-align: center;
	color: #F0861C;
	background-color: #F2F2F2;
	font-weight: bolder;
	height: 30px;
	padding-top: 5px;
}

.tetris-valo .pricingPage .chart-layout[width-range~="0-1150px"] .v-verticallayout {
	width: 379px;
}

.tetris-valo .pricingPage .chart-layout[width-range~="1151px-"] .v-verticallayout {
	width: 33%;
}

.tetris-valo .pricingPage .filter-header {
	color: #333333;
}

.tetris-valo .pricingPage .multi-product-filter {
	display: flex;
	padding-left: 155px;
	padding-top: 10px;
	padding-bottom: 20px;
	margin: auto;
}

.tetris-valo .pricingPage .independent-product-info {
	display: flex;
	padding-left: 115px;
	padding-right: 85px;
	margin: auto;
}

.tetris-valo .pricingPage .multi-product-day-card-wrapping {
	display: flex;
}

.tetris-valo .pricingPage .v-slot-specific-override-icon .v-icon {
	color: #CF2AC1;
}

.tetris-valo .pricingPage .v-slot-groupFloor-override-icon .v-icon {
	color: #FB8B06;
}

.tetris-valo .pricingPage .v-slot-groupFloor-override-icon .v-captiontext {
	color: #0066cc;
}

.tetris-valo .pricingPage .v-slot-floor-override-icon .v-icon {
	color: #D8B200;
}

.tetris-valo .pricingPage .v-slot-inventory-limit-override-icon .v-icon {
	color: #02BEA8;
}

.tetris-valo .pricingPage .inventory-limit-link {
	color: #0099CC;
}

.tetris-valo .pricingPage .v-slot-ceiling-override-icon .v-icon {
	color: #9963FF;
}

.tetris-valo .pricingPage .multi-product-combo-box, .tetris-valo .pricingPage .room-type-combo-box, .tetris-valo .pricingPage .room-class-combo-box, .tetris-valo .pricingPage .my-price-layout {
	display: inline-grid;
	padding-left: 30px;
	padding-right: 35px;
}

.tetris-valo .pricingPage .agile-rates-override-header {
	padding-top: 20px;
}

.tetris-valo .pricingPage .day-selector-layout {
	text-align: center;
	padding-top: 5px;
	padding-bottom: 10px;
}

.tetris-valo .pricingPage .grid-cell-layout {
	padding-left: 4px;
	vertical-align: super;
}

.tetris-valo .pricingPage .multi-product-override-popup-layout {
	display: grid;
	grid-template-rows: 40px 70px 76px auto !important;
}

.tetris-valo .pricingPage .arrow-label-layout {
	padding-top: 10px;
}

.tetris-valo .pricingPage #rootOverrideLayout {
	text-align: center;
}

.tetris-valo .pricingPage .final-price-layout {
	padding-right: 10px;
}

.tetris-valo .pricingPage .background-color-gray {
	background-color: #e4e4e4;
}

.tetris-valo .pricingPage .button-bar {
	background: #e4e4e4;
}

.tetris-valo .pricingPage .save-button {
	color: white;
	background: #0099CC;
}

.tetris-valo .pricingPage #applyOverridesToAllRoomClassesCheckbox {
	margin-top: 23px;
}

.tetris-valo .pricingPage .day-details {
	background-color: #fafafa;
}

.tetris-valo .pricingPage .right-Day-Card-Details {
	background-color: white;
}

.tetris-valo .pricingPage .default-label {
	font-size: 12px;
}

.tetris-valo .pricingPage .date-label {
	color: #ca7900;
	font-weight: 400;
	margin: unset;
}

.tetris-valo .pricingPage .unsaved-changes-alert-label .v-icon {
	font-size: 24px;
}

.tetris-valo .pricingPage .v-caption {
	font-size: 13px;
	font-weight: 400;
}

.tetris-valo .pricingPage .special-event-icon {
	font-size: 24px;
	color: #909090;
	padding-right: 5px;
}

.tetris-valo .pricingPage .revert-changes-button {
	padding-left: 2px;
	padding-right: 2px;
	margin-top: -3px;
}

.tetris-valo .pricingPage .revert-changes-button .v-button-wrap .v-icon {
	font-size: 15px;
}

.tetris-valo .pricingPage .unsaved-changes-button {
	padding-left: 2px;
	padding-right: 2px;
	margin-top: -6px;
}

.tetris-valo .pricingPage .unsaved-changes-button .v-button-wrap .v-icon {
	font-size: 15px;
}

.tetris-valo .pricingPage .final-price-icons {
	font-size: 16px;
	padding-left: 2px;
	padding-right: 2px;
	margin-top: -2px;
	height: 30px;
}

.tetris-valo .pricingPage .notes-icon {
	font-size: 24px;
	margin-top: -2px;
}

.tetris-valo .pricingPage .competitors-link {
	margin-left: -5px;
	height: 25px;
}

.tetris-valo .pricingPage .details-button {
	left: -5px;
	padding-right: unset;
	height: 25px;
}

.tetris-valo .pricingPage .button-row {
	margin-top: -6px;
}

.tetris-valo .pricingPage .competitors-clear-button {
	top: 10px;
}

.tetris-valo .pricingPage .legend-layout .v-has-caption, .tetris-valo .pricingPage .legend-layout .v-has-caption > .v-caption {
	display: inline-flex;
}

.tetris-valo .pricingPage .legend-layout .v-slot-legend-icon .v-icon {
	font-size: 15px;
}

.tetris-valo .pricingPage .legend-header {
	background: #e4e4e4;
}

.tetris-valo .pricingPage .legend-header .legend-header-close {
	margin-top: -9px;
}

.tetris-valo .pricingPage .legend-header .legend-header-label {
	font-size: 16px;
	margin-left: 4px;
}

.tetris-valo .pricingPage .v-treegrid-column-header-content {
	text-align: center;
}

.tetris-valo .pricingPage .v-treegrid-cell.closelv0 {
	padding: unset;
	width: 63px;
	text-align: center;
}

.tetris-valo .pricingPage .v-treegrid-cell.closelv0-header {
	width: 70px;
	padding: unset;
	text-align: left;
}

.tetris-valo .pricingPage .v-slot-side-margins {
	margin-left: 10px;
	margin-right: 10px;
}

.tetris-valo .pricingPage .v-slot-override-fields-layout {
	background-color: #f2f2f2;
}

.tetris-valo .pricingPage .competitor-details-layout .default-competitor-color-box {
	background-color: #C4D4DA;
}

.tetris-valo .pricingPage .competitor-details-layout .default-competitor-label {
	font-size: 12px;
}

.tetris-valo .pricingPage .competitor-details-layout .highlight-competitor-row .v-grid-cell {
	background-color: #C4D4DA;
}

.tetris-valo .pricingPage .competitor-details-layout .v-grid-column-header-content {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	color: #333333;
}

.tetris-valo .pricingPage .competitor-details-layout #excelOutputButton {
	font-size: 24px;
}

.tetris-valo .pricingPage .error-label {
	color: #CC3300;
}

.tetris-valo .pricingPage .multiday-override-specific-checkbox > label {
	font-size: 13px;
}

.tetris-valo .pricingPage .remove-override-checkbox > label {
	margin-left: 0;
	padding-right: 10px;
}

.tetris-valo .pricingPage .override-title {
	font-weight: bold;
}

.tetris-valo .pricingPage .v-slot-group-floor-label {
	top: 10px;
}

.tetris-valo .pricingPage .group-floor-label .v-label-small {
	color: #0066cc;
}

.tetris-valo .pricingPage .required-indicator-not-visible .v-required-field-indicator {
	display: none;
}

.tetris-valo .pricingPage .pricing-agile-rates-vertical-line {
	color: #E4E4E4;
}

.tetris-valo .pricingPage .agileRatesPopUp .v-grid-header .v-grid-cell {
	background: #E4E4E4;
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	color: #333333;
}

.tetris-valo .pricingPage .independent-icon .v-icon:first-child {
	color: #9b2bfc;
}

.tetris-valo .pricingPage .optimized-icon .v-icon:first-child {
	color: #009933;
}

.tetris-valo .pricingPage .small-group-icon .v-icon:first-child {
	color: #0099CC;
}

.tetris-valo .pricingPage .linked-icon .v-icon:first-child {
	color: #fa9e00;
}

.tetris-valo .pricingPage .notesButtonAlignment {
	padding-right: 20px;
	padding-top: 5px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView #overridesLayout {
	display: grid;
	grid-template-columns: 630px 1fr;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView #overridesLayout #closeLv0Layout {
	display: grid;
	grid-template-rows: 20px 1fr;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView #overridesLayout #closeLv0Layout .v-select-optiongroup {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	border: 1px solid lightgray;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView #rootOverrideLayout {
	display: flex;
	justify-content: center;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView #overrideEntriesLayout > .v-spacing {
	width: 40px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-select-optiongroup {
	display: inline;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .updateAllOverride {
	padding-left: 9px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .padding-right20px {
	padding-right: 20px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .chart-header {
	text-align: center;
	color: #F0861C;
	background-color: #F2F2F2;
	font-weight: bolder;
	height: 30px;
	padding-top: 5px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .chart-layout[width-range~="0-1150px"] .v-verticallayout {
	width: 379px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .chart-layout[width-range~="1151px-"] .v-verticallayout {
	width: 33%;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .bold-text {
	font-weight: bold;
	font-size: 14px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .italics-text {
	font-style: italic;
	font-size: 12px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .font-size-14 {
	font-size: 14px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .text-color {
	color: #333333;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .no-space .v-spacing {
	height: 0px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .layout-background-color {
	background: white;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .padding-top-5px {
	padding-top: 5px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .background-color-white {
	background: #FFFFFF;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .borderless-blue-image-button {
	padding: 5px 5px;
	border: 0px;
	font-size: 20px;
	color: #0099CC !important;
	background: transparent;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .borderless-gray-image-button {
	padding: 5px 5px;
	font-size: 20px;
	color: #999999;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .binocular-image {
	border: 0px;
	font-size: 20px;
	color: #0099CC;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-specific-override-icon .v-icon {
	color: #CF2AC1;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-groupFloor-override-icon .v-icon {
	color: #FB8B06;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-groupFloor-override-icon .v-captiontext {
	color: #0066cc;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-floor-override-icon .v-icon {
	color: #D8B200;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-ceiling-override-icon .v-icon {
	color: #9963FF;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-inventory-limit-override-icon .v-icon {
	color: #02BEA8;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .inventory-limit-link {
	color: #0099CC;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .grid-cell-layout {
	padding-left: 17px;
	width: 50px;
	vertical-align: super;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-treegrid-column-header-content {
	text-align: center;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-treegrid-cell.closelv0 {
	padding: unset;
	text-align: center;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-treegrid-cell.closelv0-header {
	padding: unset;
	text-align: left;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-highest-price-group-label .v-caption {
	padding: 0px 10px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-slot-override-delete-icon .v-button-link {
	right: 16px;
	top: 8px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .no-bottom-space {
	padding-bottom: 0px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .no-top-space {
	padding-top: 0px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .v-grid-header .v-grid-cell {
	background: #E4E4E4;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .room-class .v-icon {
	color: #0099CC;
	font-size: 15px;
}

.tetris-valo .pricingPage #multiProductOverridePopUpView .borderless-image-button {
	padding-top: 5px;
	font-size: 20px;
	color: #0099CC;
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .pricingPage .borderless-blue-image-button {
	padding: 5px 5px;
	border: 0px;
	font-size: 20px;
	color: #0099CC !important;
	background: transparent;
	margin-top: -2px;
}

.tetris-valo #multiDayOverrideWindow .warningLabel {
	white-space: pre-wrap;
}

.tetris-valo #multiDayOverrideWindow #deleteButton {
	margin-bottom: 13px;
}

.tetris-valo #multiDayOverrideWindow #offsetFieldLabel {
	margin-bottom: 13px;
	vertical-align: bottom;
}

.tetris-valo #multiDayOverrideWindow .warning-border {
	border: 1px solid #FF9900;
	padding: 10px;
}

.tetris-valo .apply-to-all-lv0-room-types-checkbox {
	vertical-align: text-top;
}

.tetris-valo .apply-to-all-lv0-room-types-checkbox > label {
	font-size: 12px;
	margin-left: 5px !important;
}

.tetris-valo #multiDayMultiProductOverrideWindow .advancedPopUpButtonStyle {
	display: inline-block;
}

.tetris-valo #multiDayMultiProductOverrideWindow #roomClassLayout {
	display: inline-grid;
	padding-bottom: 5px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .checkboxRemoveHeaderLayout, .tetris-valo #multiDayMultiProductOverrideWindow .addOverrideHeaderLayout {
	display: inline-flex;
}

.tetris-valo #multiDayMultiProductOverrideWindow .specificOverrideStyle {
	display: inline-flex;
	padding-top: 8px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .specificOverrideStyle .specificValueApplyToAllRoomTypes {
	margin: auto;
}

.tetris-valo #multiDayMultiProductOverrideWindow .apply-to-all-lv0-room-types-checkbox {
	vertical-align: text-top;
}

.tetris-valo #multiDayMultiProductOverrideWindow .apply-to-all-lv0-room-types-checkbox > label {
	font-size: 12px;
	margin-left: 5px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-caption-bar-override-pricing-adjustment {
	color: #FFE6FD;
	padding-right: 10px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-caption-bar-override-specific {
	color: #CF2AC1;
	padding-right: 10px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-caption-bar-override-floor {
	color: #D8B200;
	padding-right: 10px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-caption-bar-override-ceiling {
	color: #9963FF;
	padding-right: 10px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-caption-bar-override-groupFloor {
	color: #FB8B06;
	padding-right: 10px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .multidayDateFilterStyle {
	display: inline-grid;
}

.tetris-valo #multiDayMultiProductOverrideWindow .date-and-dow-layout-left {
	display: inline-flex;
}

.tetris-valo #multiDayMultiProductOverrideWindow .notes-button-layout {
	text-align: end;
}

.tetris-valo #multiDayMultiProductOverrideWindow .date-and-dow-layout {
	display: inline-flex;
}

.tetris-valo #multiDayMultiProductOverrideWindow .addOverrideHeaderLayout, .tetris-valo #multiDayMultiProductOverrideWindow .checkboxRemoveHeaderLayout {
	text-align: center;
	color: #333333;
	height: 13px !important;
}

.tetris-valo #multiDayMultiProductOverrideWindow .addOverrideHeaderLayout .v-checkbox, .tetris-valo #multiDayMultiProductOverrideWindow .checkboxRemoveHeaderLayout .v-checkbox {
	margin-top: 4px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-treegrid-column-header-content {
	text-align: center;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-treegrid-cell.closelv0 {
	padding: unset;
	width: 63px;
	text-align: center;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-treegrid-cell.closelv0-header {
	width: 70px;
	padding: unset;
	text-align: center;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-treegrid-cell.closelv0-header .v-treegrid-expander {
	display: none;
}

.tetris-valo #multiDayMultiProductOverrideWindow #applyToAllRoomTypesCheckbox {
	padding: 10px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .appliedEquallyLabel {
	margin-top: 4px;
	font-size: 13px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .remove-override-center-align {
	padding-top: 8px;
	text-align: center;
}

.tetris-valo #multiDayMultiProductOverrideWindow .add-override-center-align {
	padding-top: 6px;
	text-align: center;
}

.tetris-valo #multiDayMultiProductOverrideWindow .center-align {
	text-align: center;
}

.tetris-valo #multiDayMultiProductOverrideWindow .paddedBottomLabel {
	font-size: 13px;
	padding-bottom: 4px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-grid-cell {
	height: 45px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .v-grid-header .v-grid-cell {
	height: 30px !important;
	color: #333333;
	background: #E4E4E4 !important;
	font: 400 14px "Open Sans", sans-serif;
}

.tetris-valo #multiDayMultiProductOverrideWindow .middle-align {
	padding-top: 7px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .middle-align .v-label {
	margin-top: -1px;
}

.tetris-valo #multiDayMultiProductOverrideWindow #addSpecificHeader {
	padding-left: 100px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .groupFloorActive {
	display: inline-flex;
}

.tetris-valo #multiDayMultiProductOverrideWindow .groupFloorActiveLayoutInFilter {
	vertical-align: bottom;
	margin-left: -60px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .warningLabel {
	white-space: pre-wrap;
}

.tetris-valo #multiDayMultiProductOverrideWindow .warning-border {
	border: 1px solid #FF9900;
	padding: 6px;
	margin-top: 8px;
}

.tetris-valo #multiDayMultiProductOverrideWindow .warningIcon {
	margin-top: -3px;
}

.tetris-valo .agile-rates-adjustment-type-layout {
	font-size: 13px;
}

.tetris-valo .agile-rates-adjustment-field-label {
	margin-top: 10px;
}

.tetris-valo .adjustment-field-delete-button {
	padding-top: 5px;
}

.tetris-valo #agileRatesOverridePopupLayout {
	display: grid;
	grid-template-rows: 30px 75px 1px auto;
}

.tetris-valo #agileRatesOverridePopupLayout #agileRatesOverridePopupDaySelector {
	display: flex;
	width: unset !important;
	justify-content: center;
}

.tetris-valo #agileRatesOverridePopupLayout #agileRatesOverrideHeader {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.tetris-valo #agileRatesOverridePopupLayout #independentProductionInformation {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.tetris-valo #agileRatesOverridePopupLayout .independent-vertical-line {
	margin-top: 7px;
}

.tetris-valo #agileRatesOverridePopupLayout #notesButton {
	z-index: 1;
	justify-self: end;
}

.tetris-valo #agileRatesOverridePopupLayout #agileRatesOverridePopupTabSheet, .tetris-valo #agileRatesOverridePopupLayout .v-tabsheet-content, .tetris-valo #agileRatesOverridePopupLayout .v-tabsheet-tabsheetpanel, .tetris-valo #agileRatesOverridePopupLayout .v-scrollable {
	width: 100%;
}

.tetris-valo #agileRatesOverridePopupLayout #agileRatesOverridePopupTabSheet .warningLabel, .tetris-valo #agileRatesOverridePopupLayout .v-tabsheet-content .warningLabel, .tetris-valo #agileRatesOverridePopupLayout .v-tabsheet-tabsheetpanel .warningLabel, .tetris-valo #agileRatesOverridePopupLayout .v-scrollable .warningLabel {
	white-space: pre-wrap;
}

.tetris-valo #agileRatesOverridePopupLayout #agileRatesOverridePopupTabSheet .warning-border, .tetris-valo #agileRatesOverridePopupLayout .v-tabsheet-content .warning-border, .tetris-valo #agileRatesOverridePopupLayout .v-tabsheet-tabsheetpanel .warning-border, .tetris-valo #agileRatesOverridePopupLayout .v-scrollable .warning-border {
	border: 1px solid #FF9900;
	padding: 10px;
}

.tetris-valo #agileRatesOverridePopupLayout #deleteButton {
	margin-bottom: 13px;
}

.tetris-valo #agileRatesOverridePopupLayout .deleteButton {
	font-size: 18px;
	margin-top: -5px;
}

.tetris-valo #agileRatesOverridePopupLayout .undoButton {
	font-size: 18px;
	margin-top: -6px;
}

.tetris-valo #agileRatesOverridePopupLayout .revertedBackground {
	background-color: #99ebff;
}

.tetris-valo #agileRatesOverridePopupLayout #offsetFieldLabel {
	margin-bottom: 13px;
	vertical-align: bottom;
}

.tetris-valo #agileRatesOverridePopupLayout #pricingOptimizedOverrideLayout .warningLabel {
	white-space: pre-wrap;
}

.tetris-valo #agileRatesOverridePopupLayout #pricingOptimizedOverrideLayout .warning-border {
	border: 1px solid #FF9900;
	padding: 10px;
}

.tetris-valo .alert-layout {
	border-style: solid;
	border-color: #FFCC00;
	border-width: 1px;
	font-size: 12.5px;
}

.tetris-valo .warning-label {
	margin-top: 4px;
}

.tetris-valo .competitor-checkbox {
	text-align: left;
	margin-top: -10px;
}

.tetris-valo .remove-left-padding {
	padding-left: 0px !important;
}

.tetris-valo .header-border {
	border-right: 1px solid #BABFC7 !important;
}

.tetris-valo .ag-theme-alpine {
	--ag-header-background-color: #e4e4e4;
	font: 400 12px "Open Sans", sans-serif;
}

.tetris-valo .ag-theme-alpine .inline-edit-column-header {
	text-align: center;
	width: 100%;
	font-weight: normal;
	text-overflow: unset;
	white-space: normal;
}

.tetris-valo .ag-theme-alpine .header-tooltip {
	position: absolute;
	max-width: 400px;
	height: auto;
	white-space: normal;
	overflow: hidden;
	pointer-events: none;
	transition: opacity 0s;
	background-color: #fff;
	color: #333;
}

.tetris-valo .ag-theme-alpine .no-bold {
	font-weight: normal;
}

.tetris-valo .ag-theme-alpine .center-align {
	text-align: center;
}

.tetris-valo .ag-theme-alpine .right-align {
	text-align: right;
}

.tetris-valo .ag-theme-alpine .trash-icon {
	font-size: 24px;
	vertical-align: top;
}

.tetris-valo .ag-theme-alpine .revert-icon {
	font-size: 19px;
	vertical-align: top;
}

.tetris-valo .view-button-daycard {
	margin-top: -8px;
}

.tetris-valo .view-button-inline {
	margin-top: -4px;
}

.tetris-valo .inline-edit-cell-renderer {
	display: flex;
}

.tetris-valo .inline-edit-cell-percentage {
	background-color: white;
	color: black;
	margin-left: -20px;
}

.tetris-valo .ag-theme-alpine .ag-header-cell, .tetris-valo .ag-theme-alpine .ag-header-group-cell {
	padding-left: 5px;
	padding-right: 5px;
}

.tetris-valo .ag-theme-alpine .ag-cell {
	padding-left: 5px;
	padding-right: 5px;
}

.tetris-valo .inline-edit-cell-renderer-top {
	display: block;
	text-align: right;
}

.tetris-valo .inline-edit-output {
	width: 100%;
	text-align: right;
}

.tetris-valo .inline-edit-icons {
	text-align: left;
}

.tetris-valo .groupPricingEvalView #evaluationFilterTable  > .v-table-header-wrap  > .v-table-column-selector {
	opacity: initial;
}

.tetris-valo .groupPricingEvalView #actionButton .v-slot-tetris-button .v-popupbutton {
	background-image: none;
	background-color: #E4E4E4;
	border: 1px solid #E4E4E4;
	border-top-color: #E4E4E4;
	border-bottom-color: #E4E4E4;
	color: #000000;
	font-weight: 400;
}

.tetris-valo .group-eval-export-button {
	padding-top: 26px !important;
}

.tetris-valo .preferred-date-image {
	font-size: 18px !important;
}

.tetris-valo .groupPricingAdjustedOutputTable .table {
	padding-left: 25px;
}

.tetris-valo .groupPricingAdjustedOutputTable .name {
	background-color: #dadada;
}

.tetris-valo .groupPricingAdjustedOutputTable .system {
	background-color: #9de9c8;
	text-align: right;
}

.tetris-valo .groupPricingAdjustedOutputTable .userAdjusted {
	background-color: #8bdcfb;
}

.tetris-valo .groupPricingAdjustedOutputTable .userAdjusted .v-label {
	text-align: right;
}

.tetris-valo .groupPricingAdjustedOutputTable .nameRevenue {
	text-align: right;
}

.tetris-valo .groupPricingAdjustedOutputTable .systemRevenue {
	background-color: #d2f4e6;
	text-align: right;
}

.tetris-valo .groupPricingAdjustedOutputTable .userAdjustedRevenue {
	background-color: #d0f3fa;
}

.tetris-valo .groupPricingAdjustedOutputTable .userAdjustedRevenue .v-label {
	text-align: right;
}

.tetris-valo .groupPricingAdjustedOutputTable .border-right {
	border-right: 1px solid #bababa;
}

.tetris-valo .groupPricingAdjustedOutputTable .border-left {
	border-left: 1px solid #bababa;
}

.tetris-valo .groupPricingAdjustedOutputTable .border-bottom {
	border-bottom: 1px solid #bababa;
}

.tetris-valo .groupPricingResultsTable {
	border: 1px solid #eee;
}

.tetris-valo .groupPricingResultsTable .row {
	height: 20px;
	padding-left: 5px;
	width: 150px !important;
}

.tetris-valo .groupPricingResultsTable .row .green-check-circle {
	font-size: 16px;
}

.tetris-valo .groupPricingResultsTable .header {
	padding: 5px;
	font-weight: bold;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.tetris-valo .groupPricingResultsTable .title {
	padding-left: 2px;
	font-size: 16px;
	font-weight: bold;
}

.tetris-valo .groupPricingResultsTable .subTitle {
	background-color: #EEEEEE;
	height: 20px;
	font-weight: bold;
	padding-left: 2px;
}

.tetris-valo .groupPricingResultsTable td.userAdjustedValue {
	width: 75px;
	text-align: right;
	padding: 5px;
}

.tetris-valo .groupPricingResultsTable td.systemValue {
	width: 75px;
	text-align: right;
	padding: 5px;
}

.tetris-valo .groupPricingResultsTable td.fontawesomePadding {
	text-align: right;
	padding-right: 20px;
}

.tetris-valo .groupPricingResultsTable td#guestRoomRates {
	color: #0066cc;
	cursor: pointer;
}

.tetris-valo .groupPricingResultsTable .tableHeader {
	color: green;
}

.tetris-valo .groupPricingResultsTable .preferredDate {
	float: right;
	width: 16px;
}

.tetris-valo .groupPricingResultsTable .preferredDate:before {
	color: #FFFFFF !important;
	font-family: FontAwesome;
	font-size: 16px;
	content: "\f058";
}

.tetris-valo .groupPricingResultsTable .preferredDateSelection {
	float: right;
	width: 16px;
}

.tetris-valo .groupPricingResultsTable .preferredDateSelection:checked:before {
	color: #FFFFFF !important;
	font-family: FontAwesome;
	font-size: 16px;
	content: "\f058";
}

.tetris-valo .previousStayLayout {
	margin-top: 72px;
}

.tetris-valo .previousStayLayout .v-caption {
	opacity: 1;
}

.tetris-valo .v-tabsheet-tabitemcell-multiPropertyResultTab img.v-icon {
	float: right;
	padding-left: 4px;
}

.tetris-valo .groupPricingDetailsTable table {
	width: 225px;
}

.tetris-valo .groupPricingDetailsTable .title {
	padding-left: 2px;
	font-size: 15px;
	font-weight: bold;
}

.tetris-valo .groupPricingDetailsTable .label, .tetris-valo .groupPricingDetailsTable .grossRevenueLabel, .tetris-valo .groupPricingDetailsTable .labelSecondary, .tetris-valo .groupPricingDetailsTable .netProfitPercentLabel {
	padding-left: 2px;
	border-right-style: solid;
	border-right-color: #BCBCBC;
	border-right-width: 1px;
}

.tetris-valo .groupPricingDetailsTable .value, .tetris-valo .groupPricingDetailsTable .grossRevenueValue {
	padding-right: 2px;
	text-align: right;
	width: 75px;
}

.tetris-valo .groupPricingDetailsTable .grossRevenueLabel {
	font-weight: bold;
	height: 20px;
	border-top: 2px solid #fff;
}

.tetris-valo .groupPricingDetailsTable .grossRevenueValue {
	font-weight: bold;
	border-top: 2px solid #fff;
}

.tetris-valo .groupPricingDetailsTable .labelSecondary, .tetris-valo .groupPricingDetailsTable .netProfitPercentLabel {
	font-size: smaller;
	padding-right: 2px;
	text-align: right;
}

.tetris-valo .groupPricingDetailsTable .valueSecondary, .tetris-valo .groupPricingDetailsTable .netProfitPercentValue {
	font-size: smaller;
	padding-right: 2px;
	text-align: right;
}

.tetris-valo .groupPricingDetailsTable .netRevenue {
	height: 20px;
	font-size: smaller;
	font-weight: bold;
}

.tetris-valo .groupPricingDetailsTable .grossProfit {
	height: 20px;
	color: #FFFFFF;
	font-weight: bold;
}

.tetris-valo .groupPricingDetailsTable .netProfit {
	height: 40px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: larger;
}

.tetris-valo .groupPricingDetailsTable .netProfitPercent, .tetris-valo .groupPricingDetailsTable .netProfitPercentLabel, .tetris-valo .groupPricingDetailsTable .netProfitPercentValue {
	padding-top: 5px;
	padding-bottom: 5px;
	border-style: none;
}

.tetris-valo .groupPricingForecastLevels .formLayout .v-formlayout-row {
	background-color: #EFEFEF;
}

.tetris-valo .groupPricingForecastLevels .formLayout .v-formlayout-row.v-formlayout-lastrow {
	background-color: inherit;
}

.tetris-valo .groupPricingForecastLevels .formLayout .v-formlayout-contentcell {
	padding-right: 12px;
}

.tetris-valo .groupPricingForecastLevels .legend .low {
	background-color: #CDE3EC;
	border-width: 1px;
	border-style: solid;
	border-color: #000000;
}

.tetris-valo .groupPricingForecastLevels .legend .medium {
	background-color: #F5DEB3;
	border-width: 1px;
	border-style: solid;
	border-color: #000000;
}

.tetris-valo .groupPricingForecastLevels .legend .high {
	background-color: #F5C8C9;
	border-width: 1px;
	border-style: solid;
	border-color: #000000;
}

.tetris-valo .alternateDate .v-caption-removeRequired {
	display: none;
}

.tetris-valo .group-pricing-search-box .v-filterselect-button {
	pointer-events: none !important;
	content: "" !important;
	color: #FFFFFF !important;
	border-left: 0px !important;
}

.tetris-valo .clear-search-box {
	font-size: 12px !important;
	position: absolute;
	margin-left: 158px !important;
	margin-top: -37px !important;
}

.tetris-valo .binoculars.v-icon, .tetris-valo .binoculars .v-icon {
	color: #0099CC;
	font-size: 32px;
}

.tetris-valo .toggleOn.v-icon, .tetris-valo .toggleOn .v-icon {
	color: #009933;
	font-size: 20px;
}

.tetris-valo .toggleOff.v-icon, .tetris-valo .toggleOff .v-icon {
	color: #999999;
	font-size: 20px;
}

.tetris-valo .chevron-icon.v-icon, .tetris-valo .chevron-icon .v-icon {
	font-size: 24px;
	color: #0099CC;
}

.tetris-valo .v-disabled.chevron-icon.v-icon, .tetris-valo .v-disabled.chevron-icon .v-icon {
	font-size: 24px;
	color: #999999;
}

.tetris-valo .comments.v-icon, .tetris-valo .comments .v-icon {
	color: #999999;
	font-size: 48px;
}

.tetris-valo .comments-medium.v-icon, .tetris-valo .comments-medium .v-icon {
	color: #999999;
	font-size: 24px;
}

.tetris-valo .hourglass.v-icon, .tetris-valo .hourglass .v-icon {
	color: #999999;
	font-size: 24px;
}

.tetris-valo .folder-open.v-icon, .tetris-valo .folder-open .v-icon {
	color: #999999;
	font-size: 24px;
}

.tetris-valo .gray-circle.v-icon, .tetris-valo .gray-circle .v-icon {
	color: #999999;
	font-size: 15px;
}

.tetris-valo .green-check-circle.v-icon, .tetris-valo .green-check-circle .v-icon {
	color: #009933 !important;
}

.tetris-valo .green-check-circle-48px.v-icon, .tetris-valo .green-check-circle-48px .v-icon {
	color: #009933 !important;
	font-size: 48px;
}

.tetris-valo .informational {
	color: #999999;
	font-size: 24px;
}

.tetris-valo .exclamation-circle-blue.v-icon, .tetris-valo .exclamation-circle-blue .v-icon {
	color: #0099CC;
	font-size: 18px;
}

.tetris-valo .exclamation-circle.v-icon, .tetris-valo .exclamation-circle .v-icon {
	color: #CC0000;
	font-size: 18px;
}

.tetris-valo .invalid-xsmall.v-icon, .tetris-valo .invalid-xsmall .v-icon {
	color: #CC0000;
	font-size: 15px;
}

.tetris-valo .battery.v-icon, .tetris-valo .battery .v-icon {
	color: #999999;
	font-size: 18px;
}

.tetris-valo .blue-remove-circle-small.v-icon, .tetris-valo .blue-remove-circle-small .v-icon {
	font-size: 18px !important;
	color: #0099CC;
}

.tetris-valo .blue-remove-circle-medium.v-icon, .tetris-valo .blue-remove-circle-medium .v-icon {
	font-size: 24px;
	color: #0099CC !important;
}

.tetris-valo .filter-icon {
	margin-top: -7px;
	font-size: 24px;
}

.tetris-valo .filter-icon.v-icon, .tetris-valo .filter-icon .v-icon {
	color: #0099CC;
}

.tetris-valo .filter-icon-green.v-icon, .tetris-valo .filter-icon-green .v-icon {
	color: #009933;
}

.tetris-valo .master-class.v-icon, .tetris-valo .master-class .v-icon {
	color: #0099CC;
	font-size: 15px;
}

.tetris-valo .highest-priced-mfn-group-icon.v-icon, .tetris-valo .highest-priced-mfn-group-icon .v-icon {
	font-size: 15px;
	color: #FFDAAE;
}

.tetris-valo .datafeed-frequency-override.v-icon, .tetris-valo .datafeed-frequency-override .v-icon {
	font-size: 15px;
	color: #FFEBD4;
}

.tetris-valo .mfn-group-icon.v-icon, .tetris-valo .mfn-group-icon .v-icon {
	font-size: 15px;
	color: #C1F1FB;
}

.tetris-valo .mfn-shoulder-nights-icon.v-icon, .tetris-valo .mfn-shoulder-nights-icon .v-icon {
	font-size: 15px;
	color: #D7D7D7;
}

.tetris-valo .crosshair-black.v-icon, .tetris-valo .crosshair-black .v-icon {
	color: #999999;
	font-size: 18px;
}

.tetris-valo .information-circle-gray.v-icon, .tetris-valo .information-circle-gray .v-icon {
	color: #999999;
	font-size: 18px;
}

.tetris-valo .price-rank-arrow-button.v-icon, .tetris-valo .price-rank-arrow-button .v-icon {
	font-size: 48px;
	color: #0099CC;
}

.tetris-valo .sync-flag.v-icon, .tetris-valo .sync-flag .v-icon {
	color: #FF9900;
	font-size: 18px;
}

.tetris-valo .important-dates.v-icon, .tetris-valo .important-dates .v-icon {
	color: #999999;
	font-size: 18px;
}

.tetris-valo .optimize-now.v-icon, .tetris-valo .optimize-now .v-icon {
	color: #999999;
	font-size: 18px;
}

.tetris-valo .other-options.v-icon, .tetris-valo .other-options .v-icon {
	color: #999999;
	font-size: 18px;
}

.tetris-valo .price-rank-arrow-legend.v-icon, .tetris-valo .price-rank-arrow-legend .v-icon {
	font-size: 15px;
	color: #0099CC;
	vertical-align: inherit;
}

.tetris-valo .room-class-pass-through.v-icon, .tetris-valo .room-class-pass-through .v-icon {
	font-size: 90px;
	color: #C9C9C9;
}

.tetris-valo .toggle-on.v-icon, .tetris-valo .toggle-on .v-icon {
	font-size: 24px;
	color: #009933;
}

.tetris-valo .toggle-off.v-icon, .tetris-valo .toggle-off .v-icon {
	font-size: 24px;
	color: #999999;
}

.tetris-valo .search.v-icon, .tetris-valo .search .v-icon {
	margin-top: -5px;
	font-size: 24px;
	color: #0099CC;
}

.tetris-valo .search-gray.v-icon, .tetris-valo .search-gray .v-icon {
	font-size: 24px;
	color: #999999;
}

.tetris-valo .search-plus.v-icon, .tetris-valo .search-plus .v-icon {
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo .question-circle.v-icon, .tetris-valo .question-circle .v-icon {
	font-size: 90px;
	color: #999999;
}

.tetris-valo .question-circle-blue.v-icon, .tetris-valo .question-circle-blue .v-icon {
	font-size: 15px;
	color: #0099CC;
}

.tetris-valo .bar-override-specific.v-icon, .tetris-valo .bar-override-specific .v-icon {
	color: #CF2AC1;
	font-size: 15px;
}

.tetris-valo .inventory-day-card-icon.v-icon, .tetris-valo .inventory-day-card-icon .v-icon {
	color: #02BEA8;
	margin-top: 3px;
}

.tetris-valo .inventory-limit-override.v-icon, .tetris-valo .inventory-limit-override .v-icon {
	color: #02BEA8;
}

.tetris-valo .override-cost-of-walk.v-icon, .tetris-valo .override-cost-of-walk .v-icon {
	color: #CBE301;
	font-size: 15px;
}

.tetris-valo .override-overbooking-value.v-icon, .tetris-valo .override-overbooking-value .v-icon {
	color: #EE77EE;
	font-size: 15px;
}

.tetris-valo .override-overbooking-ceiling.v-icon, .tetris-valo .override-overbooking-ceiling .v-icon {
	color: #9963FF;
	font-size: 15px;
}

.tetris-valo .bar-override-pricing-adjustment-inline.v-icon, .tetris-valo .bar-override-pricing-adjustment-inline .v-icon {
	color: #FFE6FD;
	font-size: 15px;
}

.tetris-valo .override-conflict.v-icon, .tetris-valo .override-conflict .v-icon {
	color: #DEB46F;
	font-size: 15px;
}

.tetris-valo .bar-override-floor.v-icon, .tetris-valo .bar-override-floor .v-icon {
	color: #D8B200;
	font-size: 15px;
}

.tetris-valo .bar-override-groupFloor.v-icon, .tetris-valo .bar-override-groupFloor .v-icon {
	color: #FB8B06;
	font-size: 15px;
}

.tetris-valo .bar-override-ceiling.v-icon, .tetris-valo .bar-override-ceiling .v-icon {
	color: #9963FF;
	font-size: 15px;
}

.tetris-valo .override-occupancy-date.v-icon, .tetris-valo .override-occupancy-date .v-icon {
	color: #00AAFF;
	font-size: 15px;
}

.tetris-valo .override-arrival-los.v-icon, .tetris-valo .override-arrival-los .v-icon {
	color: #FF0000;
	font-size: 15px;
}

.tetris-valo .override-wash.v-icon, .tetris-valo .override-wash .v-icon {
	color: #4DB400;
	font-size: 15px;
}

.tetris-valo .drag-grip-fragment.v-icon, .tetris-valo .drag-grip-fragment .v-icon {
	font-size: 18px;
	color: #999999;
}

.tetris-valo .price-impacted.v-icon, .tetris-valo .price-impacted .v-icon {
	color: #999999;
	font-size: 15px;
}

.tetris-valo .rate-protect.v-icon, .tetris-valo .rate-protect .v-icon {
	color: #000000;
	font-size: 13px;
}

.tetris-valo .lrv-greater-than-price.v-icon, .tetris-valo .lrv-greater-than-price .v-icon {
	color: #FF0000;
	font-size: 15px;
}

.tetris-valo .highest-bar-restricted.v-icon, .tetris-valo .highest-bar-restricted .v-icon {
	color: #11C5B2;
	font-size: 15px;
}

.tetris-valo .price-restricted.v-icon, .tetris-valo .price-restricted .v-icon {
	color: #999999;
	font-size: 15px;
}

.tetris-valo .undo-changes.v-icon, .tetris-valo .undo-changes .v-icon {
	color: #000000;
	font-size: 15px;
}

.tetris-valo .undo-changes-revert-inventory.v-icon, .tetris-valo .undo-changes-revert-inventory .v-icon {
	color: #000000;
	font-size: 15px;
	margin-top: 15px;
}

.tetris-valo .alert-triangle.v-icon, .tetris-valo .alert-triangle .v-icon {
	color: #FF9900;
	font-size: 15px;
}

.tetris-valo .alert-triangle-large.v-icon, .tetris-valo .alert-triangle-large .v-icon {
	color: #FF9900;
	font-size: 36px;
}

.tetris-valo .red-alert-triangle.v-icon, .tetris-valo .red-alert-triangle .v-icon {
	color: #CC0000;
	font-size: 15px;
}

.tetris-valo .blue-triangle.v-icon, .tetris-valo .blue-triangle .v-icon {
	font-size: 24px;
	color: #0099CC;
}

.tetris-valo .red-triangle.v-icon, .tetris-valo .red-triangle .v-icon {
	font-size: 8px;
	color: #CC0000;
}

.tetris-valo .green-triangle.v-icon, .tetris-valo .green-triangle .v-icon {
	font-size: 8px;
	color: #009933;
}

.tetris-valo .change-direction-arrows.v-icon, .tetris-valo .change-direction-arrows .v-icon {
	font-weight: bold;
	font-size: 15px;
	color: #0099CC;
}

.tetris-valo .room-class-pass-through-legend.v-icon, .tetris-valo .room-class-pass-through-legend .v-icon {
	font-size: 15px;
	color: #999999;
}

.tetris-valo .room-class-pass-through.v-icon, .tetris-valo .room-class-pass-through .v-icon {
	font-size: 90px;
	color: #999999;
}

.tetris-valo .warning-icon.v-icon, .tetris-valo .warning-icon .v-icon {
	font-size: 18px;
	color: #FF9900;
}

.tetris-valo .warning-icon-red.v-icon, .tetris-valo .warning-icon-red .v-icon {
	font-size: 18px;
	color: #CC0000;
}

.tetris-valo .warning-icon-xsmall.v-icon, .tetris-valo .warning-icon-xsmall .v-icon {
	font-size: 15px;
	color: #FF9900;
}

.tetris-valo .warning-icon-64px.v-icon, .tetris-valo .warning-icon-64px .v-icon {
	font-size: 64px;
	color: #FF9900;
}

.tetris-valo .close-x.v-icon, .tetris-valo .close-x .v-icon {
	color: #999999;
	font-size: 15px;
}

.tetris-valo .arrow-up.v-icon, .tetris-valo .arrow-up .v-icon {
	color: #009933;
	font-size: 15px;
}

.tetris-valo .arrow-down.v-icon, .tetris-valo .arrow-down .v-icon {
	color: #CC0000;
	font-size: 15px;
}

.tetris-valo .xxSmallFont.v-icon, .tetris-valo .xxSmallFont .v-icon {
	font-size: 13px;
}

.tetris-valo .xSmallFont.v-icon, .tetris-valo .xSmallFont .v-icon {
	font-size: 15px;
}

.tetris-valo .smallFont.v-icon, .tetris-valo .smallFont .v-icon {
	font-size: 18px;
}

.tetris-valo .mediumFont.v-icon, .tetris-valo .mediumFont .v-icon {
	font-size: 24px;
}

.tetris-valo .largeFont.v-icon, .tetris-valo .largeFont .v-icon {
	font-size: 36px;
}

.tetris-valo .xLargeFont.v-icon, .tetris-valo .xLargeFont .v-icon {
	font-size: $fontAwesomeButton-xlarge-small;
}

.tetris-valo .xxLargeFont.v-icon, .tetris-valo .xxLargeFont .v-icon {
	font-size: 64px;
}

.tetris-valo .xxxLargeFont.v-icon, .tetris-valo .xxxLargeFont .v-icon {
	font-size: 100px;
}

.tetris-valo .v-button.xSmallFont .v-icon {
	font-size: 15px;
}

.tetris-valo .v-button.smallFont .v-icon {
	font-size: 18px;
}

.tetris-valo .v-button.mediumFont .v-icon {
	font-size: 24px;
}

.tetris-valo .v-button.largeFont .v-icon {
	font-size: 36px;
}

.tetris-valo .v-button.xLargeFont .v-icon {
	font-size: 48px;
	line-height: 48px;
}

.tetris-valo .notes-active.v-icon, .tetris-valo .notes-inactive.v-icon {
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo .override-icon.v-icon, .tetris-valo .override-icon .v-icon {
	color: #0099CC;
	font-size: 18px;
}

.tetris-valo .highest-bar-restricted-due-to-lra.v-icon, .tetris-valo .highest-bar-restricted-due-to-lra .v-icon {
	color: #12A4EF;
	font-size: 15px;
}

.tetris-valo .suboptimal-bar-decision-due-to-lra.v-icon, .tetris-valo .suboptimal-bar-decision-due-to-lra .v-icon {
	color: #999999;
	font-size: 15px;
}

.tetris-valo .IDEASFontIcon {
	font-family: IDEASFontIcon;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
}

.tetris-valo .notes-active.v-icon, .tetris-valo .notes-active .v-icon {
	font-size: 18px !important;
	color: #0099CC;
}

.tetris-valo .notes-inactive.v-icon, .tetris-valo .notes-inactive .v-icon {
	font-size: 18px !important;
	color: #0099CC;
}

.tetris-valo .excel.v-icon, .tetris-valo .excel .v-icon {
	font-size: 18px !important;
	color: #0099CC;
}

.tetris-valo .file-excel.v-icon, .tetris-valo .file-excel .v-icon {
	color: #0099CC;
	font-size: 18px !important;
}

.tetris-valo .calculator-icon.v-icon, .tetris-valo .calculator-icon .v-icon {
	color: #0099CC;
	font-size: 18px !important;
}

.tetris-valo #xlsImageButton {
	padding: 0;
	margin-top: -5px;
}

.tetris-valo .reports-icon.v-icon, .tetris-valo .reports-icon .v-icon {
	font-size: 16px;
	color: #0099CC;
}

.tetris-valo .bar-override-close-lv0.v-icon, .tetris-valo .bar-override-close-lv0 .v-icon {
	color: #0099CC;
	font-size: 15px;
}

.tetris-valo .group-floor-override.v-icon, .tetris-valo .group-floor-override .v-icon {
	color: $group-floor-override-color;
	font-size: 15px !important;
}

.tetris-valo .gff-override.v-icon, .tetris-valo .gff-override .v-icon {
	color: #FF6600;
	font-size: 15px;
}

.tetris-valo .group-forecast-override.v-icon, .tetris-valo .group-forecast-override .v-icon {
	color: #FF6600;
	font-size: 10px;
	padding-right: 5px;
}

.tetris-valo .gff-expiration-date-override {
	border-color: green;
	border-style: solid;
	border-width: 2px;
}

.tetris-valo .gff-fg-ac-textfield {
	width: 60px !important;
}

.tetris-valo .square.v-icon, .tetris-valo .square .v-icon {
	color: #0099CC;
	font-size: 18px;
}

.tetris-valo .square-small.v-icon, .tetris-valo .square-small .v-icon {
	color: #0099CC;
	font-size: 15px;
}

.tetris-valo .caret.v-icon, .tetris-valo .caret .v-icon {
	color: #0099CC;
}

.tetris-valo .special-events-star.v-icon, .tetris-valo .special-events-star .v-icon {
	color: #999999 !important;
}

.tetris-valo .special-events-star-black.v-icon, .tetris-valo .special-events-star-black .v-icon {
	color: #000000 !important;
}

.tetris-valo .special-events-star-xsmall.v-icon, .tetris-valo .special-events-star-xsmall .v-icon {
	color: #999999;
	font-size: 15px;
}

.tetris-valo .special-events-star-gold.v-icon, .tetris-valo .special-events-star-gold .v-icon {
	color: #FFDF00;
}

.tetris-valo .th-list-blue.v-icon, .tetris-valo .th-list-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .lock-gray.v-icon, .tetris-valo .lock-gray .v-icon {
	color: #999999;
}

.tetris-valo .print.v-icon, .tetris-valo .print .v-icon {
	color: #0099CC;
}

.tetris-valo .details-icon.v-icon, .tetris-valo .details-icon .v-icon {
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo .table.v-icon, .tetris-valo .table .v-icon {
	color: #0099CC !important;
}

.tetris-valo .bar-chart.v-icon, .tetris-valo .bar-chart .v-icon {
	color: #0099CC;
}

.tetris-valo .calendar.v-icon, .tetris-valo .calendar .v-icon {
	color: #0099CC;
}

.tetris-valo .close-icon.v-icon, .tetris-valo .close-icon .v-icon {
	font-size: 24px;
	color: #0099CC;
}

.tetris-valo .marked-for-deletion.v-icon, .tetris-valo .marked-for-deletion .v-icon {
	font-size: 18px;
	color: #CC0000;
}

.tetris-valo .add-button.v-icon, .tetris-valo .add-button .v-icon {
	color: #0099CC;
	font-size: 24px;
}

.tetris-valo .add-button-blue.v-icon, .tetris-valo .add-button-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .copy-button-blue.v-icon, .tetris-valo .copy-button-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .edit-button.v-icon, .tetris-valo .edit-button .v-icon {
	font-size: 24px;
}

.tetris-valo .edit-button-blue.v-icon, .tetris-valo .edit-button-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .delete-button.v-icon, .tetris-valo .delete-button .v-icon {
	color: #0099CC;
	font-size: 24px;
}

.tetris-valo .delete-button-inventory-limit.v-icon, .tetris-valo .delete-button-inventory-limit .v-icon {
	color: #0099CC;
	font-size: 24px;
	margin-top: 6px;
}

.tetris-valo .trash-blue.v-icon, .tetris-valo .trash-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .list-item-bullet.v-icon, .tetris-valo .list-item-bullet .v-icon {
	font-size: 5px;
}

.tetris-valo .flipButton {
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo .str-logo {
	font-size: 16px;
	color: #008675;
}

.tetris-valo .informational-use-only {
	color: #999999;
}

.tetris-valo .informational-use-only-xsmall {
	color: #999999;
	font-size: 15px;
}

.tetris-valo .override-remove-icon.v-icon, .tetris-valo .override-remove-icon .v-icon {
	color: #CC0000;
	font-size: 15px !important;
}

.tetris-valo .price-increase {
	color: #009933;
}

.tetris-valo .price-decrease {
	color: #CC0000;
}

.tetris-valo .green-color.v-icon, .tetris-valo .green-color .v-icon {
	color: #009933;
}

.tetris-valo .configuration-icon.v-icon, .tetris-valo .configuration-icon .v-icon {
	font-size: 24px;
	color: #0099CC;
}

.tetris-valo .edit-icon.v-icon, .tetris-valo .edit-icon .v-icon {
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo .clear-cancel-gray.v-icon, .tetris-valo .clear-cancel-gray .v-icon {
	font-size: 24px;
	color: #999999;
}

.tetris-valo .save-icon.v-icon, .tetris-valo .save-icon .v-icon {
	font-size: 24px;
	color: #0099CC;
}

.tetris-valo .ooo-background-processing-color {
	color: #ffce0d;
}

.tetris-valo .ooo-background-processed-color {
	color: #81ff4a;
}

.tetris-valo .refresh-blue.v-icon, .tetris-valo .refresh-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .arrow-circle-o-right-blue.v-icon, .tetris-valo .arrow-circle-o-right-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .arrow-blue.v-icon, .tetris-valo .arrow-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .download-blue.v-icon, .tetris-valo .download-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .long-arrow-down-blue.v-icon, .tetris-valo .long-arrow-down-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .upload-pacific-blue.v-icon, .tetris-valo .upload-pacific-blue .v-icon {
	color: #0099CC;
	font-size: 18px;
}

.tetris-valo .blue-icon.v-icon, .tetris-valo .blue-icon .v-icon {
	color: #0099CC;
}

.tetris-valo .black-icon.v-icon, .tetris-valo .black-icon .v-icon {
	color: #000000;
	font-size: 13px;
}

.tetris-valo .filter-icon_margin_top {
	margin-top: 20px;
	font-size: 24px;
}

.tetris-valo .filter-icon_margin_top.v-icon, .tetris-valo .filter-icon_margin_top .v-icon {
	color: #0099CC;
}

.tetris-valo .green-icon.v-icon, .tetris-valo .green-icon .v-icon {
	color: #00CC00;
}

.tetris-valo .spinner-icon {
	animation: v-rotate-360 2s infinite linear;
}

.tetris-valo .spinner-icon.v-icon, .tetris-valo .spinner-icon .v-icon {
	color: #00CC00;
}

.tetris-valo .grey-icon.v-icon, .tetris-valo .grey-icon .v-icon {
	color: #999999;
}

.tetris-valo .red-icon.v-icon, .tetris-valo .red-icon .v-icon {
	color: #CC0000;
}

.tetris-valo .orange-icon.v-icon, .tetris-valo .orange-icon .v-icon {
	color: #fa9e00;
}

.tetris-valo .tomato-red-icon.v-icon, .tetris-valo .tomato-red-icon .v-icon {
	color: #ff6347;
}

.tetris-valo .light-purple-icon.v-icon, .tetris-valo .light-purple-icon .v-icon {
	color: #9b2bfc;
}

.tetris-valo .purple-icon.v-icon, .tetris-valo .purple-icon .v-icon {
	color: #7C3680;
}

.tetris-valo .v-selected .v-icon {
	color: #FFFFFF !important;
}

.tetris-valo .fs-rooms-color.v-icon, .tetris-valo .fs-rooms-color .v-icon {
	font-size: 15px;
}

.tetris-valo .pdf-blue.v-icon, .tetris-valo .pdf-blue .v-icon {
	color: #0099CC;
}

.tetris-valo .fs-percent-0-to-10.v-icon, .tetris-valo .fs-percent-0-to-10 .v-icon {
	font-size: 15px;
	color: #82B9E1;
}

.tetris-valo .fs-percent-10-to-20.v-icon, .tetris-valo .fs-percent-10-to-20 .v-icon {
	font-size: 15px;
	color: #B6DBEA;
}

.tetris-valo .fs-percent-20-to-30.v-icon, .tetris-valo .fs-percent-20-to-30 .v-icon {
	font-size: 15px;
	color: #ABD4B7;
}

.tetris-valo .fs-percent-30-to-40.v-icon, .tetris-valo .fs-percent-30-to-40 .v-icon {
	font-size: 15px;
	color: #CDDFBF;
}

.tetris-valo .fs-percent-40-to-50.v-icon, .tetris-valo .fs-percent-40-to-50 .v-icon {
	font-size: 15px;
	color: #BBE59A;
}

.tetris-valo .fs-percent-50-to-60.v-icon, .tetris-valo .fs-percent-50-to-60 .v-icon {
	font-size: 15px;
	color: #FFEF9C;
}

.tetris-valo .fs-percent-60-to-70.v-icon, .tetris-valo .fs-percent-60-to-70 .v-icon {
	font-size: 15px;
	color: #FFDFA0;
}

.tetris-valo .fs-percent-70-to-80.v-icon, .tetris-valo .fs-percent-70-to-80 .v-icon {
	font-size: 15px;
	color: #FFCE70;
}

.tetris-valo .fs-percent-80-to-90.v-icon, .tetris-valo .fs-percent-80-to-90 .v-icon {
	font-size: 15px;
	color: #FFB992;
}

.tetris-valo .fs-percent-90-to-100.v-icon, .tetris-valo .fs-percent-90-to-100 .v-icon {
	font-size: 15px;
	color: #F99F9F;
}

.tetris-valo .tetris-optiongroup-horizontal.v-select-optiongroup.no-border {
	border: none;
}

.tetris-valo .threeColumn span.v-checkbox.v-select-option {
	width: 30%;
}

.tetris-valo .v-slot-threeColumn .v-widget {
	width: 100%;
}

.tetris-valo .tetris-optiongroup-horizontal.v-select-optiongroup .v-select-option {
	float: left;
}

.tetris-valo .tetris-optiongroup-horizontal.v-select-optiongroup .v-checkbox {
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 3px;
}

.tetris-valo .tetris-optiongroup-horizontal .v-checkbox:first-child {
	margin-top: 0;
}

.tetris-valo .tetris-optiongroup-horizontal .v-checkbox {
	margin: 0;
}

.tetris-valo .tetris-optiongroup-horizontal .v-checkbox  > label::before {
	margin-top: 5px;
}

.tetris-valo .tetris-optiongroup-horizontal .v-checkbox  > label::after {
	margin-top: 5px;
}

.tetris-valo .v-select-optiongroup .v-radiobutton:first-child, .tetris-valo .tetris-valo .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 9px !important;
}

.tetris-valo .v-select-optiongroup .v-checkbox {
	padding-left: 10px;
}

.tetris-valo .v-select-optiongroup-horizontal .v-select-option {
	display: inline-block;
}

.tetris-valo .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.tetris-valo .v-select-optiongroup-horizontal .v-select-option.v-radiobutton {
	padding-right: 10px;
}

.tetris-valo .tetris-optiongroup-nocaption .v-caption, .tetris-valo .v-caption-tetris-optiongroup-nocaption {
	display: none !important;
}

.tetris-valo .v-select-optiongroup .v-radiobutton > input {
	vertical-align: middle;
}

.tetris-valo .optiongroup-compact  > span {
	padding-right: 0px !important;
}

.tetris-valo .optiongroup-compact  > span  > input {
	width: 18px;
}

.tetris-valo .v-radiobutton-disabled {
	opacity: 0.3;
}

.tetris-valo .tetris-month-selector-popup .v-slot-tetris-button {
	padding-top: 5px;
}

.tetris-valo .v-button {
	padding: 0 6px;
}

.tetris-valo .v-button-primary {
	background-image: none;
	background-color: #2B82BD;
	border: 1px solid #2B82BD;
	border-top-color: #2B82BD;
	border-bottom-color: #2B82BD;
	color: white !important;
	font-weight: 400;
}

.tetris-valo .v-button-secondary {
	background-image: none;
	background-color: #E4E4E4;
	border: 1px solid #E4E4E4;
	border-top-color: #E4E4E4;
	border-bottom-color: #E4E4E4;
	color: black !important;
	font-weight: 400;
}

.tetris-valo .v-button, .tetris-valo .tetris-button {
	cursor: pointer;
}

.tetris-valo .v-nativebutton {
	cursor: pointer;
}

.tetris-valo .tetris-margin-free .v-icon {
	margin-right: 0px;
}

.tetris-valo .tetris-short-padding .v-button-wrap, .tetris-valo .tetris-short-padding.v-disabled .v-button-wrap {
	padding-left: 2px;
	padding-right: 10px;
}

.tetris-valo .tetris-short-padding, .tetris-valo .tetris-short-padding.v-disabled {
	padding-left: 5px;
}

.tetris-valo .tetris-invalid-link-button .v-button-caption {
	color: red;
}

.tetris-valo img.tetris-image-button {
	cursor: pointer;
}

.tetris-valo .tetris-image-button .v-button-caption {
	text-decoration: none;
	color: inherit;
}

.tetris-valo .tetris-image-button:focus .v-button-caption {
	outline: none;
}

.tetris-valo .tetris-hide-popup-indicator.v-popupbutton .v-popup-indicator {
	display: none;
}

.tetris-valo .v-nativebutton-borderless {
	border: 0px;
	background: transparent;
}

.tetris-valo .tetris-button-left {
	text-align: left;
}

.tetris-valo .v-button-link {
	text-decoration: none;
	color: #0066cc;
	font-size: 14px;
	font-weight: 400;
}

.tetris-valo .popupContent .v-window-wrap .v-window-outerheader {
	background: #E4E4E4;
	color: black;
	font-size: large;
}

.tetris-valo .popupContent .v-window-wrap .v-window-outerheader .v-window-header {
	color: black;
}

.tetris-valo .v-window-closebox {
	top: 1px;
	right: 5px;
	width: 17px;
	height: 16px;
	background-image: none;
	background: #E4E4E4;
}

.tetris-valo .v-window-closebox:before {
	font-family: FontAwesome;
	content: "\f00d";
	font-size: 18px;
	color: #999999;
}

.tetris-valo .tetris-window .t-customwindow-helpButton, .tetris-valo .tetris-messagebox .t-customwindow-helpButton {
	z-index: 10;
	top: 2px;
	right: 40px;
	background-image: none;
}

.tetris-valo .tetris-window .t-customwindow-specialEventIcon, .tetris-valo .tetris-messagebox .t-customwindow-specialEventIcon {
	z-index: 10;
	top: 4px;
	right: 40px;
}

.tetris-valo .tetris-window .t-customwindow-minimizeButton, .tetris-valo .tetris-messagebox .t-customwindow-minimizeButton {
	z-index: 10;
	top: 2px;
	right: 40px;
	background-image: none;
}

.tetris-valo .tetris-window .t-customwindow-maximizeButton, .tetris-valo .tetris-messagebox .t-customwindow-maximizeButton {
	z-index: 10;
	top: 2px;
	right: 40px;
	background-image: none;
}

.tetris-valo .t-customwindow-helpButton:before {
	font-family: FontAwesome;
	content: "\f059";
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo .t-customwindow-minimizeButton:before {
	font-family: FontAwesome;
	content: "\f068";
	font-size: 18px;
	color: #999999;
}

.tetris-valo .t-customwindow-maximizeButton:before {
	font-family: FontAwesome;
	content: "\f067";
	font-size: 18px;
	color: #999999;
}

.tetris-valo .t-customwindow-minimizeButton {
	height: 16px;
	width: 16px;
	top: 10px;
	right: 30px;
	position: absolute;
	background-repeat: no-repeat;
	cursor: pointer;
}

.tetris-valo .t-customwindow-maximizeButton {
	height: 16px;
	width: 16px;
	top: 10px;
	right: 30px;
	position: absolute;
	background-repeat: no-repeat;
	cursor: pointer;
}

.tetris-valo .fancy-notifs {
	top: auto !important;
	bottom: 0;
}

.tetris-valo .error-notification {
	background-color: rgba(128, 0, 0, 0.5) !important;
}

.tetris-valo .error-notification:hover {
	background-color: rgba(128, 0, 0, 0.75) !important;
}

.tetris-valo .fancy-notif-title, .tetris-valo .error-notification .fancy-notif-title {
	font-weight: bold;
}

.tetris-valo .v-Notification-error {
	background: #ecc1c1 url(common/component/notification/img/error-close.png) no-repeat right top;
	border: 2px solid #d40000;
	color: #3a3131;
}

.tetris-valo .v-Notification-error p {
	padding-right: 8px;
}

.tetris-valo .v-Notification.success-notification {
	background-color: #B2E3B6;
	margin-top: 5px !important;
	border-color: green;
	border-style: solid;
	border-width: 1px;
}

.tetris-valo .v-Notification.success-notification p {
	color: #3a3131;
	vertical-align: middle;
	line-height: normal;
}

.tetris-valo .v-Notification.success-notification .v-icon {
	padding-right: 5px;
	color: #339900;
	font-size: 15px;
}

.tetris-valo .v-Notification.warning-notification {
	background-color: #F9EDBE;
	border-color: #EF3F35;
	border-style: solid;
	border-width: 1px;
}

.tetris-valo .v-Notification.warning-notification h1 {
	color: #3a3131;
}

.tetris-valo .v-Notification.warning-notification p {
	color: #3a3131;
	vertical-align: middle;
	line-height: normal;
}

.tetris-valo .v-Notification.warning-notification .v-icon {
	padding-right: 5px;
	color: #F2AE29;
	font-size: 15px;
}

.tetris-valo .v-Notification.information-notification {
	background-color: #F9EDBE;
	border-color: #F0C36D;
	border-style: solid;
	border-width: 1px;
	color: #3a3131;
}

.tetris-valo .v-Notification.information-notification p {
	color: #3a3131;
}

.tetris-valo .v-Notification.information-notification h1 {
	display: block !important;
}

.tetris-valo.v-filterselect-suggestpopup-forecast-group-combo, .tetris-valo .v-filterselect-suggestpopup-forecast-group-combo, .tetris-valo .forecast-group-combo input.v-filterselect-input, .tetris-valo .small-font .v-label {
	font-size: 10px;
}

.tetris-valo .v-table-row-forecastGroup-highLight {
	background-color: #5CBEEF;
}

.tetris-valo #forecastGroupDeleteButton * {
	margin-top: -2px;
}

.tetris-valo #topBar {
	height: 100%;
	padding: 15px;
}

.tetris-valo #topBar .abstract-Heat-Map-Bar {
	height: 100% !important;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tetris-valo #topBar .abstract-Heat-Map-Bar #filterButton {
	transform: translate(0px, -63px);
}

.tetris-valo #topBar .abstract-Heat-Map-Bar #modeSelector {
	width: 175px;
	display: grid;
	grid-template-rows: repeat(4, auto);
	grid-row-gap: 2px;
}

.tetris-valo #topBar .abstract-Heat-Map-Bar #modeSelector #heatmapSelector, .tetris-valo #topBar .abstract-Heat-Map-Bar #modeSelector .v-filterselect.v-widget.v-filterselect-no-input {
	width: 175px !important;
}

.tetris-valo #topBar .abstract-Heat-Map-Bar #heatMapNavigator {
	width: unset !important;
}

.tetris-valo #buttonBar {
	padding-right: 5px;
}

.tetris-valo #demandAndWashCalendarLayouts {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-column-gap: 5px;
}

.tetris-valo .demand-calendar tr {
	background-color: #FFFFFF !important;
}

.tetris-valo .demand-calendar .v-calendar-header-day {
	background: #FFFFFF;
	color: #333333;
}

.tetris-valo .demand-calendar .v-calendar-month {
	border-collapse: collapse;
	border-spacing: 0;
	border-color: #E3E3E3;
	background-color: #FFFFFF;
}

.tetris-valo .demand-calendar .v-calendar-month td {
	border-width: 1px;
	border-color: #B7BABC;
	background-color: white;
	outline-style: solid;
	outline-width: 2px;
	outline-color: transparent;
}

.tetris-valo .demand-calendar .v-calendar-month td:hover {
	animation: cell-highlight 0.4s;
}

.tetris-valo .demand-calendar .v-calendar-month td .v-calendar-month-day {
	cursor: pointer;
	position: relative;
	display: table-cell;
	vertical-align: top;
	height: 75px;
}

.tetris-valo .demand-calendar .v-calendar-month td.disabled-cell {
	background-color: #ECEBEC;
	opacity: 0.5;
	animation: none;
}

.tetris-valo .demand-calendar .v-calendar-month td.disabled-cell div > div.v-calendar-event {
	display: none;
}

.tetris-valo .demand-calendar .v-calendar-month td.past-date {
	background-color: #CCCCCC;
}

.tetris-valo .demand-calendar .v-calendar-month td.dimmed {
	opacity: 0.3;
	animation: none;
}

.tetris-valo .demand-calendar .v-calendar-month td.no-data {
	opacity: 0.5;
	background-color: #ECEBEC;
	animation: none;
}

.tetris-valo .demand-calendar .v-calendar-month td .v-calendar-event-all-day {
	background: none;
	color: black;
	font-weight: 400;
	text-decoration: none;
}

.tetris-valo .demand-calendar .v-calendar-month td .v-calendar-event-all-day.rd-event {
	font-weight: bold;
}

.tetris-valo .demand-calendar .v-calendar-month td .v-calendar-event-all-day .rate-change-arrow {
	float: right;
	padding-right: 2px;
}

.tetris-valo .demand-calendar .v-calendar-month td .v-calendar-event-all-day.override-marker-container {
	position: absolute;
	top: 2px;
	padding-top: 2px;
	left: 0;
	height: 19px;
}

.tetris-valo .demand-calendar .v-calendar-month td .v-calendar-event-all-day.override-marker-container .generic-marker {
	font-size: 12px;
	float: left;
	padding-right: 3px;
}

.tetris-valo .demand-calendar .v-calendar-month td .v-calendar-spacer {
	height: 11px;
}

.tetris-valo .bubble-close {
	float: right;
	padding: 0px;
}

.tetris-valo .bubble-buttons {
	padding: 5px;
}

.tetris-valo .calendar-bubble {
	background: #ffff99;
	padding: 3px;
}

.tetris-valo .bubble-fields {
	border-top: 1px solid;
	border-color: #7e7d80;
	padding-top: 5px;
}

.tetris-valo .table-header-wrap * .v-table-caption-container {
	white-space: normal !important;
}

.tetris-valo .demand-override-all .v-treetable .v-table-header-wrap, .tetris-valo .demand-override-all .v-treetable .v-table-header {
	height: 48px;
}

.tetris-valo .demand-override-all .v-treetable .v-table-header-wrap td  > .v-table-caption-container, .tetris-valo .demand-override-all .v-treetable .v-table-header td  > .v-table-caption-container {
	white-space: normal;
}

.tetris-valo .demand-override-all .v-treetable .v-table-header-wrap td  > .v-table-resizer, .tetris-valo .demand-override-all .v-treetable .v-table-header td  > .v-table-resizer {
	height: 48px;
}

.tetris-valo .demand-override-all .v-treetable .v-popupview {
	overflow: hidden;
	text-overflow: ellipsis;
}

.tetris-valo #occupancyOverrideIcon {
	padding: 0;
}

.tetris-valo .v-popupview-popup-srp-mapping-popup {
	margin-left: 327px !important;
}

.tetris-valo .demand-and-wash-view {
	background: #ffffff;
}

.tetris-valo .no-data-overlay {
	position: absolute;
	top: 30px;
	left: 0;
	bottom: 4px;
	z-index: 100;
	color: blue;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tetris-valo .no-data-overlay span {
	margin-top: -750px;
}

.tetris-valo .v-slot-day-Of-Week-Option-Group .v-required-field-indicator {
	display: none;
}

.tetris-valo .overrides-option-group {
	font-size: 11px;
}

.tetris-valo .v-panel-content-conflict-label-container {
	max-height: 350px;
}

.tetris-valo #calendarCellBubbleContentSearchButton * {
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo #calendarCellBubbleContentNotesButton * {
	margin-bottom: 1px;
}

.tetris-valo #overrideNotesButton * {
	font-size: 20px;
	margin-top: -3px;
}

.tetris-valo #demandOverrideAllWindowRateCodeSearchButton * {
	font-size: 20px;
	margin-top: -4px;
}

.tetris-valo #userDemandOverrideButton * {
	margin-top: -2px;
}

.tetris-valo #washOverrideButton * {
	margin-top: -2px;
}

.tetris-valo #FGDemandOverrideTable .v-scrollable {
	overflow-y: auto !important;
}

.tetris-valo #FGDemandOverrideTable .v-table-resizer {
	display: none !important;
}

.tetris-valo #FGDemandOverrideTable .demand-override-cell {
	background-color: #FFEBEB;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #FGDemandOverrideTable .wash-override-cell {
	background-color: #FFFFE6;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #FGDemandOverrideTable .reverted-override-cell {
	background-color: #C9FDFD;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #FGDemandOverrideTable .separator-row-cell {
	color: #333333;
	background-color: #E4E4E4;
	text-align: center;
	font-weight: bolder;
	font-size: 11px;
}

.tetris-valo #FGDemandOverrideTable .total-row-cell {
	font-weight: bolder;
}

.tetris-valo #losGrid .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo #losGrid .reverted-override-cell {
	background-color: #C9FDFD;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #demandAndWashFGTableHideShowButton {
	color: #333333;
	background-color: #E4E4E4;
}

.tetris-valo #demandAndWashFGTableHideShowButton * {
	cursor: pointer;
}

.tetris-valo .demand-and-wash-by-occ-date-table-show-mode-without-user-wash .v-table-header-cell:nth-child(8), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-without-user-wash .v-table-header-cell:nth-child(9), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-without-user-wash .v-table-header-cell:nth-child(10) {
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo .demand-and-wash-by-occ-date-table-show-mode-without-user-wash .v-table-header-cell:nth-child(11), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-without-user-wash .v-table-header-cell:nth-child(12), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-without-user-wash .v-table-header-cell:nth-child(13) {
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo .demand-and-wash-by-occ-date-table-show-mode .v-table-header-cell:nth-child(9), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode .v-table-header-cell:nth-child(10), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode .v-table-header-cell:nth-child(11) {
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo .demand-and-wash-by-occ-date-table-show-mode .v-table-header-cell:nth-child(12), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode .v-table-header-cell:nth-child(13), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode .v-table-header-cell:nth-child(14), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode .v-table-header-cell:nth-child(15) {
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo .demand-and-wash-by-occ-date-table-show-mode-component-rooms .v-table-header-cell:nth-child(10), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-component-rooms .v-table-header-cell:nth-child(11), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-component-rooms .v-table-header-cell:nth-child(12) {
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo .demand-and-wash-by-occ-date-table-show-mode-component-rooms .v-table-header-cell:nth-child(13), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-component-rooms .v-table-header-cell:nth-child(14), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-component-rooms .v-table-header-cell:nth-child(15), .tetris-valo .demand-and-wash-by-occ-date-table-show-mode-component-rooms .v-table-header-cell:nth-child(16) {
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo .demand-and-wash-by-occ-date-table-hide-mode .v-table-header-cell:nth-child(2), .tetris-valo .demand-and-wash-by-occ-date-table-hide-mode .v-table-header-cell:nth-child(3), .tetris-valo .demand-and-wash-by-occ-date-table-hide-mode .v-table-header-cell:nth-child(4) {
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo .demand-and-wash-by-occ-date-table-hide-mode .v-table-header-cell:nth-child(5), .tetris-valo .demand-and-wash-by-occ-date-table-hide-mode .v-table-header-cell:nth-child(6), .tetris-valo .demand-and-wash-by-occ-date-table-hide-mode .v-table-header-cell:nth-child(7), .tetris-valo .demand-and-wash-by-occ-date-table-hide-mode .v-table-header-cell:nth-child(8) {
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo .demand-and-wash-by-occ-date-multiday-table .v-table-header-cell:nth-child(2), .tetris-valo .demand-and-wash-by-occ-date-multiday-table .v-table-header-cell:nth-child(3) {
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo .demand-and-wash-by-occ-date-expand-arrow .v-treetable-treespacer {
	padding-top: 11px;
}

.tetris-valo .demand-wash-separator-header {
	text-align: center;
	font-weight: bold;
}

.tetris-valo #individualGroupFilterButton * {
	font-size: 20px;
	margin-top: 2px;
}

.tetris-valo #individualGroupNotesButton * {
	font-size: 20px;
}

.tetris-valo #individualGroupRemoveButton * {
	margin-top: -1px;
}

.tetris-valo #individualGroupBlockTable .ind-group-user-edit-cell {
	background-color: #FFFFE6;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #individualGroupBlockTable .v-table-header-sortable:nth-child(7), .tetris-valo #individualGroupBlockTable .v-table-header-sortable:nth-child(8), .tetris-valo #individualGroupBlockTable .v-table-header-sortable:nth-child(9), .tetris-valo #individualGroupBlockTable .v-table-header-sortable:nth-child(10) {
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo .at-a-glance .summaryLayout .v-gridlayout-slot {
	position: absolute;
	border-left: thin solid #c9c9c9;
}

.tetris-valo .at-a-glance .summaryLayout .summary-padding-top1px {
	padding-top: 1px;
}

.tetris-valo .at-a-glance .alignExcludeCheckboxMargin {
	margin-left: 1%;
}

.tetris-valo .at-a-glance .alignExcludeCheckboxMargin label {
	margin-left: 0px;
}

.tetris-valo .at-a-glance .full-size {
	height: 100% !important;
}

.tetris-valo .at-a-glance .calendar-view {
	background-color: #ffffff;
}

.tetris-valo .at-a-glance .calendar-view #calendarViewId {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-row-gap: 35px;
}

.tetris-valo .at-a-glance .calendar-view .atAGlanceWeekNumber .v-label {
	padding-top: 25px;
	color: #005379;
}

.tetris-valo .at-a-glance .calendar-view #atAGlanceLastYearWindow {
	opacity: 0;
}

.tetris-valo .at-a-glance .calendar-view #atAGlanceDecisionWindow {
	opacity: 0;
}

.tetris-valo .at-a-glance .calendar-view .legend-title {
	display: inline;
}

.tetris-valo .at-a-glance .calendar-view .tetris-legend-label.v-widget {
	display: inline;
}

.tetris-valo .at-a-glance .calendar-view .tetris-legend-label.v-widget span {
	padding-left: 5px;
	padding-right: 5px;
	font-size: 12px;
	display: inline-block;
}

.tetris-valo .at-a-glance .calendar-view .hideDummySelector {
	visibility: hidden;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-bottom-spacer-empty {
	height: 14px !important;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-spacer {
	display: none;
}

.tetris-valo .at-a-glance .calendar-view .calendar .disabled-cell .v-calendar-spacer {
	display: block;
	height: 13px;
}

.tetris-valo .at-a-glance .calendar-view .calendar tr {
	background-color: #E3E3E3 !important;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-header-day {
	background: #ffffff;
	color: #333333;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-day-number {
	font-size: 12px;
	color: #000000;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month {
	border-collapse: collapse;
	border-spacing: 0px;
	border-color: #E3E3E3;
	background-color: #E3E3E3;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td {
	border-width: 1px;
	border-color: #B7BABC;
	outline-style: solid;
	outline-width: 1px;
	outline-color: transparent;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td .v-calendar-month-day {
	cursor: pointer;
	position: relative;
	display: table-cell;
	vertical-align: top;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td .systemDate {
	border-color: #000000 !important;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td.dateWithNoData {
	background-color: #E3E3E3;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td .v-calendar-event-all-day {
	background: none;
	color: black;
	font-weight: 400;
	text-decoration: none;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td .v-calendar-event-all-day.occupancy-forecast-event {
	font-weight: bold;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td .v-calendar-event-all-day.special-event-container {
	position: absolute;
	top: 2px;
	padding-top: 2px;
	left: 0;
	height: 19px;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td .v-calendar-event-all-day.special-event-container .generic-marker {
	font-size: 12px;
	float: left;
	padding-right: 3px;
}

.tetris-valo .at-a-glance .calendar-view .calendar .v-calendar-month td .v-calendar-event-all-day.special-event-container .generic-marker .v-icon {
	color: #000000 !important;
}

.tetris-valo .at-a-glance .summary-view {
	background-color: #ffffff;
}

.tetris-valo .at-a-glance .summary-view .align-right {
	text-align: right;
}

.tetris-valo .at-a-glance .summary-view .negative-percentage {
	font-weight: bold;
	color: red;
}

.tetris-valo .at-a-glance .summary-view .summary-header {
	background-color: #dedede;
}

.tetris-valo .at-a-glance .summary-view .summary-bold {
	font-weight: bold;
}

.tetris-valo .at-a-glance .summary-view .summary-variance-background {
	background-color: #c9c9c9;
}

.tetris-valo .at-a-glance .summary-view .summary-blank-background {
	background-color: #e9e9e9;
}

.tetris-valo .at-a-glance .summary-view .summary-padding {
	padding-left: 5px;
}

.tetris-valo .at-a-glance .summary-view .summary-padding-top {
	padding-top: 4px;
}

.tetris-valo .at-a-glance .summary-view .summary-padding-bottom {
	padding-bottom: 4px;
}

.tetris-valo .at-a-glance .summary-view .summary-padding-top5px {
	padding-top: 5px;
}

.tetris-valo .at-a-glance .summary-view .summary-bottom-border {
	border-bottom: thin;
	border-bottom-style: solid;
	border-color: #c9c9c9;
}

.tetris-valo .at-a-glance .summary-view .summary-padding-right {
	padding-right: 31px;
}

.tetris-valo .at-a-glance .summary-view .summary-padding-right5px {
	padding-right: 5px;
}

.tetris-valo .at-a-glance .summary-view .summary-padding-right10px {
	padding-right: 10px;
}

.tetris-valo .at-a-glance .summary-view .summary-cell-border {
	border-left: 1px solid #727272;
}

.tetris-valo .at-a-glance .summary-view .v-tabsheet-tabs {
	padding-left: 6px;
}

.tetris-valo .at-a-glance .zeroToThirty {
	background-color: #2A44FD;
}

.tetris-valo .at-a-glance .thirtyOneToForty {
	background-color: #3794FE;
}

.tetris-valo .at-a-glance .fortyOneToFifty {
	background-color: #00FFFF;
}

.tetris-valo .at-a-glance .fiftyOneToSixty {
	background-color: #70FFA9;
}

.tetris-valo .at-a-glance .sixtyOneToSeventy {
	background-color: #A7FF68;
}

.tetris-valo .at-a-glance .seventyOneToEighty {
	background-color: #E4FF33;
}

.tetris-valo .at-a-glance .eightyOneToNinety {
	background-color: #F89B00;
}

.tetris-valo .at-a-glance .ninetyOneToHundred {
	background-color: #FF0000;
}

.tetris-valo .at-a-glance #revParOccupancyCharts {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-column-gap: 15px;
}

.tetris-valo .popupContent .atAGlanceDecision .v-table-row-light-purple-icon .v-icon {
	color: #9b2bfc;
	padding-right: 5px;
}

.tetris-valo .popupContent .atAGlanceDecision .v-table-row-orange-icon .v-icon {
	color: #fa9e00;
	padding-right: 5px;
}

.tetris-valo .popupContent .atAGlanceDecision .v-table-row-SMALL .green-color .v-icon {
	color: #009933;
	padding-right: 5px;
}

.tetris-valo #atAGlanceLastYearWindow .negativeValue {
	color: #ff0000;
}

.tetris-valo .baseballCardBackView .v-slot-baseballCardBackLinks {
	float: right;
}

.tetris-valo .baseballCardBackView .v-slot-baseballCardArrivalLabel {
	float: left;
}

.tetris-valo .baseballCardBackView .v-slot-baseballCardBackLinksContainer, .tetris-valo .baseballCardBackView .baseballCardBackLinksContainer {
	width: 100%;
}

.tetris-valo .v-popupbutton-popup-smaller-zindex-popup {
	z-index: 9999 !important;
}

.tetris-valo .pricing-management-details-window .v-grid .v-grid-tablewrapper .v-grid-header .v-grid-cell {
	height: 45px !important;
}

.tetris-valo .pricing-management-details-window .v-grid .v-grid-tablewrapper .v-grid-header .v-grid-cell .v-grid-column-header-content {
	line-height: 13px;
}

.tetris-valo .spanish-pricing-management-details-window .v-grid .v-grid-tablewrapper .v-grid-header .v-grid-cell {
	height: 90px !important;
}

.tetris-valo .spanish-pricing-management-details-window .v-grid .v-grid-tablewrapper .v-grid-header .v-grid-cell .v-grid-column-header-content {
	line-height: 13px;
}

.tetris-valo .spanish-pricing-management-details-window .v-grid .v-grid-tablewrapper .v-grid-header .v-grid-cell .tetris-valo .v-grid-body .v-grid-row {
	position: absolute;
	top: 50px;
	left: 0;
}

.tetris-valo .pricing-details-property-row > td {
	background-color: #99FF99;
}

.tetris-valo .no-bar-decision-marker > span.v-icon {
	font-size: 12px;
	color: #E5B001;
}

.tetris-valo .pricing-calendar-bubble .cell-bubble-buttons  > .v-button, .tetris-valo .pricing-calendar-bubble .cell-bubble-buttons  > .v-nativebutton {
	margin-right: 7px !important;
	padding: 0 !important;
	width: 16px !important;
}

.tetris-valo .pricing-calendar-bubble .cell-bubble-buttons  > .v-button.bubble-close, .tetris-valo .pricing-calendar-bubble .cell-bubble-buttons  > .v-nativebutton.bubble-close {
	margin-right: 0 !important;
}

.tetris-valo .pricing-calendar-bubble .v-gridlayout-bubble-fields .v-gridlayout-spacing-on {
	padding-top: 0px;
}

.tetris-valo .pricing-management-view.white-bg {
	background-color: #ffffff;
}

.tetris-valo .pricing-management-view .filter-header {
	background-color: #DDDDDD;
	padding: 2px;
	font-weight: bold;
}

.tetris-valo .pricing-management-view .vertical-spacer {
	height: 8px;
}

.tetris-valo .pricing-management-view .v-table-row-bar-decision-row, .tetris-valo .pricing-management-view .bar-decision-box {
	background-color: #99FF99;
}

.tetris-valo .pricing-management-view .v-table-row-user-selection-row, .tetris-valo .pricing-management-view .user-selection-box {
	background-color: #BDE2F4;
}

.tetris-valo .pricing-management-view .bar-decision-box, .tetris-valo .pricing-management-view .user-selection-box {
	width: 17px;
	height: 17px;
	float: left;
	margin-right: 5px;
}

.tetris-valo .pricing-management-view .default-competitor-cell {
	background-image: none !important;
	background-color: #C4D4DA !important;
	color: black !important;
	text-shadow: none !important;
}

.tetris-valo .pricing-management-view .default-competitor-legend div {
	width: 50px;
	height: 18px;
	float: left;
	margin-right: 3px;
	background-color: #C4D4DA;
}

.tetris-valo .pricing-management-view .default-competitor-legend span {
	float: left;
	width: 175px;
}

.tetris-valo .pricing-management-view .master-class-box span {
	color: #0099CC;
}

.tetris-valo .pricing-management-view .pricing-management-calendar .v-calendar-month td .v-calendar-month-day {
	display: block;
	height: 100px;
	overflow: hidden;
}

.tetris-valo .pricing-management-view .pricing-management-calendar .v-calendar-week-numbers {
	display: none;
}

.tetris-valo .pricing-management-view .v-popupview-popup-heatmap-popup {
	background-color: #FFFCC4;
}

.tetris-valo .pricing-management-view .pricing-heatmap-color-restrict {
	background-color: #000000;
}

.tetris-valo .pricing-management-view .overrides-filter .v-slot-tetris-optiongroup-horizontal {
	height: 18px;
}

.tetris-valo .pricing-management-view #topBar {
	height: 100%;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar {
	height: 100% !important;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar #filterButton {
	transform: translate(0px, -63px);
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar #modeSelector {
	width: 175px;
	display: grid;
	grid-template-rows: repeat(4, auto);
	grid-row-gap: 2px;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar #modeSelector #heatmapSelector, .tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar #modeSelector .v-filterselect.v-widget.v-filterselect-no-input {
	width: 175px !important;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar #heatMapNavigator {
	width: unset !important;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar .pricing-heatmap .tetris-calendar {
	height: 76px !important;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar .pricing-heatmap .v-calendar-bottom-spacer-empty {
	height: 9px !important;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar .pricing-heatmap .v-calendar-week-numbers {
	display: none;
}

.tetris-valo .pricing-management-view #topBar .abstract-Heat-Map-Bar .pricing-heatmap .heatmap-button-spacing {
	height: 17px;
	margin-bottom: 4px;
	padding: 0;
}

.tetris-valo .pricing-management-view #modeSelectorLayout {
	padding-right: 22px;
}

.tetris-valo .pricing-management-view #tabularLoadingLayout {
	width: 100% !important;
}

.tetris-valo .pricing-management-view #pricingManagementCalendarsLayout {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-column-gap: 5px;
	padding: 5px;
	padding-right: 10px;
}

.tetris-valo .pricing-management-view .calendar-container.v-margin-top {
	padding-top: 5px;
}

.tetris-valo .pricing-management-view .calendar-container.v-margin-bottom {
	padding-bottom: 5px;
}

.tetris-valo .pricing-management-view .calendar-container.v-margin-left {
	padding-left: 5px;
}

.tetris-valo .pricing-management-view .calendar-container.v-margin-right {
	padding-right: 5px;
}

.tetris-valo .pricing-management-view .calendar-container .left-room-class-selector-spacing {
	padding-left: 50px;
}

.tetris-valo .pricing-management-view .calendar-container .right-month-selector-spacing {
	padding-top: 3px;
}

.tetris-valo .pricing-management-view #tableControlsLayout {
	display: grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: auto auto;
	grid-column-gap: 10px;
	justify-content: center;
}

.tetris-valo .pricing-management-view .tabular-layout #barLayout {
	vertical-align: middle !important;
}

.tetris-valo .pricing-management-view .tabular-layout .competitor-button .v-button-caption {
	margin-left: -6px;
	font-size: 14px;
}

.tetris-valo .pricing-management-view .tabular-layout .v-table-row-past-date-row {
	background-color: #CCCCCC !important;
}

.tetris-valo .pricing-management-view .tabular-layout .v-table-row-past-date-row .v-table-cell-content {
	border-bottom: 1px solid #FFFFFF;
}

.tetris-valo .pricing-management-view .tabular-layout .v-table-cell-content-matching-bar-value {
	background-color: #99FF99;
}

.tetris-valo .pricing-management-view .tabular-layout .v-table-cell-content {
	padding: 0 2px;
}

.tetris-valo .pricing-management-view .tabular-layout .v-table-cell-content-los-cell, .tetris-valo .pricing-management-view .tabular-layout .v-table-cell-content-matching-bar-value {
	vertical-align: middle;
}

.tetris-valo .pricing-management-view .tabular-layout .v-table-caption-container, .tetris-valo .pricing-management-view .tabular-layout .v-table-header-drag {
	padding-right: 2px;
}

.tetris-valo .pricing-management-view .tabular-layout .v-table-caption-container {
	margin-left: 0px;
}

.tetris-valo .pricing-management-view .tabular-layout .table-override-container .v-label:first-child {
	line-height: 16px;
	padding-right: 3px;
}

.tetris-valo .pricing-management-view .tabular-layout .table-override-container .v-button {
	margin-top: -5px;
	width: 18px !important;
	padding: 0px;
}

.tetris-valo .pricing-management-view .override-conflict-warning {
	white-space: normal;
}

.tetris-valo #filterPopupLayout {
	display: grid;
	grid-row-gap: 10px;
	padding-bottom: 15px;
}

.tetris-valo #filterPopupLayout .advanced-Filters-Layout {
	display: grid;
	grid-template-rows: 1fr 1fr;
}

.tetris-valo #filterPopupLayout #displayValuesLayout {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.tetris-valo #filterPopupLayout #losFilterLayout {
	display: grid;
	grid-row-gap: 5px;
	grid-template-columns: repeat(4, 1fr);
}

.tetris-valo .dates-And-Details-Column {
	display: flex;
	align-items: center;
}

.tetris-valo .pricing-management-view[width-range~="952-1285px"] #tabularLoadingLayout {
	width: 940px !important;
}

.tetris-valo .pricing-management-view[width-range~="0-952px"] #tabularLoadingLayout {
	width: 690px !important;
}

.tetris-valo #pricingCalendarCellBubbleNotesButton {
	margin-top: 9px;
}

.tetris-valo #pricingCalendarCellBubbleNotesButton.v-icon, .tetris-valo #pricingCalendarCellBubbleNotesButton .v-icon {
	font-size: 16px;
}

.tetris-valo #pricingCalendarCellBubbleDetailsButton {
	margin-top: 8px;
}

.tetris-valo #pricingCalendarCellBubbleDetailsButton.v-icon, .tetris-valo #pricingCalendarCellBubbleDetailsButton .v-icon {
	font-size: 16px !important;
}

.tetris-valo #pricingManagementDetailsNoteImageButton.v-icon, .tetris-valo #pricingManagementDetailsNoteImageButton .v-icon {
	font-size: 18px !important;
}

.tetris-valo #exportXlsImageButton {
	margin-left: -10px;
}

.tetris-valo .pricing-calendar-close-button {
	margin-left: 20px;
}

.tetris-valo .pricing-calendar-competitor-button {
	height: 20px;
}

.tetris-valo #reportsButton.v-icon, .tetris-valo #reportsButton .v-icon {
	font-size: 16px;
	margin-top: 9px;
}

.tetris-valo #competitorDetailsXlsButton {
	margin-right: 8px;
	margin-top: -3px;
}

.tetris-valo #competitorDetailsXlsButton.v-icon, .tetris-valo #competitorDetailsXlsButton .v-icon {
	font-size: 20px !important;
	padding-left: -10px;
}

.tetris-valo #roomClassLabel {
	margin-left: 8px;
}

.tetris-valo #pricingOverrideButton {
	margin-top: -7px;
}

.tetris-valo .pricing-management-button-font-size .v-button-wrap .v-button-caption {
	font-size: 14px;
}

.tetris-valo .v-slot-heatmap-popup {
	height: 0px;
}

.tetris-valo .pricingOverridePopupTable .bar-override-specific, .tetris-valo .pricingOverridePopupTable .bar-override-floor {
	padding-right: 5px;
}

.tetris-valo .tabular-layout-note-image-button.v-icon, .tetris-valo .tabular-layout-note-image-button .v-icon {
	font-size: 18px;
}

.tetris-valo .legend-header {
	padding: 5px;
	background: #e4e4e4;
}

.tetris-valo .legend-header .legend-header-close {
	margin-top: -9px;
}

.tetris-valo .legend-header .legend-header-label {
	font-size: 16px;
	margin-left: 4px;
}

.tetris-valo .legend-season-header {
	background: #e4e4e4;
	margin-top: 2px;
}

.tetris-valo .legend-season-header .legend-season-header-label {
	font-size: 12px;
	text-align: center;
}

.tetris-valo .legend-season-range-label {
	font-size: 12px;
	font-weight: bold;
}

.tetris-valo div.pricingManagementTable td {
	border-left: 1px solid #dadada;
}

.tetris-valo .pricing-management-override-button {
	margin-top: -4px;
}

.tetris-valo .v-caption-day-Of-Week-Option-Group .v-required-field-indicator {
	display: none;
}

.tetris-valo .label-bold {
	font-weight: bold;
}

.tetris-valo #removeAllOverrideCheckbox {
	margin-top: 5px;
}

.tetris-valo .component-rooms .welcome-wrapper-tile {
	font-size: 16px;
	font-weight: bold;
}

.tetris-valo .component-rooms .welcome-wrapper-text {
	font-size: 18px;
}

.tetris-valo .component-rooms .welcome-screen-alignment {
	padding-left: 300px;
	padding-top: 150px;
}

.tetris-valo .component-rooms .ooo-background-processing {
	background-color: #ffce0d;
}

.tetris-valo .component-rooms .ooo-background-processed {
	background-color: #81ff4a;
}

.tetris-valo .component-rooms .ooo-background-processing-color {
	color: #ffce0d;
}

.tetris-valo .component-rooms .ooo-background-processed-color {
	color: #81ff4a;
}

.tetris-valo .benefitsPage .benefits-filter {
	background-color: #F2F2F2;
}

.tetris-valo .benefitsPage .benefits-grid, .tetris-valo .benefitsPage .benefits-toolbar {
	padding: 0px 20px;
}

.tetris-valo .benefitsPage .v-treegrid th {
	text-align: center;
}

.tetris-valo .benefitsPage .v-treegrid .month {
	background-color: #FFF7F7;
}

.tetris-valo .benefitsPage .v-treegrid .numeric {
	text-align: right;
}

.tetris-valo .out-of-order-overrides .v-csslayout-date-selection, .tetris-valo .out-of-order-overrides .v-caption-day-of-week-filter {
	display: grid;
}

.tetris-valo .out-of-order-overrides .v-slot-top-bar-inline-group {
	background-color: #E4E4E4;
	padding: 10px;
	text-align: center;
}

.tetris-valo .out-of-order-overrides .out-of-order-button-bar-and-legend {
	display: inline-flex;
	vertical-align: bottom;
	padding-left: 10px;
}

.tetris-valo .out-of-order-overrides .v-caption-unsaved-override-legend, .tetris-valo .out-of-order-overrides .v-caption-existing-override-legend, .tetris-valo .out-of-order-overrides .v-checkbox-changes-on-focus, .tetris-valo .out-of-order-overrides .v-caption-past-legend {
	vertical-align: sub;
}

.tetris-valo .out-of-order-overrides .v-checkbox-changes-on-focus {
	font-size: 13px;
	padding-left: 10px;
}

.tetris-valo .out-of-order-overrides .unsaved-override-legend-color-icon, .tetris-valo .out-of-order-overrides .existing-override-legend-color-icon, .tetris-valo .out-of-order-overrides .past-legend-color-icon {
	width: 15px;
	height: 15px;
	vertical-align: sub;
	border: thin solid;
}

.tetris-valo .out-of-order-overrides .out-of-order-button-bar {
	display: inline-flex;
}

.tetris-valo .out-of-order-overrides .out-of-order-override-legend {
	text-align: right;
	width: 100%;
}

.tetris-valo .out-of-order-overrides .v-grid-editor {
	left: inherit;
	right: inherit;
}

.tetris-valo .out-of-order-overrides .v-grid-header {
	text-align: center;
}

.tetris-valo .out-of-order-overrides .not-editable {
	background-color: #FFFFFF !important;
}

.tetris-valo .out-of-order-overrides .out-of-order-override-button-bar {
	text-align: left;
}

.tetris-valo .out-of-order-overrides .v-csslayout-inline-date-dow-filter, .tetris-valo .out-of-order-overrides .v-csslayout-top-bar-inline-group {
	display: inline-flex;
}

.tetris-valo .out-of-order-overrides .combobox-filter {
	align-self: auto;
	width: min-content;
}

.tetris-valo .out-of-order-overrides .inner-combobox-filter {
	display: inline-flex;
}

.tetris-valo .out-of-order-overrides .out-of-order-override-ooooGrid {
	padding-left: 10px;
}

.tetris-valo .out-of-order-overrides .out-of-order-past-days-disabled {
	color: #7f7f7f;
}

.tetris-valo .out-of-order-overrides .existing-override, .tetris-valo .out-of-order-overrides .existing-override-legend-color-icon, .tetris-valo .out-of-order-overrides .room-type-existing-override {
	background-color: #FFEBD4;
}

.tetris-valo .out-of-order-overrides .room-type-existing-override, .tetris-valo .out-of-order-overrides .room-type-unsaved-override, .tetris-valo .out-of-order-overrides .out-of-order-past-days-disabled {
	text-align: center;
}

.tetris-valo .out-of-order-overrides .room-type-override-invalid-capacity, .tetris-valo .out-of-order-overrides .room-type-invalid-capacity {
	text-align: center;
	border-bottom: 2px solid red !important;
	border-left: 2px solid red !important;
	border-right: 2px solid red !important;
	border-top: 2px solid red !important;
}

.tetris-valo .out-of-order-overrides .unsaved-override, .tetris-valo .out-of-order-overrides .unsaved-override-legend-color-icon, .tetris-valo .out-of-order-overrides .room-type-unsaved-override {
	background-color: #FBFDAA;
}

.tetris-valo .out-of-order-overrides .past-data, .tetris-valo .out-of-order-overrides .past-legend-color-icon, .tetris-valo .out-of-order-overrides .out-of-order-past-days-disabled {
	background-color: #F2F2F2;
}

.tetris-valo .out-of-order-overrides .editor-checkbox-center-align {
	margin: 0% 0% 0% 46% !important;
}

.tetris-valo .out-of-order-overrides .center-align {
	text-align: center;
}

.tetris-valo .manual-restrictions .v-csslayout-date-selection {
	display: grid;
}

.tetris-valo .manual-restrictions .v-slot-top-bar-inline-group {
	background-color: #E4E4E4;
	padding: 10px;
	text-align: center;
}

.tetris-valo .manual-restrictions .manual-restrictions-bar-and-legend {
	display: inline-flex;
	vertical-align: bottom;
	padding-left: 10px;
}

.tetris-valo .manual-restrictions .v-caption-unsaved-override-legend, .tetris-valo .manual-restrictions .v-caption-existing-override-legend, .tetris-valo .manual-restrictions .v-checkbox-changes-on-focus {
	vertical-align: sub;
}

.tetris-valo .manual-restrictions .v-checkbox-changes-on-focus {
	font-size: 13px;
	padding-left: 10px;
}

.tetris-valo .manual-restrictions .unsaved-override-legend-color-icon, .tetris-valo .manual-restrictions .existing-override-legend-color-icon {
	width: 15px;
	height: 15px;
	vertical-align: sub;
	border: thin solid;
}

.tetris-valo .manual-restrictions .manual-restrictions-button-bar {
	display: inline-flex;
}

.tetris-valo .manual-restrictions .manual-restrictions-legend {
	text-align: right;
	width: 100%;
}

.tetris-valo .manual-restrictions .v-grid-editor {
	left: inherit;
	right: inherit;
}

.tetris-valo .manual-restrictions .v-grid-header {
	text-align: center;
}

.tetris-valo .manual-restrictions .not-editable {
	background-color: #FFFFFF !important;
}

.tetris-valo .manual-restrictions .manual-restrictions-button-bar {
	text-align: left;
}

.tetris-valo .manual-restrictions .v-csslayout-inline-date-filter, .tetris-valo .manual-restrictions .v-csslayout-top-bar-inline-group {
	display: inline-flex;
}

.tetris-valo .manual-restrictions .room-type-filter-combobox {
	align-self: auto;
	width: 2px;
	margin-right: 109px;
	margin-left: 3px;
}

.tetris-valo .manual-restrictions .room-type-button {
	display: inline-flex;
	width: 120px;
}

.tetris-valo .manual-restrictions .room-type-label {
	display: inline-flex;
	margin-bottom: 3px;
}

.tetris-valo .manual-restrictions .existing-override, .tetris-valo .manual-restrictions .existing-override-legend-color-icon, .tetris-valo .manual-restrictions .room-type-existing-override {
	background-color: #FFEBD4;
}

.tetris-valo .manual-restrictions .room-type-existing-override, .tetris-valo .manual-restrictions .room-type-unsaved-override {
	text-align: center;
}

.tetris-valo .manual-restrictions .room-type-override-invalid-capacity, .tetris-valo .manual-restrictions .room-type-invalid-capacity {
	text-align: center;
	border-bottom: 2px solid red !important;
	border-left: 2px solid red !important;
	border-right: 2px solid red !important;
	border-top: 2px solid red !important;
}

.tetris-valo .manual-restrictions .unsaved-override, .tetris-valo .manual-restrictions .unsaved-override-legend-color-icon, .tetris-valo .manual-restrictions .room-type-unsaved-override {
	background-color: #FBFDAA;
}

.tetris-valo .manual-restrictions .editor-checkbox-center-align {
	margin: 0% 0% 0% 46% !important;
}

.tetris-valo .manual-restrictions .center-align {
	text-align: center;
}

.tetris-valo .manual-restrictions .v-popup-indicator {
	float: right;
	margin-top: 2px;
}

.tetris-valo .manual-restrictions .v-horizontallayout-unsaved-override-legend {
	font-size: small;
	margin-top: 2.5px;
	margin-right: 10px;
}

.tetris-valo .manual-restrictions .v-table-cell-content:first-child > .v-table-cell-wrapper > .v-horizontallayout {
	display: inline;
	width: 100%;
}

.tetris-valo .manual-restrictions .manualrestriction-multiday-table:first-child {
	width: 100px !important;
	padding-right: 5px;
}

.tetris-valo .manual-restrictions .v-table-cell-wrapper {
	width: inherit !important;
	padding-right: 0px;
}

.tetris-valo .manual-restrictions .v-table-cell-wrapper > .v-textfield {
	width: 100%;
}

.tetris-valo .manual-restrictions .multiday-dow-filter > .v-select-option {
	margin-bottom: 0px;
	margin-top: 0px;
}

.tetris-valo .manual-restrictions .multiday-dow-filter > .v-checkbox:last-child {
	margin-right: 0px;
}

.tetris-valo .manual-restrictions .v-table-table tr:first-child > .v-label {
	text-align: center;
}

.tetris-valo .manual-restrictions .tetris-image-button > .v-button-wrap {
	display: inline-flex;
}

.tetris-valo .manual-restrictions .manual-restriction-caret > .v-button-wrap > .v-button-caption {
	width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
}

.tetris-valo .manual-restrictions .v-slot-mr-icon {
	width: fit-content;
	margin: auto;
}

.tetris-valo .manual-restrictions .v-button {
	width: inherit;
}

.tetris-valo .manual-restrictions span.v-button-caption {
	float: left;
	margin-top: 2px;
}

.tetris-valo .manual-restrictions .mr-header {
	padding: 0px;
}

.tetris-valo .manual-restrictions .v-table-cell-content-small-text-cell {
	width: auto !important;
}

.tetris-valo .manual-restrictions .inner-header-row-cell {
	border: 1px outset;
}

.tetris-valo .manual-restrictions .manual-restriction-caret {
	color: black;
	margin-top: 8px;
	margin-bottom: 0px;
}

.tetris-valo .manual-restrictions .manual-restriction-caret > .v-button-wrap > .v-icon {
	float: left;
}

.tetris-valo .manual-restrictions .manual-restriction-save-button > .v-button-wrap > .v-button-caption {
	float: none !important;
}

.tetris-valo .manual-restrictions .manual-restriction-apply-button > .v-button-wrap > .v-button-caption {
	float: none !important;
}

.tetris-valo .manual-restrictions .multiday-cb > label {
	margin-left: 3px;
}

.tetris-valo .manual-restrictions .manual-restriction-remove-override {
	color: red;
	font-weight: bolder;
}

.tetris-valo .manual-restrictions .multiday-dow-checkbox-layout {
	padding-top: 3px !important;
}

.tetris-valo .manual-restrictions .mr-placard-crossicon > .v-button-wrap > .FontAwesome {
	font-size: 20px !important;
}

.tetris-valo .manual-restrictions .mr-placard {
	margin-top: 7px;
	margin-bottom: 5px;
}

.tetris-valo .manual-restrictions .v-slot-mr-placard {
	width: auto !important;
}

.tetris-valo .manual-restrictions .mr-placard-label {
	margin-left: 3px;
	margin-top: 5px;
}

.tetris-valo .manual-restrictions .mr-multiday-dropdown {
	margin-top: 7px;
	margin-bottom: 5px;
}

.tetris-valo .manual-restrictions .v-slot-mr-multiday-dropdown {
	width: auto !important;
}

.tetris-valo .manual-restrictions .v-button-mr-placard-crossicon {
	height: 27px;
}

.tetris-valo .manual-restrictions .v-csslayout-mr-multiday-dropdown {
	margin-right: 110px;
}

.tetris-valo .manual-restrictions .mr-multiday-placard-area {
	overflow-x: auto;
}

.tetris-valo .groupfloor .filter-header {
	color: #333333;
}

.tetris-valo .groupfloor .v-treegrid-cell {
	text-align: right;
	padding-right: 5px;
	padding-left: 0px;
}

.tetris-valo .groupfloor .v-treegrid-cell.shouldernight {
	background: #D7D7D7;
}

.tetris-valo .groupfloor .v-horizontal.row-height {
	height: 30px !important;
}

.tetris-valo .groupfloor .final-price-icons {
	font-size: 14px;
	padding-left: 2px;
	padding-right: 2px;
	margin-top: -2px;
	height: 30px;
}

.tetris-valo .groupfloor .v-treegrid-expander {
	display: none;
}

.tetris-valo .groupfloor .v-treegrid-cell.mfngroup {
	background: #C1F1FB;
}

.tetris-valo .groupfloor td:nth-child(1) {
	text-align: left;
	min-width: 280px;
}

.tetris-valo .groupfloor td:not(:first-child) {
	min-width: 120px;
}

.tetris-valo .groupfloor .show-pointer {
	cursor: pointer;
}

.tetris-valo .groupfloor .label-dimensions {
	width: 110px;
	text-align: end;
	height: 28px;
}

.tetris-valo .groupfloor .v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px transparent;
	border-right: 1px solid #dadada;
}

.tetris-valo .groupfloor .show-expander-icon .v-treegrid-expander {
	display: inline-block !important;
	padding-left: 6px;
	pointer-events: none;
}

.tetris-valo .groupfloor .unsaved-changes-button {
	padding-left: 2px;
	padding-right: 2px;
	margin-top: -6px;
}

.tetris-valo .groupfloor .unsaved-changes-button .v-button-wrap .v-icon {
	font-size: 15px;
}

.tetris-valo .groupfloor .v-treegrid-cell.highestpricedmfngroup {
	background: #FFDAAE;
}

.tetris-valo .groupfloor .v-treegrid-cell.highlightColumn {
	background: #FDFFC6;
}

.tetris-valo .groupfloor .v-label.masterclassicon {
	padding-left: 5px;
	vertical-align: text-top;
}

.tetris-valo .groupfloor .css-layout-style {
	margin: 2px;
	display: inline-flex;
}

.tetris-valo .groupfloor .v-checkbox.checkboxstyle {
	margin-top: inherit;
	padding-left: 5px;
}

.tetris-valo .groupfloor .date-label {
	font-size: 18px;
	font-weight: bold;
}

.tetris-valo .groupfloor .room-class .v-icon {
	color: #0099CC !important;
	font-size: 15px;
}

.tetris-valo .groupfloor .day-label {
	font-size: 13px;
}

.tetris-valo .groupfloor .data-label {
	color: #0066CC;
}

.tetris-valo .groupfloor .v-treegrid-row.highest_priced_mfn_group_row {
	background-color: #FFDAAE;
}

.tetris-valo .groupfloor .v-treegrid-row.mfn_group_row {
	background-color: #C1F1FB;
}

.tetris-valo .groupfloor .background-color-gray {
	background-color: #e4e4e4;
}

.tetris-valo .groupfloor .background-color-light-gray {
	background-color: #f0f0f0;
}

.tetris-valo .groupfloor .button-bar {
	background: #e4e4e4;
}

.tetris-valo .groupfloor .save-button {
	color: white;
	background: #0099CC;
}

.tetris-valo .groupfloor .v-treegrid-cell-focused:before {
	display: none;
	border: none;
}

.tetris-valo .groupfloor .v-treegrid-row-focused::before {
	display: none;
	border: none;
}

.tetris-valo .groupfloor .v-caption {
	font-size: 13px;
	font-weight: 400;
	opacity: unset;
}

.tetris-valo .groupfloor .legend-layout .v-has-caption, .tetris-valo .groupfloor .legend-layout .v-has-caption > .v-caption {
	display: inline-flex;
}

.tetris-valo .groupfloor .legend-layout .v-slot-legend-icon .v-icon {
	font-size: 15px;
}

.tetris-valo .groupfloor .legend-header {
	background: #e4e4e4;
}

.tetris-valo .groupfloor .legend-header .legend-header-close {
	margin-top: -9px;
}

.tetris-valo .groupfloor .legend-header .legend-header-label {
	font-size: 16px;
	margin-left: 4px;
}

.tetris-valo .groupfloor .error-label {
	color: #CC3300;
}

.tetris-valo .groupfloorsettings .v-caption {
	display: inline-block !important;
	margin-top: 3px !important;
}

.tetris-valo .groupfloorsettings #minDiffvalue, .tetris-valo .groupfloorsettings #shoulderNight, .tetris-valo .groupfloorsettings #minDiffType {
	margin-left: 10px !important;
}

.tetris-valo .groupfloorsettings .v-radiobutton, .tetris-valo .groupfloorsettings .v-radiobutton:first-child {
	display: inline-block !important;
	padding-right: 10px;
	margin-top: 6px !important;
}

.tetris-valo .groupfloorsettings #shoulderNight, .tetris-valo .groupfloorsettings #minDiffvalue {
	padding-bottom: 6px !important;
}

.tetris-valo .groupfloorsettings #perLabel {
	padding-left: 5px !important;
}

.tetris-valo .groupfloorsettings .gwt-HTML, .tetris-valo .groupfloorsettings .v-errormessage, .tetris-valo .groupfloorsettings .v-errormessage-system, .tetris-valo .groupfloorsettings .v-errorindicator-system, .tetris-valo .groupfloorsettings .v-errorindicator, .tetris-valo .groupfloorsettings .v-textfield-error-system {
	border-color: #d94560 !important;
	color: #d94560 !important;
}

.tetris-valo .fsdashboard-scrollBar {
	height: 200px !important;
	overflow-y: scroll !important;
}

.tetris-valo .fsdashboard .display-block {
	background-color: #f2f2f2;
	width: 140px;
	height: 60px;
	text-align: center;
	display: grid;
}

.tetris-valo .fsdashboard .v-grid-cell.sparkline {
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}

.tetris-valo .fsdashboard .background-white {
	background-color: white;
}

.tetris-valo .fsdashboard .font-bold {
	font-weight: bold !important;
}

.tetris-valo .fsdashboard .revenue-grid .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo .fsdashboard .highcharts-legend-item path {
	stroke-width: 15px;
}

.tetris-valo .fsdashboard .v-vertical.revenue-contribution-layout-spacing > .v-spacing {
	height: 20px;
}

.tetris-valo .fsdashboard .highcharts-container.hide-background-color path {
	fill: transparent;
}

.tetris-valo .fsdashboard .chart-header {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: normal;
	fill: #000000;
	text-align: center;
}

.tetris-valo .fsdashboard .utilization-label {
	font-family: "Open Sans", sans-serif;
	font-size: 24px;
	font-weight: normal;
	fill: #333333;
}

.tetris-valo .fsdashboard .alignCenter {
	text-align: center;
}

.tetris-valo .fsdashboard .legend-layout .v-has-caption, .tetris-valo .fsdashboard .legend-layout .v-has-caption > .v-caption {
	display: inline-flex !important;
	line-height: 0px !important;
}

.tetris-valo .fsdashboard .legend-layout .v-slot-legend-icon .v-icon {
	font-size: 15px;
}

.tetris-valo .fsdashboard .no-top-padding {
	padding-top: 0;
	vertical-align: baseline;
}

.tetris-valo .fsdashboard .v-grid-cell {
	text-align: right;
	padding-right: 5px;
	float: left;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	color: #000000;
}

.tetris-valo .fsdashboard td:nth-child(1) {
	text-align: left;
}

.tetris-valo .fsdashboard .v-caption {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 10px;
}

.tetris-valo .fsdashboard .background-color-light-gray {
	background-color: #f2f2f2;
}

.tetris-valo .fsdashboard .v-grid-cell.zero-to-10 {
	background-color: #82B9E1;
}

.tetris-valo .fsdashboard .v-grid-cell.ten-to-20 {
	background-color: #B6DBEA;
}

.tetris-valo .fsdashboard .v-grid-cell.twenty-to-30 {
	background-color: #ABD4B7;
}

.tetris-valo .fsdashboard .v-grid-cell.thirty-to-40 {
	background-color: #CDDFBF;
}

.tetris-valo .fsdashboard .v-grid-cell.fourty-to-50 {
	background-color: #BBE59A;
}

.tetris-valo .fsdashboard .v-grid-cell.fifty-to-60 {
	background-color: #FFEF9C;
}

.tetris-valo .fsdashboard .v-grid-cell.sixty-to-70 {
	background-color: #FFDFA0;
}

.tetris-valo .fsdashboard .v-grid-cell.seventy-to-80 {
	background-color: #FFCE70;
}

.tetris-valo .fsdashboard .v-grid-cell.eighty-to-90 {
	background-color: #FFB992;
}

.tetris-valo .fsdashboard .v-grid-cell.ninety-to-100 {
	background-color: #F99F9F;
}

.tetris-valo .background-color {
	background-color: #FFEBD4 !important;
}

.tetris-valo .section-heading {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	color: #CC6600;
}

.tetris-valo .layout-no-padding {
	padding: 0px !important;
}

.tetris-valo .label-padding {
	padding-bottom: 8px !important;
}

.tetris-valo .button-padding {
	padding: 10px !important;
}

.tetris-valo .property-business-views .marketSegmentDetailsTable .icon-center {
	text-align: center !important;
}

.tetris-valo .property-business-views tr.v-table-row-unassigned-style {
	font-weight: bold;
}

.tetris-valo .property-business-views td.v-table-cell-content.v-table-cell-content-unassigned-style {
	border-bottom: 2px solid #000;
}

.tetris-valo .corporate-business-views .v-button-add-button-blue {
	height: auto;
}

.tetris-valo .corporate-business-views .v-formlayout-captioncell {
	text-align: right;
}

.tetris-valo .corporate-business-views .tetris-italics {
	font-style: italic;
}

.tetris-valo .corporate-business-views .v-checkbox > label {
	margin-right: 0px;
	margin-left: 0px;
}

.tetris-valo .inventory-groups-views .display-order-style {
	padding-left: 29px;
}

.tetris-valo .inventory-groups-views .arrow-style {
	padding: 0px;
	margin-top: -5px;
}

.tetris-valo .inventory-groups-views .upButton-style {
	display: block;
	height: 13px;
	width: 13px;
	padding-right: 18px;
	margin-top: -8px;
}

.tetris-valo .inventory-groups-views .downButton-style {
	display: block;
	height: 13px;
	width: 13px;
	padding-right: 18px;
	margin-top: 6px;
}

.tetris-valo .inventory-groups-views .display-number-style {
	height: 58%;
}

.tetris-valo .rooms-configuration .v-checkbox.v-disabled {
	opacity: 1;
}

.tetris-valo .rooms-configuration .v-button.v-disabled, .tetris-valo .rooms-configuration .v-filterselect.v-disabled {
	opacity: 0.3;
}

.tetris-valo .rooms-configuration td, .tetris-valo .rooms-configuration input {
	font-size: 14px;
	color: #333333;
}

.tetris-valo .rooms-configuration .room-type-card {
	padding-left: 2px;
}

.tetris-valo .rooms-configuration .room-card-gradient {
	background: #feffff;
	background: -moz-linear-gradient(top, #feffff 0%, #eaeaea 100%);
	background: -webkit-linear-gradient(top, #feffff 0%, #eaeaea 100%);
	background: linear, to bottom, #feffff 0%, #eaeaea 100%;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feffff', endColorstr='#eaeaea',GradientType=0 );
}

.tetris-valo .rooms-configuration .v-slot-include-in-roh-text-vertical-alignment {
	padding-left: 7px;
}

.tetris-valo .rooms-configuration .v-slot-include-in-roh-text-vertical-alignment > span > span {
	vertical-align: bottom;
}

.tetris-valo .rooms-configuration .group-room-class-info > div {
	float: left;
}

.tetris-valo .rooms-configuration .group-room-class-info > div > div > div > div {
	padding-left: 10px;
}

.tetris-valo .rooms-configuration .newRoom-unpriced {
	background-color: #FFFFCC;
}

.tetris-valo .rooms-configuration .v-verticallayout-group-room-class-info-width {
	width: 100%;
}

.tetris-valo .rooms-configuration .v-slot-group-room-class-info-width {
	width: 95%;
}

.tetris-valo .rooms-configuration .v-slot-group-price-room-class-rank-width {
	width: 5%;
}

.tetris-valo .rooms-configuration .v-horizontallayout-group-room-card-width {
	width: 100%;
}

.tetris-valo .rooms-configuration .dashed-border {
	border-style: dashed;
	border-width: 2px;
	border-color: darkgrey;
	width: 100%;
}

.tetris-valo .rooms-configuration .all-drag-hints .v-ddwrapper-over-top, .tetris-valo .rooms-configuration .all-drag-hints .v-ddwrapper-over-bottom, .tetris-valo .rooms-configuration .all-drag-hints .v-ddwrapper-over-left, .tetris-valo .rooms-configuration .all-drag-hints .v-ddwrapper-over-right {
	border: 2px solid #1d9dff;
	border-radius: 4px;
	background-color: rgba(169, 209, 255, 0.6);
	padding: 0px;
}

.tetris-valo .rooms-configuration .v-icon + span {
	margin: 0px;
}

.tetris-valo .rooms-configuration .changedCell {
	background-color: #FFD9FF;
}

.tetris-valo .rooms-configuration .v-ddwrapper {
	padding: 2px;
}

.tetris-valo .rooms-configuration .room-card-name {
	font-size: 14px;
	font-weight: bold;
}

.tetris-valo .rooms-configuration .room-card-text {
	font-size: 11px;
}

.tetris-valo .rooms-configuration .add-button-padding {
	padding-top: 45px !important;
}

.tetris-valo .rooms-configuration .blue-remove-circle.v-icon, .tetris-valo .rooms-configuration .blue-remove-circle .v-icon {
	font-size: 18px;
	color: #0099CC;
}

.tetris-valo .rooms-configuration .v-button-blue-remove-circle, .tetris-valo .rooms-configuration .v-button-edit-button-blue, .tetris-valo .rooms-configuration .v-button-delete-button {
	padding: 0px;
}

.tetris-valo .rooms-configuration .v-select-optiongroup .v-radiobutton {
	margin-top: 0px !important;
	padding: 0 0 0 20px;
}

.tetris-valo .rooms-configuration #costOfWalkQuestion .v-radiobutton {
	margin-top: 9px !important;
}

.tetris-valo .rooms-configuration #roomsConfigGroupPriceRankingLayout .v-spacing, .tetris-valo .rooms-configuration #roomsConfigAdvancedPriceRankingAndUpgrade .v-spacing, .tetris-valo .rooms-configuration #roomsConfigMinPriceDiffLayout .v-spacing, .tetris-valo .rooms-configuration #roomsConfigDisplayPreferencesLayout .v-spacing {
	height: 0px;
}

.tetris-valo .rooms-configuration .price-rank-arrow-legend {
	vertical-align: middle;
}

.tetris-valo .rooms-configuration .dragCardHere {
	color: lightgrey;
	font-weight: bold;
	font-size: 19px;
}

.tetris-valo .rooms-configuration .overbooking-note {
	color: lightgrey;
	font-size: 11px;
	font-style: italic;
}

.tetris-valo .rooms-configuration .v-label {
	line-height: normal;
}

.tetris-valo .rooms-configuration .updated-label {
	background-color: #FFCC00;
	padding: 4px;
}

.tetris-valo .rooms-configuration .updated-font {
	font-size: 10px;
}

.tetris-valo .rooms-configuration .vRule-font {
	font-size: 24px;
	opacity: 0.5;
}

.tetris-valo .rooms-configuration .preview-mode {
	opacity: 1 !important;
}

.tetris-valo .rooms-configuration .border-grey {
	border: 1px solid #C9C9C9;
}

.tetris-valo .rooms-configuration .invalid-network-component {
	color: #CC0000 !important;
}

.tetris-valo .rooms-configuration .dataLayout-value {
	font-size: 14px;
	font-weight: bold;
}

.tetris-valo .rooms-configuration .field-label {
	font-size: 14px;
}

.tetris-valo .rooms-configuration .dataLayout-label {
	font-size: 11px;
}

.tetris-valo .rooms-configuration .room-type-card-remove-button {
	padding: 0px;
}

.tetris-valo .special-room-check-box-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 10px;
}

.tetris-valo #roomTypeMapping_exportToPdf {
	font-size: 18px;
	color: #999999;
	border: none;
}

.tetris-valo .padding-left-10 {
	padding-left: 10px;
}

.tetris-valo .padding-right-10 {
	padding-right: 10px;
}

.tetris-valo .special-event .recurrence-start-hl {
	margin-top: 15px;
}

.tetris-valo .special-event .recurrence-end-hl {
	margin-top: 5px;
}

.tetris-valo .special-event .v-table-header-wrap {
	height: auto !important;
}

.tetris-valo .special-event .margin-fields-se {
	margin-left: 5px !important;
	margin-bottom: -2px !important;
}

.tetris-valo .special-event .margin-fields-bottom-se {
	margin-left: 5px !important;
	margin-top: -5px !important;
}

.tetris-valo .special-event .margin-bottom10px {
	margin-bottom: 10px !important;
}

.tetris-valo .special-event .radioVerticalSpacing input[type="radio"] {
	margin-bottom: 13px !important;
}

.tetris-valo .special-event .manage-category-table .v-colorpicker {
	display: none;
}

.tetris-valo .special-event .categoryTable .v-table-cell-content {
	padding: 2px 0 2px 0;
}

.tetris-valo .special-event .categoryTable .v-table-cell-content .v-treetable-treespacer {
	width: 12px;
	padding-top: 6px;
	padding-left: 2px;
}

.tetris-valo .special-event .categoryTable .v-table-cell-content .v-label {
	font-size: 14px;
	font-face: Verdana;
	color: #000000;
}

.tetris-valo .special-event .margin-topse {
	margin-top: 5px !important;
}

.tetris-valo .special-event .margin-bottom3px {
	margin-bottom: 3px !important;
}

.tetris-valo .special-event .padding-right-se {
	padding-right: 58px !important;
}

.tetris-valo .special-event .addmarginrecurrence-start {
	margin-top: 6px;
	margin-bottom: 34px;
}

.tetris-valo .special-event .addmarginrecurrence-every {
	margin-top: -8px;
}

.tetris-valo .special-event .ellipsis-button .v-button-wrap {
	text-overflow: ellipsis;
	overflow: hidden;
}

.tetris-valo .special-event .heatmap-wrapper {
	background-color: #FFFFFF;
	padding: 4px 0px 4px 0px;
}

.tetris-valo .special-event .v-slot-tetris-heatmap .v-calendar-month td {
	border: 1px solid #FFFFFF;
}

.tetris-valo .special-event .tetris-heatmap > tbody > tr:nth-child(2) > td:first-child {
	display: none;
}

.tetris-valo .special-event .filter-button .v-icon {
	font-size: 20px;
}

.tetris-valo .special-event .filter-header {
	background-color: #FFFFFF;
	padding: 2px;
	font-weight: bold;
}

.tetris-valo .special-event .special-events-calendar .dimmed {
	pointer-events: none;
}

.tetris-valo .special-event .special-events-calendar .v-calendar-month td .v-calendar-month-day {
	display: block;
}

.tetris-valo .special-event .special-events-calendar .v-calendar-month td .v-calendar-month-day .v-calendar-event {
	padding-left: 0;
}

.tetris-valo .special-event .special-events-calendar .v-calendar-month td .v-calendar-month-day .v-calendar-event div {
	overflow-x: hidden;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.tetris-valo .special-event .special-events-calendar .v-calendar-month td .v-calendar-month-day .v-calendar-event-end {
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.tetris-valo .special-event .special-events-calendar .v-calendar-month td .v-calendar-month-day .v-calendar-event-start {
	-webkit-border-top-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-bottomleft: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: 0;
}

.tetris-valo .special-event .special-events-calendar .v-calendar-week-numbers {
	display: none;
}

.tetris-valo .special-event .v-panel {
	border: none;
}

.tetris-valo .special-event-instance-table .v-spacing {
	width: 12px;
}

.tetris-valo .special-event-view {
	background: #FFFFFF;
}

.tetris-valo #specialEventInstanceTableNotesButton * {
	font-size: 24px;
}

.tetris-valo #specialEventsSearchButton * {
	font-size: 24px;
}

.tetris-valo .filter-button .v-icon {
	font-size: 20px;
}

.tetris-valo .functionspace-demandcalendar .low {
	background-color: #CDE3EC;
}

.tetris-valo .functionspace-demandcalendar .medium {
	background-color: #F5DEB3;
}

.tetris-valo .functionspace-demandcalendar .high {
	background-color: #F5C8C9;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-day-number {
	float: right;
	position: absolute;
	top: 5px;
	right: 5px;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-month-day {
	cursor: pointer;
	position: relative;
	display: table-cell;
	vertical-align: bottom;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-evaluate-all-day {
	background: none;
	color: #1B69A8;
	display: inline;
	position: absolute;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-specialAndOverride-all-day {
	background: none;
	text-decoration: none;
	cursor: default;
	font-size: 13px;
	position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-specialAndOverride-all-day:before {
	color: #909090;
	font-family: FontAwesome;
	content: "\f005" " ";
	text-shadow: 0px 0px 1px #000000;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-specialAndOverride-all-day:after {
	color: #00AAFF;
	font-family: FontAwesome;
	content: "\f041";
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-special-all-day {
	background: none;
	text-decoration: none;
	cursor: default;
	font-size: 13px;
	position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-special-all-day:before {
	color: #909090;
	font-family: FontAwesome;
	content: "\f005";
	text-shadow: 0px 0px 1px #000000;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-override-all-day {
	background: none;
	text-decoration: none;
	cursor: default;
	font-size: 13px;
	position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
}

.tetris-valo .functionspace-demandcalendar .v-calendar-event-override-all-day:before {
	color: #00AAFF;
	font-family: FontAwesome;
	content: "\f041";
}

.tetris-valo .functionspace-demandcalendar .v-calendar-month-sizedheight .v-calendar-month-day {
	height: 107px;
}

.tetris-valo .functionspace-legend .specialEvent {
	display: inline;
}

.tetris-valo .functionspace-legend .specialEvent:before {
	color: #909090;
	font-family: FontAwesome;
	content: "\f005";
	padding-right: 5px;
	text-shadow: 0px 0px 1px #000000;
}

.tetris-valo .functionspace-legend .forecastOverride {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .functionspace-legend .forecastOverride:before {
	color: #00AAFF;
	font-family: FontAwesome;
	content: "\f041";
	padding-right: 5px;
}

.tetris-valo .functionspace-legend .ufHigh {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .functionspace-legend .ufHigh:before {
	color: #F5C8C9;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .functionspace-legend .ufMedium {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .functionspace-legend .ufMedium:before {
	color: #F5DEB3;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .functionspace-legend .ufLow {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .functionspace-legend .ufLow:before {
	color: #CDE3EC;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .functionspace-legend .systemDate {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .functionspace-legend .systemDate:before {
	color: #FF6F21;
	font-family: FontAwesome;
	content: "\f096";
	padding-right: 5px;
}

.tetris-valo .functionspace-legend .legendItem {
	padding-left: 15px;
	display: inline;
}

.tetris-valo .functionspace-summary .v-captiontext {
	font-weight: bold;
	font-size: 12px;
}

.tetris-valo .functionspace-summary .title {
	background-color: #EDEDED;
	font-weight: bold;
	height: 25px;
	padding-left: 5px;
}

.tetris-valo .functionspace-summary .v-slot-title {
	padding: 5px;
}

.tetris-valo .functionspace-heatmap {
	padding-top: 5px;
}

.tetris-valo .functionspace-heatmap .low {
	background-color: #CDE3EC;
}

.tetris-valo .functionspace-heatmap .medium {
	background-color: #F5DEB3;
}

.tetris-valo .functionspace-heatmap .high {
	background-color: #F5C8C9;
}

.tetris-valo .functionspace-details .v-caption-blockColorRowCaption {
	background-color: #cccfd0;
	padding-left: 5px;
}

.tetris-valo #leftDetailsPopup {
	opacity: 0;
}

.tetris-valo .tetris-padding-20 {
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
}

.tetris-valo .tetris-padding-15-20 {
	padding-top: 20px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 20px;
}

.tetris-valo .functionspace-functionspace-forecastreview #forecastReviewTreeTable  > .v-table-header-wrap  > .v-table-column-selector {
	opacity: initial;
}

.tetris-valo .functionspace-functionspace-forecastreview .specialEvent {
	display: inline;
}

.tetris-valo .functionspace-functionspace-forecastreview .specialEvent:before {
	color: #909090;
	font-family: FontAwesome;
	content: "\f005";
	text-shadow: 0px 0px 1px #000000;
}

.tetris-valo .functionspace-functionspace-forecastreview .forecastOverride {
	display: inline;
	padding-left: 15px;
	padding-right: 5px;
}

.tetris-valo .functionspace-functionspace-forecastreview .forecastOverride:before {
	color: #00AAFF;
	font-family: FontAwesome;
	content: "\f041";
}

.tetris-valo .functionspace-functionspace-forecastreview .hideDate {
	visibility: hidden;
}

.tetris-valo .functionspace-functionspace-forecastreview .forecast-review-buttons.v-icon, .tetris-valo .functionspace-functionspace-forecastreview .forecast-review-buttons .v-icon {
	margin-top: 4px;
}

.tetris-valo .functionspace-functionspace-forecastreview #forecastReviewNoteImageButton * {
	font-size: 24px !important;
}

.tetris-valo .functionspace-functionspace-forecastreview #exportXlsButton * {
	font-size: 20px;
	margin-top: -2px;
	color: #0099CC;
}

.tetris-valo .functionspace-functionspace-forecastreview #linkButton {
	height: 14px;
}

.tetris-valo .functionspace-functionspace-forecastreview .tetris-image-button {
	padding: 0;
}

.tetris-valo .group-wash .v-table-row-tetris-no-border-no-spacing-cell .v-table-cell-content-tetris-no-border-no-spacing-cell {
	border-top: none;
	background-color: white;
	height: 21px;
	font-size: 11px;
}

.tetris-valo .group-wash .v-table-row-tetris-no-border-no-spacing-cell .v-table-cell-content-tetris-no-border-no-spacing-cell .v-table-cell-wrapper {
	padding: 0;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .v-table-cell-wrapper .v-label {
	font-size: 11px;
	font-weight: 400;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .v-button-link {
	color: black;
	font-size: 11px;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date #groupOfOverrideButton, .tetris-valo .group-wash .group-wash-by-occupancy-date #groupMultidayOverrideButton, .tetris-valo .group-wash .group-wash-by-occupancy-date #transientOfOverrideButton, .tetris-valo .group-wash .group-wash-by-occupancy-date #transientMultidayOverrideButton {
	color: #0066cc;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .v-table-cell-content-small-text-cell .v-label, .tetris-valo .group-wash .group-wash-by-occupancy-date .v-table-cell-content-small-text-cell .v-textfield {
	font-size: 11px;
	font-weight: 400;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .v-table-cell-content-small-text-cell .gff-fg-ac-textfield {
	margin-left: -7px;
	margin-right: -7px;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .v-table-cell-wrapper .v-button-caption {
	font-size: 11px;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .ui-dateRangeSlider .ui-rangeSlider-label, .tetris-valo .group-wash .group-wash-by-occupancy-date .ui-dateRangeSlider .ui-ruler-tick-label {
	color: black;
	font-weight: 400;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .v-table-row-pseudo-header-row .v-label {
	text-align: center;
	font-weight: 400;
}

.tetris-valo .group-wash .group-wash-by-occupancy-date .v-table-row-pseudo-header-row .v-table-cell-wrapper {
	padding: 0;
}

.tetris-valo .group-wash-individual-groups #expandIcon, .tetris-valo .group-wash-individual-groups #collapseIcon {
	font-size: 24px;
}

.tetris-valo .group-wash-individual-groups #individualGroupFilterButton {
	margin-top: -4px;
}

.tetris-valo .group-wash-individual-groups .v-scrollable {
	overflow-y: auto !important;
}

.tetris-valo #groupWashByGroupNotesButton *.v-icon, .tetris-valo #groupWashByGroupNotesButton * .v-icon {
	font-size: 15px;
	text-align: left;
}

.tetris-valo #groupWashByGroupDetailButton *.v-icon, .tetris-valo #groupWashByGroupDetailButton * .v-icon {
	font-size: 15px;
}

.tetris-valo #groupWashByGroupDetailButton * .v-button {
	text-align: right;
}

.tetris-valo #groupWashByGroup_pseudoHeaderLayout {
	align-content: center;
}

.tetris-valo .clientLimitedDataBuildView .clientLimitedDataMarketSegmentView .add-button-blue {
	padding-bottom: 39px;
	margin-left: -10px;
}

.tetris-valo .clientLimitedDataBuildView .add-upload-button-blue {
	border: 1px solid #0081bd;
	background: #0081bd;
	color: white;
	min-width: 66px;
	text-align: center;
}

.tetris-valo .clientLimitedDataBuildView .add-button-height {
	height: 35px !important;
	margin-top: -5px;
}

.tetris-valo .clientLimitedDataBuildView .add-margin {
	margin-top: -20px;
}

.tetris-valo .clientLimitedDataBuildView .add-margin-5 {
	margin: -5px;
}

.tetris-valo .clientLimitedDataBuildView .v-projection-comboBox {
	padding-left: 0 !important;
}

.tetris-valo .clientLimitedDataBuildView .v-projection-label {
	margin-bottom: -10px !important;
}

.tetris-valo .clientLimitedDataBuildView .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo .clientLimitedDataBuildView .clientLimitedDataConfigurationView .v-slot-exportButton {
	height: auto;
}

.tetris-valo .clientLimitedDataBuildView .clientLimitedDataConfigurationView .v-slot-exportButton .exportButton {
	padding: 4px;
}

.tetris-valo .lraRestrictionView .lraCategoryRestrictionsView .lraRestrictionsCategoryAddBtn {
	padding-left: 0;
	margin-bottom: 10px;
}

.tetris-valo .lraRestrictionView .lraCategoryRestrictionsView .lraSaveCancelButtonBar {
	margin-top: 10px;
}

.tetris-valo .lraRestrictionView .lraRateCodeView .lraRestrictionLinkButton {
	margin-top: -4px;
	padding-left: 0;
	padding-right: 0;
}

.tetris-valo .baseballCard .v-csslayout {
	overflow: initial;
}

.tetris-valo .baseballCard .flipped .back {
	position: relative;
	-ms-backface-visibility: visible;
}

.tetris-valo .baseballCard .flipped {
	overflow: hidden;
}

.tetris-valo .baseballCard .flipped .front {
	display: none;
}

.tetris-valo #jobFilterPopupView {
	height: 510px;
	overflow-y: auto;
}

.tetris-valo #jobFilterPopupLayout {
	width: 800px;
	display: grid;
	grid-row-gap: 5px;
}

.tetris-valo #jobFilterPopupLayout #jobFilterFirstRowLayout {
	display: grid;
	grid-template-columns: 350px 350px;
	grid-template-rows: auto auto;
}

.tetris-valo #jobFilterPopupLayout #jobFilterSecondRowLayout {
	display: grid;
	grid-template-columns: 200px 200px 380px;
	grid-column-gap: 5px;
}

.tetris-valo #jobFilterPopupLayout #jobFilterSecondRowLayout #jobSearchLayout {
	display: grid;
}

.tetris-valo #jobFilterPopupLayout #jobFilterSecondRowLayout #jobSearchLayout div select {
	width: 300px !important;
	overflow-x: auto;
}

.tetris-valo #jobFilterPopupLayout #jobFilterThirdRowLayout {
	display: grid;
	grid-column-gap: 10px;
	grid-template-columns: repeat(2, 210px);
}

.tetris-valo #jobFilterPopupLayout #jobFilterFourthRowLayout {
	display: grid;
	grid-column-gap: 10px;
	grid-template-columns: repeat(4, 150px);
}

.tetris-valo #jobFilterPopupLayout #jobFilterFourthRowLayout #nodeField {
	grid-row-start: 2;
}

.tetris-valo #jobFilterPopupLayout #jobFilterFourthRowLayout #sasServerName {
	grid-row-start: 2;
}

.tetris-valo #jobFilterPopupLayout #jobFilterFourthRowLayout #classifierField {
	grid-row-start: 2;
}

.tetris-valo .headerBar {
	display: flex;
	flex-wrap: wrap;
	align-items: center !important;
}

.tetris-valo #problemMonitorFilterPopup {
	height: 635px;
	overflow-y: auto;
}

.tetris-valo #problemFilterPopupLayout {
	width: 800px;
	display: grid;
	grid-row-gap: 5px;
}

.tetris-valo #problemFilterPopupLayout #problemFilterFirstRowLayout {
	display: grid;
	grid-template-columns: 175px 180px 380px;
	grid-column-gap: 10px;
}

.tetris-valo #problemFilterPopupLayout #problemFilterFirstRowLayout #comboBoxFiltersLayout {
	display: grid;
}

.tetris-valo #problemFilterPopupLayout #problemFilterFirstRowLayout #stageDropDownLayout {
	display: grid;
}

.tetris-valo #problemFilterPopupLayout #problemFilterFirstRowLayout #jobSearchLayout {
	display: grid;
}

.tetris-valo #problemFilterPopupLayout #problemFilterFirstRowLayout #jobSearchLayout div select {
	width: 300px !important;
	overflow-x: auto;
}

.tetris-valo #problemFilterPopupLayout #problemFilterSecondRowLayout {
	display: grid;
	grid-template-columns: 20% 35% 20% 20%;
	grid-column-gap: 5px;
}

.tetris-valo #problemFilterPopupLayout #problemFilterSecondRowLayout #ownerListLayout {
	display: grid;
}

.tetris-valo #problemFilterPopupLayout #problemFilterThirdRowLayout {
	display: grid;
	grid-row-gap: 5px;
}

.tetris-valo #problemFilterPopupLayout #problemFilterThirdRowLayout #problemBetweenLayout {
	display: grid;
	grid-template-columns: 90px 90px 60px 210px 25px 210px;
	grid-column-gap: 5px;
	align-items: center;
}

.tetris-valo #problemFilterPopupLayout #problemFilterThirdRowLayout #problemOpenLayout {
	display: grid;
	grid-template-columns: 200px 50px 85px;
	align-items: center;
	grid-column-gap: 5px;
}

.tetris-valo #maxResultDisplayLayout {
	width: unset !important;
	transform: translate(0px, -4px);
}

.tetris-valo .sla-monitor-filter-background {
	background-color: #FFFFFF;
}

.tetris-valo .execution-context-tree-table .v-table-row, .tetris-valo .execution-context-tree-table .v-table-row-odd {
	height: auto;
}

.tetris-valo .v-table-row-job-monitor-overdue {
	background-color: #ffff00;
}

.tetris-valo .monitor-overdue .v-button-caption {
	color: red;
	font-weight: bold;
	font-size: larger;
}

.tetris-valo .pageNumberNavigatorStyle .v-label {
	padding-top: 7px;
}

.tetris-valo .problem-table .v-table-header-wrap, .tetris-valo .problem-table .v-table-header {
	height: 48px;
}

.tetris-valo .problem-table .v-table-header-wrap tbody, .tetris-valo .problem-table .v-table-header tbody {
	vertical-align: top;
}

.tetris-valo .problem-table .v-table-header-wrap .v-table-header-cell, .tetris-valo .problem-table .v-table-header .v-table-header-cell {
	height: 1px;
}

.tetris-valo .problem-table .v-table-header-wrap .v-table-header-cell  > .v-table-caption-container, .tetris-valo .problem-table .v-table-header .v-table-header-cell  > .v-table-caption-container {
	white-space: normal;
	height: 100%;
	font-size: 11px;
	font-weight: bold;
}

.tetris-valo .problem-table .v-table-header-wrap .v-table-header-cell  > .v-table-resizer, .tetris-valo .problem-table .v-table-header .v-table-header-cell  > .v-table-resizer {
	height: 48px;
}

.tetris-valo .problem-table.large-header .v-table-header-wrap, .tetris-valo .problem-table.large-header .v-table-header {
	height: 86px;
}

.tetris-valo .problem-table.large-header .v-table-header-wrap .v-table-header-cell > .v-table-resizer, .tetris-valo .problem-table.large-header .v-table-header .v-table-header-cell > .v-table-resizer {
	height: 86px;
}

.tetris-valo .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo .createForecastGroupPopup .floatIconLeft .v-icon {
	float: left;
	padding-right: 10px;
}

.tetris-valo .createForecastGroupPopup .linkItem .v-icon {
	text-decoration: none;
	padding-right: 10px;
	float: left;
	font-size: 24px;
}

.tetris-valo .createForecastGroupPopup .linkItem .v-button-caption {
	white-space: pre-wrap;
	word-break: initial;
}

.tetris-valo .createForecastGroupPopup .linkItem span {
	white-space: pre-wrap;
}

.tetris-valo .forecastGroupTab .icon-center {
	text-align: center !important;
}

.tetris-valo .forecastGroupTab tr.v-table-row-unassigned-style {
	font-weight: bold;
}

.tetris-valo .forecastGroupTab td.v-table-cell-content.v-table-cell-content-unassigned-style {
	border-bottom: 2px solid #000;
}

.tetris-valo .forecastGroupTab .history-layout .v-label {
	margin-top: 5px;
}

.tetris-valo .forecastGroupTab .forecastgroup-middle-align-component .v-slot, .tetris-valo .forecastGroupTab .forecastgroup-middle-align-component .v-spacing {
	vertical-align: middle;
	padding-left: 5px;
}

.tetris-valo .forecastGroupTab .action-layout .clear-cancel, .tetris-valo .forecastGroupTab .action-layout .save-icon {
	padding: 0;
}

.tetris-valo #MarketSegmentLevelTable .v-treetable-treespacer {
	margin-top: 5px;
}

.tetris-valo .rate-code-create-rule-button {
	padding-left: 0px;
}

.tetris-valo #auditExcelExportButton {
	margin-top: -2px;
}

.tetris-valo .preview-popup-excel-button {
	margin-top: -2px;
}

.tetris-valo .attribute-assignment-edit-button {
	padding-top: 5px;
}

.tetris-valo .attribute-assignment-delete-button {
	padding-top: 4px;
}

.tetris-valo #assignedMarketSegmentTable .v-table-row.v-table-row-preserved, .tetris-valo #assignedMarketSegmentTable .v-table-row-odd.v-table-row-preserved {
	background: #D3D3D3;
}

.tetris-valo .ams-assignComponent .block-option-group .v-caption-hasdescription {
	display: block;
}

.tetris-valo .pricing-strategy-config .lraLabel {
	margin-left: 4px;
	background-color: #ffe8a3;
}

.tetris-valo .pricing-strategy-config #priceStrategyRoomClassComboBox.v-icon, .tetris-valo .pricing-strategy-config #priceStrategyRoomClassComboBox .v-icon {
	color: #0099CC;
}

.tetris-valo .pricing-strategy-config #priceStrategyRoomClassComboBox .v-filterselect-suggestpopup-priceStrategyRoomClassComboBox .v-icon {
	color: #0099CC;
}

.tetris-valo .pricing-strategy-config .min-max-combobox .v-filterselect-input {
	text-align: right;
}

.tetris-valo .pricing-strategy-config .min-max-combobox .v-filterselect-suggestpopup-min-max-combobox .gwt-MenuItem {
	text-align: right;
}

.tetris-valo .pricing-strategy-config .seasons-filter-layout.v-horizontallayout {
	height: 24px !important;
	border-bottom: 0px;
	background-image: url(modules/pricestrategy/img/titlebarbackground.png);
	background-repeat: repeat-x;
}

.tetris-valo .pricing-strategy-config .config-settings-table .v-table-body {
	background: white;
}

.tetris-valo .pricing-strategy-config .default-price-strategy-label .tetris-panelbar-title {
	color: black;
}

.tetris-valo .pricing-strategy-config .main-details-left-pane .row-background-white {
	background: white;
}

.tetris-valo .pricing-strategy-config .seasons-body-layout {
	background-color: #FFFFFF;
	margin-top: -1px;
}

.tetris-valo .pricing-strategy-config .daily-settings-margin-right {
	margin-right: 45px;
}

.tetris-valo .price-strategy-caret-button {
	margin-top: 5px;
}

.tetris-valo .occupant-grouping-window .rule-tip {
	font-size: 10px;
	font-style: italic;
}

.tetris-valo .season-window .v-caption-layout-padding-firstfield {
	padding-right: 4px;
}

.tetris-valo .season-window .v-caption-layout-padding {
	padding-left: 10px;
	padding-right: 4px;
}

.tetris-valo .v-tabsheet-tabitemcell-pricingtaballignment {
	margin-right: 15px;
}

.tetris-valo .back-link-container {
	border-bottom: 1px solid grey;
}

.tetris-valo .name-label {
	padding: 0 6px;
}

.tetris-valo .pricing-tab-sheet {
	margin-left: 6px;
}

.tetris-valo .pricing-config-season-table-button {
	padding-top: 4px;
}

.tetris-valo .horizontal-radio-buttons {
	display: flex;
	margin: 0 !important;
	padding: 0 !important;
}

.tetris-valo .rate-details .v-slot {
	vertical-align: middle;
}

.tetris-valo .rate-details .rate-details-legend-layout {
	margin-top: -18px;
}

.tetris-valo .season-list-legend-layout {
	margin-top: -18px;
}

.tetris-valo .season-list-checkbox-season-filter {
	padding-left: 8px !important;
}

.tetris-valo .roleManagementPage .role-management-delete-button.v-icon, .tetris-valo .roleManagementPage .role-management-delete-button .v-icon {
	margin-top: 4px;
}

.tetris-valo .agile-rates .advanced-configuration {
	box-sizing: border-box;
	padding-top: 5px;
	position: relative;
	background-color: white;
	box-shadow: 0 2px 5px -3px #888;
	z-index: 2000;
}

.tetris-valo .agile-rates .advanced-configuration .userMenuBtns {
	padding: 0;
}

.tetris-valo .agile-rates #productListingAddButton {
	margin-top: -5px;
}

.tetris-valo .agile-rates .offsets-grid-header {
	border: 1px solid #D7D7D7;
	border-right: 0;
	background-color: #E4E4E4;
	padding: 2px;
}

.tetris-valo .agile-rates .offsets-grid-header.last {
	border-right: 1px solid #D7D7D7;
}

.tetris-valo .agile-rates .offsets-grid-main-border {
	border: 1px solid #D7D7D7;
	border-top: 0;
}

.tetris-valo .agile-rates .v-gridlayout-slot .offsets-grid-alt-row {
	background-color: #E4E4E4;
}

.tetris-valo .agile-rates .wizard-footer .link {
	top: -10px;
}

.tetris-valo .agile-rates .wizard-footer .informational {
	font-size: 20px;
}

.tetris-valo .agile-rates .warning-icon-label {
	line-height: 24px;
}

.tetris-valo .agile-rates .adjustActionButtons {
	margin-top: -5px;
	padding: 0;
}

.tetris-valo .agile-rates .medium-text {
	font-size: medium;
}

.tetris-valo .agile-rates #sectionHeaderLayoutAgileRatesDTA .v-label {
	font-size: 16px;
}

.tetris-valo .agile-rates .exampleColumn {
	background: #f2f2f2;
}

.tetris-valo .agile-rates .v-label {
	font-size: 14px;
}

.tetris-valo .agile-rates .v-caption {
	font-size: 14px;
}

.tetris-valo .agile-rates .dta-label {
	font-size: 13px;
	padding-left: 14px;
}

.tetris-valo .agile-rates .internal-panel {
	border: none;
}

.tetris-valo .agile-rates .internal-panel .rate-code-and-room-type-container {
	display: flex;
	flex-flow: row wrap;
}

.tetris-valo .agile-rates .internal-panel .rate-code-and-room-type-container .v-caption-rate-code-form-layout {
	margin-top: 13px;
}

.tetris-valo .agile-rates .defaults-header-label {
	margin-top: -6px;
	font-size: 11px;
	font-weight: bold;
}

.tetris-valo .agile-rates .v-checkbox {
	padding-left: 10px;
}

.tetris-valo .agile-rates .optimization-level-wrapper-layout .v-caption {
	color: #CC6600;
	font-size: large;
}

.tetris-valo .agile-rates .warning-layout {
	border-width: 1px;
	border-style: solid;
	border-color: #FF9900;
}

.tetris-valo .agile-rates .warning-layout .v-label {
	padding: 10px;
}

.tetris-valo .agile-rates .warning-layout .v-icon {
	font-size: 25px;
}

.tetris-valo .agile-rates .optimization-level-message.v-label {
	font-style: italic;
	color: darkgrey;
}

.tetris-valo .agile-rates .agile-rates-adjustment-type-layout {
	font-size: large;
}

.tetris-valo .agile-rates .optimized-product-fixed-base-product {
	color: darkgrey;
	font-style: italic;
}

.tetris-valo .agile-rates .agile-rates-adjustment-by-radio-button {
	display: flex;
}

.tetris-valo .agile-rates .agile-rates-send-adjustment-radio-button {
	display: flex;
}

.tetris-valo .agile-rates .agile-rates-rate-shopping-los-radio-button {
	display: flex;
}

.tetris-valo .agile-rates .arrow-style {
	padding: 0px;
	margin-top: -20px;
}

.tetris-valo .agile-rates .downButton-style {
	display: block;
	height: 13px;
	width: 13px;
	padding-right: 18px;
	margin-top: 6px;
}

.tetris-valo .agile-rates .upButton-style {
	display: block;
	height: 13px;
	width: 13px;
	padding-right: 18px;
	margin-top: -8px;
}

.tetris-valo .agile-rates .display-order-style {
	padding-left: 29px;
}

.tetris-valo .agile-rates .display-number-style {
	height: 58%;
}

.tetris-valo .agile-rates .arrow-style {
	padding: 0px;
	margin-top: -20px;
}

.tetris-valo .agile-rates .downButton-style {
	display: block;
	height: 13px;
	width: 13px;
	padding-right: 18px;
	margin-top: 6px;
}

.tetris-valo .agile-rates .upButton-style {
	display: block;
	height: 13px;
	width: 13px;
	padding-right: 18px;
	margin-top: -8px;
}

.tetris-valo .agile-rates .display-order-style {
	padding-left: 29px;
}

.tetris-valo .agile-rates .display-number-style {
	height: 58%;
}

.tetris-valo .agile-rates .less-than-or-equal-to-row, .tetris-valo .agile-rates .less-than-or-equal-to-row-header {
	top: -7px !important;
}

.tetris-valo .agile-rates .product-label {
	color: #000000 !important;
	padding-left: 3px;
	padding-top: 3px;
}

.tetris-valo .agile-rates .product-border {
	border-style: solid;
	border-color: #d1d1d1;
	border-width: 1px;
}

.tetris-valo .agile-rates .optimized-icon .v-icon {
	color: #009933;
}

.tetris-valo .agile-rates .independent-icon .v-icon {
	color: #9b2bfc;
}

.tetris-valo .agile-rates .linked-icon .v-icon {
	color: #fa9e00;
}

.tetris-valo .agile-rates .alert-layout {
	border-style: solid;
	border-color: #FFCC00;
	border-width: 1px;
}

.tetris-valo .agile-rates .label-center {
	text-align: center;
}

.tetris-valo .agile-rates .label-padding {
	padding-top: 10px;
}

.tetris-valo .agile-rates .price-layout {
	border-right: solid;
	border-right-width: 1px;
	border-right-color: #d1d1d1;
}

.tetris-valo .agile-rates .grid-header-row {
	text-align: center;
}

.tetris-valo .agile-rates .losCaptionStyle {
	margin-top: 25px !important;
}

.tetris-valo .agile-rates-config .remove-space .v-spacing {
	width: 0px;
	height: 0px;
}

.tetris-valo .condition-option {
	padding-top: 6px;
}

.tetris-valo .v-select-optiongroup-metric-type-select {
	white-space: nowrap;
}

.tetris-valo .v-select-optiongroup-metric-type-select .v-select-option {
	display: inline-block;
	margin-right: 3px;
}

.tetris-valo .v-select-optiongroup-metric-type-select .v-select-option input {
	padding-right: 10px;
}

.tetris-valo .v-select-optiongroup-metric-type-select .v-select-option label {
	margin-left: 5px;
}

.tetris-valo .information-manager-view {
	font-weight: 400;
}

.tetris-valo .information-manager-view .notification-graph .gray-bar {
	background-color: #A9A9A9;
}

.tetris-valo .information-manager-view .notification-graph .green-bar {
	background-color: #006613;
}

.tetris-valo .information-manager-view .notification-graph .green-line {
	background-color: #003E0C;
}

.tetris-valo .information-manager-view .notification-graph .red-line {
	background-color: #900000;
}

.tetris-valo .information-manager-view .notification-graph .green-value-box {
	border: 2px solid #003e0c;
	padding: 0 3px;
	line-height: 16px;
	color: white;
	background-color: #006613;
	font-weight: bold;
}

.tetris-valo .information-manager-view .notification-graph .red-value-box {
	border: 2px solid #900000;
	padding: 0 3px;
	line-height: 16px;
	color: white;
	background-color: #CC0000;
	font-weight: bold;
}

.tetris-valo .information-manager-view .notification-graph .threshold-value {
	font-size: 10px;
}

.tetris-valo .information-manager-view .notification-graph .v-absolutelayout-wrapper-broken {
	-ms-transform: rotate(-7deg);
	-webkit-transform: rotate(-7deg);
	transform: rotate(-7deg);
}

.tetris-valo .information-manager-view .notification-graph .broken {
	background-color: #F7F7F7;
	border-top: 1px dotted black;
	border-bottom: 1px dotted black;
}

.tetris-valo .information-manager-view .legend-box {
	float: left;
	width: 10px;
	height: 10px;
	border: 1px solid black;
	margin-right: 5px;
}

.tetris-valo .information-manager-view .legend-box.red {
	background-color: #CC0000;
}

.tetris-valo .information-manager-view .legend-box.green {
	background-color: #006613;
}

.tetris-valo .information-manager-view .green-text {
	float: left;
	color: #006613;
	line-height: 13px;
	font-weight: bold;
}

.tetris-valo .information-manager-view .red-text {
	float: left;
	color: #CC0000;
	line-height: 13px;
	font-weight: bold;
}

.tetris-valo .information-manager-view .v-table-cell-content-ellipsis-cell .v-table-cell-wrapper {
	text-overflow: ellipsis;
}

.tetris-valo .information-manager-view .allcounts-caption {
	font-weight: bold;
	font-size: 20px;
}

.tetris-valo .information-manager-view .allcounts-count {
	font-size: 16px;
}

.tetris-valo .information-manager-view.filter-content {
	display: flex;
	flex-flow: row wrap;
	width: 800px;
}

.tetris-valo .information-manager-view.filter-content .v-panel {
	border: none;
}

.tetris-valo .information-manager-view.filter-content .dow-filter-optiongroup {
	display: flex;
	flex-wrap: wrap;
	width: 195px;
	height: auto;
}

.tetris-valo .information-manager-view.filter-content .dow-filter-optiongroup span {
	width: 30%;
}

.tetris-valo .information-manager-view.filter-content .caption-container {
	width: 80px;
	display: inline-block;
}

.tetris-valo .information-manager-view.filter-content .filtersquare {
	width: 14px;
	height: 14px;
	display: inline-block;
	margin-left: 5px;
	right: 0;
	position: absolute;
}

.tetris-valo .information-manager-view.filter-content .bluefilter {
	background-color: #0159B3;
}

.tetris-valo .information-manager-view.filter-content .yellowfilter {
	background-color: #E5CC2B;
}

.tetris-valo .information-manager-view.filter-content .orangefilter {
	background-color: #E28E27;
}

.tetris-valo .information-manager-view.filter-content .redfilter {
	background-color: #E2252B;
}

.tetris-valo .information-manager-view.filter-content > * {
	flex: 1;
}

.tetris-valo .information-manager-view #filterButton {
	margin-top: -7px;
	padding: 0;
}

.tetris-valo .information-manager-view .v-table-caption-container, .tetris-valo .information-manager-view .v-table-header-drag {
	padding: 9px 10px 8px;
	border-left: 1px solid #dadada;
	color: #333333;
	background: #E4E4E4;
	text-align: center;
}

.tetris-valo .information-manager-view .base-layout {
	padding-top: 18px;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet {
	overflow: visible !important;
	word-wrap: break-word;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .v-tabsheet-tabcontainer {
	overflow: visible !important;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	overflow: visible;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .v-tabsheet-tabcontainer .v-tabsheet-tabs .v-tabsheet-tabitem .v-captiontext {
	position: relative;
	overflow: visible;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .v-tabsheet-tabcontainer .v-tabsheet-tabs .v-tabsheet-spacertd {
	background-color: #F7F7F7;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view {
	min-width: 450px;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .description {
	white-space: nowrap;
	text-overflow: ellipsis;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .v-table-cell-content-score .v-table-cell-wrapper {
	height: 26px;
	line-height: 21px;
	color: white;
	font-weight: bold;
	padding-top: 3px;
	padding-bottom: 3px;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .v-table-cell-content-score.gray .v-table-cell-wrapper {
	background-color: #B5B5B5;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .v-table-cell-content-score.blue .v-table-cell-wrapper {
	background-color: #0159B3;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .v-table-cell-content-score.yellow .v-table-cell-wrapper {
	background-color: #E5CC2B;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .v-table-cell-content-score.orange .v-table-cell-wrapper {
	background-color: #E28E27;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .v-table-cell-content-score.red .v-table-cell-wrapper {
	background-color: #E2252B;
}

.tetris-valo .information-manager-view .base-layout .main-tab-sheet .list-view .v-table-row-new-item {
	font-weight: bold;
}

.tetris-valo .information-manager-view .base-layout .all-counts-button {
	position: absolute;
	right: 10px;
}

.tetris-valo .information-manager-view .base-layout .notification-label {
	background-color: #FFE8A3;
	padding: 10px 10px 5px 10px;
}

.tetris-valo .information-manager-view .base-layout .notification-label  > span {
	float: left;
	margin-right: 5px;
}

.tetris-valo .information-manager-view .details-view {
	border: 1px solid #868585;
}

.tetris-valo .information-manager-view .details-view .excess-ooo-link {
	cursor: pointer;
	color: #0066cc;
	text-decoration: underline;
}

.tetris-valo .information-manager-view .details-view .disabled-link {
	pointer-events: none;
	color: #aaaaaa;
}

.tetris-valo .information-manager-view .score-label {
	height: 37px;
	border-radius: 2px;
	border: 1px solid #EEEEEE;
	line-height: 37px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.tetris-valo .information-manager-view .score-label.gray {
	background-color: #B5B5B5;
}

.tetris-valo .information-manager-view .score-label.blue {
	background-color: #0159B3;
}

.tetris-valo .information-manager-view .score-label.yellow {
	background-color: #E5CC2B;
}

.tetris-valo .information-manager-view .score-label.orange {
	background-color: #E28E27;
}

.tetris-valo .information-manager-view .score-label.red {
	background-color: #E2252B;
}

.tetris-valo .information-manager-view .top-bar {
	background-color: white;
}

.tetris-valo .information-manager-view .name-label {
	font-weight: bold;
}

.tetris-valo .information-manager-view .section-header-label {
	font-weight: bold;
	padding-top: 4px;
	padding-bottom: 8px;
}

.tetris-valo .information-manager-view .actions-option-group .v-select-option label {
	white-space: normal;
}

.tetris-valo .information-manager-view .actions-option-group .v-select-option {
	padding-bottom: 10px;
}

.tetris-valo .information-manager-view .actions-option-group .v-checkbox-disabled > label {
	opacity: 1;
}

.tetris-valo .information-manager-view .actions-option-group .v-checkbox-disabled input {
	opacity: 0.6;
}

.tetris-valo .information-manager-view .actions-option-group .v-disabled a {
	cursor: pointer;
}

.tetris-valo .information-manager-view .actions-option-group a {
	text-decoration-line: none;
	color: #0066cc;
}

.tetris-valo .information-manager-view .details-tree .v-table-row, .tetris-valo .information-manager-view .details-tree .v-table-row-odd {
	height: 10px;
}

.tetris-valo .information-manager-view .status {
	width: 15px !important;
	height: 15px !important;
}

.tetris-valo .information-manager-view .health, .tetris-valo .information-manager-view .status {
	width: 24px;
	height: 24px;
	border-radius: 50%;
}

.tetris-valo .information-manager-view .health.gray, .tetris-valo .information-manager-view .health.GRAY, .tetris-valo .information-manager-view .status.gray, .tetris-valo .information-manager-view .status.GRAY {
	background-color: gray;
}

.tetris-valo .information-manager-view .health.green, .tetris-valo .information-manager-view .health.GREEN, .tetris-valo .information-manager-view .status.green, .tetris-valo .information-manager-view .status.GREEN {
	background-color: green;
}

.tetris-valo .information-manager-view .health.yellow, .tetris-valo .information-manager-view .health.YELLOW, .tetris-valo .information-manager-view .status.yellow, .tetris-valo .information-manager-view .status.YELLOW {
	background-color: yellow;
}

.tetris-valo .information-manager-view .health.red, .tetris-valo .information-manager-view .health.RED, .tetris-valo .information-manager-view .status.red, .tetris-valo .information-manager-view .status.RED {
	background-color: red;
}

.tetris-valo .information-manager-view .buttonShiftingFix {
	margin-top: -5px;
}

.tetris-valo .information-manager-view .disabled-note-area {
	opacity: 1;
}

.tetris-valo .informationManagerBaseballCard .v-accordion {
	border: none;
}

.tetris-valo .informationManagerBaseballCard .v-accordion .v-formlayout-captioncell {
	text-align: right;
}

.tetris-valo .informationManagerBaseballCard .v-accordion .v-checkbox  > label {
	color: #0033CC;
}

.tetris-valo .informationManagerBaseballCard .actions-option-group .v-checkbox-disabled > label {
	opacity: 1;
}

.tetris-valo .information-manager-alert-count {
	position: relative;
	color: #00CC00;
	width: 25px;
	font-size: 25px;
	display: inline;
}

.tetris-valo .information-manager-alert-count .alert-count-icon {
	color: #FFFFFF;
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 11px;
	text-align: center;
	font-weight: bold;
}

.tetris-valo .group-floor-override-alert .group-floor-override-grid {
	text-align: center;
}

.tetris-valo .group-floor-override-alert .group-floor-override-grid .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo .group-floor-override-alert .group-floor-override-grid .v-grid-row .row-yellow-recent {
	background-color: #FFFDD1;
}

.tetris-valo .group-floor-override-alert .group-floor-override-grid .v-grid-row .row-grey-old {
	background-color: #EAEAEA;
}

.tetris-valo .group-floor-override-alert .v-caption-yellow-recent .v-icon {
	color: #FFFDD1;
	font-size: 15px;
}

.tetris-valo .group-floor-override-alert .v-caption-grey-old .v-icon {
	color: #EAEAEA;
	font-size: 15px;
}

.tetris-valo .overbooking-management-view {
	background: #ffffff;
}

.tetris-valo .overbooking-management-view .filter-bar {
	background: #EFEFEF;
}

.tetris-valo .overbooking-management-view #topBar {
	height: 100%;
	padding: 15px;
}

.tetris-valo .overbooking-management-view #topBar .abstract-Heat-Map-Bar {
	height: 100% !important;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tetris-valo .overbooking-management-view #topBar .abstract-Heat-Map-Bar #filterButton {
	transform: translate(0px, -63px);
}

.tetris-valo .overbooking-management-view #topBar .abstract-Heat-Map-Bar #modeSelector {
	width: 175px;
	display: grid;
	grid-template-rows: repeat(4, auto);
	grid-row-gap: 2px;
}

.tetris-valo .overbooking-management-view #topBar .abstract-Heat-Map-Bar #modeSelector #heatmapSelector, .tetris-valo .overbooking-management-view #topBar .abstract-Heat-Map-Bar #modeSelector .v-filterselect.v-widget.v-filterselect-no-input {
	width: 175px !important;
}

.tetris-valo .overbooking-management-view #topBar .abstract-Heat-Map-Bar #heatMapNavigator {
	width: unset !important;
}

.tetris-valo .overbooking-management-view .overrides-option-group {
	font-size: 11px;
}

.tetris-valo .overbooking-management-view .overrides-option-group .override-overbooking-value {
	color: #EE77EE;
	font-size: 15px;
}

.tetris-valo .overbooking-management-view .overrides-option-group .override-overbooking-ceiling {
	color: #9963FF;
	font-size: 15px;
}

.tetris-valo .overbooking-management-view .overrides-option-group .override-wash {
	color: #4DB400;
	font-size: 15px;
}

.tetris-valo .overbooking-management-view .overrides-option-group .override-cost-of-walk {
	color: #CBE301;
	font-size: 15px;
}

.tetris-valo .overbooking-management-view #leftRoomTypeSelectorLabel {
	padding-left: 50px;
}

.tetris-valo .overbooking-management-view #overbookingMgmtRightMonthSelector {
	padding-top: 3px;
}

.tetris-valo .overbooking-management-view #buttonBar {
	padding-right: 5px;
}

.tetris-valo .overbooking-management-view #overbookingCalendarLayouts {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-column-gap: 5px;
}

.tetris-valo .overbooking-management-view .v-calendar-day-number {
	height: 18px;
	line-height: 18px;
	font-size: 12px !important;
	text-align: right;
	padding-right: 3px;
	white-space: nowrap;
}

.tetris-valo .overbooking-management-view .v-calendar-event-all-day {
	height: 14px;
	font-weight: 400;
}

.tetris-valo .overbooking-management-view .v-calendar-spacer {
	height: 15px;
	font-size: 11px;
}

.tetris-valo .overbooking-management-view .v-calendar-event-month {
	margin-bottom: 0;
}

.tetris-valo .overbooking-management-view .v-calendar-spacer {
	margin-bottom: 0;
}

.tetris-valo .overbooking-management-view .overbooking-management-calendar .v-calendar-month td .v-calendar-month-day {
	height: 85px !important;
}

.tetris-valo #overbookingOverrideDetailsGrid #roomTypeDeleteButton * {
	margin-top: -2px;
}

.tetris-valo #overbookingOverrideDetailsGrid #roomTypeRemoveOverrideIcon * {
	margin-top: -2px;
}

.tetris-valo #overbookingOverrideDetailsGrid .overbooking-override-cell {
	background-color: #FFEBEB;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #overbookingOverrideDetailsGrid .costofwalk-override-cell {
	background-color: #FFFFE6;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #overbookingOverrideDetailsGrid .reverted-override-cell {
	background-color: #C9FDFD;
	border-bottom: 1px solid #dadada;
}

.tetris-valo #overbookingOverrideDetailsGrid .property-row-cell {
	background-color: #D7EBFF;
}

.tetris-valo #overbookingOverrideDetailsGrid .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo #overbookingOverrideDetailsGrid .overbookingOverrideColumnGroupedHeader {
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo #overbookingOverrideDetailsGrid .costOfWalkColumnGroupedHeader {
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo .room-type-tab-grid .v-grid-tablewrapper .v-grid-header .v-grid-row:nth-child(2) .v-grid-cell:nth-child(11), .tetris-valo .room-type-tab-grid .v-grid-tablewrapper .v-grid-header .v-grid-row:nth-child(2) .v-grid-cell:nth-child(12), .tetris-valo .room-type-tab-grid .v-grid-tablewrapper .v-grid-header .v-grid-row:nth-child(2) .v-grid-cell:nth-child(13), .tetris-valo .room-type-tab-grid .v-grid-tablewrapper .v-grid-header .v-grid-row:nth-child(2) .v-grid-cell:nth-child(14) {
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo .room-type-tab-grid .v-grid-tablewrapper .v-grid-header .v-grid-row:nth-child(2) .v-grid-cell:nth-child(15), .tetris-valo .room-type-tab-grid .v-grid-tablewrapper .v-grid-header .v-grid-row:nth-child(2) .v-grid-cell:nth-child(16), .tetris-valo .room-type-tab-grid .v-grid-tablewrapper .v-grid-header .v-grid-row:nth-child(2) .v-grid-cell:nth-child(17) {
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo .room-type-tab-grid .cr-component-cell {
	width: 100%;
}

.tetris-valo .room-type-tab-grid .warning-icon {
	margin-left: 10px;
}

.tetris-valo #overbookingDetailsRoomTypeTabHideShowButton {
	background-color: #E4E4E4;
	color: #333333;
	margin-left: 230px;
}

.tetris-valo #overbookingDetailsRoomTypeTabHideShowButton * {
	cursor: pointer;
}

.tetris-valo #roomTypeTabSaveCancelButtonBar {
	margin-top: 7px;
}

.tetris-valo .overbooking-management-multiday-table .v-table-resizer {
	display: none !important;
}

.tetris-valo .overbooking-management-multiday-table .v-table-cell-content-overbooking-override-cell {
	background-color: #FFEBEB;
	border-bottom: 1px solid #dadada;
}

.tetris-valo .overbooking-management-multiday-table .v-table-cell-content-costofwalk-override-cell {
	background-color: #FFFFE6;
	border-bottom: 1px solid #dadada;
}

.tetris-valo .overbooking-management-multiday-table .property-row-cell {
	background-color: #D7EBFF;
}

.tetris-valo .overbooking-management-multiday-table .v-table-header-cell:nth-child(3), .tetris-valo .overbooking-management-multiday-table .v-table-header-cell:nth-child(4) {
	padding-bottom: 13px;
	color: #000000;
	background: #FFCCCC;
}

.tetris-valo .overbooking-management-multiday-table .v-table-header-cell:nth-child(5), .tetris-valo .overbooking-management-multiday-table .v-table-header-cell:nth-child(6) {
	padding-bottom: 13px;
	color: #000000;
	background: #FFFFCC;
}

.tetris-valo #ceilingValueOption .v-radiobutton, .tetris-valo #noCeilingOption .v-radiobutton {
	margin-right: 0;
	padding-left: 10px;
}

.tetris-valo .multiDayOverrideView {
	padding-top: 10px;
}

.tetris-valo .multiDayOverrideView #multidayOverbookingGroupedHeader {
	margin-left: 1px;
	font-size: 12px;
	color: #000000;
	background-color: #FFCCCC;
}

.tetris-valo .multiDayOverrideView #multidayOverbookingGroupedHeader #overbookingOverride {
	padding-bottom: 2px;
}

.tetris-valo .multiDayOverrideView #multidayCostOfWalkGroupedHeader {
	font-size: 12px;
	color: #000000;
	background-color: #FFFFCC;
}

.tetris-valo .multiDayOverrideView #multidayCostOfWalkGroupedHeader #costOfWalkOverride {
	padding-bottom: 2px;
}

.tetris-valo .forecast-group-panel {
	border: none;
}

.tetris-valo .overbooking-multiday-dow .v-checkbox {
	margin-right: 10px !important;
}

.tetris-valo #forecastGroupOverrideDetailsTable .reverted-override-cell {
	background-color: #C9FDFD;
	border-bottom: 1px solid #dadada;
}

.tetris-valo .v-slot-day-Of-Week-Option-Group .v-required-field-indicator {
	display: none;
}

.tetris-valo .propertyAttributesView .propertyAttributesFormLayout .v-formlayout-lastrow .v-formlayout-contentcell {
	padding-top: 3px;
	padding-bottom: 3px;
}

.tetris-valo .propertyAttributesView #addAttributeButton, .tetris-valo .propertyAttributesView #addAttributeValueButton {
	padding-left: 0;
}

.tetris-valo #attributeValuesTable .v-radiobutton {
	margin: 0 !important;
}

.tetris-valo .property-specific .add-button {
	top: -4px !important;
}

.tetris-valo .save-cancel-button-left-alignment {
	margin-left: -9.5%;
}

.tetris-valo #marketSegmentSelect {
	margin-left: 2%;
	margin-top: 1%;
	margin-bottom: 2%;
}

.tetris-valo .rateShoppingConfig #compititorSpecific, .tetris-valo .rateShoppingConfig #compititorBy {
	padding-top: 5px;
	margin-right: -10px;
}

.tetris-valo .rateShoppingConfig #rateAdjustment  > label::before, .tetris-valo .rateShoppingConfig #ignoreCompetitorData  > label::before {
	margin-top: 4px;
}

.tetris-valo .rateShoppingConfig #rateAdjustment  > label::after, .tetris-valo .rateShoppingConfig #ignoreCompetitorData  > label::after {
	margin-top: 4px;
}

.tetris-valo .rateShoppingConfig .optimized-icon .v-icon {
	color: #009933;
}

.tetris-valo .rateShoppingConfig .independent-icon .v-icon {
	color: #9b2bfc;
}

.tetris-valo .rateShoppingConfig .linked-icon .v-icon {
	color: #fa9e00;
}

.tetris-valo #channelSettingsAddSeason {
	padding-top: 6px;
}

.tetris-valo .competitorlabel .v-checkbox > label {
	margin-left: 0px;
	padding-left: 2px;
}

.tetris-valo .rateAdjustmentLabel {
	text-align: right;
}

.tetris-valo .adjustDayOfWeeklabel {
	padding-top: 1.2em;
}

.tetris-valo .adjustTaxCompent {
	padding-left: 3em;
}

.tetris-valo .competitorTable .v-table-header .v-table-caption-container {
	white-space: normal !important;
	word-break: break-word !important;
	text-align: center;
}

.tetris-valo .competitorTable .v-treetable-treespacer {
	padding-top: 0.2em;
}

.tetris-valo .competitorLabelBold {
	font-weight: bold;
	padding-top: 0.4em;
}

.tetris-valo .productComponentsLayout {
	margin-top: 10px;
}

.tetris-valo .channelLabelBold {
	font-weight: bold;
	padding-top: 6px;
}

.tetris-valo .competitorHeaderLabelBold {
	font-weight: bold;
	padding-top: 6px;
}

.tetris-valo .v-tabsheet-tabitemcell-competitorMappingTabAlignment {
	padding-left: 15px;
}

.tetris-valo .day-of-week-checkboxes > .v-checkbox:first-child, .tetris-valo .day-of-week-checkboxes > .v-checkbox:last-child {
	margin: 0px;
	padding-right: 10px;
	vertical-align: bottom;
}

.tetris-valo .add-button .v-icon {
	padding-left: 7px;
}

.tetris-valo .optimized-icon .v-icon {
	color: #009933;
}

.tetris-valo .independent-icon .v-icon {
	color: #9b2bfc;
}

.tetris-valo .linked-icon .v-icon {
	color: #fa9e00;
}

.tetris-valo .bg-row-alternate-blue {
	background-color: #F0F8FF;
}

.tetris-valo .bg-row-alternate-none {
	background-color: #FFFFFF;
}

.tetris-valo .bg-textfield-blue {
	color: inherit;
	background-color: #F0F8FF;
	text-align: center !important;
}

.tetris-valo .bg-textfield-border-none {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .bg-textfield-none {
	background-color: #FFFFFF;
	color: inherit;
	text-align: center !important;
}

.tetris-valo .dcmpcRoomClassArrowAlignment .v-treetable-treespacer {
	margin-top: 10px !important;
}

.tetris-valo .rss-competitors + .v-popupbutton-popup {
	top: auto !important;
	bottom: 100% !important;
	margin-bottom: 5px;
	z-index: 20000 !important;
	position: absolute !important;
}

.tetris-valo .inventoryHistoryReport .tetrisTwinColFilterSelect .v-csslayout {
	padding-top: 0;
}

.tetris-valo .ratePlanProduction .tetrisTwinColFilterSelect .v-csslayout {
	padding-top: 0;
}

.tetris-valo .restrictionLevel .v-treetable-treespacer {
	padding-top: 3px;
}

.tetris-valo .tetris-form-horizontal-layout-columns .v-spacing {
	width: 35px;
}

.tetris-valo #competitorLayout {
	padding-left: 55px;
}

.tetris-valo .property-groups #addButton {
	height: auto;
}

.tetris-valo .business-pricing-rules .v-gridlayout-cellborders {
	border: solid #d1d1d1 1px;
}

.tetris-valo .business-pricing-rules .v-gridlayout-cellborders .v-gridlayout-slot {
	box-shadow: inset 0px 0px 0px 1px #d1d1d1;
}

.tetris-valo .business-pricing-rules .v-gridlayout-cellborders .v-gridlayout-slot .v-widget {
	margin: 6px;
}

.tetris-valo .business-pricing-rules .titleBox {
	background-color: #d1d1d1;
	margin: 0px !important;
}

.tetris-valo .business-pricing-rules .independent-icon .v-icon {
	color: #9b2bfc;
}

.tetris-valo .continuous-pricing-grid .v-grid-column-header-content {
	text-align: center;
}

.tetris-valo .continuous-pricing-grid #cPPricingManagementGrid {
	background-color: #909090;
}

.tetris-valo .continuous-pricing-grid #cPPricingManagementGrid .special-events-star {
	margin-left: -6px;
}

.tetris-valo .extendedStay-legend .pending {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .extendedStay-legend .pending:before {
	color: red;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .extendedStay-legend .pendingFont {
	color: red;
	font-style: italic;
}

.tetris-valo .extendedStay-legend .legendItem {
	padding-left: 15px;
	display: inline;
}

.tetris-valo .extendedStay-competitor-legend .competitorIcon {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .extendedStay-competitor-legend .competitorIcon:before {
	color: #C4D4DA;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .extendedStay-competitor-legend .legendItem {
	padding-left: 15px;
	display: inline;
}

.tetris-valo .specialEventIcon {
	display: inline;
	color: #909090;
	font-family: FontAwesome;
	icon: "\f005";
	content: "\f005";
	padding-right: 5px;
	text-shadow: 0px 0px 1px #000000;
}

.tetris-valo .configuration-view .tetris-image-button {
	padding: 0;
}

.tetris-valo .decision-configuration-view .v-checkbox > label {
	margin-right: 1px;
	margin-left: 1px;
}

.tetris-valo .decision-configuration-scroll {
	overflow-y: hidden !important;
	overflow-x: auto !important;
}

.tetris-valo .whatif .v-grid-header .v-grid-row .v-grid-cell {
	height: 38px;
}

.tetris-valo .whatif .v-grid-body .v-grid-row .v-grid-cell {
	height: 36px;
}

.tetris-valo .whatif .whatIfSummaryTitle {
	font-size: 16px;
	font-weight: bold;
}

.tetris-valo .whatif .summaryTitle {
	display: block;
	font-size: 16px;
}

.tetris-valo .whatif .whatIfSummary.transparent {
	width: 210px;
	font-size: 18px;
	padding: 10px;
	background-color: #eef8ec;
	border: 1px solid #7fcd79;
}

.tetris-valo .whatif .whatIfSummary.transparent .increaseIndicator, .tetris-valo .whatif .whatIfSummary.transparent .decreaseIndicator {
	float: right;
	font-size: 20px;
}

.tetris-valo .whatif .whatIfSummary.transparent.negativeValue {
	border: 1px solid #A3251B !important;
}

.tetris-valo .whatif .negativeValue {
	color: #CC0000;
}

.tetris-valo .whatif .positiveValue {
	color: #009933;
}

.tetris-valo .whatif .summaryValue {
	display: block;
	text-align: left;
}

.tetris-valo .whatif-grid .footer-right {
	text-align: right;
}

.tetris-valo .whatif-grid .wrapColumnHeaderText {
	word-wrap: normal !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.tetris-valo .whatif-grid .highlightChange {
	background: #a4c73c !important;
}

.tetris-valo .whatif-grid .highlightNegativeChange {
	text-align: right;
	padding-right: 3px;
}

.tetris-valo .whatif-grid .highlightNegativeChange:after {
	color: #CC0000;
	font-family: FontAwesome;
	content: "\f063";
	padding-left: 3px;
	vertical-align: middle;
}

.tetris-valo .whatif-grid .highlightPositiveChange {
	text-align: right;
	padding-right: 3px;
}

.tetris-valo .whatif-grid .highlightPositiveChange:after {
	color: #009933;
	font-family: FontAwesome;
	content: "\f062";
	padding-left: 3px;
	vertical-align: middle;
}

.tetris-valo .whatif-grid .highlightStringChange {
	background-color: #eef8ec !important;
	border: 1px solid #7fcd79 !important;
}

.tetris-valo .simplified-whatif-grid {
	background-color: #fff;
}

.tetris-valo .simplified-whatif-grid .footer-right {
	text-align: left !important;
}

.tetris-valo .simplified-whatif-grid .v-grid-cell {
	border-right: 1px solid #D7D7D7 !important;
	text-align: left !important;
}

.tetris-valo .simplified-whatif-grid .v-grid-header .wrapColumnHeaderText {
	word-wrap: normal !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.tetris-valo .simplified-whatif-grid .fontSize16 {
	font-size: 16px;
}

.tetris-valo .simplified-whatif-grid .highlightChange {
	background: #a4c73c !important;
	color: #333333;
}

.tetris-valo .simplified-whatif-grid .highlightNegativeChange {
	padding-right: 3px;
	color: #333333;
}

.tetris-valo .simplified-whatif-grid .highlightNegativeChange:after {
	font-family: FontAwesome;
	color: #CC0000;
	content: "\f063";
	padding-left: 3px;
	vertical-align: middle;
}

.tetris-valo .simplified-whatif-grid .highlightPositiveChange {
	color: #333333;
	padding-right: 3px;
}

.tetris-valo .simplified-whatif-grid .highlightPositiveChange:after {
	font-family: FontAwesome;
	color: #009933;
	content: "\f062";
	padding-left: 3px;
	vertical-align: middle;
}

.tetris-valo .simplified-whatif-grid .highlightStringChange {
	background-color: #eef8ec !important;
	color: #333333;
}

.tetris-valo .pricing-whatif .v-grid-header {
	color: white;
}

.tetris-valo .functionspace-configuration-functionrooms .buttonBarPadRight {
	padding-right: 25px;
}

.tetris-valo .function-space-package-config .function-space-config-package-button-bar {
	display: inline-flex;
	vertical-align: bottom;
}

.tetris-valo .function-space-package-config .v-grid-column-header-content {
	text-align: center;
	white-space: pre;
	line-height: initial;
}

.tetris-valo .function-space-package-config .right-solid-border {
	border-right: 1px solid #dadada !important;
}

.tetris-valo .function-space-package-config .text-field-center-align {
	padding: inherit;
}

.tetris-valo .function-space-package-config .text-field-center-align .v-textfield {
	border: none;
	text-align: center;
}

.tetris-valo .function-space-package-config .text-field-left-align {
	padding: inherit;
}

.tetris-valo .function-space-package-config .text-field-left-align .v-textfield {
	border: none;
	text-align: left;
}

.tetris-valo .function-space-package-config .checkbox-align {
	padding-top: 2px;
	text-align: center;
	padding: inherit;
}

.tetris-valo .function-space-package-config .combo-box-align {
	text-align: center;
	padding: inherit;
}

.tetris-valo .function-space-package-config .combo-box-align .v-filterselect-input {
	border: none;
}

.tetris-valo .function-space-package-config .label-field-align {
	text-align: center;
	background-color: #D7D7D7;
}

.tetris-valo .function-space-package-config .label-field-align .v-label {
	text-align: center;
}

.tetris-valo .function-space-package-config .disabled-center-align {
	padding: inherit;
	text-align: center;
	background-color: #D7D7D7;
}

.tetris-valo .function-space-package-config .action-row-layout {
	padding-bottom: 2px;
}

.tetris-valo .function-space-package-elements-config #addPackageTypeButton {
	margin-top: -4px;
}

.tetris-valo .function-space-package-elements-config .package-type-button {
	padding-left: 12px;
	margin-left: 15px;
}

.tetris-valo .function-space-package-elements-config .package-type-button.v-icon, .tetris-valo .function-space-package-elements-config .package-type-button .v-icon {
	color: #999999;
}

.tetris-valo .function-space-package-elements-config .package-type-style {
	background-color: #F2F2F2;
	height: 200px;
}

.tetris-valo .function-space-package-elements-config .package-type-all-packages-layout {
	text-align: center;
	background-color: #F2F2F2;
}

.tetris-valo .function-space-package-elements-config .package-type-all-packages-layout span + span {
	margin-left: 10px;
}

.tetris-valo .function-space-package-elements-config .package-title {
	text-align: center;
	font-weight: bold;
}

.tetris-valo .function-space-package-elements-config .adjust-header-field {
	margin-top: 20px;
}

.tetris-valo .functionspace-result .v-slot.v-slot-tetris-label-success .systemValue, .tetris-valo .functionspace-result .v-slot.v-slot-tetris-label-success .userAdjustedValue {
	display: inline !important;
	margin: 5px;
}

.tetris-valo .functionspace-result .v-slot.v-slot-tetris-label-success .systemValue .v-button-caption, .tetris-valo .functionspace-result .v-slot.v-slot-tetris-label-success .userAdjustedValue .v-button-caption {
	color: white;
	text-decoration: none;
}

.tetris-valo .functionspace-result .v-slot.v-slot-tetris-label-success .systemValue:before, .tetris-valo .functionspace-result .v-slot.v-slot-tetris-label-success .userAdjustedValue:before {
	color: white;
}

.tetris-valo .functionspace-result .rateSeparator {
	border: 1px solid #999999;
	margin-right: 5px;
}

.tetris-valo .functionspace-userAdjustment-cell {
	float: right;
}

.tetris-valo .costTab .costLayoutRemoveErrorCellGap td.v-formlayout-errorcell {
	display: none;
}

.tetris-valo .functionSpace-userAdjustment .v-slot {
	float: right;
}

.tetris-valo .functionSpace-userAdjustment .systemValue {
	display: block !important;
	text-align: right !important;
}

.tetris-valo .functionSpace-userAdjustment .systemValue:before {
	color: #009933;
	font-family: FontAwesome;
	font-size: 14px;
	content: "\f108";
}

.tetris-valo .functionSpace-userAdjustment .userAdjustedValue {
	display: block !important;
	text-align: right !important;
}

.tetris-valo .functionSpace-userAdjustment .userAdjustedValue:before {
	color: #009933;
	font-family: FontAwesome;
	font-size: 14px;
	content: "\f007";
	display: inline !important;
}

.tetris-valo .result-code-mar-label-warning {
	background-color: #CC6600;
}

.tetris-valo .result-code-ceiling-label-warning {
	background-color: #759e7b;
}

.tetris-valo .result-code-rooms-revenue-not-profitable-label-warning {
	background-color: #953f2c;
}

.tetris-valo .result-code-rate-adjusted-min-profit-warning {
	background-color: #5791a0;
}

.tetris-valo .result-code-rate-not-following-price-ranking-warning {
	background-color: #8860C4;
}

.tetris-valo .result-code-optimal-rate-doesnt-satisfy-floor-ceil-constraints {
	background-color: #ffc266;
}

.tetris-valo .roomTypeTokenField, .tetris-valo .roomTypeTokenField .v-panel {
	height: 50px !important;
}

.tetris-valo .guestRoomTab .physicalCapacity {
	color: #B46008;
	font-weight: bold;
}

.tetris-valo .guestRoomTab .availableCapacity {
	color: #41B375;
	font-weight: bold;
}

.tetris-valo .roomTypeTab .physicalCapacity {
	color: #B46008;
	font-weight: bold;
}

.tetris-valo .roomTypeTab .availableCapacity {
	color: #41B375;
	font-weight: bold;
}

.tetris-valo .roomTypeTab .finalPrice {
	color: #9999ff;
	font-weight: bold;
}

.tetris-valo .v-slot-roomType-legend {
	margin-left: -15px;
}

.tetris-valo .roomType-legend .availableCapacity-legend {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .roomType-legend .availableCapacity-legend:before {
	color: #41B375;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .roomType-legend .physicalCapacity-legend {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .roomType-legend .physicalCapacity-legend:before {
	color: #B46008;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .roomType-legend .finalPrice-legend {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .roomType-legend .finalPrice-legend:before {
	color: #9999ff;
	font-family: FontAwesome;
	content: "\f0c8";
	padding-right: 5px;
}

.tetris-valo .roomType-legend .specialEvent-legend {
	display: inline;
	padding-left: 15px;
}

.tetris-valo .roomType-legend .specialEvent-legend:before {
	color: #909090;
	font-family: FontAwesome;
	content: "\f005";
	padding-right: 5px;
}

.tetris-valo .function-space-arrival-date-calendar-selector .v-verticallayout .v-slot-tetris-day-selector .v-customcomponent-tetris-day-selector {
	width: 250px !important;
}

.tetris-valo .functionspace-evaluation .functionspace-tab .functionRoomTokenField .v-panel {
	height: 70px !important;
}

.tetris-valo .functionspace-evaluation .functionspace-tab .functionRoomTokenField .v-panel-content .v-csslayout .v-filterselect-prompt {
	width: 165px;
}

.tetris-valo .functionspace-evaluation .functionspace-tab .functionSpaceRoomHeight {
	height: 90px !important;
}

.tetris-valo .functionspace-evaluation .functionspace-tab .functionSpaceRoomHeightSpanish {
	height: 130px !important;
}

.tetris-valo .functionspace-evaluation .functionspace-tab .v-caption-functionspace-bold {
	font: bold;
}

.tetris-valo .functionspace-evaluation .functionspace-tab .v-table-row.v-table-row-overlapping, .tetris-valo .functionspace-evaluation .functionspace-tab .v-table-row-odd.v-table-row-overlapping {
	background: #FFDDE1;
}

.tetris-valo .functionspace-evaluation .heat-map .v-calendar-day-number {
	display: block;
	text-align: center;
	padding-right: 0px;
	font-weight: bold;
	font-size: 11px;
	color: black;
	border: none;
}

.tetris-valo .functionspace-evaluation .heat-map .v-calendar-bottom-spacer-empty {
	display: none;
}

.tetris-valo .functionspace-evaluation .date-out-of-range .v-calendar-day-number {
	opacity: 0.2;
	filter: alpha(opacity = 20);
}

.tetris-valo .functionspace-evaluation .date-out-of-range .v-calendar-day-number:hover {
	cursor: default;
	opacity: 0.2;
	filter: alpha(opacity = 20);
}

.tetris-valo .functionspace-evaluation .low {
	background-color: #CDE3EC;
}

.tetris-valo .functionspace-evaluation .medium {
	background-color: #F5DEB3;
}

.tetris-valo .functionspace-evaluation .high {
	background-color: #F5C8C9;
}

.tetris-valo .functionspace-evaluation .one {
	background-color: #2A44FD;
}

.tetris-valo .functionspace-evaluation .two {
	background-color: #3794FE;
}

.tetris-valo .functionspace-evaluation .three {
	background-color: #00FFFF;
}

.tetris-valo .functionspace-evaluation .four {
	background-color: #70FFA9;
}

.tetris-valo .functionspace-evaluation .five {
	background-color: #A7FF68;
}

.tetris-valo .functionspace-evaluation .six {
	background-color: #E4FF33;
}

.tetris-valo .functionspace-evaluation .seven {
	background-color: #F89B00;
}

.tetris-valo .functionspace-evaluation .eight {
	background-color: #FF0000;
}

.tetris-valo .function-space-evaluation-trash {
	background-color: white !important;
	font-size: 18px;
}

.tetris-valo #roomDisplacementTable .v-treetable-treespacer {
	margin-top: 12px;
}

.tetris-valo .groupPricingEvaluationTable {
	overflow: auto;
}

.tetris-valo .function-space-evaluation-package .package-name-combo-box-align {
	text-align: center;
	padding-left: 0px;
}

.tetris-valo .function-space-evaluation-package .package-category-align {
	padding-left: 20px;
}

.tetris-valo .function-space-evaluation-package .package-dos-text-align {
	text-align: center;
	border-right: 1px solid #F2F2F2;
	padding-left: 0px;
}

.tetris-valo .function-space-evaluation-package .v-grid-column-header-content {
	text-align: center;
	white-space: pre-wrap;
	line-height: initial;
}

.tetris-valo .function-space-evaluation-package .package-info-label {
	text-align: right;
	font-style: italic;
}

.tetris-valo .function-space-evaluation-package .package-commission-text-align {
	padding-left: 0px;
	text-align: center;
}

.tetris-valo .installation .tetris-image-button {
	padding: 0;
}

.tetris-valo #importOxiPackagePopup *.last-import-header {
	font-size: 16px;
	font-weight: 400;
}

.tetris-valo #importOxiPackagePopup *.last-import-data {
	font-size: 18px;
	font-weight: 600;
}

.tetris-valo #importOxiPackagePopup *.validation-grid-data {
	font-size: 12px;
	word-wrap: break-word;
	white-space: normal;
	line-height: 19px;
}

.tetris-valo #importOxiPackagePopup *.date-format-input-prompt {
	font-size: 12px;
	color: #999999;
}

.tetris-valo #nameExcelLayout {
	padding-right: 30px;
}

.tetris-valo #groupMasterBookingPopup *.v-caption-tetris-ellipsis {
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	overflow: hidden !important;
}

.tetris-valo .automn-failed-link {
	padding-left: 0;
	color: #d94560;
}

.tetris-valo .data-extraction-view .tetrisTwinColFilterSelect .v-csslayout {
	padding-top: 0;
}

.tetris-valo .auth-group-list-view #addButton {
	height: auto;
}

.tetris-valo .auth-group-create-edit-view #propertySelector .tetrisTwinColFilterSelectV8 {
	padding-top: 25px !important;
}

.tetris-valo .jasper-descripancies .v-formlayout-captioncell {
	vertical-align: middle;
}

.tetris-valo #installationStatusAddPropertiesWindow .tetris-progress-bar {
	margin-top: 4px;
}

.tetris-valo .latest-file-message {
	color: red;
}

.tetris-valo .total-properties-label {
	font-weight: bold;
}

.tetris-valo .srp-mapping-override .v-button-link {
	padding: 0;
}

.tetris-valo .v-calendar-tetris-heatmap .v-calendar-month td {
	border-color: #FFFFFF !important;
}

.tetris-valo .heatmap-month-borders .heatmap-cell {
	background: #FFFFFF;
	width: 102px;
}

.tetris-valo .heatmap-month-borders .heatmap-cell:hover {
	animation: cell-highlight 0.4s;
}

.tetris-valo .heatmap-legend div {
	width: 12px;
	height: 12px;
	float: left;
	margin-top: 3px;
	margin-right: 3px;
}

.tetris-valo .heatmap-legend span {
	float: left;
	width: 55px;
	font-size: 11px;
}

.tetris-valo .heatmap-nodata {
	background-color: #e3e0e2;
	cursor: default;
}

.tetris-valo .heatmap-pd-color-0 {
	background-color: #FF0000;
}

.tetris-valo .heatmap-pd-color-1 {
	background-color: #F89B00;
}

.tetris-valo .heatmap-pd-color-2 {
	background-color: #FFFF00;
}

.tetris-valo .heatmap-pd-color-3 {
	background-color: #CBFF46;
}

.tetris-valo .heatmap-pd-color-4 {
	background-color: #A7FF68;
}

.tetris-valo .heatmap-pd-color-5 {
	background-color: #70FFA9;
}

.tetris-valo .heatmap-pd-color-6 {
	background-color: #55FFE0;
}

.tetris-valo .heatmap-pd-color-7 {
	background-color: #49DEFF;
}

.tetris-valo .heatmap-pd-color-8 {
	background-color: #3794FE;
}

.tetris-valo .heatmap-pd-color-9 {
	background-color: #2A44FD;
}

.tetris-valo .heatmap-of-color-0, .tetris-valo td.v-grid-cell.heatmap-of-color-0 {
	background-color: #FF0000;
}

.tetris-valo .heatmap-of-color-1, .tetris-valo td.v-grid-cell.heatmap-of-color-1 {
	background-color: #F89B00;
}

.tetris-valo .heatmap-of-color-2, .tetris-valo td.v-grid-cell.heatmap-of-color-2 {
	background-color: #E4FF33;
}

.tetris-valo .heatmap-of-color-3, .tetris-valo td.v-grid-cell.heatmap-of-color-3 {
	background-color: #A7FF68;
}

.tetris-valo .heatmap-of-color-4, .tetris-valo td.v-grid-cell.heatmap-of-color-4 {
	background-color: #70FFA9;
}

.tetris-valo .heatmap-of-color-5, .tetris-valo td.v-grid-cell.heatmap-of-color-5 {
	background-color: #00FFFF;
}

.tetris-valo .heatmap-of-color-6, .tetris-valo td.v-grid-cell.heatmap-of-color-6 {
	background-color: #3794FE;
}

.tetris-valo .heatmap-of-color-7, .tetris-valo td.v-grid-cell.heatmap-of-color-7 {
	background-color: #2A44FD;
}

.tetris-valo .heat-map-navigator-button .v-icon {
	font-size: 14px !important;
}

.tetris-valo .heat-map-navigator-button .v-button-wrap {
	margin-left: -11px;
}

.tetris-valo .tetris-calendar .v-calendar-month-day-today {
	background-color: inherit;
}

.tetris-valo .tetris-calendar .v-calendar-header-month {
	border-bottom-style: none;
}

.tetris-valo .tetris-calendar .v-calendar-header-month td:first-child {
	padding-left: 0 !important;
}

.tetris-valo .tetris-calendar .v-calendar-day-number {
	font-size: 15px;
	font-weight: bold;
	color: #726262;
	border-top: none;
}

.tetris-valo .tetris-calendar .v-calendar-month {
	border-collapse: collapse;
}

.tetris-valo .tetris-calendar .v-calendar-month .v-calendar-event {
	cursor: pointer;
}

.tetris-valo .tetris-calendar .v-calendar-month td {
	vertical-align: top;
	border-style: solid;
	border-width: 1px;
	border-color: #BCBCBC;
}

.tetris-valo .tetris-calendar .v-calendar-month-day {
	border-style: none;
}

.tetris-valo .tetris-calendar .disabled-cell {
	background-color: #F3F0F2;
}

.tetris-valo .tetris-calendar .disabled-cell .v-calendar-day-number {
	visibility: hidden;
}

.tetris-valo .tetris-calendar .disabled-cell > .v-calendar-month-day {
	cursor: default !important;
}

.tetris-valo .tetris-calendar .disabled-cell > .systemDate {
	border-style: none;
}

.tetris-valo .tetris-calendar .systemDate {
	border-color: #FF6F21;
	border-width: 2px;
	border-style: solid;
}

.tetris-valo .tetris-calendar .v-calendar-event-metric-all-day {
	background: none;
	color: #453535;
	cursor: default;
	text-decoration: none;
}

.tetris-valo .tetris-calendar-hide-week-numbers .v-calendar-week-numbers {
	width: 0;
	display: block;
	overflow: hidden;
	border-right: none;
}

.tetris-valo .v-calendar-week-number:before {
	content: "#";
}

.tetris-valo .v-calendar-week-number {
	width: 30px;
}

.tetris-valo .v-calendar-header-day {
	line-height: 16px;
	text-align: center;
	padding: 0;
	font-size: 12px;
}

.tetris-valo .tetris-heatmap {
	cursor: pointer;
}

.tetris-valo .tetris-heatmap .v-calendar-day-number {
	display: none;
}

.tetris-valo .tetris-heatmap .v-calendar-header-month td:first-child {
	padding-left: 0;
}

.tetris-valo .tetris-heatmap .v-calendar-month td {
	border-width: 1px;
}

.tetris-valo .tetris-heatmap-navigator {
	text-align: center;
}

.tetris-valo .tetris-heatmap-navigator .v-calendar-bottom-spacer-empty {
	width: 19px !important;
	margin: 0;
}

.tetris-valo .tetris-heatmap-navigator .v-slot-heatMapMonth {
	background-color: #E4E4E4;
	height: 15px;
}

.tetris-valo .tetris-heatmap-navigator .v-slot-bar-chart {
	background-color: #F3F0F2;
	height: 20px;
}

.tetris-valo .tetris-heatmap-navigator .heatMapMonth {
	height: auto;
	padding: 0;
	line-height: 14px;
	background: transparent;
	text-decoration: none;
	font-weight: normal;
}

.tetris-valo .tetris-heatmap-navigator .heatMapMonth .v-button-caption {
	text-decoration: none;
	color: #000;
	cursor: pointer;
	font-size: 11px;
}

.tetris-valo .nouisliderwidget {
	margin: 7px 7px 24px;
}

.tetris-valo .nouisliderwidget .noUi-pips-horizontal {
	height: 23px;
	color: black;
	font-weight: 400;
}

.tetris-valo .nouisliderwidget.noUi-horizontal {
	height: 8px;
}

.tetris-valo .nouisliderwidget.noUi-horizontal .noUi-handle {
	height: 17px;
	width: 17px;
	left: -9px;
}

.tetris-valo .nouisliderwidget.noUi-horizontal .noUi-handle::before, .tetris-valo .nouisliderwidget.noUi-horizontal .noUi-handle::after {
	height: 11px;
	top: 2px;
}

.tetris-valo .nouisliderwidget.noUi-horizontal .noUi-handle::before {
	left: 6px;
}

.tetris-valo .nouisliderwidget.noUi-horizontal .noUi-handle::after {
	left: 9px;
}

.tetris-valo .nouisliderwidget .noUi-marker-normal {
	display: none;
}

.tetris-valo .nouisliderwidget .noUi-marker-large {
	background: black;
}

.tetris-valo .nouisliderwidget .noUi-marker-horizontal.noUi-marker-large {
	height: 5px;
	top: 5px;
}

.tetris-valo .nouisliderwidget .noUi-value-large {
	padding-top: 0;
	font-size: 12px;
	width: 20px;
	margin-left: -10px;
}

.tetris-valo .nouisliderwidget.noUi-state-drag, .tetris-valo .nouisliderwidget .noUi-draggable, .tetris-valo .nouisliderwidget .noUi-handle {
	cursor: ew-resize;
}

.tetris-valo .nouisliderwidget .stacked-lower {
	width: 10px !important;
}

.tetris-valo .nouisliderwidget .stacked-upper {
	width: 10px !important;
	margin-left: 10px;
}

.tetris-valo .v-slider {
	border-top: 1px solid #9a9c9e;
	border-bottom: 1px solid #bdbfc1;
	margin: 4px 0;
}

.tetris-valo .v-slider-base {
	height: 1px;
	background: #e0e2e2;
	border-top: 1px solid #adb0b1;
	border-left: 1px solid #a0a3a6;
	border-right: 1px solid #a0a3a6;
	margin: 0px;
}

.tetris-valo .v-slider-handle {
	background: transparent;
	background-image: url(common/component/sliders/img/knob.png);/** sprite-ref: verticals */
	width: 10px;
	height: 10px;
}

.tetris-valo .v-slider-handle-active {
	background-image: url(common/component/sliders/img/knob-pressed.png);/** sprite-ref: verticals */
}

.tetris-valo .v-slider-vertical {
	width: 2px;
	margin: 0 5px;
	border: none;
	border-left: 1px solid #9a9c9e;
	border-right: 1px solid #bdbfc1;
}

.tetris-valo .v-slider-vertical .v-slider-base {
	width: 2px;
	border-left: 1px solid #adb0b1;
	border-right: none;
	border-top: 1px solid #adb0b1;
	border-bottom: 1px solid #adb0b1;
}

.tetris-valo .v-slider-vertical .v-slider-handle {
	width: 10px;
	height: 10px;
}

.tetris-valo .slider-adjustment {
	margin-top: 24px;
	margin-right: 30px;
	margin-left: 89px;
}

.tetris-valo .ui-rangeSlider {
	height: 22px;
}

.tetris-valo .ui-rangeSlider .ui-rangeSlider-innerBar {
	height: 22px;
	margin: 3px 6px;
	background: #DDD;
}

.tetris-valo .ui-rangeSlider .ui-rangeSlider-handle {
	width: 6px;
	height: 22px;
	background: #AAA;
	background: rgba(100, 100, 100, 0.3);
	cursor: col-resize;
}

.tetris-valo .ui-rangeSlider .ui-rangeSlider-bar {
	margin: 1px 0;
	background: #CCC;
	background: rgba(100, 100, 150, 0.2);
	height: 22px;
	cursor: grab;
	cursor: -moz-grab;
}

.tetris-valo .ui-rangeSlider .ui-rangeSlider-bar.ui-draggable-dragging {
	cursor: -moz-grabbing;
	cursor: grabbing;
}

.tetris-valo .ui-rangeSlider-arrow {
	height: 16px;
	margin: 2px 0;
	width: 16px;
	background-repeat: no-repeat;
}

.tetris-valo .ui-rangeSlider-arrow.ui-rangeSlider-leftArrow {
	background-image: url(common/component/sliders/icons-classic/resultset_previous.png);
	background-position: center left;
}

.tetris-valo .ui-rangeSlider-arrow.ui-rangeSlider-rightArrow {
	background-image: url(common/component/sliders/icons-classic/resultset_next.png);
	background-position: center right;
}

.tetris-valo .ui-rangeSlider-arrow-inner {
	display: none;
}

.tetris-valo .ui-rangeSlider-container {
	height: 22px;
}

.tetris-valo .ui-rangeSlider-withArrows .ui-rangeSlider-container {
	margin: 0 11px;
}

.tetris-valo .ui-rangeSlider-noArrow .ui-rangeSlider-container {
	margin: 0;
}

.tetris-valo .ui-rangeSlider-label-inner {
	display: none;
}

.tetris-valo input.ui-editRangeSlider-inputValue {
	width: 3em;
	vertical-align: middle;
	text-align: center;
}

.tetris-valo .ui-rangeSlider-noArrow .ui-rangeSlider-container {
	-moz-border-radius: 4px;
	border-radius: 4px;
	border-left: solid 1px #515862;
	border-right: solid 1px #515862;
	-webkit-box-shadow: inset 0 4px 6px -2px RGBA(0, 0, 0, 0.5);
	-moz-box-shadow: inset 0 4px 6px -2px RGBA(0, 0, 0, 0.5);
	box-shadow: inset 0 4px 6px -2px RGBA(0, 0, 0, 0.5);
}

.tetris-valo .ui-rangeSlider-container {
	height: 22px;
}

.tetris-valo .ui-rangeSlider-arrow {
	width: 14px;
	height: 22px;
	cursor: pointer;
}

.tetris-valo .ui-rangeSlider-arrow-inner {
	position: absolute;
	top: 50%;
	border: 10px solid transparent;
	width: 0;
	height: 0;
	margin-top: -10px;
}

.tetris-valo .ui-rangeSlider-leftArrow .ui-rangeSlider-arrow-inner {
	border-right: 10px solid #a4a8b7;
	left: 0;
	margin-left: -8px;
}

.tetris-valo .ui-rangeSlider-leftArrow:hover .ui-rangeSlider-arrow-inner {
	border-right: 10px solid #b3b6c2;
}

.tetris-valo .ui-rangeSlider-rightArrow .ui-rangeSlider-arrow-inner {
	border-left: 10px solid #a4a8b7;
	right: 0;
	margin-right: -8px;
}

.tetris-valo .ui-rangeSlider-rightArrow:hover .ui-rangeSlider-arrow-inner {
	border-left: 10px solid #b3b6c2;
}

.tetris-valo .ui-rangeSlider-innerBar {
	width: 110%;
	height: 100%;
	left: -10px;
}

.tetris-valo .ui-rangeSlider-bar {
	height: 29px;
	margin: 1px 0;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor: grab;
	cursor: -moz-grab;
	-webkit-box-shadow: inset 0 2px 6px RGBA(0, 0, 0, 0.5);
	-moz-box-shadow: inset 0 2px 6px RGBA(0, 0, 0, 0.5);
	box-shadow: inset 0 2px 6px RGBA(0, 0, 0, 0.5);
}

.tetris-valo .ui-rangeSlider-handle {
	width: 10px;
	height: 30px;
	background: transparent;
	cursor: col-resize;
}

.tetris-valo .ui-rangeSlider-label {
	margin: 0 2px 2px;
	height: 28px;
	background-image: url(common/component/sliders/icons-classic/label.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	white-space: nowrap;
	bottom: 20px;
	padding: 0 6px 0;
	cursor: col-resize;
	color: white;
	font-size: 15px;
}

.tetris-valo .ui-editRangeSlider-inputValue {
	width: 2em;
	text-align: center;
	font-size: 15px;
}

.tetris-valo .ui-rangeSlider .ui-ruler-scale {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.tetris-valo .ui-rangeSlider .ui-ruler-scale0 .ui-ruler-tick-inner {
	color: white;
	margin-top: 1px;
	border-left: 1px solid white;
	height: 27px;
	padding-left: 2px;
	position: relative;
}

.tetris-valo .ui-rangeSlider .ui-ruler-scale0 .ui-ruler-tick-label {
	position: absolute;
	bottom: 6px;
}

.tetris-valo .ui-rangeSlider .ui-ruler-scale1 .ui-ruler-tick-inner {
	border-left: 1px solid white;
	margin-top: 25px;
	height: 5px;
}

.tetris-valo .two-month-calendar tr {
	background-color: #ffffff !important;
}

.tetris-valo .two-month-calendar .v-calendar-header-day {
	background: #FFFFFF;
	color: #333333;
}

.tetris-valo .two-month-calendar .v-calendar-month {
	border-collapse: collapse;
	border-spacing: 0;
	border-color: #ffffff;
	background-color: #E3E3E3;
}

.tetris-valo .two-month-calendar .v-calendar-month td {
	border-width: 1px;
	border-color: #B7BABC;
	background-color: white;
	outline-style: solid;
	outline-width: 2px;
	outline-color: transparent;
}

.tetris-valo .two-month-calendar .v-calendar-month td:hover {
	animation: cell-highlight 0.4s;
}

.tetris-valo .two-month-calendar .v-calendar-month td .v-calendar-month-day {
	cursor: pointer;
	position: relative;
	display: table-cell;
	vertical-align: top;
}

.tetris-valo .two-month-calendar .v-calendar-month td.disabled-cell {
	background-color: #ECEBEC;
	opacity: 0.5;
	animation: none;
}

.tetris-valo .two-month-calendar .v-calendar-month td.disabled-cell div > div.v-calendar-event {
	display: none;
}

.tetris-valo .two-month-calendar .v-calendar-month td.past-date {
	background-color: #CCCCCC;
}

.tetris-valo .two-month-calendar .v-calendar-month td.dimmed {
	opacity: 0.3;
	animation: none;
}

.tetris-valo .two-month-calendar .v-calendar-month td.no-data {
	opacity: 0.5;
	background-color: #ECEBEC;
	animation: none;
}

.tetris-valo .two-month-calendar .v-calendar-month td .v-calendar-event-all-day {
	background: none;
	color: black;
	font-weight: 400;
	text-decoration: none;
}

.tetris-valo .two-month-calendar .v-calendar-month td .v-calendar-event-all-day.rd-event {
	font-weight: bold;
}

.tetris-valo .two-month-calendar .v-calendar-month td .v-calendar-event-all-day .rate-change-arrow {
	float: right;
	padding-right: 2px;
}

.tetris-valo .two-month-calendar .v-calendar-month td .v-calendar-event-all-day.override-marker-container {
	position: absolute;
	top: 2px;
	padding-top: 2px;
	left: 0;
	height: 19px;
}

.tetris-valo .two-month-calendar .v-calendar-month td .v-calendar-event-all-day.override-marker-container .generic-marker {
	font-size: 12px;
	float: left;
	padding-right: 3px;
}

.tetris-valo .full-screen {
	height: 100% !important;
}

.tetris-valo .v-slot.v-slot-full-screen {
	height: 750px !important;
}

.tetris-valo .full-screen .v-widget.v-has-width.v-has-height {
	height: 100% !important;
}

.tetris-valo .v-panel-nocaption-dashboard-body {
	border: none !important;
}

.tetris-valo .dashboard-layout-selection {
	border-style: solid;
	border-width: 1px;
	border-color: #898989;
	padding: 10px;
	background-color: #F7F7F7;
	cursor: pointer;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.tetris-valo .dashboard-layout-selection .title {
	font-weight: bold;
}

.tetris-valo .dashboard-layout-selection-selected {
	border-color: #135889;
	border-style: solid;
	border-width: 3px;
}

.tetris-valo .dashboard .dashboard-body {
	background: #ffffff;
}

.tetris-valo .dashboard .dashboard-layout {
	background: none;
}

.tetris-valo .dashboard .dashboard-panel {
	background: #FFFFFF;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.tetris-valo .dashboard .dashboard-panel .filterBtn {
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 55px;
}

.tetris-valo .dashboard .dashboard-panel .refreshBtn {
	position: absolute;
	z-index: 1;
	top: -2px;
	right: 41px;
}

.tetris-valo .dashboard .dashboard-panel .helpBtn {
	position: absolute;
	z-index: 1;
	top: -2px;
	right: 30px;
}

.tetris-valo .dashboard .dashboard-panel .maximizeBtn {
	position: absolute;
	z-index: 1;
	top: -2px;
	right: 10px;
}

.tetris-valo .dashboard .dashboard-panel .v-label {
	font-weight: 400;
}

.tetris-valo .dashboard .v-csslayout {
	padding: 27px 0px 0;
	position: relative;
}

.tetris-valo .dashboard .dashboard-panel > .v-caption {
	font-weight: 600;
	font-size: 13px;
	color: #000000;
	padding: 0 20px;
	line-height: 25px;
	border-bottom: 1px solid #eee;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.tetris-valo .dashboard .v-layout-compact-formlayout .v-formlayout-row > .v-formlayout-errocell, .tetris-valo .dashboard .v-layout-compact-formlayout .v-formlayout-row > .v-formlayout-contentcell, .tetris-valo .dashboard .v-layout-compact-formlayout .v-formlayout-row > .v-formlayout-captioncell {
	padding: 0px;
	height: 18px;
}

.tetris-valo .dashboard .v-layout-compact-formlayout .v-formlayout-row {
	padding: 0px;
}

.tetris-valo .dashboard .v-layout-compact-formlayout .v-formlayout-captioncell {
	font-weight: bold;
}

.tetris-valo .wizard .wizard-text {
	font-size: 18px;
}

.tetris-valo .wizard .v-caption-wizard-text {
	font-size: 12px;
}

.tetris-valo .wizard .warning-banner {
	background-color: #FFFFCC;
	border: 1px solid #CC0000;
}

.tetris-valo .wizard .wizard-progress-bar .v-progressbar-wrapper {
	background: transparent;
	border: none;
	vertical-align: middle;
}

.tetris-valo .wizard .step-caption {
	position: relative;
	display: inline-block;
	padding: 5px 5px 5px;
}

.tetris-valo .wizard .step-caption .v-label {
	width: 95%;
	text-align: left;
	margin-left: 20px;
}

.tetris-valo .wizard .step-caption:not(.first)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0px;
	width: 0;
	height: 0;
	border-left: 15px solid #fafafa;
	border-bottom: 15px inset transparent;
	border-top: 15px inset transparent;
}

.tetris-valo .wizard .step-caption:not(.last)::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 0;
	width: 0;
	height: 0;
	z-index: 2;
}

.tetris-valo .wizard .completed, .tetris-valo .wizard .current {
	background: #95c914;
	color: white;
	font-size: 12px;
}

.tetris-valo .wizard .completed::after, .tetris-valo .wizard .current::after {
	border-left: 15px solid #95c914;
	border-bottom: 15px inset transparent;
	border-top: 15px inset transparent;
}

.tetris-valo .wizard .incomplete {
	background: lightgray;
	font-size: 12px;
}

.tetris-valo .wizard .incomplete::after {
	border-left: 15px solid lightgray;
	border-bottom: 15px inset transparent;
	border-top: 15px inset transparent;
}

.tetris-valo .wizard .v-slot-step-caption:not(.v-slot-first) {
	box-sizing: border-box;
	border-left: 4px solid #fafafa;
}

.tetris-valo .wizard .overBookingType-text-center {
	text-align: center;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-body {
	background-color: #FFFFFF;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-body-border-header {
	border-color: #BCBCBC;
	border-width: 1px;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-body-border-footer {
	border-color: #BCBCBC;
	border-width: 1px;
	border-left-style: solid;
	border-right-style: solid;
	border-top-style: solid;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-bar {
	padding-left: 5px;
	border-color: #BCBCBC;
	border-width: 1px;
	border-style: solid;
	height: 24px;
	background-color: #E4E4E4;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-bar .expand-collapse-button {
	margin-top: -7px;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-bar .expand-collapse-button.v-icon, .tetris-valo .tetris-panelbar .tetris-panelbar-bar .expand-collapse-button .v-icon {
	color: #333332;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-collapsible {
	cursor: pointer;
}

.tetris-valo .tetris-panelbar .tetris-panelbar-title {
	color: #333333 !important;
	font-size: 12px;
	font-weight: 400;
	padding-left: 16px;
	padding-bottom: 2px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.tetris-valo .v-panel {
	border: none;
}

.tetris-valo .panel-border {
	border: 1px solid #D7D7D7 !important;
}

.tetris-valo .ui-slider {
	background: #CDE3EC;
}

.tetris-valo .ui-slider-range {
	background: #F5DEB3;
}

.tetris-valo .ui-slider-horizontal .ui-slider-range {
	height: 1.1em;
}

.tetris-valo .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: 0.7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

.tetris-valo .ui-slider-horizontal a {
	text-decoration: none;
}

.tetris-valo .slider-tip {
	opacity: 1;
	color: #000000;
	font-weight: normal;
	margin-top: -17px;
}

.tetris-valo .dualSliderRightPart {
	float: right;
	height: 100%;
	background: #F5C8C9;
	border-radius: 0 4px 4px 0;
}

.tetris-valo .ui-state-default, .tetris-valo .ui-widget .ui-state-default {
	border: 1px solid #017aaf;
	background: url(common/component/dualSlider/images/skin/btn-bg.png) repeat-x;
	box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.6);
}

.tetris-valo .ui-slider-horizontal {
	height: 0.8em;
}

.tetris-valo .ui-slider-horizontal .ui-slider-handle {
	top: -0.3em;
	margin-left: -0.6em;
}

.tetris-valo .ui-slider .ui-slider-handle {
	position: absolute;
	top: 29px;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}

.tetris-valo .ui-state-default, .tetris-valo .ui-widget-content .ui-state-default, .tetris-valo .ui-widget-header .ui-state-default {
	border: 1px solid #c5dbec;
	background: #dfeffc url(common/component/dualSlider/css/ui-redmond/images/ui-bg_glass_85_dfeffc_1x400.png) 50% 50% repeat-x;
	font-weight: bold;
	color: #2e6e9e;
}

.tetris-valo .v-table {
	color: #000000;
}

.tetris-valo .v-table-caption-container {
	text-align: center;
	font-weight: bold;
	font-size: 11px;
}

.tetris-valo .v-table-caption-container .v-table-header-cell {
	white-space: pre-wrap;
}

.tetris-valo .v-table-row.v-table-row-critical, .tetris-valo .v-table-row-odd.v-table-row-critical {
	background: #ff0000;
	color: #ffffff;
}

.tetris-valo .v-table-row.v-table-row-important, .tetris-valo .v-table-row-odd.v-table-row-important {
	background: #FFB833;
	color: #ffffff;
}

.tetris-valo .v-table .v-selected {
	background: #4d749f;
	text-shadow: #3b5a7a 0 1px 0;
}

.tetris-valo .wordwrap-table .v-table-cell-wrapper {
	white-space: normal;
	overflow: hidden;
}

.tetris-valo .action-layout .edit-button-blue {
	padding-right: 5px;
	margin-top: 2px;
}

.tetris-valo .action-layout .v-slot .v-button {
	padding: 5px;
}

.tetris-valo .two-header-row .v-table-header-wrap, .tetris-valo .two-header-row .v-table-header {
	height: 38px;
}

.tetris-valo .two-header-row .v-table-header-wrap {
	background: transparent repeat-x;
	background-size: 100% 100%;
}

.tetris-valo .two-header-row .v-table-caption-container {
	height: 38px;
	font-size: 11px;
	white-space: pre-wrap;
	padding-top: 2px;
	font-weight: bold;
}

.tetris-valo .two-header-row .v-table-resizer {
	height: 38px;
}

.tetris-valo .two-header-row .v-table-column-selector {
	color: #333333;
	background: #E4E4E4;
}

.tetris-valo .tetris-noPadding td {
	padding: 0 !important;
}

.tetris-valo .v-table-row-odd {
	background: white;
}

.tetris-valo .v-table-row-inner-header-row {
	background: #E4E4E4;
	color: #333333;
	outline: 1px solid #666666;
}

.tetris-valo .v-table-header {
	color: #333333;
	background: #E4E4E4;
}

.tetris-valo .v-table-header .v-table-header-cell {
	color: #333333;
	background: #E4E4E4;
}

.tetris-valo .v-table-header .v-table-header-cell-asc {
	color: #333333;
}

.tetris-valo .v-table-header .v-table-header-cell-desc {
	color: #333333;
}

.tetris-valo .v-table-row-pseudo-header-row {
	background: #E4E4E4;
}

.tetris-valo .v-table-row.v-table-row-highlight-white-with-red-font, .tetris-valo .v-table-row-odd.v-table-row-highlight-white-with-red-font {
	background-color: #ffffff;
	color: #ff0000;
}

.tetris-valo .v-tabsheet-tabcontainer {
	margin-left: 6px;
}

.tetris-valo .v-tabsheet-tabitemcell .v-tabsheet-tabitem .v-caption.v-caption {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
}

.tetris-valo .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 14px;
	border-bottom-color: #009900;
	color: #000000;
	font-weight: 700;
}

.tetris-valo .v-checkbox > label {
	margin-right: 0px;
	margin-left: 13px;
	font-weight: 400;
}

.tetris-valo .v-checkbox-image input[type=checkbox] {
	display: none;
}

.tetris-valo .v-checkbox-image input[type=checkbox] ~ label:before, .tetris-valo .v-checkbox-image input[type=checkbox] ~ label:after {
	display: none;
}

.tetris-valo .v-checkbox-no-padding {
	padding-left: 0px !important;
	line-height: 30px !important;
}

.tetris-valo .tetrisTwinColFilterSelect {
	height: 100% !important;
}

.tetris-valo .tetrisTwinColFilterSelect .v-csslayout {
	padding-top: 60px;
}

.tetris-valo .tetrisTwinColFilterSelectV8 {
	margin-top: 15px !important;
}

.tetris-valo .tetrisTwinColFilterSelectV8 .filterable-list-select .v-expand {
	padding-top: 25px !important;
}

.tetris-valo .v-grid-cell-focused:before {
	content: none;
}

.tetris-valo .v-grid-cell {
	font-weight: 400;
}

.tetris-valo .v-grid-cell.rightalign {
	text-align: right;
}

.tetris-valo .v-grid-cell.leftalign {
	text-align: left;
}

.tetris-valo .v-grid-cell.centeralign {
	text-align: center;
}

.tetris-valo .v-treegrid-scroller-vertical {
	background-color: #E4E4E4 !important;
}

.tetris-valo .v-grid-scroller-vertical {
	background-color: #E4E4E4;
}

.tetris-valo .v-grid-header-deco {
	background-color: #E4E4E4;
	background: #E4E4E4;
}

.tetris-valo .sort-asc:after {
	content: "\f0de" !important;
	color: #333333;
}

.tetris-valo .sort-desc:after {
	content: "\f0dd" !important;
	color: #333333;
}

.tetris-valo .v-grid-row .v-grid-cell .component-wrap .v-checkbox {
	padding-left: 0px !important;
}

.tetris-valo .v-grid-header th {
	font-size: 11px;
	font-weight: bold;
	color: #333333;
}

.tetris-valo .v-accordion .v-accordion-item-caption {
	height: 30px;
	font-weight: 400;
	font-size: 14px;
	color: #333333;
	background-color: #dde1e3;
}

.tetris-valo .error-box .icon-red .v-icon {
	color: #CC0000;
	font-size: 24px;
	top: -4px;
	padding-left: 6px;
}

.tetris-valo .accountLinking div {
	margin-top: 2px;
}

.tetris-valo .accountLinking .v-icon {
	font-size: 30px;
	color: #999999;
}

.tetris-valo .accountLinking .loginButton {
	background-color: #88C22C;
	background-image: none;
	color: #fff;
	width: 110px;
}

.tetris-valo .accountLinking .multiLineLabel {
	white-space: pre-wrap;
	text-align: left;
	width: 16%;
}

.tetris-valo .accountLinking .accountLinkingHeader {
	color: #D1830C;
	font-weight: bold;
	text-align: left;
}

.tetris-valo .accountLinking .errorMessage {
	font-family: "Segoe UI";
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	color: #FF0000;
	white-space: pre-wrap;
	width: 16%;
	text-align: left;
}

.tetris-valo .v-horizontallayout-button-bar-green .v-button {
	border: 0px !important;
	background-image: none;
	padding: 0px;
	width: 150px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .v-horizontallayout-button-bar-green .v-button-caption {
	font-weight: normal;
	font-size: 13px;
}

.tetris-valo .v-horizontallayout-button-bar-green .v-button:after {
	background-image: none;
	content: none;
}

.tetris-valo .v-horizontallayout-button-bar-green .first {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .v-horizontallayout-button-bar-green .first .v-button-wrap {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .v-horizontallayout-button-bar-green .mid {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .v-horizontallayout-button-bar-green .mid .v-button-wrap {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .v-horizontallayout-button-bar-green .last {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .v-horizontallayout-button-bar-green .last .v-button-wrap {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .v-horizontallayout-button-bar-green .last-pressed {
	background-image: none;
	background-color: #ADE2AA;
}

.tetris-valo .v-horizontallayout-button-bar-green .last-pressed .v-button-wrap {
	background-image: none;
	background-color: #ADE2AA;
}

.tetris-valo .v-horizontallayout-button-bar-green .first-pressed {
	background-image: none;
	background-color: #ADE2AA;
}

.tetris-valo .v-horizontallayout-button-bar-green .first-pressed .v-button-wrap {
	background-image: none;
	background-color: #ADE2AA;
}

.tetris-valo .v-horizontallayout-button-bar-green .mid-pressed {
	background-image: none;
	background-color: #ADE2AA;
}

.tetris-valo .v-horizontallayout-button-bar-green .mid-pressed .v-button-wrap {
	background-image: none;
	background-color: #ADE2AA;
}

.tetris-valo .v-horizontallayout-button-bar-green .mid, .tetris-valo .v-horizontallayout-button-bar-green .last, .tetris-valo .v-horizontallayout-button-bar-green .mid-pressed, .tetris-valo .v-horizontallayout-button-bar-green .last-pressed {
	padding-left: 1px;
}

.tetris-valo .progress-button-bar .v-button {
	border: 0px !important;
	background-image: none;
	padding: 0px;
	width: 150px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tetris-valo .progress-button-bar .v-button-caption {
	font-weight: normal;
	font-size: 13px;
}

.tetris-valo .progress-button-bar .v-button:after {
	background-image: none;
	content: none;
}

.tetris-valo .progress-button-bar .first {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .progress-button-bar .first .v-button-wrap {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .progress-button-bar .mid {
	background-image: none;
	background-color: #FFDF9F;
}

.tetris-valo .progress-button-bar .mid .v-button-wrap {
	background-image: none;
	background-color: #FFDF9F;
}

.tetris-valo .progress-button-bar .last {
	background-image: none;
	background-color: #B5E683;
}

.tetris-valo .progress-button-bar .last .v-button-wrap {
	background-image: none;
	background-color: #B5E683;
}

.tetris-valo .progress-button-bar .last-pressed {
	background-image: none;
	background-color: #B5E683;
}

.tetris-valo .progress-button-bar .last-pressed .v-button-wrap {
	background-image: none;
	background-color: #B5E683;
}

.tetris-valo .progress-button-bar .first-pressed {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .progress-button-bar .first-pressed .v-button-wrap {
	background-image: none;
	background-color: #E4E4E4;
}

.tetris-valo .progress-button-bar .mid-pressed {
	background-image: none;
	background-color: #FFDF9F;
}

.tetris-valo .progress-button-bar .mid-pressed .v-button-wrap {
	background-image: none;
	background-color: #FFDF9F;
}

.tetris-valo .progress-button-bar .mid, .tetris-valo .progress-button-bar .last, .tetris-valo .progress-button-bar .mid-pressed, .tetris-valo .progress-button-bar .last-pressed {
	padding-left: 1px;
}

.tetris-valo .v-widget.customtokenfield.tetris-tokenfield .v-csslayout {
	padding-bottom: 7px;
	padding-top: 7px;
	padding-right: 7px;
}

.tetris-valo .v-widget.customtokenfield.tetris-tokenfield .v-button {
	margin-left: 7px !important;
}

.tetris-valo .v-widget.customtokenfield.tetris-tokenfield .v-button-link {
	background-color: #F2F1F1;
	border-color: #D8D7D7;
	border-width: 1px;
	border-style: solid;
	text-decoration: none;
	padding-top: 0px;
}

.tetris-valo .v-widget.customtokenfield.tetris-tokenfield .v-filterselect {
	margin-left: 7px;
}

.tetris-valo .v-widget.customtokenfield.tetris-tokenfield .v-filterselect-input {
	font-style: italic !important;
	color: #8A8585;
}

.tetris-valo .v-widget.customtokenfield.tetris-tokenfield .v-button-caption {
	color: #3a3131;
}

.tetris-valo .v-hideTokenField-InputButton .v-filterselect-button {
	visibility: hidden;
}

.tetris-valo .tetris-tokenfieldV8 {
	overflow-y: auto !important;
}

.tetris-valo .tetris-tokenfieldV8 .v-filterselect {
	margin-top: 10px;
}

.tetris-valo .tetris-tokenfieldV8 .tokenstyle {
	background-color: #F2F1F1;
	border-color: #D8D7D7;
	border-width: 1px;
	border-style: solid;
	text-decoration: none;
	padding: 4px;
	margin-right: 5px;
	margin-bottom: 1px;
	margin-top: 10px;
}

.tetris-valo .tetris-tokenfieldV8 .tokenstyle .v-button-caption {
	text-decoration: none;
	padding: 5px;
	color: #3a3131;
}

.tetris-valo .ideas-table .v-table-header table {
	background-image: none;
	background-color: #E4E4E4;
	color: #333333;
	font-weight: 500;
}

.tetris-valo .ideas-table .v-table {
	color: #464646;
}

.tetris-valo .ideas-table .v-grid-header {
	color: #333333;
	font-weight: 500;
}

.tetris-valo .ideas-button.v-button-borderless {
	background-color: #2b82bd;
	color: #ffffff;
}

.tetris-valo .ideas-button.v-button-borderless:active {
	color: #ffffff;
	background: #7d7d7d;
}

.tetris-valo .ideas-button.v-button-borderless-colored {
	background-color: #f2f2f2;
	color: #464646;
}

.tetris-valo .ideas-button.v-button-borderless-colored:active {
	color: #464646;
	background: #d7d7d7;
}

.tetris-valo .ideas-button.v-button-icon-only {
	background-color: transparent;
	color: #0099CC;
	font-size: 23px;
}

.tetris-valo .ideas-button.v-button-icon-only:active {
	background: transparent;
	color: #0099CC;
}

.tetris-valo .ideas-button.v-button-icon-only {
	background-color: transparent;
	color: #0099CC;
	font-size: 23px;
}

.tetris-valo .ideas-button.v-button-icon-only:active {
	background: transparent;
	color: #0099CC;
}

.tetris-valo .clear {
	color: #c44040;
	Font-size: 2.4em;
}

.tetris-valo .clear2 {
	color: #c44040;
	Font-size: 1.2em;
}

.tetris-valo .clear3 {
	color: #c44040;
	font-size: 23px;
}

.tetris-valo .defaultSpinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(59, 89, 152, 0.2);
	border-top-color: #3b5998;
	border-right-color: #3b5998;
	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;
}

.tetris-valo .loadingPlaceholder {
	opacity: 0.3;
}

.tetris-valo .v-slot-spinnerLayoutStyle {
	visibility: visible !important;
	position: absolute;
	top: 50%;
	left: 50%;
}

.tetris-valo .spinner {
	border: 5px solid #4c78fe;
	border-top-color: transparent;
}

.tetris-valo .tetris-messagebox .tetris-messagebox-icon {
	line-height: 48px;
	padding-right: 15px;
	padding-left: 10px;
}

.tetris-valo .tetris-messagebox .tetris-messagebox-icon .v-icon {
	font-size: 36px;
}

.tetris-valo .tetris-messagebox .tetris-messagebox-message {
	white-space: normal;
	width: 375px;
	font-size: 12px;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, Lato, sans-serif;
}

.tetris-valo .tetris-multidateselector-note {
	color: #868686;
	font-size: 12px;
	line-height: normal;
	padding-left: 10px;
	padding-top: 5px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.tetris-valo .tetris-multidateselector-note-error {
	color: #FF3300;
	font-size: 12px;
	line-height: normal;
	padding-left: 10px;
	padding-top: 5px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.tetris-valo .highlighted-text {
	font-size: 13px;
	font-style: italic;
}

.tetris-valo .tetris-label-highlighted-text {
	font-size: 13px;
	font-style: italic;
}

.tetris-valo .note-style {
	color: lightgrey;
	font-size: 11px;
	font-style: italic;
	position: absolute;
	top: 0;
	margin-top: 18px;
	color: darkgray;
}

.tetris-valo .notes-layout .v-label.maximum-characters {
	font-size: 11px;
	font-weight: 400;
	font-style: italic;
}

.tetris-valo .background-color-off-white {
	background-color: #F2F2F2;
}

.tetris-valo .client-dashboard-export-button {
	border: 0px;
	border-color: transparent;
	background: transparent;
}

.tetris-valo .client-dashboard-export-button .v-icon {
	font-size: 22px;
	color: #0f68ba;
	float: right;
	padding-left: 0px;
}

.tetris-valo .table-title {
	font-weight: bolder;
	font-size: 16px;
}

.tetris-valo .table-title .v-slot {
	font-weight: bolder;
	font-size: 16px;
}

.tetris-valo .client-dashboard-page-font {
	font-family: "Open Sans Regular";
	padding-top: 0px !important;
}

.tetris-valo .client-dashboard-cancel-button {
	color: #999999;
}

.tetris-valo .client-dashboard-table-data {
	font-size: 12px;
	font-weight: normal;
}

.tetris-valo .client-dashboard-gridTitle {
	padding-top: 5px;
}

.tetris-valo .client-dashboard-header-border {
	border-bottom: 1px solid lightgray;
}

.tetris-valo .client-dashboard-button-layout .v-button {
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	border-right: 0px;
	border-left: 0px;
	border-top: 0px;
	border-bottom-width: 0px;
	color: #000000;
}

.tetris-valo .client-dashboard-button-layout .v-button.v-disabled {
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	border-right: 0px !important;
	border-left: 0px;
	border-top: 0px;
	border-bottom-width: 1px !important;
	border-bottom-color: #009900 !important;
	opacity: 1;
}

.tetris-valo .filter-modes {
	border: none;
	height: 30px;
	font-size: 22px;
	color: #0082BE;
}

.tetris-valo .user-management-table-row-autoheight.v-table-row, .tetris-valo .user-management-table-row-autoheight .v-table-row-odd {
	height: auto;
	padding-bottom: 10px;
}

.tetris-valo .user-management-row-height .v-table-row, .tetris-valo .user-management-row-height .v-table-row-odd�� {
	height: 40px;
	margin: 6px;
}

.tetris-valo .editInternalCheckBox-padding {
	padding-bottom: 15px;
	margin-left: 9px;
}

.tetris-valo .editInternalCheckboxandButtonLayout-padding {
	padding-top: 10px;
}

.tetris-valo .discoverAccessLabel-padding {
	padding-left: 10px;
	padding-bottom: 10px;
}

.tetris-valo .discoverAccessLayout-border {
	padding: 10px;
	background-color: #e4e4e4;
}

.tetris-valo .sla-error-date-style {
	color: red;
	font-weight: bold;
}

.tetris-valo .dqiEvaluation .TableOnHoverHighlight .v-table-table :hover {
	background-color: #BDE2F4;
}

.tetris-valo .pagescope-window .v-grid-cell {
	cursor: pointer;
}

.tetris-valo .pagescope-window .v-grid-cell:hover {
	background-color: #F8F8F8;
	color: black;
}

.tetris-valo .pagescope-window .button-selected {
	background-color: #D7FFE7;
}

.tetris-valo .pagescope-window .button-unselected {
	background-color: #E4E4E4;
}

.tetris-valo .tetrisRichTextArea .gwt-HTML {
	height: 100%;
}

.tetris-valo .rich-text-area-small-font {
	font-size: 12px;
}

.tetris-valo .announcements .v-icon {
	font-size: 20px;
}

.tetris-valo .announcements .title-label {
	font-size: 16px;
	font-weight: bold;
	line-height: 33px;
	font-family: Verdana;
}

.tetris-valo .announcements .date-time {
	font-size: 13px;
	font-family: Verdana;
}

.tetris-valo .announcements #announcementsEmailButton {
	padding: 0px;
}

.tetris-valo .v-table-cell-content-parameters-inherited {
	font-weight: bold;
	background-color: #bf8f00;
}

.tetris-valo .v-table-row-parameters-inherited {
	font-weight: bold;
	background-color: #bf8f00;
}

.tetris-valo .v-loading-indicator, .tetris-valo .v-loading-indicator-delay, .tetris-valo .v-loading-indicator-wait {
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	z-index: 100000;
	margin: 0;
	background: transparent url(common/images/loading-indicator.gif);
	background-repeat: no-repeat;
}

.tetris-valo .v-loading-indicator-delay {
	background-image: url(common/images/loading-indicator-delay.gif);
}

.tetris-valo .v-loading-indicator-wait {
	background-image: url(common/images/loading-indicator-wait.gif);
	position: fixed;
}

.tetris-valo .lrvDropRestriction .borderless-blue-image-button {
	padding: 0px 0px;
	border: 0px;
	font-size: 14px;
	color: #0099CC;
	background: transparent;
}

.tetris-valo .heatmap-setting .v-table-header-wrap {
	height: auto !important;
}

.tetris-valo .heatmap-setting .heatmap-wrapper {
	background-color: #FFFFFF;
	padding: 4px 0px 4px 0px;
}

.tetris-valo .heatmap-setting .v-table-cell-wrapper .v-label {
	text-align: center !important;
}

.tetris-valo .heatmap-setting .v-grid-cell {
	height: 35px;
	padding: 0px;
}

.tetris-valo .heatmap-setting .v-grid-cell .v-textfield {
	text-align: center;
	border: none;
}

.tetris-valo .heatmap-setting .cell-center-with-gray-bg-color {
	text-align: center !important;
	background: #F2F2F2;
}

.tetris-valo .heatmap-setting .v-textfield-error-error {
	color: #ed473b !important;
}

.tetris-valo .heatmap-setting .v-colorpicker-caption-display-none {
	cursor: pointer;
}

.tetris-valo .heatmap-setting .v-colorpicker-caption-display-none .v-caption {
	display: none;
}

.tetris-valo .v-caption-heatmap-rangeAndColors-Table .v-captiontext {
	font-size: 16px !important;
	color: #CC6600;
}

.tetris-valo .v-textfield-heatmap-rangeAndColors-fixedValues {
	background-color: #F2F2F2;
}

.tetris-valo .v-tabsheet-tabitemcell-heatmapSettingsTab {
	padding: 0 3px;
	margin: 0 0 0 15px;
}

.tetris-valo .v-label-season-label {
	color: #CC6600;
	font-size: 16px !important;
	margin-bottom: -18px;
	margin-top: -8px;
}

.tetris-valo .season-add-button {
	margin-top: -8px !important;
}

.tetris-valo .hospitalityrooms .v-treegrid-cell.conflicting {
	background-color: #f88989;
}

.tetris-valo .hospitalityrooms .v-treegrid-cell.conflicting-bordered {
	border-top: 1px solid #5f5f5f;
	background-color: #f88989;
}

.tetris-valo .hospitalityrooms .v-treegrid-cell.manually-added {
	background-color: rgba(200, 243, 168, 0.99);
}

.tetris-valo .hospitalityrooms .v-treegrid-cell.manually-added-bordered {
	border-top: 1px solid #5f5f5f;
	background-color: rgba(200, 243, 168, 0.99);
}

.tetris-valo .hospitalityrooms .v-treegrid-cell.just-bordered {
	border-top: 1px solid #5f5f5f;
}

.tetris-valo .hospitalityrooms .v-treegrid-cell {
	padding-bottom: 5px;
	padding-top: 5px;
}

.tetris-valo .hospitalityrooms td:nth-child(1) {
	text-align: center;
}

.tetris-valo .hospitalityrooms td:nth-child(2) {
	padding-top: 0;
	text-align: right;
}

.tetris-valo .hospitalityrooms .v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px transparent;
	border-right: 1px solid #dadada;
}

.tetris-valo .hospitalityrooms .show-expander-icon .v-treegrid-expander {
	display: inline-block !important;
	padding-left: 6px;
	pointer-events: none;
}

.tetris-valo .hospitalityrooms .unsaved-changes-button {
	padding-left: 2px;
	padding-right: 2px;
	margin-top: -6px;
}

.tetris-valo .hospitalityrooms .unsaved-changes-button .v-button-wrap .v-icon {
	font-size: 15px;
}

.tetris-valo .hospitalityrooms .v-treegrid-cell-focused:before {
	display: none;
	border: none;
}

.tetris-valo .hospitalityrooms .v-treegrid-row-focused::before {
	display: none;
	border: none;
}

.tetris-valo .hospitalityrooms .v-caption {
	font-size: 13px;
	font-weight: 400;
	opacity: unset;
}

.tetris-valo .hospitalityrooms .legend-layout .v-has-caption, .tetris-valo .hospitalityrooms .legend-layout .v-has-caption > .v-caption {
	display: inline-flex;
}

.tetris-valo .hospitalityrooms .legend-layout .v-slot-legend-icon .v-icon {
	font-size: 15px;
}

.tetris-valo .configuration-manager .tile-background-color {
	background-color: #f5f5f5;
	background: #f5f5f5;
}

.tetris-valo .configuration-manager .tile-footer {
	text-align: center;
}

.tetris-valo .configuration-manager .additional-tiles-button {
	border: none;
	background: #f5f5f5;
	font-size: larger;
}

.tetris-valo .configuration-manager .additional-tiles-layout {
	background-color: #f5f5f5;
}

.tetris-valo .discontinuedroomtypeconfigPopUp .v-spacing {
	height: 0px;
}

.tetris-valo .discontinuedroomtypeconfigPopUp .no-space-horizontal .v-spacing {
	width: 0px;
}

.tetris-valo .discontinuedroomtypeconfigPopUp .padding-top-8px {
	padding-top: 8px;
}

.tetris-valo #checkmaTable .invalid-content-red {
	background-color: #F5C8C9;
}

.tetris-valo #checkmaTable .valid-content-green {
	background-color: #78a678;
}

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

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