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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-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.15.2";
}

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

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

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

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

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

.v-ui {
	position: relative;
}

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

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

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

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

.v-clip {
	overflow: hidden;
}

.v-scrollable {
	overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

@font-face {
	font-family: "MagnoliaIcons";
	src: url(../magnolia-icons/fonts/MagnoliaIcons.woff?vl8tua) format("woff");
	font-weight: normal;
	font-style: normal;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * This mixin makes dialogs center horizontally with left and right margins.
 * To make it work, "max-width" should be provided.
 */

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

@font-face {
	font-family: "Roboto";
	src: url(../resurface/fonts/roboto/thin/Roboto-Thin.eot);
	src: url(../resurface/fonts/roboto/thin/Roboto-Thin.eot?#iefix) format("embedded-opentype"), url(../resurface/fonts/roboto/thin/Roboto-Thin.woff2) format("woff2"), url(../resurface/fonts/roboto/thin/Roboto-Thin.woff) format("woff"), url(../resurface/fonts/roboto/thin/Roboto-Thin.ttf) format("truetype"), url(../resurface/fonts/roboto/thin/Roboto-Thin.svg#Roboto-Light) format("svg");
	font-weight: 100;
}

@font-face {
	font-family: "Roboto";
	src: url(../resurface/fonts/roboto/light/Roboto-Light.eot);
	src: url(../resurface/fonts/roboto/light/Roboto-Light.eot?#iefix) format("embedded-opentype"), url(../resurface/fonts/roboto/light/Roboto-Light.woff2) format("woff2"), url(../resurface/fonts/roboto/light/Roboto-Light.woff) format("woff"), url(../resurface/fonts/roboto/light/Roboto-Light.ttf) format("truetype"), url(../resurface/fonts/roboto/light/Roboto-Light.svg#Roboto-Light) format("svg");
	font-weight: 300;
}

@font-face {
	font-family: "Roboto";
	src: url(../resurface/fonts/roboto/regular/Roboto-Regular.eot);
	src: url(../resurface/fonts/roboto/regular/Roboto-Regular.eot?#iefix) format("embedded-opentype"), url(../resurface/fonts/roboto/regular/Roboto-Regular.woff2) format("woff2"), url(../resurface/fonts/roboto/regular/Roboto-Regular.woff) format("woff"), url(../resurface/fonts/roboto/regular/Roboto-Regular.ttf) format("truetype"), url(../resurface/fonts/roboto/regular/Roboto-Regular.svg#Roboto-Light) format("svg");
	font-weight: 400;
}

@font-face {
	font-family: "Roboto";
	src: url(../resurface/fonts/roboto/medium/Roboto-Medium.eot);
	src: url(../resurface/fonts/roboto/medium/Roboto-Medium.eot?#iefix) format("embedded-opentype"), url(../resurface/fonts/roboto/medium/Roboto-Medium.woff2) format("woff2"), url(../resurface/fonts/roboto/medium/Roboto-Medium.woff) format("woff"), url(../resurface/fonts/roboto/medium/Roboto-Medium.ttf) format("truetype"), url(../resurface/fonts/roboto/medium/Roboto-Medium.svg#Roboto-Medium) format("svg");
	font-weight: 500;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

@keyframes mgnl-fade-in {
		from {
		opacity: 0;
	}
	}

@keyframes mgnl-fade-out {
		from {
		opacity: 1;
	}
	}

@keyframes pulsate {
		from {
		opacity: 1;
	}
		50% {
		opacity: 0.5;
	}
		to {
		opacity: 1;
	}
	}

@media (prefers-reduced-motion: reduce) {
	*:not(.safe-animation), *:not(.safe-animation)::before, *:not(.safe-animation)::after {
		animation-duration: 0.01s !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0s !important;
		scroll-behavior: auto !important;
	}
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * This mixin makes dialogs center horizontally with left and right margins.
 * To make it work, "max-width" should be provided.
 */

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

@keyframes mgnl-fade-in {
		from {
		opacity: 0;
	}
	}

@keyframes mgnl-fade-out {
		from {
		opacity: 1;
	}
	}

@keyframes pulsate {
		from {
		opacity: 1;
	}
		50% {
		opacity: 0.5;
	}
		to {
		opacity: 1;
	}
	}

@media (prefers-reduced-motion: reduce) {
	*:not(.safe-animation), *:not(.safe-animation)::before, *:not(.safe-animation)::after {
		animation-duration: 0.01s !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0s !important;
		scroll-behavior: auto !important;
	}
}

@font-face {
	font-family: "MagnoliaIcons";
	src: url(../magnolia-icons/fonts/MagnoliaIcons.woff?vl8tua) format("woff");
	font-weight: normal;
	font-style: normal;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

@keyframes mgnl-fade-in {
		from {
		opacity: 0;
	}
	}

@keyframes mgnl-fade-out {
		from {
		opacity: 1;
	}
	}

@keyframes pulsate {
		from {
		opacity: 1;
	}
		50% {
		opacity: 0.5;
	}
		to {
		opacity: 1;
	}
	}

@media (prefers-reduced-motion: reduce) {
	*:not(.safe-animation), *:not(.safe-animation)::before, *:not(.safe-animation)::after {
		animation-duration: 0.01s !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0s !important;
		scroll-behavior: auto !important;
	}
}

@font-face {
	font-family: "MagnoliaIcons";
	src: url(../magnolia-icons/fonts/MagnoliaIcons.woff?vl8tua) format("woff");
	font-weight: normal;
	font-style: normal;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

@keyframes mgnl-fade-in {
		from {
		opacity: 0;
	}
	}

@keyframes mgnl-fade-out {
		from {
		opacity: 1;
	}
	}

@keyframes pulsate {
		from {
		opacity: 1;
	}
		50% {
		opacity: 0.5;
	}
		to {
		opacity: 1;
	}
	}

@media (prefers-reduced-motion: reduce) {
	*:not(.safe-animation), *:not(.safe-animation)::before, *:not(.safe-animation)::after {
		animation-duration: 0.01s !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0s !important;
		scroll-behavior: auto !important;
	}
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * This mixin makes dialogs center horizontally with left and right margins.
 * To make it work, "max-width" should be provided.
 */

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

@keyframes mgnl-fade-in {
		from {
		opacity: 0;
	}
	}

@keyframes mgnl-fade-out {
		from {
		opacity: 1;
	}
	}

@keyframes pulsate {
		from {
		opacity: 1;
	}
		50% {
		opacity: 0.5;
	}
		to {
		opacity: 1;
	}
	}

/**
 * This mixin makes dialogs center horizontally with left and right margins.
 * To make it work, "max-width" should be provided.
 */

@font-face {
	font-family: "MagnoliaIcons";
	src: url(../magnolia-icons/fonts/MagnoliaIcons.woff?vl8tua) format("woff");
	font-weight: normal;
	font-style: normal;
}

.color-green {
	color: #599900;
}

.color-red {
	color: #f54200;
}

.color-yellow {
	color: #ffb300;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

/**
 * 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
 */

h1, .heading-1, .h1 {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
}

.text-medium {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.text-regular {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.text-light {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.text-tiny {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

@keyframes app-view-slide-down-35px {
		0% {
		transform: translate3d(0, 0, 0);
	}
		100% {
		transform: translate3d(0, calc(100% - 35px), 0);
	}
	}

@keyframes find-bar-panel-slide-down-35px {
		0% {
		transform: translate3d(0, calc(35px - 100%), 0);
		opacity: 0;
	}
		50% {
		opacity: 0.5;
	}
		100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	}

@keyframes app-view-slide-up-35px {
		0% {
		transform: translate3d(0, calc(100% - 35px), 0);
		opacity: 0;
	}
		50% {
		opacity: 0.5;
	}
		100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	}

@keyframes app-view-slide-down-55px {
		0% {
		transform: translate3d(0, 0, 0);
	}
		100% {
		transform: translate3d(0, calc(100% - 55px), 0);
	}
	}

@keyframes find-bar-panel-slide-down-55px {
		0% {
		transform: translate3d(0, calc(55px - 100%), 0);
		opacity: 0;
	}
		50% {
		opacity: 0.5;
	}
		100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	}

@keyframes app-view-slide-up-55px {
		0% {
		transform: translate3d(0, calc(100% - 55px), 0);
		opacity: 0;
	}
		50% {
		opacity: 0.5;
	}
		100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	}

@keyframes app-view-slide-down-75px {
		0% {
		transform: translate3d(0, 0, 0);
	}
		100% {
		transform: translate3d(0, calc(100% - 75px), 0);
	}
	}

@keyframes find-bar-panel-slide-down-75px {
		0% {
		transform: translate3d(0, calc(75px - 100%), 0);
		opacity: 0;
	}
		50% {
		opacity: 0.5;
	}
		100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	}

@keyframes app-view-slide-up-75px {
		0% {
		transform: translate3d(0, calc(100% - 75px), 0);
		opacity: 0;
	}
		50% {
		opacity: 0.5;
	}
		100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	}

.v-slot-header {
	margin-top: -71px;
	position: relative;
	z-index: 9999;
	box-shadow: 0px 5px 20px -10px #a3a3a3;
}

.v-gecko .v-app-launcher .favourite-apps-container .app-list.section .app-tile-container button {
	line-height: 24px;
	text-indent: 7px;
}

.v-window.modal {
	border-radius: 0;
}

.modal .intro-cover-image {
	margin-top: -36px;
	width: 100px;
}

.modal .popupContent {
	padding: 24px;
}

.modal .popupContent .modal-title {
	font-size: 26px;
	font-weight: 300;
}

.modal .popupContent .modal-description {
	padding-bottom: 16px;
}

.modal.intro-cover {
	right: 20px;
	bottom: 20px;
	left: unset !important;
	top: unset !important;
	box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.2);
}

.modal.intro-cover .v-window-closebox {
	font-size: 32px;
	font-weight: lighter;
}

.modal.intro-cover .v-window-closebox:hover {
	color: #101010;
}

.modal.intro-cover .v-window-outerheader::after {
	content: none;
}

.modal.intro-cover .icon {
	color: #599900;
}

.modal.intro-cover .v-button {
	height: 36px;
}

.modal.intro-cover .v-button.v-button-link {
	color: #599900;
}

.modal.intro-cover .v-button.v-button-link:hover {
	background: none;
	color: #4b7b08;
}

.modal.intro-cover .v-button.v-button-link:active {
	background: none;
	color: #4b7b08;
}

.modal.intro-cover .v-button.v-button-link:focus {
	background: none;
	color: #4b7b08;
}

.v-app, .v-app-loading {
	font: 300 14px/1.6 Roboto, sans-serif;
	color: #232323;
	background-color: #fff;
	cursor: default;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 4px;
	margin: 0;
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	color: #474747;
}

select:focus {
	outline: none;
}

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

.v-drag-element {
	background: #fff;
	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: 1px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

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

.v-tooltip {
	background-color: rgba(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: 0px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-contextmenu {
	padding: 4px 4px;
	border-radius: 1px;
	background-color: #f5f5f5;
	color: #454545;
	-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;
}

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

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

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

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

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

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

.v-contextmenu .gwt-MenuItem-selected {
	background: #232323;
	color: #e9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-reconnect-dialog {
	color: white;
	top: 10px;
	right: 20px;
	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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
}

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

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

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

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

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

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

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

.v-button.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

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

.v-button:focus:after {
	border-color: #232323;
}

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

.v-button-primary {
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0 16px;
	font-weight: bold;
	min-width: 70px;
}

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

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

.v-button-primary:focus:after {
	border-color: #232323;
}

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

.v-button-friendly {
	height: 32px;
	padding: 0 13px;
	color: #eaf4e9;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #1e6916;
	background: #2c9720;
	
	
}

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

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

.v-button-friendly:focus:after {
	border-color: #232323;
}

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

.v-button-danger {
	height: 32px;
	padding: 0 13px;
	color: #f9f0ef;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #a53129;
	background: #ed473b;
	
	
}

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

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

.v-button-danger:focus:after {
	border-color: #232323;
}

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

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

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

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

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

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

.v-button-borderless-colored:hover {
	color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.v-button-link:hover {
	color: #3d3d3d;
}

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

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

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

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

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

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

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

.v-button-huge {
	height: 51px;
	padding: 0 21px;
	
	
	font-size: 23px;
	
	border-radius: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .v-checkbox > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-checkbox > input ~ label:before, :root .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: 1px;
	font-size: 11px;
	text-align: center;
}

:root .v-checkbox > input ~ label:before {
	height: 16px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .v-checkbox-small > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-checkbox-small > input ~ label:before, :root .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: 1px;
	font-size: 9px;
	text-align: center;
}

:root .v-checkbox-small > input ~ label:before {
	height: 13.5px;
	padding: 0 6px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .v-checkbox-large > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-checkbox-large > input ~ label:before, :root .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: 1px;
	font-size: 13px;
	text-align: center;
}

:root .v-checkbox-large > input ~ label:before {
	height: 19px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 19px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.v-filterselect [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 1px;
	padding: 4px 7px;
	border: 1px solid #ababab;
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 100% !important;
	height: 100%;
	padding-right: 33px;
	border-radius: inherit;
}

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

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

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

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

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

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

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

.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 #d0d0d0;
	color: #9d9d9d;
	border-radius: 0 0px 0px 0;
}

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

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

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

.v-filterselect.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-filterselect.v-readonly [class*="input"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 4px 4px;
	border-radius: 1px;
	background-color: #f5f5f5;
	color: #454545;
	-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;
}

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

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

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

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

.v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background: #232323;
	color: #e9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

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

.v-filterselect-suggestpopup div[class*="page"] {
	position: absolute;
	z-index: 3;
	right: 0;
	opacity: 0.2;
	filter: alpha(opacity=20) ;
	cursor: pointer;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
	width: 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;
}

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

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

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

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

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

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

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

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

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

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

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

.v-filterselect-no-input [class*="input"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: #fff;
	cursor: inherit;
	
	
	border: 1px solid #b2b2b2;
	text-shadow: inherit;
	text-overflow: ellipsis;
	border-radius: inherit;
}

.v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border-color: #232323;
	
	
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-filterselect-tiny.v-readonly [class*="input"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

.v-filterselect-compact [class*="input"], .v-filterselect-small [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 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;
}

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

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

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

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

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

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

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

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

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

.v-filterselect-compact.v-readonly [class*="input"], .v-filterselect-small.v-readonly [class*="input"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-filterselect-large.v-readonly [class*="input"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-filterselect-huge.v-readonly [class*="input"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.v-csslayout-card {
	background: white;
	color: #474747;
	border-radius: 1px;
	border: 1px solid #c9c9c9;
	
	
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.v-grid {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-grid {
	outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-grid-header-deco {
	border-top: 1px solid #c1c1c1;
	border-right: 1px solid #c1c1c1;
	background-color: #f5f5f5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-grid-spacer.stripe > td {
	background-color: white;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #c1c1c1;
}

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

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

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

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

.v-grid.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-grid-header .v-grid-cell {
	background: #f5f5f5;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-grid-header .v-grid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

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

.v-grid-footer .v-grid-cell {
	background: #fff;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-grid-header-deco {
	background: #f5f5f5;
}

.v-grid-footer-deco, .v-grid-horizontal-scrollbar-deco {
	background: #fff;
}

.v-grid-row-selected  > .v-grid-cell {
	background: #232323;
	color: #c1c1c1;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #0f0f0f;
}

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

.v-grid-editor {
	border-color: #232323;
}

.v-grid-editor-footer {
	font-size: 12px;
	padding: 0 10px;
	background: #fff;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.v-grid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-grid-editor-save:hover, .v-grid-editor-cancel:hover {
	color: #3d3d3d;
}

.v-grid-editor-save.v-disabled, .v-grid-editor-cancel.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-grid-sidebar.v-contextmenu.closed {
	background: #f5f5f5;
}

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

.v-grid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

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

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

.v-grid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

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

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

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

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

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

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

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

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

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

.v-textfield {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 1px;
	padding: 4px 7px;
	border: 1px solid #ababab;
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 160px;
}

.v-textfield.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-textfield-readonly {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

.v-textfield-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 24px;
	border-radius: 1px;
	padding: 3px 5px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 11px;
}

.v-textfield-compact, .v-textfield-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 27px;
	border-radius: 1px;
	padding: 3px 6px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

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

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

.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: 1px;
	padding: 6px 10px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 23px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 18px;
	bottom: 18px;
}

.v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 51px;
}

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

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

.v-textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 1px;
	padding: 5px;
	border: 1px solid #ababab;
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	width: 160px;
}

.v-textarea.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

.v-textarea[class*="prompt"] {
	color: #9d9d9d;
}

.v-textarea-readonly {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

.v-textarea-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 24px;
	border-radius: 1px;
	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;
}

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

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

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

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

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

.v-datefield {
	position: relative;
	width: 160px;
	height: 32px;
	border-radius: 1px;
}

.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: 1px;
	padding: 4px 7px;
	border: 1px solid #ababab;
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 38.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield [class*="textfield"].v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

.v-datefield [class*="textfield"][class*="prompt"] {
	color: #9d9d9d;
}

.v-datefield[class*="prompt"] > [class*="textfield"] {
	color: #9d9d9d;
}

.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 #d0d0d0;
	color: #9d9d9d;
	border-radius: 0 0 0 0;
}

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

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

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

.v-datefield.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-datefield.v-readonly [class*="textfield"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-datefield-day {
	width: 160px;
}

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

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

.v-datefield-popup {
	padding: 4px 4px;
	border-radius: 1px;
	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;
}

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

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

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

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

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

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

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

.v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #fff;
}

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

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

.v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #474747;
	background: #fff;
	border: none;
	font-weight: 600;
}

.v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	position: relative;
}

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

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

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

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

.v-datefield-popup td[class*="year"] button, .v-datefield-popup td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 16px;
	height: 21px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

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

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

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

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

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

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

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

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

.v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: #fff;
}

.v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 64px;
}

.v-datefield-popup .v-datefield-calendarpanel-weeknumber, .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;
}

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

.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 #e8e8e8;
	border-right: 1px solid #e8e8e8;
	border-top-right-radius: 1px;
	border-bottom-left-radius: 1px;
	background: #fff;
}

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

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

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

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

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

.v-datefield-calendarpanel-day:hover {
	color: #fff;
}

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

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

.v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #474747;
	background: #fff;
	border: none;
	font-weight: 600;
}

.v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	position: relative;
}

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

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

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

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

td[class*="year"] button, td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 16px;
	height: 21px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

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

td[class*="year"] button:hover:before, td[class*="month"] button:hover:before {
	color: #232323;
}

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

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

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

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

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

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

td.v-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: #fff;
}

td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 64px;
}

.v-datefield-calendarpanel-weeknumber, .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;
}

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

.v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	width: 30px;
	border-top: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	border-top-right-radius: 1px;
	border-bottom-left-radius: 1px;
	background: #fff;
}

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

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

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

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

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

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

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

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

.v-datefield-tiny {
	height: 24px;
	border-radius: 1px;
	font-size: 11px;
}

.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: 1px;
	padding: 3px 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 28.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield-tiny [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 24px;
	line-height: 24px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 1px 0 0 1px;
}

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

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

.v-datefield-tiny.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-datefield-tiny.v-readonly [class*="textfield"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

.v-datefield-compact, .v-datefield-small {
	height: 27px;
	border-radius: 1px;
}

.v-datefield-compact [class*="textfield"], .v-datefield-small [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 27px;
	border-radius: 1px;
	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: 32.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield-compact [class*="button"], .v-datefield-small [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 27px;
	line-height: 27px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 1px 0 0 1px;
}

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

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

.v-datefield-compact.v-disabled, .v-datefield-small.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-datefield-compact.v-readonly [class*="textfield"], .v-datefield-small.v-readonly [class*="textfield"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-datefield-compact.v-readonly [class*="textfield"]:focus, .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #595959;
}

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

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

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

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

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

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

.v-datefield-large {
	height: 38px;
	border-radius: 1px;
	font-size: 17px;
}

.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: 1px;
	padding: 4px 8px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 45.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.v-datefield-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: 1px 0 0 1px;
}

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

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

.v-datefield-large.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-datefield-large.v-readonly [class*="textfield"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

.v-datefield-huge {
	height: 51px;
	border-radius: 1px;
	font-size: 23px;
}

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

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

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

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

.v-datefield-huge.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-datefield-huge.v-readonly [class*="textfield"] {
	background: rgba(255, 255, 255, 0.5);
	color: rgba(71, 71, 71, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

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

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

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

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

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

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

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

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

.v-inline-datefield-calendarpanel-day:hover {
	color: #fff;
}

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

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

.v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #474747;
	background: #fff;
	border: none;
	font-weight: 600;
}

.v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	position: relative;
}

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

.v-inline-datefield-calendarpanel-weekdays {
	height: 22px;
	color: rgba(135, 135, 135, 0.85);
}

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

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

td[class*="year"] button, td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 16px;
	height: 21px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

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

td[class*="year"] button:hover:before, td[class*="month"] button:hover:before {
	color: #232323;
}

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

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

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

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

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

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

td.v-inline-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: #fff;
}

td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 64px;
}

.v-inline-datefield-calendarpanel-weeknumber, .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;
}

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

.v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	width: 30px;
	border-top: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	border-top-right-radius: 1px;
	border-bottom-left-radius: 1px;
	background: #fff;
}

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

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

.v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 5px;
}

.v-gridlayout-margin-top {
	padding-top: 8px;
}

.v-gridlayout-margin-bottom {
	padding-bottom: 8px;
}

.v-gridlayout-margin-left {
	padding-left: 8px;
}

.v-gridlayout-margin-right {
	padding-right: 8px;
}

.v-gridlayout-spacing-on {
	padding-left: 20px;
	padding-top: 10px;
}

.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 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	cursor: default;
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	text-align: left;
	line-height: 30px;
}

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

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

.v-menubar.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

.v-menubar:focus:after {
	border-color: #232323;
}

.v-menubar  > .v-menubar-menuitem {
	padding: 0 12px;
}

.v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 32px;
}

.v-menubar:active:after {
	background: transparent;
}

.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 #b2b2b2;
	background: #fff;
	
	
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-width: 0 1px 0 0;
	border-color: inherit;
	height: 100%;
	line-height: inherit;
	vertical-align: top;
	text-align: center;
}

.v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 0 0 0 0;
}

.v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 0 0 0;
	border-right-width: 0;
}

.v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 0;
}

.v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 3px 0 -3px;
	cursor: inherit;
}

.v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 32px;
	padding: 0;
}

.v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #f2f2f2;
	background-image: -webkit-linear-gradient(bottom, #f2f2f2 0%, #f2f2f2 100%);
	background-image: linear-gradient(to top,#f2f2f2 0%, #f2f2f2 100%);
	color: #181818;
}

.v-disabled > .v-menubar-menuitem, .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.v-disabled > .v-menubar-menuitem:before, .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.v-menubar-menuitem-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-menubar > .v-menubar-menuitem-selected {
	color: #1a1a1a;
	
	
	
	border-radius: 0;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	font-family: ThemeIcons;
	content: "\f078";
	font-size: 0.7em;
	vertical-align: 0.15em;
	margin: 0 -0.2em 0 0.5em;
	opacity: 0.5;
}

.v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.v-menubar-popup {
	padding: 4px 4px;
	border-radius: 1px;
	background-color: #f5f5f5;
	color: #454545;
	-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;
}

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

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

.v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 45px;
	padding: 0 16px 0 8px;
	font-weight: 300;
	white-space: nowrap;
	position: relative;
	padding-left: 49px;
	padding-right: 32px;
	position: relative;
}

.v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #191919;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 45px;
	margin-right: 4px;
	min-width: 1em;
}

.v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 8px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 47px;
}

.v-menubar-popup .v-menubar-menuitem-selected {
	background: #232323;
	color: #e9e9e9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 4px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #d8d8d8;
}

.v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 8px;
}

.v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.v-menubar-small {
	height: 27px;
	padding: 0 11px;
	
	font-weight: 400;
	
	cursor: default;
	border-radius: 1px;
	padding: 0;
	text-align: left;
	line-height: 25px;
	font-size: 12px;
}

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

.v-menubar-small  > .v-menubar-menuitem {
	padding: 0 10px;
}

.v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 27px;
}

.v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.v-menubar-borderless:focus:after {
	display: none;
}

.v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 1px;
	color: #fff;
	padding: 0 11px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-menubar-borderless .v-menubar-menuitem:first-child, .v-menubar-borderless .v-menubar-menuitem:last-child, .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 1px;
}

.v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.v-menubar-borderless .v-menubar-menuitem:hover {
	color: white;
}

.v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.v-menubar-borderless .v-menubar-menuitem-checked, .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #b2b2b2;
	color: #fff;
}

.v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.v-menubar-borderless .v-menubar-menuitem-selected {
	color: #1a1a1a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #1a1a1a;
}

.v-menubar-borderless .v-menubar-menuitem-disabled, .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

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

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

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

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

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

:root .v-radiobutton > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-radiobutton > input ~ label:before, :root .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: 1px;
	font-size: 11px;
	text-align: center;
}

:root .v-radiobutton > input ~ label:before {
	height: 16px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 16px;
}

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

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

:root .v-radiobutton > input:checked ~ label:after {
	color: #fff;
}

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

.v-radiobutton.v-disabled  > label, .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

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

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

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

:root .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

:root .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 5px;
	left: 5px;
	background: #fff;
}

:root .v-radiobutton > input ~ label:before, :root .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.v-select-optiongroup .v-radiobutton, .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 8px 14px 0 0;
}

.v-select-optiongroup .v-radiobutton:first-child, .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 5px;
}

.v-select-optiongroup .v-radiobutton:last-child, .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 5px;
}

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

.v-select-optiongroup-small {
	font-size: 12px;
}

.v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 14px;
	white-space: nowrap;
}

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

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

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

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

:root .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: #232323;
	
	
}

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

:root .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 13.5px;
	padding: 0 6px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 14px;
}

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

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

:root .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #fff;
}

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

.v-select-optiongroup-small .v-checkbox.v-disabled  > label, .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

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

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

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

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

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

:root .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 14px;
	white-space: nowrap;
}

.v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .v-select-optiongroup-small .v-radiobutton {
	padding-left: 18px;
}

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

:root .v-select-optiongroup-small .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1px;
	font-size: 9px;
	text-align: center;
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 13.5px;
	padding: 0 6px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 14px;
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #fff;
}

.v-select-optiongroup-small .v-radiobutton > .v-icon, .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 5px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

:root .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 5px;
	left: 5px;
	background: #fff;
}

:root .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.v-select-optiongroup-small .v-radiobutton, .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 7px 14px 0 0;
}

.v-select-optiongroup-small .v-radiobutton:first-child, .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 5px;
}

.v-select-optiongroup-small .v-radiobutton:last-child, .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 5px;
}

.v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.v-select-optiongroup-large {
	font-size: 17px;
}

.v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .v-select-optiongroup-large .v-checkbox {
	padding-left: 25px;
}

:root .v-select-optiongroup-large .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-select-optiongroup-large .v-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-select-optiongroup-large .v-checkbox > input ~ label:before, :root .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1px;
	font-size: 13px;
	text-align: center;
}

:root .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 19px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 19px;
}

:root .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #fff;
}

.v-select-optiongroup-large .v-checkbox > .v-icon, .v-select-optiongroup-large .v-checkbox > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-select-optiongroup-large .v-checkbox.v-disabled  > label, .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-select-optiongroup-large .v-checkbox.v-readonly  > label, .v-select-optiongroup-large .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .v-select-optiongroup-large .v-radiobutton {
	padding-left: 25px;
}

:root .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-select-optiongroup-large .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1px;
	font-size: 13px;
	text-align: center;
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 19px;
	padding: 0 8px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 19px;
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #fff;
}

.v-select-optiongroup-large .v-radiobutton > .v-icon, .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

:root .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 7px;
	height: 7px;
	top: 6px;
	left: 6px;
	background: #fff;
}

:root .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.v-select-optiongroup-large .v-radiobutton, .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 10px 14px 0 0;
}

.v-select-optiongroup-large .v-radiobutton:first-child, .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 6px;
}

.v-select-optiongroup-large .v-radiobutton:last-child, .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 6px;
}

.v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.v-select-optiongroup-horizontal .v-radiobutton, .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.v-link {
	cursor: pointer;
	color: #232323;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-link:hover {
	color: #3d3d3d;
}

.v-link.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-link a {
	cursor: pointer;
	color: #232323;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	cursor: inherit;
	color: inherit;
	text-decoration: inherit;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	transition: inherit;
}

.v-link a:hover {
	color: #3d3d3d;
}

.v-link a.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-link .v-icon {
	cursor: inherit;
}

.v-link-small {
	font-size: 12px;
}

.v-link-large {
	font-size: 17px;
}

.v-window {
	padding: 4px 4px;
	border-radius: 1px;
	background-color: #fff;
	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 20px 50px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
	border-radius: 30px;
	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;
}

.v-window[class*="animate-in"] {
	-webkit-animation: valo-animate-in-fade 140ms;
	-moz-animation: valo-animate-in-fade 140ms;
	animation: valo-animate-in-fade 140ms;
}

.v-window[class*="animate-out"] {
	-webkit-animation: valo-animate-out-scale-down-fade 100ms;
	-moz-animation: valo-animate-out-scale-down-fade 100ms;
	animation: valo-animate-out-scale-down-fade 100ms;
}

.v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.v-window-modalitycurtain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(35, 35, 35, 0.6);
	background-image: -webkit-radial-gradient(50% 50%, circle, rgba(35, 35, 35, 0.6), rgba(35, 35, 35, 0.6));
	background-image: radial-gradient(  circle at 50% 50%, rgba(35, 35, 35, 0.6), rgba(35, 35, 35, 0.6));
	opacity: 0.8;
	filter: alpha(opacity=80) ;
	-webkit-animation: valo-animate-in-fade 400ms 100ms backwards;
	-moz-animation: valo-animate-in-fade 400ms 100ms backwards;
	animation: valo-animate-in-fade 400ms 100ms backwards;
}

.v-op12 .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.v-window-draggingCurtain {
	position: fixed !important;
}

.v-window-resizingCurtain + .v-window, .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.v-window-outerheader {
	cursor: move;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	transform: translatez(0);
}

.v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #d8d8d8;
	border-color: rgba(178, 178, 178, 0.5);
}

.v-window-header {
	line-height: 31px;
	padding-left: 11px;
	margin-right: 64px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 32px;
}

.v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 11px;
}

.v-window-closebox, .v-window-maximizebox, .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 28px;
	height: 31px;
	background-color: #fff;
	line-height: 29px;
	text-align: center;
	cursor: pointer;
	font-size: 18px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-window-closebox:focus, .v-window-maximizebox:focus, .v-window-restorebox:focus {
	outline: none;
}

.v-window-closebox:hover, .v-window-maximizebox:hover, .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #fff;
}

.v-window-closebox:active, .v-window-maximizebox:active, .v-window-restorebox:active {
	color: inherit;
}

.v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 2px;
	border-radius: 30px;
}

.v-window-maximizebox:focus::after, .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 2px;
	bottom: 5px;
	left: 5px;
	border-radius: 30px;
}

.v-window-closebox {
	padding-right: 4px;
	border-radius: 0 30px 0 30px;
}

.v-window-closebox:before {
	content: "\00d7";
}

.v-window-maximizebox, .v-window-restorebox {
	right: 28px;
	padding-left: 4px;
	border-radius: 0 0 0 30px;
}

.v-window-maximizebox  + .v-window-closebox, .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.v-window-closebox-disabled, .v-window-resizebox-disabled, .v-window-restorebox-disabled, .v-window-maximizebox-disabled {
	display: none;
}

.v-window-closebox-disabled  + .v-window-closebox, .v-window-resizebox-disabled  + .v-window-closebox, .v-window-restorebox-disabled  + .v-window-closebox, .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 32px;
	padding-right: 0;
	border-bottom-left-radius: 30px;
}

.v-window-closebox-disabled  + .v-window-closebox:focus::after, .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 5px;
}

.v-window-maximizebox:before {
	content: "+";
}

.v-window-restorebox:before {
	content: "\2013";
}

.v-window > .popupContent, .v-window-wrap, .v-window-contents, .v-window-contents > .v-scrollable {
	height: 100%;
}

.v-window-contents {
	box-sizing: border-box;
	border-radius: 1px;
	margin-top: 0 !important;
}

.v-window-contents  > .v-scrollable {
	position: relative;
}

.v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 11px;
}

.v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 11px;
}

.v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 11px;
}

.v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 11px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 11px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 11px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 11px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 11px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 11px;
}

.v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 11px;
}

.v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.v-window-contents  > .v-scrollable:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #fff;
	left: 0;
	right: 0;
}

.v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #d8d8d8;
}

.v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: #fff;
}

.v-window-footer {
	height: 0;
}

.v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	cursor: nwse-resize;
}

.v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.v-window-top-toolbar  > .v-widget, .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.v-window-top-toolbar .v-label, .v-window-bottom-toolbar .v-label {
	line-height: 31px;
}

.v-window-top-toolbar .v-spacing, .v-window-bottom-toolbar .v-spacing {
	width: 10px;
}

.v-window-top-toolbar.v-layout {
	padding: 6px 11px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
	background-color: #fff;
}

.v-window-top-toolbar.v-menubar {
	margin: 11px 11px 5px;
}

.v-window-top-toolbar.v-menubar-borderless {
	padding-left: 5px;
	padding-right: 5px;
	margin: 4px 0;
}

.v-window-bottom-toolbar.v-layout {
	padding: 6px 11px;
	background-color: #fff;
	background-image: -webkit-linear-gradient(top, white 0, #fff 3px);
	background-image: linear-gradient(to bottom,white 0, #fff 3px);
	border-top: 1px solid #d8d8d8;
	border-radius: 0 0 1px 1px;
}

.v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -11px -11px 0;
}

.v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -6px -6px 0;
	padding: 0;
}

.v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -11px -11px;
}

.v-tree {
	position: relative;
	white-space: nowrap;
}

.v-tree:focus {
	outline: none;
}

.v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 25px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.v-tree-node-caption {
	height: 25px;
	line-height: 24px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.v-tree-node-caption > div:before {
	content: "\f0da";
	font-family: ThemeIcons;
	display: inline-block;
	width: 0.5em;
	text-align: center;
	margin: 0 0.6em 0 0.8em;
	-webkit-transition: all 100ms;
	-moz-transition: all 100ms;
	transition: all 100ms;
}

.v-tree-node-caption span {
	padding-right: 25px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .v-tree-node-caption span {
	width: auto;
}

.v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -25px;
	width: 100%;
	height: 25px;
	border-radius: 1px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

.v-tree-node-expanded > .v-tree-node-caption > div:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-tree-node-leaf:before, .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid #232323;
}

.v-tree-node-selected {
	color: #1a1a1a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-tree-node-selected:after {
	opacity: 1;
	background: #fff;
	border: none;
}

.v-tree-node-children {
	padding-left: 16px;
}

.v-tree-node-drag-top:before, .v-tree-node-drag-bottom:after, .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded > .v-tree-node-children:before {
	content: "\2022";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #232323;
	font-size: 28px;
	line-height: 2px;
	color: #232323;
	text-indent: -4px;
	text-shadow: 0 0 1px #fff, 0 0 1px #fff;
	opacity: 1;
	visibility: visible;
}

.v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px #232323;
	box-shadow: 0 0 0 2px #232323;
	position: relative;
	border-radius: 1px;
}

.v-ff  .v-tree-node-drag-top:before, .v-ff  .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.v-tree8 {
	position: relative;
}

.v-tree8-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.v-tree8-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.v-tree8-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.v-tree8-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.v-tree8-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.v-tree8-header-deco, .v-tree8-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.v-tree8-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.v-tree8-header, .v-tree8-body, .v-tree8-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.v-tree8-header, .v-tree8-header-deco {
	top: 0;
}

.v-tree8-footer, .v-tree8-footer-deco {
	bottom: 0;
}

.v-tree8-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.v-tree8-body .v-tree8-header > .v-tree8-row {
	position: relative;
}

.v-tree8-row {
	display: block;
}

.v-tree8-row  > td, .v-tree8-row  > th {
	background-color: white;
}

.v-tree8-row {
	width: inherit;
}

.v-tree8-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.v-tree8-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.v-tree8 {
	outline: none;
}

.v-tree8-scroller-vertical, .v-tree8-scroller-horizontal {
	border: 1px solid #dbdbdb;
}

.v-tree8-scroller-vertical {
	border-left: none;
}

.v-tree8-scroller-horizontal {
	border-top: none;
}

.v-tree8-tablewrapper {
	border: 1px solid #dbdbdb;
}

.v-tree8 .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-cell {
	border: 1px solid #dbdbdb;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #232323;
	position: absolute;
	width: 3px;
}

.v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f5f5f5;
	border: 1px solid #c1c1c1;
	padding: 0;
	z-index: 5;
}

.v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 12px;
}

.v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.v-tree8-cell {
	background-color: white;
	padding: 0 16.5px;
	line-height: 35px;
	text-overflow: ellipsis;
}

.v-tree8-cell  > * {
	line-height: 1.6;
	vertical-align: middle;
}

.v-tree8-cell  > div {
	display: inline-block;
}

.v-tree8-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: none;
	position: relative;
	z-index: 11;
}

.v-tree8-cell div.component-wrap {
	width: 100%;
}

.v-tree8-row > td, .v-tree8-editor-cells > div {
	border-left: none;
	border-bottom: 1px solid #c1c1c1;
}

.v-tree8-row > td:first-child, .v-tree8-editor-cells > div:first-child {
	border-left: none;
}

.v-tree8-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: none;
	border-left: none;
}

.v-tree8-row-stripe > td {
	background-color: white;
}

.v-tree8-row-selected > td {
	background: #232323;
}

.v-tree8-row-focused > td {
	
}

.v-tree8-header th {
	position: relative;
	background-color: #f5f5f5;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
	
	text-align: left;
}

.v-tree8-header th:first-child {
	border-left: none;
}

.v-tree8-header .sort-asc, .v-tree8-header .sort-desc {
	padding-right: 30.5px;
}

.v-tree8-header .sort-asc:after, .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 16.5px;
	font-size: 10px;
}

.v-tree8-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.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;
}

.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;
}

.v-tree8-footer td {
	background-color: #fff;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #c1c1c1;
	border-top: 1px solid #c1c1c1;
	border-bottom: none;
	
}

.v-tree8-footer td:first-child {
	border-left: none;
}

.v-tree8-header .v-tree8-cell, .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

.v-tree8-column-header-content, .v-tree8-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 35px;
	vertical-align: baseline;
}

.v-tree8-header-deco {
	border-top: 1px solid #c1c1c1;
	border-right: 1px solid #c1c1c1;
	background-color: #f5f5f5;
}

.v-tree8-footer-deco {
	border-bottom: 1px solid #c1c1c1;
	border-right: 1px solid #c1c1c1;
	background-color: #fff;
}

.v-tree8-horizontal-scrollbar-deco {
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border-top: none;
}

.v-tree8-cell-focused {
	position: relative;
}

.v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #232323;
	display: none;
	pointer-events: none;
}

.v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #dbdbdb;
	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);
}

.v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.v-tree8-editor-cells.frozen {
	z-index: 2;
}

.v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.v-tree8-editor-cells  > div:first-child {
	border-left: none;
}

.v-tree8-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.v-tree8-editor-cells  > div input[type="text"], .v-tree8-editor-cells  > div input[type="text"].v-filterselect-input, .v-tree8-editor-cells  > div input[type="password"] {
	padding-left: 16.5px;
}

.v-tree8-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .v-tree8-editor-cells  > div input[type="password"] {
	padding-right: 8.25px;
}

.v-tree8-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 16.5px;
}

.v-tree8-editor-cells  > div .v-textfield, .v-tree8-editor-cells  > div .v-datefield, .v-tree8-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.v-tree8-editor-cells  > div .v-select, .v-tree8-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.v-tree8-editor-cells  > div.not-editable.v-tree8-cell {
	float: none;
}

.v-tree8-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.v-tree8-editor-cells .error, .v-tree8-editor-cells .error > input {
	background-color: #fee;
}

.v-tree8-editor-footer {
	display: table;
	height: 35px;
	border-top: 1px solid #c1c1c1;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #c1c1c1;
}

.v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #c1c1c1;
	margin-bottom: -1px;
}

.v-tree8-editor-message, .v-tree8-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.v-tree8-editor-message {
	width: 100%;
	position: relative;
}

.v-tree8-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 35px;
	top: 0;
}

.v-tree8-editor-save {
	margin-right: 4px;
}

.v-tree8-spacer {
	padding-left: 1px;
}

.v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #c1c1c1;
}

.v-tree8-spacer.stripe > td {
	background-color: white;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #c1c1c1;
}

.v-tree8-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #232323;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.v-tree8-cell > .v-progressbar {
	width: 100%;
}

.v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fff;
}

.v-tree8.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-tree8-header .v-tree8-cell {
	background: #f5f5f5;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-tree8-header .v-tree8-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -18px;
}

.v-tree8-footer .v-tree8-cell {
	background: #fff;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-tree8-header-deco {
	background: #f5f5f5;
}

.v-tree8-footer-deco, .v-tree8-horizontal-scrollbar-deco {
	background: #fff;
}

.v-tree8-row-selected  > .v-tree8-cell {
	background: #232323;
	color: #c1c1c1;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #0f0f0f;
}

.v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #565656;
}

.v-tree8-editor {
	border-color: #232323;
}

.v-tree8-editor-footer {
	font-size: 12px;
	padding: 0 10px;
	background: #fff;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.v-tree8-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.v-tree8-editor-cells {
	z-index: 1;
}

.v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.v-tree8-editor-cells > div.not-editable.v-tree8-cell {
	float: none;
}

.v-tree8-editor-cells > div .error::before {
	border-top: 8px solid #ed473b;
	border-right: 8px solid transparent;
}

.v-tree8-editor-cells > div .error, .v-tree8-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.v-tree8-editor-cells > div .v-textfield, .v-tree8-editor-cells > div .v-textfield-focus, .v-tree8-editor-cells > div .v-datefield, .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .v-tree8-editor-cells > div .v-filterselect-input, .v-tree8-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 38.4px;
}

.v-tree8-editor-cells > div .v-textfield-focus, .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.v-tree8-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.v-tree8-editor-cells > div .v-checkbox.v-widget {
	margin: 0 8px 0 16.5px;
}

.v-tree8-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.v-tree8-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.v-tree8-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 16px;
	text-align: center;
	content: "!";
}

.v-tree8-editor-save, .v-tree8-editor-cancel {
	cursor: pointer;
	color: #232323;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 10px;
	margin: 0;
	outline: none;
}

.v-tree8-editor-save:hover, .v-tree8-editor-cancel:hover {
	color: #3d3d3d;
}

.v-tree8-editor-save.v-disabled, .v-tree8-editor-cancel.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-tree8-spacer {
	margin-top: -1px;
}

.v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-tree8-sidebar.v-contextmenu.closed {
	background: #f5f5f5;
}

.v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.v-tree8-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.v-tree8-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.v-tree8-row-drag-top, .v-tree8-row-drag-bottom {
	z-index: 100;
}

.v-tree8-row-drag-top:before, .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #232323;
	pointer-events: none;
	border: none;
}

.v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.v-tree8-row-drag-top:before {
	top: -1px;
}

.v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #232323;
	pointer-events: none;
}

.v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #0a0a0a;
}

.v-tree8-row-selected.v-tree8-row-drag-top:before, .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #0a0a0a;
}

.v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #232323;
	z-index: 100;
}

.v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-tree8-expander.collapse-disabled::before {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
	cursor: default;
}

.v-tree8-node.depth-0 {
	padding-left: 0em;
}

.v-tree8-node.depth-1 {
	padding-left: 1em;
}

.v-tree8-node.depth-2 {
	padding-left: 2em;
}

.v-tree8-node.depth-3 {
	padding-left: 3em;
}

.v-tree8-node.depth-4 {
	padding-left: 4em;
}

.v-tree8-node.depth-5 {
	padding-left: 5em;
}

.v-tree8-node.depth-6 {
	padding-left: 6em;
}

.v-tree8-node.depth-7 {
	padding-left: 7em;
}

.v-tree8-node.depth-8 {
	padding-left: 8em;
}

.v-tree8-node.depth-9 {
	padding-left: 9em;
}

.v-tree8-node.depth-10 {
	padding-left: 10em;
}

.v-tree8-node.depth-11 {
	padding-left: 11em;
}

.v-tree8-node.depth-12 {
	padding-left: 12em;
}

.v-tree8-node.depth-13 {
	padding-left: 13em;
}

.v-tree8-node.depth-14 {
	padding-left: 14em;
}

.v-tree8-node.depth-15 {
	padding-left: 15em;
}

.v-tree8-node.depth-16 {
	padding-left: 16em;
}

.v-tree8-node.depth-17 {
	padding-left: 17em;
}

.v-tree8-node.depth-18 {
	padding-left: 18em;
}

.v-tree8-node.depth-19 {
	padding-left: 19em;
}

.v-tree8-node.depth-20 {
	padding-left: 20em;
}

.v-tree8-node.depth-21 {
	padding-left: 21em;
}

.v-tree8-node.depth-22 {
	padding-left: 22em;
}

.v-tree8-node.depth-23 {
	padding-left: 23em;
}

.v-tree8-node.depth-24 {
	padding-left: 24em;
}

.v-tree8-node.depth-25 {
	padding-left: 25em;
}

.v-tree8-node.depth-26 {
	padding-left: 26em;
}

.v-tree8-node.depth-27 {
	padding-left: 27em;
}

.v-tree8-node.depth-28 {
	padding-left: 28em;
}

.v-tree8-node.depth-29 {
	padding-left: 29em;
}

.v-tree8-node.depth-30 {
	padding-left: 30em;
}

.v-tree8-node.depth-31 {
	padding-left: 31em;
}

.v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #232323;
	display: none;
	pointer-events: none;
}

.v-tree8-cell-focused {
	position: static;
}

.v-tree8-cell-focused::before {
	display: none;
}

.v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.v-tree8 {
	background-color: transparent;
}

.v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.v-tree8-row > td  > * {
	vertical-align: baseline;
}

.v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.v-tree8-row::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 1px;
	pointer-events: none;
	border-width: 1px;
}

.v-tree8-cell {
	position: relative;
}

.v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.v-tree8-row-selected::before {
	display: block;
	background: #232323;
}

.v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #c1c1c1;
}

.v-tree8-scroller-vertical {
	border: none;
}

.v-tree8-scroller-horizontal {
	border: none;
}

.v-tree8-header-deco, .v-tree8-footer-deco, .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.v-treegrid {
	position: relative;
}

.v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.v-treegrid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.v-treegrid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.v-treegrid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.v-treegrid-header-deco, .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.v-treegrid-header, .v-treegrid-body, .v-treegrid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.v-treegrid-header, .v-treegrid-header-deco {
	top: 0;
}

.v-treegrid-footer, .v-treegrid-footer-deco {
	bottom: 0;
}

.v-treegrid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.v-treegrid-row {
	display: block;
}

.v-treegrid-row  > td, .v-treegrid-row  > th {
	background-color: white;
}

.v-treegrid-row {
	width: inherit;
}

.v-treegrid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.v-treegrid {
	outline: none;
}

.v-treegrid-scroller-vertical, .v-treegrid-scroller-horizontal {
	border: 1px solid #dbdbdb;
}

.v-treegrid-scroller-vertical {
	border-left: none;
}

.v-treegrid-scroller-horizontal {
	border-top: none;
}

.v-treegrid-tablewrapper {
	border: 1px solid #dbdbdb;
}

.v-treegrid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-cell {
	border: 1px solid #dbdbdb;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #232323;
	position: absolute;
	width: 3px;
}

.v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f5f5f5;
	border: 1px solid #c1c1c1;
	padding: 0;
	z-index: 5;
}

.v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button {
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	outline: none;
	padding: 0 4px;
	text-align: right;
	line-height: 1;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 12px;
}

.v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.v-treegrid-cell {
	background-color: white;
	padding: 0 16.5px;
	line-height: 35px;
	text-overflow: ellipsis;
}

.v-treegrid-cell  > * {
	line-height: 1.6;
	vertical-align: middle;
}

.v-treegrid-cell  > div {
	display: inline-block;
}

.v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: none;
	position: relative;
	z-index: 11;
}

.v-treegrid-cell div.component-wrap {
	width: 100%;
}

.v-treegrid-row > td, .v-treegrid-editor-cells > div {
	border-left: none;
	border-bottom: 1px solid #c1c1c1;
}

.v-treegrid-row > td:first-child, .v-treegrid-editor-cells > div:first-child {
	border-left: none;
}

.v-treegrid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: none;
	border-left: none;
}

.v-treegrid-row-stripe > td {
	background-color: white;
}

.v-treegrid-row-selected > td {
	background: #232323;
}

.v-treegrid-row-focused > td {
	
}

.v-treegrid-header th {
	position: relative;
	background-color: #f5f5f5;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
	
	text-align: left;
}

.v-treegrid-header th:first-child {
	border-left: none;
}

.v-treegrid-header .sort-asc, .v-treegrid-header .sort-desc {
	padding-right: 30.5px;
}

.v-treegrid-header .sort-asc:after, .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 16.5px;
	font-size: 10px;
}

.v-treegrid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.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;
}

.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;
}

.v-treegrid-footer td {
	background-color: #fff;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #c1c1c1;
	border-top: 1px solid #c1c1c1;
	border-bottom: none;
	
}

.v-treegrid-footer td:first-child {
	border-left: none;
}

.v-treegrid-header .v-treegrid-cell, .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

.v-treegrid-column-header-content, .v-treegrid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 35px;
	vertical-align: baseline;
}

.v-treegrid-header-deco {
	border-top: 1px solid #c1c1c1;
	border-right: 1px solid #c1c1c1;
	background-color: #f5f5f5;
}

.v-treegrid-footer-deco {
	border-bottom: 1px solid #c1c1c1;
	border-right: 1px solid #c1c1c1;
	background-color: #fff;
}

.v-treegrid-horizontal-scrollbar-deco {
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border-top: none;
}

.v-treegrid-cell-focused {
	position: relative;
}

.v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #232323;
	display: none;
	pointer-events: none;
}

.v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #dbdbdb;
	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);
}

.v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.v-treegrid-editor-cells  > div:first-child {
	border-left: none;
}

.v-treegrid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.v-treegrid-editor-cells  > div input[type="text"], .v-treegrid-editor-cells  > div input[type="text"].v-filterselect-input, .v-treegrid-editor-cells  > div input[type="password"] {
	padding-left: 16.5px;
}

.v-treegrid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .v-treegrid-editor-cells  > div input[type="password"] {
	padding-right: 8.25px;
}

.v-treegrid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 16.5px;
}

.v-treegrid-editor-cells  > div .v-textfield, .v-treegrid-editor-cells  > div .v-datefield, .v-treegrid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.v-treegrid-editor-cells  > div .v-select, .v-treegrid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.v-treegrid-editor-cells  > div.not-editable.v-treegrid-cell {
	float: none;
}

.v-treegrid-editor-cells .error::before {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	content: "";
	border-top: 5px solid red;
	border-right: 5px solid transparent;
}

.v-treegrid-editor-cells .error, .v-treegrid-editor-cells .error > input {
	background-color: #fee;
}

.v-treegrid-editor-footer {
	display: table;
	height: 35px;
	border-top: 1px solid #c1c1c1;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #c1c1c1;
}

.v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #c1c1c1;
	margin-bottom: -1px;
}

.v-treegrid-editor-message, .v-treegrid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

.v-treegrid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 35px;
	top: 0;
}

.v-treegrid-editor-save {
	margin-right: 4px;
}

.v-treegrid-spacer {
	padding-left: 1px;
}

.v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #c1c1c1;
}

.v-treegrid-spacer.stripe > td {
	background-color: white;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #c1c1c1;
}

.v-treegrid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #232323;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fff;
}

.v-treegrid.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-treegrid-header .v-treegrid-cell {
	background: #f5f5f5;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-treegrid-header .v-treegrid-cell.dragged {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -18px;
}

.v-treegrid-footer .v-treegrid-cell {
	background: #fff;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-treegrid-header-deco {
	background: #f5f5f5;
}

.v-treegrid-footer-deco, .v-treegrid-horizontal-scrollbar-deco {
	background: #fff;
}

.v-treegrid-row-selected  > .v-treegrid-cell {
	background: #232323;
	color: #c1c1c1;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #0f0f0f;
}

.v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #565656;
}

.v-treegrid-editor {
	border-color: #232323;
}

.v-treegrid-editor-footer {
	font-size: 12px;
	padding: 0 10px;
	background: #fff;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.v-treegrid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.v-treegrid-editor-cells {
	z-index: 1;
}

.v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.v-treegrid-editor-cells > div.not-editable.v-treegrid-cell {
	float: none;
}

.v-treegrid-editor-cells > div .error::before {
	border-top: 8px solid #ed473b;
	border-right: 8px solid transparent;
}

.v-treegrid-editor-cells > div .error, .v-treegrid-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.v-treegrid-editor-cells > div .v-textfield, .v-treegrid-editor-cells > div .v-textfield-focus, .v-treegrid-editor-cells > div .v-datefield, .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .v-treegrid-editor-cells > div .v-filterselect-input, .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 38.4px;
}

.v-treegrid-editor-cells > div .v-textfield-focus, .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.v-treegrid-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.v-treegrid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 8px 0 16.5px;
}

.v-treegrid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.v-treegrid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.v-treegrid-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 16px;
	text-align: center;
	content: "!";
}

.v-treegrid-editor-save, .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #232323;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
	font-weight: 400;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 10px;
	margin: 0;
	outline: none;
}

.v-treegrid-editor-save:hover, .v-treegrid-editor-cancel:hover {
	color: #3d3d3d;
}

.v-treegrid-editor-save.v-disabled, .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-treegrid-spacer {
	margin-top: -1px;
}

.v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.v-treegrid-sidebar.v-contextmenu.closed {
	background: #f5f5f5;
}

.v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.v-treegrid-scroller::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 4px solid transparent;
	background: rgba(0, 0, 0, 0.3);
	-webkit-background-clip: content-box;
	background-clip: content-box;
}

.v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.v-treegrid-row-drag-badge {
	background-color: red;
	color: white;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	line-height: 30px;
	text-align: center;
	float: left;
}

.v-treegrid-row-drag-top, .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.v-treegrid-row-drag-top:before, .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #232323;
	pointer-events: none;
	border: none;
}

.v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.v-treegrid-row-drag-top:before {
	top: -1px;
}

.v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #232323;
	pointer-events: none;
}

.v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #0a0a0a;
}

.v-treegrid-row-selected.v-treegrid-row-drag-top:before, .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #0a0a0a;
}

.v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #232323;
	z-index: 100;
}

.v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-treegrid-expander.collapse-disabled::before {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
	cursor: default;
}

.v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #232323;
	display: none;
	pointer-events: none;
}

.v-treegrid-cell-focused {
	position: static;
}

.v-treegrid-cell-focused::before {
	display: none;
}

.v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.v-table {
	position: relative;
	background: #fff;
	color: #474747;
	overflow: hidden;
}

.v-table-header table, .v-table-footer table, .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #c1c1c1;
	box-shadow: 0 0 0 1px #c1c1c1;
}

.v-table-header-wrap, .v-table-footer-wrap, .v-table-header-drag {
	border: 1px solid #c1c1c1;
	background: #fff;
	white-space: nowrap;
	font-size: 12px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.v-table-footer-wrap {
	border-top: none;
}

.v-table-footer td {
	border-left: 1px solid #c1c1c1;
}

.v-table-footer-container, .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 32px;
	box-sizing: border-box;
}

.v-table-footer-container {
	padding: 9px 11px 10px;
	float: right;
}

[class^="v-table-header-cell"] {
	position: relative;
}

.v-table-caption-container, .v-table-header-drag {
	padding: 10px 11px 9px;
	border-left: 1px solid #c1c1c1;
}

.v-table-caption-container-align-right {
	padding-right: 4px;
}

.v-table-resizer {
	height: 32px;
	width: 7px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -7px;
}

.v-table-cell-content {
	border-left: 1px solid #c1c1c1;
	overflow: hidden;
	height: 33px;
	vertical-align: middle;
}

.v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.v-table-header td:first-child .v-table-caption-container, .v-table-footer td:first-child {
	border-left-color: transparent;
}

.v-table-cell-wrapper {
	line-height: 1;
	padding: 0 11px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.v-table-cell-wrapper  > .v-widget {
	margin: 3px -6px;
}

.v-table-cell-wrapper  > .v-widget.v-label, .v-table-cell-wrapper  > .v-widget.v-checkbox, .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.v-table-body {
	border: 1px solid #c1c1c1;
	overflow-anchor: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.v-table-table {
	background-color: white;
	white-space: nowrap;
}

.v-table-table td {
	border-top: 1px solid #c1c1c1;
	box-sizing: border-box;
}

.v-table-table tr:first-child > td {
	height: 32px;
	border-top: none;
}

.v-table-row {
	background-color: white;
	cursor: pointer;
}

.v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.v-table-body-noselection .v-table-row, .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.v-table [class*="-row"].v-selected {
	background: #fff;
	background-origin: border-box;
	color: #1a1a1a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-table [class*="-row"].v-selected  + .v-selected {
	background: #fff;
}

.v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #fff;
}

.v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #ebebeb;
}

.v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.v-table-header-cell-asc .v-table-sort-indicator, .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 16px;
	height: 32px;
	line-height: 32px;
	margin-left: -16px;
}

.v-table-header-cell-asc .v-table-sort-indicator:before, .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

[class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.v-table-focus {
	outline: 1px solid #232323;
	outline-offset: -1px;
}

.v-drag-element.v-table-focus, .v-drag-element .v-table-focus {
	outline: none;
}

.v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -16px;
	z-index: 30000;
	line-height: 1;
}

.v-table-focus-slot-right {
	border-right: 3px solid #232323;
	right: -2px;
	margin-left: -10px !important;
}

.v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #232323;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -10px;
}

.v-table-column-selector {
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	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 1px;
	cursor: pointer;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0) ;
	-webkit-transition: opacity 200ms 2s;
	-moz-transition: opacity 200ms 2s;
	transition: opacity 200ms 2s;
}

.v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-table-column-selector:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-table-column-selector:focus:after {
	border-color: #232323;
}

.v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-table-column-selector:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.v-on:before, .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 5px;
}

.v-on div, .v-off div {
	display: inline;
}

.v-on.v-disabled, .v-off.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-off:before {
	visibility: hidden;
}

tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

tbody.v-drag-element tr {
	display: block;
	
	
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 1px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.v-table-body {
	position: relative;
	z-index: 1;
}

.v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 32px;
	line-height: 32px;
	margin: -16px 0 0 !important;
	text-align: center;
}

.v-table-drag {
	overflow: visible;
}

.v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(35, 35, 35, 0.5);
	box-shadow: 0 0 0 2px rgba(35, 35, 35, 0.5);
	border-color: #232323;
}

.v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.v-table-row-drag-middle .v-table-cell-content {
	background-color: #d3d3d3;
	color: #3b3b3b;
}

.v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #232323;
	height: 31px;
}

.v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #232323;
	height: 32px;
}

.v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.v-table-no-stripes .v-table-row, .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 12px;
}

.v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 32px;
}

.v-table-no-header .v-table-header-wrap {
	display: none;
}

.v-table-borderless .v-table-header-wrap, .v-table-borderless .v-table-footer-wrap, .v-table-borderless .v-table-header-drag, .v-table-borderless .v-table-body {
	border: none;
}

.v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #c9c9c9;
}

.v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #c9c9c9;
}

.v-table-compact .v-table-header-wrap, .v-table-compact .v-table-footer-wrap, .v-table-compact .v-table-header-drag, .v-table-small .v-table-header-wrap, .v-table-small .v-table-footer-wrap, .v-table-small .v-table-header-drag {
	font-size: 12px;
}

.v-table-compact .v-table-footer-container, .v-table-small .v-table-footer-container {
	padding: 7px 7px 8px;
}

.v-table-compact .v-table-caption-container, .v-table-compact .v-table-header-drag, .v-table-small .v-table-caption-container, .v-table-small .v-table-header-drag {
	padding-top: 8px;
	padding-bottom: 7px;
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact .v-table-caption-container-align-right, .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.v-table-compact .v-table-resizer, .v-table-small .v-table-resizer {
	height: 27px;
}

.v-table-compact .v-table-cell-content, .v-table-small .v-table-cell-content {
	height: 27px;
}

.v-table-compact .v-table-cell-wrapper, .v-table-small .v-table-cell-wrapper {
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact .v-table-cell-wrapper  > .v-widget, .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 2px -3px;
}

.v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 27px;
	line-height: 27px;
}

.v-table-compact .v-table-header-drag, .v-table-small .v-table-header-drag {
	margin-top: -14px;
}

.v-table-compact.v-treetable .v-table-cell-wrapper, .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 14px;
}

.v-table-compact.v-treetable .v-table-cell-content, .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact.v-treetable .v-table-cell-content:first-child, .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 7px;
}

.v-table-compact.v-treetable .v-table-footer-container, .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 6px;
	padding-right: 6px;
}

.v-table-compact .v-table-row-drag-top .v-table-cell-content, .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .v-table-small .v-table-row-drag-top .v-table-cell-content, .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 26px;
}

.v-table-small {
	font-size: 12px;
}

.v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 12px;
}

.v-treetable [class*="caption-container"], .v-treetable [class*="footer-container"], .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.v-treetable [class*="caption-container"], .v-treetable [class*="footer-container"] {
	min-height: 13px;
}

.v-treetable [class*="cell-wrapper"] {
	min-height: 14px;
}

.v-treetable [class*="caption-container"] {
	padding-left: 11px;
}

.v-treetable [class*="caption-container-align-right"] {
	padding-left: 18px;
}

.v-treetable [class*="footer-container"] {
	padding-right: 11px;
}

.v-treetable [class*="cell-content"] {
	padding-left: 11px;
	padding-right: 11px;
}

.v-treetable [class*="cell-content"]:first-child {
	padding-left: 12px;
}

.v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 16px !important;
	margin-left: -22px;
	text-align: center;
	cursor: pointer;
}

.v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -5px;
	right: -5px;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
	background: #fff;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #232323;
}

.v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -5px;
	bottom: -5px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #232323;
}

.v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 11px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
	background: #fff;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #232323;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #d1d1d1;
	border-top-color: #a3a3a3;
	border-left-color: #a3a3a3;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 32px;
	margin-left: -1px;
	margin-top: -16px;
}

.v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 11px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 11px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	padding: 0;
	border-radius: 0;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #232323;
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #d1d1d1;
	border-top-color: #a3a3a3;
	border-left-color: #a3a3a3;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 0;
	margin-left: -16px;
	margin-top: -1px;
}

.v-progressbar-wrapper {
	border-radius: 1px;
	height: 8px;
	background: #d9d9d9;
	box-sizing: border-box;
	min-width: 64px;
}

.v-progressbar-indicator {
	border-radius: 1px;
	height: inherit;
	background: #fff;
	
	
	border: 1px solid #b2b2b2;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 3px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 1px;
	height: inherit;
	background: #fff;
	
	
	border: 1px solid #b2b2b2;
	box-sizing: border-box;
	max-width: 100%;
	width: 8px;
	vertical-align: top;
}

.v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(35, 35, 35, 0.2);
	border-top-color: #232323;
	border-right-color: #232323;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.v-slider {
	position: relative;
}

.v-slider:focus {
	outline: none;
}

.v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

.v-slider.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-slider-base {
	border-radius: 1px;
	height: 8px;
	background: #d9d9d9;
	box-sizing: border-box;
	min-width: 64px;
	height: 4px;
	margin: 14px 9px;
	white-space: nowrap;
	overflow: hidden;
	
}

.v-slider-base:before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 9px;
	width: 2px;
	border-radius: 1px;
	border-left: 1px solid #b2b2b2;
}

.v-slider-base:after {
	border-radius: 1px;
	height: inherit;
	background: #fff;
	
	
	border: 1px solid #b2b2b2;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.v-has-width > .v-slider-base {
	min-width: 0;
}

.v-slider-handle {
	margin-top: -14px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.v-slider-handle:before {
	height: 32px;
	padding: 0 13px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
}

.v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.v-slider-handle:before:hover:after {
	background-color: rgba(191, 191, 191, 0.1);
}

.v-slider-handle:before:focus:after {
	border-color: #232323;
}

.v-slider-handle:before:active:after {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-slider-handle:after {
	border: 1px solid #b2b2b2;
	border-color: #232323;
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

.v-slider-handle:before, .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	position: absolute;
	z-index: 1;
	margin-top: 7px;
	margin-left: -9px;
}

.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: 0px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

.v-slider-vertical {
	padding: 9px 0;
	height: 82px;
}

.v-slider-vertical .v-slider-base {
	background: #d9d9d9;
	width: 4px;
	height: 100% !important;
	min-width: 0;
	margin: 0 14px;
}

.v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 9px;
	left: 14px;
	right: 14px;
	width: auto;
	height: 2px;
	border-left: none;
	border-bottom: 1px solid #b2b2b2;
}

.v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background: #fff;
}

.v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 32px;
	display: block;
}

.v-slider-vertical .v-slider-handle:before, .v-slider-vertical .v-slider-handle:after {
	width: 18px;
	height: 18px;
	margin-top: -9px;
	margin-left: -7px;
}

.v-slider-no-indicator .v-slider-base:before, .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.v-tabsheet-spacertd {
	display: none !important;
}

.v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #d8d8d8;
	bottom: 0;
	left: 0;
	right: 0;
}

.v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.v-tabsheet-tabitemcell .v-caption {
	margin-left: 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;
}

.v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 8px;
}

.v-tabsheet-tabitemcell .v-caption:hover {
	color: #fff;
}

.v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
	cursor: default;
	color: inherit !important;
}

.v-tabsheet-tabitemcell:first-child .v-caption, .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.v-tabsheet-tabitemcell:not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 16px;
}

.v-tabsheet-tabitemcell:focus {
	outline: none;
}

.v-tabsheet-tabitemcell:focus .v-caption {
	color: #fff;
}

.v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #fff;
	color: #fff;
}

.v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 18px;
}

.v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 3px;
}

.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: 1px;
	color: #999999;
}

.v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #fff;
}

.v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #fff;
	color: #474747;
}

.v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 16px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #fff 70%, rgba(255, 255, 255, 0) 100%);
	background-image: linear-gradient(to left,#fff 70%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.v-tabsheet-scroller:after {
	content: "";
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #d8d8d8 70%, rgba(216, 216, 216, 0) 100%);
	background-image: linear-gradient(to left,#d8d8d8 70%, rgba(216, 216, 216, 0) 100%);
}

.v-tabsheet-scroller button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	height: 100%;
	margin: 0;
	padding: 0 8px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #fff;
}

.v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #fff;
}

.v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.v-tabsheet-scroller [class*="Next"] {
	padding-left: 4px;
}

.v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.v-tabsheet-scroller [class*="Prev"] {
	padding-right: 4px;
}

.v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.v-tabsheet-tabsheetpanel > .v-scrollable > .v-widget {
	-webkit-animation: valo-animate-in-fade 300ms backwards;
	-moz-animation: valo-animate-in-fade 300ms backwards;
	animation: valo-animate-in-fade 300ms backwards;
}

.v-tabsheet-deco {
	height: 16px !important;
	width: 16px !important;
	box-sizing: border-box;
	border: 2px solid rgba(35, 35, 35, 0.2);
	border-top-color: #232323;
	border-right-color: #232323;
	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;
}

.v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 3px;
	padding: 0 20px;
	background-color: #fff;
	border: 1px solid transparent;
	line-height: 31px;
	border-radius: 1px 1px 0 0;
	font-weight: 400;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	transition: background-color 160ms;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f7f7f7;
	border-bottom-color: #d8d8d8;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #fff;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 35px;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 3px;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #d8d8d8;
}

.v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #d8d8d8;
	border-bottom: none;
	padding-bottom: 1px;
}

.v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #d8d8d8;
	border-top: none;
}

.v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #d8d8d8;
	border-bottom: none;
	background: #fff;
	padding-top: 5px;
}

.v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 6px;
}

.v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 8px;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1.2;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 20px;
}

.v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 8px;
}

.v-colorpicker-popup [class$="sliders"] {
	padding: 11px;
}

.v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 42px;
}

.v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -42px;
	width: 42px;
}

.v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 70px;
}

.v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -70px;
	width: 70px;
}

.v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.v-colorpicker-popup .resize-button-caption {
	display: none;
}

.v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 8px 0;
	background-color: #fff;
	border-top: 1px solid #f2f2f2;
}

.v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 8px;
	display: inline-flex;
}

.v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.v-colorpicker {
	width: auto;
}

.v-colorpicker-button-color {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border-radius: 0px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 19px;
}

.v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 16px;
}

.v-panel {
	background: white;
	color: #474747;
	border-radius: 1px;
	border: 1px solid #c9c9c9;
	
	
	overflow: visible !important;
}

.v-panel-caption {
	box-sizing: border-box;
	padding: 0 11px;
	line-height: 31px;
	border-bottom: 1px solid #c9c9c9;
	background-color: #fff;
	background-image: -webkit-linear-gradient(top, #fff 0%, #fff 100%);
	background-image: linear-gradient(to bottom,#fff 0%, #fff 100%);
	color: #474747;
	font-weight: 400;
	font-size: 13px;
	
	
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 0px 0px 0 0;
}

.v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.v-panel-content  > .v-margin-top {
	padding-top: 11px;
}

.v-panel-content  > .v-margin-right {
	padding-right: 11px;
}

.v-panel-content  > .v-margin-bottom {
	padding-bottom: 11px;
}

.v-panel-content  > .v-margin-left {
	padding-left: 11px;
}

.v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 11px;
	border-bottom: none;
}

.v-panel-well {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset false;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset false;
	border-radius: 1px;
	border: 1px solid #b2b2b2;
}

.v-panel-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #d8d8d8;
	border-color: rgba(178, 178, 178, 0.5);
}

.v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #fff;
	left: 0;
	right: 0;
}

.v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.v-panel-caption.v-horizontallayout .v-label {
	line-height: 32px;
}

.v-accordion {
	background: white;
	color: #474747;
	border-radius: 1px;
	border: 1px solid #c9c9c9;
	
	
	background-color: #fff;
	background-image: -webkit-linear-gradient(top, #fff 0%, #fff 100%);
	background-image: linear-gradient(to bottom,#fff 0%, #fff 100%);
	overflow: hidden;
}

.v-accordion-item {
	position: relative;
}

.v-accordion-item:first-child {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

.v-accordion-item:last-child {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #c9c9c9;
}

.v-accordion-item-caption {
	border-radius: inherit;
}

.v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 11px;
	line-height: 31px;
	border-bottom: 1px solid #c9c9c9;
	background-color: #fff;
	background-image: -webkit-linear-gradient(top, #fff 0%, #fff 100%);
	background-image: linear-gradient(to bottom,#fff 0%, #fff 100%);
	color: #474747;
	font-weight: 400;
	font-size: 13px;
	
	
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: block;
	background: transparent;
	border-bottom-color: #b2b2b2;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.v-accordion-item-caption  > .v-caption:hover:before, .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(191, 191, 191, 0.1);
	border: none;
}

.v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(128, 128, 128, 0.2);
}

.v-accordion-item-content {
	-webkit-box-shadow: inset false;
	box-shadow: inset false;
	background-color: white;
	box-sizing: border-box;
}

.v-accordion-item-content  > .v-margin-top {
	padding-top: 11px;
}

.v-accordion-item-content  > .v-margin-right {
	padding-right: 11px;
}

.v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 11px;
}

.v-accordion-item-content  > .v-margin-left {
	padding-left: 11px;
}

.v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-accordion-borderless  > .v-accordion-item, .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.v-select-twincol {
	white-space: normal;
}

.v-select-twincol select {
	border: 1px solid #b2b2b2;
	background: #fff;
	color: #474747;
}

.v-select-twincol select:focus {
	outline: none;
}

.v-select-twincol .v-textfield, .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 8px;
}

.v-select-twincol .v-nativebutton {
	margin-left: 8px;
}

.v-select-twincol-caption-left, .v-select-twincol-caption-right {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 0px;
}

.v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.v-select-twincol-buttons .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
	position: absolute;
	left: 8px;
	right: 8px;
	top: 31px;
	padding: 0;
	text-align: center;
}

.v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.v-select-twincol-buttons .v-button-caption {
	display: none;
}

.v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.v-select-twincol-buttons .v-button:first-child {
	border-radius: 1px 1px 0 0;
}

.v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 1px 1px;
}

.v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.v-select-twincol-error .v-select-twincol-options, .v-select-twincol-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-select-twincol-error-info .v-select-twincol-options, .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.v-select-twincol-error-warning .v-select-twincol-options, .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.v-select-twincol-error-error .v-select-twincol-options, .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-select-twincol-error-critical .v-select-twincol-options, .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.v-select-twincol-error-system .v-select-twincol-options, .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.v-select select {
	border: 1px solid #b2b2b2;
	background: #fff;
	color: #474747;
}

.v-select select:focus {
	outline: none;
}

.v-select-select {
	display: block;
}

.v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-calendar-header-day {
	font-weight: 400;
	text-align: center;
	padding: 6px 0;
}

.v-calendar-header-week .v-calendar-back, .v-calendar-header-week .v-calendar-next {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	outline: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-header-week .v-calendar-back:focus, .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.v-calendar-header-week .v-calendar-back:hover, .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.v-calendar-header-week .v-calendar-back:active, .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.v-calendar-month {
	outline: none;
	overflow: hidden;
}

.v-calendar-month td {
	vertical-align: top;
}

.v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.v-calendar-bottom-spacer, .v-calendar-spacer, .v-calendar-bottom-spacer-empty {
	height: 17px;
	margin-bottom: 3px;
}

.v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 4px;
	cursor: pointer;
}

.v-calendar-bottom-spacer:hover {
	color: #232323;
}

.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;
}

.v-calendar-day-number:hover {
	color: #232323;
}

.v-calendar-month-day-today {
	background: #f4f4f4;
}

.v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 400;
	color: #232323;
	border-top: 2px solid #232323;
	line-height: 20px;
	margin: 0;
	padding: 0 4px;
}

.v-calendar-month-day-selected {
	background-color: white;
}

.v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

.v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e6e6e6;
}

.v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 19px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.v-calendar-header-week td {
	vertical-align: middle !important;
}

.v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.v-calendar-time {
	text-align: right;
	padding-right: 8px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.v-calendar-day-times, .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.v-calendar-day-times:focus, .v-calendar-day-times-today:focus {
	outline: none;
}

.v-calendar .v-datecellslot, .v-calendar .v-datecellslot-even {
	border-top: 1px solid #d8d8d8;
}

.v-calendar .v-datecellslot:first-child, .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.v-calendar .v-datecellslot, .v-calendar .v-datecellslot-even {
	margin-right: 4px;
}

.v-calendar-current-time {
	background: #232323;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-current-time:before {
	content: "\2022";
	color: #232323;
	font-size: 22px;
	margin-left: -0.07em;
}

.v-calendar .v-daterange {
	position: relative;
}

.v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #fff;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 1px 1px 0 0;
}

.v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 1px;
}

.v-calendar-event:focus {
	outline: none;
}

.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;
}

.v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 17px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.v-calendar-event-all-day {
	padding: 0 4px;
	box-sizing: border-box;
	height: 17px;
	line-height: 17px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.v-calendar-event-all-day:before {
	content: "";
}

.v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.v-calendar-event-start.v-calendar-event-continued-to, .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.v-calendar-event-start {
	border-top-left-radius: 1px;
	border-bottom-left-radius: 1px;
	margin-left: 4px;
}

.v-calendar-event-end {
	border-top-right-radius: 1px;
	border-bottom-right-radius: 1px;
	margin-right: 4px;
}

.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;
}

.v-calendar-event-caption span {
	font-weight: 300;
	white-space: nowrap;
}

.v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 2px;
	border: 1px solid #fff;
	padding-top: 3px;
	margin-right: 4px;
}

.v-calendar-event-month:before {
	color: #00ace0;
}

.v-calendar-event-all-day {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
	color: #00ace0;
}

.v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #cceef8;
	background-color: rgba(204, 238, 248, 0.8);
}

.v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.v-calendar-event-all-day[class*="color2"] {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
	color: #2d9f19;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d5ebd1;
	background-color: rgba(213, 235, 209, 0.8);
}

.v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.v-calendar-event-all-day[class*="color3"] {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
	color: #d18100;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f5e5cc;
	background-color: rgba(245, 229, 204, 0.8);
}

.v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.v-calendar-event-all-day[class*="color4"] {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
	color: #ce3812;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f5d7cf;
	background-color: rgba(245, 215, 207, 0.8);
}

.v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.v-calendar-event-all-day[class*="color5"] {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
	color: #2d55cd;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d5ddf5;
	background-color: rgba(213, 221, 245, 0.8);
}

.v-calendar.v-disabled * {
	cursor: default;
}

.v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.v-label.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-label-undef-w {
	white-space: nowrap;
}

h1, .v-label-h1, h2, .v-label-h2, h3, .v-label-h3 {
	line-height: 1.1;
	font-weight: 300;
	color: #141414;
}

h1, .v-label-h1 {
	font-size: 50px;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -1.2px;
}

h2, .v-label-h2 {
	font-size: 26px;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.6px;
}

h3, .v-label-h3 {
	font-size: 18px;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: -0.4px;
}

h4, .v-label-h4 {
	line-height: 1.1;
	font-weight: 500;
	font-size: 12px;
	color: #424242;
	text-transform: uppercase;
	letter-spacing: -0.3px;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.v-csslayout  > h1:first-child, .v-csslayout  > h2:first-child, .v-csslayout  > h3:first-child, .v-csslayout  > h4 > .v-label-h1:first-child, .v-csslayout  > .v-label-h2:first-child, .v-csslayout  > .v-label-h3:first-child, .v-csslayout  > .v-label-h4:first-child {
	margin-top: 14px;
}

.v-verticallayout > .v-slot:first-child h1, .v-verticallayout > .v-slot:first-child .v-label-h1, .v-verticallayout > .v-slot:first-child h2, .v-verticallayout > .v-slot:first-child .v-label-h2, .v-verticallayout > .v-slot:first-child h3, .v-verticallayout > .v-slot:first-child .v-label-h3, .v-verticallayout > .v-slot:first-child h4, .v-verticallayout > .v-slot:first-child .v-label-h4, .v-verticallayout > div > .v-slot:first-child h1, .v-verticallayout > div > .v-slot:first-child .v-label-h1, .v-verticallayout > div > .v-slot:first-child h2, .v-verticallayout > div > .v-slot:first-child .v-label-h2, .v-verticallayout > div > .v-slot:first-child h3, .v-verticallayout > div > .v-slot:first-child .v-label-h3, .v-verticallayout > div > .v-slot:first-child h4, .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 14px;
}

.v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

h1.no-margin, .v-label-h1.no-margin, h2.no-margin, .v-label-h2.no-margin, h3.no-margin, .v-label-h3.no-margin, h4.no-margin, .v-label-h4.no-margin {
	margin: 0 !important;
}

.v-label-colored {
	color: #232323;
}

.v-label-large {
	font-size: 17px;
}

.v-label-small {
	font-size: 12px;
}

.v-label-tiny {
	font-size: 11px;
}

.v-label-huge {
	font-size: 23px;
}

.v-label-bold {
	font-weight: 500;
}

.v-label-light {
	font-weight: 200;
	color: gray;
}

.v-label-align-right {
	text-align: right;
}

.v-label-align-center {
	text-align: center;
}

.v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(35, 35, 35, 0.2);
	border-top-color: #232323;
	border-right-color: #232323;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.v-label-success, .v-label-failure {
	background: #f5f5f5;
	color: #454545;
	border: 2px solid #2c9720;
	border-radius: 1px;
	padding: 6px 16px 6px 32px;
	font-weight: 400;
	font-size: 13px;
}

.v-label-success:before, .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -16px;
	color: #2c9720;
}

.v-label-failure {
	border-color: #ed473b;
}

.v-label-failure:before {
	content: "\f05e";
	color: #ed473b;
}

[draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.v-ddwrapper {
	position: relative;
}

.v-ddwrapper-over:before, .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #232323;
}

.v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.no-vertical-drag-hints .v-ddwrapper-over-top:before, .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.no-vertical-drag-hints .v-ddwrapper-over-top:after, .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 1px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #919191;
}

.no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 1px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #919191;
}

.no-horizontal-drag-hints.v-ddwrapper-over-left:before, .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.no-horizontal-drag-hints.v-ddwrapper-over-left:after, .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 1px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #919191;
}

.no-horizontal-drag-hints.v-ddwrapper-over-right:before, .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.no-horizontal-drag-hints.v-ddwrapper-over-right:after, .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 1px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #919191;
}

.v-ddwrapper-over-middle:after, .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 1px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #919191;
}

.no-box-drag-hints.v-ddwrapper:after, .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

button {
	font: inherit;
	font-weight: 400;
	line-height: 1.6;
}

.v-nativebutton {
	-webkit-touch-callout: none;
}

.v-select select {
	border: 1px solid #b2b2b2;
	background: #fff;
	color: #474747;
}

.v-select select:focus {
	outline: none;
}

.v-select-select {
	display: block;
}

.v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.v-popupview {
	cursor: pointer;
	color: #232323;
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-popupview:hover {
	color: #3d3d3d;
}

.v-popupview.v-disabled {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-popupview-popup {
	padding: 4px 4px;
	border-radius: 1px;
	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;
}

.v-popupview-popup[class*="animate-in"] {
	-webkit-animation: v-popupview-animate-in 120ms;
	-moz-animation: v-popupview-animate-in 120ms;
	animation: v-popupview-animate-in 120ms;
}

.v-popupview-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 11px;
}

.v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 11px;
}

.v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 11px;
}

.v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 11px;
}

.v-popupview-loading {
	margin: 10px 20px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(35, 35, 35, 0.2);
	border-top-color: #232323;
	border-right-color: #232323;
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
}

.v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 1px;
	padding: 0;
	border: 1px solid #ababab;
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	overflow: hidden;
}

.v-richtextarea[class*="prompt"] {
	color: #9d9d9d;
}

.v-richtextarea .gwt-RichTextToolbar {
	background: #fff;
	
	
	border-bottom: 1px solid #b2b2b2;
	color: #474747;
}

.v-richtextarea .gwt-ToggleButton, .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 32px;
	width: 32px;
	text-align: center;
	outline: none;
}

.v-richtextarea .gwt-ToggleButton:hover, .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.v-richtextarea .gwt-ToggleButton-down, .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e6e6e6;
	background-image: -webkit-linear-gradient(bottom, #e6e6e6 0%, #e6e6e6 100%);
	background-image: linear-gradient(to top,#e6e6e6 0%, #e6e6e6 100%);
}

.v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 11px;
	padding: 0 8px 8px 0;
}

.v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 8px 0 0 8px;
}

.v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.v-richtextarea-readonly {
	padding: 4px 6px;
	background: transparent;
}

.v-upload .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.v-upload-immediate .v-button {
	width: 100%;
}

.v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 32px;
	text-align: right;
	border: none;
	background: transparent;
}

.v-Notification.v-position-top {
	top: 10px;
}

.v-Notification.v-position-right {
	right: 20px;
}

.v-Notification.v-position-bottom {
	bottom: 10px;
}

.v-Notification.v-position-left {
	left: 20px;
}

.v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.v-Notification-animate-in {
	-webkit-animation: valo-animate-in-fade 180ms 10ms backwards;
	-moz-animation: valo-animate-in-fade 180ms 10ms backwards;
	animation: valo-animate-in-fade 180ms 10ms backwards;
}

.v-Notification-animate-in.v-position-top {
	-webkit-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	animation: valo-animate-in-slide-down 400ms 10ms backwards;
}

.v-Notification-animate-in.v-position-bottom {
	-webkit-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	animation: valo-animate-in-slide-up 400ms 10ms backwards;
}

.v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.v-Notification-animate-out.v-position-top, .v-Notification-animate-out.v-position-bottom {
	-webkit-animation: valo-animate-out-slide-down-fade 200ms;
	-moz-animation: valo-animate-out-slide-down-fade 200ms;
	animation: valo-animate-out-slide-down-fade 200ms;
}

.v-Notification {
	border-radius: 1px;
	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;
}

.v-Notification .v-Notification-caption {
	color: #232323;
	font-size: 17px;
	line-height: 1;
}

.v-Notification .v-Notification-description {
	line-height: 1.4;
}

.v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.v-Notification-description, .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.v-Notification-caption ~ .v-Notification-description, .v-Notification-caption ~ .v-Notification-details {
	margin-left: 21px;
}

.v-icon + .v-Notification-caption {
	margin-left: 14px;
}

.v-Notification-system {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 11px 13px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 20px;
}

.v-Notification-system .v-Notification-description, .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.v-Notification-system.v-position-top {
	top: 0;
}

.v-Notification-system.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.v-Notification-system.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.v-Notification-system.v-position-bottom {
	bottom: 0;
}

.v-Notification-system.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.v-Notification-system.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.v-Notification-system .v-Notification-description, .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.v-Notification-system u {
	text-decoration: none;
}

.v-Notification.tray {
	text-align: left;
}

.v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.v-Notification.warning {
	background: #FFF3D2;
}

.v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.v-Notification.error {
	background: #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;
}

.v-Notification.error .v-Notification-caption {
	color: white;
}

.v-Notification.error .v-Notification-description {
	color: #f4e0df;
}

.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;
}

.v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.v-Notification.error:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 400;
	line-height: 20px;
}

.v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.v-Notification.dark .v-Notification-description, .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.v-Notification.bar {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 11px 13px;
}

.v-Notification.bar .v-Notification-description, .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.v-Notification.bar.v-position-top {
	top: 0;
}

.v-Notification.bar.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.v-Notification.bar.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.v-Notification.bar.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.v-Notification.bar.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.v-Notification.small {
	padding: 10px 11px;
}

.v-Notification.small .v-Notification-caption {
	font-size: 14px;
}

.v-Notification.small .v-Notification-description {
	font-size: 12px;
}

.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);
}

.v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.v-Notification.critical-error .v-Notification-description {
	color: #f4e0df;
}

.v-Notification.closable {
	padding-right: 51px;
	overflow: hidden !important;
	cursor: pointer;
}

.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;
}

.v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.v-Notification.closable:active:after {
	background-color: #000;
	color: #fff;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	-webkit-transition: none 200ms;
	-moz-transition: none 200ms;
	transition: none 200ms;
}

.v-Notification.closable.dark:after, .v-Notification.closable.critical-error:after, .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.v-Notification.closable.dark:active:after, .v-Notification.closable.critical-error:active:after, .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.v-Notification.closable.tray:after {
	top: 14px;
	margin-top: 0;
}

.v-Notification.success, .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.v-Notification.success .v-Notification-caption, .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 400;
}

.v-Notification.success .v-Notification-caption:before, .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.v-Notification.success.bar, .v-Notification.failure.bar {
	margin: -2px !important;
}

.v-Notification.failure {
	border-color: #ed473b;
}

.v-Notification.failure .v-Notification-caption {
	color: #ed473b;
}

.v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.valo-menu {
	height: 100%;
	background-color: #4d4d4d;
	background-image: -webkit-linear-gradient(right, #4d4d4d 0%, #4d4d4d 8px);
	background-image: linear-gradient(to left,#4d4d4d 0%, #4d4d4d 8px);
	color: #a6a6a6;
	font-size: 13px;
	line-height: 26px;
	border-right: 1px solid #353535;
	white-space: nowrap;
}

.valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.valo-menu-part {
	border-left: 1px solid #3f3f3f;
	height: 100%;
	padding-bottom: 32px;
	overflow: auto;
}

.valo-menu-part:first-child {
	border-left: none;
}

.valo-menu-title, .valo-menu-subtitle, .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.valo-menu-title .valo-menu-badge, .valo-menu-subtitle .valo-menu-badge, .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 16px;
}

.valo-menu-title {
	line-height: 1.2;
	background: #fff;
	color: black;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 11px 16px;
	font-size: 13px;
	border-bottom: 1px solid #b2b2b2;
	
	
	text-align: center;
}

.valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #b2b2b2;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.valo-menu-title .v-menubar-menuitem {
	background: transparent;
	
	
	text-shadow: inherit;
	font-size: 14px;
	border-color: inherit;
}

.valo-menu-title h1, .valo-menu-title .v-label-h1, .valo-menu-title h2, .valo-menu-title .v-label-h2, .valo-menu-title h3, .valo-menu-title .v-label-h3, .valo-menu-title h4, .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.v-menubar-user-menu {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
	margin: 16px 6px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.v-menubar-user-menu:focus:after {
	display: none;
}

.v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 1px;
	color: #fff;
	padding: 0 11px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	transition: color 140ms;
}

.v-menubar-user-menu .v-menubar-menuitem:first-child, .v-menubar-user-menu .v-menubar-menuitem:last-child, .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 1px;
}

.v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.v-menubar-user-menu .v-menubar-menuitem:hover {
	color: white;
}

.v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.v-menubar-user-menu .v-menubar-menuitem-checked, .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #b2b2b2;
	color: #fff;
}

.v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #1a1a1a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #1a1a1a;
}

.v-menubar-user-menu .v-menubar-menuitem-disabled, .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 48px;
	height: 48px;
	border-radius: 25px;
	
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #b2b2b2;
}

.v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.valo-menu-subtitle {
	color: #878787;
	margin: 6px 0 6px 16px;
	border-bottom: 1px solid #676767;
}

.valo-menu-subtitle [class*="badge"] {
	color: #e6e6e6;
}

.valo-menuitems {
	display: block;
}

.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;
}

.valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 16px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.valo-menu-item [class*="badge"] {
	color: #fff;
}

.valo-menu-item.selected {
	background: #454545;
}

.valo-menu-item.selected .v-icon {
	color: #fff;
}

.valo-menu-item.selected [class*="badge"] {
	background: #fff;
	color: #474747;
}

.valo-menu-item:focus, .valo-menu-item:hover, .valo-menu-item.selected {
	color: white;
}

.valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 16px;
	text-align: center;
	vertical-align: middle;
}

.valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.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: 1px;
}

.valo-menu-part.large-icons {
	background-color: #4d4d4d;
	min-width: 64px;
	max-width: 96px;
}

.valo-menu-part.large-icons .valo-menu-title {
	font-size: 11px;
}

.valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 25px;
	height: 25px;
}

.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;
	
}

.valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 11px;
	text-align: center;
	border-top: 1px solid #575757;
}

.valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.3;
}

.valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.valo-menu-part.large-icons .valo-menu-item.selected {
	background: #454545;
}

.valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #454545;
}

.valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 6px;
	right: 6px;
	border: 2px solid #4d4d4d;
}

.valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 38px !important;
	height: 38px;
	border-radius: 1px;
	text-align: center;
	background: #fff;
	color: black;
	font-size: 21px;
	line-height: 38px;
	margin: 16px auto;
	
	
}

.valo-menu-logo:focus {
	outline: none;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #4d4d4d;
	min-width: 64px;
	max-width: 96px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 11px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 25px;
	height: 25px;
}

.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;
	
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 11px;
	text-align: center;
	border-top: 1px solid #575757;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.3;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #454545;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #454545;
}

.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;
}

.valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 32px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 32px;
}

.valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 32px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	height: 32px;
	color: gray;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 31px;
	white-space: nowrap;
}

.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;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #4d4d4d;
	background-image: -webkit-linear-gradient(right, #4d4d4d 0%, #4d4d4d 8px);
	background-image: linear-gradient(to left,#4d4d4d 0%, #4d4d4d 8px);
	color: #a6a6a6;
	font-size: 13px;
	line-height: 26px;
	border-right: 1px solid #353535;
	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;
}

.valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .valo-menu-responsive[width-range~="0-800px"] .valo-menu-hover:hover .valo-menuitems {
	-webkit-transform: translatex(0%);
	-moz-transform: translatex(0%);
	-ms-transform: translatex(0%);
	-o-transform: translatex(0%);
	transform: translatex(0%);
}

.valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 16px;
	overflow: hidden;
}

[class^="icon-"], [class*=" icon-"], .MagnoliaIcons {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-appslauncher:before {
	content: "\e900";
}

.icon-pulse:before {
	content: "\e901";
}

.icon-favorites:before {
	content: "\e902";
}

.icon-rssfeed:before {
	content: "\e903";
}

.icon-webpages-app:before {
	content: "\e904";
}

.icon-assets-app:before {
	content: "\e905";
}

.icon-documents-app:before {
	content: "\e906";
}

.icon-news:before {
	content: "\e907";
}

.icon-people:before {
	content: "\e908";
}

.icon-companies:before {
	content: "\e909";
}

.icon-items:before {
	content: "\e90a";
}

.icon-files:before {
	content: "\e90b";
}

.icon-contents:before {
	content: "\e90c";
}

.icon-content-app:before {
	content: "\e90d";
}

.icon-configuration-app:before {
	content: "\e90e";
}

.icon-security-app:before {
	content: "\e90f";
}

.icon-jcr-app:before {
	content: "\e910";
}

.icon-logging-app:before {
	content: "\e911";
}

.icon-audit-app:before {
	content: "\e912";
}

.icon-import-export-app:before {
	content: "\e913";
}

.icon-language-app:before {
	content: "\e914";
}

.icon-packager-app:before {
	content: "\e915";
}

.icon-backup-app:before {
	content: "\e916";
}

.icon-folder:before {
	content: "\e917";
}

.icon-file:before {
	content: "\e918";
}

.icon-file-text:before {
	content: "\e919";
}

.icon-file-word:before {
	content: "\e91a";
}

.icon-file-excel:before {
	content: "\e91b";
}

.icon-file-powerpoint:before {
	content: "\e91c";
}

.icon-file-pdf:before {
	content: "\e91d";
}

.icon-file-webpage:before {
	content: "\e91e";
}

.icon-file-image:before {
	content: "\e91f";
}

.icon-file-video:before {
	content: "\e920";
}

.icon-file-audio:before {
	content: "\e921";
}

.icon-content-item:before {
	content: "\e922";
}

.icon-work-item:before {
	content: "\e923";
}

.icon-user-me:before {
	content: "\e924";
}

.icon-user-anyone:before {
	content: "\e927";
}

.icon-user-magnolia:before {
	content: "\e928";
}

.icon-user-system:before {
	content: "\e929";
}

.icon-user-public:before {
	content: "\e92a";
}

.icon-user-group:before {
	content: "\e92b";
}

.icon-user-role:before {
	content: "\e92c";
}

.icon-node-folder:before {
	content: "\e92d";
}

.icon-node-content:before {
	content: "\e92e";
}

.icon-node-data:before {
	content: "\e92f";
}

.icon-action:before {
	content: "\e930";
}

.icon-switch-preview:before {
	content: "\e931";
}

.icon-switch-edit:before {
	content: "\e932";
}

.icon-switch-review:before {
	content: "\e933";
}

.icon-open-fullscreen:before {
	content: "\e934";
}

.icon-close-fullscreen:before {
	content: "\e935";
}

.icon-show-changes:before {
	content: "\e936";
}

.icon-hide-changes:before {
	content: "\e937";
}

.icon-add-file:before {
	content: "\e938";
}

.icon-add-folder:before {
	content: "\e939";
}

.icon-delete:before {
	content: "\e93a";
}

.icon-edit:before {
	content: "\e93b";
}

.icon-move:before {
	content: "\e93c";
}

.icon-view:before {
	content: "\e93d";
}

.icon-copy:before {
	content: "\e93e";
}

.icon-paste:before {
	content: "\e93f";
}

.icon-duplicate:before {
	content: "\e940";
}

.icon-publish:before {
	content: "\e941";
}

.icon-publish-incl-sub:before {
	content: "\e942";
}

.icon-unpublish:before {
	content: "\e943";
}

.icon-mark:before {
	content: "\e944";
}

.icon-unmark:before {
	content: "\e945";
}

.icon-share:before {
	content: "\e946";
}

.icon-add-node-content:before {
	content: "\e947";
}

.icon-add-node-data:before {
	content: "\e948";
}

.icon-undo:before {
	content: "\e949";
}

.icon-redo:before {
	content: "\e94a";
}

.icon-add-fav:before {
	content: "\e94b";
}

.icon-remove-fav:before {
	content: "\e94c";
}

.icon-import:before {
	content: "\e94d";
}

.icon-export:before {
	content: "\e94e";
}

.icon-upload:before {
	content: "\e94f";
}

.icon-download:before {
	content: "\e950";
}

.icon-open-new-window:before {
	content: "\e951";
}

.icon-view-tree:before {
	content: "\e952";
}

.icon-view-list:before {
	content: "\e953";
}

.icon-view-thumbnails:before {
	content: "\e954";
}

.icon-search:before {
	content: "\e955";
}

.icon-arrow1_e:before {
	content: "\e956";
}

.icon-arrow1_n:before {
	content: "\e957";
}

.icon-arrow1_s:before {
	content: "\e958";
}

.icon-arrow1_w:before {
	content: "\e959";
}

.icon-slider-handle:before {
	content: "\e95a";
}

.icon-slider-max:before {
	content: "\e95b";
}

.icon-slider-min:before {
	content: "\e95c";
}

.icon-slider-rail:before {
	content: "\e95d";
}

.icon-arrow2_e:before {
	content: "\e95e";
}

.icon-arrow2_n:before {
	content: "\e95f";
}

.icon-arrow2_s:before {
	content: "\e960";
}

.icon-arrow2_w:before {
	content: "\e961";
}

.icon-confirm-tick:before {
	content: "\e962";
}

.icon-confirm:before {
	content: "\e963";
}

.icon-error-mark:before {
	content: "\e964";
}

.icon-error:before {
	content: "\e965";
}

.icon-warning-mark:before {
	content: "\e966";
}

.icon-warning:before {
	content: "\e967";
}

.icon-info_mark:before {
	content: "\e968";
}

.icon-info:before {
	content: "\e969";
}

.icon-help-mark:before {
	content: "\e96a";
}

.icon-help:before {
	content: "\e96b";
}

.icon-checkbox_fill:before {
	content: "\e96c";
}

.icon-checkbox_outline:before {
	content: "\e96d";
}

.icon-checkbox_tick:before {
	content: "\e96e";
}

.icon-radio_fill:before {
	content: "\e96f";
}

.icon-radio_outline:before {
	content: "\e970";
}

.icon-radio_dot:before {
	content: "\e971";
}

.icon-datepicker:before {
	content: "\e972";
}

.icon-trash:before {
	content: "\e973";
}

.icon-wizard-step:before {
	content: "\e974";
}

.icon-open-fullscreen-2:before {
	content: "\e975";
}

.icon-close-fullscreen-2:before {
	content: "\e976";
}

.icon-spinner-1:before {
	content: "\e977";
}

.icon-spinner-2:before {
	content: "\e979";
}

.icon-spinner-3:before {
	content: "\e97a";
}

.icon-spinner-4:before {
	content: "\e97b";
}

.icon-spinner-5:before {
	content: "\e97c";
}

.icon-spinner-6:before {
	content: "\e97d";
}

.icon-spinner-7:before {
	content: "\e97e";
}

.icon-spinner-8:before {
	content: "\e97f";
}

.icon-spinner-full:before {
	content: "\e980";
}

.icon-notification-badge-plus:before {
	content: "\e981";
}

.icon-notification-badge:before {
	content: "\e982";
}

.icon-tick:before {
	content: "\e983";
}

.icon-close:before {
	content: "\e984";
}

.icon-app:before {
	content: "\e985";
}

.icon-instant_preview:before {
	content: "\e986";
}

.icon-development-app:before {
	content: "\e987";
}

.icon-add-item:before {
	content: "\e988";
}

.icon-articles-app:before {
	content: "\e989";
}

.icon-forums:before {
	content: "\e98a";
}

.icon-asset-pool:before {
	content: "\e98b";
}

.icon-folder-l:before {
	content: "\e98c";
}

.icon-node-folder-l:before {
	content: "\e98d";
}

.icon-edit-wo:before {
	content: "\e98e";
}

.icon-crop-image:before {
	content: "\e98f";
}

.icon-rotate-image-cw:before {
	content: "\e990";
}

.icon-rotate-image-ccw:before {
	content: "\e991";
}

.icon-flip-horizontally:before {
	content: "\e992";
}

.icon-flip-vertically:before {
	content: "\e993";
}

.icon-zoom-to-fit:before {
	content: "\e994";
}

.icon-fit-canvas:before {
	content: "\e995";
}

.icon-view-in-actual-size:before {
	content: "\e996";
}

.icon-cache-app:before {
	content: "\e997";
}

.icon-server-config-info:before {
	content: "\e998";
}

.icon-reserve:before {
	content: "\e999";
}

.icon-status-green:before {
	content: "\e99a";
}

.icon-status-orange:before {
	content: "\e99b";
}

.icon-status-red:before {
	content: "\e99c";
}

.icon-categories:before {
	content: "\e99d";
}

.icon-tag:before {
	content: "\e99e";
}

.icon-tags:before {
	content: "\e99f";
}

.icon-delete-search:before {
	content: "\e9a0";
}

.icon-select:before {
	content: "\e9a1";
}

.icon-show-versions:before {
	content: "\e9a2";
}

.icon-compare-versions:before {
	content: "\e9a3";
}

.icon-retrieve-versions:before {
	content: "\e9a4";
}

.icon-read-only:before {
	content: "\e9a5";
}

.icon-lock:before {
	content: "\e9a6";
}

.icon-unlock:before {
	content: "\e9a7";
}

.icon-forums-app:before {
	content: "\e9a8";
}

.icon-forums-thread:before {
	content: "\e9a9";
}

.icon-forums-article:before {
	content: "\e9aa";
}

.icon-message-app:before {
	content: "\e9ab";
}

.icon-message:before {
	content: "\e9ac";
}

.icon-mail-setting:before {
	content: "\e9ad";
}

.icon-content-translation-app:before {
	content: "\e9ae";
}

.icon-error-l:before {
	content: "\e9af";
}

.icon-warning-l:before {
	content: "\e9b0";
}

.icon-info-l:before {
	content: "\e9b1";
}

.icon-help-l:before {
	content: "\e9b2";
}

.icon-segments-app:before {
	content: "\e9b3";
}

.icon-segmentation:before {
	content: "\e9b4";
}

.icon-add-segmentation:before {
	content: "\e9b5";
}

.icon-segment:before {
	content: "\e9b6";
}

.icon-add-segment:before {
	content: "\e9b7";
}

.icon-personas-app:before {
	content: "\e9b8";
}

.icon-persona:before {
	content: "\e9b9";
}

.icon-add-persona:before {
	content: "\e9ba";
}

.icon-preview-app:before {
	content: "\e9bb";
}

.icon-has-variants:before {
	content: "\e9bc";
}

.icon-create-variants:before {
	content: "\e9bd";
}

.icon-choose-audience:before {
	content: "\e9be";
}

.icon-link:before {
	content: "\e9bf";
}

.icon-link-page:before {
	content: "\e9c0";
}

.icon-link-document:before {
	content: "\e9c1";
}

.icon-link-assets:before {
	content: "\e9c2";
}

.icon-link-image:before {
	content: "\e9c3";
}

.icon-unlink:before {
	content: "\e9c4";
}

.icon-shape-circle-plus:before {
	content: "\e9c5";
}

.icon-shape-circle:before {
	content: "\e9c6";
}

.icon-shape-triangle-plus:before {
	content: "\e9c7";
}

.icon-shape-triangle:before {
	content: "\e9c8";
}

.icon-tag-2-app:before {
	content: "\e9c9";
}

.icon-tag-2:before {
	content: "\e9ca";
}

.icon-add-tag-2:before {
	content: "\e9cb";
}

.icon-target-app:before {
	content: "\e9cc";
}

.icon-target:before {
	content: "\e9cd";
}

.icon-add-target:before {
	content: "\e9ce";
}

.icon-sitemaps-app:before {
	content: "\e9cf";
}

.icon-sitemaps:before {
	content: "\e9d0";
}

.icon-add-sitemaps:before {
	content: "\e9d1";
}

.icon-collapse-header:before {
	content: "\e9d2";
}

.icon-extend-header:before {
	content: "\e9d3";
}

.icon-external-webpage:before {
	content: "\e9d4";
}

.icon-arrow-link:before {
	content: "\e9d5";
}

.icon-play-button:before {
	content: "\e9d6";
}

.icon-story-button:before {
	content: "\e9d7";
}

.icon-i-beacon:before {
	content: "\e9d8";
}

.icon-open-node:before {
	content: "\e9d9";
}

.icon-close-node:before {
	content: "\e9da";
}

.icon-resource-files-app:before {
	content: "\e9db";
}

.icon-configuration-files-app:before {
	content: "\e9dc";
}

.icon-web-resources-app:before {
	content: "\e9dd";
}

.icon-rft-template:before {
	content: "\e9de";
}

.icon-rft-configuration-file:before {
	content: "\e9df";
}

.icon-rft-web-resource:before {
	content: "\e9e0";
}

.icon-from-jcr:before {
	content: "\e9e1";
}

.icon-from-fs:before {
	content: "\e9e2";
}

.icon-from-classpath:before {
	content: "\e9e3";
}

.icon-definitions-app:before {
	content: "\e9e4";
}

.icon-dt-generic-definition:before {
	content: "\e9e5";
}

.icon-dt-subapp-definition:before {
	content: "\e9e6";
}

.icon-dt-template-definition:before {
	content: "\e9e7";
}

.icon-dt-dialog-definition:before {
	content: "\e9e8";
}

.icon-dt-form-definition:before {
	content: "\e9e9";
}

.icon-dt-form-field-definition:before {
	content: "\e9ea";
}

.icon-cut:before {
	content: "\e9eb";
}

.icon-marker:before {
	content: "\e9ec";
}

.icon-leaf-node:before {
	content: "\e9ed";
}

.icon-reference-node:before {
	content: "\e9ee";
}

.icon-templating-app:before {
	content: "\e9ef";
}

.icon-connector:before {
	content: "\e9f0";
}

.icon-solution:before {
	content: "\e9f1";
}

.icon-extension:before {
	content: "\e9f2";
}

.icon-paid:before {
	content: "\e9f3";
}

.icon-free:before {
	content: "\e9f4";
}

.icon-unsupported:before {
	content: "\e9f5";
}

.icon-installation:before {
	content: "\e9f6";
}

.icon-welcome:before {
	content: "\e9f7";
}

.icon-author-instance:before {
	content: "\e9f8";
}

.icon-public-instance:before {
	content: "\e9f9";
}

.icon-analytics-app:before {
	content: "\e9fa";
}

.icon-stories-app:before {
	content: "\e9fb";
}

.icon-text-block:before {
	content: "\e9fc";
}

.icon-embed:before {
	content: "\e9fd";
}

.icon-placeholder:before {
	content: "\e9fe";
}

.icon-ellipsis:before {
	content: "\e9ff";
}

.icon-search-result-filters:before {
	content: "\e925";
}

.icon-hamburger-menu:before {
	content: "\e926";
}

.icon-app-launcher:before {
	content: "\e978";
}

.icon-previous:before {
	content: "\ea00";
}

.icon-next:before {
	content: "\ea01";
}

.icon-microphone:before {
	content: "\ea02";
}

.icon-zoom-picture:before {
	content: "\ea03";
}

.icon-radio-off:before {
	content: "\ea04";
}

.icon-checkbox-off:before {
	content: "\ea05";
}

.icon-checkbox-tick-2:before {
	content: "\ea06";
}

.icon-radio-on:before {
	content: "\ea07";
}

.icon-checkbox-on:before {
	content: "\ea08";
}

.icon-radio-dot-2:before {
	content: "\ea09";
}

.icon-product:before {
	content: "\ea0a";
}

.icon-livecopy_master:before {
	content: "\ea0b";
}

.icon-livecopy_slave:before {
	content: "\ea0c";
}

.icon-livecopy_new:before {
	content: "\ea0d";
}

.icon-disable_updates:before {
	content: "\ea0e";
}

.icon-enable_updates:before {
	content: "\ea0f";
}

.icon-relink:before {
	content: "\ea10";
}

.icon-push_changes:before {
	content: "\ea11";
}

.icon-analytics:before {
	content: "\ea12";
}

.icon-enter_arrow:before {
	content: "\ea13";
}

.icon-push_changes_incl_subnodes:before {
	content: "\ea14";
}

.icon-ab_test:before {
	content: "\ea15";
}

.icon-ab_test_variant:before {
	content: "\ea16";
}

.icon-personalization_variant:before {
	content: "\ea17";
}

.icon-waiting:before {
	content: "\ea18";
}

.icon-pause:before {
	content: "\ea19";
}

.icon-stop:before {
	content: "\ea1a";
}

.icon-release:before {
	content: "\ea1b";
}

.icon-timestamp:before {
	content: "\ea1c";
}

.icon-commit:before {
	content: "\ea1d";
}

.icon-mail:before {
	content: "\ea1e";
}

.icon-phone:before {
	content: "\ea1f";
}

.icon-logs:before {
	content: "\ea20";
}

.icon-logs-settings:before {
	content: "\ea21";
}

.icon-restart:before {
	content: "\ea22";
}

.icon-edit_with_line:before {
	content: "\ea23";
}

.icon-protect:before {
	content: "\ea24";
}

.icon-git:before {
	content: "\ea25";
}

.icon-change:before {
	content: "\ea26";
}

.icon-spinner-full-with-dot .path1:before {
	content: "\ea27";
	color: black;
}

.icon-spinner-full-with-dot .path2:before {
	content: "\ea28";
	margin-left: -1.40039em;
	color: black;
}

.icon-spinner-full-with-dot .path3:before {
	content: "\ea29";
	margin-left: -1.40039em;
	color: black;
}

.icon-spinner-full-with-dot .path4:before {
	content: "\ea2a";
	margin-left: -1.40039em;
	color: black;
}

.icon-spinner-full-with-dot .path5:before {
	content: "\ea2b";
	margin-left: -1.40039em;
	color: black;
}

.icon-spinner-full-with-dot .path6:before {
	content: "\ea2c";
	margin-left: -1.40039em;
	color: black;
}

.icon-spinner-full-with-dot .path7:before {
	content: "\ea2d";
	margin-left: -1.40039em;
	color: black;
}

.icon-spinner-full-with-dot .path8:before {
	content: "\ea2e";
	margin-left: -1.40039em;
	color: black;
}

.icon-spinner-full-with-dot .path9:before {
	content: "\ea2f";
	margin-left: -1.40039em;
	color: #599900;
}

.icon-arrow-collapsed:before {
	content: "\ea30";
}

.icon-arrow-expanded:before {
	content: "\ea31";
}

.icon-string:before {
	content: "\ea32";
}

.icon-richt-text:before {
	content: "\ea33";
}

.icon-integer:before {
	content: "\ea34";
}

.icon-decimal:before {
	content: "\ea35";
}

.icon-boolean:before {
	content: "\ea36";
}

.icon-reference:before {
	content: "\ea37";
}

.icon-model:before {
	content: "\ea38";
}

.icon-submodel:before {
	content: "\ea39";
}

.icon-drag-and-drop:before {
	content: "\ea3a";
}

.icon-no-data:before {
	content: "\ea3b";
}

.icon-s3-bucket:before {
	content: "\ea3c";
}

.icon-edit-tab:before {
	content: "\ea3d";
}

.icon-preview-tab:before {
	content: "\ea3e";
}

.icon-optimization-tab:before {
	content: "\ea3f";
}

.icon-panel-dock-side:before {
	content: "\ea40";
}

.icon-panel-floating:before {
	content: "\ea41";
}

.icon-desktop:before {
	content: "\ea42";
}

.icon-laptop:before {
	content: "\ea43";
}

.icon-tablet:before {
	content: "\ea44";
}

.icon-billboard:before {
	content: "\ea45";
}

.icon-instore:before {
	content: "\ea46";
}

.icon-schedule .path1:before {
	content: "\ea47";
	color: #1a171a;
}

.icon-schedule .path2:before {
	content: "\ea48";
	margin-left: -1em;
	color: #1a171a;
}

.icon-schedule .path3:before {
	content: "\ea49";
	margin-left: -1em;
	color: black;
}

.icon-schedule .path4:before {
	content: "\ea4a";
	margin-left: -1em;
	color: black;
}

.icon-schedule .path5:before {
	content: "\ea4b";
	margin-left: -1em;
	color: black;
}

.icon-schedule .path6:before {
	content: "\ea4c";
	margin-left: -1em;
	color: black;
}

.icon-edit-schedule:before {
	content: "\ea4d";
}

.icon-add-schedule .path1:before {
	content: "\ea4e";
	color: black;
}

.icon-add-schedule .path2:before {
	content: "\ea4f";
	margin-left: -1em;
	color: #1a171a;
}

.icon-add-schedule .path3:before {
	content: "\ea50";
	margin-left: -1em;
	color: #1a171a;
}

.icon-add-schedule .path4:before {
	content: "\ea51";
	margin-left: -1em;
	color: black;
}

.icon-add-schedule .path5:before {
	content: "\ea52";
	margin-left: -1em;
	color: black;
}

.icon-add-schedule .path6:before {
	content: "\ea53";
	margin-left: -1em;
	color: black;
}

.icon-add-schedule .path7:before {
	content: "\ea54";
	margin-left: -1em;
	color: black;
}

.icon-delete-schedule:before {
	content: "\ea55";
}

.icon-creative:before {
	content: "\ea56";
}

.icon-edit-creative .path1:before {
	content: "\ea57";
	color: black;
}

.icon-edit-creative .path2:before {
	content: "\ea58";
	margin-left: -1em;
	color: #1a171a;
}

.icon-edit-creative .path3:before {
	content: "\ea59";
	margin-left: -1em;
	color: #1a171a;
}

.icon-edit-creative .path4:before {
	content: "\ea5a";
	margin-left: -1em;
	color: #1a171a;
}

.icon-edit-creative .path5:before {
	content: "\ea5b";
	margin-left: -1em;
	color: #1a171a;
}

.icon-add-creative:before {
	content: "\ea5c";
}

.icon-delete-creative:before {
	content: "\ea5d";
}

.icon-open-master:before {
	content: "\ea5e";
}

.icon-show-linked-pages:before {
	content: "\ea5f";
}

.icon-dashboard:before {
	content: "\ea60";
}

.icon-home:before {
	content: "\ea61";
}

.icon-tasks:before {
	content: "\ea62";
}

.icon-notifications:before {
	content: "\ea63";
}

.icon-open-file:before {
	content: "\ea64";
}

.icon-page-properties:before {
	content: "\ea65";
}

.icon-hide_view:before {
	content: "\ea66";
}

.icon-camera:before {
	content: "\ea67";
}

.icon-user-checked:before {
	content: "\ea68";
}

.icon-star:before {
	content: "\ea69";
}

.icon-add_remove-2:before {
	content: "\ea6a";
}

.v-Notification, .alert {
	background-color: #3767d0;
	box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
	border-radius: 30px;
	padding: 19px 56px 19px 30px;
	word-break: break-word;
}

.v-Notification .v-window-contents, .v-Notification .v-Notification-caption, .alert .v-window-contents, .alert .v-Notification-caption {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
	line-height: 1.39;
	color: #fff;
	min-width: 170px;
	max-width: 400px;
}

.v-Notification .v-window-contents, .v-Notification .v-window-contents .v-label-undef-w, .v-Notification .v-Notification-caption, .v-Notification .v-Notification-caption .v-label-undef-w, .alert .v-window-contents, .alert .v-window-contents .v-label-undef-w, .alert .v-Notification-caption, .alert .v-Notification-caption .v-label-undef-w {
	white-space: normal;
}

.v-Notification.warning, .v-Notification.msgwarn, .alert.warning, .alert.msgwarn {
	background-color: #ffb300;
}

.v-Notification.warning .v-window-contents, .v-Notification.warning .v-Notification-caption, .v-Notification.msgwarn .v-window-contents, .v-Notification.msgwarn .v-Notification-caption, .alert.warning .v-window-contents, .alert.warning .v-Notification-caption, .alert.msgwarn .v-window-contents, .alert.msgwarn .v-Notification-caption {
	color: #232323;
}

.v-Notification.error, .v-Notification.msgerror, .alert.error, .alert.msgerror {
	background-color: #f54200;
}

.v-Notification.error {
	box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
}

.v-Notification.warning::after {
	color: #383838;
}

.v-Notification::after, .v-Notification.error::after {
	position: absolute;
	top: 19px;
	right: 20px;
	margin-top: 0;
	border: none;
}

.v-Notification.humanized::after {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.v-Notification.humanized:not(.v-disabled):hover::after, .v-Notification.humanized:not(.v-disabled):focus::after, .v-Notification.humanized:not(.v-disabled):active::after {
	background-position: right bottom;
}

.v-Notification.humanized:not(.v-disabled):hover::after, .v-Notification.humanized:not(.v-disabled):focus::after, .v-Notification.humanized:not(.v-disabled):active::after, .v-Notification.humanized.active:not(.v-disabled)::after {
	background-position: right bottom;
}

.v-Notification.humanized::after .v-icon {
	font-size: inherit;
}

.v-Notification.humanized:not(.v-disabled):hover::after, .v-Notification.humanized:not(.v-disabled):focus::after, .v-Notification.humanized:not(.v-disabled):active::after {
	background-position: right bottom;
	color: #3767d0;
}

.v-Notification.warning::after {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	color: #383838;
}

.v-Notification.warning:not(.v-disabled):hover::after, .v-Notification.warning:not(.v-disabled):focus::after, .v-Notification.warning:not(.v-disabled):active::after {
	background-position: right bottom;
}

.v-Notification.warning:not(.v-disabled):hover::after, .v-Notification.warning:not(.v-disabled):focus::after, .v-Notification.warning:not(.v-disabled):active::after, .v-Notification.warning.active:not(.v-disabled)::after {
	background-position: right bottom;
}

.v-Notification.warning::after .v-icon {
	font-size: inherit;
}

.v-Notification.warning:not(.v-disabled):hover::after, .v-Notification.warning:not(.v-disabled):focus::after, .v-Notification.warning:not(.v-disabled):active::after {
	background-position: right bottom;
	color: #ffb300;
}

.v-Notification.error::after {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.v-Notification.error:not(.v-disabled):hover::after, .v-Notification.error:not(.v-disabled):focus::after, .v-Notification.error:not(.v-disabled):active::after {
	background-position: right bottom;
}

.v-Notification.error:not(.v-disabled):hover::after, .v-Notification.error:not(.v-disabled):focus::after, .v-Notification.error:not(.v-disabled):active::after, .v-Notification.error.active:not(.v-disabled)::after {
	background-position: right bottom;
}

.v-Notification.error::after .v-icon {
	font-size: inherit;
}

.v-Notification.error:not(.v-disabled):hover::after, .v-Notification.error:not(.v-disabled):focus::after, .v-Notification.error:not(.v-disabled):active::after {
	background-position: right bottom;
	color: #f54200;
}

.v-Notification .popupContent .v-assistive-device-only {
	display: none;
}

.alert {
	max-width: 480px;
	position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
	margin: 0 auto !important;
	left: 0 !important;
	right: 0 !important;
}

.alert .v-window-outerheader {
	position: static;
}

.alert .v-window-header {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
	color: #fff;
	padding: 0;
	margin: 0;
}

.alert .v-window-contents {
	padding-top: 19px !important;
}

.alert .v-window-contents  > .v-scrollable > .v-margin-top, .alert .v-window-contents  > .v-scrollable > .v-margin-right, .alert .v-window-contents  > .v-scrollable > .v-margin-bottom, .alert .v-window-contents  > .v-scrollable > .v-margin-left {
	padding: 0;
}

.alert .v-window-contents a {
	color: #fff;
}

.alert .v-window-contents a:hover, .alert .v-window-contents a:focus, .alert .v-window-contents a:active {
	color: #232323;
}

.alert .v-window-outerheader::after, .alert .v-window-contents > .v-scrollable::before {
	display: none;
}

.alert .footer.v-margin-top {
	padding-top: 53px;
}

.alert .footer .v-spacing {
	width: 18px;
}

.alert .v-slot-buttons {
	text-align: center;
	margin-top: 50px;
}

.alert .v-button {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	color: #fff;
	border-color: #fff;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,transparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.alert .v-button:not(.v-disabled):hover, .alert .v-button:not(.v-disabled):focus, .alert .v-button:not(.v-disabled):active {
	background-position: right bottom;
}

.alert .v-button:not(.v-disabled):hover, .alert .v-button:not(.v-disabled):focus, .alert .v-button:not(.v-disabled):active {
	background-position: right bottom;
}

.alert.humanized .v-button-primary, .alert.humanized .v-button-commit, .alert.humanized .v-button-confirm, .alert.msginfo .v-button-primary, .alert.msginfo .v-button-commit, .alert.msginfo .v-button-confirm {
	border-color: transparent;
	color: #3767d0;
	background-color: #fff;
	background-image: -webkit-linear-gradient(left, #fff, #d7e0f5);
	background-image: linear-gradient(to right,#fff, #d7e0f5);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.alert.humanized .v-button-primary:not(.v-disabled):hover, .alert.humanized .v-button-primary:not(.v-disabled):focus, .alert.humanized .v-button-primary:not(.v-disabled):active, .alert.humanized .v-button-commit:not(.v-disabled):hover, .alert.humanized .v-button-commit:not(.v-disabled):focus, .alert.humanized .v-button-commit:not(.v-disabled):active, .alert.humanized .v-button-confirm:not(.v-disabled):hover, .alert.humanized .v-button-confirm:not(.v-disabled):focus, .alert.humanized .v-button-confirm:not(.v-disabled):active, .alert.msginfo .v-button-primary:not(.v-disabled):hover, .alert.msginfo .v-button-primary:not(.v-disabled):focus, .alert.msginfo .v-button-primary:not(.v-disabled):active, .alert.msginfo .v-button-commit:not(.v-disabled):hover, .alert.msginfo .v-button-commit:not(.v-disabled):focus, .alert.msginfo .v-button-commit:not(.v-disabled):active, .alert.msginfo .v-button-confirm:not(.v-disabled):hover, .alert.msginfo .v-button-confirm:not(.v-disabled):focus, .alert.msginfo .v-button-confirm:not(.v-disabled):active {
	background-position: right bottom;
}

.alert.humanized .v-window-closebox::before, .alert.msginfo .v-window-closebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.alert.humanized .v-window-closebox:not(.v-disabled):hover::before, .alert.humanized .v-window-closebox:not(.v-disabled):focus::before, .alert.humanized .v-window-closebox:not(.v-disabled):active::before, .alert.msginfo .v-window-closebox:not(.v-disabled):hover::before, .alert.msginfo .v-window-closebox:not(.v-disabled):focus::before, .alert.msginfo .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.alert.humanized .v-window-closebox:not(.v-disabled):hover::before, .alert.humanized .v-window-closebox:not(.v-disabled):focus::before, .alert.humanized .v-window-closebox:not(.v-disabled):active::before, .alert.humanized .v-window-closebox.active:not(.v-disabled)::before, .alert.msginfo .v-window-closebox:not(.v-disabled):hover::before, .alert.msginfo .v-window-closebox:not(.v-disabled):focus::before, .alert.msginfo .v-window-closebox:not(.v-disabled):active::before, .alert.msginfo .v-window-closebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.alert.humanized .v-window-closebox::before .v-icon, .alert.msginfo .v-window-closebox::before .v-icon {
	font-size: inherit;
}

.alert.humanized .v-window-closebox:not(.v-disabled):hover::before, .alert.humanized .v-window-closebox:not(.v-disabled):focus::before, .alert.humanized .v-window-closebox:not(.v-disabled):active::before, .alert.msginfo .v-window-closebox:not(.v-disabled):hover::before, .alert.msginfo .v-window-closebox:not(.v-disabled):focus::before, .alert.msginfo .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
	color: #3767d0;
}

.alert.warning .v-button-primary, .alert.warning .v-button-commit, .alert.warning .v-button-confirm, .alert.msgwarn .v-button-primary, .alert.msgwarn .v-button-commit, .alert.msgwarn .v-button-confirm {
	border-color: transparent;
	color: #ffb300;
	background-color: #fff;
	background-image: -webkit-linear-gradient(left, #fff, #ffefcc);
	background-image: linear-gradient(to right,#fff, #ffefcc);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.alert.warning .v-button-primary:not(.v-disabled):hover, .alert.warning .v-button-primary:not(.v-disabled):focus, .alert.warning .v-button-primary:not(.v-disabled):active, .alert.warning .v-button-commit:not(.v-disabled):hover, .alert.warning .v-button-commit:not(.v-disabled):focus, .alert.warning .v-button-commit:not(.v-disabled):active, .alert.warning .v-button-confirm:not(.v-disabled):hover, .alert.warning .v-button-confirm:not(.v-disabled):focus, .alert.warning .v-button-confirm:not(.v-disabled):active, .alert.msgwarn .v-button-primary:not(.v-disabled):hover, .alert.msgwarn .v-button-primary:not(.v-disabled):focus, .alert.msgwarn .v-button-primary:not(.v-disabled):active, .alert.msgwarn .v-button-commit:not(.v-disabled):hover, .alert.msgwarn .v-button-commit:not(.v-disabled):focus, .alert.msgwarn .v-button-commit:not(.v-disabled):active, .alert.msgwarn .v-button-confirm:not(.v-disabled):hover, .alert.msgwarn .v-button-confirm:not(.v-disabled):focus, .alert.msgwarn .v-button-confirm:not(.v-disabled):active {
	background-position: right bottom;
}

.alert.warning .v-window-header, .alert.msgwarn .v-window-header {
	color: #232323;
}

.alert.warning .v-window-closebox::before, .alert.msgwarn .v-window-closebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	color: #383838;
}

.alert.warning .v-window-closebox:not(.v-disabled):hover::before, .alert.warning .v-window-closebox:not(.v-disabled):focus::before, .alert.warning .v-window-closebox:not(.v-disabled):active::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):hover::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):focus::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.alert.warning .v-window-closebox:not(.v-disabled):hover::before, .alert.warning .v-window-closebox:not(.v-disabled):focus::before, .alert.warning .v-window-closebox:not(.v-disabled):active::before, .alert.warning .v-window-closebox.active:not(.v-disabled)::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):hover::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):focus::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):active::before, .alert.msgwarn .v-window-closebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.alert.warning .v-window-closebox::before .v-icon, .alert.msgwarn .v-window-closebox::before .v-icon {
	font-size: inherit;
}

.alert.warning .v-window-closebox:not(.v-disabled):hover::before, .alert.warning .v-window-closebox:not(.v-disabled):focus::before, .alert.warning .v-window-closebox:not(.v-disabled):active::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):hover::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):focus::before, .alert.msgwarn .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
	color: #ffb300;
}

.alert.error .v-button-primary, .alert.error .v-button-commit, .alert.error .v-button-confirm, .alert.msgerror .v-button-primary, .alert.msgerror .v-button-commit, .alert.msgerror .v-button-confirm {
	border-color: transparent;
	color: #f54200;
	background-color: #fff;
	background-image: -webkit-linear-gradient(left, #fff, #fdd9cc);
	background-image: linear-gradient(to right,#fff, #fdd9cc);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.alert.error .v-button-primary:not(.v-disabled):hover, .alert.error .v-button-primary:not(.v-disabled):focus, .alert.error .v-button-primary:not(.v-disabled):active, .alert.error .v-button-commit:not(.v-disabled):hover, .alert.error .v-button-commit:not(.v-disabled):focus, .alert.error .v-button-commit:not(.v-disabled):active, .alert.error .v-button-confirm:not(.v-disabled):hover, .alert.error .v-button-confirm:not(.v-disabled):focus, .alert.error .v-button-confirm:not(.v-disabled):active, .alert.msgerror .v-button-primary:not(.v-disabled):hover, .alert.msgerror .v-button-primary:not(.v-disabled):focus, .alert.msgerror .v-button-primary:not(.v-disabled):active, .alert.msgerror .v-button-commit:not(.v-disabled):hover, .alert.msgerror .v-button-commit:not(.v-disabled):focus, .alert.msgerror .v-button-commit:not(.v-disabled):active, .alert.msgerror .v-button-confirm:not(.v-disabled):hover, .alert.msgerror .v-button-confirm:not(.v-disabled):focus, .alert.msgerror .v-button-confirm:not(.v-disabled):active {
	background-position: right bottom;
}

.alert.error .v-window-closebox::before, .alert.msgerror .v-window-closebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.alert.error .v-window-closebox:not(.v-disabled):hover::before, .alert.error .v-window-closebox:not(.v-disabled):focus::before, .alert.error .v-window-closebox:not(.v-disabled):active::before, .alert.msgerror .v-window-closebox:not(.v-disabled):hover::before, .alert.msgerror .v-window-closebox:not(.v-disabled):focus::before, .alert.msgerror .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.alert.error .v-window-closebox:not(.v-disabled):hover::before, .alert.error .v-window-closebox:not(.v-disabled):focus::before, .alert.error .v-window-closebox:not(.v-disabled):active::before, .alert.error .v-window-closebox.active:not(.v-disabled)::before, .alert.msgerror .v-window-closebox:not(.v-disabled):hover::before, .alert.msgerror .v-window-closebox:not(.v-disabled):focus::before, .alert.msgerror .v-window-closebox:not(.v-disabled):active::before, .alert.msgerror .v-window-closebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.alert.error .v-window-closebox::before .v-icon, .alert.msgerror .v-window-closebox::before .v-icon {
	font-size: inherit;
}

.alert.error .v-window-closebox:not(.v-disabled):hover::before, .alert.error .v-window-closebox:not(.v-disabled):focus::before, .alert.error .v-window-closebox:not(.v-disabled):active::before, .alert.msgerror .v-window-closebox:not(.v-disabled):hover::before, .alert.msgerror .v-window-closebox:not(.v-disabled):focus::before, .alert.msgerror .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
	color: #f54200;
}

.alert .v-window-maximizebox {
	display: none;
}

.alert .v-window-closebox {
	background-color: transparent;
	position: absolute;
	top: -19px;
	right: -56px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
}

.alert .v-spacing {
	height: 0;
}

.alert div[aria-label='Top of dialog'], .alert div[aria-label='Bottom of Dialog'] {
	opacity: 0;
}

@media screen and (max-width: 520px) {
	.alert {
		position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
		margin: 0 20px !important;
		left: 0 !important;
		right: 0 !important;
	}
}

@media screen and (min-width: 521px) {
	.alert {
		position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
		margin: 0 auto !important;
		left: 0 !important;
		right: 0 !important;
	}
}

.v-actionbar {
	width: 56px;
	border-radius: 3px;
	background-color: #232323;
	padding-right: 4px;
	overflow: auto;
}

.v-actionbar.open {
	width: 265px;
	padding-right: 7px;
}

.v-actionbar.open .v-actionbar-section-title {
	width: auto;
}

.v-actionbar.open .v-actionbar-toggle-icon:before {
	content: "\e956";
}

.v-actionbar.open li.v-action {
	padding: 8px 13px;
	text-align: left;
}

.v-actionbar.open li.v-action .v-icon + .v-captiontext, .v-actionbar.open li.v-action .v-icon + span {
	margin-left: 20px;
	display: inline;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.v-actionbar.open .v-actionbar-section {
	padding-left: 20px;
	padding-right: 13px;
}

.v-actionbar.open .v-actionbar-section.preview {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	margin: 0;
	padding: 20px;
	overflow: hidden;
	text-align: center;
	max-height: 175px;
	line-height: 200px;
}

.v-actionbar.open .v-actionbar-section.preview .v-actionbar-section-title {
	text-align: left;
	position: relative;
	margin-bottom: 10px;
	margin-top: 0 !important;
}

.v-actionbar.open .v-actionbar-section.preview img, .v-actionbar.open .v-actionbar-section.preview audio, .v-actionbar.open .v-actionbar-section.preview video {
	max-height: 144px;
	max-width: 100%;
}

.v-actionbar .v-actionbar-section {
	margin-top: 60px;
}

.v-actionbar .v-actionbar-section-title {
	font-size: 20px;
	margin-top: -45px !important;
}

.v-actionbar * {
	color: #fff;
}

.shell[width-range~="1200px-1599px"] .v-actionbar.open {
	width: 303px;
}

.shell[width-range~="1200px-1599px"] .v-actionbar .v-actionbar-section {
	margin-top: 100px;
}

.shell[width-range~="1200px-1599px"] .v-actionbar .v-actionbar-section-title {
	font-size: 24px;
	margin-top: -82px !important;
}

.shell[width-range~="1600px-"] .v-actionbar.open {
	width: 341px;
}

.shell[width-range~="1600px-"] .v-actionbar .v-actionbar-section {
	margin-top: 125px;
}

.shell[width-range~="1600px-"] .v-actionbar .v-actionbar-section-title {
	font-size: 26px;
	margin-top: -108px !important;
}

.v-actionbar-toggle {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,transparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	position: absolute;
	top: 18px;
	right: 15px;
	z-index: 999;
	cursor: pointer;
}

.v-actionbar-toggle:not(.v-disabled):hover, .v-actionbar-toggle:not(.v-disabled):focus, .v-actionbar-toggle:not(.v-disabled):active {
	background-position: right bottom;
}

.v-actionbar-toggle:not(.v-disabled):hover, .v-actionbar-toggle:not(.v-disabled):focus, .v-actionbar-toggle:not(.v-disabled):active, .v-actionbar-toggle.active:not(.v-disabled) {
	background-position: right bottom;
}

.v-actionbar-toggle .v-icon {
	font-size: inherit;
}

.v-actionbar-toggle-icon {
	font-size: 20px;
}

.v-actionbar-toggle-icon:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e959";
	display: block;
}

.v-actionbar-section {
	overflow: auto;
	padding-left: 9px;
	padding-right: 5px;
}

.v-actionbar-section.preview {
	display: none;
}

.v-actionbar-section::-webkit-scrollbar {
	width: 5px;
}

.v-actionbar-section::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.v-actionbar-section::-webkit-scrollbar-thumb {
	opacity: 0.4;
	border-radius: 2.5px;
	background-color: #969696;
}

.v-actionbar-section-title {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-weight: 200;
	width: 0;
	overflow: hidden;
	position: absolute;
}

ul.v-actionbar-group {
	padding-bottom: 15px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

ul.v-actionbar-group:last-child {
	padding-bottom: 0;
}

ul.v-actionbar-group li.v-action {
	margin-bottom: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 8px 10px;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
}

ul.v-actionbar-group li.v-action .v-icon {
	position: inherit;
	font-size: 16px;
	color: #fff;
	vertical-align: middle;
}

ul.v-actionbar-group li.v-action .v-icon + .v-captiontext, ul.v-actionbar-group li.v-action .v-icon + span {
	display: none;
}

ul.v-actionbar-group li.v-action:focus {
	outline: none;
}

ul.v-actionbar-group li.v-action:not(.v-disabled):hover, ul.v-actionbar-group li.v-action:not(.v-disabled):focus {
	background-color: rgba(255, 255, 255, 0.15);
}

ul.v-actionbar-group li.v-action.v-disabled {
	opacity: 0.4;
}

.v-textfield {
	color: #232323;
	border-color: transparent;
	line-height: 1.6;
	min-height: 45px;
	padding: 11px 32px 10px 9px;
	width: 100%;
}

.v-textfield::placeholder {
	color: #888;
	opacity: 0.6;
	font-style: normal;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-textfield.v-textfield-prompt {
	color: #232323;
	opacity: 1;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-textfield:focus {
	background-color: #fff;
}

.v-textfield.v-readonly, .v-textfield.v-readonly:focus {
	border: none;
}

.v-textfield:not(.v-disabled):not(.v-readonly):hover:not(:focus) {
	border-color: #dbdbdb;
}

.v-textfield-error {
	border-color: #f54200 !important;
	background-color: #f5f5f5;
}

.v-textarea {
	color: #232323;
	border-color: transparent;
	line-height: 1.6;
	min-height: 45px;
	padding: 11px 32px 10px 9px;
	width: 100%;
}

.v-textarea::placeholder {
	color: #888;
	opacity: 0.6;
	font-style: normal;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-textarea.v-textfield-prompt {
	color: #232323;
	opacity: 1;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-textarea:focus {
	background-color: #fff;
}

.v-textarea.v-readonly, .v-textarea.v-readonly:focus {
	border: none;
}

.v-textarea:not(.v-disabled):not(.v-readonly):hover:not(:focus) {
	border-color: #dbdbdb;
}

.v-textarea-error {
	border-color: #f54200 !important;
	background-color: #f5f5f5;
}

.v-textarea {
	padding-top: 10px;
	padding-bottom: 23px;
}

.v-errorindicator {
	display: none;
}

.v-errorindicator-error {
	display: none;
}

.v-caption-focus {
	-webkit-text-stroke-width: 1px;
}

.v-checkbox {
	padding-left: 23px;
}

.v-checkbox label {
	text-indent: 10px;
}

.v-checkbox  > input[type=checkbox]  ~ label:before, .v-checkbox  > input[type=checkbox]  ~ label:after {
	width: 18px;
	height: 18px;
}

.v-checkbox  > input[type=checkbox]  ~ label:before {
	border: none;
	background-color: #f5f5f5;
}

.v-checkbox  > input[type=checkbox]  ~ label:after {
	content: "";
}

.v-checkbox  > input[type=checkbox]:checked  ~ label:after {
	display: block;
	left: 7px;
	top: 3px;
	width: 7px;
	height: 13px;
	border: solid #232323;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.v-filterselect [class*="input"] {
	color: #232323;
	border-color: transparent;
	line-height: 1.6;
	min-height: 45px;
	padding: 11px 32px 10px 9px;
	width: 100%;
}

.v-filterselect [class*="input"]::placeholder {
	color: #888;
	opacity: 0.6;
	font-style: normal;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-filterselect [class*="input"].v-textfield-prompt {
	color: #232323;
	opacity: 1;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-filterselect [class*="input"]:focus {
	background-color: #fff;
}

.v-filterselect [class*="input"].v-readonly, .v-filterselect [class*="input"].v-readonly:focus {
	border: none;
}

.v-filterselect:not(.v-disabled):not(.v-readonly) [class*="input"]:hover:not(:focus) {
	border-color: #dbdbdb;
}

.v-filterselect-error [class*="input"] {
	border-color: #f54200 !important;
	background-color: #f5f5f5;
}

.v-filterselect {
	min-height: 45px;
}

.v-filterselect-no-input [class*="input"] {
	background-color: #f5f5f5;
}

.v-slot-readonly-setting-combobox {
	pointer-events: none;
}

.readonly-setting-combobox .v-filterselect-input.v-filterselect-input-readonly {
	border: none;
	color: #232323;
}

.readonly-setting-combobox .v-filterselect-input.v-filterselect-input-readonly:focus {
	border: none;
}

.readonly-setting-combobox.v-filterselect.v-readonly [class$="button"] {
	visibility: hidden;
}

.v-filterselect [class$="button"] {
	color: #fff;
	border-color: transparent;
	border-width: 0px;
	height: 45px;
	line-height: normal;
	background-color: #232323;
	background-image: -webkit-linear-gradient(left, #232323, #656565);
	background-image: linear-gradient(to right,#232323, #656565);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	width: 35px;
	border: 1px solid transparent;
	border-left-width: 0;
	border-right-width: 0;
	border-radius: 0 1px 1px 0;
	padding-left: 1px;
	padding-right: 1px;
	top: 0;
	right: 0;
	bottom: 0;
	height: auto;
}

.v-filterselect [class$="button"]:after {
	visibility: hidden;
}

.v-filterselect [class$="button"]:not(.v-disabled):hover, .v-filterselect [class$="button"]:not(.v-disabled):focus, .v-filterselect [class$="button"]:not(.v-disabled):active {
	background-position: right bottom;
}

.v-filterselect [class$="button"] .v-icon {
	font-size: 20px;
}

.v-filterselect [class$="button"] img.v-icon {
	height: 30px;
}

.v-filterselect [class$="button"]::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e958";
	font-size: 22px;
	width: 35px;
}

.v-filterselect [class$="button"]:hover:before {
	color: inherit;
}

.v-filterselect-error [class$="button"] {
	color: #f54200;
	border: 1px solid #f54200;
	border-left-width: 0;
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu {
	margin: 0;
	border: none;
	padding: 0;
	max-height: 500px;
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox {
	padding-left: 23px;
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox label {
	text-indent: 10px;
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox  > input[type=checkbox]  ~ label:before, .v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox  > input[type=checkbox]  ~ label:after {
	width: 18px;
	height: 18px;
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox  > input[type=checkbox]  ~ label:before {
	border: none;
	background-color: #f5f5f5;
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox  > input[type=checkbox]  ~ label:after {
	content: "";
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox  > input[type=checkbox]:checked  ~ label:after {
	display: block;
	left: 7px;
	top: 3px;
	width: 7px;
	height: 13px;
	border: solid #232323;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox {
	padding-left: 33px;
}

.v-filterselect-suggestpopup .popupContent .v-filterselect-suggestmenu .v-checkbox  > input[type=checkbox] ~ label:before {
	background-color: #fff;
}

.v-filterselect-suggestpopup {
	margin-top: 0 !important;
}

.actions .v-filterselect {
	min-height: 25px;
	height: 25px;
	font-size: 12px;
}

.actions .v-filterselect [class*="input"] {
	min-height: 25px;
	height: 25px;
	font-size: 12px;
}

.shell[width-range~="1200px-1599px"] .actions .v-filterselect {
	min-height: 35px;
	height: 35px;
	font-size: 14px;
}

.shell[width-range~="1200px-1599px"] .actions .v-filterselect [class*="input"] {
	min-height: 35px;
	height: 35px;
	font-size: 14px;
}

.shell[width-range~="1600px-"] .actions .v-filterselect {
	min-height: 45px;
	height: 45px;
	font-size: 14px;
}

.shell[width-range~="1600px-"] .actions .v-filterselect [class*="input"] {
	min-height: 45px;
	height: 45px;
	font-size: 14px;
}

.v-filterselect img.v-icon + [class*="input"] {
	padding-left: calc(49px + 1%);
	min-width: 200px;
}

.v-filterselect img.v-icon {
	margin-left: 14px;
	width: 25px;
}

.gwt-MenuItem > img.v-icon {
	margin-left: 7px;
	width: 25px;
}

.v-icon + span {
	padding-left: 1%;
}

.v-select-optiongroup {
	padding-top: 7px;
}

.v-radiobutton label {
	display: inherit;
	text-align: left;
	text-indent: 10px;
	padding-top: 1px;
}

.v-radiobutton  > input ~ label:before {
	background-color: #f5f5f5 !important;
	border: transparent !important;
	width: 20px !important;
	height: 20px !important;
}

.v-radiobutton  > input:checked ~ label:after {
	background-color: #232323 !important;
	border: transparent !important;
	height: 8px !important;
	width: 8px !important;
	top: 6px !important;
	left: 6px !important;
}

.v-select-twincol {
	height: 100%;
	vertical-align: text-top;
	width: 45%;
	display: flex;
	flex-wrap: wrap;
}

.v-select-twincol select {
	border: 1px transparent;
	background-color: #f5f5f5;
	overflow-y: auto;
	min-height: 176px;
}

.v-select-twincol.error .v-select-twincol-selections {
	border: 1px solid #f54200;
}

.v-select-twincol-options, .v-select-twincol-selections {
	width: 45%;
	background-color: #f5f5f5 !important;
	line-height: 1.6;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	letter-spacing: -0.3px;
}

.v-select-twincol-options:focus option:checked, .v-select-twincol-selections:focus option:checked {
	box-shadow: none !important;
}

.v-select-twincol-caption-left, .v-select-twincol-caption-right {
	line-height: 18px;
	font-weight: 300;
	width: 45% !important;
}

.v-select-twincol-buttons {
	text-align: center;
	height: 176px;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 10%;
	min-width: 10% !important;
}

.v-select-twincol-buttons .v-button:last-child, .v-select-twincol-buttons .v-button:first-child {
	color: #fff;
	border-color: transparent;
	border-width: 0px;
	height: 45px;
	line-height: normal;
	background-color: #232323;
	background-image: -webkit-linear-gradient(left, #232323, #656565);
	background-image: linear-gradient(to right,#232323, #656565);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	position: relative;
	top: 0;
	left: 0;
	max-width: 37px;
	width: 80%;
	height: 45px;
}

.v-select-twincol-buttons .v-button:last-child:after, .v-select-twincol-buttons .v-button:first-child:after {
	visibility: hidden;
}

.v-select-twincol-buttons .v-button:last-child:not(.v-disabled):hover, .v-select-twincol-buttons .v-button:last-child:not(.v-disabled):focus, .v-select-twincol-buttons .v-button:last-child:not(.v-disabled):active, .v-select-twincol-buttons .v-button:first-child:not(.v-disabled):hover, .v-select-twincol-buttons .v-button:first-child:not(.v-disabled):focus, .v-select-twincol-buttons .v-button:first-child:not(.v-disabled):active {
	background-position: right bottom;
}

.v-select-twincol-buttons .v-button:last-child .v-icon, .v-select-twincol-buttons .v-button:first-child .v-icon {
	font-size: 20px;
}

.v-select-twincol-buttons .v-button:last-child img.v-icon, .v-select-twincol-buttons .v-button:first-child img.v-icon {
	height: 30px;
}

.v-select-twincol-buttons .v-button-wrap:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e961";
	color: white;
}

.v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e95e";
}

.v-select-twincol-buttons .v-button-wrap .v-button-caption {
	display: none;
}

.v-select-twincol-deco {
	height: 10px;
	width: 10px;
}

.v-select-twincol select {
	width: 45% !important;
}

.v-icon-circle {
	font-size: 10px;
}

.v-assistive-device-only, .v-assistive-device-only-label label {
	position: relative;
	top: auto;
	left: auto;
	width: auto;
}

.icon-status-green {
	color: #599900;
}

.icon-status-red {
	color: #f54200;
}

.icon-status-orange {
	color: #ffb300;
}

.hidden-for-aria {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.v-grid-tablewrapper, .v-grid-cell-focused::before {
	border: none;
}

.v-grid-cell-focused {
	position: static;
}

.v-grid-cell-focused::before {
	display: none;
}

.v-grid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 1px;
	left: 0;
	border: solid #232323;
	border-width: 0px 0px 0px 3px;
	border-radius: 0px;
	display: none;
	pointer-events: none;
}

.content-views .v-grid:focus .v-grid-row-focused::before {
	display: block;
}

.content-views .v-grid.v-disabled:focus .v-grid-row-focused::before {
	display: none;
}

.v-grid-row  > th, .v-grid-row  > td {
	border-bottom: 1px solid #dbdbdb;
	display: flex;
	align-items: center;
}

.v-grid .v-grid-cell {
	box-shadow: none;
}

.v-grid thead .v-grid-row {
	height: 35px;
	background-color: #dbdbdb;
}

.v-grid .v-grid-header {
	background-color: #dbdbdb;
}

.v-grid .v-grid-header th {
	border-top: 1px solid #dbdbdb;
	border-radius: 3px;
}

.v-grid .v-grid-header th:not(:first-child) {
	border-left: 1px solid #dbdbdb;
}

.v-grid .v-grid-header .v-grid-row:not(.v-grid-first-row) .v-grid-column-header-content {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 12px;
	opacity: 1;
}

.v-grid .v-grid-header .v-grid-first-row .v-grid-column-header-content {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 12px;
	color: #232323;
	opacity: 0.6;
	letter-spacing: -0.25px;
}

.v-grid .v-grid-header .v-grid-cell {
	padding: 0;
}

.v-grid .v-grid-header .v-grid-cell .v-grid-column-header-content, .v-grid .v-grid-header .v-grid-cell .v-filterselect, .v-grid .v-grid-header .v-grid-cell .v-textfield, .v-grid .v-grid-header .v-grid-cell .v-customcomponent {
	margin-right: 16.5px;
	margin-left: 16.5px;
	height: auto;
	min-height: auto;
	line-height: 1.2em;
}

.v-grid .v-grid-header .v-grid-cell .v-grid-column-header-content {
	margin-top: 5px;
}

.v-grid .v-grid-header .v-grid-cell .v-filterselect, .v-grid .v-grid-header .v-grid-cell .v-textfield, .v-grid .v-grid-header .v-grid-cell .v-customcomponent {
	margin-bottom: 5px;
}

.v-grid .v-grid-header .sort-asc:after, .v-grid .v-grid-header .sort-desc:after {
	content: "";
}

.v-grid .v-grid-header tr {
	height: auto;
}

.v-grid .v-grid-header tr th {
	min-height: auto;
}

.v-grid .v-grid-header tr.has-filter-row .v-grid-column-resize-handle {
	height: 46px;
}

.v-grid .v-grid-header .v-grid-first-row.v-grid-row .v-grid-cell, .v-grid .v-grid-header .v-grid-first-row.v-grid-row .v-grid-cell:last-child {
	border-bottom: 0;
	border-left: 1px solid #dbdbdb;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.v-grid .v-grid-header .v-grid-first-row.v-grid-row .v-grid-cell:last-child {
	border-top-right-radius: 3px;
}

.v-grid .v-grid-header .v-grid-first-row.v-grid-row .v-grid-cell:first-child {
	border-left: 0;
}

.v-grid .v-grid-header .v-grid-filter-row.v-grid-row .v-grid-cell, .v-grid .v-grid-header .v-grid-filter-row.v-grid-row .v-grid-cell:last-child {
	border-top: 0;
	border-left: 1px solid #dbdbdb;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.v-grid .v-grid-header .v-grid-filter-row.v-grid-row .v-grid-cell:last-child {
	border-bottom-right-radius: 3px;
}

.v-grid .v-grid-header .v-grid-filter-row.v-grid-row .v-grid-cell:first-child {
	border-left: 0;
}

.v-grid .v-grid-header .v-grid-filter-row.v-grid-row .v-grid-cell .v-filterselect::placeholder, .v-grid .v-grid-header .v-grid-filter-row.v-grid-row .v-grid-cell .v-textfield::placeholder {
	font-size: 12px;
}

.v-grid .v-grid-header .v-grid-row .v-grid-cell .v-widget, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-widget:focus, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-widget:hover {
	min-height: auto;
	height: auto;
	transition: none;
	padding: 0;
	background-color: #f5f5f5;
	border: none;
	letter-spacing: -0.5px;
}

.v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect [class*="input"], .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect [class*="input"]:focus, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect [class*="input"]:hover {
	background-color: #f5f5f5;
	height: auto;
	min-height: auto;
	margin: 0 16.5px 0 0;
	padding: 0;
	border: none;
	letter-spacing: -0.5px;
}

.v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect-button {
	background-color: #f5f5f5;
	margin: auto;
}

.v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect [class$="button"], .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect [class$="button"]::before {
	background-color: #f5f5f5;
	color: #232323;
	padding: 0;
	height: 18px;
	width: 20px;
	font-size: 20px;
	border-radius: 20px;
	background-color: #dbdbdb;
	background-image: -webkit-linear-gradient(left, #dbdbdb, #f5f5f5);
	background-image: linear-gradient(to right,#dbdbdb, #f5f5f5);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	background-position: right bottom;
}

.v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect [class$="button"]:hover, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-filterselect [class$="button"]:hover::before {
	background-color: #dbdbdb;
	background-position: left bottom;
}

.v-grid .v-grid-header .v-grid-row .v-grid-cell .v-checkbox, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-checkbox:hover, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-checkbox::selection {
	margin: auto;
	padding-left: 21px;
}

.v-grid .v-grid-header .v-grid-row .v-grid-cell .v-checkbox > input[type=checkbox] ~ label:after, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-checkbox:hover > input[type=checkbox] ~ label:after, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-checkbox > input[type=checkbox] ~ label:before, .v-grid .v-grid-header .v-grid-row .v-grid-cell .v-checkbox:hover > input[type=checkbox] ~ label:before {
	background-color: #fff;
}

.v-grid .v-grid-body {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	cursor: pointer;
}

.v-grid .v-grid-body .v-grid-row-selected  > .v-grid-cell, .v-grid .v-grid-body .v-grid-row-selected:hover  > .v-grid-cell {
	color: white;
	background-color: #599900;
	border-bottom-color: #dbdbdb;
}

.v-grid .v-grid-body .v-grid-row-selected  > .v-grid-cell .icon-status-green:before, .v-grid .v-grid-body .v-grid-row-selected:hover  > .v-grid-cell .icon-status-green:before {
	-webkit-text-stroke: 2px white;
	text-stroke: 2px white;
	text-shadow: 0 0 1px white;
}

.v-grid .v-grid-body .v-grid-row-selected  > .v-grid-cell .icon-status-green:after, .v-grid .v-grid-body .v-grid-row-selected:hover  > .v-grid-cell .icon-status-green:after {
	content: "\e99a";
	position: relative;
	margin-left: -1em;
	color: #599900;
}

.v-grid .v-grid-body .v-grid-row:not(.v-grid-row-selected):hover  > .v-grid-cell {
	background-color: #ebebeb;
}

.v-grid .v-grid-body .v-grid-row {
	background-color: #dbdbdb;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell {
	padding: 0 17.5px;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-0 {
	padding-left: 0em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-1 {
	padding-left: 2em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-2 {
	padding-left: 4em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-3 {
	padding-left: 6em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-4 {
	padding-left: 8em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-5 {
	padding-left: 10em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-6 {
	padding-left: 12em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-7 {
	padding-left: 14em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-8 {
	padding-left: 16em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-9 {
	padding-left: 18em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-10 {
	padding-left: 20em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-11 {
	padding-left: 22em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-12 {
	padding-left: 24em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-13 {
	padding-left: 26em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-14 {
	padding-left: 28em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-node.depth-15 {
	padding-left: 30em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell:first-child {
	border-left: 0;
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-grid-cell-content .v-table-icon-element {
	display: inline-block;
	width: 2em;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell.frozen:first-child {
	width: 50px;
	z-index: -1;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell.frozen:first-child  + td[role='gridcell']  > .v-table-icon-element {
	margin-right: 10px;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-customcomponent {
	width: auto;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell .v-widget {
	background-color: transparent;
}

.v-grid .v-grid-body .v-grid-row > .v-grid-cell.frozen.last-frozen {
	padding-right: 0;
}

.v-grid .v-grid-body .inline-thumbnail {
	width: auto;
	height: auto;
	max-width: 20px;
	max-height: 30px;
}

.v-grid .v-grid-scroller.v-grid-scroller-vertical {
	border: none;
	background-color: white;
}

.v-grid .v-grid-selection-checkbox {
	position: relative;
	padding-left: 0 !important;
	cursor: pointer;
	font-size: 15px;
	user-select: none;
	vertical-align: unset;
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.v-grid .v-grid-selection-checkbox label {
	width: 18px;
}

.v-grid .v-grid-selection-checkbox.v-has-width label {
	white-space: normal;
}

:root .v-grid .v-grid-selection-checkbox {
	padding-left: 21px;
}

:root .v-grid .v-grid-selection-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-grid .v-grid-selection-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-grid .v-grid-selection-checkbox > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-grid .v-grid-selection-checkbox > input ~ label:before, :root .v-grid .v-grid-selection-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1px;
	font-size: 11px;
	text-align: center;
}

:root .v-grid .v-grid-selection-checkbox > input ~ label:before {
	height: 16px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 16px;
}

:root .v-grid .v-grid-selection-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-grid .v-grid-selection-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-grid .v-grid-selection-checkbox > input:checked ~ label:after {
	color: #fff;
}

.v-grid .v-grid-selection-checkbox > .v-icon, .v-grid .v-grid-selection-checkbox > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-grid .v-grid-selection-checkbox.v-disabled  > label, .v-grid .v-grid-selection-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-grid .v-grid-selection-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-grid .v-grid-selection-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-grid .v-grid-selection-checkbox.v-readonly  > label, .v-grid .v-grid-selection-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.v-grid .v-grid-selection-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-grid .v-grid-selection-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-grid .v-grid-selection-checkbox.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-grid .v-grid-selection-checkbox label {
	text-indent: 999px;
}

.v-grid .v-grid-selection-checkbox  > input[type=checkbox]  ~ label:before, .v-grid .v-grid-selection-checkbox  > input[type=checkbox]  ~ label:after {
	width: 18px;
	height: 18px;
}

.v-grid .v-grid-selection-checkbox  > input[type=checkbox]  ~ label:before {
	border: none;
	background-color: #f5f5f5;
}

.v-grid .v-grid-selection-checkbox  > input[type=checkbox]  ~ label:after {
	content: "";
}

.v-grid .v-grid-selection-checkbox  > input[type=checkbox]:checked  ~ label:after {
	display: block;
	left: 7px;
	top: 3px;
	width: 7px;
	height: 13px;
	border: solid #232323;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.v-grid .v-grid-expander {
	vertical-align: middle;
	width: 2em;
	margin-left: -1em;
	padding-left: 1em;
}

.v-grid .v-grid-expander::before {
	font-size: 20px;
	text-align: left;
}

.v-grid .v-grid-expander.collapsed::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\ea30";
}

.v-grid .v-grid-expander.expanded::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\ea31";
}

.v-grid .v-grid-select-all-checkbox {
	display: none;
	visibility: hidden;
}

.v-tooltip {
	background-color: #fff;
	border-radius: 25px;
}

.v-tooltip .v-tooltip-text {
	color: #232323;
	padding: 10px;
}

span[class*="-row-drag-badge"] {
	display: none;
}

.v-treegrid-tablewrapper, .v-treegrid-cell-focused::before {
	border: none;
}

.v-treegrid-cell-focused {
	position: static;
}

.v-treegrid-cell-focused::before {
	display: none;
}

.v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 1px;
	left: 0;
	border: solid #232323;
	border-width: 0px 0px 0px 3px;
	border-radius: 0px;
	display: none;
	pointer-events: none;
}

.content-views .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.content-views .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.v-treegrid-row  > th, .v-treegrid-row  > td {
	border-bottom: 1px solid #dbdbdb;
	display: flex;
	align-items: center;
}

.v-treegrid .v-treegrid-cell {
	box-shadow: none;
}

.v-treegrid thead .v-treegrid-row {
	height: 35px;
	background-color: #dbdbdb;
}

.v-treegrid .v-treegrid-header {
	background-color: #dbdbdb;
}

.v-treegrid .v-treegrid-header th {
	border-top: 1px solid #dbdbdb;
	border-radius: 3px;
}

.v-treegrid .v-treegrid-header th:not(:first-child) {
	border-left: 1px solid #dbdbdb;
}

.v-treegrid .v-treegrid-header .v-treegrid-row:not(.v-grid-first-row) .v-treegrid-column-header-content {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 12px;
	opacity: 1;
}

.v-treegrid .v-treegrid-header .v-grid-first-row .v-treegrid-column-header-content {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 12px;
	color: #232323;
	opacity: 0.6;
	letter-spacing: -0.25px;
}

.v-treegrid .v-treegrid-header .v-treegrid-cell {
	padding: 0;
}

.v-treegrid .v-treegrid-header .v-treegrid-cell .v-treegrid-column-header-content, .v-treegrid .v-treegrid-header .v-treegrid-cell .v-filterselect, .v-treegrid .v-treegrid-header .v-treegrid-cell .v-textfield, .v-treegrid .v-treegrid-header .v-treegrid-cell .v-customcomponent {
	margin-right: 16.5px;
	margin-left: 16.5px;
	height: auto;
	min-height: auto;
	line-height: 1.2em;
}

.v-treegrid .v-treegrid-header .v-treegrid-cell .v-treegrid-column-header-content {
	margin-top: 5px;
}

.v-treegrid .v-treegrid-header .v-treegrid-cell .v-filterselect, .v-treegrid .v-treegrid-header .v-treegrid-cell .v-textfield, .v-treegrid .v-treegrid-header .v-treegrid-cell .v-customcomponent {
	margin-bottom: 5px;
}

.v-treegrid .v-treegrid-header .sort-asc:after, .v-treegrid .v-treegrid-header .sort-desc:after {
	content: "";
}

.v-treegrid .v-treegrid-header tr {
	height: auto;
}

.v-treegrid .v-treegrid-header tr th {
	min-height: auto;
}

.v-treegrid .v-treegrid-header tr.has-filter-row .v-treegrid-column-resize-handle {
	height: 46px;
}

.v-treegrid .v-treegrid-header .v-grid-first-row.v-treegrid-row .v-treegrid-cell, .v-treegrid .v-treegrid-header .v-grid-first-row.v-treegrid-row .v-treegrid-cell:last-child {
	border-bottom: 0;
	border-left: 1px solid #dbdbdb;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.v-treegrid .v-treegrid-header .v-grid-first-row.v-treegrid-row .v-treegrid-cell:last-child {
	border-top-right-radius: 3px;
}

.v-treegrid .v-treegrid-header .v-grid-first-row.v-treegrid-row .v-treegrid-cell:first-child {
	border-left: 0;
}

.v-treegrid .v-treegrid-header .v-grid-filter-row.v-treegrid-row .v-treegrid-cell, .v-treegrid .v-treegrid-header .v-grid-filter-row.v-treegrid-row .v-treegrid-cell:last-child {
	border-top: 0;
	border-left: 1px solid #dbdbdb;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.v-treegrid .v-treegrid-header .v-grid-filter-row.v-treegrid-row .v-treegrid-cell:last-child {
	border-bottom-right-radius: 3px;
}

.v-treegrid .v-treegrid-header .v-grid-filter-row.v-treegrid-row .v-treegrid-cell:first-child {
	border-left: 0;
}

.v-treegrid .v-treegrid-header .v-grid-filter-row.v-treegrid-row .v-treegrid-cell .v-filterselect::placeholder, .v-treegrid .v-treegrid-header .v-grid-filter-row.v-treegrid-row .v-treegrid-cell .v-textfield::placeholder {
	font-size: 12px;
}

.v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-widget, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-widget:focus, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-widget:hover {
	min-height: auto;
	height: auto;
	transition: none;
	padding: 0;
	background-color: #f5f5f5;
	border: none;
	letter-spacing: -0.5px;
}

.v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect [class*="input"], .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect [class*="input"]:focus, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect [class*="input"]:hover {
	background-color: #f5f5f5;
	height: auto;
	min-height: auto;
	margin: 0 16.5px 0 0;
	padding: 0;
	border: none;
	letter-spacing: -0.5px;
}

.v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect-button {
	background-color: #f5f5f5;
	margin: auto;
}

.v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect [class$="button"], .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect [class$="button"]::before {
	background-color: #f5f5f5;
	color: #232323;
	padding: 0;
	height: 18px;
	width: 20px;
	font-size: 20px;
	border-radius: 20px;
	background-color: #dbdbdb;
	background-image: -webkit-linear-gradient(left, #dbdbdb, #f5f5f5);
	background-image: linear-gradient(to right,#dbdbdb, #f5f5f5);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	background-position: right bottom;
}

.v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect [class$="button"]:hover, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-filterselect [class$="button"]:hover::before {
	background-color: #dbdbdb;
	background-position: left bottom;
}

.v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-checkbox, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-checkbox:hover, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-checkbox::selection {
	margin: auto;
	padding-left: 21px;
}

.v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-checkbox > input[type=checkbox] ~ label:after, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-checkbox:hover > input[type=checkbox] ~ label:after, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-checkbox > input[type=checkbox] ~ label:before, .v-treegrid .v-treegrid-header .v-treegrid-row .v-treegrid-cell .v-checkbox:hover > input[type=checkbox] ~ label:before {
	background-color: #fff;
}

.v-treegrid .v-treegrid-body {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	cursor: pointer;
}

.v-treegrid .v-treegrid-body .v-treegrid-row-selected  > .v-treegrid-cell, .v-treegrid .v-treegrid-body .v-treegrid-row-selected:hover  > .v-treegrid-cell {
	color: white;
	background-color: #599900;
	border-bottom-color: #dbdbdb;
}

.v-treegrid .v-treegrid-body .v-treegrid-row-selected  > .v-treegrid-cell .icon-status-green:before, .v-treegrid .v-treegrid-body .v-treegrid-row-selected:hover  > .v-treegrid-cell .icon-status-green:before {
	-webkit-text-stroke: 2px white;
	text-stroke: 2px white;
	text-shadow: 0 0 1px white;
}

.v-treegrid .v-treegrid-body .v-treegrid-row-selected  > .v-treegrid-cell .icon-status-green:after, .v-treegrid .v-treegrid-body .v-treegrid-row-selected:hover  > .v-treegrid-cell .icon-status-green:after {
	content: "\e99a";
	position: relative;
	margin-left: -1em;
	color: #599900;
}

.v-treegrid .v-treegrid-body .v-treegrid-row:not(.v-treegrid-row-selected):hover  > .v-treegrid-cell {
	background-color: #ebebeb;
}

.v-treegrid .v-treegrid-body .v-treegrid-row {
	background-color: #dbdbdb;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell {
	padding: 0 17.5px;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-1 {
	padding-left: 2em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-2 {
	padding-left: 4em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-3 {
	padding-left: 6em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-4 {
	padding-left: 8em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-5 {
	padding-left: 10em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-6 {
	padding-left: 12em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-7 {
	padding-left: 14em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-8 {
	padding-left: 16em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-9 {
	padding-left: 18em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-10 {
	padding-left: 20em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-11 {
	padding-left: 22em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-12 {
	padding-left: 24em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-13 {
	padding-left: 26em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-14 {
	padding-left: 28em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-node.depth-15 {
	padding-left: 30em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell:first-child {
	border-left: 0;
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-treegrid-cell-content .v-table-icon-element {
	display: inline-block;
	width: 2em;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell.frozen:first-child {
	width: 50px;
	z-index: -1;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell.frozen:first-child  + td[role='gridcell']  > .v-table-icon-element {
	margin-right: 10px;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-customcomponent {
	width: auto;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell .v-widget {
	background-color: transparent;
}

.v-treegrid .v-treegrid-body .v-treegrid-row > .v-treegrid-cell.frozen.last-frozen {
	padding-right: 0;
}

.v-treegrid .v-treegrid-body .inline-thumbnail {
	width: auto;
	height: auto;
	max-width: 20px;
	max-height: 30px;
}

.v-treegrid .v-treegrid-scroller.v-treegrid-scroller-vertical {
	border: none;
	background-color: white;
}

.v-treegrid .v-treegrid-selection-checkbox {
	position: relative;
	padding-left: 0 !important;
	cursor: pointer;
	font-size: 15px;
	user-select: none;
	vertical-align: unset;
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.v-treegrid .v-treegrid-selection-checkbox label {
	width: 18px;
}

.v-treegrid .v-treegrid-selection-checkbox.v-has-width label {
	white-space: normal;
}

:root .v-treegrid .v-treegrid-selection-checkbox {
	padding-left: 21px;
}

:root .v-treegrid .v-treegrid-selection-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-treegrid .v-treegrid-selection-checkbox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-treegrid .v-treegrid-selection-checkbox > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-treegrid .v-treegrid-selection-checkbox > input ~ label:before, :root .v-treegrid .v-treegrid-selection-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1px;
	font-size: 11px;
	text-align: center;
}

:root .v-treegrid .v-treegrid-selection-checkbox > input ~ label:before {
	height: 16px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 16px;
}

:root .v-treegrid .v-treegrid-selection-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-treegrid .v-treegrid-selection-checkbox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-treegrid .v-treegrid-selection-checkbox > input:checked ~ label:after {
	color: #fff;
}

.v-treegrid .v-treegrid-selection-checkbox > .v-icon, .v-treegrid .v-treegrid-selection-checkbox > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-treegrid .v-treegrid-selection-checkbox.v-disabled  > label, .v-treegrid .v-treegrid-selection-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-treegrid .v-treegrid-selection-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-treegrid .v-treegrid-selection-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-treegrid .v-treegrid-selection-checkbox.v-readonly  > label, .v-treegrid .v-treegrid-selection-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.v-treegrid .v-treegrid-selection-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-treegrid .v-treegrid-selection-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-treegrid .v-treegrid-selection-checkbox.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-treegrid .v-treegrid-selection-checkbox label {
	text-indent: 999px;
}

.v-treegrid .v-treegrid-selection-checkbox  > input[type=checkbox]  ~ label:before, .v-treegrid .v-treegrid-selection-checkbox  > input[type=checkbox]  ~ label:after {
	width: 18px;
	height: 18px;
}

.v-treegrid .v-treegrid-selection-checkbox  > input[type=checkbox]  ~ label:before {
	border: none;
	background-color: #f5f5f5;
}

.v-treegrid .v-treegrid-selection-checkbox  > input[type=checkbox]  ~ label:after {
	content: "";
}

.v-treegrid .v-treegrid-selection-checkbox  > input[type=checkbox]:checked  ~ label:after {
	display: block;
	left: 7px;
	top: 3px;
	width: 7px;
	height: 13px;
	border: solid #232323;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.v-treegrid .v-treegrid-expander {
	vertical-align: middle;
	width: 2em;
	margin-left: -1em;
	padding-left: 1em;
}

.v-treegrid .v-treegrid-expander::before {
	font-size: 20px;
	text-align: left;
}

.v-treegrid .v-treegrid-expander.collapsed::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\ea30";
}

.v-treegrid .v-treegrid-expander.expanded::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\ea31";
}

.v-treegrid .v-treegrid-select-all-checkbox {
	display: none;
	visibility: hidden;
}

.v-tooltip {
	background-color: #fff;
	border-radius: 25px;
}

.v-tooltip .v-tooltip-text {
	color: #232323;
	padding: 10px;
}

span[class*="-row-drag-badge"] {
	display: none;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer {
	background-color: #dbdbdb;
	display: flex;
	flex: none;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer::before {
	border-color: #dbdbdb;
	border-width: 1px;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
	content: "";
	display: block;
	background-color: #f5f5f5;
	border-radius: 3px;
	margin-left: 1px;
	flex: 1 auto;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 0 !important;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell {
	padding-left: 1px;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell:first-child {
	padding-left: 0;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	display: flex;
	align-items: center;
	margin-left: 0;
	margin-bottom: 1px;
	border: none;
	border-radius: 3px;
	padding: 0 15px;
	min-width: 150px;
	max-width: 189px;
	text-align: left;
	background-color: #f5f5f5;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption .v-captiontext {
	text-overflow: ellipsis;
	overflow: hidden;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption .v-captiontext a {
	color: #599900;
	text-decoration: none;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption-closable {
	padding-right: 40px;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem:not(.v-tabsheet-tabitem-selected):hover .v-caption {
	background-color: #ebebeb;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected {
	border-bottom: 1px solid #fff;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	margin-bottom: 0;
	border-radius: 3px 3px 0 0;
	background-color: #fff;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer span.v-icon {
	font-size: 16px;
	vertical-align: middle;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer img.v-icon[src$=".svg"] {
	width: 16px;
	padding-bottom: 3px;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	overflow: hidden;
	margin: 0;
	cursor: pointer;
	position: absolute;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close:not(.v-disabled):hover, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close:not(.v-disabled):focus, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close:not(.v-disabled):active {
	background-position: right bottom;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close:not(.v-disabled):hover, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close:not(.v-disabled):focus, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close:not(.v-disabled):active, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close.active:not(.v-disabled) {
	background-position: right bottom;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close .v-icon {
	font-size: inherit;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-caption-close:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	display: block;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller {
	bottom: 1px;
	right: 0;
	padding-top: 12px;
	padding-right: 44px;
	border-radius: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #f5f5f5 80%, rgba(245, 245, 245, 0) 100%);
	background-image: linear-gradient(to left,#f5f5f5 80%, rgba(245, 245, 245, 0) 100%);
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller button {
	color: #232323;
	font-size: 20px;
	opacity: 1;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="disabled"] {
	opacity: 0.4;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"] {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"]:not(.v-disabled):hover, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"]:not(.v-disabled):focus, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"]:not(.v-disabled):active {
	background-position: right bottom;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"]:not(.v-disabled):hover, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"]:not(.v-disabled):focus, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"]:not(.v-disabled):active, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"].active:not(.v-disabled) {
	background-position: right bottom;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"] .v-icon {
	font-size: inherit;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e961";
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"] {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"]:not(.v-disabled):hover, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"]:not(.v-disabled):focus, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"]:not(.v-disabled):active {
	background-position: right bottom;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"]:not(.v-disabled):hover, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"]:not(.v-disabled):focus, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"]:not(.v-disabled):active, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"].active:not(.v-disabled) {
	background-position: right bottom;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"] .v-icon {
	font-size: inherit;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller [class*="Next"]:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e95e";
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-scroller::after {
	content: none;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer > .close-icon {
	position: absolute;
	right: 18px;
	top: calc(50% - 13px);
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
	height: 35px;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	font-size: 12px;
	height: 35px;
}

.v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 12px;
}

.v-tabsheet-tabitem span.v-icon {
	padding: 3px;
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.v-tabsheet-tabitem img.v-icon[src$=".svg"] {
	padding: 3px;
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.v-tabsheet-caption-close {
	top: calc(50% - 11px) !important;
	width: 16px;
	height: 16px;
	font-size: 16px !important;
}

.v-tabsheet-caption-close:before {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.shell[width-range~="1200px-1599px"] .v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
	height: 45px;
}

.shell[width-range~="1200px-1599px"] .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	font-size: 14px;
	height: 45px;
}

.shell[width-range~="1200px-1599px"] .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 14px;
}

.shell[width-range~="1200px-1599px"] .v-tabsheet-tabitem span.v-icon {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.shell[width-range~="1200px-1599px"] .v-tabsheet-tabitem img.v-icon[src$=".svg"] {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.shell[width-range~="1200px-1599px"] .v-tabsheet-caption-close {
	top: calc(50% - 13px) !important;
	width: 20px;
	height: 20px;
	font-size: 20px !important;
}

.shell[width-range~="1200px-1599px"] .v-tabsheet-caption-close:before {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.shell[width-range~="1600px-"] .v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
	height: 45px;
}

.shell[width-range~="1600px-"] .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	font-size: 14px;
	height: 45px;
}

.shell[width-range~="1600px-"] .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 14px;
}

.shell[width-range~="1600px-"] .v-tabsheet-tabitem span.v-icon {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.shell[width-range~="1600px-"] .v-tabsheet-tabitem img.v-icon[src$=".svg"] {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.shell[width-range~="1600px-"] .v-tabsheet-caption-close {
	top: calc(50% - 13px) !important;
	width: 20px;
	height: 20px;
	font-size: 20px !important;
}

.shell[width-range~="1600px-"] .v-tabsheet-caption-close:before {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.v-tabsheet-tabitemcell .v-caption, .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-caption {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	color: #232323;
}

.v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
	color: #232323;
}

.v-tabsheet-framed > .v-tabsheet-content {
	border: none;
}

.v-tabsheet-framed > .v-tabsheet-content  > div {
	background-color: #fff;
}

.v-tabsheet-framed .v-panel {
	border: none;
}

.before-form-row-outlined .v-formlayout-contentcell {
	padding-bottom: 10px;
}

.v-formlayout-captioncell .v-caption {
	line-height: 44px;
}

.v-formlayout-captioncell .v-caption span:first-child {
	display: inline-block;
	line-height: 1.2;
	max-width: 25ch;
	overflow: hidden;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: text-top;
}

.v-formlayout-firstrow.v-formlayout-lastrow .v-formlayout-captioncell .v-caption {
	line-height: 24px;
}

.v-slot-hide-caption .v-widget.v-has-caption.v-caption-on-top {
	width: 100%;
}

.form-row-outlined .v-formlayout-captioncell .v-caption, .form-row-outlined .v-formlayout-contentcell .v-caption {
	line-height: 22px;
}

.form-row-outlined > td {
	padding-top: 10px;
	border-top: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
}

.form-row-outlined.v-formlayout-lastrow > td {
	border-bottom: none;
}

.form-row-outlined.v-formlayout-lastrow .v-formlayout-errorcell, .form-row-outlined.v-formlayout-lastrow .v-formlayout-captioncell, .form-row-outlined.v-formlayout-lastrow .v-formlayout-contentcell {
	padding-bottom: 10px;
}

.form-row-outlined.v-formlayout-firstrow > td {
	border-top: 0;
}

.form-row-outlined > .v-formlayout-contentcell {
	padding-bottom: 10px;
}

.v-formlayout .v-formlayout {
	padding-bottom: 0;
}

.v-formlayout {
	border-radius: 3px;
	padding-bottom: 55px;
}

.v-formlayout [class*="spacing"] > tbody > [class*="row"] > td {
	padding-top: 10px;
}

.v-formlayout [class*="spacing"] > tbody > [class*="firstrow"] > td {
	padding-top: 0;
}

.v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 29px;
}

.v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 10px;
}

.v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 15px;
}

.v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 15px;
}

.v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 15px;
}

.v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 15px;
}

.v-formlayout .file-details {
	padding-bottom: 20px;
}

.v-formlayout img.image-preview, .v-formlayout img.file-preview {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell {
	line-height: 30px;
}

.shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell input, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell .v-filterselect, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell .v-filterselect-input, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell textarea, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell .v-textfield, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell .v-datefield, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell label, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell button, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell .v-customcomponent > * {
	min-height: 30px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell button, .shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell .v-button {
	height: 30px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="-899px"] .v-formlayout .v-formlayout-contentcell .v-button-icon {
	font-size: 15px;
	height: 15px;
}

.shell[width-range~="-899px"] .v-formlayout .v-formlayout-captioncell, .shell[width-range~="-899px"] .v-formlayout .v-label, .shell[width-range~="-899px"] .v-formlayout .v-caption, .shell[width-range~="-899px"] .v-formlayout .v-captiontext {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="1200px-"] .v-formlayout .v-formlayout-contentcell > * {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .v-formlayout .v-form-field-container {
	max-width: 683px;
}

.v-tabsheet-tabcontainer-single-tab {
	display: none;
}

.v-tabsheet-content-single-tab .v-tabsheet-tabsheetpanel {
	border-radius: 3px;
	background-color: #fff;
}

.stacked-form-layout.with-multiple-entries .v-slot-outlined {
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
}

.stacked-form-layout.with-multiple-entries .v-slot-outlined .stacked-form-layout {
	padding-left: 20px;
}

.stacked-form-layout.with-multiple-entries .v-slot-outlined:last-of-type {
	border-bottom: 0;
}

.force-hide-field-captions .v-formlayout-contentcell .v-caption-on-top > .v-caption, .force-hide-field-captions .v-formlayout-contentcell .v-caption-on-top > .v-caption-v-form-field {
	display: none;
}

.v-formlayout table {
	border-collapse: collapse;
}

.v-required-field-indicator {
	vertical-align: top;
}

.v-caption {
	display: block;
	font-size: 13px;
	font-weight: 300;
	color: #232323;
}

.v-caption.v-caption-error {
	color: #f54200;
	font-weight: normal;
}

.v-caption.v-caption-infocus {
	color: #232323;
	font-weight: 500;
}

.v-caption span.v-captiontext {
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 300px;
}

.v-formlayout .v-formlayout .v-formlayout-captioncell {
	min-width: 0;
}

.v-formlayout .v-formlayout-captioncell {
	min-width: 193px;
}

.v-formlayout-captioncell {
	text-align: right;
	min-width: 0;
	border-top: 1px transparent;
}

.v-formlayout-contentcell > * {
	max-width: 455px;
}

.v-formlayout-contentcell .v-radiobutton, .v-formlayout-contentcell .v-checkbox {
	vertical-align: middle;
}

.shell[width-range~="1200px-"] .v-form-field-container {
	max-width: 683px;
}

.v-form-field-container {
	max-width: 455px;
}

.v-formlayout-errorcell {
	min-width: 20px;
}

.v-caption.v-disabled {
	opacity: 0.4;
}

.linkfield .selectfield .v-filterselect-button {
	display: inline;
}

.linkfield .v-filterselect-button {
	display: none;
	padding-right: 0;
}

.file-details .v-caption {
	padding: 0;
	display: inline-block;
	height: 24px;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	text-align: right;
}

.file-details .v-label {
	height: 24px;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	text-align: center;
}

[class*="file-details"] > table > tbody > tr > [class*="v-formlayout-captioncell"] {
	padding: 0 0 3px 0;
	height: 24px;
	line-height: 24px;
}

[class*="file-details"] > table > tbody > tr > [class*="v-formlayout-captioncell"] span {
	line-height: 24px;
}

[class*="file-details"] > table > tbody > tr > [class*="v-formlayout-errorcell"] {
	padding: 0 0 3px 0;
	height: 24px;
	line-height: 24px;
}

[class*="file-details"] > table > tbody > tr > [class*="v-formlayout-contentcell"] {
	padding: 0 0 3px 0;
	height: 24px;
	line-height: 24px;
}

[class*="file-details"] > table > tbody > [class*="v-formlayout-lastrow"] > td {
	padding: 0;
}

.v-slot-file-preview-area {
	display: block;
	width: 100%;
}

.preview-image {
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}

.file-preview-area {
	position: relative;
	height: 240px;
	background-color: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
}

.file-preview-area .v-caption {
	display: none;
}

.file-preview-area .v-image {
	max-width: calc(100% - 80px);
	max-height: calc(100% - 30px);
}

.file-preview-area .preview-image {
	z-index: 0;
}

.file-preview-area .lightbox-button {
	position: absolute;
	top: 10px;
	right: 10px;
}

div.v-filterselect.v-widget.v-has-width span.v-icon.MagnoliaIcons {
	margin-top: auto !important;
	position: relative;
	margin-right: -39px;
}

.shell[width-range~="-899px"] .linkfield .remove-button {
	padding: 4px 0;
}

.shell[width-range~="-899px"] .linkfield.with-dropdown-button .remove-button {
	margin-left: -65px;
}

.shell[width-range~="-899px"] .linkfield.no-dropdown-button .remove-button {
	margin-left: -30px;
}

.shell[width-range~="-899px"] .linkfield .select-new-button {
	height: 32px !important;
}

.linkfield-readonly {
	color: rgba(71, 71, 71, 0.5);
}

.linkfield .link-file-panel, .linkfield .link-file-panel-large {
	position: relative;
	background-color: #f5f5f5;
	min-height: 170px;
	height: auto;
	border: transparent solid 1px;
}

.linkfield .link-file-panel:hover, .linkfield .link-file-panel-large:hover {
	border-color: #dbdbdb;
}

.linkfield .link-file-panel .control-button-panel, .linkfield .link-file-panel-large .control-button-panel {
	border: none;
	float: right;
	line-height: 20px;
}

.linkfield .link-file-panel .control-button, .linkfield .link-file-panel-large .control-button {
	line-height: 20px;
	width: 20px;
	height: 20px;
	font-size: 20px;
	color: #232323;
	padding: 5px;
}

.linkfield .link-file-panel {
	min-height: 170px;
}

.linkfield .link-file-panel-large {
	min-height: 240px;
}

.linkfield .remove-button {
	height: 50%;
	background-image: none;
	background-color: transparent;
	padding: 12px;
	margin-top: 2px;
	border-radius: 50%;
	color: #232323;
}

.linkfield .remove-button:before {
	content: "";
}

.linkfield .remove-button  > .v-button-wrap {
	border-radius: 50%;
	display: inline-block;
	padding: 3px 3px 1px;
	margin: -3px -3px -1px;
	transition: background-color 0.5s;
}

.linkfield .remove-button  > .v-button-wrap:hover {
	background-color: #dbdbdb;
}

.linkfield  > .v-verticallayout {
	padding-left: 0;
	padding-right: 0;
}

.linkfield  > .v-verticallayout .v-customcomponent.done .v-verticallayout {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}

.linkfield  > .v-verticallayout .v-customcomponent.done .v-verticallayout .file-details {
	padding-bottom: 4px;
	max-height: 500px;
}

.linkfield.with-dropdown-button .v-filterselect-button {
	display: block;
	right: 1px;
}

.linkfield.with-dropdown-button .remove-button {
	margin-left: -80px;
	padding: 10px;
}

.linkfield.with-dropdown-button .select-new-button {
	border-radius: 1px;
}

.linkfield.no-dropdown-button .remove-button {
	margin-left: -50px;
	padding: 10px;
}

.linkfield.no-dropdown-button .select-new-button {
	border-radius: 0 1px 1px 0;
}

.linkfield.error .v-filterselect-input {
	border: 1px solid #f54200;
}

.multi-form-view.suppress-entry-captions .v-caption-multi-form-entry-content {
	display: none;
}

.multi-form-view .multi-form-entry {
	padding-bottom: 10px;
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: -1px;
}

.multi-form-view .multi-form-entry .v-caption span.v-captiontext {
	max-width: 100%;
}

.multifield .controls-wrapper [class^="icon-"], .multifield .controls-wrapper [class*=" icon-"] {
	font-size: 20px;
}

.multifield .controls-wrapper .v-spacing {
	width: 10px;
}

.multifield .inline.move-up {
	margin-left: 10px;
}

.multifield button.add {
	margin-top: 10px;
}

.v-button, .magnoliabutton {
	color: #fff;
	border-color: transparent;
	border-width: 0px;
	height: 45px;
	line-height: normal;
	background-color: #232323;
	background-image: -webkit-linear-gradient(left, #232323, #656565);
	background-image: linear-gradient(to right,#232323, #656565);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	padding: 0 20px;
}

.v-button:after, .magnoliabutton:after {
	visibility: hidden;
}

.v-button:not(.v-disabled):hover, .v-button:not(.v-disabled):focus, .v-button:not(.v-disabled):active, .magnoliabutton:not(.v-disabled):hover, .magnoliabutton:not(.v-disabled):focus, .magnoliabutton:not(.v-disabled):active {
	background-position: right bottom;
}

.v-button .v-icon, .magnoliabutton .v-icon {
	font-size: 20px;
}

.v-button img.v-icon, .magnoliabutton img.v-icon {
	height: 30px;
}

.v-button span.v-button-caption, .magnoliabutton span.v-button-caption {
	display: inline-block;
}

.v-button span.v-button-caption::first-letter, .magnoliabutton span.v-button-caption::first-letter {
	text-transform: capitalize;
}

.v-button-primary, .v-button-commit, .primary-button, .v-button.commit {
	background-color: #599900;
	border-radius: 30px;
	background-color: #599900;
	background-image: -webkit-linear-gradient(left, #599900, #4b7b08);
	background-image: linear-gradient(to right,#599900, #4b7b08);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.v-button-primary:not(.v-disabled):hover, .v-button-primary:not(.v-disabled):focus, .v-button-primary:not(.v-disabled):active, .v-button-commit:not(.v-disabled):hover, .v-button-commit:not(.v-disabled):focus, .v-button-commit:not(.v-disabled):active, .primary-button:not(.v-disabled):hover, .primary-button:not(.v-disabled):focus, .primary-button:not(.v-disabled):active, .v-button.commit:not(.v-disabled):hover, .v-button.commit:not(.v-disabled):focus, .v-button.commit:not(.v-disabled):active {
	background-position: right bottom;
}

.v-button-secondary, .secondary-button, .v-button.cancel {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.v-button-secondary:not(.v-disabled):hover, .v-button-secondary:not(.v-disabled):focus, .v-button-secondary:not(.v-disabled):active, .secondary-button:not(.v-disabled):hover, .secondary-button:not(.v-disabled):focus, .secondary-button:not(.v-disabled):active, .v-button.cancel:not(.v-disabled):hover, .v-button.cancel:not(.v-disabled):focus, .v-button.cancel:not(.v-disabled):active {
	background-position: right bottom;
}

.v-button-link {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	border-radius: 3px;
	padding: 0 10px;
}

.v-button-link:not(.v-disabled):hover, .v-button-link:not(.v-disabled):focus, .v-button-link:not(.v-disabled):active {
	background-position: right bottom;
}

.v-button-link:not(.v-disabled):hover, .v-button-link:not(.v-disabled):focus, .v-button-link:not(.v-disabled):active {
	background-color: #dbdbdb;
}

.v-button-icon {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
}

.v-button-icon:not(.v-disabled):hover, .v-button-icon:not(.v-disabled):focus, .v-button-icon:not(.v-disabled):active {
	background-position: right bottom;
}

.v-button-icon:not(.v-disabled):hover, .v-button-icon:not(.v-disabled):focus, .v-button-icon:not(.v-disabled):active, .v-button-icon.active:not(.v-disabled) {
	background-position: right bottom;
}

.v-button-icon .v-icon {
	font-size: inherit;
}

.shell[width-range~="-1199px"] .actions .v-button {
	height: 25px;
}

.shell[width-range~="-1199px"] .v-button.commit, .shell[width-range~="-1199px"] .v-button.cancel, .shell[width-range~="-1199px"] .actions .v-button {
	height: 25px;
	font-size: 12px;
}

.shell[width-range~="1200px-1599px"] .v-button.commit, .shell[width-range~="1200px-1599px"] .v-button.cancel, .shell[width-range~="1200px-1599px"] .actions .v-button {
	height: 35px;
	font-size: 14px;
}

.shell[width-range~="1600px-"] .v-button.commit, .shell[width-range~="1600px-"] .v-button.cancel, .shell[width-range~="1600px-"] .actions.v-button {
	height: 45px;
	font-size: 14px;
}

.detail {
	background-color: #dbdbdb;
}

.detail > .v-expand > .v-slot {
	overflow: hidden;
}

.detail .v-tabsheet-framed > .v-tabsheet-content > div > div {
	background-color: #fff;
	border-radius: 3px;
}

.detail .detailview {
	background-color: #dbdbdb;
}

.detail .detailview > .v-vertical > .v-spacing, .detail .detailview > .v-vertical > .v-expand > .v-spacing {
	height: 1px;
}

.detail .detailview .v-margin-left {
	padding-left: 1px;
}

.detail .detailview .v-margin-bottom {
	padding-bottom: 0;
}

.detail .detailview .v-margin-right {
	padding-right: 1px;
}

.detail .detailview .v-margin-top {
	padding-top: 0;
}

.detail .detailview .v-slot-content-wrapper, .detail .detailview .v-slot-scrollable, .detail .detailview  > .v-verticallayout {
	overflow-y: scroll;
	overflow-x: hidden;
}

.detail .detailview .content-wrapper {
	display: flex;
	flex-direction: column;
	background-color: #dbdbdb;
}

.detail .detailview .content-header {
	border-radius: 3px;
	background-color: #fff;
	min-height: 60px;
	line-height: 26px;
	padding: 28px 15px 5px 15px;
	margin-bottom: 1px;
}

.detail .detailview .content-header .v-caption-on-top  > .v-caption {
	position: absolute;
}

.detail .detailview .content-header .v-caption-on-top .heading-1 {
	margin-left: 36px;
}

.detail .detailview .content-header .heading-1 {
	font-size: 26px;
	white-space: normal;
	letter-spacing: -1.6px;
}

.detail .detailview .content-header .v-icon {
	font-size: 26px;
}

.detail .detailview .content-header .v-slot {
	margin-top: -1px;
}

.detail .detailview .content-header .v-slot .heading-1 {
	margin-top: 1px;
}

.detail .detailview .content {
	border-radius: 3px;
	background-color: #fff;
	height: 100%;
	display: flex;
	flex: 1;
	flex-flow: column;
}

.detail .detailview .content .v-formlayout .v-formlayout {
	padding-bottom: 0;
}

.detail .detailview .content .v-formlayout {
	border-radius: 3px;
	padding-bottom: 55px;
}

.detail .detailview .content .v-formlayout [class*="spacing"] > tbody > [class*="row"] > td {
	padding-top: 10px;
}

.detail .detailview .content .v-formlayout [class*="spacing"] > tbody > [class*="firstrow"] > td {
	padding-top: 0;
}

.detail .detailview .content .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 29px;
}

.detail .detailview .content .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 10px;
}

.detail .detailview .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 15px;
}

.detail .detailview .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .detail .detailview .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .detail .detailview .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 15px;
}

.detail .detailview .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 15px;
}

.detail .detailview .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .detail .detailview .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .detail .detailview .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 15px;
}

.detail .detailview .content .v-formlayout .file-details {
	padding-bottom: 20px;
}

.detail .detailview .content .v-formlayout img.image-preview, .detail .detailview .content .v-formlayout img.file-preview {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell {
	line-height: 30px;
}

.shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell input, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell .v-filterselect, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell .v-filterselect-input, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell textarea, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell .v-textfield, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell .v-datefield, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell label, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell button, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell .v-customcomponent > * {
	min-height: 30px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell button, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell .v-button {
	height: 30px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell .v-button-icon {
	font-size: 15px;
	height: 15px;
}

.shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-formlayout-captioncell, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-label, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-caption, .shell[width-range~="-899px"] .detail .detailview .content .v-formlayout .v-captiontext {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="1200px-"] .detail .detailview .content .v-formlayout .v-formlayout-contentcell > * {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .detail .detailview .content .v-formlayout .v-form-field-container {
	max-width: 683px;
}

.detail .detailview .content .v-tabsheet-tabcontainer-single-tab {
	display: none;
}

.detail .detailview .content .v-tabsheet-content-single-tab .v-tabsheet-tabsheetpanel {
	border-radius: 3px;
	background-color: #fff;
}

.detail .detailview .actions {
	padding: 5px 20px;
	border-radius: 3px;
	background-color: #fff;
}

.detail .detailview .actions .toolbar-actions, .detail .detailview .actions .secondary-actions {
	margin-right: 10px;
}

.detail .detailview .actions .primary-actions {
	margin-left: 10px;
}

.detail .actionbar {
	border-radius: 3px;
	margin-left: 1px;
}

.detail .actionbar .v-actionbar-section-title {
	margin-top: -55px !important;
}

.detail .content-footer {
	border-radius: 3px;
	background-color: #fff;
	height: 35px;
	margin-top: 1px;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .content-header {
	min-height: 100px;
	padding: 53px 15px 7px 15px;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .content-header .v-caption-on-top .heading-1 {
	margin-left: 45px;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .content-header .heading-1 {
	font-size: 36px;
	line-height: 40px;
	letter-spacing: -2.2px;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .content-header .v-icon {
	font-size: 36px;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .content-header .v-slot .v-icon {
	line-height: 26px;
	margin-top: 6px;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .actions {
	padding: 10px 20px;
	border-radius: 3px;
	background-color: #fff;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .actions .toolbar-actions, .shell[width-range~="1200px-1599px"] .detail .detailview .actions .secondary-actions {
	margin-right: 10px;
}

.shell[width-range~="1200px-1599px"] .detail .detailview .actions .primary-actions {
	margin-left: 10px;
}

.shell[width-range~="1200px-1599px"] .detail .content-footer {
	height: 55px;
}

.shell[width-range~="1600px-"] .detail .detailview .content-header {
	min-height: 125px;
	padding: 60px 15px 10px 15px;
}

.shell[width-range~="1600px-"] .detail .detailview .content-header .v-caption-on-top .heading-1 {
	margin-left: 55px;
}

.shell[width-range~="1600px-"] .detail .detailview .content-header .heading-1 {
	font-size: 45px;
	line-height: 55px;
	letter-spacing: -2.7px;
}

.shell[width-range~="1600px-"] .detail .detailview .content-header .v-icon {
	font-size: 45px;
}

.shell[width-range~="1600px-"] .detail .detailview .content-header .v-slot .v-icon {
	line-height: 55px;
}

.shell[width-range~="1600px-"] .detail .detailview .actions {
	padding: 15px 20px;
	border-radius: 3px;
	background-color: #fff;
}

.shell[width-range~="1600px-"] .detail .detailview .actions .toolbar-actions, .shell[width-range~="1600px-"] .detail .detailview .actions .secondary-actions {
	margin-right: 10px;
}

.shell[width-range~="1600px-"] .detail .detailview .actions .primary-actions {
	margin-left: 10px;
}

.shell[width-range~="1600px-"] .detail .content-footer {
	height: 55px;
}

.browser {
	background-color: #dbdbdb;
}

.browser .keyboard-panel {
	background: none;
	border: none;
}

.browser .v-spacing {
	width: 1px;
	height: 1px;
}

.browser .toolbar {
	border-radius: 3px;
	background-color: #fff;
	padding: 28px 15px 5px 15px;
	height: 60px;
	border-top-left-radius: 0;
}

.browser .toolbar .heading-1 {
	margin-right: 50px;
	font-size: 26px;
	line-height: 26px;
	letter-spacing: -1.6px;
}

.browser .toolbar .content-tool {
	margin-right: -11px;
	line-height: 1;
}

.browser .toolbar .content-tool .v-spacing {
	width: 20px;
}

.browser .toolbar .content-tool .v-filterselect [class*="input"] {
	border-left: 0;
}

.browser .toolbar .v-textfield {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.browser .toolbar .v-textfield::placeholder, .browser .toolbar .v-textfield.v-textfield-prompt, .browser .toolbar .v-textfield.prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.browser .toolbar .v-textfield[class*="prompt"]> {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.browser .toolbar .v-textfield:not(.v-disabled):not(.v-readonly):hover:not(:focus) {
	border-color: #dbdbdb;
}

.browser .toolbar .v-textfield input {
	min-height: 15px;
	max-height: 15px;
}

.browser .toolbar .v-filterselect [class*="input"] {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.browser .toolbar .v-filterselect [class*="input"]::placeholder, .browser .toolbar .v-filterselect [class*="input"].v-textfield-prompt, .browser .toolbar .v-filterselect [class*="input"].prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.browser .toolbar .v-filterselect[class*="prompt"]> [class*="input"] {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.browser .toolbar .v-filterselect:not(.v-disabled):not(.v-readonly) [class*="input"]:hover:not(:focus) {
	border-color: #dbdbdb;
}

.browser .toolbar .v-filterselect {
	min-height: 15px;
	max-height: 15px;
}

.browser .toolbar .v-filterselect [class$="button"] {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	right: 10px;
	top: -2px;
}

.browser .toolbar .v-filterselect [class$="button"]:not(.v-disabled):hover, .browser .toolbar .v-filterselect [class$="button"]:not(.v-disabled):focus, .browser .toolbar .v-filterselect [class$="button"]:not(.v-disabled):active {
	background-position: right bottom;
}

.browser .toolbar .v-filterselect [class$="button"]:not(.v-disabled):hover, .browser .toolbar .v-filterselect [class$="button"]:not(.v-disabled):focus, .browser .toolbar .v-filterselect [class$="button"]:not(.v-disabled):active, .browser .toolbar .v-filterselect [class$="button"].active:not(.v-disabled) {
	background-position: right bottom;
}

.browser .toolbar .v-filterselect [class$="button"] .v-icon {
	font-size: inherit;
}

.browser .toolbar .v-filterselect [class$="button"]::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e958";
	font-size: 22px;
	width: unset;
}

.browser .toolbar .v-filterselect input {
	min-height: 15px;
	max-height: 15px;
}

.browser .toolbar .caption-label {
	padding-left: 9px;
}

.browser .toolbar .v-filterselect {
	min-height: 26px;
	max-height: 26px;
	margin-right: 10px;
}

.browser .toolbar .v-filterselect [class*="input"] {
	min-height: 26px;
	max-height: 26px;
}

.browser .toolbar .searchbox {
	position: relative;
}

.browser .toolbar .searchbox.has-content .searchbox-clearbutton {
	display: inline;
}

.browser .toolbar .searchbox .searchbox-icon {
	position: absolute;
	left: 0;
}

.browser .toolbar .searchbox input[type=text] {
	padding: 0 0 0 32px;
	border: none;
	background-color: transparent;
	min-height: 25px;
}

.browser .toolbar .searchbox .searchbox-clearbutton {
	position: absolute;
	background-color: transparent;
	color: #383838;
	right: -20px;
	display: none;
}

.browser .toolbar .searchbox .searchbox-clearbutton:before {
	margin-top: 16px;
}

.browser .toolbar .searchbox .searchbox-clearbutton:hover:after {
	background-color: transparent;
}

.browser .toolbar .tools > .v-spacing {
	height: 27px !important;
	background-color: #d8d8d8;
	margin-right: 10px;
	margin-left: 10px;
}

.browser .toolbar .tools .view-modes .v-spacing {
	width: 4px;
}

.browser .toolbar .tools .v-slot-content-tool {
	height: 27px;
	border-left: 1px solid #d8d8d8;
}

.browser .v-slot-extension-view {
	background-color: #fff !important;
	margin-top: 1px;
	padding: 15px 10px;
}

.browser .v-slot-toolbar, .browser .v-slot-toolbar ~ div {
	background-color: #dbdbdb;
	padding-right: 1px;
}

.browser .filter-bar {
	display: flex;
	margin-top: 1px;
	border-radius: 3px;
	background-color: #fff;
}

.browser .filter-bar .v-csslayout  > .v-widget {
	vertical-align: middle;
	line-height: 18px;
}

.browser .filter-bar .v-csslayout  > .v-csslayout .v-filterselect {
	margin-left: -1px;
	margin-right: -1px;
}

.browser .filter-bar .v-textfield {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.browser .filter-bar .v-textfield::placeholder, .browser .filter-bar .v-textfield.v-textfield-prompt, .browser .filter-bar .v-textfield.prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.browser .filter-bar .v-textfield[class*="prompt"]> {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.browser .filter-bar .v-textfield:not(.v-disabled):not(.v-readonly):hover:not(:focus) {
	border-color: #dbdbdb;
}

.browser .filter-bar .v-textfield input {
	min-height: 15px;
	max-height: 15px;
}

.browser .filter-bar .v-filterselect [class*="input"] {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.browser .filter-bar .v-filterselect [class*="input"]::placeholder, .browser .filter-bar .v-filterselect [class*="input"].v-textfield-prompt, .browser .filter-bar .v-filterselect [class*="input"].prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.browser .filter-bar .v-filterselect[class*="prompt"]> [class*="input"] {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.browser .filter-bar .v-filterselect:not(.v-disabled):not(.v-readonly) [class*="input"]:hover:not(:focus) {
	border-color: #dbdbdb;
}

.browser .filter-bar .v-filterselect {
	min-height: 15px;
	max-height: 15px;
}

.browser .filter-bar .v-filterselect [class$="button"] {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	right: 10px;
	top: -2px;
}

.browser .filter-bar .v-filterselect [class$="button"]:not(.v-disabled):hover, .browser .filter-bar .v-filterselect [class$="button"]:not(.v-disabled):focus, .browser .filter-bar .v-filterselect [class$="button"]:not(.v-disabled):active {
	background-position: right bottom;
}

.browser .filter-bar .v-filterselect [class$="button"]:not(.v-disabled):hover, .browser .filter-bar .v-filterselect [class$="button"]:not(.v-disabled):focus, .browser .filter-bar .v-filterselect [class$="button"]:not(.v-disabled):active, .browser .filter-bar .v-filterselect [class$="button"].active:not(.v-disabled) {
	background-position: right bottom;
}

.browser .filter-bar .v-filterselect [class$="button"] .v-icon {
	font-size: inherit;
}

.browser .filter-bar .v-filterselect [class$="button"]::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e958";
	font-size: 22px;
	width: unset;
}

.browser .filter-bar .v-filterselect input {
	min-height: 15px;
	max-height: 15px;
}

.browser .filter-bar .caption-label {
	padding-left: 9px;
}

.browser .filter-bar .v-checkbox {
	padding-left: 9px;
}

.browser .filter-bar .v-checkbox > label {
	padding-left: 4px;
}

.browser .filter-bar .content-filter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.browser .filter-bar .content-filter:first-child {
	margin-left: 15px;
}

.browser .filter-bar {
	min-height: 45px;
	padding-top: 4.5px;
	padding-bottom: 4.5px;
}

.browser .filter-bar .caption-label {
	display: block;
	font-size: 10px;
	padding-left: 14px;
	opacity: 0.4;
	position: relative;
	top: 6px;
}

.browser .filter-bar .v-filterselect [class*="input"], .browser .filter-bar .v-filterselect [class*="input"]::placeholder, .browser .filter-bar .v-filterselect[class*="prompt"] > [class*="input"], .browser .filter-bar .v-textfield, .browser .filter-bar .v-textfield.v-textfield-prompt {
	font-size: 12px;
}

.browser .filter-bar .v-csslayout  > .v-csslayout .v-filterselect {
	min-height: 15px;
	max-height: 15px;
	width: 150px !important;
}

.browser .filter-bar .v-csslayout  > .v-csslayout input {
	min-height: 15px;
	max-height: 15px;
	width: 150px !important;
}

.browser .v-filterselect-suggestmenu .gwt-MenuItem {
	font-size: 12px;
}

.browser .v-slot-statusbar {
	height: 100%;
	background-color: #dbdbdb;
}

.browser .statusbar {
	border-radius: 3px;
	background-color: #fff;
	margin-top: 1px;
	padding: 8px 15px;
	height: 35px;
}

.browser .statusbar .v-slot {
	display: flex;
	align-content: center;
}

.browser .statusbar .v-label {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="1200px-1599px"] .browser .toolbar {
	padding: 53px 15px 7px 15px;
	height: 100px;
}

.shell[width-range~="1200px-1599px"] .browser .toolbar .heading-1 {
	font-size: 36px;
	letter-spacing: -2.2px;
	line-height: 40px;
}

.shell[width-range~="1200px-1599px"] .browser .statusbar {
	padding: 18px 15px;
	height: 55px;
}

.shell[width-range~="1200px-1599px"] .browser .filter-bar {
	min-height: 60px;
	padding-top: 11px;
	padding-bottom: 11px;
}

.shell[width-range~="1200px-1599px"] .browser .filter-bar .caption-label {
	display: block;
	font-size: 12px;
	padding-left: 14px;
	opacity: 0.4;
	position: relative;
	top: 3px;
}

.shell[width-range~="1200px-1599px"] .browser .filter-bar .v-filterselect [class*="input"], .shell[width-range~="1200px-1599px"] .browser .filter-bar .v-filterselect [class*="input"]::placeholder, .shell[width-range~="1200px-1599px"] .browser .filter-bar .v-filterselect[class*="prompt"] > [class*="input"], .shell[width-range~="1200px-1599px"] .browser .filter-bar .v-textfield, .shell[width-range~="1200px-1599px"] .browser .filter-bar .v-textfield.v-textfield-prompt {
	font-size: 14px;
}

.shell[width-range~="1200px-1599px"] .browser .filter-bar .v-csslayout  > .v-csslayout .v-filterselect {
	min-height: 20px;
	max-height: 20px;
	width: 200px !important;
}

.shell[width-range~="1200px-1599px"] .browser .filter-bar .v-csslayout  > .v-csslayout input {
	min-height: 20px;
	max-height: 20px;
	width: 200px !important;
}

.shell[width-range~="1200px-1599px"] .browser .v-filterselect-suggestmenu .gwt-MenuItem {
	font-size: 14px;
}

.shell[width-range~="1600px-"] .browser .toolbar {
	padding: 60px 15px 10px 15px;
	height: 125px;
}

.shell[width-range~="1600px-"] .browser .toolbar .heading-1 {
	font-size: 45px;
	letter-spacing: -2.7px;
	line-height: 55px;
}

.shell[width-range~="1600px-"] .browser .statusbar {
	padding: 27px 15px;
	height: 75px;
}

.shell[width-range~="1600px-"] .browser .filter-bar {
	min-height: 60px;
	padding-top: 11px;
	padding-bottom: 11px;
}

.shell[width-range~="1600px-"] .browser .filter-bar .caption-label {
	display: block;
	font-size: 12px;
	padding-left: 14px;
	opacity: 0.4;
	position: relative;
	top: 3px;
}

.shell[width-range~="1600px-"] .browser .filter-bar .v-filterselect [class*="input"], .shell[width-range~="1600px-"] .browser .filter-bar .v-filterselect [class*="input"]::placeholder, .shell[width-range~="1600px-"] .browser .filter-bar .v-filterselect[class*="prompt"] > [class*="input"], .shell[width-range~="1600px-"] .browser .filter-bar .v-textfield, .shell[width-range~="1600px-"] .browser .filter-bar .v-textfield.v-textfield-prompt {
	font-size: 14px;
}

.shell[width-range~="1600px-"] .browser .filter-bar .v-csslayout  > .v-csslayout .v-filterselect {
	min-height: 20px;
	max-height: 20px;
	width: 200px !important;
}

.shell[width-range~="1600px-"] .browser .filter-bar .v-csslayout  > .v-csslayout input {
	min-height: 20px;
	max-height: 20px;
	width: 200px !important;
}

.shell[width-range~="1600px-"] .browser .v-filterselect-suggestmenu .gwt-MenuItem {
	font-size: 14px;
}

@keyframes banner-slide-down {
		from {
		height: 0;
	}
		to {
		height: 80px;
	}
	}

@keyframes banner-slide-up {
		from {
		height: 80px;
	}
		to {
		height: 0;
	}
	}

.v-slot-banner-container-spacing-hidden + .v-spacing {
	display: none !important;
}

.v-slot-banner-container {
	line-height: 0;
}

.banner-container .banner {
	display: flex;
	justify-content: space-between;
	height: 80px;
	border-radius: 3px;
	line-height: normal;
}

.banner-container .banner.slide-down {
	animation: banner-slide-down 100ms;
}

.banner-container .banner.slide-up {
	animation: banner-slide-up 100ms forwards;
}

.banner-container .banner .v-slot-content {
	margin-top: 14px;
	margin-left: 14px;
	margin-right: 50px;
	overflow: hidden;
}

.banner-container .banner .v-slot-content .content {
	width: 100%;
}

.banner-container .banner .v-slot-content .content .title {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
	display: flex;
}

.banner-container .banner .v-slot-content .content .title .v-label:last-child {
	margin-left: 9px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.banner-container .banner .v-slot-content .content .body {
	width: 100%;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
	height: 25px;
	line-height: 1.4;
}

.banner-container .banner .v-slot-content .content .body .v-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.banner-container .banner .v-slot-buttons {
	align-self: center;
	margin-left: auto;
}

.banner-container .banner .v-slot-buttons .buttons {
	display: flex;
}

.banner-container .banner .v-slot-buttons .buttons .v-button {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	color: #fff;
	border-color: #fff;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,transparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.banner-container .banner .v-slot-buttons .buttons .v-button:not(.v-disabled):hover, .banner-container .banner .v-slot-buttons .buttons .v-button:not(.v-disabled):focus, .banner-container .banner .v-slot-buttons .buttons .v-button:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .banner .v-slot-buttons .buttons .v-button:not(.v-disabled):hover, .banner-container .banner .v-slot-buttons .buttons .v-button:not(.v-disabled):focus, .banner-container .banner .v-slot-buttons .buttons .v-button:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .banner .v-slot-buttons .buttons .v-button {
	padding: 0 30px;
}

.banner-container .banner .v-slot-buttons .buttons .v-button:not(:last-child) {
	margin-right: 10px;
}

.banner-container .banner .close {
	align-self: flex-start;
	margin-right: 6px;
	margin-top: 12px;
	margin-left: 40px;
}

.banner-container .info {
	background-color: #3767d0;
	color: #fff;
}

.banner-container .info .v-slot-buttons .buttons .v-button-primary, .banner-container .info .v-slot-buttons .buttons .v-button-commit, .banner-container .info .v-slot-buttons .buttons .v-button-confirm {
	border-color: transparent;
	color: #3767d0;
	background-color: #fff;
	background-image: -webkit-linear-gradient(left, #fff, #d7e0f5);
	background-image: linear-gradient(to right,#fff, #d7e0f5);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.banner-container .info .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):hover, .banner-container .info .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):focus, .banner-container .info .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):active, .banner-container .info .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):hover, .banner-container .info .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):focus, .banner-container .info .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):active, .banner-container .info .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):hover, .banner-container .info .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):focus, .banner-container .info .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .info .close {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.banner-container .info .close:not(.v-disabled):hover, .banner-container .info .close:not(.v-disabled):focus, .banner-container .info .close:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .info .close:not(.v-disabled):hover, .banner-container .info .close:not(.v-disabled):focus, .banner-container .info .close:not(.v-disabled):active, .banner-container .info .close.active:not(.v-disabled) {
	background-position: right bottom;
}

.banner-container .info .close .v-icon {
	font-size: inherit;
}

.banner-container .info .close:not(.v-disabled):hover, .banner-container .info .close:not(.v-disabled):focus, .banner-container .info .close:not(.v-disabled):active {
	background-position: right bottom;
	color: #3767d0;
}

.banner-container .warning {
	background-color: #ffb300;
	color: #232323;
}

.banner-container .warning .v-slot-buttons .buttons .v-button-primary, .banner-container .warning .v-slot-buttons .buttons .v-button-commit, .banner-container .warning .v-slot-buttons .buttons .v-button-confirm {
	border-color: transparent;
	color: #ffb300;
	background-color: #fff;
	background-image: -webkit-linear-gradient(left, #fff, #ffefcc);
	background-image: linear-gradient(to right,#fff, #ffefcc);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.banner-container .warning .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):hover, .banner-container .warning .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):focus, .banner-container .warning .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):active, .banner-container .warning .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):hover, .banner-container .warning .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):focus, .banner-container .warning .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):active, .banner-container .warning .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):hover, .banner-container .warning .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):focus, .banner-container .warning .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .warning .v-slot-buttons .buttons .v-button {
	color: #232323;
	border-color: #232323;
}

.banner-container .warning .v-window-header {
	color: #232323;
}

.banner-container .warning .close {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	color: #383838;
}

.banner-container .warning .close:not(.v-disabled):hover, .banner-container .warning .close:not(.v-disabled):focus, .banner-container .warning .close:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .warning .close:not(.v-disabled):hover, .banner-container .warning .close:not(.v-disabled):focus, .banner-container .warning .close:not(.v-disabled):active, .banner-container .warning .close.active:not(.v-disabled) {
	background-position: right bottom;
}

.banner-container .warning .close .v-icon {
	font-size: inherit;
}

.banner-container .warning .close:not(.v-disabled):hover, .banner-container .warning .close:not(.v-disabled):focus, .banner-container .warning .close:not(.v-disabled):active {
	background-position: right bottom;
	color: #ffb300;
}

.banner-container .error {
	background-color: #f54200;
	color: #fff;
}

.banner-container .error .v-slot-buttons .buttons .v-button-primary, .banner-container .error .v-slot-buttons .buttons .v-button-commit, .banner-container .error .v-slot-buttons .buttons .v-button-confirm {
	border-color: transparent;
	color: #f54200;
	background-color: #fff;
	background-image: -webkit-linear-gradient(left, #fff, #fdd9cc);
	background-image: linear-gradient(to right,#fff, #fdd9cc);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.banner-container .error .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):hover, .banner-container .error .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):focus, .banner-container .error .v-slot-buttons .buttons .v-button-primary:not(.v-disabled):active, .banner-container .error .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):hover, .banner-container .error .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):focus, .banner-container .error .v-slot-buttons .buttons .v-button-commit:not(.v-disabled):active, .banner-container .error .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):hover, .banner-container .error .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):focus, .banner-container .error .v-slot-buttons .buttons .v-button-confirm:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .error .close {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.banner-container .error .close:not(.v-disabled):hover, .banner-container .error .close:not(.v-disabled):focus, .banner-container .error .close:not(.v-disabled):active {
	background-position: right bottom;
}

.banner-container .error .close:not(.v-disabled):hover, .banner-container .error .close:not(.v-disabled):focus, .banner-container .error .close:not(.v-disabled):active, .banner-container .error .close.active:not(.v-disabled) {
	background-position: right bottom;
}

.banner-container .error .close .v-icon {
	font-size: inherit;
}

.banner-container .error .close:not(.v-disabled):hover, .banner-container .error .close:not(.v-disabled):focus, .banner-container .error .close:not(.v-disabled):active {
	background-position: right bottom;
	color: #f54200;
}

.complexdialogui, .simpledialogui {
	background: fade_out(#232323, 0.4);
}

.dialog {
	border-left: 0;
	border-right: 0;
	position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
	margin: 0 auto !important;
	left: 0 !important;
	right: 0 !important;
	top: 30px !important;
	height: auto;
	max-height: calc(100% - 30px - 30px);
}

.dialog.choose-dialog-always-on-top {
	z-index: 11000 !important;
}

.dialog.v-media-editor {
	height: 100%;
	max-width: calc(100% - 30px - 30px);
}

.dialog .v-window-contents > .v-scrollable:before {
	border-color: #dbdbdb;
}

.dialog .v-window-contents .v-customcomponent {
	position: relative !important;
}

.dialog .v-window-contents .v-media-editor {
	top: 0 !important;
	max-height: unset;
}

.dialog .v-window-contents .content .v-scrollable::-webkit-scrollbar, .dialog .v-window-contents .choose-dialog .v-scrollable::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 7px;
}

.dialog .v-window-contents .content .v-scrollable::-webkit-scrollbar-track, .dialog .v-window-contents .choose-dialog .v-scrollable::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 8px #969696;
}

.dialog .v-window-contents .content .v-scrollable::-webkit-scrollbar-thumb, .dialog .v-window-contents .choose-dialog .v-scrollable::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.3);
}

.dialog .v-slot-content {
	border-radius: 3px;
	background-color: #fff;
}

.dialog .content {
	border-radius: 3px;
	background-color: #fff;
	display: flex;
	flex: 1;
	flex-flow: column;
}

.dialog .content .v-formlayout .v-formlayout {
	padding-bottom: 0;
}

.dialog .content .v-formlayout {
	border-radius: 3px;
	padding-bottom: 55px;
}

.dialog .content .v-formlayout [class*="spacing"] > tbody > [class*="row"] > td {
	padding-top: 10px;
}

.dialog .content .v-formlayout [class*="spacing"] > tbody > [class*="firstrow"] > td {
	padding-top: 0;
}

.dialog .content .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 29px;
}

.dialog .content .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 10px;
}

.dialog .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 15px;
}

.dialog .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .dialog .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .dialog .content .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 15px;
}

.dialog .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 15px;
}

.dialog .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .dialog .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .dialog .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 15px;
}

.dialog .content .v-formlayout .file-details {
	padding-bottom: 20px;
}

.dialog .content .v-formlayout img.image-preview, .dialog .content .v-formlayout img.file-preview {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell {
	line-height: 30px;
}

.shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell input, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell .v-filterselect, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell .v-filterselect-input, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell textarea, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell .v-textfield, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell .v-datefield, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell label, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell button, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell .v-customcomponent > * {
	min-height: 30px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell button, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell .v-button {
	height: 30px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-contentcell .v-button-icon {
	font-size: 15px;
	height: 15px;
}

.shell[width-range~="-899px"] .dialog .content .v-formlayout .v-formlayout-captioncell, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-label, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-caption, .shell[width-range~="-899px"] .dialog .content .v-formlayout .v-captiontext {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.shell[width-range~="1200px-"] .dialog .content .v-formlayout .v-formlayout-contentcell > * {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .dialog .content .v-formlayout .v-form-field-container {
	max-width: 683px;
}

.dialog .content .v-tabsheet-tabcontainer-single-tab {
	display: none;
}

.dialog .content .v-tabsheet-content-single-tab .v-tabsheet-tabsheetpanel {
	border-radius: 3px;
	background-color: #fff;
}

.dialog .content .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 80px;
}

.dialog .v-formlayout-contentcell  > * {
	max-width: 100%;
}

.dialog .v-formlayout-contentcell .cke_chrome {
	width: 100% !important;
}

.dialog .v-form-field-container {
	max-width: 100%;
}

.dialog.small {
	width: 700px;
}

.dialog.medium {
	width: 1000px;
}

.dialog.wide .choose-dialog, .dialog.wide .content {
	height: calc(100vh - 260px) !important;
}

.dialog.wide .v-slot-mgnl-workbench-thumbnail-view .thumbnail-scroller {
	height: calc(100vh - 291px - 45px) !important;
}

.dialog.wide .v-csslayout-actionbar .v-actionbar {
	height: calc(100vh - 215px - 45px) !important;
}

.dialog.wide .v-ckeditortextfield:not(.fixed-height) {
	height: calc(100vh - 216px) !important;
}

.dialog.wide, .dialog.medium, .dialog.small {
	max-width: calc(100% - 2*20px);
}

.dialog .actions {
	padding: 15px 20px;
	border-radius: 3px;
	background-color: #fff;
}

.dialog .actions .toolbar-actions, .dialog .actions .secondary-actions {
	margin-right: 10px;
}

.dialog .actions .primary-actions {
	margin-left: 10px;
}

.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
	height: 45px;
}

.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	font-size: 14px;
	height: 45px;
}

.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 14px;
}

.dialog .v-tabsheet-tabitem span.v-icon {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.dialog .v-tabsheet-tabitem img.v-icon[src$=".svg"] {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.dialog .v-tabsheet-caption-close {
	top: calc(50% - 13px) !important;
	width: 20px;
	height: 20px;
	font-size: 20px !important;
}

.dialog .v-tabsheet-caption-close:before {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.dialog .actions {
	border-top: 1px solid #dbdbdb;
	border-top-right-radius: unset;
	background-color: #fff;
}

.dialog .actions .v-button {
	height: 45px;
	font-size: 14px;
	border-radius: 30px;
}

.dialog .actions .v-filterselect {
	min-height: 45px;
	height: 45px;
	font-size: 14px;
}

.dialog .actions .v-filterselect [class*="input"] {
	min-height: 45px;
	height: 45px;
	font-size: 14px;
}

.dialog .actions, .dialog .v-window-outerheader {
	height: 75px;
}

.dialog .v-window-header {
	left: 4px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	line-height: unset;
}

.dialog.small .mgnl-window-widthtogglebox, .dialog.medium .mgnl-window-widthtogglebox {
	right: 1.2em;
}

.dialog.small .mgnl-window-widthtogglebox::before, .dialog.medium .mgnl-window-widthtogglebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e975";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	background-color: trasparent;
	background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
	background-image: linear-gradient(to right,trasparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.small .mgnl-window-widthtogglebox.active:not(.v-disabled)::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.dialog.small .mgnl-window-widthtogglebox::before .v-icon, .dialog.medium .mgnl-window-widthtogglebox::before .v-icon {
	font-size: inherit;
}

.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.dialog.wide .mgnl-window-widthtogglebox {
	right: 1.2em;
}

.dialog.wide .mgnl-window-widthtogglebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e976";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	background-color: trasparent;
	background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
	background-image: linear-gradient(to right,trasparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.wide .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.dialog.wide .mgnl-window-widthtogglebox::before .v-icon {
	font-size: inherit;
}

.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.dialog .v-window-outerheader {
	font-size: 34px;
	font-weight: 300;
	right: 20px;
}

.dialog .v-window-outerheader .v-window-closebox {
	right: 0;
}

.dialog .v-window-outerheader .v-window-closebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	background-color: trasparent;
	background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
	background-image: linear-gradient(to right,trasparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before, .dialog .v-window-outerheader .v-window-closebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.dialog .v-window-outerheader .v-window-closebox::before .v-icon {
	font-size: inherit;
}

.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.dialog .v-window-outerheader .v-window-closebox, .dialog .v-window-outerheader .mgnl-window-widthtogglebox {
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	height: auto;
	position: absolute;
	z-index: 3;
	box-sizing: border-box;
	background-color: #fff;
	line-height: 29px;
	text-align: center;
	cursor: pointer;
	color: #999999;
	transition: color 140ms;
}

.dialog .v-window-outerheader .v-window-closebox::before, .dialog .v-window-outerheader .mgnl-window-widthtogglebox::before {
	font-size: 34px;
}

.dialog .v-window-outerheader .v-window-header {
	color: #232323;
	box-sizing: border-box;
}

.dialog .v-window-outerheader::after {
	border-top: none;
}

.dialog.expand .v-window-closebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e935";
}

.dialog.expand .mgnl-window-widthtogglebox {
	display: none;
}

.cke_notifications_area {
	z-index: 10001 !important;
}

@media only screen and (max-width: 899px) {
	.dialog {
		border-left: 0;
		border-right: 0;
		position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
		margin: 0 auto !important;
		left: 0 !important;
		right: 0 !important;
		top: 30px !important;
		height: auto;
		max-height: calc(100% - 30px - 30px);
	}
	.dialog.small {
		width: 700px;
	}
	.dialog.medium {
		width: 1000px;
	}
	.dialog.wide .choose-dialog, .dialog.wide .content {
		height: calc(100vh - 260px) !important;
	}
	.dialog.wide .v-slot-mgnl-workbench-thumbnail-view .thumbnail-scroller {
		height: calc(100vh - 291px - 45px) !important;
	}
	.dialog.wide .v-csslayout-actionbar .v-actionbar {
		height: calc(100vh - 215px - 45px) !important;
	}
	.dialog.wide .v-ckeditortextfield:not(.fixed-height) {
		height: calc(100vh - 216px) !important;
	}
	.dialog.wide, .dialog.medium, .dialog.small {
		max-width: calc(100% - 2*20px);
	}
	.dialog .actions {
		padding: 5px 20px;
		border-radius: 3px;
		background-color: #fff;
	}
	.dialog .actions .toolbar-actions, .dialog .actions .secondary-actions {
		margin-right: 10px;
	}
	.dialog .actions .primary-actions {
		margin-left: 10px;
	}
	.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
		height: 35px;
	}
	.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
		font-size: 12px;
		height: 35px;
	}
	.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
		font-size: 12px;
	}
	.dialog .v-tabsheet-tabitem span.v-icon {
		padding: 3px;
		width: 16px;
		height: 16px;
		font-size: 16px;
	}
	.dialog .v-tabsheet-tabitem img.v-icon[src$=".svg"] {
		padding: 3px;
		width: 16px;
		height: 16px;
		font-size: 16px;
	}
	.dialog .v-tabsheet-caption-close {
		top: calc(50% - 11px) !important;
		width: 16px;
		height: 16px;
		font-size: 16px !important;
	}
	.dialog .v-tabsheet-caption-close:before {
		width: 16px;
		height: 16px;
		font-size: 16px;
	}
	.dialog .v-formlayout-contentcell {
		line-height: 30px;
	}
	.dialog .v-formlayout-contentcell input, .dialog .v-formlayout-contentcell .v-filterselect, .dialog .v-formlayout-contentcell .v-filterselect-input, .dialog .v-formlayout-contentcell textarea, .dialog .v-formlayout-contentcell .v-textfield, .dialog .v-formlayout-contentcell .v-datefield, .dialog .v-formlayout-contentcell label, .dialog .v-formlayout-contentcell button, .dialog .v-formlayout-contentcell .v-customcomponent > * {
		min-height: 30px;
		font-size: 12px;
		font-weight: normal;
		letter-spacing: -0.3px;
	}
	.dialog .v-formlayout-contentcell button, .dialog .v-formlayout-contentcell .v-button {
		height: 30px;
		font-size: 12px;
		font-weight: normal;
		letter-spacing: -0.3px;
	}
	.dialog .v-formlayout-contentcell .v-button-icon {
		font-size: 15px;
		height: 15px;
	}
	.dialog .v-formlayout-captioncell, .dialog .v-label, .dialog .v-caption, .dialog .v-captiontext {
		font-size: 12px;
		font-weight: normal;
		letter-spacing: -0.3px;
	}
	.dialog .actions {
		border-top: 1px solid #dbdbdb;
		border-top-right-radius: unset;
		background-color: #fff;
	}
	.dialog .actions .v-button {
		height: 25px;
		font-size: 12px;
		border-radius: 30px;
	}
	.dialog .actions .v-filterselect {
		min-height: 25px;
		height: 25px;
		font-size: 12px;
	}
	.dialog .actions .v-filterselect [class*="input"] {
		min-height: 25px;
		height: 25px;
		font-size: 12px;
	}
	.dialog .actions, .dialog .v-window-outerheader {
		height: 35px;
	}
	.dialog .v-window-header {
		left: 4px;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		line-height: unset;
	}
	.dialog.small .mgnl-window-widthtogglebox, .dialog.medium .mgnl-window-widthtogglebox {
		right: 1.2em;
	}
	.dialog.small .mgnl-window-widthtogglebox::before, .dialog.medium .mgnl-window-widthtogglebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e975";
		color: #232323;
		border-width: 1px;
		border-radius: 30px;
		border-color: #cacaca;
		background-color: transparent;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
		background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		font-size: 20px;
		line-height: 1;
		box-sizing: content-box;
		border-width: 0px;
		width: 1em;
		height: 1em;
		padding: 3px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
		background-image: linear-gradient(to right,transparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		vertical-align: middle;
		cursor: pointer;
		opacity: 1;
		background-color: trasparent;
		background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
		background-image: linear-gradient(to right,trasparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
	}
	.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.small .mgnl-window-widthtogglebox.active:not(.v-disabled)::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
		background-position: right bottom;
	}
	.dialog.small .mgnl-window-widthtogglebox::before .v-icon, .dialog.medium .mgnl-window-widthtogglebox::before .v-icon {
		font-size: inherit;
	}
	.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog.wide .mgnl-window-widthtogglebox {
		right: 1.2em;
	}
	.dialog.wide .mgnl-window-widthtogglebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e976";
		color: #232323;
		border-width: 1px;
		border-radius: 30px;
		border-color: #cacaca;
		background-color: transparent;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
		background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		font-size: 20px;
		line-height: 1;
		box-sizing: content-box;
		border-width: 0px;
		width: 1em;
		height: 1em;
		padding: 3px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
		background-image: linear-gradient(to right,transparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		vertical-align: middle;
		cursor: pointer;
		opacity: 1;
		background-color: trasparent;
		background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
		background-image: linear-gradient(to right,trasparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
	}
	.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.wide .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
		background-position: right bottom;
	}
	.dialog.wide .mgnl-window-widthtogglebox::before .v-icon {
		font-size: inherit;
	}
	.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader {
		font-size: 16px;
		font-weight: 300;
		right: 5px;
	}
	.dialog .v-window-outerheader .v-window-closebox {
		right: 0;
	}
	.dialog .v-window-outerheader .v-window-closebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e984";
		color: #232323;
		border-width: 1px;
		border-radius: 30px;
		border-color: #cacaca;
		background-color: transparent;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
		background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		font-size: 20px;
		line-height: 1;
		box-sizing: content-box;
		border-width: 0px;
		width: 1em;
		height: 1em;
		padding: 3px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
		background-image: linear-gradient(to right,transparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		vertical-align: middle;
		cursor: pointer;
		opacity: 1;
		background-color: trasparent;
		background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
		background-image: linear-gradient(to right,trasparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
	}
	.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before, .dialog .v-window-outerheader .v-window-closebox.active:not(.v-disabled)::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader .v-window-closebox::before .v-icon {
		font-size: inherit;
	}
	.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader .v-window-closebox, .dialog .v-window-outerheader .mgnl-window-widthtogglebox {
		top: 50%;
		transform: translateY(-50%);
		width: auto;
		height: auto;
		position: absolute;
		z-index: 3;
		box-sizing: border-box;
		background-color: #fff;
		line-height: 29px;
		text-align: center;
		cursor: pointer;
		color: #999999;
		transition: color 140ms;
	}
	.dialog .v-window-outerheader .v-window-closebox::before, .dialog .v-window-outerheader .mgnl-window-widthtogglebox::before {
		font-size: 16px;
	}
	.dialog .v-window-outerheader .v-window-header {
		color: #232323;
		box-sizing: border-box;
	}
	.dialog .v-window-outerheader::after {
		border-top: none;
	}
	.dialog.expand .v-window-closebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e935";
	}
	.dialog.expand .mgnl-window-widthtogglebox {
		display: none;
	}
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
	.dialog {
		border-left: 0;
		border-right: 0;
		position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
		margin: 0 auto !important;
		left: 0 !important;
		right: 0 !important;
		top: 30px !important;
		height: auto;
		max-height: calc(100% - 30px - 30px);
	}
	.dialog.small {
		width: 700px;
	}
	.dialog.medium {
		width: 1000px;
	}
	.dialog.wide .choose-dialog, .dialog.wide .content {
		height: calc(100vh - 260px) !important;
	}
	.dialog.wide .v-slot-mgnl-workbench-thumbnail-view .thumbnail-scroller {
		height: calc(100vh - 291px - 45px) !important;
	}
	.dialog.wide .v-csslayout-actionbar .v-actionbar {
		height: calc(100vh - 215px - 45px) !important;
	}
	.dialog.wide .v-ckeditortextfield:not(.fixed-height) {
		height: calc(100vh - 216px) !important;
	}
	.dialog.wide, .dialog.medium, .dialog.small {
		max-width: calc(100% - 2*20px);
	}
	.dialog .actions {
		padding: 10px 20px;
		border-radius: 3px;
		background-color: #fff;
	}
	.dialog .actions .toolbar-actions, .dialog .actions .secondary-actions {
		margin-right: 10px;
	}
	.dialog .actions .primary-actions {
		margin-left: 10px;
	}
	.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
		height: 45px;
	}
	.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
		font-size: 14px;
		height: 45px;
	}
	.dialog .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
		font-size: 14px;
	}
	.dialog .v-tabsheet-tabitem span.v-icon {
		padding: 3px;
		width: 20px;
		height: 20px;
		font-size: 20px;
	}
	.dialog .v-tabsheet-tabitem img.v-icon[src$=".svg"] {
		padding: 3px;
		width: 20px;
		height: 20px;
		font-size: 20px;
	}
	.dialog .v-tabsheet-caption-close {
		top: calc(50% - 13px) !important;
		width: 20px;
		height: 20px;
		font-size: 20px !important;
	}
	.dialog .v-tabsheet-caption-close:before {
		width: 20px;
		height: 20px;
		font-size: 20px;
	}
	.dialog .actions {
		border-top: 1px solid #dbdbdb;
		border-top-right-radius: unset;
		background-color: #fff;
	}
	.dialog .actions .v-button {
		height: 35px;
		font-size: 14px;
		border-radius: 30px;
	}
	.dialog .actions .v-filterselect {
		min-height: 35px;
		height: 35px;
		font-size: 14px;
	}
	.dialog .actions .v-filterselect [class*="input"] {
		min-height: 35px;
		height: 35px;
		font-size: 14px;
	}
	.dialog .actions, .dialog .v-window-outerheader {
		height: 55px;
	}
	.dialog .v-window-header {
		left: 4px;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		line-height: unset;
	}
	.dialog.small .mgnl-window-widthtogglebox, .dialog.medium .mgnl-window-widthtogglebox {
		right: 1.2em;
	}
	.dialog.small .mgnl-window-widthtogglebox::before, .dialog.medium .mgnl-window-widthtogglebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e975";
		color: #232323;
		border-width: 1px;
		border-radius: 30px;
		border-color: #cacaca;
		background-color: transparent;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
		background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		font-size: 20px;
		line-height: 1;
		box-sizing: content-box;
		border-width: 0px;
		width: 1em;
		height: 1em;
		padding: 3px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
		background-image: linear-gradient(to right,transparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		vertical-align: middle;
		cursor: pointer;
		opacity: 1;
		background-color: trasparent;
		background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
		background-image: linear-gradient(to right,trasparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
	}
	.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.small .mgnl-window-widthtogglebox.active:not(.v-disabled)::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
		background-position: right bottom;
	}
	.dialog.small .mgnl-window-widthtogglebox::before .v-icon, .dialog.medium .mgnl-window-widthtogglebox::before .v-icon {
		font-size: inherit;
	}
	.dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog.wide .mgnl-window-widthtogglebox {
		right: 1.2em;
	}
	.dialog.wide .mgnl-window-widthtogglebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e976";
		color: #232323;
		border-width: 1px;
		border-radius: 30px;
		border-color: #cacaca;
		background-color: transparent;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
		background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		font-size: 20px;
		line-height: 1;
		box-sizing: content-box;
		border-width: 0px;
		width: 1em;
		height: 1em;
		padding: 3px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
		background-image: linear-gradient(to right,transparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		vertical-align: middle;
		cursor: pointer;
		opacity: 1;
		background-color: trasparent;
		background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
		background-image: linear-gradient(to right,trasparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
	}
	.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .dialog.wide .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
		background-position: right bottom;
	}
	.dialog.wide .mgnl-window-widthtogglebox::before .v-icon {
		font-size: inherit;
	}
	.dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .dialog.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader {
		font-size: 26px;
		font-weight: 300;
		right: 10px;
	}
	.dialog .v-window-outerheader .v-window-closebox {
		right: 0;
	}
	.dialog .v-window-outerheader .v-window-closebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e984";
		color: #232323;
		border-width: 1px;
		border-radius: 30px;
		border-color: #cacaca;
		background-color: transparent;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
		background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		font-size: 20px;
		line-height: 1;
		box-sizing: content-box;
		border-width: 0px;
		width: 1em;
		height: 1em;
		padding: 3px;
		background-color: transparent;
		background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
		background-image: linear-gradient(to right,transparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
		vertical-align: middle;
		cursor: pointer;
		opacity: 1;
		background-color: trasparent;
		background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
		background-image: linear-gradient(to right,trasparent, #dbdbdb);
		background-size: 10000% 100%;
		background-position: left bottom;
		transition: background-position 0.5s, color 0.5s;
	}
	.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before, .dialog .v-window-outerheader .v-window-closebox.active:not(.v-disabled)::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader .v-window-closebox::before .v-icon {
		font-size: inherit;
	}
	.dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .dialog .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
		background-position: right bottom;
	}
	.dialog .v-window-outerheader .v-window-closebox, .dialog .v-window-outerheader .mgnl-window-widthtogglebox {
		top: 50%;
		transform: translateY(-50%);
		width: auto;
		height: auto;
		position: absolute;
		z-index: 3;
		box-sizing: border-box;
		background-color: #fff;
		line-height: 29px;
		text-align: center;
		cursor: pointer;
		color: #999999;
		transition: color 140ms;
	}
	.dialog .v-window-outerheader .v-window-closebox::before, .dialog .v-window-outerheader .mgnl-window-widthtogglebox::before {
		font-size: 26px;
	}
	.dialog .v-window-outerheader .v-window-header {
		color: #232323;
		box-sizing: border-box;
	}
	.dialog .v-window-outerheader::after {
		border-top: none;
	}
	.dialog.expand .v-window-closebox::before {
		font-family: "MagnoliaIcons" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\e935";
	}
	.dialog.expand .mgnl-window-widthtogglebox {
		display: none;
	}
}

.light-box {
	border-left: 0;
	border-right: 0;
	position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
	margin: 0 auto !important;
	left: 0 !important;
	right: 0 !important;
	top: 30px !important;
	height: auto;
	max-height: calc(100% - 30px - 30px);
	height: 100%;
	max-width: calc(100% - 30px - 30px);
	background: none;
	box-shadow: none;
}

.light-box.small {
	width: 700px;
}

.light-box.medium {
	width: 1000px;
}

.light-box.wide .choose-dialog, .light-box.wide .content {
	height: calc(100vh - 260px) !important;
}

.light-box.wide .v-slot-mgnl-workbench-thumbnail-view .thumbnail-scroller {
	height: calc(100vh - 291px - 45px) !important;
}

.light-box.wide .v-csslayout-actionbar .v-actionbar {
	height: calc(100vh - 215px - 45px) !important;
}

.light-box.wide .v-ckeditortextfield:not(.fixed-height) {
	height: calc(100vh - 216px) !important;
}

.light-box.wide, .light-box.medium, .light-box.small {
	max-width: calc(100% - 2*20px);
}

.light-box .actions {
	padding: 15px 20px;
	border-radius: 3px;
	background-color: #fff;
}

.light-box .actions .toolbar-actions, .light-box .actions .secondary-actions {
	margin-right: 10px;
}

.light-box .actions .primary-actions {
	margin-left: 10px;
}

.light-box .v-tabsheet-framed > .v-tabsheet-tabcontainer::after {
	height: 45px;
}

.light-box .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	font-size: 14px;
	height: 45px;
}

.light-box .v-tabsheet-framed > .v-tabsheet-tabcontainer .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 14px;
}

.light-box .v-tabsheet-tabitem span.v-icon {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.light-box .v-tabsheet-tabitem img.v-icon[src$=".svg"] {
	padding: 3px;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.light-box .v-tabsheet-caption-close {
	top: calc(50% - 13px) !important;
	width: 20px;
	height: 20px;
	font-size: 20px !important;
}

.light-box .v-tabsheet-caption-close:before {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.light-box .actions {
	border-top: 1px solid #dbdbdb;
	border-top-right-radius: unset;
	background-color: #fff;
}

.light-box .actions .v-button {
	height: 45px;
	font-size: 14px;
	border-radius: 30px;
}

.light-box .actions .v-filterselect {
	min-height: 45px;
	height: 45px;
	font-size: 14px;
}

.light-box .actions .v-filterselect [class*="input"] {
	min-height: 45px;
	height: 45px;
	font-size: 14px;
}

.light-box .actions, .light-box .v-window-outerheader {
	height: 75px;
}

.light-box .v-window-header {
	left: 4px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	line-height: unset;
}

.light-box.small .mgnl-window-widthtogglebox, .light-box.medium .mgnl-window-widthtogglebox {
	right: 1.2em;
}

.light-box.small .mgnl-window-widthtogglebox::before, .light-box.medium .mgnl-window-widthtogglebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e975";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,transparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	background-color: trasparent;
	background-image: -webkit-linear-gradient(left, trasparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,trasparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .light-box.small .mgnl-window-widthtogglebox.active:not(.v-disabled)::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .light-box.medium .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.light-box.small .mgnl-window-widthtogglebox::before .v-icon, .light-box.medium .mgnl-window-widthtogglebox::before .v-icon {
	font-size: inherit;
}

.light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.small .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.medium .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.light-box.wide .mgnl-window-widthtogglebox {
	right: 1.2em;
}

.light-box.wide .mgnl-window-widthtogglebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e976";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,transparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	background-color: trasparent;
	background-image: -webkit-linear-gradient(left, trasparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,trasparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before, .light-box.wide .mgnl-window-widthtogglebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.light-box.wide .mgnl-window-widthtogglebox::before .v-icon {
	font-size: inherit;
}

.light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):hover::before, .light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):focus::before, .light-box.wide .mgnl-window-widthtogglebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.light-box .v-window-outerheader {
	font-size: 34px;
	font-weight: 300;
	right: 20px;
}

.light-box .v-window-outerheader .v-window-closebox {
	right: 0;
}

.light-box .v-window-outerheader .v-window-closebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,transparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	background-color: trasparent;
	background-image: -webkit-linear-gradient(left, trasparent, rgba(255, 255, 255, 0.15));
	background-image: linear-gradient(to right,trasparent, rgba(255, 255, 255, 0.15));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before, .light-box .v-window-outerheader .v-window-closebox.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.light-box .v-window-outerheader .v-window-closebox::before .v-icon {
	font-size: inherit;
}

.light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):hover::before, .light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):focus::before, .light-box .v-window-outerheader .v-window-closebox:not(.v-disabled):active::before {
	background-position: right bottom;
}

.light-box .v-window-outerheader .v-window-closebox, .light-box .v-window-outerheader .mgnl-window-widthtogglebox {
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	height: auto;
	position: absolute;
	z-index: 3;
	box-sizing: border-box;
	background-color: #fff;
	line-height: 29px;
	text-align: center;
	cursor: pointer;
	color: #999999;
	transition: color 140ms;
	background-color: transparent;
	border: none;
}

.light-box .v-window-outerheader .v-window-closebox::before, .light-box .v-window-outerheader .mgnl-window-widthtogglebox::before {
	color: #fff;
	font-size: 40px;
}

.light-box .v-window-outerheader .v-window-header {
	color: #232323;
	box-sizing: border-box;
}

.light-box .v-window-outerheader::after {
	border-top: none;
}

.light-box.expand .v-window-closebox::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e935";
}

.light-box.expand .mgnl-window-widthtogglebox {
	display: none;
}

.light-box .v-window-outerheader::after {
	display: none;
}

.light-box .v-window-contents {
	border: none;
}

.light-box .v-window-contents .light-box-content .v-caption {
	display: none;
}

.light-box .v-window-contents .v-scrollable {
	display: flex;
}

.light-box .v-window-contents img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.light-box .v-scrollable::before {
	border: none;
}

.v-window-modalitycurtain, .v-window {
	transition: none;
}

.v-window-modalitycurtain, .v-window.v-animate-in {
	animation: mgnl-fade-in 200ms !important;
}

.v-window-modalitycurtain, .v-window.v-animate-out {
	animation: mgnl-fade-out 200ms !important;
}

.v-window-modalitycurtain.light {
	background: transparent;
}

.v-menubar-popup {
	padding: 0;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
	background: #f5f5f5;
	color: #232323;
	max-height: calc(90vh);
	overflow-y: scroll !important;
}

.v-menubar-popup .v-menubar-menuitem {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.popupContent .v-menubar-submenu {
	border-radius: 1px;
	padding: 0;
	margin: 0;
}

.popupContent .v-menubar-submenu .v-menubar-menuitem {
	padding-left: 10px;
	height: 45px;
	line-height: 45px;
}

.popupContent .v-menubar-submenu .v-menubar-menuitem:hover, .popupContent .v-menubar-submenu .v-menubar-menuitem:focus, .popupContent .v-menubar-submenu .v-menubar-menuitem-selected {
	background: #232323;
	color: #fff;
	outline: none;
}

.popupContent .v-menubar-submenu .v-menubar-menuitem.v-menubar-item-disabled:hover {
	background: #f5f5f5;
}

.popupContent .v-menubar-submenu .v-menubar-menuitem .v-icon {
	font-size: 20px;
	line-height: 45px;
	display: inline-block;
	width: 1em;
	height: 1em;
	float: left;
	padding: 0;
	margin-right: 16px;
}

input[type="password"].v-textfield {
	font-family: caption;
	font-size: 20px;
	min-width: 284px;
	line-height: 1;
}

.static-field {
	white-space: normal;
}

.v-textarea.v-textarea-readonly {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	line-height: 24px;
}

.v-textarea-readonly:focus, .v-textarea-readonly:hover, .v-textarea-readonly {
	border: none;
}

.v-shell-tabsheet-logo {
	position: absolute;
	display: inline-block;
	text-align: center;
	width: 17px;
	height: 17px;
	top: 16px;
	left: 16px;
	line-height: 17px;
	font-size: 16px;
	z-index: 10;
}

.switchable-field .v-tabsheet-tabitem {
	background-color: #fff;
	color: #232323;
	border: solid 1px;
	border-color: #dbdbdb;
	border-radius: 1px;
	height: 18px;
	margin-left: 0;
	padding: 13px 20px 14px;
}

.switchable-field .v-tabsheet-tabitem:hover {
	border-color: #dbdbdb;
}

.switchable-field .v-tabsheet-tabitemcell .v-caption:hover {
	color: #232323;
}

.switchable-field .v-tabsheet-tabitem-selected {
	background-color: #383838;
	border-color: #383838;
	border-radius: 1px;
}

.switchable-field .v-tabsheet-tabitem-selected:hover {
	border-color: #383838;
}

.switchable-field .v-tabsheet-tabitemcell .v-caption {
	border: none;
	padding: 0;
	margin: 0;
	line-height: 1.4;
}

.switchable-field .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	border: none;
}

.switchable-field .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	color: #fff;
}

.switchable-field .v-tabsheet-tabcontainer:after {
	content: none;
}

.switchable-field .v-tabsheet-content {
	margin-top: -1px;
}

.field-description {
	padding: 0;
	width: 20px;
	font-size: 20px;
	background-color: transparent;
	color: #232323;
}

.field-description:hover:after, .field-description:active:after {
	background-color: transparent;
}

.field-description:focus .v-icon {
	background-color: #232323;
	color: #fff;
	border-radius: 10px;
}

.v-contexthelp-bubble::before {
	margin-left: 245px;
	margin-top: 10px;
	position: absolute;
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	background-color: trasparent;
	background-image: -webkit-linear-gradient(left, trasparent, #dbdbdb);
	background-image: linear-gradient(to right,trasparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.v-contexthelp-bubble:not(.v-disabled):hover::before, .v-contexthelp-bubble:not(.v-disabled):focus::before, .v-contexthelp-bubble:not(.v-disabled):active::before {
	background-position: right bottom;
}

.v-contexthelp-bubble:not(.v-disabled):hover::before, .v-contexthelp-bubble:not(.v-disabled):focus::before, .v-contexthelp-bubble:not(.v-disabled):active::before, .v-contexthelp-bubble.active:not(.v-disabled)::before {
	background-position: right bottom;
}

.v-contexthelp-bubble::before .v-icon {
	font-size: inherit;
}

.v-contexthelp-bubble:not(.v-disabled):hover::before, .v-contexthelp-bubble:not(.v-disabled):focus::before, .v-contexthelp-bubble:not(.v-disabled):active::before {
	background-position: right bottom;
}

.v-contexthelp-bubble div.popupContent {
	width: 280px;
	max-width: 280px;
}

.v-contexthelp-bubble div.popupContent div.helpText {
	padding: 30px;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 18px;
	line-height: 25px;
	border-radius: 30px;
	background-color: #fff;
}

.v-contexthelp-bubble.right .popupContent div.helpText, .v-contexthelp-bubble.left .popupContent div.helpText, .v-contexthelp-bubble.above .popupContent div.helpText, .v-contexthelp-bubble.below .popupContent div.helpText {
	border: none;
	box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
}

.v-contexthelp-bubble.right div.popupContent:before, .v-contexthelp-bubble.right div.popupContent:after {
	border-right-color: #fff;
}

.v-contexthelp-bubble.left div.popupContent:before, .v-contexthelp-bubble.left div.popupContent:after {
	border-left-color: #fff;
}

.findbar {
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s;
}

.findbar .v-button-icon:not(.active):not(.v-disabled):focus {
	background-position: left bottom;
}

.findbar .v-button-icon:not(.active):not(.v-disabled):hover {
	background-position: right bottom;
}

.filter-and-results {
	height: 100%;
	background-color: #fff;
	position: absolute;
	z-index: 0;
	display: flex;
	flex-direction: column;
}

.periscope-filter-header-wrapper {
	height: 60px;
	padding: 10px 15px;
	background-color: white;
}

.periscope-filter-header-wrapper .periscope-filter-header-title {
	font-size: 26px;
	letter-spacing: -1.6px;
	line-height: 1;
}

.periscope-filter-options-wrapper, .periscope-filter-global-token-layout {
	background-color: #fff;
	margin-top: 1px;
}

.periscope-filter-global-token-layout {
	padding: 5px 15px;
}

.periscope-filter-wrapper {
	background-color: #dbdbdb;
	border-radius: 3px;
	margin-bottom: 1px;
	width: 100%;
}

.periscope-filter-wrapper .periscope-token-button {
	border-radius: 7px;
	height: 25px;
	font-size: 12px;
	color: #fff;
	margin-right: 3px;
	margin-bottom: 2px;
	padding-left: 10px;
	padding-right: 10px;
}

.periscope-filter-wrapper .periscope-token-button:last-of-type {
	margin-right: 0;
}

.periscope-filter-wrapper .periscope-token-button .v-button-wrap {
	display: block;
	height: 100%;
	line-height: 24px;
}

.periscope-filter-wrapper .periscope-token-button .v-icon {
	float: right;
	margin-left: 20px;
	line-height: 24px;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.periscope-filter-wrapper .periscope-token-button.v-button::before {
	display: none;
}

.periscope-filter-options-wrapper {
	padding: 10px 15px 0;
}

.periscope-filter-options-wrapper .v-filterselect [class*="input"] {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.periscope-filter-options-wrapper .v-filterselect [class*="input"]::placeholder, .periscope-filter-options-wrapper .v-filterselect [class*="input"].v-textfield-prompt, .periscope-filter-options-wrapper .v-filterselect [class*="input"].prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.periscope-filter-options-wrapper .v-filterselect[class*="prompt"]> [class*="input"] {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.periscope-filter-options-wrapper .v-filterselect:not(.v-disabled):not(.v-readonly) [class*="input"]:hover:not(:focus) {
	border-color: #dbdbdb;
}

.periscope-filter-options-wrapper .v-filterselect {
	min-height: 15px;
	max-height: 15px;
}

.periscope-filter-options-wrapper .v-filterselect [class$="button"] {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	right: 10px;
	top: -2px;
}

.periscope-filter-options-wrapper .v-filterselect [class$="button"]:not(.v-disabled):hover, .periscope-filter-options-wrapper .v-filterselect [class$="button"]:not(.v-disabled):focus, .periscope-filter-options-wrapper .v-filterselect [class$="button"]:not(.v-disabled):active {
	background-position: right bottom;
}

.periscope-filter-options-wrapper .v-filterselect [class$="button"]:not(.v-disabled):hover, .periscope-filter-options-wrapper .v-filterselect [class$="button"]:not(.v-disabled):focus, .periscope-filter-options-wrapper .v-filterselect [class$="button"]:not(.v-disabled):active, .periscope-filter-options-wrapper .v-filterselect [class$="button"].active:not(.v-disabled) {
	background-position: right bottom;
}

.periscope-filter-options-wrapper .v-filterselect [class$="button"] .v-icon {
	font-size: inherit;
}

.periscope-filter-options-wrapper .v-filterselect [class$="button"]::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e958";
	font-size: 22px;
	width: unset;
}

.periscope-filter-options-wrapper .v-filterselect input {
	min-height: 15px;
	max-height: 15px;
}

.periscope-filter-options-wrapper .caption-label {
	padding-left: 9px;
}

.periscope-filter-options-wrapper .v-caption {
	padding: 0 14px 0 14px;
	opacity: 0.4;
}

.periscope-filter-options-wrapper .v-caption span.v-captiontext {
	font-size: 12px;
}

.periscope-filter-options-wrapper .v-filterselect [class*="input"] {
	border-right: none;
}

.periscope-filter-options-wrapper .date-range-field {
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	max-height: 20px;
}

.periscope-filter-options-wrapper .date-range-field .v-datefield [class*="textfield"] {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.periscope-filter-options-wrapper .date-range-field .v-datefield [class*="textfield"]::placeholder, .periscope-filter-options-wrapper .date-range-field .v-datefield [class*="textfield"].v-textfield-prompt, .periscope-filter-options-wrapper .date-range-field .v-datefield [class*="textfield"].prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.periscope-filter-options-wrapper .date-range-field .v-datefield[class*="prompt"]> [class*="textfield"] {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.periscope-filter-options-wrapper .date-range-field .v-datefield:not(.v-disabled):not(.v-readonly) [class*="textfield"]:hover:not(:focus) {
	border-color: #dbdbdb;
}

.periscope-filter-options-wrapper .date-range-field .v-datefield {
	height: 20px;
	min-height: 20px;
}

.periscope-filter-options-wrapper .date-range-field .v-datefield .v-datefield-textfield {
	padding-left: 40px;
}

.periscope-filter-options-wrapper .date-range-field .v-datefield .v-datefield-button {
	line-height: 20px;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout {
	width: 100%;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-caption {
	display: none;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-datefield.v-datefield-day {
	width: calc(50% - 22px);
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-datefield [class*="textfield"] {
	border: none;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-datefield, .periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-menubar {
	vertical-align: top;
	margin-left: 0px;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-menubar {
	line-height: 1;
	width: 26px;
	height: 26px;
	bottom: 2px;
	border: none;
	border-radius: 30px;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-menubar:hover {
	background-color: #dbdbdb;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-menubar .v-menubar-menuitem {
	padding: 0;
	background-color: transparent;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-menubar .v-menubar-menuitem:focus {
	outline: none;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-menubar .v-menubar-menuitem::before {
	display: none;
}

.periscope-filter-options-wrapper .date-range-field  > .v-csslayout .v-menubar .v-menubar-submenu-indicator + .v-menubar-menuitem-caption::after {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e958";
	font-size: 22px;
	opacity: 1;
	position: relative;
	top: 2px;
	margin-left: 2px;
}

.periscope-filter-options-wrapper .token-layout {
	padding: 0 14px 10px 14px;
}

.periscope-filter-options-wrapper .token-layout:empty {
	display: none;
}

.v-filterselect-suggestpopup .gwt-MenuItem.gwt-MenuItem-selected.v-filterselect-item-periscope-filter-item {
	color: #fff;
}

.v-filterselect-suggestpopup .gwt-MenuItem.v-filterselect-item-periscope-filter-item[aria-checked="true"] {
	background: #232323;
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-filterselect-suggestpopup .gwt-MenuItem.v-filterselect-item-periscope-filter-item {
	color: #232323;
}

.v-filterselect-suggestpopup .gwt-MenuItem.v-filterselect-item-periscope-filter-item .v-checkbox > input:checked ~ label:after {
	top: 2px;
	left: 6px;
}

.v-filterselect-suggestpopup .gwt-MenuItem.v-filterselect-item-periscope-filter-item .v-checkbox > input ~ label:before {
	background-color: #fff !important;
}

.v-filterselect-suggestpopup .gwt-MenuItem.v-filterselect-item-periscope-filter-item .v-icon {
	font-size: 20px;
	position: relative;
	top: 3px;
}

.v-filterselect-suggestpopup .gwt-MenuItem.v-filterselect-item-periscope-filter-item .v-checkbox label {
	text-indent: 0;
	margin-left: 10px;
}

.v-textfield-findbar {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
	background: transparent;
	padding: 0 5px 34px 42px;
	color: #232323;
	text-overflow: ellipsis;
	border: none;
	line-height: 1;
}

.v-textfield-findbar::placeholder {
	font-style: normal;
	color: #cacaca;
	opacity: 1;
}

.v-slot-findbar {
	min-width: 200px;
}

.v-absolutelayout-findbar .v-button {
	font-size: 22px;
}

.v-absolutelayout-findbar .v-panel {
	border: 0;
}

.v-absolutelayout-findbar .voice.recording {
	color: #f54200;
	animation: pulsate 1s infinite;
}

.v-absolutelayout-findbar .command {
	font-size: 12px;
	position: relative;
	left: 35px;
	top: 32px;
	color: #cacaca;
}

.v-absolutelayout-findbar .command  > .v-spacing {
	width: 5px;
}

.search-results-grid {
	overflow: hidden;
}

.v-grid.findbar-results {
	height: 95% !important;
	margin-top: 0;
}

.v-grid.findbar-results .v-grid-row  > th, .v-grid.findbar-results .v-grid-row  > td {
	border-bottom: 1px solid #dbdbdb;
	display: flex;
	align-items: start;
}

.v-grid.findbar-results .v-grid-tablewrapper {
	overflow: visible;
	background-color: white;
}

.v-grid.findbar-results .v-grid-header th {
	border-top: none;
	margin-top: 1px;
}

.v-grid.findbar-results .v-grid-body {
	font-weight: 300;
}

.v-grid.findbar-results .v-grid-row-selected > .v-grid-cell {
	text-shadow: none;
}

.v-grid.findbar-results .v-grid-row-selected > .v-grid-cell.supplier {
	background-color: #fff;
	color: #232323;
}

.v-grid.findbar-results .v-grid-row-selected > .v-grid-cell.type img {
	filter: brightness(0) invert(1);
}

.v-grid.findbar-results thead {
	padding-top: 2em;
	top: -2em;
	background-color: #fff;
}

.v-grid.findbar-results thead .v-grid-row, .v-grid.findbar-results .v-grid-header .v-grid-cell {
	height: 35px;
	color: #979797;
}

.v-grid.findbar-results tbody .v-grid-row {
	background-color: #dbdbdb;
}

.v-grid.findbar-results tbody .v-grid-row td {
	cursor: pointer;
}

.v-grid.findbar-results tbody .v-grid-row td:nth-child(1) {
	cursor: default;
}

.v-grid.findbar-results .v-grid-header .v-grid-cell {
	border-radius: 0;
	border-left: none;
	border-right: none;
	display: flex;
}

.v-grid.findbar-results .v-grid-header .v-grid-cell:first-child .v-slot-app-bias-toggle {
	border-left: solid #cacaca;
	border-width: 0 1px;
	padding: 0 1em;
	margin-left: calc(1em - 20px);
}

.v-grid.findbar-results .v-grid-header .v-grid-cell:first-child .v-slot-app-bias-toggle .app-bias-toggle label::before {
	background-color: #fff;
}

.v-grid.findbar-results .v-grid-header .v-grid-cell .v-grid-column-header-content {
	line-height: 1.6;
	font-size: 12px;
}

.v-grid.findbar-results .v-grid-row:hover .v-grid-cell.supplier {
	background-color: #fff;
}

.v-grid.findbar-results .v-grid-cell.supplier {
	font-weight: bold;
	border-right: 1px solid #dbdbdb;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	text-transform: capitalize;
}

.v-grid.findbar-results .v-grid-cell.supplier:not(.last) {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.v-grid.findbar-results .v-grid-cell.supplier:not(.first) {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	color: transparent;
}

.v-grid.findbar-results .v-grid-cell.supplier  + .v-grid-cell {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.v-grid.findbar-results .v-grid-cell {
	border-radius: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 60px;
}

.v-grid.findbar-results .v-grid-cell > div {
	display: block;
}

.v-grid.findbar-results .v-grid-cell > .v-icon {
	width: 20px;
	height: 20px;
	font-size: 20px;
	line-height: 1;
}

.v-grid.findbar-results .has-path-or-excerpt .title-path-and-excerpt  > .title, .v-grid.findbar-results .has-path-or-excerpt .title-path-and-excerpt  > .path, .v-grid.findbar-results .has-path-or-excerpt .title-path-and-excerpt  > .excerpt {
	display: block;
}

.v-grid.findbar-results .has-path-or-excerpt .title-path-and-excerpt  > .title {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 14px;
	margin-top: -0.5ex;
}

.v-grid.findbar-results .has-path-or-excerpt .title-path-and-excerpt  > .path {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0.5;
	margin-top: -0.5ex;
}

.v-grid.findbar-results .has-path-or-excerpt .title-path-and-excerpt  > .excerpt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0.5;
	margin-top: -0.7ex;
}

.v-grid.findbar-results .current-app:not(.v-grid-row-selected) .v-grid-cell, .v-grid.findbar-results .current-app .v-grid-cell.supplier, .v-grid.findbar-results .current-app:hover .v-grid-cell.supplier {
	background-color: #f5f5f5;
}

.v-grid.findbar-results .v-grid-spacer {
	background: transparent;
	pointer-events: none;
	height: 20px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.v-grid.findbar-results .v-grid-spacer > td {
	visibility: hidden;
}

.v-grid.findbar-results .v-grid-spacer.stripe > td {
	border: none;
}

.v-grid.findbar-results .v-grid-spacer-deco {
	display: none;
}

.v-grid-header-deco {
	display: none;
}

.shell[width-range~="1200px-1599px"] .periscope-filter-header-wrapper {
	height: 100px;
}

.shell[width-range~="1200px-1599px"] .periscope-filter-header-wrapper .periscope-filter-header-title {
	font-size: 36px;
	letter-spacing: -2.2px;
}

.shell[width-range~="1600px-"] .periscope-filter-header-wrapper {
	height: 125px;
}

.shell[width-range~="1600px-"] .periscope-filter-header-wrapper .periscope-filter-header-title {
	font-size: 45px;
	letter-spacing: -2.7px;
}

.v-datefield [class*="textfield"] {
	color: #232323;
	border-color: transparent;
	line-height: 1.6;
	min-height: 45px;
	padding: 11px 32px 10px 9px;
	width: 100%;
}

.v-datefield [class*="textfield"]::placeholder {
	color: #888;
	opacity: 0.6;
	font-style: normal;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-datefield [class*="textfield"].v-textfield-prompt {
	color: #232323;
	opacity: 1;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.v-datefield [class*="textfield"]:focus {
	background-color: #fff;
}

.v-datefield [class*="textfield"].v-readonly, .v-datefield [class*="textfield"].v-readonly:focus {
	border: none;
}

.v-datefield [class*="textfield"]:not(.v-disabled):not(.v-readonly):hover:not(:focus) {
	border-color: #dbdbdb;
}

.v-datefield [class*="textfield"]-error {
	border-color: #f54200 !important;
	background-color: #f5f5f5;
}

.v-datefield {
	min-height: 45px;
}

.v-datefield [class*="textfield"] {
	padding: 12px 10px 12px 41px;
	border-color: transparent;
}

.v-datefield [class*="button"] {
	border-right: none;
}

.v-datefield [class*="button"]:before {
	font-family: MagnoliaIcons;
	content: "\e972";
	color: #232323;
	font-size: 20px;
}

.v-datefield [class*="button"]:active:after {
	background-color: transparent;
}

.v-datefield.v-readonly [class*="textfield"] {
	color: inherit;
}

.v-datefield-popup {
	padding: 8px 18px 25px 18px;
	background-color: #f5f5f5;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.14);
}

.v-datefield-popup td {
	padding: 3px;
}

.v-datefield-popup td.v-datefield-calendarpanel-month {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	letter-spacing: normal;
	color: #232323;
}

.v-datefield-popup td[class*="year"] button:before, .v-datefield-popup td[class*="month"] button:before {
	color: #232323;
	font-family: MagnoliaIcons;
}

.v-datefield-popup button.v-button-prevyear:before {
	content: "\ea00";
}

.v-datefield-popup button.v-button-nextyear:before {
	content: "\ea01";
}

.v-datefield-popup .v-button-prevmonth:before {
	content: "\e959";
}

.v-datefield-popup .v-button-nextmonth:before {
	content: "\e956";
}

.v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 48px;
}

.v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	color: #232323;
	font-weight: 300;
}

.v-datefield-popup .v-datefield-calendarpanel-day {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	color: #232323;
	background-color: transparent;
}

.v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover, .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	background-color: #232323;
	color: #fff;
	border-radius: 3px;
}

.v-datefield-popup .v-datefield-calendarpanel-day-today {
	border-radius: 3px;
}

.v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	opacity: 0.2;
}

.v-assistive-device-only, .v-assistive-device-only-label label {
	display: none;
}

.upload-layout {
	height: fit-content;
	display: flex;
	flex-direction: column;
	border: none;
}

.upload-layout .v-ddwrapper:before, .upload-layout .v-ddwrapper:after {
	border: 0.09em dashed;
	background-color: #fff;
	z-index: 5;
}

.upload-layout .initial, .upload-layout .in-progress {
	min-height: 140px;
	max-height: 240px;
	height: auto;
	display: flex;
	flex-direction: column;
	flex: 1;
	border: transparent solid 1px;
	background-color: #f5f5f5;
}

.upload-layout .initial:hover, .upload-layout .in-progress:hover {
	border-color: #dbdbdb;
}

.upload-layout .initial .upload-text {
	flex: 1;
	align-self: center;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.upload-layout .initial .upload-button {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 10;
}

.upload-layout .in-progress .uploading-progress-indicator {
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.upload-layout .in-progress .uploading-progress-indicator .v-slot-progress-layout {
	width: 80%;
	height: 20px;
	display: flex;
}

.upload-layout .in-progress .uploading-progress-indicator .v-slot-progress-layout .progress-layout {
	width: 100%;
	height: 100%;
	display: flex;
	align-self: center;
	flex-direction: row;
}

.upload-layout .in-progress .uploading-progress-indicator .v-slot-progress-layout .progress-layout .v-progressbar-indicator {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #dbdbdb;
}

.upload-layout .in-progress .uploading-progress-indicator .v-slot-progress-layout .progress-layout .v-progressbar-wrapper {
	height: 100%;
	border-radius: 10px;
	background-color: #fff;
}

.upload-layout .in-progress .uploading-progress-indicator .v-slot-progress-layout .progress-layout .uploading-file-progress {
	position: absolute;
	width: 80%;
	line-height: 20px;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.upload-layout .in-progress .uploading-progress-indicator .uploading-file {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	padding-top: 10px;
}

.upload-layout .in-progress .uploading-progress-indicator .cancel-uploading {
	z-index: 10;
}

.upload-layout .in-progress .uploading-progress-indicator .cancel-uploading:hover {
	cursor: pointer;
}

.upload-layout .done {
	height: auto;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 180px;
	background-color: #f5f5f5;
	border: transparent solid 1px;
}

.upload-layout .done:hover {
	border-color: #dbdbdb;
}

.upload-layout .done .edit-action {
	margin: 7px 7px 0 0;
	align-self: flex-end;
	z-index: 10;
}

.upload-layout .done .upload-another {
	align-self: flex-end;
	width: fit-content;
	margin-top: auto;
	z-index: 10;
}

.upload-layout .done .file-preview {
	display: flex;
	align-self: center;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	max-width: calc(100% - 80px);
	max-height: calc(100% - 30px);
	object-fit: contain;
}

.upload-layout .done .file-preview:before {
	font-size: 50px;
}

.upload-layout .done-img {
	min-height: 240px !important;
}

.upload-layout .file-details {
	padding-top: 0px;
	width: 100%;
	height: 100%;
}

.upload-layout .file-details .v-formlayout > table {
	margin-left: -225px;
	width: calc(100% + 225px);
}

.upload-layout .file-details table > tbody > [class*='firstrow'] > td {
	padding-top: 10px;
}

.upload-layout .file-details .v-formlayout-firstrow > .v-formlayout-captioncell {
	vertical-align: middle;
}

.compositefield {
	padding: 13px 0 30px 0;
}

.compositefield .v-formlayout-lastrow .v-formlayout-errorcell, .compositefield .v-formlayout-lastrow .v-formlayout-captioncell, .compositefield .v-formlayout-lastrow .v-formlayout-contentcell {
	padding-bottom: 0;
}

.compositefield .v-horizontal .v-expand > .v-spacing {
	width: 10px;
}

.compositefield .v-caption {
	line-height: 18px;
	padding-bottom: 7px;
}

.compositefield .v-caption-on-top {
	width: 100%;
}

.v-formlayout div.v-widget.exttokenfield {
	flex-wrap: wrap;
	min-height: 45px;
}

.v-formlayout .error .exttokenfield {
	border: 1px solid #f54200;
}

td.v-treegrid-cell div.v-widget.exttokenfield, td.v-grid-cell div.v-widget.exttokenfield {
	margin-left: -25px;
	margin-right: -25px;
}

div.v-widget.exttokenfield {
	height: auto;
	padding: 10px;
	border-radius: 1px;
	border: none;
	background-color: #f5f5f5;
	display: flex;
	overflow: hidden;
}

div.v-widget.exttokenfield .token {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	font-weight: 500;
	height: 23px;
	background-color: #232323;
	border: 1px solid #232323;
	border-radius: 7px;
	margin: 2px;
}

div.v-widget.exttokenfield .token .token-content {
	height: 14px;
	line-height: 14px;
	padding: 4px;
	white-space: nowrap;
}

div.v-widget.exttokenfield .token .token-content .token-action {
	padding-left: 16px;
}

div.v-widget.exttokenfield .token .token-content .token-action:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: white;
	cursor: pointer;
}

div.v-widget.exttokenfield .token .token-content .token-action .v-icon {
	display: none;
}

div.v-widget.exttokenfield .v-filterselect {
	height: 14px;
	line-height: 14px;
	min-height: 14px;
	width: auto !important;
	flex-grow: 1;
}

div.v-widget.exttokenfield .v-filterselect .v-filterselect-input {
	min-height: 25px;
	height: 25px;
	padding: 0;
}

.token-field-horizontal-layout, .token-field-horizontal-layout .v-slot:first-child {
	width: 100%;
}

.remove-all-tokens-button {
	height: 50%;
	padding: 0px;
	margin-left: -110%;
}

.remove-all-tokens-button.v-disabled {
	display: none;
}

.token-field-horizontal-layout .v-slot {
	vertical-align: middle;
}

.v-button.remove-all-tokens-button {
	background-image: none;
	background-color: transparent;
	padding: 5px;
	border-radius: 50%;
	color: #232323;
}

.v-button.remove-all-tokens-button:before {
	content: "";
}

.v-button.remove-all-tokens-button:hover {
	background-color: #dbdbdb;
}

.v-table-cell-wrapper .v-widget.tokenfield {
	padding: 2px 10px 5px;
}

.v-widget.tokenfield {
	line-height: 30px;
	padding: 10px 10px 5px;
	background-color: #f5f5f5;
}

.v-widget.tokenfield .v-button-link {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	background-color: #232323;
	border-radius: 7px;
	font-family: Roboto, sans-serif;
	padding-left: 10px;
	padding-right: 10px;
	text-transform: none;
	margin-right: 2px;
	text-decoration: none;
	height: 25px;
	line-height: 25px;
}

.v-widget.tokenfield .v-button-link:hover {
	opacity: 0.7;
}

.v-widget.tokenfield .v-button-link .v-button-caption {
	color: #fff;
	text-decoration: none;
	float: left;
	margin-left: 0;
	padding-left: 0px;
}

.v-widget.tokenfield .v-button-link .v-button-caption::first-letter {
	text-transform: none;
}

.v-widget.tokenfield .v-button-link .v-icon {
	color: #fff;
	float: right;
	line-height: 25px;
	padding-left: 15px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.v-widget.tokenfield .v-button-link-disabled {
	background-color: #666666;
}

.v-widget.tokenfield .v-button-emphasize, .v-widget.tokenfield .v-button-emphasize:focus {
	background-color: #EC0C6D;
}

.v-widget.tokenfield .v-filterselect {
	height: 25px;
	line-height: 25px;
	min-height: 25px;
}

.v-widget.tokenfield .v-filterselect .v-filterselect-input {
	border: none;
	margin: 0;
	height: 25px;
	padding: 0;
	min-height: 25px;
}

.v-widget.tokenfield .v-filterselect .v-filterselect-input:focus {
	background-color: transparent;
}

.v-widget.tokenfield .v-filterselect .v-filterselect-button {
	display: none;
}

.v-widget.tokenfield.tags-column {
	background-color: transparent;
	border: none;
}

.v-widget.tokenfield.tags-column .v-csslayout {
	white-space: nowrap;
	line-height: 25px;
}

.v-widget.tokenfield.tags-column .v-button-link {
	float: initial;
	white-space: nowrap;
}

.collapsible-composite {
	min-height: 50px;
	padding-left: 15px;
}

.collapsible-composite .v-button-toggle-button {
	width: 100%;
	text-align: left;
	background: none;
	background-color: #fff;
}

.collapsible-composite .toggle-content > .v-slot > .v-widget {
	display: flex;
	align-items: center;
}

.collapsible-composite .toggle-content > .v-slot > .v-widget .v-caption {
	margin-right: 20px;
	min-width: 100px;
}

.collapsible-composite .collapsed .toggle-button > .v-button-wrap::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e960";
	position: relative;
	top: 3px;
	margin-right: 12px;
	width: 20px;
	height: 20px;
	font-size: 20px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: -0.5px;
	color: #232323;
}

.collapsible-composite .toggle-button {
	background-color: #fff;
	color: #232323;
	padding: 0;
}

.collapsible-composite .toggle-button .v-button-wrap::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e95f";
	position: relative;
	top: 3px;
	margin-right: 12px;
	width: 20px;
	height: 20px;
	font-size: 20px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: -0.5px;
	color: #232323;
}

.collapsible-composite .toggle-button .v-button-caption {
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
	line-height: normal;
	color: #232323;
}

.collapsible-composite .v-button.toggle-button:active::after {
	background-color: rgba(255, 255, 255, 0.1);
}

.collapsible-composite .v-button.toggle-button:hover::after {
	background-color: rgba(255, 255, 255, 0.1);
}

.smallapp .smallapp-description-layout {
	min-height: 60px;
}

.smallapp .v-slot-smallapp-description-layout {
	background-color: #fff;
	border-bottom: 1px solid #dbdbdb;
	border-radius: 3px;
}

.smallapp .v-slot-smallapp-description-layout .v-csslayout-smallapp-description-layout {
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
	display: flex;
	align-items: flex-end;
}

.smallapp .v-slot-smallapp-description-layout .v-csslayout-smallapp-description-layout .v-label-smallapp-description {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
	line-height: 1.4;
	white-space: normal;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections {
	overflow: auto;
	background-color: #fff;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections  > .smallapp-section, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections  > .v-caption-smallapp-section {
	width: 100%;
	border-radius: 3px;
	border-bottom: 1px solid #dbdbdb;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .v-caption-smallapp-section > .v-captiontext, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-label.section-title {
	width: 100%;
	font-size: 26px;
	letter-spacing: -1.6px;
	line-height: 26px;
	padding-top: 24px;
	padding-bottom: 10px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections  > .v-caption-smallapp-section {
	padding-bottom: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section {
	padding-bottom: 30px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout-captioncell .v-caption {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout-contentcell .v-button, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout-contentcell .v-nativebutton, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout-contentcell .v-grid, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout-contentcell .v-table {
	margin-top: 20px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-label.v-label-fieldset-title, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout-contentcell .v-label.v-label-fieldset-title {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
	line-height: normal;
	padding-top: 20px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-label {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	white-space: normal;
	line-height: 1.6;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout-contentcell .v-label, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section.v-formlayout [class*="margin-top"] .v-formlayout-firstrow .v-formlayout-contentcell .v-label.v-label-fieldset-title {
	padding-top: 10px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .info-bubble {
	background-color: #3767d0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .warning-bubble {
	background-color: #ffb300;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .error-bubble {
	background-color: #f54200;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .info-bubble-inline .triangle, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .warning-bubble-inline .triangle, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .error-bubble-inline .triangle {
	display: none;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .info-bubble, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .warning-bubble, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .error-bubble {
	margin-top: 30px;
	border-radius: 30px;
	color: #fff;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .info-bubble .message-bubble-icon, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .warning-bubble .message-bubble-icon, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .error-bubble .message-bubble-icon {
	display: none;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .info-bubble  > span, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .warning-bubble  > span, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .error-bubble  > span {
	margin-right: 30px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .info-bubble  > span b, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .warning-bubble  > span b, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .error-bubble  > span b {
	padding-top: 20px;
	display: block;
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .info-bubble  > span div, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .warning-bubble  > span div, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .error-bubble  > span div {
	padding-top: 18px;
	padding-bottom: 20px;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
	line-height: 1.4;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-textarea-readonly {
	padding-left: 0;
	padding-right: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-button, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-nativebutton, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-table {
	margin-top: 30px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .linkfield .v-nativebutton {
	margin-top: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-slot-fieldset-title ~ .v-slot > .v-grid {
	margin-top: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-header .search-field {
	width: 100%;
	background-color: #fff;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-header .search-field .v-textfield {
	padding-left: 36px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-header .search-field .icon-search {
	position: absolute;
	left: 27px;
	font-size: 20px;
	top: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-header .v-textfield {
	background-color: #fff;
	margin-top: -20px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-header .v-grid-row:not(:last-child) th {
	border-bottom: 0;
	border-radius: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-tablewrapper {
	border: 1px solid #cacaca;
	background-color: white;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-scroller.v-grid-scroller-vertical {
	border-right: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-grid .v-grid-cell span[class^="icon-"] {
	font-size: 20px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-table {
	border: 1px solid #cacaca;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-table .v-table-row:last-child > .v-table-cell-content, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-table .v-table-row-odd:last-child > .v-table-cell-content {
	border: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section.v-tabsheet {
	padding-left: 0;
	padding-right: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section.v-tabsheet .v-magnolia-table.not-selectable .v-selection-cb {
	display: none;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-filterselect {
	width: 100%;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-filterselect-no-input [class*="input"] {
	background-color: #f5f5f5;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-shell-tabsheet-scroller {
	position: static !important;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form {
	width: 100%;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form .v-form-layout {
	width: 100%;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form .single-tab {
	display: none;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form fieldset {
	border: 0;
	padding: 0;
	position: relative;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form fieldset  > legend, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form fieldset  > hr {
	display: none;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form legend + .v-form-field-section.field-section-v-form-field {
	padding-top: 30px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form legend + .v-form-field-section.field-section-v-form-field .v-label-fieldset-title {
	padding-top: 0;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form .v-form-field-section.field-section-v-form-field {
	padding-top: 10px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form .v-form-field-label {
	position: absolute;
	width: 193px;
	text-align: right;
	line-height: 44px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form .v-form-field-container {
	padding-left: 213px;
	padding-right: 40px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form .v-form-field-container label {
	font-weight: 400;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form .v-form-field-container .help-icon {
	position: absolute;
	padding-top: 10px;
	padding-left: 10px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-magnolia-form ~ .v-csslayout-smallapp-actions, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-formlayout ~ .v-csslayout-smallapp-actions, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .section-title + .v-csslayout-smallapp-actions, .smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-slot-v-magnolia-form + .v-slot-action-wrapper {
	padding-left: 213px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-csslayout-smallapp-actions .v-button:not(:first-child) {
	margin-left: 20px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .result-wrapper .emptyplaceholder {
	max-width: 683px;
	margin-left: 213px;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 30px;
}

.smallapp .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .result-wrapper .emptyplaceholder .icon-no-results {
	font-size: 150px;
}

.shell[width-range~="1200px-1599px"] .smallapp .smallapp-description-layout {
	min-height: 100px;
}

.shell[width-range~="1200px-1599px"] .v-slot-smallapp-sections .v-csslayout-smallapp-sections .v-caption-smallapp-section > .v-captiontext, .shell[width-range~="1200px-1599px"] .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-label.section-title {
	font-size: 36px;
	letter-spacing: -2.2px;
	line-height: 36px;
	padding-top: 54px;
}

.shell[width-range~="1600px-"] .smallapp .smallapp-description-layout {
	min-height: 125px;
}

.shell[width-range~="1600px-"] .v-slot-smallapp-sections .v-csslayout-smallapp-sections .v-caption-smallapp-section > .v-captiontext, .shell[width-range~="1600px-"] .v-slot-smallapp-sections .v-csslayout-smallapp-sections .smallapp-section .v-label.section-title {
	font-size: 45px;
	letter-spacing: -2.7px;
	line-height: 45px;
	padding-top: 70px;
}

.v-table {
	border-radius: 3px;
}

.v-table .v-table-header-wrap {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	border: none;
	background-color: #f5f5f5;
}

.v-table .v-table-header-wrap .gwt-CheckBox {
	position: absolute;
	top: 16px;
	left: 13px;
}

.v-table.no-header-checkbox .v-table-header-wrap .gwt-CheckBox {
	visibility: hidden;
}

.v-table .v-table-header table {
	box-shadow: none;
}

.v-table .v-table-header td {
	background-color: #f5f5f5;
	border-radius: 3px;
	border: 1px solid #dbdbdb;
	border-right: none;
}

.v-table .v-table-header td:first-child {
	border-left: none;
	padding-left: 0;
}

.v-table .v-table-header td:last-child {
	border-right: 1px solid #dbdbdb;
}

.v-table .v-table-header .v-table-caption-container {
	border: 0;
	line-height: 35px;
	font-size: 12px;
	padding: 0 18px;
	min-width: 50px;
}

.v-table .v-table-table {
	background-color: #dbdbdb;
	border-spacing: 0;
	margin: 0;
	padding: 0;
	border: 0;
	line-height: 1.6;
	box-shadow: none;
}

.v-table .v-table-table td {
	border: none;
	border-bottom: 1px solid #dbdbdb;
	background: #fff;
}

.v-table .v-table-table td .v-table-cell-wrapper {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.v-table .v-table-table td:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.v-table .v-table-table td:first-child .v-table-cell-wrapper  > .v-selection-cb, .v-table .v-table-table td:first-child .v-table-cell-wrapper  > .v-treetable-treespacer-patched, .v-table .v-table-table td:first-child .v-table-cell-wrapper  > .v-table-icon-element {
	width: 20px;
	display: inline-block;
	padding: 0;
}

.v-table .v-table-table td:first-child .v-table-cell-wrapper  > .v-table-icon-element {
	position: relative;
	left: -0.25ex;
	padding-right: 0.5ex;
	padding-left: 20px;
}

.v-table .v-table-table td:last-child {
	border-right: 1px solid #dbdbdb;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	width: 100% !important;
}

.v-table .v-table-table .v-table-row, .v-table .v-table-table .v-table-row-odd {
	height: 35px;
	background-color: #dbdbdb;
}

.v-table .v-table-table .v-table-row:hover, .v-table .v-table-table .v-table-row-odd:hover {
	border-color: #ebebeb;
}

.v-table .v-table-table .v-table-row:hover td, .v-table .v-table-table .v-table-row-odd:hover td {
	background: #ebebeb;
}

.v-table .v-table-table .v-table-row.v-selected td, .v-table .v-table-table .v-table-row.v-selected:hover td, .v-table .v-table-table .v-table-row-odd.v-selected td, .v-table .v-table-table .v-table-row-odd.v-selected:hover td {
	color: #fff;
	background-color: #599900;
}

.v-table .v-table-table .v-table-row.v-selected td:last-child, .v-table .v-table-table .v-table-row.v-selected:hover td:last-child, .v-table .v-table-table .v-table-row-odd.v-selected td:last-child, .v-table .v-table-table .v-table-row-odd.v-selected:hover td:last-child {
	border-right: 1px solid #dbdbdb;
}

.v-table .v-table-table .v-table-row.v-selected .v-table-cell-content, .v-table .v-table-table .v-table-row.v-selected:hover .v-table-cell-content, .v-table .v-table-table .v-table-row-odd.v-selected .v-table-cell-content, .v-table .v-table-table .v-table-row-odd.v-selected:hover .v-table-cell-content {
	border-bottom-color: #dbdbdb;
	border-left-color: transparent;
}

.v-table .v-table-table .v-table-row.v-selected .icon-status-green:before, .v-table .v-table-table .v-table-row.v-selected:hover .icon-status-green:before, .v-table .v-table-table .v-table-row-odd.v-selected .icon-status-green:before, .v-table .v-table-table .v-table-row-odd.v-selected:hover .icon-status-green:before {
	-webkit-text-stroke: 2px #fff;
	text-stroke: 2px #fff;
	text-shadow: 0 0 1px #fff;
}

.v-table .v-table-table .v-table-row.v-selected .icon-status-green:after, .v-table .v-table-table .v-table-row.v-selected:hover .icon-status-green:after, .v-table .v-table-table .v-table-row-odd.v-selected .icon-status-green:after, .v-table .v-table-table .v-table-row-odd.v-selected:hover .icon-status-green:after {
	content: "\e99a";
	position: relative;
	margin-left: -1em;
	color: #599900;
}

.v-table .v-table-table .v-table-row td, .v-table .v-table-table .v-table-row-odd td {
	overflow: hidden;
}

.v-table .v-table-table .v-table-row td .v-table-cell-wrapper input[type="text"], .v-table .v-table-table .v-table-row-odd td .v-table-cell-wrapper input[type="text"] {
	margin: 2px -6px;
	padding: 11px 32px 8px 10px;
}

.v-table .v-table-table .v-table-cell-wrapper {
	height: 35px;
	line-height: 35px;
	padding: 0;
}

.v-table .v-table-table .v-table-cell-content {
	padding: 0 11px 0 18px;
}

.v-table .v-table-table .v-table-cell-content:first-child {
	border-left: none;
}

.v-table .v-table-table .v-table-cell-content:last-child {
	padding-left: 23px;
}

.v-table .v-table-table .v-table-cell-content .v-table-icon-element {
	display: inline-block;
	line-height: 100%;
	vertical-align: middle;
	font-size: 20px;
}

.v-table .v-table-table .v-table-cell-content .v-table-icon-element.icon-node-content:before {
	font-size: 18px;
	padding-left: 5px;
	padding-right: 5px;
}

.v-table .v-table-table .v-table-cell-content .v-table-icon-element.icon-file-image:before, .v-table .v-table-table .v-table-cell-content .v-table-icon-element.icon-file-video:before {
	margin-right: 24px;
}

.v-table .v-table-table .v-table-cell-content .v-table-icon-element .inline-thumbnail {
	width: auto;
	height: auto;
	max-width: 20px;
	max-height: 30px;
}

.v-table .v-scrollable::-webkit-scrollbar {
	width: 5px;
	background-color: transparent;
	margin-right: -5px;
	border: none;
}

.v-table .v-scrollable::-webkit-scrollbar-track {
	background-color: transparent;
}

.v-table .v-scrollable::-webkit-scrollbar-thumb {
	opacity: 0.4;
	border-radius: 2.5px;
	background-color: #969696;
}

.v-table .v-scrollable.v-table-body-wrapper.v-table-body {
	border: none;
}

.v-table .gwt-CheckBox {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.v-table .gwt-CheckBox.v-has-width label {
	white-space: normal;
}

:root .v-table .gwt-CheckBox {
	padding-left: 21px;
}

:root .v-table .gwt-CheckBox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .v-table .gwt-CheckBox > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .v-table .gwt-CheckBox > input:focus ~ label:before {
	border-color: #232323;
	
	
}

:root .v-table .gwt-CheckBox > input ~ label:before, :root .v-table .gwt-CheckBox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1px;
	font-size: 11px;
	text-align: center;
}

:root .v-table .gwt-CheckBox > input ~ label:before {
	height: 16px;
	padding: 0 7px;
	color: #1a1a1a;
	font-weight: 400;
	
	
	border-radius: 1px;
	border: 1px solid #b2b2b2;
	background: #fff;
	
	
	padding: 0;
	height: 16px;
}

:root .v-table .gwt-CheckBox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	transition: color 100ms;
}

:root .v-table .gwt-CheckBox > input:active ~ label:after {
	background-color: rgba(128, 128, 128, 0.2);
}

:root .v-table .gwt-CheckBox > input:checked ~ label:after {
	color: #fff;
}

.v-table .gwt-CheckBox > .v-icon, .v-table .gwt-CheckBox > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.v-table .gwt-CheckBox.v-disabled  > label, .v-table .gwt-CheckBox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-table .gwt-CheckBox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .v-table .gwt-CheckBox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.v-table .gwt-CheckBox.v-readonly  > label, .v-table .gwt-CheckBox.v-readonly  > .v-icon {
	cursor: default;
}

.v-table .gwt-CheckBox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .v-table .gwt-CheckBox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .v-table .gwt-CheckBox.v-readonly > input ~ label:after {
	opacity: 0.4;
	filter: alpha(opacity=40) ;
}

.v-table .gwt-CheckBox label {
	text-indent: 10px;
}

.v-table .gwt-CheckBox  > input[type=checkbox]  ~ label:before, .v-table .gwt-CheckBox  > input[type=checkbox]  ~ label:after {
	width: 18px;
	height: 18px;
}

.v-table .gwt-CheckBox  > input[type=checkbox]  ~ label:before {
	border: none;
	background-color: #f5f5f5;
}

.v-table .gwt-CheckBox  > input[type=checkbox]  ~ label:after {
	content: "";
}

.v-table .gwt-CheckBox  > input[type=checkbox]:checked  ~ label:after {
	display: block;
	left: 7px;
	top: 3px;
	width: 7px;
	height: 13px;
	border: solid #232323;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.v-table .v-treetable-treespacer-patched.v-treetable-node-open, .v-table .v-treetable-treespacer-patched.v-treetable-node-closed {
	vertical-align: middle;
	margin-top: -2px;
}

.v-table .v-treetable-treespacer-patched.v-treetable-node-open[class^="icon-"], .v-table .v-treetable-treespacer-patched.v-treetable-node-open[class*=" icon-"], .v-table .v-treetable-treespacer-patched.v-treetable-node-closed[class^="icon-"], .v-table .v-treetable-treespacer-patched.v-treetable-node-closed[class*=" icon-"] {
	text-align: right;
}

.v-table .v-treetable-treespacer-patched.v-treetable-node-open[class^="icon-"]:before, .v-table .v-treetable-treespacer-patched.v-treetable-node-open[class*=" icon-"]:before, .v-table .v-treetable-treespacer-patched.v-treetable-node-closed[class^="icon-"]:before, .v-table .v-treetable-treespacer-patched.v-treetable-node-closed[class*=" icon-"]:before {
	font-family: "MagnoliaIcons" !important;
	font-size: 20px;
}

.v-table .hidden-for-aria {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.v-table .v-table-focus {
	outline: none;
}

.datetimefield .datefield {
	float: left;
	padding-right: 5px;
}

.datetimefield .timefield {
	display: block;
	text-align: right;
}

.v-table.v-treetable .v-table-table td:first-child .v-table-cell-wrapper > .v-table-icon-element {
	padding-left: 0px;
}

.v-treetable td:last-child, .v-drag-element td:last-child {
	width: 100% !important;
}

.v-treetable .v-treetable [class*="caption-container"], .v-drag-element .v-treetable [class*="caption-container"] {
	padding-left: 12px;
}

.v-treetable .v-table-header .v-table-caption-container, .v-drag-element .v-table-header .v-table-caption-container {
	min-width: unset;
}

.v-table-drag .v-table-body {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.v-table-row-drag-middle td[class="v-table-cell-content"] {
	background-color: #ebebeb;
	border: 1px solid #ebebeb;
	border-top: none;
	border-right: none;
}

.v-table-row-drag-top td[class="v-table-cell-content"] {
	border-top: 3px solid #232323;
}

.v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -3px;
}

.v-table-row-drag-bottom td[class="v-table-cell-content"] {
	border-bottom: 3px solid #232323;
}

.v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.v-table-row.v-drag-element, .v-table-row-odd.v-drag-element {
	background-color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
}

.v-drag-element td[class="v-table-cell-content"] {
	border-left-color: transparent;
}

.datetimefield .datefield {
	float: left;
	padding-right: 5px;
}

.datetimefield .timefield {
	display: block;
	text-align: right;
}

.v-table.v-treetable .v-table-table td:first-child .v-table-cell-wrapper > .v-table-icon-element {
	padding-left: 0px;
}

.v-ckeditortextfield .cke_top {
	border: 1px solid #dbdbdb;
}

.v-ckeditortextfield .cke_chrome {
	border: none;
}

.v-ckeditortextfield .cke_contents {
	border-left: 1px solid #f5f5f5;
	border-right: 1px solid #f5f5f5;
	border-bottom: 1px solid #f5f5f5;
}

.v-ckeditortextfield .cke_contents:hover {
	border-color: #dbdbdb;
}

.v-ckeditortextfield .cke_chrome.cke_focus .cke_contents {
	border-color: black;
}

.v-ckeditortextfield .cke_chrome.cke_focus .cke_top {
	border-top-color: #232323;
	border-left-color: #232323;
	border-right-color: #232323;
}

.v-ckeditortextfield.error {
	border: 1px solid #f54200;
}

.v-ckeditortextfield.v-disabled * {
	pointer-events: none;
	cursor: none;
}

.v-ckeditortextfield.v-disabled .cke_button_icon {
	opacity: 0.3;
}

.choose-dialog {
	height: calc(295px + 75px + 75px) !important;
}

.choose-dialog .v-slot-mgnl-workbench-thumbnail-view .thumbnail-scroller {
	height: calc(calc(295px + 75px + 75px) - 45px - 30px - 30px) !important;
}

.choose-dialog .v-panel {
	border: none;
	border-radius: 3px;
}

.choose-dialog .v-table .v-table-header td:first-child span {
	padding-left: 5px;
}

.choose-dialog .v-table .v-scrollable.v-table-body-wrapper.v-table-body, .choose-dialog .thumbnail-scroller {
	height: calc(295px + 75px + 75px);
}

.choose-dialog .toolbar {
	border-radius: 3px;
	background-color: #fff;
	padding: 28px 15px 5px 15px;
	height: 60px;
	border-top-left-radius: 0;
}

.choose-dialog .toolbar .heading-1 {
	margin-right: 50px;
	font-size: 26px;
	line-height: 26px;
	letter-spacing: -1.6px;
}

.choose-dialog .toolbar .content-tool {
	margin-right: -11px;
	line-height: 1;
}

.choose-dialog .toolbar .content-tool .v-spacing {
	width: 20px;
}

.choose-dialog .toolbar .content-tool .v-filterselect [class*="input"] {
	border-left: 0;
}

.choose-dialog .toolbar .v-textfield {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.choose-dialog .toolbar .v-textfield::placeholder, .choose-dialog .toolbar .v-textfield.v-textfield-prompt, .choose-dialog .toolbar .v-textfield.prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.choose-dialog .toolbar .v-textfield[class*="prompt"]> {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.choose-dialog .toolbar .v-textfield:not(.v-disabled):not(.v-readonly):hover:not(:focus) {
	border-color: #dbdbdb;
}

.choose-dialog .toolbar .v-textfield input {
	min-height: 15px;
	max-height: 15px;
}

.choose-dialog .toolbar .v-filterselect [class*="input"] {
	border: transparent;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	background-color: #fff;
	min-height: 20px;
	max-height: 20px;
	padding: 5px 32px 5px 14px;
	line-height: 1;
}

.choose-dialog .toolbar .v-filterselect [class*="input"]::placeholder, .choose-dialog .toolbar .v-filterselect [class*="input"].v-textfield-prompt, .choose-dialog .toolbar .v-filterselect [class*="input"].prompt {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-style: normal;
	color: #888;
}

.choose-dialog .toolbar .v-filterselect[class*="prompt"]> [class*="input"] {
	font-style: italic;
	color: #232323;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
}

.choose-dialog .toolbar .v-filterselect:not(.v-disabled):not(.v-readonly) [class*="input"]:hover:not(:focus) {
	border-color: #dbdbdb;
}

.choose-dialog .toolbar .v-filterselect {
	min-height: 15px;
	max-height: 15px;
}

.choose-dialog .toolbar .v-filterselect [class$="button"] {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	right: 10px;
	top: -2px;
}

.choose-dialog .toolbar .v-filterselect [class$="button"]:not(.v-disabled):hover, .choose-dialog .toolbar .v-filterselect [class$="button"]:not(.v-disabled):focus, .choose-dialog .toolbar .v-filterselect [class$="button"]:not(.v-disabled):active {
	background-position: right bottom;
}

.choose-dialog .toolbar .v-filterselect [class$="button"]:not(.v-disabled):hover, .choose-dialog .toolbar .v-filterselect [class$="button"]:not(.v-disabled):focus, .choose-dialog .toolbar .v-filterselect [class$="button"]:not(.v-disabled):active, .choose-dialog .toolbar .v-filterselect [class$="button"].active:not(.v-disabled) {
	background-position: right bottom;
}

.choose-dialog .toolbar .v-filterselect [class$="button"] .v-icon {
	font-size: inherit;
}

.choose-dialog .toolbar .v-filterselect [class$="button"]::before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e958";
	font-size: 22px;
	width: unset;
}

.choose-dialog .toolbar .v-filterselect input {
	min-height: 15px;
	max-height: 15px;
}

.choose-dialog .toolbar .caption-label {
	padding-left: 9px;
}

.choose-dialog .toolbar .v-filterselect {
	min-height: 26px;
	max-height: 26px;
	margin-right: 10px;
}

.choose-dialog .toolbar .v-filterselect [class*="input"] {
	min-height: 26px;
	max-height: 26px;
}

.choose-dialog .toolbar .searchbox {
	position: relative;
}

.choose-dialog .toolbar .searchbox.has-content .searchbox-clearbutton {
	display: inline;
}

.choose-dialog .toolbar .searchbox .searchbox-icon {
	position: absolute;
	left: 0;
}

.choose-dialog .toolbar .searchbox input[type=text] {
	padding: 0 0 0 32px;
	border: none;
	background-color: transparent;
	min-height: 25px;
}

.choose-dialog .toolbar .searchbox .searchbox-clearbutton {
	position: absolute;
	background-color: transparent;
	color: #383838;
	right: -20px;
	display: none;
}

.choose-dialog .toolbar .searchbox .searchbox-clearbutton:before {
	margin-top: 16px;
}

.choose-dialog .toolbar .searchbox .searchbox-clearbutton:hover:after {
	background-color: transparent;
}

.choose-dialog .toolbar .tools > .v-spacing {
	height: 27px !important;
	background-color: #d8d8d8;
	margin-right: 10px;
	margin-left: 10px;
}

.choose-dialog .toolbar .tools .view-modes .v-spacing {
	width: 4px;
}

.choose-dialog .toolbar .tools .v-slot-content-tool {
	height: 27px;
	border-left: 1px solid #d8d8d8;
}

.choose-dialog .toolbar {
	padding: 10px 15px;
	height: 45px;
	background-color: #fff;
}

.choose-dialog .toolbar .tools > .v-spacing {
	height: 0 !important;
}

.choose-dialog .toolbar .searchbox {
	visibility: visible;
}

.choose-dialog .toolbar .searchbox .searchbox-clearbutton {
	height: 0;
	top: -10px;
}

.choose-dialog .toolbar .extension-views .full-text-search {
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	padding: 0 3px;
	margin-right: 3px;
}

.choose-dialog .toolbar .extension-views .full-text-search .v-textfield {
	border-left: none;
	border-right: none;
	padding: 5px 0 0;
	vertical-align: bottom;
}

.choose-dialog .toolbar .extension-views .full-text-search .v-spacing {
	width: 3px;
}

.choose-dialog .toolbar .extension-views .full-text-search .clear-search-button {
	height: 50%;
	background-image: none;
	background-color: transparent;
	padding: 5px;
	border-radius: 50%;
	color: #232323;
}

.choose-dialog .toolbar .extension-views .full-text-search .clear-search-button:before {
	content: "";
}

.choose-dialog .toolbar .extension-views .full-text-search .clear-search-button:hover {
	background-color: #dbdbdb;
}

.choose-dialog .toolbar .v-slot-extension-views  + .v-spacing {
	display: none;
}

.choose-dialog .v-actionbar .v-actionbar-section {
	margin-top: 0;
}

.choose-dialog .v-actionbar .v-actionbar-section.preview {
	top: 0;
}

.choose-dialog .v-actionbar.section-actionbar-compatibility {
	height: 527px;
}

.image-media-field .media-wrapper {
	overflow: auto;
}

.image-media-field .media-wrapper .scale-to-fit {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.v-slider {
	width: 120px;
}

.v-slider-base {
	height: 1px;
	background: #232323;
}

.v-slider-base:after, .v-slider-base:before {
	border-color: #232323;
}

.slider-panel {
	display: flex;
	justify-content: center;
	background-color: #fff;
	border-top: 1px solid #dbdbdb;
	border-radius: 3px;
}

.slider-panel button {
	border: none;
	padding: 1px 4px 2px;
	background-color: Transparent;
	background-repeat: no-repeat;
	cursor: pointer;
	overflow: hidden;
	outline: none;
}

.slider-panel button span {
	vertical-align: middle;
}

.slider-panel button:focus {
	outline: none;
	font-weight: 900;
}

.slider-panel button:hover {
	font-weight: 900;
	background: #cacaca;
	border-radius: 30px;
}

.v-slider-handle:before, .v-slider-handle:after {
	width: 7px;
	height: 7px;
	margin-top: 11px;
	margin-left: 0px;
	border-color: #232323;
}

.v-slider, .v-slider-base, .v-slider-handle {
	cursor: ew-resize;
}

.thumbnail-scroller {
	border-top: 1px solid #dbdbdb;
	border-radius: 3px;
	background-color: #dbdbdb;
}

.thumbnail-viewport {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.thumbnail {
	margin: 0 1px 1px 0;
	padding: 0;
	background-color: #fff;
	border-radius: 3px;
	vertical-align: bottom;
	position: relative;
	flex-grow: 1;
}

.thumbnail .thumbnail-image {
	padding-top: 10%;
	padding-bottom: 6%;
	max-width: 70%;
	max-height: 60%;
	margin: 0 auto;
}

.thumbnail.selected {
	background-color: #599900;
}

.thumbnail.selected span {
	color: #fff;
}

.thumbnail:not(.selected):hover {
	background-color: #f5f5f5;
}

.thumbnail span {
	font-size: 15px;
	display: block;
	position: absolute;
	color: #232323;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	max-width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: 10%;
}

.thumbnail.caption-hidden {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.thumbnail.caption-hidden .thumbnail-image {
	padding-top: 12%;
	max-width: 80%;
	max-height: 70%;
}

.shell[width-range~="1200px-"] .content-editor-panel .collapsible-composite .toggle-content .v-has-caption .v-widget {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .content-editor-panel .v-form-field-section .v-form-field:not(.collapsible-composite) {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .content-editor-panel .outline-form .title {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .content-editor-panel .outline-form .lead-text {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .content-editor-body .text-block .content {
	max-width: 683px;
}

.shell[width-range~="1200px-"] .content-editor-body .text-block #toolbar-container {
	left: 440px;
}

.shell[width-range~="1200px-"] .content-editor-body .v-form-layout {
	width: 897px !important;
}

.shell[width-range~="1200px-1599px"] .content-editor-panel .header {
	min-height: 100px;
	padding: 53px 15px 7px 15px;
}

.shell[width-range~="1200px-1599px"] .content-editor-panel .header .heading-1 {
	font-size: 36px;
	line-height: 40px;
	letter-spacing: -2.2px;
}

.shell[width-range~="1200px-1599px"] .content-editor-panel .footer {
	height: 55px;
}

.shell[width-range~="1200px-1599px"] .content-editor-panel .footer .v-button {
	height: 35px;
	font-size: 14px;
}

.shell[width-range~="1600px-"] .content-editor-panel .header {
	min-height: 125px;
	padding: 60px 15px 10px 15px;
}

.shell[width-range~="1600px-"] .content-editor-panel .header .heading-1 {
	font-size: 45px;
	letter-spacing: -2.7px;
	line-height: 55px;
}

.shell[width-range~="1600px-"] .content-editor-panel .footer {
	height: 75px;
}

.shell[width-range~="1600px-"] .content-editor-panel .footer .v-button {
	height: 45px;
	font-size: 14px;
}

.content-editor-panel .v-slot-header {
	background-color: #dbdbdb;
}

.content-editor-panel .v-panel {
	border: none;
	background-color: #dbdbdb;
}

.content-editor-panel .v-panel .v-panel-content {
	background-color: #fff;
}

.content-editor-panel .content-editor-root-layout .v-panel-content.v-scrollable .v-verticallayout.v-widget {
	overflow: unset;
}

.content-editor-panel .content-editor-root-layout .v-spacing {
	height: 1px;
}

.content-editor-panel .header {
	border-radius: 3px;
	background-color: #fff;
	min-height: 60px;
	line-height: 26px;
	padding: 28px 15px 5px 15px;
}

.content-editor-panel .header .v-has-caption {
	white-space: nowrap;
}

.content-editor-panel .header .v-has-caption .heading-1, .content-editor-panel .header .v-has-caption .v-icon {
	vertical-align: middle;
}

.content-editor-panel .header .v-caption {
	display: inline-block;
	padding-bottom: 0;
}

.content-editor-panel .header .heading-1 {
	font-size: 26px;
	white-space: normal;
	letter-spacing: -1.6px;
}

.content-editor-panel .header .v-icon {
	font-size: 26px;
}

.content-editor-panel .field-section-collapsible-composite > .v-form-field-container {
	max-width: 100%;
}

.content-editor-panel .collapsible-composite {
	background-color: #fff;
	border: 1px solid #dbdbdb;
	border-radius: 3px;
	margin-top: -1px;
}

.content-editor-panel .collapsible-composite .toggle-button:hover, .content-editor-panel .collapsible-composite .toggle-button:focus, .content-editor-panel .collapsible-composite .toggle-button:active {
	background-color: transparent;
}

.content-editor-panel .collapsible-composite .toggle-content {
	padding-top: 20px;
	padding-bottom: 30px;
}

.content-editor-panel .collapsible-composite .toggle-content > .v-slot {
	padding-top: 10px;
}

.content-editor-panel .collapsible-composite .toggle-content .v-slot .v-widget {
	min-height: 45px;
}

.content-editor-panel .collapsible-composite .toggle-content .v-slot .v-caption {
	margin-right: 20px;
	width: 193px;
	height: 18px;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	line-height: normal;
	text-align: right;
	color: #232323;
}

.content-editor-panel .collapsible-composite .toggle-content .v-has-caption .v-widget {
	max-width: 455px;
}

.content-editor-panel fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

.content-editor-panel hr {
	display: none;
}

.content-editor-panel .help-icon {
	display: none;
}

.content-editor-panel .v-datefield {
	width: 100%;
	min-height: 45px;
}

.content-editor-panel .v-form-field-section {
	display: flex;
	flex-wrap: wrap;
}

.content-editor-panel .v-form-field-section .v-form-field-container {
	flex: 1;
	min-height: 45px;
}

.content-editor-panel .v-form-field-section .v-form-field-container .switchablefield .linkfield .v-slot-linkfield {
	padding-bottom: 10px;
}

.content-editor-panel .v-form-field-section .v-form-field-label {
	padding-top: 15px;
	margin-right: 20px;
	flex: 0 0 193px;
	height: 18px;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	line-height: normal;
	text-align: right;
	color: #232323;
}

.content-editor-panel .v-form-field-section .v-form-field:not(.collapsible-composite) {
	max-width: 455px;
}

.content-editor-panel .requiredfield {
	float: right;
	padding-left: 5px;
}

.content-editor-panel .validation-message-inline {
	display: none;
}

.content-editor-panel .action-validation {
	display: none;
}

.content-editor-panel .v-caption-linkfield {
	align-self: flex-start;
}

.content-editor-panel .v-slot-done {
	padding-bottom: 16px;
}

.content-editor-panel .v-slot-done .done .v-horizontallayout {
	width: 100%;
}

.content-editor-panel .v-slot-done .done .v-horizontallayout .file-preview-area {
	width: 100% !important;
	height: 100% !important;
}

.content-editor-panel .v-slot-done .done .v-horizontallayout .file-preview-area img {
	margin: 30px 0;
}

.content-editor-panel .file-details {
	padding-bottom: 0;
}

.content-editor-panel .file-details .v-formlayout-firstrow {
	display: none;
}

.content-editor-panel .linkfield .v-verticallayout .v-slot-horizontal-field:first-of-type {
	margin-top: 10px;
}

.content-editor-panel .outline-form {
	width: 100%;
}

.content-editor-panel .outline-form textarea {
	min-height: 45px;
}

.content-editor-panel .outline-form textarea.title {
	max-width: 455px;
	padding: 8px 33px 3px 10px;
	min-height: 69px;
	font-family: Roboto, sans-serif;
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1.2px;
	line-height: normal;
}

.content-editor-panel .outline-form textarea.title[class*="prompt"] {
	opacity: 0.5;
	color: #232323;
}

.content-editor-panel .outline-form textarea.lead-text {
	max-width: 455px;
	padding: 9px 30px 6px 10px;
	min-height: 45px;
	font-family: Roboto, sans-serif;
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
	line-height: normal;
}

.content-editor-panel .outline-form textarea.lead-text[class*="prompt"] {
	opacity: 0.5;
	color: #232323;
}

.content-editor-panel .outline-form .field-section-title {
	background-color: #fff;
	padding-top: 30px;
	border-top: 1px solid #dbdbdb;
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
	border-radius: 3px;
	margin-top: -1px;
	padding-left: 15px;
}

.content-editor-panel .outline-form .field-section-lead-text {
	background-color: #fff;
	padding-top: 10px;
	padding-bottom: 30px;
	border-bottom: 1px solid #dbdbdb;
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
	border-radius: 3px;
	padding-left: 15px;
}

.content-editor-panel .outline-form .field-section-collapsible-composite .v-form-field-label {
	display: none;
}

.content-editor-panel .v-slot-footer::before {
	display: none;
}

.content-editor-panel .v-slot-footer .footer {
	height: 35px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background-color: #fff;
	border-radius: 3px;
}

.content-editor-panel .v-slot-footer .footer .action-button {
	margin-right: 10px;
}

.content-editor-panel .v-slot-footer .footer .action_close {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.content-editor-panel .v-slot-footer .footer .action_close:not(.v-disabled):hover, .content-editor-panel .v-slot-footer .footer .action_close:not(.v-disabled):focus, .content-editor-panel .v-slot-footer .footer .action_close:not(.v-disabled):active {
	background-position: right bottom;
}

.content-editor-panel .v-slot-footer .footer .action_save {
	background-color: #599900;
	border-radius: 30px;
	background-color: #599900;
	background-image: -webkit-linear-gradient(left, #599900, #4b7b08);
	background-image: linear-gradient(to right,#599900, #4b7b08);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.content-editor-panel .v-slot-footer .footer .action_save:not(.v-disabled):hover, .content-editor-panel .v-slot-footer .footer .action_save:not(.v-disabled):focus, .content-editor-panel .v-slot-footer .footer .action_save:not(.v-disabled):active {
	background-position: right bottom;
}

.content-editor-panel .v-slot-footer .footer .action_saveAndPublish {
	background-color: #599900;
	border-radius: 30px;
	background-color: #599900;
	background-image: -webkit-linear-gradient(left, #599900, #4b7b08);
	background-image: linear-gradient(to right,#599900, #4b7b08);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.content-editor-panel .v-slot-footer .footer .action_saveAndPublish:not(.v-disabled):hover, .content-editor-panel .v-slot-footer .footer .action_saveAndPublish:not(.v-disabled):focus, .content-editor-panel .v-slot-footer .footer .action_saveAndPublish:not(.v-disabled):active {
	background-position: right bottom;
}

.content-editor-panel .v-slot-footer .footer .v-button {
	height: 25px;
	font-size: 12px;
}

.v-slot-content-editor-body {
	background-color: #fff;
	border-radius: 3px;
}

.v-slot-content-editor-body .content-editor-body {
	width: 100%;
	outline: none;
	background-color: #dbdbdb;
}

.v-slot-content-editor-body .content-editor-body .content-block {
	padding: 30px 15px;
	display: flex;
	align-items: end;
	background-color: #fff;
	margin-bottom: 1px;
	border-radius: 3px;
	position: relative;
}

.v-slot-content-editor-body .content-editor-body .content-block:focus {
	outline: none;
}

.v-slot-content-editor-body .content-editor-body .content-block .remove-button, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button, .v-slot-content-editor-body .content-editor-body .content-block .add-block-control {
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.v-slot-content-editor-body .content-editor-body .content-block .remove-button, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button {
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
}

.v-slot-content-editor-body .content-editor-body .content-block .remove-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .remove-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .remove-button:not(.v-disabled):active, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button:not(.v-disabled):active, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button:not(.v-disabled):active, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button:not(.v-disabled):active {
	background-position: right bottom;
}

.v-slot-content-editor-body .content-editor-body .content-block .remove-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .remove-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .remove-button:not(.v-disabled):active, .v-slot-content-editor-body .content-editor-body .content-block .remove-button.active:not(.v-disabled), .v-slot-content-editor-body .content-editor-body .content-block .moveup-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button:not(.v-disabled):active, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button.active:not(.v-disabled), .v-slot-content-editor-body .content-editor-body .content-block .movedown-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button:not(.v-disabled):active, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button.active:not(.v-disabled), .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button:not(.v-disabled):hover, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button:not(.v-disabled):focus, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button:not(.v-disabled):active, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button.active:not(.v-disabled) {
	background-position: right bottom;
}

.v-slot-content-editor-body .content-editor-body .content-block .remove-button .v-icon, .v-slot-content-editor-body .content-editor-body .content-block .moveup-button .v-icon, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button .v-icon, .v-slot-content-editor-body .content-editor-body .content-block .block-picker-button .v-icon {
	font-size: inherit;
}

.v-slot-content-editor-body .content-editor-body .content-block .moveup-button {
	margin-left: 50px;
}

.v-slot-content-editor-body .content-editor-body .content-block .remove-button, .v-slot-content-editor-body .content-editor-body .content-block .movedown-button, .v-slot-content-editor-body .content-editor-body .content-block .add-block-control {
	margin-left: 5px;
}

.v-slot-content-editor-body .content-editor-body .content-block .add-block-control {
	position: relative;
}

.v-slot-content-editor-body .content-editor-body .content-block .add-block-control .inline-picker-button {
	padding-right: 50px;
}

.v-slot-content-editor-body .content-editor-body .component-block .field-section-switchablefield {
	align-self: flex-start;
	margin-top: 16px;
}

.v-slot-content-editor-body .content-editor-body .component-block .field-section-switchablefield > .v-form-field-label {
	align-self: flex-start;
	margin-top: 10px;
}

.v-slot-content-editor-body .content-editor-body .text-block {
	-moz-user-select: all;
	-webkit-user-select: auto;
}

.v-slot-content-editor-body .content-editor-body .text-block:hover {
	border-color: #dbdbdb;
}

.v-slot-content-editor-body .content-editor-body .text-block .content {
	outline: none;
	max-width: 455px;
	margin-left: 213px;
	color: #232323;
	line-height: 1.6;
	padding: 10px 32px 9px 9px;
	border: 1px solid transparent;
	width: 100%;
	background-color: #f5f5f5;
	box-sizing: border-box;
}

.v-slot-content-editor-body .content-editor-body .text-block .content:focus {
	border-color: #232323;
}

.v-slot-content-editor-body .content-editor-body .text-block .content:empty:after {
	content: attr(data-placeholder);
}

.v-slot-content-editor-body .content-editor-body .text-block .content.cke_focus {
	background-color: #fff;
}

.v-slot-content-editor-body .content-editor-body .text-block .content  > * {
	margin: 0;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container {
	z-index: 10;
	height: 0;
	opacity: 0.4;
	position: absolute;
	top: 0;
	left: 326px;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke .cke_top {
	border: 1px solid #dbdbdb;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke .cke_chrome {
	border: none;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke .cke_contents {
	border-left: 1px solid #f5f5f5;
	border-right: 1px solid #f5f5f5;
	border-bottom: 1px solid #f5f5f5;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke .cke_contents:hover {
	border-color: #dbdbdb;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke .cke_chrome.cke_focus .cke_contents {
	border-color: black;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke .cke_chrome.cke_focus .cke_top {
	border-top-color: #232323;
	border-left-color: #232323;
	border-right-color: #232323;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke.error {
	border: 1px solid #f54200;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke.v-disabled * {
	pointer-events: none;
	cursor: none;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke.v-disabled .cke_button_icon {
	opacity: 0.3;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container:hover {
	opacity: 1;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke_button__h2 .cke_button__h2_icon {
	background: url(../resurface/img/hidpi_32_header_format_icons.png) no-repeat 0 0px;
	background-size: 16px;
}

.v-slot-content-editor-body .content-editor-body .text-block #toolbar-container .cke_button__h3 .cke_button__h3_icon {
	background: url(../resurface/img/hidpi_32_header_format_icons.png) no-repeat 0 -24px;
	background-size: 16px;
}

.v-slot-content-editor-body .content-editor-body .v-form-layout {
	width: 668px !important;
}

.v-slot-content-editor-body .content-editor-body fieldset .v-form-field-section:not(:first-of-type) {
	margin-top: 10px;
}

.peek-field .link-badge {
	background-color: #f5f5f5;
	padding: 30px;
	margin-bottom: 10px;
}

.peek-field .link-badge .domain {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	margin-top: 6px;
}

.peek-field .link-badge .title {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 15px;
}

.peek-field .link-badge .title h3 {
	margin: 0px;
}

.peek-field .link-badge .description {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 6px;
}

.peek-field .link-badge .v-spacing {
	width: 20px;
}

.peek-field .link-badge img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.peek-field input[type="text"] {
	background-color: #f5f5f5;
}

.v-formlayout-contentcell .v-caption-on-top .force-show-field-captions-in-compatibility-apps .v-caption {
	display: inline-block;
}

.help-button-field-layout .help-button-placeholder {
	opacity: 0;
}

.help-button-field-layout .textcodefield {
	height: 500px;
}

.help-button-field-layout .textcodefield.error {
	border: 1px solid #f54200;
}

.declarative-layout {
	overflow: auto;
	padding: 0;
}

.declarative-layout .error-message {
	width: 100%;
	background: #fff;
}

.declarative-layout > .v-expand > .v-slot {
	height: unset !important;
}

.declarative-layout .v-formlayout {
	padding-bottom: 20px;
}

.declarative-layout .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 0;
}

.declarative-layout .v-margin-bottom {
	padding-bottom: 0;
}

.declarative-layout .v-margin-top {
	padding-top: 0;
}

.declarative-layout .separator {
	width: 100%;
	height: 0;
	padding: 0;
	border-bottom: 1px solid #dbdbdb;
}

.declarative-layout .container {
	padding: 0;
	margin-bottom: 1px;
	background: #fff;
	border-radius: 3px;
}

.declarative-layout .group {
	width: 100%;
	padding: 0;
	margin-bottom: 1px;
	background: #fff;
	border-radius: 3px;
}

.declarative-layout .group .caption-label {
	padding: 10px 0 0 10px;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.3px;
	font-size: 15px;
	line-height: normal;
	color: #232323;
}

.declarative-layout .group .v-verticallayout {
	padding: 0;
}

.v-button-help-button {
	margin-left: 14px;
	vertical-align: middle;
	color: #232323;
	background-color: transparent;
}

.v-button-help-button:focus {
	background-position: unset !important;
}

.v-button-help-button:hover {
	background-position: right bottom !important;
}

.v-contexthelp-bubble .popupContent:before {
	content: " ";
	border: 6px solid;
	border-top-color: transparent;
	border-bottom-color: transparent;
	margin-top: -6px;
	top: 50%;
	position: absolute;
}

.v-contexthelp-bubble.right .popupContent:before {
	border-left-color: transparent;
	right: 100%;
	margin-left: 10px;
}

.v-contexthelp-bubble.left .popupContent:before {
	border-right-color: transparent;
	left: 100%;
	margin-right: 10px;
}

.form-field-layout .v-slot-hide-caption > .v-has-caption > .v-caption {
	display: none;
}

.form-field-layout .v-select-optiongroup.error {
	border: 1px solid #f54200;
}

.v-slot-validation-display {
	line-height: 150%;
	padding-top: 6px;
}

.validation-display {
	border-radius: 30px;
	border-width: 0;
	background-color: #f54200;
	color: #fff;
	padding: 13px 18px 11px 18px;
}

.access-control-field {
	margin-top: 8px;
}

.access-control-field .path-chooser {
	width: 100%;
	display: flex;
}

.access-control-field .path-chooser .v-slot:first-child {
	display: flex;
	flex-grow: 1;
}

.access-control-field .path-chooser .v-spacing {
	display: none;
}

.shell[width-range~="1200px-"] .access-control-field {
	margin-top: 0;
	display: flex;
}

.shell[width-range~="1200px-"] .access-control-field .select-fields {
	display: flex;
	padding-right: 20px;
}

.shell[width-range~="1200px-"] .access-control-field .select-fields .v-slot {
	display: flex;
	align-items: center;
}

.shell[width-range~="1200px-"] .access-control-field .v-spacing {
	display: inline-block;
}

.access-control-list-field .v-slot .v-horizontallayout .v-expand {
	display: flex;
}

.access-control-list-field .v-slot .v-horizontallayout .v-expand > .v-slot:first-child {
	padding-bottom: 11px;
}

.access-control-list-field .v-slot .v-horizontallayout .v-expand > .v-slot-v-button-icon {
	align-self: flex-end;
	display: flex;
	bottom: 20px;
}

.upload-file-panel, .upload-file-panel-large {
	position: relative;
	background-color: #f5f5f5;
	min-height: 170px;
	height: auto;
	border: transparent solid 1px;
}

.upload-file-panel:hover, .upload-file-panel-large:hover {
	border-color: #dbdbdb;
}

.upload-file-panel .control-button-panel, .upload-file-panel-large .control-button-panel {
	border: none;
	float: right;
	line-height: 20px;
}

.upload-file-panel .control-button, .upload-file-panel-large .control-button {
	line-height: 20px;
	width: 20px;
	height: 20px;
	font-size: 20px;
	color: #232323;
	padding: 5px;
}

.upload-file-panel {
	min-height: 170px;
}

.upload-file-panel-large {
	min-height: 240px;
}

.v-slot-upload-field-view .v-widget.v-has-caption.v-caption-on-top {
	width: 100%;
}

.upload-file-panel.v-csslayout-drag-center {
	background-color: white;
	border: black dashed 1px;
}

.upload-button {
	position: absolute;
	bottom: 0;
	right: 0;
}

.drag-to-upload-label {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	opacity: 0.25 !important;
	filter: alpha(opacity=25) !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
}

.uploading-progress-indicator {
	top: 25px;
	position: relative;
}

.uploading-progress-indicator .v-widget.v-has-caption.v-caption-on-top {
	height: 22px;
}

.progress-layout.v-widget {
	vertical-align: middle;
	text-align: center;
	position: relative;
}

.progress-layout.v-widget .v-caption {
	display: inline;
	position: absolute;
	left: 47%;
}

.progress-layout.v-widget .v-progressbar-wrapper, .progress-layout.v-widget .v-progressbar-indicator {
	border-radius: 10px;
	height: 20px;
}

.progress-layout.v-widget .v-progressbar-wrapper {
	background-color: white;
}

.progress-layout.v-widget .v-progressbar-wrapper .v-progressbar-indicator {
	background-color: #dbdbdb;
}

.progress-layout.v-widget .v-button {
	border: 0;
	display: inline;
}

.file-preview-thumbnail, .v-caption-file-preview-thumbnail {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 60px;
	max-width: calc(100% - 80px);
	max-height: calc(100% - 30px);
	object-fit: contain;
}

.v-caption-file-preview-thumbnail {
	padding-bottom: 0px;
}

.file-details .v-formlayout-captioncell {
	vertical-align: middle;
	text-align: left;
}

.file-details .v-caption {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	line-height: 24px;
}

.file-details .v-label {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	text-align: center;
}

.v-formlayout.file-details table.v-formlayout-margin-top tbody tr.v-formlayout-row td[class*="v-formlayout"] {
	padding: 0 0 3px 0;
	min-height: 24px;
	height: 24px;
	line-height: 24px;
}

.v-formlayout.file-details table.v-formlayout-margin-top tbody tr.v-formlayout-row td[class*="v-formlayout"] * {
	padding: 0;
	min-height: 24px;
	height: 24px;
	line-height: 24px;
	letter-spacing: -0.3px;
}

.sliderfield .sliderfield-title {
	padding-top: 10px;
}

.sliderfield .sliderfield-componentlayout > .v-expand {
	display: flex;
	align-items: center;
}

.sliderfield .sliderfield-componentlayout .sliderfield-value {
	background-color: #f5f5f5;
	text-align: center;
	padding: 10px;
}

.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base {
	height: 8px;
	background-color: #f5f5f5;
	border-radius: 10px;
	box-sizing: border-box;
	margin: 14px 0px 14px 9px;
	white-space: nowrap;
	overflow: hidden;
}

.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base:before {
	content: none;
}

.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base:after {
	content: "";
	background-color: #599900;
	border-radius: 1px;
	height: inherit;
	border: none;
	box-sizing: border-box;
	max-width: 100%;
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base .v-slider-handle:before, .sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base .v-slider-handle:after {
	width: 20px;
	height: 20px;
	margin-top: 8px;
	margin-left: -5px;
	border-color: #cacaca;
}

.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .sliderfield-displayStepSize {
	margin-left: 8px;
}

.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .sliderfield-displayStepSize .v-label {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	color: #cacaca;
}

@media only screen and (max-width: 899px) {
	.sliderfield .sliderfield-title {
		padding-top: 7px;
	}
	.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base {
		height: 4px;
		margin: 7px 0px 7px 5px;
	}
	.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base .v-slider-handle:before, .sliderfield .sliderfield-componentlayout .sliderfield-controllayout .v-slider-base .v-slider-handle:after {
		width: 15px;
		height: 15px;
	}
	.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .sliderfield-displayStepSize {
		margin-left: 5px;
	}
	.sliderfield .sliderfield-componentlayout .sliderfield-controllayout .sliderfield-displayStepSize .v-label {
		font-size: 10px;
	}
	.sliderfield .sliderfield-componentlayout .sliderfield-controllayout > * {
		line-height: 1em;
	}
}

.v-csslayout-padded > * {
	margin: 0 8px 8px 0;
}

.notification-text {
	overflow: hidden;
	width: 100%;
}

.notification-text-header {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.notification-text-content {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	font-weight: 300;
	margin-top: -0.5ex;
	overflow: hidden;
	text-overflow: ellipsis;
}

.notification-app > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption:not(.v-caption-closable) {
	max-width: unset;
}

.notification-app .v-captiontext span {
	color: #599900;
}

.pageeditor {
	display: grid;
	grid-template-areas: "editor actionbar" "statusbar statusbar";
	grid-template-columns: 1fr auto;
	grid-template-rows: 1fr 35px;
}

.pageeditor .pageEditorView {
	grid-area: editor;
	padding: 10px;
}

.pageeditor .pageEditorView.preview {
	margin: 0 auto;
	height: auto !important;
}

.pageeditor .actionbar {
	grid-area: actionbar;
	overflow: hidden;
}

.pageeditor .statusbar:not(.statusbar-extension) {
	grid-area: statusbar;
	border-top: 1px solid #dbdbdb;
	height: 35px;
	border-radius: 3px;
	margin-top: 1px;
	z-index: 999;
	background-color: #fff;
}

.pageeditor .statusbar .v-filterselect [class$="button"]:before {
	margin-left: -16px;
}

.pageeditor .statusbar .extensions {
	display: flex;
	align-items: center;
	height: inherit;
}

.pageeditor .statusbar .statusbar-extension {
	margin-left: 10px;
	height: 25px;
	line-height: 25px;
	font-size: 12px;
	text-align: center;
	order: 5;
}

.pageeditor .statusbar .statusbar-extension .v-widget {
	vertical-align: middle;
}

.pageeditor .statusbar .v-filterselect, .pageeditor .statusbar .v-filterselect [class*="input"] {
	min-height: 25px;
	height: 25px;
	font-size: 12px;
}

.pageeditor .statusbar .language-selector, .pageeditor .statusbar .variant-selector {
	order: 1;
}

.pageeditor .statusbar .platform-selector, .pageeditor .statusbar .preview-resolution {
	visibility: hidden;
	min-width: 140px;
}

.pageeditor .statusbar .platform-selector.visible, .pageeditor .statusbar .preview-resolution.visible {
	visibility: visible;
}

.pageeditor .statusbar .platform-selector, .pageeditor .statusbar .platform-selector-container {
	order: 2;
}

.pageeditor .statusbar .preview-resolution {
	order: 3;
}

.pageeditor .statusbar .activation {
	order: 4;
}

.pageeditor .statusbar .activation .activation-status {
	margin-right: 5px;
}

.pageeditor .statusbar .activation div.v-spacing {
	width: 0px;
}

.pageeditor .statusbar .page-link {
	order: 1000;
	margin-right: 10px;
	text-decoration: none;
	min-width: 140px;
}

.pageeditor .statusbar .page-link a {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	color: #fff;
	font-family: Roboto, sans-serif;
	display: block;
}

.pageeditor .statusbar .page-link.icon-preview-app::before {
	color: #fff;
}

.pageeditor .statusbar .title {
	order: 999;
	margin-left: auto;
	margin-right: 10px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-size: 12px;
}

.v-panel.pageeditor-wrapper {
	border: none;
}

.shell[width-range~="1200px-1599px"] .pageeditor {
	grid-template-rows: 1fr 55px;
}

.shell[width-range~="1200px-1599px"] .pageeditor .statusbar:not(.statusbar-extension) {
	height: 55px;
}

.shell[width-range~="1200px-1599px"] .pageeditor .statusbar .statusbar-extension {
	height: 35px;
	line-height: 35px;
	font-size: 14px;
}

.shell[width-range~="1200px-1599px"] .pageeditor .statusbar .v-filterselect, .shell[width-range~="1200px-1599px"] .pageeditor .statusbar .v-filterselect [class*="input"] {
	min-height: 35px;
	height: 35px;
	font-size: 14px;
}

.shell[width-range~="1200px-1599px"] .pageeditor .statusbar .title {
	font-size: 14px;
}

.shell[width-range~="1600px-"] .pageeditor {
	grid-template-rows: 1fr 75px;
}

.shell[width-range~="1600px-"] .pageeditor .statusbar:not(.statusbar-extension) {
	height: 75px;
}

.shell[width-range~="1600px-"] .pageeditor .statusbar .statusbar-extension {
	height: 45px;
	line-height: 45px;
	font-size: 14px;
}

.shell[width-range~="1600px-"] .pageeditor .statusbar .v-filterselect, .shell[width-range~="1600px-"] .pageeditor .statusbar .v-filterselect [class*="input"] {
	min-height: 45px;
	height: 45px;
	font-size: 14px;
}

.shell[width-range~="1600px-"] .pageeditor .statusbar .title {
	font-size: 14px;
}

.jcr-browser-app .toggle-mode {
	padding: 10px;
}

.jcr-browser-app .checkbox-wrapper {
	position: relative;
	height: 58px;
	padding: 17px 20px 0 15px;
	background-color: #fff;
	margin-top: 1px;
	border-radius: 3px;
}

.v-verticallayout-shell {
	-webkit-animation: valo-animate-in-fade 2000ms backwards;
	-moz-animation: valo-animate-in-fade 2000ms backwards;
	animation: valo-animate-in-fade 2000ms backwards;
	background-color: #dbdbdb;
}

.v-verticallayout-shell.v-margin-top {
	padding-top: 1px;
}

.v-verticallayout-shell.v-margin-left {
	padding-left: 1px;
}

.v-verticallayout-shell.v-margin-right {
	padding-right: 1px;
}

.v-verticallayout-shell.v-margin-bottom {
	padding-bottom: 1px;
}

.v-verticallayout-shell  > .v-expand > .v-spacing {
	height: 1px;
}

.v-verticallayout-shell  > .v-expand > .v-slot {
	border-radius: 3px;
	overflow: hidden;
}

.v-horizontallayout-header  > .v-expand > .v-spacing {
	width: 1px;
}

.v-horizontallayout-header  > .v-expand > .v-slot {
	background-color: #fff;
	border-radius: 3px;
	overflow: hidden;
}

.v-horizontallayout-header .logo {
	padding-top: 6px;
	height: 46px;
	pointer-events: none;
	margin-left: 20px;
	margin-right: 20px;
}

.header-component {
	width: 88px;
	color: #232323;
	height: 70px;
	padding-top: 23px;
}

.header-component  > .v-slot:first-child {
	height: 26px;
}

.header-component .v-csslayout {
	display: flex;
	justify-content: space-between;
}

.header-component.menu-component .user-icon {
	font-size: 21px;
	line-height: normal;
	padding-top: 1px;
}

.header-component .open-arrow {
	padding: 0;
	font-size: 16px;
}

.header-component .indicator {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
	line-height: 1;
}

.header-component .indicator .status {
	font-size: 7px;
	margin-left: 5px;
	vertical-align: super;
}

.header-component .indicator .status.color-green {
	color: #599900;
}

.header-component .sticker {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
	font-size: 12px;
	line-height: 1.2;
	margin: 3px 0 5px;
	padding: 1px 9px;
	height: 18px;
	border-radius: 9px;
	border: 1px solid;
}

.header-component .sticker .v-sticker-environment {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-component .v-caption-indicator .v-icon {
	font-size: 26px;
	margin: 0 17px 0 -2px;
}

.header-component .label {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	font-size: 12px;
	line-height: 1.2;
	max-width: 66px;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0.5;
}

.viewportLayout {
	position: relative;
	height: 100%;
	background-color: #fff;
}

.v-panel-apps-viewport, .v-panel-header-apps-viewport {
	position: relative;
	border: none;
}

.v-panel-header-apps-viewport {
	position: absolute;
}

.v-csslayout-apps-viewport, .v-csslayout-header-apps-viewport {
	border: none;
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.v-csslayout-app-overlay {
	position: absolute;
	left: 0;
	opacity: 0.5;
	background-color: black;
}

.v-csslayout-app-overlay:hover {
	cursor: pointer;
	opacity: 0.6;
}

.v-verticallayout-v-app-launcher {
	opacity: 0;
	transform: translate3d(0, calc(-100%), 0);
	background-color: #fff;
}

.v-app-launcher {
	font-family: Roboto, sans-serif;
	background-color: #fff;
	overflow-x: hidden;
	overflow-y: auto;
}

.v-app-launcher.hidden {
	display: none;
}

.v-app-launcher .permanent-app-scroll-panel {
	position: relative;
	bottom: 0;
	border-top: 1px solid #dbdbdb;
	height: 100%;
}

.v-app-launcher .app-list.section {
	background: #dbdbdb;
	display: flex;
	align-items: stretch;
}

.v-app-launcher .app-list.section .app-tile-container {
	flex-wrap: wrap;
	flex-grow: 1000;
	border-radius: 10px;
}

.v-app-launcher .app-list.section .app-tile-container .spacer {
	z-index: 2;
	flex-grow: 100;
	order: 100;
	background-color: #fff;
	border-bottom: 1px solid #dbdbdb;
	border-radius: 3px;
}

.v-app-launcher .app-list.section::after {
	z-index: 1;
	content: "";
	top: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	background-color: #fff;
	border-right: 1px solid #dbdbdb;
	border-radius: 3px;
	width: 132px;
}

.v-app-launcher .app-list.section.temporary {
	display: none !important;
}

.v-app-launcher .app-list.sections {
	display: none;
}

.v-app-launcher .item:last-child {
	margin-right: 0;
}

.v-app-launcher .item {
	z-index: 2;
	color: #232323;
	background-color: #fff;
	float: left;
	position: relative;
	text-align: center;
	overflow-wrap: break-word;
	border: 1px solid #f5f5f5;
	border-radius: 3px;
	font-size: 10px;
	width: 80px;
	height: 80px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.v-app-launcher .item:not(.section):hover {
	cursor: pointer;
	background-color: #599900;
}

.v-app-launcher .item:not(.section):hover .label {
	color: #fff;
}

.v-app-launcher .item:not(.section):hover img {
	filter: brightness(0) invert(1);
}

.v-app-launcher .item.active:not(.section):hover:before {
	color: #fff;
}

.v-app-launcher .item.active:before {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e971";
	position: absolute;
	font-size: 15px;
	right: 5px;
	top: 2px;
	color: #599900;
}

.v-app-launcher .item .icon {
	font-size: 20px;
	position: relative;
	top: 30%;
}

.v-app-launcher .item .icon img {
	height: 20px;
	width: 20px;
	padding-bottom: 9px;
	pointer-events: none;
}

.v-app-launcher .item .label {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	font-size: 12px;
	position: relative;
	top: 30%;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 3px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 14px;
}

.v-app-launcher .hidden-for-aria {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.v-app-launcher .access-info-container {
	width: 100%;
	display: grid;
	margin: 10px 10px -10px 10px;
}

.v-app-launcher .access-info-container .info-label {
	width: 98%;
	font-size: 14px;
	color: #cacaca;
	text-align: right;
}

.v-app-launcher .favourite-apps-container {
	width: 100%;
	display: grid;
	margin: 10px 10px 0 10px;
}

.v-app-launcher .favourite-apps-container .app-list.section {
	width: 99%;
}

.v-app-launcher .favourite-apps-container .app-list.section .app-tile-container {
	background-color: #eaf2df;
	width: 90%;
}

.v-app-launcher .favourite-apps-container .app-list.section .app-tile-container button {
	background: #599900;
	font-size: 34px;
	float: left;
	margin-top: 25px;
	text-align: left;
	border-radius: 30px;
	border: 1px solid rgba(140, 140, 140, 0);
	color: #fff;
	height: 25px;
	line-height: 23px;
	width: 58px;
	text-indent: 5px;
	cursor: pointer;
}

.v-app-launcher .favourite-apps-container .app-list.section .app-tile-container button:hover {
	background: #4b7b08;
}

.v-app-launcher .favourite-apps-container .app-list.section::after {
	content: none;
}

.v-app-launcher .group-container {
	width: 100%;
	float: left;
	display: flex;
}

.v-app-launcher .group-container .group-1-0 {
	width: 100%;
}

.v-app-launcher .group-container .group-2-0, .v-app-launcher .group-container .group-2-1, .v-app-launcher .group-container .group-3-0 {
	width: 50%;
}

.v-app-launcher .group-container .group-3-1, .v-app-launcher .group-container .group-3-2, .v-app-launcher .group-container .group-4-0, .v-app-launcher .group-container .group-4-1, .v-app-launcher .group-container .group-4-2, .v-app-launcher .group-container .group-4-3 {
	width: 25%;
}

.v-app-launcher .group-container.editor .app-list.section .app-tile-container {
	background: #f5f5f5;
}

.v-app-launcher .group-container.developer .app-list.section .app-tile-container {
	background: #fff;
	border: 1px solid #dbdbdb;
}

.v-app-launcher .group-container.developer .app-list.section .app-tile-container .item {
	border: 1px solid #dbdbdb;
}

.findbarAndApplauncher {
	background-color: #fff;
	position: relative;
	height: 100%;
	border-bottom: solid 1px #dbdbdb;
}

.app-view-slide-up {
	animation-delay: 1ms;
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.app-view-move-down {
	transform: translate3d(0, calc(100% - 35px), 0);
}

.find-bar-panel-slide-down {
	transition: opacity 100ms 300ms;
}

.app-view-slide-down {
	transform: translate3d(0, calc(100% - 35px), 0);
	transition: transform 50ms 200ms;
}

.header-apps-viewport.header-view-on-slide-down {
	height: calc(100% - 35px) !important;
}

.shell[width-range~="1200px-1599px"] .findbarAndApplauncher {
	background-color: #fff;
	position: relative;
	height: 100%;
	border-bottom: solid 1px #dbdbdb;
}

.shell[width-range~="1200px-1599px"] .app-view-slide-up {
	animation-delay: 1ms;
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.shell[width-range~="1200px-1599px"] .app-view-move-down {
	transform: translate3d(0, calc(100% - 55px), 0);
}

.shell[width-range~="1200px-1599px"] .find-bar-panel-slide-down {
	transition: opacity 100ms 300ms;
}

.shell[width-range~="1200px-1599px"] .app-view-slide-down {
	transform: translate3d(0, calc(100% - 55px), 0);
	transition: transform 50ms 200ms;
}

.shell[width-range~="1200px-1599px"] .header-apps-viewport.header-view-on-slide-down {
	height: calc(100% - 55px) !important;
}

.shell[width-range~="1600px-"] .findbarAndApplauncher {
	background-color: #fff;
	position: relative;
	height: 100%;
	border-bottom: solid 1px #dbdbdb;
}

.shell[width-range~="1600px-"] .app-view-slide-up {
	animation-delay: 1ms;
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.shell[width-range~="1600px-"] .app-view-move-down {
	transform: translate3d(0, calc(100% - 75px), 0);
}

.shell[width-range~="1600px-"] .find-bar-panel-slide-down {
	transition: opacity 100ms 300ms;
}

.shell[width-range~="1600px-"] .app-view-slide-down {
	transform: translate3d(0, calc(100% - 75px), 0);
	transition: transform 50ms 200ms;
}

.shell[width-range~="1600px-"] .header-apps-viewport.header-view-on-slide-down {
	height: calc(100% - 75px) !important;
}

.find-bar-panel-open {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.find-bar-panel-hidden {
	opacity: 0;
	transform: translate3d(0, calc(-100% - 77px), 0);
}

.app-view-visible {
	opacity: 1;
}

.app-view-to-front {
	z-index: 2;
}

.app-view-not-clickable {
	pointer-events: none;
}

.shell .v-app-launcher .v-slot-h1 .h1 {
	font-size: 26px;
	letter-spacing: -1.6px;
	line-height: 46px;
	margin: 14px 15px 0 15px;
}

.shell[width-range~="1200px-1599px"] .header-component {
	width: 100px;
	height: 70px;
	padding-top: 23px;
}

.shell[width-range~="1200px-1599px"] .header-component .label {
	max-width: 78px;
}

.shell[width-range~="1200px-1599px"] .v-app-launcher .v-slot-h1 .h1 {
	font-size: 36px;
	letter-spacing: -2.2px;
	line-height: 50px;
	margin: 50px 15px 0 15px;
}

.shell[width-range~="1200px-1599px"] .v-app-launcher .app-list.section::after {
	width: 80px;
}

.shell[width-range~="1200px-1599px"] .v-app-launcher .app-tile-container .item {
	width: 80px;
	height: 80px;
	font-size: 14px;
}

.shell[width-range~="1200px-1599px"] .v-app-launcher .app-tile-container .item .icon img {
	width: 30px;
	height: 30px;
}

.shell[width-range~="1200px-1599px"] .v-app-launcher .app-tile-container .item .label {
	font-size: 12px;
}

.shell[width-range~="1600px-"] .header-component {
	width: 113px;
	height: 70px;
	padding-top: 23px;
}

.shell[width-range~="1600px-"] .header-component .label {
	max-width: 91px;
}

.shell[width-range~="1600px-"] .v-app-launcher .v-slot-h1 .h1 {
	font-size: 45px;
	letter-spacing: -2.7px;
	line-height: 60px;
	margin: 65px 15px 0 15px;
}

.shell[width-range~="1600px-"] .v-app-launcher .app-list.section::after {
	width: 132px;
}

.shell[width-range~="1600px-"] .v-app-launcher .app-tile-container .item {
	width: 80px;
	height: 80px;
	font-size: 14px;
}

.shell[width-range~="1600px-"] .v-app-launcher .app-tile-container .item .icon img {
	width: 35px;
	height: 35px;
}

.shell[width-range~="1600px-"] .v-app-launcher .app-tile-container .item .label {
	font-size: 12px;
}

.v-Notification-system {
	background-color: #ffb300;
	max-width: 30vw;
	padding: 19px 30px;
}

.v-Notification-system.v-position-center {
	position: absolute;/**
   * These "!important"(s) are used to overwrite default position of dialogs.
   */
	margin: 0 auto !important;
	left: 0 !important;
	right: 0 !important;
	top: 30vh;
}

.v-Notification-system.v-position-top[class*="animate-in"], .v-Notification-system.v-position-top[class*="animate-out"] {
	animation: none;
}

.v-Notification-system.system::after {
	font-family: "MagnoliaIcons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e984";
	color: #232323;
	border-width: 1px;
	border-radius: 30px;
	border-color: #cacaca;
	background-color: transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, rgba(35, 35, 35, 0.05));
	background-image: linear-gradient(to right,transparent, rgba(35, 35, 35, 0.05));
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	font-size: 20px;
	line-height: 1;
	box-sizing: content-box;
	border-width: 0px;
	width: 1em;
	height: 1em;
	padding: 3px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #dbdbdb);
	background-image: linear-gradient(to right,transparent, #dbdbdb);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	opacity: 1;
	background-color: transparent;
	background-image: -webkit-linear-gradient(left, transparent, #fff);
	background-image: linear-gradient(to right,transparent, #fff);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.v-Notification-system.system:not(.v-disabled):hover::after, .v-Notification-system.system:not(.v-disabled):focus::after, .v-Notification-system.system:not(.v-disabled):active::after {
	background-position: right bottom;
}

.v-Notification-system.system:not(.v-disabled):hover::after, .v-Notification-system.system:not(.v-disabled):focus::after, .v-Notification-system.system:not(.v-disabled):active::after, .v-Notification-system.system.active:not(.v-disabled)::after {
	background-position: right bottom;
}

.v-Notification-system.system::after .v-icon {
	font-size: inherit;
}

.v-Notification-system.system:not(.v-disabled):hover::after, .v-Notification-system.system:not(.v-disabled):focus::after, .v-Notification-system.system:not(.v-disabled):active::after {
	background-position: right bottom;
	color: #ffb300;
}

.v-Notification-system .gwt-HTML .v-Notification-caption {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: -0.6px;
	color: #383838;
	display: block;
}

.v-Notification-system .gwt-HTML .v-Notification-description {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -0.4px;
	color: #383838;
	display: block;
	margin: 20px 0;
}

.v-Notification-system .gwt-HTML p:not(.v-Notification-description) {
	display: none;
}

.v-Notification-system .gwt-HTML .v-button-primary, .v-Notification-system .gwt-HTML .v-button-commit, .v-Notification-system .gwt-HTML .v-button-confirm {
	border-color: transparent;
	color: #ffb300;
	background-color: #fff;
	background-image: -webkit-linear-gradient(left, #fff, #ffefcc);
	background-image: linear-gradient(to right,#fff, #ffefcc);
	background-size: 10000% 100%;
	background-position: left bottom;
	transition: background-position 0.5s, color 0.5s;
}

.v-Notification-system .gwt-HTML .v-button-primary:not(.v-disabled):hover, .v-Notification-system .gwt-HTML .v-button-primary:not(.v-disabled):focus, .v-Notification-system .gwt-HTML .v-button-primary:not(.v-disabled):active, .v-Notification-system .gwt-HTML .v-button-commit:not(.v-disabled):hover, .v-Notification-system .gwt-HTML .v-button-commit:not(.v-disabled):focus, .v-Notification-system .gwt-HTML .v-button-commit:not(.v-disabled):active, .v-Notification-system .gwt-HTML .v-button-confirm:not(.v-disabled):hover, .v-Notification-system .gwt-HTML .v-button-confirm:not(.v-disabled):focus, .v-Notification-system .gwt-HTML .v-button-confirm:not(.v-disabled):active {
	background-position: right bottom;
}

.v-Notification-system .gwt-HTML .v-button-confirm {
	border-radius: 30px;
}

@media screen and (max-width: 818px) {
	.v-Notification-system {
		max-width: 50%;
	}
}

.v-shell-tabsheet-scroller {
	width: 100%;
	top: 50px;
	bottom: 0;
}

.app-launcher {
	padding-left: 15px;
}

div.v-slot-app-launcher:hover {
	color: #fff;
	background-color: #656565 !important;
	cursor: pointer;
}

div.v-slot-menu-component:hover .app-launcher {
	color: #f2ecec;
}

.favorites {
	width: 70px;
	text-align: center;
}

div.v-slot-favorites:hover {
	color: #fff;
	background-color: #656565 !important;
	cursor: pointer;
}

.v-slot-findbar {
	flex: 1;
}

.v-slot-findbar .v-absolutelayout-findbar .v-absolutelayout-margin {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
}

.v-slot-findbar .v-absolutelayout-wrapper .v-panel {
	padding-left: 10px;
}

.v-slot-findbar .v-textfield-findbar {
	padding-top: 35px;
}

.v-slot-badge-layout {
	width: 90px;
}

.v-slot-badge-layout .badge-layout {
	width: 100%;
	height: 70px;
	padding: 23px;
}

.v-slot-badge-layout .v-spacing {
	width: 10px;
}

div.v-slot-badge-layout:hover {
	color: #fff;
	background-color: #656565 !important;
	cursor: pointer;
}

div.v-slot-badge-layout:hover .item-count-layout {
	background-color: #fff;
	color: #656565;
}

.item-count-layout {
	width: 100%;
	border: 0px solid;
	border-radius: 7px;
	height: 20px;
	float: left;
	margin-top: 2px;
	background-color: #599900;
	color: #fff;
}

.item-count-layout .indicator {
	font-size: small;
	line-height: 0;
	font-weight: 300;
	padding-top: 2px;
}

.v-slot-task-badge-layout:hover .item-count-layout {
	color: #000;
	background-color: #fff;
}

.v-slot-notification-badge-layout:hover .item-count-layout {
	color: #000;
	background-color: #fff;
}

.user-public {
	padding-left: 15px;
}

.v-slot-menu-component {
	width: 70px;
}

div.v-slot-menu-component:hover {
	color: #fff;
	background-color: #656565 !important;
	cursor: pointer;
}

div.v-slot-menu-component:hover .user-public {
	color: #fff;
}

.header .v-expand {
	display: flex;
}

.v-horizontallayout-header .v-expand .v-slot {
	flex-shrink: 0;
	border-radius: 0px;
}

.v-horizontallayout-header .v-expand .v-spacing {
	flex-shrink: 0;
}

.v-verticallayout-shell > .v-expand > .v-slot {
	border-radius: 0px;
}

.findbarAndApplauncher .v-label-h1 {
	display: none;
}

.shell[width-range~="1600px-"] .findbarAndApplauncher .v-app-launcher .app-tile-container .icon img {
	width: 25px;
	height: 25px;
}

.shell .findbarAndApplauncher .v-app-launcher .app-list {
	background: white;
}

.app-list.section {
	float: left;
	flex-shrink: 0;
}

.shell .findbarAndApplauncher .v-app-launcher .app-tile-container {
	margin: 10px;
	padding: 20px 20px 10px 20px;
}

.shell .findbarAndApplauncher .v-app-launcher .app-tile-container .app-tile-container-title .icon {
	font-size: 14px;
	margin-right: 6px;
}

.shell .findbarAndApplauncher .v-app-launcher .app-tile-container .icon {
	top: 10px;
	font-size: 24px;
	max-height: 40px;
}

.shell .findbarAndApplauncher .v-app-launcher .app-tile-container .label {
	top: 8px;
	color: #599900;
}

.shell .findbarAndApplauncher .v-app-launcher .app-tile-container .app-tile-container-title {
	width: 100%;
	font-weight: bold;
	margin-left: 2px;
	margin-bottom: 20px;
}

.shell .findbarAndApplauncher .v-app-launcher .app-tile-container .item:hover {
	background-color: #599900;
}

.shell .findbarAndApplauncher .v-app-launcher .app-tile-container .item:hover .label {
	color: #fff;
}

.v-app-launcher .permanent-app-scroll-panel {
	border-top: 0;
	margin: 0 12px 12px;
}

.popupContent .favourite-config .favourite-config-container {
	margin: 10px;
	padding: 20px;
	display: inherit;
	border-radius: 10px;
}

.popupContent .favourite-config .favourite-config-container.editor {
	background: #f5f5f5;
}

.popupContent .favourite-config .favourite-config-container.developer {
	background: #fff;
	border: 1px solid #dbdbdb;
}

.popupContent .favourite-config .favourite-config-container.developer .app-container .app {
	border-color: #dbdbdb;
}

.popupContent .favourite-config .favourite-config-container .v-caption-app-group-tile-container {
	width: 100%;
	font-weight: bold;
	margin-left: 2px;
}

.popupContent .favourite-config .favourite-config-container .app-container {
	display: flex;
	flex-wrap: wrap;
}

.popupContent .favourite-config .favourite-config-container .app-container .app {
	background-color: #fff;
	text-align: center;
	border: 1px solid #f5f5f5;
	border-radius: 3px;
	font-size: 10px;
	width: 80px;
	height: 80px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.popupContent .favourite-config .favourite-config-container .app-container .app .selected-icon {
	visibility: hidden;
}

.popupContent .favourite-config .favourite-config-container .app-container .app:hover {
	cursor: pointer;
	background-color: #599900;
}

.popupContent .favourite-config .favourite-config-container .app-container .app:hover .v-caption-label {
	color: #fff;
}

.popupContent .favourite-config .favourite-config-container .app-container .app:hover .icon img {
	filter: brightness(0) invert(1);
}

.popupContent .favourite-config .favourite-config-container .app-container .app:hover .icon .v-icon {
	color: white;
}

.popupContent .favourite-config .favourite-config-container .app-container .app.selected {
	border-color: #656565;
	background-color: #656565;
}

.popupContent .favourite-config .favourite-config-container .app-container .app.selected .selected-icon {
	visibility: visible;
	margin-top: 24px;
}

.popupContent .favourite-config .favourite-config-container .app-container .app.selected .selected-icon .icon {
	width: 24px;
	height: 24px;
	font-size: 24px;
	color: #fff;
	background-color: #599900;
	border-radius: 50%;
}

.popupContent .favourite-config .favourite-config-container .app-container .app.selected .v-caption-label {
	color: #fff;
}

.popupContent .favourite-config .favourite-config-container .app-container .app.selected .icon img {
	filter: brightness(0) invert(1);
}

.popupContent .favourite-config .favourite-config-container .app-container .app.selected .icon .v-icon {
	color: white;
}

.popupContent .favourite-config .favourite-config-container .app-container .app .v-caption-label {
	font-size: 12px;
	font-weight: normal;
	letter-spacing: -0.3px;
	position: relative;
	top: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 3px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 14px;
	white-space: normal;
	min-height: 28px;
	overflow-wrap: break-word;
}

.popupContent .favourite-config .favourite-config-container .app-container .app .v-caption-label .v-captiontext {
	display: block;
}

.popupContent .favourite-config .favourite-config-container .app-container .app .icon {
	margin-top: -20px;
}

.popupContent .favourite-config .favourite-config-container .app-container .app .icon img {
	width: 25px;
	height: 25px;
	margin-top: 3px;
}

.popupContent .favourite-config .favourite-config-container .app-container .app .icon .v-icon {
	margin: 30px 0 0;
	font-size: 24px;
	color: #599900;
}