All Downloads are FREE. Search and download functionalities are using the official Maven repository.

VAADIN.themes.mateu.styles.css Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 *
 * @group table
 */

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

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

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

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

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

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

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

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

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

/**
 * @group window
 */

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

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

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

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

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

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

/**
 * @group valo-menu
 */

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

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

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

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

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

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

.v-ui {
	position: relative;
}

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

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

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

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

.v-clip {
	overflow: hidden;
}

.v-scrollable {
	overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-gridlayout {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blinking {
	animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
		0% {
		color: #000;
	}
		49% {
		color: #000;
	}
		60% {
		color: transparent;
	}
		99% {
		color: transparent;
	}
		100% {
		color: #000;
	}
	}

.ultraurgent {
	animation: ultraurgentblinkingText 1.2s infinite;
}

@keyframes ultraurgentblinkingText {
		0% {
		background-color: #f27469;
	}
		49% {
		background-color: inherit;
	}
		60% {
		background-color: inherit;
	}
		99% {
		background-color: inherit;
	}
		100% {
		background-color: inherit;
	}
	}

.mateu {
	color: #501e96;
}

.mateu.v-app, .mateu.v-app-loading {
	font: 300 14px/1.55 var(--font-family, "Roboto Light");
	color: #474747;
	background-color: #ffffff;
	cursor: default;
}

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

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

.mateu .v-loading-indicator {
	position: fixed !important;
	z-index: 99999;
	left: 0;
	right: auto;
	top: 0;
	width: 50%;
	opacity: 1;
	height: 4px;
	background-color: #e61a1a;
	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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 4px;
	margin: 0;
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	color: #474747;
}

.mateu select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

.mateu .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: 4px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-contextmenu {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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: 4px 4px;
}

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

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

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

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

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

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

.mateu .v-contextmenu .gwt-MenuItem-selected {
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: #f8eded;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

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

.mateu .v-margin-top {
	padding-top: 32px;
}

.mateu .v-margin-right {
	padding-right: 32px;
}

.mateu .v-margin-bottom {
	padding-bottom: 32px;
}

.mateu .v-margin-left {
	padding-left: 32px;
}

.mateu .v-spacing {
	width: 11px;
	height: 11px;
}

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

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

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

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

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

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

.mateu .v-verticallayout-card, .mateu .v-horizontallayout-card {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d9d9d9;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

.mateu .v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-button:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

.mateu .v-button-primary {
	height: 32px;
	padding: 0 14px;
	color: #f8eded;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #b51414;
	border-top-color: #b71616;
	border-bottom-color: #ac1111;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	-webkit-box-shadow: inset 0 1px 0 #ea4f4f, inset 0 -1px 0 #cf1616, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #ea4f4f, inset 0 -1px 0 #cf1616, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 0 16px;
	font-weight: bold;
	min-width: 70px;
}

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

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

.mateu .v-button-primary:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-button-primary:active:after {
	background-color: rgba(125, 3, 3, 0.2);
}

.mateu .v-button-friendly {
	height: 32px;
	padding: 0 14px;
	color: #eaf4e9;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #227719;
	border-top-color: #257d1a;
	border-bottom-color: #1e6b15;
	background-color: #2c9720;
	background-image: -webkit-linear-gradient(top, #2f9f22 2%, #26881b 98%);
	background-image: linear-gradient(to bottom,#2f9f22 2%, #26881b 98%);
	-webkit-box-shadow: inset 0 1px 0 #46b33a, inset 0 -1px 0 #26811b, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #46b33a, inset 0 -1px 0 #26811b, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

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

.mateu .v-button-friendly:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

.mateu .v-button-danger {
	height: 32px;
	padding: 0 14px;
	color: #f9f0ef;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #bb382e;
	border-top-color: #bc3c31;
	border-bottom-color: #b13028;
	background-color: #ed473b;
	background-image: -webkit-linear-gradient(top, #ee4c3f 2%, #e13e33 98%);
	background-image: linear-gradient(to bottom,#ee4c3f 2%, #e13e33 98%);
	-webkit-box-shadow: inset 0 1px 0 #ef786f, inset 0 -1px 0 #da3c31, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #ef786f, inset 0 -1px 0 #da3c31, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

.mateu .v-button-danger:hover:after {
	background-color: rgba(243, 137, 129, 0.1);
}

.mateu .v-button-danger:focus:after {
	border: inherit;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-button-danger:active:after {
	background-color: rgba(146, 12, 2, 0.2);
}

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

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

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

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

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

.mateu .v-button-borderless-colored:hover {
	color: #eb4747;
}

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-button-link:hover {
	color: #eb4747;
}

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

.mateu .v-button-tiny {
	height: 24px;
	padding: 0 11px;
	
	
	font-size: 11px;
	
	border-radius: 4px;
}

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

.mateu .v-button-small {
	height: 27px;
	padding: 0 12px;
	
	
	font-size: 12px;
	
	border-radius: 4px;
}

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

.mateu .v-button-large {
	height: 38px;
	padding: 0 17px;
	
	
	font-size: 17px;
	
	border-radius: 4px;
}

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

.mateu .v-button-huge {
	height: 51px;
	padding: 0 22px;
	
	
	font-size: 23px;
	
	border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .mateu .v-checkbox > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mateu .v-checkbox > input ~ label:before {
	height: 16px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .mateu .v-checkbox-small > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mateu .v-checkbox-small > input ~ label:before {
	height: 13.5px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .mateu .v-checkbox-large > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .mateu .v-checkbox-large > input ~ label:before {
	height: 19px;
	padding: 0 9px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

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

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

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

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

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

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

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

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

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

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

.mateu .v-filterselect {
	position: relative;
	width: 160px;
	height: 32px;
	border-radius: 4px;
	white-space: nowrap;
}

.mateu .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: 32px;
	border-radius: 4px;
	padding: 4px 8px;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 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: 33px;
	border-radius: inherit;
}

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

.mateu .v-filterselect [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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: 4px 4px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

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

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

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

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

.mateu .v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: #f8eded;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

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

.mateu .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: 22px;
	height: 22px;
	line-height: 22px;
	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;
}

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

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

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

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

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

.mateu .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 4px 0 4px;
}

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

.mateu .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: 4px 0 4px 0;
}

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

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

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

.mateu .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, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	cursor: inherit;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	text-shadow: inherit;
	text-overflow: ellipsis;
	border-radius: inherit;
}

.mateu .v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

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

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

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

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

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

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

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

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

.mateu .v-filterselect-tiny {
	height: 24px;
	
	font-size: 11px;
}

.mateu .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: 24px;
	
	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: 25px;
	border-radius: inherit;
}

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

.mateu .v-filterselect-tiny img.v-icon {
	max-height: 24px;
	margin-left: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-filterselect-compact img.v-icon, .mateu .v-filterselect-small img.v-icon {
	max-height: 27px;
	margin-left: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-filterselect-large {
	height: 38px;
	
	font-size: 17px;
}

.mateu .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: 38px;
	
	padding: 4px 7px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 39px;
	border-radius: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-filterselect-huge {
	height: 51px;
	
	font-size: 23px;
}

.mateu .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: 51px;
	
	padding: 6px 9px;
	
	
	-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: 52px;
	border-radius: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-csslayout-card {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d9d9d9;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-formlayout-contentcell  > .v-label-h2, .mateu .v-formlayout-contentcell  > .v-label-h3, .mateu .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 #e4e4e4;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-grid {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-grid {
	outline: none;
}

.mateu .v-grid-scroller-vertical, .mateu .v-grid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

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

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

.mateu .v-grid-tablewrapper {
	border: 1px solid #d4d4d4;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-grid-row-selected > td {
	background: #e61a1a;
}

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

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

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

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

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

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

.mateu .v-grid-column-resize-handle {
	position: absolute;
	width: 33px;
	right: -16.5px;
	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;
}

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

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

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

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

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

.mateu .v-grid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #ffffff;
}

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

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

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

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

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

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

.mateu .v-grid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-grid-header .v-grid-cell {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.mateu .v-grid-header .v-grid-cell.dragged-column-header {
	margin-top: -16px;
}

.mateu .v-grid-footer .v-grid-cell {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mateu .v-grid-header-deco {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-grid-footer-deco, .mateu .v-grid-horizontal-scrollbar-deco {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-grid-row-selected  > .v-grid-cell {
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: #eec9c9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #b81e1e;
}

.mateu .v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: #f07575;
}

.mateu .v-grid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	border-color: #e61a1a;
}

.mateu .v-grid-editor-footer {
	font-size: 12px;
	padding: 0 6px;
	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;
}

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

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

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

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

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

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

.mateu .v-grid-editor-cells > div .v-textfield, .mateu .v-grid-editor-cells > div .v-textfield-focus, .mateu .v-grid-editor-cells > div .v-datefield, .mateu .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .mateu .v-grid-editor-cells > div .v-filterselect-input, .mateu .v-grid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7;
	box-shadow: inset 0 1px 0 #f7f7f7;
}

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

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

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

.mateu .v-grid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 8px 0 16.5px;
}

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

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

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

.mateu .v-grid-editor-save, .mateu .v-grid-editor-cancel {
	cursor: pointer;
	color: #e61a1a;
	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: 6px 6px;
	margin: 0;
	outline: none;
}

.mateu .v-grid-editor-save:hover, .mateu .v-grid-editor-cancel:hover {
	color: #eb4747;
}

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

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

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

.mateu .v-grid-sidebar.v-contextmenu.closed {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: #b81414;
}

.mateu .v-grid-row-selected.v-grid-row-drag-top:before, .mateu .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: #b81414;
}

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

.mateu .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: 32px;
	border-radius: 4px;
	padding: 4px 8px;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 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: 160px;
}

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

.mateu .v-textfield:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

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

.mateu .v-textfield-readonly:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

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

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

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

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

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

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

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

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

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

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

.mateu .v-textfield-compact, .mateu .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: 27px;
	border-radius: 4px;
	padding: 3px 7px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

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

.mateu .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: 38px;
	border-radius: 4px;
	padding: 4px 9px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 17px;
}

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

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

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

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

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

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

.mateu .v-caption-inline-icon img.v-icon {
	left: 8px;
	bottom: 8px;
}

.mateu .v-textfield-inline-icon  {
	padding-left: 32px;
}

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

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

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

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

.mateu .v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 24px;
	line-height: 22px;
	text-align: center;
	font-size: 11px;
}

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

.mateu .v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 24px;
}

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

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

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

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

.mateu .v-caption-inline-icon.v-caption-compact span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 27px;
	line-height: 25px;
	text-align: center;
	font-size: 14px;
}

.mateu .v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 6px;
	bottom: 6px;
}

.mateu .v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 27px;
}

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

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

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

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

.mateu .v-caption-inline-icon.v-caption-small span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 27px;
	line-height: 25px;
	text-align: center;
	font-size: 12px;
}

.mateu .v-caption-inline-icon.v-caption-small img.v-icon {
	left: 6px;
	bottom: 6px;
}

.mateu .v-textfield-inline-icon.v-textfield-small  {
	padding-left: 27px;
}

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

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

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

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

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

.mateu .v-caption-inline-icon.v-caption-large img.v-icon {
	left: 11px;
	bottom: 11px;
}

.mateu .v-textfield-inline-icon.v-textfield-large  {
	padding-left: 38px;
}

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

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

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

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

.mateu .v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 51px;
	line-height: 49px;
	text-align: center;
	font-size: 23px;
}

.mateu .v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 18px;
	bottom: 18px;
}

.mateu .v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 51px;
}

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

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

.mateu .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: 32px;
	border-radius: 4px;
	padding: 5px;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 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: 160px;
}

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

.mateu .v-textarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

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

.mateu .v-textarea-readonly:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

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

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

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

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

.mateu .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: 24px;
	border-radius: 4px;
	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;
}

.mateu .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: 27px;
	border-radius: 4px;
	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;
}

.mateu .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: 38px;
	border-radius: 4px;
	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;
}

.mateu .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: 51px;
	border-radius: 4px;
	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;
}

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

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

.mateu .v-datefield {
	position: relative;
	width: 160px;
	height: 32px;
	border-radius: 4px;
}

.mateu .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: 32px;
	border-radius: 4px;
	padding: 4px 8px;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 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: 38.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

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

.mateu .v-datefield [class*="textfield"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

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

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

.mateu .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: 32px;
	line-height: 30px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	top: 1px;
	bottom: 1px;
	left: 1px;
	border: none;
	border-right: 1px solid #e4e4e4;
	color: #a3a3a3;
	border-radius: 3px 0 0 3px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-datefield-error-system .v-datefield-textfield {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

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

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

.mateu .v-datefield-day {
	width: 160px;
}

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

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

.mateu .v-datefield-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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;
}

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

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

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

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

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

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

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

.mateu .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #e61a1a;
}

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

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

.mateu .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .mateu .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #eec9c9;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	border: none;
	font-weight: 600;
}

.mateu .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mateu .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: #e61a1a;
}

.mateu .v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.mateu .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 64px;
}

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

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

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

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

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

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

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

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

.mateu .v-datefield-calendarpanel-day:hover {
	color: #e61a1a;
}

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

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

.mateu .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .mateu .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #eec9c9;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	border: none;
	font-weight: 600;
}

.mateu .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	position: relative;
}

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

.mateu .v-datefield-calendarpanel-weekdays {
	height: 22px;
	color: rgba(135, 135, 135, 0.85);
}

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

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

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

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

.mateu td[class*="year"] button:hover:before, .mateu td[class*="month"] button:hover:before {
	color: #e61a1a;
}

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

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

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

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

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

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

.mateu td.v-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: #e61a1a;
}

.mateu td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.mateu .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 64px;
}

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

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

.mateu .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	width: 30px;
	border-top: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #ffffff;
}

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

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

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

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

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

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

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

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

.mateu .v-datefield-tiny {
	height: 24px;
	border-radius: 4px;
	font-size: 11px;
}

.mateu .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: 24px;
	border-radius: 4px;
	padding: 3px 6px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 28.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mateu .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: 24px;
	line-height: 24px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

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

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

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

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

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

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

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

.mateu .v-datefield-tiny.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mateu .v-datefield-tiny.v-readonly [class*="button"]:active:after {
	display: none;
}

.mateu .v-datefield-tiny.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.mateu .v-datefield-tiny.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-datefield-tiny.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-datefield-compact, .mateu .v-datefield-small {
	height: 27px;
	border-radius: 4px;
}

.mateu .v-datefield-compact [class*="textfield"], .mateu .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: 27px;
	border-radius: 4px;
	padding: 3px 7px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 32.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mateu .v-datefield-compact [class*="button"], .mateu .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: 27px;
	line-height: 27px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.mateu .v-datefield-compact [class*="button"]:before, .mateu .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-datefield-compact [class*="button"]:active:after, .mateu .v-datefield-small [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.mateu .v-datefield-compact.v-disabled, .mateu .v-datefield-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-datefield-compact.v-disabled [class*="button"], .mateu .v-datefield-small.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mateu .v-datefield-compact.v-disabled [class*="button"]:active:after, .mateu .v-datefield-small.v-disabled [class*="button"]:active:after {
	display: none;
}

.mateu .v-datefield-compact.v-readonly [class*="textfield"], .mateu .v-datefield-small.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-datefield-compact.v-readonly [class*="textfield"]:focus, .mateu .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.mateu .v-datefield-compact.v-readonly [class*="button"], .mateu .v-datefield-small.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mateu .v-datefield-compact.v-readonly [class*="button"]:active:after, .mateu .v-datefield-small.v-readonly [class*="button"]:active:after {
	display: none;
}

.mateu .v-datefield-compact.v-readonly.borderless [class*="textfield"], .mateu .v-datefield-small.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.mateu .v-datefield-compact.v-readonly.borderless [class*="textfield"]:focus, .mateu .v-datefield-small.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-datefield-compact.v-readonly.borderless [class*="textfield"][class*="prompt"], .mateu .v-datefield-small.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-datefield-small {
	font-size: 12px;
}

.mateu .v-datefield-large {
	height: 38px;
	border-radius: 4px;
	font-size: 17px;
}

.mateu .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: 38px;
	border-radius: 4px;
	padding: 4px 9px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 45.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mateu .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: 38px;
	line-height: 38px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.mateu .v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-datefield-large [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.mateu .v-datefield-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-datefield-large.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mateu .v-datefield-large.v-disabled [class*="button"]:active:after {
	display: none;
}

.mateu .v-datefield-large.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.mateu .v-datefield-large.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mateu .v-datefield-large.v-readonly [class*="button"]:active:after {
	display: none;
}

.mateu .v-datefield-large.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.mateu .v-datefield-large.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-datefield-large.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-datefield-huge {
	height: 51px;
	border-radius: 4px;
	font-size: 23px;
}

.mateu .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: 51px;
	border-radius: 4px;
	padding: 6px 11px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 61.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.mateu .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: 51px;
	line-height: 51px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 4px 0 0 4px;
}

.mateu .v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-datefield-huge [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.mateu .v-datefield-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-datefield-huge.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mateu .v-datefield-huge.v-disabled [class*="button"]:active:after {
	display: none;
}

.mateu .v-datefield-huge.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.mateu .v-datefield-huge.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.mateu .v-datefield-huge.v-readonly [class*="button"]:active:after {
	display: none;
}

.mateu .v-datefield-huge.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.mateu .v-datefield-huge.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-datefield-huge.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-inline-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.mateu .v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.mateu .v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 26px;
	height: 22px;
	border: 1px solid transparent;
	line-height: 22px;
	text-align: center;
	font-size: 13px;
	background: #ffffff;
	border-radius: 2px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.mateu .v-inline-datefield-calendarpanel-day:hover {
	color: #e61a1a;
}

.mateu .v-inline-datefield-calendarpanel-day-offmonth {
	color: #a3a3a3;
	background: transparent;
}

.mateu .v-inline-datefield-calendarpanel-day-today {
	color: #1a1a1a;
	font-weight: 600;
	border-color: #b3b3b3;
}

.mateu .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .mateu .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #eec9c9;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	border: none;
	font-weight: 600;
}

.mateu .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	position: relative;
}

.mateu .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .mateu .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a3a3a3;
	cursor: not-allowed;
}

.mateu .v-inline-datefield-calendarpanel-weekdays {
	height: 22px;
	color: rgba(135, 135, 135, 0.85);
}

.mateu .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.mateu .v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

.mateu td[class*="year"] button, .mateu 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: 16px;
	height: 21px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.mateu td[class*="year"] button:before, .mateu td[class*="month"] button:before {
	color: #a3a3a3;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

.mateu td[class*="year"] button:hover:before, .mateu td[class*="month"] button:hover:before {
	color: #e61a1a;
}

.mateu td[class*="year"] button.outside-range, .mateu td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.mateu td[class*="year"] button.outside-range:hover:before, .mateu td[class*="month"] button.outside-range:hover:before {
	color: #a3a3a3;
}

.mateu .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.mateu .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.mateu .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.mateu .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.mateu td.v-inline-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: #e61a1a;
}

.mateu td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.mateu .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 64px;
}

.mateu .v-inline-datefield-calendarpanel-weeknumber, .mateu .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 26px;
	color: rgba(135, 135, 135, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.mateu .v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.mateu .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	width: 30px;
	border-top: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #ffffff;
}

.mateu td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.mateu td.v-inline-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.mateu .v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 5px;
}

.mateu .v-gridlayout-margin-top {
	padding-top: 32px;
}

.mateu .v-gridlayout-margin-bottom {
	padding-bottom: 32px;
}

.mateu .v-gridlayout-margin-left {
	padding-left: 32px;
}

.mateu .v-gridlayout-margin-right {
	padding-right: 32px;
}

.mateu .v-gridlayout-spacing-on {
	padding-left: 11px;
	padding-top: 11px;
}

.mateu .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	text-align: left;
	line-height: 30px;
}

.mateu .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;
}

.mateu .v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.mateu .v-menubar.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-menubar.v-disabled:after {
	display: none;
}

.mateu .v-menubar:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-menubar:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-menubar  > .v-menubar-menuitem {
	padding: 0 12px;
}

.mateu .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 32px;
}

.mateu .v-menubar:active:after {
	background: transparent;
}

.mateu .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 32px;
	padding: 0 13px;
	color: inherit;
	font-weight: 400;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec;
	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;
}

.mateu .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 3px 0 0 3px;
}

.mateu .v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 3px 3px 0;
	border-right-width: 0;
}

.mateu .v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 3px;
}

.mateu .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.mateu .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.mateu .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.mateu .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 3px 0 -3px;
	cursor: inherit;
}

.mateu .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 32px;
	padding: 0;
}

.mateu .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.mateu .v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #f2f2f2;
	background-image: -webkit-linear-gradient(bottom, #f2f2f2 2%, #eeeeee 98%);
	background-image: linear-gradient(to top,#f2f2f2 2%, #eeeeee 98%);
	color: #181818;
}

.mateu .v-disabled > .v-menubar-menuitem, .mateu .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.mateu .v-disabled > .v-menubar-menuitem:before, .mateu .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.mateu .v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-menubar > .v-menubar-menuitem-selected {
	color: #f8eded;
	
	
	
	border-radius: 0;
	border: 1px solid #b51414;
	border-top-color: #b71616;
	border-bottom-color: #ac1111;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	-webkit-box-shadow: inset 0 1px 0 #ea4f4f, inset 0 -1px 0 #cf1616;
	box-shadow: inset 0 1px 0 #ea4f4f, inset 0 -1px 0 #cf1616;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.mateu .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.mateu .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.mateu .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;
}

.mateu .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.mateu .v-menubar-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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: 4px 4px;
	margin: 4px 0 0 1px !important;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.mateu .v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 23px;
	padding: 0 16px 0 8px;
	border-radius: 3px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 27px;
	padding-right: 32px;
	position: relative;
}

.mateu .v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #aa0909;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.mateu .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 23px;
	margin-right: 4px;
	min-width: 1em;
}

.mateu .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.mateu .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 8px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 25px;
}

.mateu .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: #f8eded;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mateu .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 4px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
}

.mateu .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 8px;
}

.mateu .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.mateu .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.mateu .v-menubar-small {
	height: 27px;
	padding: 0 12px;
	
	font-weight: 400;
	
	cursor: default;
	border-radius: 4px;
	padding: 0;
	text-align: left;
	line-height: 25px;
	font-size: 12px;
}

.mateu .v-menubar-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 10px;
}

.mateu .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 27px;
}

.mateu .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.mateu .v-menubar-borderless:focus:after {
	display: none;
}

.mateu .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #e61a1a;
	padding: 0 11px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-menubar-borderless .v-menubar-menuitem:first-child, .mateu .v-menubar-borderless .v-menubar-menuitem:last-child, .mateu .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.mateu .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.mateu .v-menubar-borderless .v-menubar-menuitem:hover {
	color: #eb4747;
}

.mateu .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.mateu .v-menubar-borderless .v-menubar-menuitem-checked, .mateu .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c9c9c9;
	color: #e61a1a;
}

.mateu .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .mateu .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.mateu .v-menubar-borderless .v-menubar-menuitem-selected {
	color: #f8eded;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mateu .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #f8eded;
}

.mateu .v-menubar-borderless .v-menubar-menuitem-disabled, .mateu .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.mateu .v-radiobutton {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.mateu .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .mateu .v-radiobutton {
	padding-left: 21px;
}

:root .mateu .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .mateu .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .mateu .v-radiobutton > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .mateu .v-radiobutton > input ~ label:before, :root .mateu .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 11px;
	text-align: center;
}

:root .mateu .v-radiobutton > input ~ label:before {
	height: 16px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .mateu .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .mateu .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .mateu .v-radiobutton > input:checked ~ label:after {
	color: #e61a1a;
}

.mateu .v-radiobutton > .v-icon, .mateu .v-radiobutton > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.mateu .v-radiobutton.v-disabled  > label, .mateu .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.mateu .v-radiobutton.v-readonly  > label, .mateu .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.mateu .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .mateu .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .mateu .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 5px;
	left: 5px;
	background: #e61a1a;
}

:root .mateu .v-radiobutton > input ~ label:before, :root .mateu .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.mateu .v-select-optiongroup .v-radiobutton, .mateu .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 8px 14px 0 0;
}

.mateu .v-select-optiongroup .v-radiobutton:first-child, .mateu .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 5px;
}

.mateu .v-select-optiongroup .v-radiobutton:last-child, .mateu .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 5px;
}

.mateu .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.mateu .v-select-optiongroup-small {
	font-size: 12px;
}

.mateu .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 14px;
	white-space: nowrap;
}

.mateu .v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .mateu .v-select-optiongroup-small .v-checkbox {
	padding-left: 18px;
}

:root .mateu .v-select-optiongroup-small .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .mateu .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 .mateu .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .mateu .v-select-optiongroup-small .v-checkbox > input ~ label:before, :root .mateu .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 9px;
	text-align: center;
}

:root .mateu .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 13.5px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 14px;
}

:root .mateu .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 .mateu .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .mateu .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #e61a1a;
}

.mateu .v-select-optiongroup-small .v-checkbox > .v-icon, .mateu .v-select-optiongroup-small .v-checkbox > label .v-icon {
	margin: 0 5px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.mateu .v-select-optiongroup-small .v-checkbox.v-disabled  > label, .mateu .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-small .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.mateu .v-select-optiongroup-small .v-checkbox.v-readonly  > label, .mateu .v-select-optiongroup-small .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.mateu .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-small .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .mateu .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 14px;
	white-space: nowrap;
}

.mateu .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton {
	padding-left: 18px;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .mateu .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 .mateu .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .mateu .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .mateu .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 9px;
	text-align: center;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 13.5px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 14px;
}

:root .mateu .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 .mateu .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .mateu .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #e61a1a;
}

.mateu .v-select-optiongroup-small .v-radiobutton > .v-icon, .mateu .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 5px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.mateu .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .mateu .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.mateu .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .mateu .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.mateu .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 5px;
	left: 5px;
	background: #e61a1a;
}

:root .mateu .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .mateu .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.mateu .v-select-optiongroup-small .v-radiobutton, .mateu .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 7px 14px 0 0;
}

.mateu .v-select-optiongroup-small .v-radiobutton:first-child, .mateu .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 5px;
}

.mateu .v-select-optiongroup-small .v-radiobutton:last-child, .mateu .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 5px;
}

.mateu .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.mateu .v-select-optiongroup-large {
	font-size: 17px;
}

.mateu .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.mateu .v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .mateu .v-select-optiongroup-large .v-checkbox {
	padding-left: 25px;
}

:root .mateu .v-select-optiongroup-large .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .mateu .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 .mateu .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .mateu .v-select-optiongroup-large .v-checkbox > input ~ label:before, :root .mateu .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 13px;
	text-align: center;
}

:root .mateu .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 19px;
	padding: 0 9px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .mateu .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 .mateu .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .mateu .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #e61a1a;
}

.mateu .v-select-optiongroup-large .v-checkbox > .v-icon, .mateu .v-select-optiongroup-large .v-checkbox > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.mateu .v-select-optiongroup-large .v-checkbox.v-disabled  > label, .mateu .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-large .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.mateu .v-select-optiongroup-large .v-checkbox.v-readonly  > label, .mateu .v-select-optiongroup-large .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.mateu .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-large .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .mateu .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.mateu .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton {
	padding-left: 25px;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .mateu .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 .mateu .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .mateu .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .mateu .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	font-size: 13px;
	text-align: center;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 19px;
	padding: 0 9px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .mateu .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 .mateu .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .mateu .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #e61a1a;
}

.mateu .v-select-optiongroup-large .v-radiobutton > .v-icon, .mateu .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.mateu .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .mateu .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.mateu .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .mateu .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.mateu .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 7px;
	height: 7px;
	top: 6px;
	left: 6px;
	background: #e61a1a;
}

:root .mateu .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .mateu .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.mateu .v-select-optiongroup-large .v-radiobutton, .mateu .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 10px 14px 0 0;
}

.mateu .v-select-optiongroup-large .v-radiobutton:first-child, .mateu .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 6px;
}

.mateu .v-select-optiongroup-large .v-radiobutton:last-child, .mateu .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 6px;
}

.mateu .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.mateu .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.mateu .v-select-optiongroup-horizontal .v-radiobutton, .mateu .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.mateu .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.mateu .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.mateu .v-link {
	cursor: pointer;
	color: #e61a1a;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-link:hover {
	color: #eb4747;
}

.mateu .v-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-link a {
	cursor: pointer;
	color: #e61a1a;
	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;
}

.mateu .v-link a:hover {
	color: #eb4747;
}

.mateu .v-link a.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-link .v-icon {
	cursor: inherit;
}

.mateu .v-link-small {
	font-size: 12px;
}

.mateu .v-link-large {
	font-size: 17px;
}

.mateu .v-window {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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: 128px !important;
	min-height: 32px !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;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.mateu .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, #0e0e0e);
	background-image: radial-gradient(  circle at 50% 50%, #222, #0e0e0e);
	opacity: 0.72;
	filter: alpha(opacity=72) ;
	-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 .mateu .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.mateu .v-window-draggingCurtain {
	position: fixed !important;
}

.mateu .v-window-resizingCurtain + .v-window, .mateu .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.mateu .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);
}

.mateu .v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e4e4e4;
	border-color: rgba(201, 201, 201, 0.5);
}

.mateu .v-window-header {
	line-height: 31px;
	padding-left: 11px;
	margin-right: 64px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.mateu .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .mateu .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 32px;
}

.mateu .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .mateu .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 11px;
}

.mateu .v-window-closebox, .mateu .v-window-maximizebox, .mateu .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 28px;
	height: 31px;
	background-color: white;
	line-height: 29px;
	text-align: center;
	cursor: pointer;
	font-size: 18px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-window-closebox:focus, .mateu .v-window-maximizebox:focus, .mateu .v-window-restorebox:focus {
	outline: none;
}

.mateu .v-window-closebox:hover, .mateu .v-window-maximizebox:hover, .mateu .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #e61a1a;
}

.mateu .v-window-closebox:active, .mateu .v-window-maximizebox:active, .mateu .v-window-restorebox:active {
	color: inherit;
}

.mateu .v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 2px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-window-maximizebox:focus::after, .mateu .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 2px;
	bottom: 5px;
	left: 5px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-window-closebox {
	padding-right: 4px;
	border-radius: 0 4px 0 4px;
}

.mateu .v-window-closebox:before {
	content: "\00d7";
}

.mateu .v-window-maximizebox, .mateu .v-window-restorebox {
	right: 28px;
	padding-left: 4px;
	border-radius: 0 0 0 4px;
}

.mateu .v-window-maximizebox  + .v-window-closebox, .mateu .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.mateu .v-window-closebox-disabled, .mateu .v-window-resizebox-disabled, .mateu .v-window-restorebox-disabled, .mateu .v-window-maximizebox-disabled {
	display: none;
}

.mateu .v-window-closebox-disabled  + .v-window-closebox, .mateu .v-window-resizebox-disabled  + .v-window-closebox, .mateu .v-window-restorebox-disabled  + .v-window-closebox, .mateu .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 32px;
	padding-right: 0;
	border-bottom-left-radius: 4px;
}

.mateu .v-window-closebox-disabled  + .v-window-closebox:focus::after, .mateu .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .mateu .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .mateu .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 5px;
}

.mateu .v-window-maximizebox:before {
	content: "+";
}

.mateu .v-window-restorebox:before {
	content: "\2013";
}

.mateu .v-window > .popupContent, .mateu .v-window-wrap, .mateu .v-window-contents, .mateu .v-window-contents > .v-scrollable {
	height: 100%;
}

.mateu .v-window-contents {
	box-sizing: border-box;
	border-radius: 4px;
	margin-top: 0 !important;
}

.mateu .v-window-contents  > .v-scrollable {
	position: relative;
}

.mateu .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 11px;
}

.mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .mateu .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 11px;
}

.mateu .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.mateu .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;
}

.mateu .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #e4e4e4;
}

.mateu .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.mateu .v-window-footer {
	height: 0;
}

.mateu .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	cursor: nwse-resize;
}

.mateu .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.mateu .v-window-top-toolbar  > .v-widget, .mateu .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.mateu .v-window-top-toolbar .v-label, .mateu .v-window-bottom-toolbar .v-label {
	line-height: 31px;
}

.mateu .v-window-top-toolbar .v-spacing, .mateu .v-window-bottom-toolbar .v-spacing {
	width: 6px;
}

.mateu .v-window-top-toolbar.v-layout {
	padding: 6px 11px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	background-color: #ffffff;
}

.mateu .v-window-top-toolbar.v-menubar {
	margin: 11px 11px 5px;
}

.mateu .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 5px;
	padding-right: 5px;
	margin: 4px 0;
}

.mateu .v-window-bottom-toolbar.v-layout {
	padding: 6px 11px;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #f5f5f5 0, #ffffff 3px);
	background-image: linear-gradient(to bottom,#f5f5f5 0, #ffffff 3px);
	border-top: 1px solid #e4e4e4;
	border-radius: 0 0 4px 4px;
}

.mateu .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -11px -11px 0;
}

.mateu .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.mateu .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -6px -6px 0;
	padding: 0;
}

.mateu .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -11px -11px;
}

.mateu .v-tree {
	position: relative;
	white-space: nowrap;
}

.mateu .v-tree:focus {
	outline: none;
}

.mateu .v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 25px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.mateu .v-tree-node-caption {
	height: 25px;
	line-height: 24px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.mateu .v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.mateu .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;
}

.mateu .v-tree-node-caption span {
	padding-right: 25px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .mateu .v-tree-node-caption span {
	width: auto;
}

.mateu .v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.mateu .v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -25px;
	width: 100%;
	height: 25px;
	border-radius: 4px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

.mateu .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;
}

.mateu .v-tree-node-leaf:before, .mateu .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.mateu .v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid #e61a1a;
}

.mateu .v-tree-node-selected {
	color: #f8eded;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mateu .v-tree-node-selected:after {
	opacity: 1;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	border: none;
}

.mateu .v-tree-node-children {
	padding-left: 16px;
}

.mateu .v-tree-node-drag-top:before, .mateu .v-tree-node-drag-bottom:after, .mateu .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: #e61a1a;
	font-size: 28px;
	line-height: 2px;
	color: #e61a1a;
	text-indent: -4px;
	text-shadow: 0 0 1px #ffffff, 0 0 1px #ffffff;
	opacity: 1;
	visibility: visible;
}

.mateu .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.mateu .v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px #e61a1a;
	box-shadow: 0 0 0 2px #e61a1a;
	position: relative;
	border-radius: 4px;
}

.v-ff .mateu .v-tree-node-drag-top:before, .v-ff .mateu .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.mateu .v-tree8 {
	position: relative;
}

.mateu .v-tree8-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.mateu .v-tree8-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.mateu .v-tree8-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.mateu .v-tree8-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.mateu .v-tree8-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.mateu .v-tree8-header-deco, .mateu .v-tree8-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.mateu .v-tree8-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.mateu .v-tree8-header, .mateu .v-tree8-body, .mateu .v-tree8-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.mateu .v-tree8-header, .mateu .v-tree8-header-deco {
	top: 0;
}

.mateu .v-tree8-footer, .mateu .v-tree8-footer-deco {
	bottom: 0;
}

.mateu .v-tree8-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.mateu .v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.mateu .v-tree8-body .v-tree8-header > .v-tree8-row {
	position: relative;
}

.mateu .v-tree8-row {
	display: block;
}

.mateu .v-tree8-row  > td, .mateu .v-tree8-row  > th {
	background-color: white;
}

.mateu .v-tree8-row {
	width: inherit;
}

.mateu .v-tree8-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.mateu .v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.mateu .v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.mateu .v-tree8-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.mateu .v-tree8 {
	outline: none;
}

.mateu .v-tree8-scroller-vertical, .mateu .v-tree8-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.mateu .v-tree8-scroller-vertical {
	border-left: none;
}

.mateu .v-tree8-scroller-horizontal {
	border-top: none;
}

.mateu .v-tree8-tablewrapper {
	border: 1px solid #d4d4d4;
}

.mateu .v-tree8 .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.mateu .v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.mateu .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.mateu .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #e61a1a;
	position: absolute;
	width: 3px;
}

.mateu .v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #ffffff;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.mateu .v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.mateu .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;
}

.mateu .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.mateu .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

.mateu .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 12px;
}

.mateu .v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.mateu .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.mateu .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .mateu .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

.mateu .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.mateu .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.mateu .v-tree8-cell {
	background-color: white;
	padding: 0 16.5px;
	line-height: 32px;
	text-overflow: ellipsis;
}

.mateu .v-tree8-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.mateu .v-tree8-cell  > div {
	display: inline-block;
}

.mateu .v-tree8-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.mateu .v-tree8-cell.frozen  + th, .mateu .v-tree8-cell.frozen  + td {
	border-left: none;
}

.mateu .v-tree8-cell div.component-wrap {
	width: 100%;
}

.mateu .v-tree8-row > td, .mateu .v-tree8-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.mateu .v-tree8-row > td:first-child, .mateu .v-tree8-editor-cells > div:first-child {
	border-left: none;
}

.mateu .v-tree8-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.mateu .v-tree8-row-stripe > td {
	background-color: #f5f5f5;
}

.mateu .v-tree8-row-selected > td {
	background: #e61a1a;
}

.mateu .v-tree8-row-focused > td {
	
}

.mateu .v-tree8-header th {
	position: relative;
	background-color: #ffffff;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.mateu .v-tree8-header th:first-child {
	border-left: none;
}

.mateu .v-tree8-header .sort-asc, .mateu .v-tree8-header .sort-desc {
	padding-right: 30.5px;
}

.mateu .v-tree8-header .sort-asc:after, .mateu .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 16.5px;
	font-size: 10px;
}

.mateu .v-tree8-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.mateu .v-tree8-column-resize-handle {
	position: absolute;
	width: 33px;
	right: -16.5px;
	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;
}

.mateu .v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 16.5px;
	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;
}

.mateu .v-tree8-footer td {
	background-color: #ffffff;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.mateu .v-tree8-footer td:first-child {
	border-left: none;
}

.mateu .v-tree8-header .v-tree8-cell, .mateu .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

.mateu .v-tree8-column-header-content, .mateu .v-tree8-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	vertical-align: baseline;
}

.mateu .v-tree8-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #ffffff;
}

.mateu .v-tree8-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #ffffff;
}

.mateu .v-tree8-horizontal-scrollbar-deco {
	background-color: #ffffff;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.mateu .v-tree8-cell-focused {
	position: relative;
}

.mateu .v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #e61a1a;
	display: none;
	pointer-events: none;
}

.mateu .v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.mateu .v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.mateu .v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	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);
}

.mateu .v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.mateu .v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.mateu .v-tree8-editor-cells.frozen {
	z-index: 2;
}

.mateu .v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.mateu .v-tree8-editor-cells  > div:first-child {
	border-left: none;
}

.mateu .v-tree8-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.mateu .v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.mateu .v-tree8-editor-cells  > div input[type="text"], .mateu .v-tree8-editor-cells  > div input[type="text"].v-filterselect-input, .mateu .v-tree8-editor-cells  > div input[type="password"] {
	padding-left: 16.5px;
}

.mateu .v-tree8-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .mateu .v-tree8-editor-cells  > div input[type="password"] {
	padding-right: 8.25px;
}

.mateu .v-tree8-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 16.5px;
}

.mateu .v-tree8-editor-cells  > div .v-textfield, .mateu .v-tree8-editor-cells  > div .v-datefield, .mateu .v-tree8-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.mateu .v-tree8-editor-cells  > div .v-select, .mateu .v-tree8-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.mateu .v-tree8-editor-cells  > div.not-editable.v-tree8-cell {
	float: none;
}

.mateu .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;
}

.mateu .v-tree8-editor-cells .error, .mateu .v-tree8-editor-cells .error > input {
	background-color: #fee;
}

.mateu .v-tree8-editor-footer {
	display: table;
	height: 32px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.mateu .v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.mateu .v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.mateu .v-tree8-editor-message, .mateu .v-tree8-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.mateu .v-tree8-editor-message {
	width: 100%;
	position: relative;
}

.mateu .v-tree8-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	top: 0;
}

.mateu .v-tree8-editor-save {
	margin-right: 4px;
}

.mateu .v-tree8-spacer {
	padding-left: 1px;
}

.mateu .v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.mateu .v-tree8-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.mateu .v-tree8-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.mateu .v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #e61a1a;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.mateu .v-tree8-cell > .v-progressbar {
	width: 100%;
}

.mateu .v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #ffffff;
}

.mateu .v-tree8.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-tree8-header .v-tree8-cell {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mateu .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;
}

.mateu .v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -16px;
}

.mateu .v-tree8-footer .v-tree8-cell {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mateu .v-tree8-header-deco {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-tree8-footer-deco, .mateu .v-tree8-horizontal-scrollbar-deco {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-tree8-row-selected  > .v-tree8-cell {
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: #eec9c9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #b81e1e;
}

.mateu .v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #f07575;
}

.mateu .v-tree8-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	border-color: #e61a1a;
}

.mateu .v-tree8-editor-footer {
	font-size: 12px;
	padding: 0 6px;
	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;
}

.mateu .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;
}

.mateu .v-tree8-editor-cells {
	z-index: 1;
}

.mateu .v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mateu .v-tree8-editor-cells > div.not-editable.v-tree8-cell {
	float: none;
}

.mateu .v-tree8-editor-cells > div .error::before {
	border-top: 8px solid #ed473b;
	border-right: 8px solid transparent;
}

.mateu .v-tree8-editor-cells > div .error, .mateu .v-tree8-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.mateu .v-tree8-editor-cells > div .v-textfield, .mateu .v-tree8-editor-cells > div .v-textfield-focus, .mateu .v-tree8-editor-cells > div .v-datefield, .mateu .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .mateu .v-tree8-editor-cells > div .v-filterselect-input, .mateu .v-tree8-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7;
	box-shadow: inset 0 1px 0 #f7f7f7;
}

.mateu .v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 38.4px;
}

.mateu .v-tree8-editor-cells > div .v-textfield-focus, .mateu .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .mateu .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.mateu .v-tree8-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.mateu .v-tree8-editor-cells > div .v-checkbox.v-widget {
	margin: 0 8px 0 16.5px;
}

.mateu .v-tree8-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.mateu .v-tree8-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.mateu .v-tree8-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 16px;
	text-align: center;
	content: "!";
}

.mateu .v-tree8-editor-save, .mateu .v-tree8-editor-cancel {
	cursor: pointer;
	color: #e61a1a;
	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: 6px 6px;
	margin: 0;
	outline: none;
}

.mateu .v-tree8-editor-save:hover, .mateu .v-tree8-editor-cancel:hover {
	color: #eb4747;
}

.mateu .v-tree8-editor-save.v-disabled, .mateu .v-tree8-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-tree8-spacer {
	margin-top: -1px;
}

.mateu .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.mateu .v-tree8-sidebar.v-contextmenu.closed {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.mateu .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;
}

.mateu .v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.mateu .v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.mateu .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;
}

.mateu .v-tree8-row-drag-top, .mateu .v-tree8-row-drag-bottom {
	z-index: 100;
}

.mateu .v-tree8-row-drag-top:before, .mateu .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #e61a1a;
	pointer-events: none;
	border: none;
}

.mateu .v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.mateu .v-tree8-row-drag-top:before {
	top: -1px;
}

.mateu .v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.mateu .v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #e61a1a;
	pointer-events: none;
}

.mateu .v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #b81414;
}

.mateu .v-tree8-row-selected.v-tree8-row-drag-top:before, .mateu .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #b81414;
}

.mateu .v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #e61a1a;
	z-index: 100;
}

.mateu .v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.mateu .v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.mateu .v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.mateu .v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.mateu .v-tree8-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.mateu .v-tree8-node.depth-0 {
	padding-left: 0em;
}

.mateu .v-tree8-node.depth-1 {
	padding-left: 1em;
}

.mateu .v-tree8-node.depth-2 {
	padding-left: 2em;
}

.mateu .v-tree8-node.depth-3 {
	padding-left: 3em;
}

.mateu .v-tree8-node.depth-4 {
	padding-left: 4em;
}

.mateu .v-tree8-node.depth-5 {
	padding-left: 5em;
}

.mateu .v-tree8-node.depth-6 {
	padding-left: 6em;
}

.mateu .v-tree8-node.depth-7 {
	padding-left: 7em;
}

.mateu .v-tree8-node.depth-8 {
	padding-left: 8em;
}

.mateu .v-tree8-node.depth-9 {
	padding-left: 9em;
}

.mateu .v-tree8-node.depth-10 {
	padding-left: 10em;
}

.mateu .v-tree8-node.depth-11 {
	padding-left: 11em;
}

.mateu .v-tree8-node.depth-12 {
	padding-left: 12em;
}

.mateu .v-tree8-node.depth-13 {
	padding-left: 13em;
}

.mateu .v-tree8-node.depth-14 {
	padding-left: 14em;
}

.mateu .v-tree8-node.depth-15 {
	padding-left: 15em;
}

.mateu .v-tree8-node.depth-16 {
	padding-left: 16em;
}

.mateu .v-tree8-node.depth-17 {
	padding-left: 17em;
}

.mateu .v-tree8-node.depth-18 {
	padding-left: 18em;
}

.mateu .v-tree8-node.depth-19 {
	padding-left: 19em;
}

.mateu .v-tree8-node.depth-20 {
	padding-left: 20em;
}

.mateu .v-tree8-node.depth-21 {
	padding-left: 21em;
}

.mateu .v-tree8-node.depth-22 {
	padding-left: 22em;
}

.mateu .v-tree8-node.depth-23 {
	padding-left: 23em;
}

.mateu .v-tree8-node.depth-24 {
	padding-left: 24em;
}

.mateu .v-tree8-node.depth-25 {
	padding-left: 25em;
}

.mateu .v-tree8-node.depth-26 {
	padding-left: 26em;
}

.mateu .v-tree8-node.depth-27 {
	padding-left: 27em;
}

.mateu .v-tree8-node.depth-28 {
	padding-left: 28em;
}

.mateu .v-tree8-node.depth-29 {
	padding-left: 29em;
}

.mateu .v-tree8-node.depth-30 {
	padding-left: 30em;
}

.mateu .v-tree8-node.depth-31 {
	padding-left: 31em;
}

.mateu .v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.mateu .v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #e61a1a;
	display: none;
	pointer-events: none;
}

.mateu .v-tree8-cell-focused {
	position: static;
}

.mateu .v-tree8-cell-focused::before {
	display: none;
}

.mateu .v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.mateu .v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.mateu .v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.mateu .v-tree8 {
	background-color: transparent;
}

.mateu .v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.mateu .v-tree8-row > td  > * {
	vertical-align: baseline;
}

.mateu .v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.mateu .v-tree8-row::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	pointer-events: none;
	border-width: 1px;
}

.mateu .v-tree8-cell {
	position: relative;
}

.mateu .v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.mateu .v-tree8-row-selected::before {
	display: block;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
}

.mateu .v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #eec9c9;
}

.mateu .v-tree8-scroller-vertical {
	border: none;
}

.mateu .v-tree8-scroller-horizontal {
	border: none;
}

.mateu .v-tree8-header-deco, .mateu .v-tree8-footer-deco, .mateu .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.mateu .v-treegrid {
	position: relative;
}

.mateu .v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.mateu .v-treegrid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.mateu .v-treegrid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.mateu .v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.mateu .v-treegrid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.mateu .v-treegrid-header-deco, .mateu .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.mateu .v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.mateu .v-treegrid-header, .mateu .v-treegrid-body, .mateu .v-treegrid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.mateu .v-treegrid-header, .mateu .v-treegrid-header-deco {
	top: 0;
}

.mateu .v-treegrid-footer, .mateu .v-treegrid-footer-deco {
	bottom: 0;
}

.mateu .v-treegrid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.mateu .v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.mateu .v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.mateu .v-treegrid-row {
	display: block;
}

.mateu .v-treegrid-row  > td, .mateu .v-treegrid-row  > th {
	background-color: white;
}

.mateu .v-treegrid-row {
	width: inherit;
}

.mateu .v-treegrid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.mateu .v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.mateu .v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.mateu .v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.mateu .v-treegrid {
	outline: none;
}

.mateu .v-treegrid-scroller-vertical, .mateu .v-treegrid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.mateu .v-treegrid-scroller-vertical {
	border-left: none;
}

.mateu .v-treegrid-scroller-horizontal {
	border-top: none;
}

.mateu .v-treegrid-tablewrapper {
	border: 1px solid #d4d4d4;
}

.mateu .v-treegrid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.mateu .v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.mateu .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.mateu .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #e61a1a;
	position: absolute;
	width: 3px;
}

.mateu .v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #ffffff;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.mateu .v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.mateu .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;
}

.mateu .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.mateu .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.mateu .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 12px;
}

.mateu .v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.mateu .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.mateu .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .mateu .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

.mateu .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.mateu .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.mateu .v-treegrid-cell {
	background-color: white;
	padding: 0 16.5px;
	line-height: 32px;
	text-overflow: ellipsis;
}

.mateu .v-treegrid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.mateu .v-treegrid-cell  > div {
	display: inline-block;
}

.mateu .v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.mateu .v-treegrid-cell.frozen  + th, .mateu .v-treegrid-cell.frozen  + td {
	border-left: none;
}

.mateu .v-treegrid-cell div.component-wrap {
	width: 100%;
}

.mateu .v-treegrid-row > td, .mateu .v-treegrid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.mateu .v-treegrid-row > td:first-child, .mateu .v-treegrid-editor-cells > div:first-child {
	border-left: none;
}

.mateu .v-treegrid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.mateu .v-treegrid-row-stripe > td {
	background-color: #f5f5f5;
}

.mateu .v-treegrid-row-selected > td {
	background: #e61a1a;
}

.mateu .v-treegrid-row-focused > td {
	
}

.mateu .v-treegrid-header th {
	position: relative;
	background-color: #ffffff;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.mateu .v-treegrid-header th:first-child {
	border-left: none;
}

.mateu .v-treegrid-header .sort-asc, .mateu .v-treegrid-header .sort-desc {
	padding-right: 30.5px;
}

.mateu .v-treegrid-header .sort-asc:after, .mateu .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 16.5px;
	font-size: 10px;
}

.mateu .v-treegrid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.mateu .v-treegrid-column-resize-handle {
	position: absolute;
	width: 33px;
	right: -16.5px;
	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;
}

.mateu .v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 16.5px;
	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;
}

.mateu .v-treegrid-footer td {
	background-color: #ffffff;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.mateu .v-treegrid-footer td:first-child {
	border-left: none;
}

.mateu .v-treegrid-header .v-treegrid-cell, .mateu .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

.mateu .v-treegrid-column-header-content, .mateu .v-treegrid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	vertical-align: baseline;
}

.mateu .v-treegrid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #ffffff;
}

.mateu .v-treegrid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #ffffff;
}

.mateu .v-treegrid-horizontal-scrollbar-deco {
	background-color: #ffffff;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.mateu .v-treegrid-cell-focused {
	position: relative;
}

.mateu .v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #e61a1a;
	display: none;
	pointer-events: none;
}

.mateu .v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.mateu .v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.mateu .v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	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);
}

.mateu .v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.mateu .v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.mateu .v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.mateu .v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.mateu .v-treegrid-editor-cells  > div:first-child {
	border-left: none;
}

.mateu .v-treegrid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.mateu .v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.mateu .v-treegrid-editor-cells  > div input[type="text"], .mateu .v-treegrid-editor-cells  > div input[type="text"].v-filterselect-input, .mateu .v-treegrid-editor-cells  > div input[type="password"] {
	padding-left: 16.5px;
}

.mateu .v-treegrid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .mateu .v-treegrid-editor-cells  > div input[type="password"] {
	padding-right: 8.25px;
}

.mateu .v-treegrid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 16.5px;
}

.mateu .v-treegrid-editor-cells  > div .v-textfield, .mateu .v-treegrid-editor-cells  > div .v-datefield, .mateu .v-treegrid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.mateu .v-treegrid-editor-cells  > div .v-select, .mateu .v-treegrid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.mateu .v-treegrid-editor-cells  > div.not-editable.v-treegrid-cell {
	float: none;
}

.mateu .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;
}

.mateu .v-treegrid-editor-cells .error, .mateu .v-treegrid-editor-cells .error > input {
	background-color: #fee;
}

.mateu .v-treegrid-editor-footer {
	display: table;
	height: 32px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.mateu .v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.mateu .v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.mateu .v-treegrid-editor-message, .mateu .v-treegrid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.mateu .v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

.mateu .v-treegrid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	top: 0;
}

.mateu .v-treegrid-editor-save {
	margin-right: 4px;
}

.mateu .v-treegrid-spacer {
	padding-left: 1px;
}

.mateu .v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.mateu .v-treegrid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.mateu .v-treegrid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.mateu .v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #e61a1a;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.mateu .v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.mateu .v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #ffffff;
}

.mateu .v-treegrid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-treegrid-header .v-treegrid-cell {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mateu .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;
}

.mateu .v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -16px;
}

.mateu .v-treegrid-footer .v-treegrid-cell {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mateu .v-treegrid-header-deco {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-treegrid-footer-deco, .mateu .v-treegrid-horizontal-scrollbar-deco {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: #eec9c9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #b81e1e;
}

.mateu .v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #f07575;
}

.mateu .v-treegrid-editor {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	border-color: #e61a1a;
}

.mateu .v-treegrid-editor-footer {
	font-size: 12px;
	padding: 0 6px;
	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;
}

.mateu .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;
}

.mateu .v-treegrid-editor-cells {
	z-index: 1;
}

.mateu .v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mateu .v-treegrid-editor-cells > div.not-editable.v-treegrid-cell {
	float: none;
}

.mateu .v-treegrid-editor-cells > div .error::before {
	border-top: 8px solid #ed473b;
	border-right: 8px solid transparent;
}

.mateu .v-treegrid-editor-cells > div .error, .mateu .v-treegrid-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.mateu .v-treegrid-editor-cells > div .v-textfield, .mateu .v-treegrid-editor-cells > div .v-textfield-focus, .mateu .v-treegrid-editor-cells > div .v-datefield, .mateu .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .mateu .v-treegrid-editor-cells > div .v-filterselect-input, .mateu .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7;
	box-shadow: inset 0 1px 0 #f7f7f7;
}

.mateu .v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 38.4px;
}

.mateu .v-treegrid-editor-cells > div .v-textfield-focus, .mateu .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .mateu .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.mateu .v-treegrid-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.mateu .v-treegrid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 8px 0 16.5px;
}

.mateu .v-treegrid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.mateu .v-treegrid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.mateu .v-treegrid-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 16px;
	text-align: center;
	content: "!";
}

.mateu .v-treegrid-editor-save, .mateu .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #e61a1a;
	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: 6px 6px;
	margin: 0;
	outline: none;
}

.mateu .v-treegrid-editor-save:hover, .mateu .v-treegrid-editor-cancel:hover {
	color: #eb4747;
}

.mateu .v-treegrid-editor-save.v-disabled, .mateu .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-treegrid-spacer {
	margin-top: -1px;
}

.mateu .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.mateu .v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
}

.mateu .v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.mateu .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;
}

.mateu .v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.mateu .v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.mateu .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;
}

.mateu .v-treegrid-row-drag-top, .mateu .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.mateu .v-treegrid-row-drag-top:before, .mateu .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #e61a1a;
	pointer-events: none;
	border: none;
}

.mateu .v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.mateu .v-treegrid-row-drag-top:before {
	top: -1px;
}

.mateu .v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.mateu .v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #e61a1a;
	pointer-events: none;
}

.mateu .v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #b81414;
}

.mateu .v-treegrid-row-selected.v-treegrid-row-drag-top:before, .mateu .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #b81414;
}

.mateu .v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #e61a1a;
	z-index: 100;
}

.mateu .v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.mateu .v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.mateu .v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.mateu .v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.mateu .v-treegrid-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.mateu .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.mateu .v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.mateu .v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.mateu .v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.mateu .v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.mateu .v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.mateu .v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.mateu .v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.mateu .v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.mateu .v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.mateu .v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.mateu .v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.mateu .v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.mateu .v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.mateu .v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.mateu .v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.mateu .v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.mateu .v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.mateu .v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.mateu .v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.mateu .v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.mateu .v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.mateu .v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.mateu .v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.mateu .v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.mateu .v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.mateu .v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.mateu .v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.mateu .v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.mateu .v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.mateu .v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.mateu .v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.mateu .v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.mateu .v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #e61a1a;
	display: none;
	pointer-events: none;
}

.mateu .v-treegrid-cell-focused {
	position: static;
}

.mateu .v-treegrid-cell-focused::before {
	display: none;
}

.mateu .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.mateu .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.mateu .v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.mateu .v-table {
	position: relative;
	background: #ffffff;
	color: #474747;
	overflow: hidden;
}

.mateu .v-table-header table, .mateu .v-table-footer table, .mateu .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4d4d4;
	box-shadow: 0 0 0 1px #d4d4d4;
}

.mateu .v-table-header-wrap, .mateu .v-table-footer-wrap, .mateu .v-table-header-drag {
	border: 1px solid #d4d4d4;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	white-space: nowrap;
	font-size: 12px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mateu .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.mateu .v-table-footer-wrap {
	border-top: none;
}

.mateu .v-table-footer td {
	border-left: 1px solid #d4d4d4;
}

.mateu .v-table-footer-container, .mateu .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 32px;
	box-sizing: border-box;
}

.mateu .v-table-footer-container {
	padding: 9px 11px 10px;
	float: right;
}

.mateu [class^="v-table-header-cell"] {
	position: relative;
}

.mateu .v-table-caption-container, .mateu .v-table-header-drag {
	padding: 10px 11px 9px;
	border-left: 1px solid #d4d4d4;
}

.mateu .v-table-caption-container-align-right {
	padding-right: 4px;
}

.mateu .v-table-resizer {
	height: 32px;
	width: 7px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -7px;
}

.mateu .v-table-cell-content {
	border-left: 1px solid #d4d4d4;
	overflow: hidden;
	height: 33px;
	vertical-align: middle;
}

.mateu .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.mateu .v-table-header td:first-child .v-table-caption-container, .mateu .v-table-footer td:first-child {
	border-left-color: transparent;
}

.mateu .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 11px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.mateu .v-table-cell-wrapper  > .v-widget {
	margin: 3px -6px;
}

.mateu .v-table-cell-wrapper  > .v-widget.v-label, .mateu .v-table-cell-wrapper  > .v-widget.v-checkbox, .mateu .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.mateu .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.mateu .v-table-body {
	border: 1px solid #d4d4d4;
	overflow-anchor: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.mateu .v-table-table {
	background-color: white;
	white-space: nowrap;
}

.mateu .v-table-table td {
	border-top: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.mateu .v-table-table tr:first-child > td {
	height: 32px;
	border-top: none;
}

.mateu .v-table-row {
	background-color: white;
	cursor: pointer;
}

.mateu .v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.mateu .v-table-body-noselection .v-table-row, .mateu .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.mateu .v-table [class*="-row"].v-selected {
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	background-origin: border-box;
	color: #f8eded;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mateu .v-table [class*="-row"].v-selected  + .v-selected {
	background: #da1616;
}

.mateu .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #da1616;
}

.mateu .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #b81e1e;
}

.mateu .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.mateu .v-table-header-cell-asc .v-table-sort-indicator, .mateu .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 16px;
	height: 32px;
	line-height: 32px;
	margin-left: -16px;
}

.mateu .v-table-header-cell-asc .v-table-sort-indicator:before, .mateu .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.mateu .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.mateu .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.mateu [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.mateu .v-table-focus {
	outline: 1px solid #e61a1a;
	outline-offset: -1px;
}

.mateu .v-drag-element.v-table-focus, .mateu .v-drag-element .v-table-focus {
	outline: none;
}

.mateu .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -16px;
	z-index: 30000;
	line-height: 1;
}

.mateu .v-table-focus-slot-right {
	border-right: 3px solid #e61a1a;
	right: -2px;
	margin-left: -10px !important;
}

.mateu .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #e61a1a;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -10px;
}

.mateu .v-table-column-selector {
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 16px;
	height: 16px;
	line-height: 16px;
	padding: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-radius: 0 0 0 4px;
	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;
}

.mateu .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-table-column-selector:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.mateu .v-table-column-selector:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.mateu .v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.mateu .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.mateu .v-on:before, .mateu .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 5px;
}

.mateu .v-on div, .mateu .v-off div {
	display: inline;
}

.mateu .v-on.v-disabled, .mateu .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-off:before {
	visibility: hidden;
}

.mateu tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.mateu 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: 4px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.mateu .v-table-body {
	position: relative;
	z-index: 1;
}

.mateu .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 32px;
	line-height: 32px;
	margin: -16px 0 0 !important;
	text-align: center;
}

.mateu .v-table-drag {
	overflow: visible;
}

.mateu .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	border-color: #e61a1a;
}

.mateu .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.mateu .v-table-row-drag-middle .v-table-cell-content {
	background-color: #fad1d1;
	color: #611f1f;
}

.mateu .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #e61a1a;
	height: 31px;
}

.mateu .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.mateu .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #e61a1a;
	height: 32px;
}

.mateu .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.mateu .v-table-no-stripes .v-table-row, .mateu .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.mateu .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.mateu .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 12px;
}

.mateu .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.mateu .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .mateu .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 32px;
}

.mateu .v-table-no-header .v-table-header-wrap {
	display: none;
}

.mateu .v-table-borderless .v-table-header-wrap, .mateu .v-table-borderless .v-table-footer-wrap, .mateu .v-table-borderless .v-table-header-drag, .mateu .v-table-borderless .v-table-body {
	border: none;
}

.mateu .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9d9d9;
}

.mateu .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9d9d9;
}

.mateu .v-table-compact .v-table-header-wrap, .mateu .v-table-compact .v-table-footer-wrap, .mateu .v-table-compact .v-table-header-drag, .mateu .v-table-small .v-table-header-wrap, .mateu .v-table-small .v-table-footer-wrap, .mateu .v-table-small .v-table-header-drag {
	font-size: 12px;
}

.mateu .v-table-compact .v-table-footer-container, .mateu .v-table-small .v-table-footer-container {
	padding: 7px 7px 8px;
}

.mateu .v-table-compact .v-table-caption-container, .mateu .v-table-compact .v-table-header-drag, .mateu .v-table-small .v-table-caption-container, .mateu .v-table-small .v-table-header-drag {
	padding-top: 8px;
	padding-bottom: 7px;
	padding-left: 6px;
	padding-right: 6px;
}

.mateu .v-table-compact .v-table-caption-container-align-right, .mateu .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.mateu .v-table-compact .v-table-resizer, .mateu .v-table-small .v-table-resizer {
	height: 27px;
}

.mateu .v-table-compact .v-table-cell-content, .mateu .v-table-small .v-table-cell-content {
	height: 27px;
}

.mateu .v-table-compact .v-table-cell-wrapper, .mateu .v-table-small .v-table-cell-wrapper {
	padding-left: 6px;
	padding-right: 6px;
}

.mateu .v-table-compact .v-table-cell-wrapper  > .v-widget, .mateu .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 2px -3px;
}

.mateu .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .mateu .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .mateu .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .mateu .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .mateu .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .mateu .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.mateu .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .mateu .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.mateu .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .mateu .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .mateu .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .mateu .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 27px;
	line-height: 27px;
}

.mateu .v-table-compact .v-table-header-drag, .mateu .v-table-small .v-table-header-drag {
	margin-top: -14px;
}

.mateu .v-table-compact.v-treetable .v-table-cell-wrapper, .mateu .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 14px;
}

.mateu .v-table-compact.v-treetable .v-table-cell-content, .mateu .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 6px;
	padding-right: 6px;
}

.mateu .v-table-compact.v-treetable .v-table-cell-content:first-child, .mateu .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 7px;
}

.mateu .v-table-compact.v-treetable .v-table-footer-container, .mateu .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 6px;
	padding-right: 6px;
}

.mateu .v-table-compact .v-table-row-drag-top .v-table-cell-content, .mateu .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .mateu .v-table-small .v-table-row-drag-top .v-table-cell-content, .mateu .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 26px;
}

.mateu .v-table-small {
	font-size: 12px;
}

.mateu .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 12px;
}

.mateu .v-treetable [class*="caption-container"], .mateu .v-treetable [class*="footer-container"], .mateu .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.mateu .v-treetable [class*="caption-container"], .mateu .v-treetable [class*="footer-container"] {
	min-height: 13px;
}

.mateu .v-treetable [class*="cell-wrapper"] {
	min-height: 14px;
}

.mateu .v-treetable [class*="caption-container"] {
	padding-left: 11px;
}

.mateu .v-treetable [class*="caption-container-align-right"] {
	padding-left: 18px;
}

.mateu .v-treetable [class*="footer-container"] {
	padding-right: 11px;
}

.mateu .v-treetable [class*="cell-content"] {
	padding-left: 11px;
	padding-right: 11px;
}

.mateu .v-treetable [class*="cell-content"]:first-child {
	padding-left: 12px;
}

.mateu .v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 16px !important;
	margin-left: -22px;
	text-align: center;
	cursor: pointer;
}

.mateu .v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.mateu .v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -5px;
	right: -5px;
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(left, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to right,white 2%, #f4f4f4 98%);
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.mateu .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.mateu .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -5px;
	bottom: -5px;
}

.mateu .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.mateu .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.mateu .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 11px;
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(left, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to right,white 2%, #f4f4f4 98%);
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #dedede;
	border-top-color: #bebebe;
	border-left-color: #bebebe;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 32px;
	margin-left: -1px;
	margin-top: -16px;
}

.mateu .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 11px;
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 11px;
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #dedede;
	border-top-color: #bebebe;
	border-left-color: #bebebe;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 0;
	margin-left: -16px;
	margin-top: -1px;
}

.mateu .v-progressbar-wrapper {
	border-radius: 4px;
	height: 8px;
	background-color: #d9d9d9;
	background-image: -webkit-linear-gradient(bottom, #dcdcdc 2%, #cccccc 98%);
	background-image: linear-gradient(to top,#dcdcdc 2%, #cccccc 98%);
	box-sizing: border-box;
	min-width: 64px;
}

.mateu .v-progressbar-indicator {
	border-radius: 4px;
	height: inherit;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	
	
	border: 1px solid #b51414;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 8px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.mateu .v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.mateu .v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 4px;
	height: inherit;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	
	
	border: 1px solid #b51414;
	box-sizing: border-box;
	max-width: 100%;
	width: 8px;
	vertical-align: top;
}

.mateu .v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 26, 26, 0.2);
	border-top-color: #e61a1a;
	border-right-color: #e61a1a;
	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;
}

.mateu .v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.mateu .v-slider {
	position: relative;
}

.mateu .v-slider:focus {
	outline: none;
}

.mateu .v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

.mateu .v-slider.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-slider-base {
	border-radius: 4px;
	height: 8px;
	background-color: #d9d9d9;
	background-image: -webkit-linear-gradient(bottom, #dcdcdc 2%, #cccccc 98%);
	background-image: linear-gradient(to top,#dcdcdc 2%, #cccccc 98%);
	box-sizing: border-box;
	min-width: 64px;
	height: 4px;
	margin: 14px 9px;
	white-space: nowrap;
	overflow: hidden;
	
}

.mateu .v-slider-base:before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 9px;
	width: 8px;
	border-radius: 4px;
	border-left: 1px solid #b51414;
}

.mateu .v-slider-base:after {
	border-radius: 4px;
	height: inherit;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	
	
	border: 1px solid #b51414;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.mateu .v-has-width > .v-slider-base {
	min-width: 0;
}

.mateu .v-slider-handle {
	margin-top: -14px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.mateu .v-slider-handle:before {
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 4px;
	border: 1px solid #c9c9c9;
	border-top-color: #c9c9c9;
	border-bottom-color: silver;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mateu .v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.mateu .v-slider-handle:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.mateu .v-slider-handle:before:focus:after {
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-slider-handle:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-slider-handle:after {
	border: 1px solid #c9c9c9;
	border-color: #e61a1a;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.mateu .v-slider-handle:before, .mateu .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: 7px;
	margin-left: -9px;
}

.mateu .v-slider-feedback {
	background-color: rgba(51, 51, 51, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 4px 8px;
	border-radius: 3px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

.mateu .v-slider-vertical {
	padding: 9px 0;
	height: 82px;
}

.mateu .v-slider-vertical .v-slider-base {
	background-color: #d9d9d9;
	background-image: -webkit-linear-gradient(right, #dcdcdc 2%, #cccccc 98%);
	background-image: linear-gradient(to left,#dcdcdc 2%, #cccccc 98%);
	width: 4px;
	height: 100% !important;
	min-width: 0;
	margin: 0 14px;
}

.mateu .v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 9px;
	left: 14px;
	right: 14px;
	width: auto;
	height: 8px;
	border-left: none;
	border-bottom: 1px solid #b51414;
}

.mateu .v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(left, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to right,#e81c1c 2%, #da1616 98%);
}

.mateu .v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 32px;
	display: block;
}

.mateu .v-slider-vertical .v-slider-handle:before, .mateu .v-slider-vertical .v-slider-handle:after {
	width: 18px;
	height: 18px;
	margin-top: -9px;
	margin-left: -7px;
}

.mateu .v-slider-no-indicator .v-slider-base:before, .mateu .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.mateu .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.mateu .v-tabsheet-spacertd {
	display: none !important;
}

.mateu .v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.mateu .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #e4e4e4;
	bottom: 0;
	left: 0;
	right: 0;
}

.mateu .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.mateu .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.mateu .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.mateu .v-tabsheet-tabitemcell .v-caption {
	margin-left: 16px;
	padding: 0 3px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 32px;
	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;
}

.mateu .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.mateu .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 8px;
}

.mateu .v-tabsheet-tabitemcell .v-caption:hover {
	color: #e61a1a;
}

.mateu .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.mateu .v-tabsheet-tabitemcell:first-child .v-caption, .mateu .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.mateu .v-tabsheet-tabitemcell:not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 16px;
}

.mateu .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.mateu .v-tabsheet-tabitemcell:focus .v-caption {
	color: #e61a1a;
}

.mateu .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #e61a1a;
	color: #e61a1a;
}

.mateu .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 18px;
}

.mateu .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 3px;
}

.mateu .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: 2px;
	color: #999999;
}

.mateu .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #e61a1a;
}

.mateu .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #e61a1a;
	color: #eec9c9;
}

.mateu .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 16px;
	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;
}

.mateu .v-tabsheet-scroller:after {
	content: "";
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #e4e4e4 70%, rgba(228, 228, 228, 0) 100%);
	background-image: linear-gradient(to left,#e4e4e4 70%, rgba(228, 228, 228, 0) 100%);
}

.mateu .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) ;
}

.mateu .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #e61a1a;
}

.mateu .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #e61a1a;
}

.mateu .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mateu .v-tabsheet-scroller [class*="Next"] {
	padding-left: 4px;
}

.mateu .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.mateu .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 4px;
}

.mateu .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.mateu .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.mateu .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;
}

.mateu .v-tabsheet-deco {
	height: 16px !important;
	width: 16px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 26, 26, 0.2);
	border-top-color: #e61a1a;
	border-right-color: #e61a1a;
	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: -24px;
	left: 50%;
	margin-left: -8px;
}

.mateu .v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.mateu .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .mateu .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .mateu .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.mateu .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.mateu .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.mateu .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 3px;
	padding: 0 11px;
	background-color: #ffffff;
	border: 1px solid transparent;
	line-height: 31px;
	border-radius: 4px 4px 0 0;
	font-weight: 400;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	transition: background-color 160ms;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f7f7f7;
	border-bottom-color: #e4e4e4;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #ffffff;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 26px;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 3px;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #e4e4e4;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #e4e4e4;
	border-bottom: none;
	padding-bottom: 1px;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #e4e4e4;
	border-top: none;
}

.mateu .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.mateu .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #e4e4e4;
	border-bottom: none;
	background: #ffffff;
	padding-top: 5px;
}

.mateu .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 6px;
}

.mateu .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.mateu .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.mateu .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.mateu .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.mateu .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 8px;
}

.mateu .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1.2;
}

.mateu .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.mateu .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.mateu .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 11px;
}

.mateu .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.mateu .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.mateu .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.mateu .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.mateu .v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.mateu .v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 8px;
}

.mateu .v-colorpicker-popup [class$="sliders"] {
	padding: 11px;
}

.mateu .v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.mateu .v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 42px;
}

.mateu .v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -42px;
	width: 42px;
}

.mateu .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 70px;
}

.mateu .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -70px;
	width: 70px;
}

.mateu .v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.mateu .v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.mateu .v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.mateu .v-colorpicker-popup .resize-button-caption {
	display: none;
}

.mateu .v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 8px 0;
	background-color: #ffffff;
	border-top: 1px solid #f2f2f2;
}

.mateu .v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.mateu .v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.mateu .v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 8px;
	display: inline-flex;
}

.mateu .v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.mateu .v-colorpicker {
	width: auto;
}

.mateu .v-colorpicker-button-color {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 19px;
}

.mateu .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 16px;
}

.mateu .v-panel {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d9d9d9;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	overflow: visible !important;
}

.mateu .v-panel-caption {
	box-sizing: border-box;
	padding: 0 11px;
	line-height: 31px;
	border-bottom: 1px solid #d9d9d9;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #fcfcfc 98%);
	background-image: linear-gradient(to bottom,white 2%, #fcfcfc 98%);
	color: #474747;
	font-weight: 400;
	font-size: 13px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f4f4f4;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f4f4f4;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 3px 3px 0 0;
}

.mateu .v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.mateu .v-panel-content  > .v-margin-top {
	padding-top: 11px;
}

.mateu .v-panel-content  > .v-margin-right {
	padding-right: 11px;
}

.mateu .v-panel-content  > .v-margin-bottom {
	padding-bottom: 11px;
}

.mateu .v-panel-content  > .v-margin-left {
	padding-left: 11px;
}

.mateu .v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 11px;
	border-bottom: none;
}

.mateu .v-panel-well {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	border: 1px solid #c9c9c9;
}

.mateu .v-panel-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.mateu .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e4e4e4;
	border-color: rgba(201, 201, 201, 0.5);
}

.mateu .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;
}

.mateu .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.mateu .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.mateu .v-panel-caption.v-horizontallayout .v-label {
	line-height: 32px;
}

.mateu .v-accordion {
	background: white;
	color: #474747;
	border-radius: 4px;
	border: 1px solid #d9d9d9;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #fefefe 2%, #f8f8f8 98%);
	background-image: linear-gradient(to bottom,#fefefe 2%, #f8f8f8 98%);
	overflow: hidden;
}

.mateu .v-accordion-item {
	position: relative;
}

.mateu .v-accordion-item:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.mateu .v-accordion-item:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.mateu .v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.mateu .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.mateu .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.mateu .v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #d9d9d9;
}

.mateu .v-accordion-item-caption {
	border-radius: inherit;
}

.mateu .v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 11px;
	line-height: 31px;
	border-bottom: 1px solid #d9d9d9;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #fcfcfc 98%);
	background-image: linear-gradient(to bottom,white 2%, #fcfcfc 98%);
	color: #474747;
	font-weight: 400;
	font-size: 13px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f4f4f4;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f4f4f4;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: block;
	background: transparent;
	border-bottom-color: #c9c9c9;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.mateu .v-accordion-item-caption  > .v-caption:hover:before, .mateu .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.mateu .v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.mateu .v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.mateu .v-accordion-item-content {
	-webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: white;
	box-sizing: border-box;
}

.mateu .v-accordion-item-content  > .v-margin-top {
	padding-top: 11px;
}

.mateu .v-accordion-item-content  > .v-margin-right {
	padding-right: 11px;
}

.mateu .v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 11px;
}

.mateu .v-accordion-item-content  > .v-margin-left {
	padding-left: 11px;
}

.mateu .v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.mateu .v-accordion-borderless  > .v-accordion-item, .mateu .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .mateu .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.mateu .v-select-twincol {
	white-space: normal;
}

.mateu .v-select-twincol select {
	border: 1px solid #c9c9c9;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	color: #474747;
}

.mateu .v-select-twincol select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-select-twincol .v-textfield, .mateu .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 8px;
}

.mateu .v-select-twincol .v-nativebutton {
	margin-left: 8px;
}

.mateu .v-select-twincol-caption-left, .mateu .v-select-twincol-caption-right {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.mateu .v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.mateu .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: 31px;
	padding: 0;
	text-align: center;
}

.mateu .v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.mateu .v-select-twincol-buttons .v-button-caption {
	display: none;
}

.mateu .v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.mateu .v-select-twincol-buttons .v-button:first-child {
	border-radius: 4px 4px 0 0;
}

.mateu .v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 4px 4px;
}

.mateu .v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.mateu .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.mateu .v-select-twincol-error .v-select-twincol-options, .mateu .v-select-twincol-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.mateu .v-select-twincol-error-info .v-select-twincol-options, .mateu .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.mateu .v-select-twincol-error-warning .v-select-twincol-options, .mateu .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.mateu .v-select-twincol-error-error .v-select-twincol-options, .mateu .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.mateu .v-select-twincol-error-critical .v-select-twincol-options, .mateu .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.mateu .v-select-twincol-error-system .v-select-twincol-options, .mateu .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.mateu .v-select select {
	border: 1px solid #c9c9c9;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	color: #474747;
}

.mateu .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-select-select {
	display: block;
}

.mateu .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.mateu .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.mateu .v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.mateu .v-calendar-header-day {
	font-weight: 400;
	text-align: center;
	padding: 6px 0;
}

.mateu .v-calendar-header-week .v-calendar-back, .mateu .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) ;
}

.mateu .v-calendar-header-week .v-calendar-back:focus, .mateu .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.mateu .v-calendar-header-week .v-calendar-back:hover, .mateu .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.mateu .v-calendar-header-week .v-calendar-back:active, .mateu .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.mateu .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.mateu .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.mateu .v-calendar-month td {
	vertical-align: top;
}

.mateu .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.mateu .v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.mateu .v-calendar-bottom-spacer, .mateu .v-calendar-spacer, .mateu .v-calendar-bottom-spacer-empty {
	height: 17px;
	margin-bottom: 3px;
}

.mateu .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 4px;
	cursor: pointer;
}

.mateu .v-calendar-bottom-spacer:hover {
	color: #e61a1a;
}

.mateu .v-calendar-day-number {
	line-height: 21px;
	font-size: 14px;
	text-align: right;
	margin: 0 4px;
	white-space: nowrap;
	border-top: 1px solid #f7f7f7;
	cursor: pointer;
}

.mateu .v-calendar-day-number:hover {
	color: #e61a1a;
}

.mateu .v-calendar-month-day-today {
	background: #fdf3f3;
}

.mateu .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 400;
	color: #e61a1a;
	border-top: 2px solid #e61a1a;
	line-height: 20px;
	margin: 0;
	padding: 0 4px;
}

.mateu .v-calendar-month-day-selected {
	background-color: #fce8e8;
}

.mateu .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

.mateu .v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.mateu .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e6e6e6;
}

.mateu .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 19px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.mateu .v-calendar-header-week td {
	vertical-align: middle !important;
}

.mateu .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.mateu .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.mateu .v-calendar-time {
	text-align: right;
	padding-right: 8px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.mateu .v-calendar-day-times, .mateu .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.mateu .v-calendar-day-times:focus, .mateu .v-calendar-day-times-today:focus {
	outline: none;
}

.mateu .v-calendar .v-datecellslot, .mateu .v-calendar .v-datecellslot-even {
	border-top: 1px solid #e4e4e4;
}

.mateu .v-calendar .v-datecellslot:first-child, .mateu .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.mateu .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.mateu .v-calendar .v-datecellslot, .mateu .v-calendar .v-datecellslot-even {
	margin-right: 4px;
}

.mateu .v-calendar-current-time {
	background: #e61a1a;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-calendar-current-time:before {
	content: "\2022";
	color: #e61a1a;
	font-size: 22px;
	margin-left: -0.07em;
}

.mateu .v-calendar .v-daterange {
	position: relative;
}

.mateu .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #e61a1a;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 4px 4px 0 0;
}

.mateu .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.mateu .v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.mateu .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 4px;
}

.mateu .v-calendar-event:focus {
	outline: none;
}

.mateu .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;
}

.mateu .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 17px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.mateu .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;
}

.mateu .v-calendar-event-all-day:before {
	content: "";
}

.mateu .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.mateu .v-calendar-event-start.v-calendar-event-continued-to, .mateu .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.mateu .v-calendar-event-start {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	margin-left: 4px;
}

.mateu .v-calendar-event-end {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-right: 4px;
}

.mateu .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;
}

.mateu .v-calendar-event-caption span {
	font-weight: 300;
	white-space: nowrap;
}

.mateu .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.mateu .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 5px;
	border: 1px solid #ffffff;
	padding-top: 3px;
	margin-right: 4px;
}

.mateu .v-calendar-event-month:before {
	color: #00ace0;
}

.mateu .v-calendar-event-all-day {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
	color: #00ace0;
}

.mateu .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.mateu .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
}

.mateu .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.mateu .v-calendar-event-all-day[class*="color2"] {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
	color: #2d9f19;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
}

.mateu .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.mateu .v-calendar-event-all-day[class*="color3"] {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
	color: #d18100;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
}

.mateu .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.mateu .v-calendar-event-all-day[class*="color4"] {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
	color: #ce3812;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
}

.mateu .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.mateu .v-calendar-event-all-day[class*="color5"] {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
	color: #2d55cd;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.mateu .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
}

.mateu .v-calendar.v-disabled * {
	cursor: default;
}

.mateu .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.mateu .v-label.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-label-undef-w {
	white-space: nowrap;
}

.mateu h1, .mateu .v-label-h1, .mateu h2, .mateu .v-label-h2, .mateu h3, .mateu .v-label-h3 {
	line-height: 1.1;
	font-weight: 200;
	color: #141414;
}

.mateu h1, .mateu .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.mateu h2, .mateu .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.mateu h3, .mateu .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.mateu h4, .mateu .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;
}

.mateu .v-csslayout  > h1:first-child, .mateu .v-csslayout  > h2:first-child, .mateu .v-csslayout  > h3:first-child, .mateu .v-csslayout  > h4 > .v-label-h1:first-child, .mateu .v-csslayout  > .v-label-h2:first-child, .mateu .v-csslayout  > .v-label-h3:first-child, .mateu .v-csslayout  > .v-label-h4:first-child {
	margin-top: 14px;
}

.mateu .v-verticallayout > .v-slot:first-child h1, .mateu .v-verticallayout > .v-slot:first-child .v-label-h1, .mateu .v-verticallayout > .v-slot:first-child h2, .mateu .v-verticallayout > .v-slot:first-child .v-label-h2, .mateu .v-verticallayout > .v-slot:first-child h3, .mateu .v-verticallayout > .v-slot:first-child .v-label-h3, .mateu .v-verticallayout > .v-slot:first-child h4, .mateu .v-verticallayout > .v-slot:first-child .v-label-h4, .mateu .v-verticallayout > div > .v-slot:first-child h1, .mateu .v-verticallayout > div > .v-slot:first-child .v-label-h1, .mateu .v-verticallayout > div > .v-slot:first-child h2, .mateu .v-verticallayout > div > .v-slot:first-child .v-label-h2, .mateu .v-verticallayout > div > .v-slot:first-child h3, .mateu .v-verticallayout > div > .v-slot:first-child .v-label-h3, .mateu .v-verticallayout > div > .v-slot:first-child h4, .mateu .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 14px;
}

.mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .mateu .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .mateu .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.mateu h1.no-margin, .mateu .v-label-h1.no-margin, .mateu h2.no-margin, .mateu .v-label-h2.no-margin, .mateu h3.no-margin, .mateu .v-label-h3.no-margin, .mateu h4.no-margin, .mateu .v-label-h4.no-margin {
	margin: 0 !important;
}

.mateu .v-label-colored {
	color: #e61a1a;
}

.mateu .v-label-large {
	font-size: 17px;
}

.mateu .v-label-small {
	font-size: 12px;
}

.mateu .v-label-tiny {
	font-size: 11px;
}

.mateu .v-label-huge {
	font-size: 23px;
}

.mateu .v-label-bold {
	font-weight: 500;
}

.mateu .v-label-light {
	font-weight: 200;
	color: gray;
}

.mateu .v-label-align-right {
	text-align: right;
}

.mateu .v-label-align-center {
	text-align: center;
}

.mateu .v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 26, 26, 0.2);
	border-top-color: #e61a1a;
	border-right-color: #e61a1a;
	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;
}

.mateu .v-label-success, .mateu .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #2c9720;
	border-radius: 4px;
	padding: 6px 16px 6px 32px;
	font-weight: 400;
	font-size: 13px;
}

.mateu .v-label-success:before, .mateu .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -16px;
	color: #2c9720;
}

.mateu .v-label-failure {
	border-color: #ed473b;
}

.mateu .v-label-failure:before {
	content: "\f05e";
	color: #ed473b;
}

.mateu [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.mateu .v-ddwrapper {
	position: relative;
}

.mateu .v-ddwrapper-over:before, .mateu .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #e61a1a;
}

.mateu .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.mateu .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.mateu .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.mateu .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.mateu .no-vertical-drag-hints .v-ddwrapper-over-top:before, .mateu .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.mateu .no-vertical-drag-hints .v-ddwrapper-over-top:after, .mateu .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #f28c8c;
}

.mateu .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .mateu .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.mateu .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .mateu .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #f28c8c;
}

.mateu .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .mateu .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.mateu .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .mateu .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #f28c8c;
}

.mateu .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .mateu .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.mateu .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .mateu .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #f28c8c;
}

.mateu .v-ddwrapper-over-middle:after, .mateu .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 4px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #f28c8c;
}

.mateu .no-box-drag-hints.v-ddwrapper:after, .mateu .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.mateu button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.mateu .v-nativebutton {
	-webkit-touch-callout: none;
}

.mateu .v-select select {
	border: 1px solid #c9c9c9;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	color: #474747;
}

.mateu .v-select select:focus {
	outline: none;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
	box-shadow: 0 0 0 2px rgba(230, 26, 26, 0.5);
}

.mateu .v-select-select {
	display: block;
}

.mateu .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.mateu .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.mateu .v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.mateu .v-popupview {
	cursor: pointer;
	color: #e61a1a;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-popupview:hover {
	color: #eb4747;
}

.mateu .v-popupview.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.mateu .v-popupview-popup {
	padding: 4px 4px;
	border-radius: 4px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 11px;
}

.mateu .v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 11px;
}

.mateu .v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 11px;
}

.mateu .v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 11px;
}

.mateu .v-popupview-loading {
	margin: 11px 11px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(230, 26, 26, 0.2);
	border-top-color: #e61a1a;
	border-right-color: #e61a1a;
	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;
}

.mateu .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: 32px;
	border-radius: 4px;
	padding: 0;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 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;
}

.mateu .v-richtextarea[class*="prompt"] {
	color: #a3a3a3;
}

.mateu .v-richtextarea .gwt-RichTextToolbar {
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, white 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,white 2%, #f4f4f4 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #ececec;
	border-bottom: 1px solid #c9c9c9;
	color: #474747;
}

.mateu .v-richtextarea .gwt-ToggleButton, .mateu .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 32px;
	width: 32px;
	text-align: center;
	outline: none;
}

.mateu .v-richtextarea .gwt-ToggleButton:hover, .mateu .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.mateu .v-richtextarea .gwt-ToggleButton-down, .mateu .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e6e6e6;
	background-image: -webkit-linear-gradient(bottom, #e6e6e6 2%, #e2e2e2 98%);
	background-image: linear-gradient(to top,#e6e6e6 2%, #e2e2e2 98%);
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.mateu .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 11px;
	padding: 0 8px 8px 0;
}

.mateu .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 8px 0 0 8px;
}

.mateu .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.mateu .v-richtextarea-readonly {
	padding: 4px 6px;
	background: transparent;
}

.mateu .v-upload .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.mateu .v-upload-immediate .v-button {
	width: 100%;
}

.mateu .v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 32px;
	text-align: right;
	border: none;
	background: transparent;
}

.mateu .v-Notification.v-position-top {
	top: 11px;
}

.mateu .v-Notification.v-position-right {
	right: 11px;
}

.mateu .v-Notification.v-position-bottom {
	bottom: 11px;
}

.mateu .v-Notification.v-position-left {
	left: 11px;
}

.mateu .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.mateu .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;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.mateu .v-Notification-animate-out.v-position-top, .mateu .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;
}

.mateu .v-Notification {
	border-radius: 4px;
	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: 16px 19px;
}

.mateu .v-Notification .v-Notification-caption {
	color: #e61a1a;
	font-size: 17px;
	line-height: 1;
}

.mateu .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.mateu .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.mateu .v-Notification-description, .mateu .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.mateu .v-Notification-caption ~ .v-Notification-description, .mateu .v-Notification-caption ~ .v-Notification-details {
	margin-left: 21px;
}

.mateu .v-icon + .v-Notification-caption {
	margin-left: 14px;
}

.mateu .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: 11px 13px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 20px;
}

.mateu .v-Notification-system .v-Notification-description, .mateu .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.mateu .v-Notification-system.v-position-top {
	top: 0;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-Notification-system.v-position-bottom {
	bottom: 0;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.mateu .v-Notification-system .v-Notification-description, .mateu .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.mateu .v-Notification-system u {
	text-decoration: none;
}

.mateu .v-Notification.tray {
	text-align: left;
}

.mateu .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.mateu .v-Notification.warning {
	background: #FFF3D2;
}

.mateu .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.mateu .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.mateu .v-Notification.error {
	background: #ed473b;
	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: 51px;
	overflow: hidden !important;
	cursor: pointer;
}

.mateu .v-Notification.error .v-Notification-caption {
	color: white;
}

.mateu .v-Notification.error .v-Notification-description {
	color: #f4e0df;
}

.mateu .v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	right: 11px;
	width: 21px;
	height: 21px;
	line-height: 20px;
	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;
}

.mateu .v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.mateu .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;
}

.mateu .v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.mateu .v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.mateu .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 20px;
}

.mateu .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.mateu .v-Notification.dark .v-Notification-description, .mateu .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.mateu .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: 11px 13px;
}

.mateu .v-Notification.bar .v-Notification-description, .mateu .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.mateu .v-Notification.bar.v-position-top {
	top: 0;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.mateu .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;
}

.mateu .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;
}

.mateu .v-Notification.small {
	padding: 10px 11px;
}

.mateu .v-Notification.small .v-Notification-caption {
	font-size: 14px;
}

.mateu .v-Notification.small .v-Notification-description {
	font-size: 12px;
}

.mateu .v-Notification.critical-error {
	background: #ed473b;
	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);
}

.mateu .v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.mateu .v-Notification.critical-error .v-Notification-description {
	color: #f4e0df;
}

.mateu .v-Notification.closable {
	padding-right: 51px;
	overflow: hidden !important;
	cursor: pointer;
}

.mateu .v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	right: 11px;
	width: 21px;
	height: 21px;
	line-height: 20px;
	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;
}

.mateu .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.mateu .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;
}

.mateu .v-Notification.closable.dark:after, .mateu .v-Notification.closable.critical-error:after, .mateu .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.mateu .v-Notification.closable.dark:active:after, .mateu .v-Notification.closable.critical-error:active:after, .mateu .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.mateu .v-Notification.closable.tray:after {
	top: 14px;
	margin-top: 0;
}

.mateu .v-Notification.success, .mateu .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.mateu .v-Notification.success .v-Notification-caption, .mateu .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 400;
}

.mateu .v-Notification.success .v-Notification-caption:before, .mateu .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.mateu .v-Notification.success.bar, .mateu .v-Notification.failure.bar {
	margin: -2px !important;
}

.mateu .v-Notification.failure {
	border-color: #ed473b;
}

.mateu .v-Notification.failure .v-Notification-caption {
	color: #ed473b;
}

.mateu .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.mateu .valo-menu {
	height: 100%;
	background-color: #4d4d4d;
	background-image: -webkit-linear-gradient(right, #424242 0%, #4d4d4d 8px);
	background-image: linear-gradient(to left,#424242 0%, #4d4d4d 8px);
	color: #a6a6a6;
	font-size: 13px;
	line-height: 26px;
	border-right: 1px solid #3c3c3c;
	white-space: nowrap;
}

.mateu .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.mateu .valo-menu-part {
	border-left: 1px solid #434343;
	height: 100%;
	padding-bottom: 32px;
	overflow: auto;
}

.mateu .valo-menu-part:first-child {
	border-left: none;
}

.mateu .valo-menu-title, .mateu .valo-menu-subtitle, .mateu .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.mateu .valo-menu-title .valo-menu-badge, .mateu .valo-menu-subtitle .valo-menu-badge, .mateu .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 16px;
}

.mateu .valo-menu-title {
	line-height: 1.2;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 11px 16px;
	font-size: 13px;
	border-bottom: 1px solid #b51414;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.mateu .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #b51414;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.mateu .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #ea4f4f, inset 0 -1px 0 #cf1616;
	box-shadow: inset 0 1px 0 #ea4f4f, inset 0 -1px 0 #cf1616;
	text-shadow: inherit;
	font-size: 14px;
	border-color: inherit;
}

.mateu .valo-menu-title h1, .mateu .valo-menu-title .v-label-h1, .mateu .valo-menu-title h2, .mateu .valo-menu-title .v-label-h2, .mateu .valo-menu-title h3, .mateu .valo-menu-title .v-label-h3, .mateu .valo-menu-title h4, .mateu .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.mateu .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: 16px 6px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.mateu .v-menubar-user-menu:focus:after {
	display: none;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 4px;
	color: #e61a1a;
	padding: 0 11px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem:first-child, .mateu .v-menubar-user-menu .v-menubar-menuitem:last-child, .mateu .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 4px;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #eb4747;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem-checked, .mateu .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c9c9c9;
	color: #e61a1a;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .mateu .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #f8eded;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.mateu .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #f8eded;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem-disabled, .mateu .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.mateu .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.mateu .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 48px;
	height: 48px;
	border-radius: 25px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #c9c9c9;
}

.mateu .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.mateu .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.mateu .valo-menu-subtitle {
	color: #878787;
	margin: 6px 0 6px 16px;
	border-bottom: 1px solid #676767;
}

.mateu .valo-menu-subtitle [class*="badge"] {
	color: #d97373;
}

.mateu .valo-menuitems {
	display: block;
}

.mateu .valo-menu-item {
	outline: none;
	font-weight: 400;
	padding: 0 32px 0 16px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
	-webkit-transition: background-color 300ms, color 60ms;
	-moz-transition: background-color 300ms, color 60ms;
	transition: background-color 300ms, color 60ms;
}

.mateu .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 16px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.mateu .valo-menu-item [class*="badge"] {
	color: #d97373;
}

.mateu .valo-menu-item.selected {
	background: #454545;
}

.mateu .valo-menu-item.selected .v-icon {
	color: #eb4747;
}

.mateu .valo-menu-item.selected [class*="badge"] {
	background-color: #eb4747;
	background-image: -webkit-linear-gradient(top, #ec4c4c 2%, #df3e3e 98%);
	background-image: linear-gradient(to bottom,#ec4c4c 2%, #df3e3e 98%);
	color: #f1d4d4;
}

.mateu .valo-menu-item:focus, .mateu .valo-menu-item:hover, .mateu .valo-menu-item.selected {
	color: white;
}

.mateu .valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 16px;
	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)));
}

.mateu .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.mateu .valo-menu-item [class*="badge"] {
	background-color: #595959;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 4px 5px;
	min-width: 9px;
	text-align: center;
	top: 2.5px;
	border-radius: 4px;
}

.mateu .valo-menu-part.large-icons {
	background-color: #4d4d4d;
	min-width: 64px;
	max-width: 96px;
}

.mateu .valo-menu-part.large-icons .valo-menu-title {
	font-size: 11px;
}

.mateu .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.mateu .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.mateu .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 25px;
	height: 25px;
}

.mateu .valo-menu-part.large-icons [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 21px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3d3d3d;
	font-size: 11px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.mateu .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.mateu .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.mateu .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 11px;
	text-align: center;
	border-top: 1px solid #575757;
}

.mateu .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.mateu .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;
}

.mateu .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.mateu .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.mateu .valo-menu-part.large-icons .valo-menu-item.selected {
	background: #454545;
}

.mateu .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.mateu .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #454545;
}

.mateu .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 6px;
	right: 6px;
	border: 2px solid #4d4d4d;
}

.mateu .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 38px !important;
	height: 38px;
	border-radius: 4px;
	text-align: center;
	background-color: #e61a1a;
	background-image: -webkit-linear-gradient(top, #e81c1c 2%, #da1616 98%);
	background-image: linear-gradient(to bottom,#e81c1c 2%, #da1616 98%);
	color: white;
	font-size: 21px;
	line-height: 38px;
	margin: 16px auto;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.mateu .valo-menu-logo:focus {
	outline: none;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #4d4d4d;
	min-width: 64px;
	max-width: 96px;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 11px;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 25px;
	height: 25px;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 21px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3d3d3d;
	font-size: 11px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 11px;
	text-align: center;
	border-top: 1px solid #575757;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.mateu .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;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #454545;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #454545;
}

.mateu .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 6px;
	right: 6px;
	border: 2px solid #4d4d4d;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 32px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 32px;
}

.mateu .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 32px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.mateu .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: 32px;
	color: #e69999;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 31px;
	white-space: nowrap;
}

.mateu .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: 16px;
	height: 16px;
	border-radius: 8px;
	border: none;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #4d4d4d;
	background-image: -webkit-linear-gradient(right, #424242 0%, #4d4d4d 8px);
	background-image: linear-gradient(to left,#424242 0%, #4d4d4d 8px);
	color: #a6a6a6;
	font-size: 13px;
	line-height: 26px;
	border-right: 1px solid #3c3c3c;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 32px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 16px 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;
}

.mateu .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .mateu .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%);
}

.mateu .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.mateu .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 16px;
	overflow: hidden;
}

.mateu .maincomponent {
	padding: 0px;
	background-color: #f9f8fa;
}

.mateu .maincomponent .v-widget .nopadding {
	padding: 0px;
}

.mateu .maincomponent .v-widget .littlepadding {
	padding: 10px;
}

.mateu .maincomponent .v-widget .labelconlink {
	margin-top: 7px;
}

.mateu .maincomponent .v-widget .botondeicono {
	padding: 0px;
	height: inherit;
	opacity: 1;
}

.mateu .maincomponent .alinearderecha {
	text-align: right;
	width: 100%;
}

.mateu .maincomponent .alinearcentro {
	text-align: center;
}

.mateu .maincomponent .v-textarea {
	resize: auto;
}

.mateu .maincomponent .v-slot .v-slot-hidden {
	height: 0px !important;
}

.mateu .maincomponent .hidden {
	display: none;
}

.mateu .maincomponent .clickable {
	cursor: pointer;
	border: 1px solid transparent;
}

.mateu .maincomponent .clickable:hover {
	border: 1px solid #484860;
}

.mateu .maincomponent input, .mateu .maincomponent .v-datefield, .mateu .maincomponent .v-datefield-textfield, .mateu .maincomponent .v-filterselect, .mateu .maincomponent .v-filterselect-input, .mateu .maincomponent .v-filterselect-button, .mateu .maincomponent .v-textarea {
	color: #301254;
	background-color: white;
	border: 1px solid #ada5b6;
}

.mateu .maincomponent .negativo {
	color: red !important;
}

.mateu .maincomponent .mdd-bold {
	font-weight: bold !important;
}

.mateu .maincomponent .mdd-bolder {
	font-weight: bold !important;
}

.mateu .maincomponent .mdd-seagreen-bgd {
	background-color: seagreen !important;
}

.mateu .maincomponent .mdd-green-bgd {
	background-color: green !important;
}

.mateu .maincomponent .mdd-softgreen-bgd {
	background-color: #a0c5a0 !important;
}

.mateu .maincomponent .mdd-softred-bgd {
	background-color: #dea7a3 !important;
}

.mateu .maincomponent .mdd-softyellow-bgd {
	background-color: #ffffcc !important;
}

.mateu .maincomponent .mdd-orange-bgd {
	background-color: orange !important;
}

.mateu .maincomponent .mdd-red-bgd {
	background-color: red !important;
}

.mateu .maincomponent .mdd-yellow-bgd {
	background-color: yellow !important;
}

.mateu .maincomponent .mdd-brown-bgd {
	background-color: brown !important;
}

.mateu .maincomponent .mdd-grey-bgd {
	background-color: grey !important;
}

.mateu .maincomponent .mdd-lightgrey-bgd {
	background-color: lightgrey !important;
}

.mateu .maincomponent .mdd-aliceblue-bgd {
	background-color: aliceblue !important;
}

.mateu .maincomponent .mdd-lightsteelblue-bgd {
	background-color: lightsteelblue !important;
}

.mateu .maincomponent .mdd-white-bgd {
	background-color: white !important;
}

.mateu .maincomponent .mdd-blue-bgd {
	background-color: blue !important;
}

.mateu .maincomponent .mdd-seagreen-fgd {
	color: seagreen !important;
}

.mateu .maincomponent .mdd-green-fgd {
	color: green !important;
}

.mateu .maincomponent .mdd-orange-fgd {
	color: orange !important;
}

.mateu .maincomponent .mdd-red-fgd {
	color: red !important;
}

.mateu .maincomponent .mdd-yellow-fgd {
	color: yellow !important;
}

.mateu .maincomponent .mdd-brown-fgd {
	color: brown !important;
}

.mateu .maincomponent .mdd-grey-fgd {
	color: grey !important;
}

.mateu .maincomponent .mdd-white-fgd {
	color: white !important;
}

.mateu .maincomponent .mdd-blue-fgd {
	color: blue !important;
}

.mateu .maincomponent .statusLabel {
	margin-bottom: 10px;
}

.mateu .maincomponent td .statusLabel {
	margin-bottom: unset;
}

.mateu .maincomponent .statusLabel.NONE {
	color: unset;
}

.mateu .maincomponent .statusLabel.INFO {
	color: lightskyblue !important;
}

.mateu .maincomponent .statusLabel.SUCCESS {
	color: green !important;
}

.mateu .maincomponent .statusLabel.WARNING {
	color: orange !important;
}

.mateu .maincomponent .statusLabel.DANGER {
	color: red !important;
}

.mateu .maincomponent .huge-submenuoption {
	border: 1px solid lightgrey;
	margin: 20px;
	padding: 20px;
	border-radius: 2px;
	min-width: 130px;
	text-align: center;
	cursor: pointer;
}

.mateu .maincomponent .huge-submenuoption:hover {
	background-color: #efefef;
}

.mateu .maincomponent .chip {
	background-color: lightgray;
	border-radius: 1.5em;
	padding-left: 1em;
	margin: 1px;
	margin-right: 4px;
}

.mateu .maincomponent .chip .v-label {
	padding-top: 4px;
}

.mateu .maincomponent .chip .v-button {
	border-radius: 1.5em;
	width: 2em;
	padding-left: 8px;
	height: 2em;
	padding-top: 3px;
}

.mateu .maincomponent .v-link {
	color: #501ea0;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
}

.mateu .maincomponent .mateu-headers.container {
	max-width: none;
	box-shadow: 0 1px 0 0 #e9e6ed;
	z-index: 3;
}

.mateu .maincomponent .v-slot-mateu-headers {
	background-color: white;
	box-shadow: 0 1px 3px rgba(51, 55, 66, 6%), 0 2px 6px rgba(51, 55, 66, 2%);
}

.mateu .maincomponent .v-slot-mateu-headers:after {
	box-sizing: border-box;
}

.mateu .maincomponent .mateu-header {
	padding: 5px;
	background-color: #664b5f;
	padding-left: 10px;
	background-color: white;
	height: 80px;
}

.mateu .maincomponent .mateu-header * {
	color: white;
}

.mateu .maincomponent .mateu-header .iconoarea {
	padding-top: 6px;
	font-size: 15px;
	padding-right: 4px;
}

.mateu .maincomponent .mateu-header .appname {
	margin-top: 1px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.5em;
}

.mateu .maincomponent .mateu-header .menusearcher {
	border-radius: 15px;
	height: 22px;
	margin-top: 8px;
}

.mateu .maincomponent .mateu-header .menusearcher input {
	color: #474747;
	background-color: white;
}

.mateu .maincomponent .mateu-header .menusearcher .v-filterselect-button {
	background-color: white;
	color: #474747;
	margin-right: 4px;
}

.mateu .maincomponent .mateu-header .v-menubar, .mateu .maincomponent .mateu-header .v-button {
	margin-top: 3px;
}

.mateu .maincomponent .mateu-header * {
	color: #501e96;
}

.mateu .maincomponent .mateu-header .v-menubar, .mateu .maincomponent .mateu-header .v-button {
	margin-top: unset;
}

.mateu .maincomponent .mateu-header .v-menubar > .v-menubar-menuitem.selected {
	font-weight: 600;
	font-size: 18px;
	text-decoration: underline;
}

.mateu .maincomponent .mateu-header .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-selected {
	background-color: #3c3c3c;
	color: white;
	background-image: unset;
}

.mateu .maincomponent .fondomenu {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 50%;
}

.mateu .maincomponent .v-slot-mateu-footers {
	box-shadow: 0 1px 3px rgba(51, 55, 66, 6%), 0 2px 6px rgba(51, 55, 66, 2%);
	background-color: white;
	width: 100%;
	height: 80px;
}

.mateu .maincomponent .mateu-footers.container {
	display: inline-block;
	max-width: 1184px;
}

.mateu .maincomponent .mateu-footer a, .mateu .maincomponent .mateu-footer .v-label {
	background-color: white;
	color: unset;
	padding: 10px;
}

.mateu .maincomponent .mateu-footer .footer {
	max-width: 1400px;
}

.mateu .maincomponent .viewcomponent {
	padding: 0px;
}

.mateu .maincomponent .v-slot-contenido {
	margin-top: 49px;
	margin-bottom: 49px;
	min-height: calc(100vh - 260px);
}

.mateu .maincomponent .v-slot-contenido .actionsbar {
	border-top: unset;
	border-bottom: unset;
}

.mateu .maincomponent .v-slot-contenido .filterscomponent {
	border-top: unset;
	border-bottom: unset;
	width: 100%;
}

.mateu .maincomponent .contenido {
	padding: 0px;
}

.mateu .maincomponent .contenido .nofieldgroup {
	padding-left: 2px;
	padding-right: 0px;
	min-width: 450px;
}

.mateu .maincomponent .contenido .fieldgroup {
	min-width: 450px;
}

.mateu .maincomponent .contenido .section {
	background-color: white;
	color: black;
	box-shadow: 0 2px 4px rgba(48, 18, 84, 0.04), 0 4px 8px rgba(48, 18, 84, 0.04), 0 4px 12px rgba(48, 18, 84, 0.02);
	margin-bottom: 80px;
	border-radius: 8px;
	padding-bottom: 20px;
}

.mateu .maincomponent .contenido .section .fieldgroup {
	padding-bottom: 30px;
}

.mateu .maincomponent .contenido .section .fieldgroup.nofieldgroupheader {
	padding-top: 20px;
}

.mateu .maincomponent .contenido .section .fieldgroup > * {
	padding-left: 20px;
	padding-right: 20px;
}

.mateu .maincomponent .contenido .section .fieldgroup > .v-spacing {
	height: 20px;
}

.mateu .maincomponent .contenido .section .fieldgroup .v-caption-on-top .v-caption-caption-on-left {
	display: inline-block;
}

.mateu .maincomponent .contenido .section .fieldgroup .v-caption-on-top .caption-on-left {
	width: unset;
	position: absolute;
	right: 0;
}

.mateu .maincomponent .contenido .section .fieldgroup .v-slot-caption-on-left {
	border-bottom: 1px solid whitesmoke;
}

.mateu .maincomponent .contenido .section .v-slot-fieldgroupheader {
	border-bottom: 1px solid lightgray;
	padding: 24px;
	color: #301254;
}

.mateu .maincomponent .contenido .section .v-slot-fieldgroupheader .v-label-h4 {
	font-size: 22px;
	font-weight: 600;
	text-transform: inherit;
}

.mateu .maincomponent .contenido .section .v-slot-fieldgroupheader .v-label-h4.countlabel {
	font-size: 16px;
	font-weight: 200;
}

.mateu .maincomponent .contenido .section .v-grid-cell .v-nativebutton {
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.mateu .maincomponent .contenido .section .v-grid-cell .v-nativebutton:hover {
	color: whitesmoke;
}

.mateu .maincomponent .contenido .section.result-page .checkmark .v-icon {
	font-size: 80px;
}

.mateu .maincomponent .contenido.fullwidth {
	padding: 10px;
}

.mateu .maincomponent .contenido.container {
	max-width: 1184px;
	display: block;
	margin: 0 auto;
}

.mateu .maincomponent .resultscomponent {
	padding: 0px;
}

.mateu .maincomponent .viewHeader {
	padding: 0px;
}

.mateu .maincomponent .viewHeader .viewTitle {
	--font-size: 2rem;
	--line-height: 1.25;
	color: rgba(0, 0, 0, 0.85);
	font-weight: 700;
	font-size: var(--font-size);
	line-height: var(--line-height);
}

.mateu .maincomponent .viewHeader .v-slot-viewSubtitle {
	font-size: 1.25rem;
	color: rgba(0, 0, 0, 0.85);
}

.mateu .maincomponent .viewHeader .viewSubtitle {
	height: 80px;
}

.mateu .maincomponent .viewHeader .viewIcon {
	font-size: 1.5em;
	padding-top: 7px;
	color: black;
}

.mateu .maincomponent .filterscomponent {
	border-top: 1px dashed lightgrey;
	border-bottom: 1px dashed lightgrey;
	width: 100%;
}

.mateu .maincomponent .filterscomponent  > div > * {
	margin-right: 20px;
}

.mateu .maincomponent .filterscomponent .v-caption {
	margin-right: 10px;
}

.mateu .maincomponent .filterscomponent .v-button {
	margin-right: 5px;
}

.mateu .maincomponent .filterscomponent .boton {
	font-size: 1.3em;
	height: inherit;
}

.mateu .maincomponent .filterscomponent .botonsearch {
	font-size: 2.7em;
	height: inherit;
}

.mateu .maincomponent .filterscomponent .botonerafiltros  > div {
	margin-right: 0px;
	vertical-align: middle;
}

.mateu .maincomponent .listsummaryline {
	margin-top: 20px;
	font-style: italic;
}

.mateu .maincomponent .panelContenidoConKpi {
	min-width: 460px;
}

.mateu .maincomponent .kpisContainer {
	margin-left: 30px;
}

.mateu .maincomponent .kpisContainer .v-spacing {
	height: 4px;
}

.mateu .maincomponent .kpi {
	padding: 2px 9px;
	background-color: #e0e4e8;
	color: inherit;
	border-radius: 2px;
	margin-right: 10px;
	margin-bottom: -2px;
	height: 50px;
}

.mateu .maincomponent .kpi .valor {
	white-space: normal;
	font-size: 1.2em;
	font-weight: bold;
	width: 100%;
	text-align: right;
	background-color: inherit !important;
}

.mateu .maincomponent .kpi .v-label-centered {
	text-align: center;
}

.mateu .maincomponent .kpi .v-spacing {
	display: none;
}

.mateu .maincomponent .kpi.sectionkpi {
	width: inherit;
	background-color: #e0e4e8;
	color: inherit;
	min-height: 62px;
}

.mateu .maincomponent .superkpi {
	padding: 20px;
	background-color: #7b7e80;
	border-radius: 2px;
	margin-right: 10px;
	margin-bottom: 7px;
	height: 160px;
	width: 100%;
	text-align: center;
}

.mateu .maincomponent .superkpi .valor {
	font-size: 2.5em;
	font-weight: bold;
	width: 100%;
	text-align: center;
	background-color: inherit !important;
}

.mateu .maincomponent .superkpi .v-label-centered {
	text-align: center;
}

.mateu .maincomponent .gridresultado .v-grid-cell {
	height: 60px;
	line-height: 60px;
}

.mateu .maincomponent .gridresultado .v-grid-header-deco {
	background-image: none;
	border-top: none;
	border-right: none;
}

.mateu .maincomponent .gridresultado .v-grid-header .v-grid-cell {
	background-color: white;
	background-image: none;
	font-style: italic;
}

.mateu .maincomponent .gridresultado .v-grid-header .v-grid-row th {
	border-left: none;
	color: #6e5987;
	font-size: 16px;
	font-weight: 600;
}

.mateu .maincomponent .gridresultado .v-grid-row td {
	border-left: none;
	color: #301254;
}

.mateu .maincomponent .gridresultado .v-grid-row-selected .v-grid-cell > td {
	background-image: none;
	font-weight: bold;
	color: var(--selected-row-fg-color, #eec9c9) !important;
}

.mateu .maincomponent .gridresultado .v-grid-cell-focused:before {
	border: none;
}

.mateu .maincomponent .gridresultado .v-grid-row:hover td, .mateu .maincomponent .gridresultado .v-grid-row-selected:hover td {
	background-color: #fafafa !important;
	color: unset !important;
	font-weight: inherit !important;
	cursor: pointer;
}

.mateu .maincomponent .gridresultado .v-grid-cell.frozen {
	border-right: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.mateu .maincomponent .gridresultado .v-grid-tablewrapper {
	border: none;
}

.mateu .maincomponent .gridresultado .v-grid-horizontal-scrollbar-deco {
	background-image: none;
	border: none;
}

.mateu .maincomponent .gridresultado .v-grid-scroller-horizontal {
	border: none;
}

.mateu .maincomponent .gridresultado .v-grid-scroller-vertical {
	border: none;
}

.mateu .maincomponent .gridresultado .v-grid-footer-deco {
	border: none;
}

.mateu .maincomponent .gridresultado .v-link a {
	color: blue;
}

.mateu .maincomponent .gridresultado .v-grid-row-stripe > td {
	background-color: white;
}

.mateu .maincomponent .gridresultado.readonly .v-grid-row:hover td {
	background-color: inherit !important;
	color: inherit !important;
	font-weight: inherit !important;
	cursor: inherit !important;
}

.mateu .maincomponent .gridresultado.readonly .v-grid-cell.rowno {
	color: inherit !important;
}

.mateu .maincomponent .gridresultado.readonly .v-grid-row-stripe:hover td {
	background-color: #484860 !important;
	color: #B0B0EA !important;
	font-weight: inherit !important;
	cursor: inherit !important;
}

.mateu .maincomponent .gridresultado.readonly .v-grid-row-selected:hover td {
	background-color: #484860 !important;
	color: #B0B0EA !important;
	font-weight: bold !important;
	cursor: inherit !important;
}

.mateu .maincomponent .gridonetomany .v-grid-header .v-grid-cell {
	background-color: white;
	background-image: none;
	font-style: italic;
}

.mateu .maincomponent .gridonetomany .v-grid-header .v-grid-row th {
	border-left: none;
}

.mateu .maincomponent .gridonetomany .v-grid-row td {
	border-left: none;
}

.mateu .maincomponent .gridonetomany .v-grid-row-stripe.v-grid-row-selected td {
	background-color: var(--selected-row-bg-color, #e61a1a) !important;
	color: var(--selected-row-fg-color, #484860) !important;
}

.mateu .maincomponent .gridonetomany .v-grid-row-selected .v-grid-cell {
	background-image: none;
	font-weight: bold;
	color: #484860 !important;
}

.mateu .maincomponent .gridonetomany .v-grid-cell-focused:before {
	border: none;
}

.mateu .maincomponent .gridonetomany .v-grid-cell.frozen {
	border-right: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.mateu .maincomponent .gridonetomany .v-grid-tablewrapper {
	border: none;
}

.mateu .maincomponent .gridonetomany .v-grid-horizontal-scrollbar-deco {
	background-image: none;
	border: none;
}

.mateu .maincomponent .gridonetomany .v-grid-scroller-horizontal {
	border: none;
}

.mateu .maincomponent .gridonetomany.nooutput .v-grid-row:hover td, .mateu .maincomponent .gridonetomany.nooutput .v-grid-row-selected:hover td {
	background-color: indianred !important;
	color: white !important;
	font-weight: bold;
	cursor: pointer;
}

.mateu .maincomponent .gridonetomany.nooutput.inline .v-grid-row:hover td, .mateu .maincomponent .gridonetomany.nooutput.inline .v-grid-row-selected:hover td {
	background-color: royalblue !important;
}

.mateu .maincomponent .v-slot-gridonetomany .gridonetomany.unclickable .v-grid-row:hover td, .mateu .maincomponent .v-slot-gridonetomany .gridonetomany.unclickable .v-grid-row-selected td, .mateu .maincomponent .v-slot-gridonetomany .gridonetomany.unclickable .v-grid-row-selected:hover td {
	background-color: unset !important;
	color: unset !important;
	font-weight: unset !important;
	cursor: unset !important;
	border-bottom: 1px solid #d4d4d4 !important;
}

.mateu .maincomponent .v-slot-gridonetomany .gridonetomany.unclickable .v-grid-row-stripe:hover td, .mateu .maincomponent .v-slot-gridonetomany .gridonetomany.unclickable .v-grid-row-selected.v-grid-row-stripe td, .mateu .maincomponent .v-slot-gridonetomany .gridonetomany.unclickable .v-grid-row-stripe-selected:hover td {
	background-color: #f5f5f5 !important;
	border-bottom: 1px solid #d4d4d4 !important;
}

.mateu .maincomponent .actionsbar {
	padding: 0px;
	padding-top: 2px !important;
	width: 100%;
	border-top: 1px solid lightgrey;
	border-bottom: 1px solid lightgrey;
}

.mateu .maincomponent .actionsbar div {
	margin-bottom: 2px;
	margin-right: 6px;
}

.mateu .maincomponent .formactionsbar .v-button.quiet {
	visibility: unset;
	margin-right: 5px;
}

.mateu .maincomponent .sectionactionbar {
	margin: 5px;
}

.mateu .maincomponent .v-button {
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background-color: white;
	color: #501e96;
	border: 1px solid #501e96;
}

.mateu .maincomponent .v-button:hover {
	background-color: #501e96;
	color: white;
}

.mateu .maincomponent .v-button.primary {
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background-color: #501e96;
	color: white;
	border: 1px solid #501e96;
}

.mateu .maincomponent .v-button.primary:hover {
	background-color: white;
	color: #501e96;
}

.mateu .maincomponent .v-button.quiet {
	border: none;
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	color: #501e96;
	background-color: #d8d8d8;
}

.mateu .maincomponent .v-button.quiet:hover {
	background-color: #b3b3b3;
}

.mateu .maincomponent .v-button.quiet:focus:after {
	box-shadow: none;
}

.mateu .maincomponent .v-button.v-button-link {
	height: unset;
	padding: unset;
}

.mateu .maincomponent .v-button.v-button-link.v-pressed {
	outline: none;
}

.mateu .maincomponent .v-button.v-button-link:active {
	outline: none;
}

.mateu .maincomponent .v-button.v-button-link:focus {
	outline: none;
}

.mateu .maincomponent .v-button.quiet {
	background-color: #d8d8d8;
}

.mateu .maincomponent .v-button.quiet:hover {
	background-color: #b3b3b3;
}

.mateu .maincomponent .v-button.quiet.primary {
	background-color: #501e96;
	color: white;
}

.mateu .maincomponent .v-button.quiet.primary:hover {
	background-color: white;
	border: 1px solid #501e96;
	color: #501e96;
}

.mateu .maincomponent .v-button.quiet.danger {
	background-color: #ff3860;
	color: white;
}

.mateu .maincomponent .v-button.quiet.danger:hover {
	background-color: #05ffda;
}

.mateu .maincomponent .mateu-header-mobile {
	padding: 5px;
	background-color: #664b5f;
	padding-left: 10px;
}

.mateu .maincomponent .mateu-header-mobile * {
	color: white;
}

.mateu .maincomponent .mateu-header-mobile .iconomenu {
	font-size: 18px;
	padding-top: 2px;
}

.mateu .maincomponent .mateu-header-mobile .centro {
	text-align: center;
	margin: 0 auto;
	display: block;
}

.mateu .maincomponent .mateu-header-mobile .iconoarea {
	padding-top: 5px;
	font-size: 15px;
	padding-right: 4px;
}

.mateu .maincomponent .mateu-header-mobile .appname {
	margin-top: 1px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.5em;
}

.mateu .maincomponent .mateu-header-mobile .v-menubar, .mateu .maincomponent .mateu-header-mobile .v-button {
	margin-top: 3px;
}

.mateu .maincomponent .mateu-headers.container {
	display: block;
	margin: 0 auto;
}

.mateu .maincomponent .mateu-headers[width-range~="0-600px"] .mateu-header {
	display: none !important;
}

.mateu .maincomponent .mateu-headers[width-range~="0-600px"] .mateu-header-mobile {
	display: inherit !important;
}

.mateu .maincomponent .mateu-headers[width-range~="601px-"] .mateu-header {
	display: inherit !important;
}

.mateu .maincomponent .mateu-headers[width-range~="601px-"] .mateu-header-mobile {
	display: none !important;
}

.mateu .maincomponent .mateu-footers[width-range~="0-600px"] .mateu-footer {
	display: none !important;
}

.mateu .maincomponent .mateu-footers[width-range~="0-600px"] .mateu-footer-mobile {
	display: inherit !important;
}

.mateu .maincomponent .mateu-footers[width-range~="601px-"] .mateu-footer {
	display: inherit !important;
}

.mateu .maincomponent .mateu-footers[width-range~="601px-"] .mateu-footer-mobile {
	display: none !important;
}

.mateu .maincomponent .contenido[width-range~="0-990px"].container {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	padding: 20px;
}

.mateu .menulateral {
	left: 0px !important;
	border-radius: 0px !important;
}

.mateu .menulateral .v-window-outerheader {
	display: none;
}

.mateu .v-ui .v-loading-indicator {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: auto;
	animation: fadein 0.3s ease-out 0.2s normal 1 both;
	z-index: 2147483647;
	height: 100%;
	width: 100% !important;
}

.mateu .v-ui .v-loading-indicator[style*="none"] {
	height: 0px;
}

.mateu .v-ui .v-loading-indicator[style*="none"] .spinner {
	display: none;
}

.mateu .spinner, .mateu .spinner:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
}

.mateu .spinner {
	top: 40%;
	-ms-transform: translateY(-40%);
	transform: translateY(-40%);
	margin: 60px auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #ffffff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}

.mateu .v-button {
	color: unset;
	font-weight: unset;
}

.mateu .v-label-h4 {
	color: unset;
}

.mateu .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #3c3c3c;
	color: white;
	background-image: unset;
}

.mateu .v-menubar-popup > .v-menubar-menuitem.v-menubar-menuitem-selected {
	background-color: #3c3c3c;
	color: white;
	background-image: unset;
}

@keyframes fadein {
		0% {
		background: transparent;
	}
		100% {
		background: rgba(0, 0, 0, 0.5);
	}
	}

@-webkit-keyframes load8 {
		0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
		100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	}

@keyframes load8 {
		0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
		100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy