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

/**
 * 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: 3px;
	}
		3% {
		width: 91%;
		height: 5px;
	}
		100% {
		width: 96%;
		height: 5px;
	}
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 *
 * @group table
 */

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

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

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

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

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

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

/**
 * @group valo-menu
 */

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

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

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

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

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

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

.v-ui {
	position: relative;
}

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

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

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

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

.v-clip {
	overflow: hidden;
}

.v-scrollable {
	overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-gridlayout {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideleft {
		0% {
		transform: translate(100%, 0);
	}
		100% {
		transform: translate(0, 0);
	}
	}

@-moz-keyframes slideleft {
		0% {
		transform: translate(100%, 0);
	}
		100% {
		transform: translate(0, 0);
	}
	}

@-o-keyframes slideleft {
		0% {
		transform: translate(100%, 0);
	}
		100% {
		transform: translate(0, 0);
	}
	}

@keyframes slideleft {
		0% {
		transform: translate(100%, 0);
	}
		100% {
		transform: translate(0, 0);
	}
	}

@-webkit-keyframes slidedown {
		100% {
		transform: translate(0, 0);
	}
		0% {
		transform: translate(0, -100%);
	}
	}

@-moz-keyframes slidedown {
		100% {
		transform: translate(0, 0);
	}
		0% {
		transform: translate(0, -100%);
	}
	}

@-o-keyframes slidedown {
		100% {
		transform: translate(0, 0);
	}
		0% {
		transform: translate(0, -100%);
	}
	}

@keyframes slidedown {
		100% {
		transform: translate(0, 0);
	}
		0% {
		transform: translate(0, -100%);
		height: 100%;
	}
	}

@keyframes flip {
		0% {
		transform: translate(0, 0) rotate(0);
	}
		20% {
		transform: translate(0, -25px) scale(1.3) rotate(0);
	}
		100% {
		transform: translate(0, 0) scale(1) rotate(360deg);
	}
	}

@keyframes bump {
		0% {
		font-size: 10px;
	}
		20% {
		font-size: 13px;
	}
		100% {
		font-size: 11px;
	}
	}

@keyframes dots-loader {
		0% {
		box-shadow: #532d6d -14px -14px 0 7px, #0095f1 14px -14px 0 7px, #eecc52 14px 14px 0 7px, #d85d48 -14px 14px 0 7px;
	}
		8.33% {
		box-shadow: #532d6d 14px -14px 0 7px, #0095f1 14px -14px 0 7px, #eecc52 14px 14px 0 7px, #d85d48 -14px 14px 0 7px;
	}
		16.67% {
		box-shadow: #532d6d 14px 14px 0 7px, #0095f1 14px 14px 0 7px, #eecc52 14px 14px 0 7px, #d85d48 -14px 14px 0 7px;
	}
		25% {
		box-shadow: #532d6d -14px 14px 0 7px, #0095f1 -14px 14px 0 7px, #eecc52 -14px 14px 0 7px, #d85d48 -14px 14px 0 7px;
	}
		33.33% {
		box-shadow: #532d6d -14px -14px 0 7px, #0095f1 -14px 14px 0 7px, #eecc52 -14px -14px 0 7px, #d85d48 -14px -14px 0 7px;
	}
		41.67% {
		box-shadow: #532d6d 14px -14px 0 7px, #0095f1 -14px 14px 0 7px, #eecc52 -14px -14px 0 7px, #d85d48 14px -14px 0 7px;
	}
		50% {
		box-shadow: #532d6d 14px 14px 0 7px, #0095f1 -14px 14px 0 7px, #eecc52 -14px -14px 0 7px, #d85d48 14px -14px 0 7px;
	}
		58.33% {
		box-shadow: #532d6d -14px 14px 0 7px, #0095f1 -14px 14px 0 7px, #eecc52 -14px -14px 0 7px, #d85d48 14px -14px 0 7px;
	}
		66.67% {
		box-shadow: #532d6d -14px -14px 0 7px, #0095f1 -14px -14px 0 7px, #eecc52 -14px -14px 0 7px, #d85d48 14px -14px 0 7px;
	}
		75% {
		box-shadow: #532d6d 14px -14px 0 7px, #0095f1 14px -14px 0 7px, #eecc52 14px -14px 0 7px, #d85d48 14px -14px 0 7px;
	}
		83.33% {
		box-shadow: #532d6d 14px 14px 0 7px, #0095f1 14px -14px 0 7px, #eecc52 14px 14px 0 7px, #d85d48 14px 14px 0 7px;
	}
		91.67% {
		box-shadow: #532d6d -14px 14px 0 7px, #0095f1 14px -14px 0 7px, #eecc52 14px 14px 0 7px, #d85d48 -14px 14px 0 7px;
	}
		100% {
		box-shadow: #532d6d -14px -14px 0 7px, #0095f1 14px -14px 0 7px, #eecc52 14px 14px 0 7px, #d85d48 -14px 14px 0 7px;
	}
	}

.iodine-tile {
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
}

.iodine-tile--clickable, .iodine .queries-tab__table__query-tile, .iodine .queries-tab__table__query-tile--selected, .iodine .opportunity-window__tile, .iodine .opportunity-tab___evidence-tile, .iodine .documents-tab__tile, .iodine .timeline__tile, .iodine .queries-tab__table__responded-query-tile {
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	transition: 0.12s ease;
	cursor: pointer;
}

.iodine-tile--clickable:hover, .iodine .queries-tab__table__query-tile:hover, .iodine .queries-tab__table__query-tile--selected:hover, .iodine .opportunity-window__tile:hover, .iodine .opportunity-tab___evidence-tile:hover, .iodine .documents-tab__tile:hover, .iodine .timeline__tile:hover, .iodine .iodine .queries-tab__table__responded-query-tile:hover {
	box-shadow: 0 20px 30px 0 rgba(35, 50, 66, 0.14);
	z-index: 5;
	position: relative;
}

.iodine .v-Notification .v-Notification-caption {
	display: block;
	font-size: 18px !important;
	margin: auto auto 6px auto;
	text-align: center;
}

.iodine .v-Notification .v-Notification-description {
	display: block;
	font-size: 14px;
	text-align: center;
	margin: auto !important;
}

.ui-tooltip {
	width: auto;
	background-color: rgba(50, 50, 50, 0.9);
	color: white;
	padding: 4px 7px;
	border-radius: 1px;
	font-family: "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	font-size: 14px;
	max-width: 60em;
	overflow: hidden !important;
	position: absolute;
	z-index: 100000;
	white-space: pre-wrap;
}

@font-face {
	font-family: "Material Icons";
	font-style: normal;
	font-weight: 400;
	src: url(fonts/material-icons/MaterialIcons-Regular.eot);
	src: url(fonts/material-icons/MaterialIcons-Regular.eot?#iefix) format("embedded-opentype"), url(fonts/material-icons/MaterialIcons-Regular.woff2) format("woff2"), url(fonts/material-icons/MaterialIcons-Regular.woff) format("woff"), url(fonts/material-icons/MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons, .iodine-icons {
	font-family: "Material Icons";
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "liga";
}

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

.iodine-icons {
	font-family: "Iodine Icons" !important;
}

@font-face {
	font-family: "New Iodine Icons";
	src: url(fonts/new-iodine-icons/new-icomoon.eot);
	src: url(fonts/new-iodine-icons/new-icomoon.eot?#iefix) format("embedded-opentype"), url(fonts/new-iodine-icons/new-icomoon.woff) format("woff"), url(fonts/new-iodine-icons/new-icomoon.ttf) format("truetype"), url(fonts/new-iodine-icons/new-icomoon.svg#icomoon) format("svg");
	font-weight: normal;
	font-style: normal;
}

.new-iodine-icons {
	font-family: "New Iodine Icons" !important;
}

@media screen and (max-width: 1400px) {
	.queries-tab.column-container {
		width: 100%;
	}
}

@media screen and (max-width: 1250px) {
	.worksheet-wrapper {
		width: 70% !important;
	}
	.view-container--grouper .worksheet-wrapper {
		width: 78% !important;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.column-container {
		flex: 1 2 auto !important;
	}
	.patient-tab {
		flex: 1 2 auto !important;
	}
}

@media screen and (max-width: 1260px) {
	.queries-tab.column-container {
		flex: 1 1 auto !important;
	}
}

@media screen and (max-width: 1300px) {
	.smartlist__grid__cell--owner .v-select {
		max-width: 91px;
	}
	.smartlist__grid__cell--payer-holder .v-label {
		width: 45px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.smartlist__grid__cell--location-holder .v-label {
		width: 65px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.smartlist__grid__cell--attending-holder .v-label {
		width: 55px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media screen and (min-width: 1590px) {
	.smartlist__grid-container.v-verticallayout-smartlist__grid-container {
		margin-left: -170px;
	}
}

@media screen and (min-width: 2000px) {
	.v-slot-smartlist__navbar__global-search-field__container {
		padding-right: 20px;
	}
}

.iodine.v-app, .iodine.v-app-loading {
	font: 400 12px/1.55 "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	color: #464646;
	background-color: #fafafa;
	cursor: default;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine select {
	font: inherit;
	font-weight: 400;
	line-height: inherit;
	padding: 4px;
	margin: 0;
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	color: #464646;
}

.iodine select:focus {
	outline: none;
}

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

.iodine .v-drag-element {
	background: #fafafa;
	color: #464646;
	-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: 2px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-reconnect-dialog .spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(0, 149, 241, 0.2);
	border-top-color: #0095f1;
	border-right-color: #0095f1;
	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;
}

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

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

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

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

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

.iodine .v-margin-top {
	padding-top: 28px;
}

.iodine .v-margin-right {
	padding-right: 28px;
}

.iodine .v-margin-bottom {
	padding-bottom: 28px;
}

.iodine .v-margin-left {
	padding-left: 28px;
}

.iodine .v-spacing {
	width: 9px;
	height: 9px;
}

.iodine .v-verticallayout-well, .iodine .v-horizontallayout-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	border: 1px solid #c5c5c5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

.iodine .v-button:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .v-button.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

.iodine .v-button:focus:after {
	border-color: #0095f1;
}

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

.iodine .v-button-primary {
	height: 28px;
	padding: 0 13px;
	color: #eaf3f9;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #0075be;
	border-top-color: #0075be;
	border-bottom-color: #0075be;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	-webkit-box-shadow: inset 0 1px 0 #2aa3ff, inset 0 -1px 0 #008fe5, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #2aa3ff, inset 0 -1px 0 #008fe5, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 0 14px;
	font-weight: bold;
	min-width: 62px;
}

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

.iodine .v-button-primary:hover:after {
	background-color: rgba(62, 182, 255, 0.1);
}

.iodine .v-button-primary:focus:after {
	border: inherit;
}

.iodine .v-button-primary:active:after {
	background-color: rgba(0, 75, 121, 0.2);
}

.iodine .v-button-friendly {
	height: 28px;
	padding: 0 13px;
	color: #eaf4e9;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #227719;
	border-top-color: #227719;
	border-bottom-color: #227719;
	background-color: #2c9720;
	background-image: -webkit-linear-gradient(top, #2c9720 0%, #2c9720 100%);
	background-image: linear-gradient(to bottom,#2c9720 0%, #2c9720 100%);
	-webkit-box-shadow: inset 0 1px 0 #42ab37, inset 0 -1px 0 #2c9020, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #42ab37, inset 0 -1px 0 #2c9020, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

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

.iodine .v-button-friendly:focus:after {
	border: inherit;
}

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

.iodine .v-button-danger {
	height: 28px;
	padding: 0 13px;
	color: #f9f0ef;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #bb382e;
	border-top-color: #bb382e;
	border-bottom-color: #bb382e;
	background-color: #ed473b;
	background-image: -webkit-linear-gradient(top, #ed473b 0%, #ed473b 100%);
	background-image: linear-gradient(to bottom,#ed473b 0%, #ed473b 100%);
	-webkit-box-shadow: inset 0 1px 0 #ee736b, inset 0 -1px 0 #e74337, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #ee736b, inset 0 -1px 0 #e74337, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

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

.iodine .v-button-danger:focus:after {
	border: inherit;
}

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

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

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

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

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

.iodine .v-button-borderless-colored {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: #0095f1;
}

.iodine .v-button-borderless-colored:hover {
	color: #25acff;
}

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

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

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

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

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

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

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

.iodine .v-button-link {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	color: #0095f1;
	text-decoration: underline;
	font-weight: inherit;
}

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

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

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

.iodine .v-button-link:hover {
	color: #25acff;
}

.iodine .v-button-link.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-button-tiny {
	height: 21px;
	padding: 0 10px;
	
	
	font-size: 9px;
	
	border-radius: 2px;
}

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

.iodine .v-button-small {
	height: 24px;
	padding: 0 11px;
	
	
	font-size: 11px;
	
	border-radius: 2px;
}

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

.iodine .v-button-large {
	height: 34px;
	padding: 0 15px;
	
	
	font-size: 15px;
	
	border-radius: 2px;
}

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

.iodine .v-button-huge {
	height: 45px;
	padding: 0 20px;
	
	
	font-size: 20px;
	
	border-radius: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .iodine .v-checkbox > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .iodine .v-checkbox > input ~ label:before, :root .iodine .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: 2px;
	font-size: 10px;
	text-align: center;
}

:root .iodine .v-checkbox > input ~ label:before {
	height: 14px;
	padding: 0 7px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 14px;
}

:root .iodine .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
}

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

:root .iodine .v-checkbox > input:checked ~ label:after {
	color: #0095f1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .iodine .v-checkbox-small > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .iodine .v-checkbox-small > input ~ label:before {
	height: 12px;
	padding: 0 6px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 12px;
}

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

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

:root .iodine .v-checkbox-small > input:checked ~ label:after {
	color: #0095f1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .iodine .v-checkbox-large > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .iodine .v-checkbox-large > input ~ label:before {
	height: 17px;
	padding: 0 8px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 17px;
}

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

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

:root .iodine .v-checkbox-large > input:checked ~ label:after {
	color: #0095f1;
}

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

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

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

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

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

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

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

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

.iodine .v-filterselect {
	position: relative;
	width: 140px;
	height: 28px;
	border-radius: 2px;
	white-space: nowrap;
}

.iodine .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: 28px;
	border-radius: 2px;
	padding: 3px 6px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	width: 100% !important;
	height: 100%;
	padding-right: 29px;
	border-radius: inherit;
}

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

.iodine .v-filterselect [class*="input"]:focus {
	outline: none;
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

.iodine .v-filterselect.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-filterselect-suggestpopup [class$="status"] {
	position: absolute;
	right: 2px;
	background: rgba(212, 212, 212, 0.9);
	color: #3b3b3b;
	border-radius: 0 0 2px 2px;
	height: 17px;
	bottom: -17px;
	font-size: 9px;
	line-height: 17px;
	padding: 0 4px;
	cursor: default;
	pointer-events: none;
}

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

.iodine .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: 19px;
	height: 19px;
	line-height: 19px;
	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: #464646;
}

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

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

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

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

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

.iodine .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 2px 0 2px;
}

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

.iodine .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: 2px 0 2px 0;
}

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

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

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

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

.iodine .v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

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

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

.iodine .v-filterselect-tiny {
	height: 21px;
	
	font-size: 9px;
}

.iodine .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: 21px;
	
	padding: 2px 4px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 22px;
	border-radius: inherit;
}

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

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

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

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

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

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

.iodine .v-filterselect-tiny.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

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

.iodine .v-filterselect-compact [class*="input"], .iodine .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: 24px;
	
	padding: 3px 4px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 25px;
	border-radius: inherit;
}

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

.iodine .v-filterselect-compact img.v-icon, .iodine .v-filterselect-small img.v-icon {
	max-height: 24px;
	margin-left: 4px;
}

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

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

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

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

.iodine .v-filterselect-compact.v-disabled, .iodine .v-filterselect-small.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

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

.iodine .v-filterselect-large {
	height: 34px;
	
	font-size: 15px;
}

.iodine .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: 34px;
	
	padding: 4px 6px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 35px;
	border-radius: inherit;
}

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

.iodine .v-filterselect-large img.v-icon {
	max-height: 34px;
	margin-left: 6px;
}

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

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

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

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

.iodine .v-filterselect-large.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

.iodine .v-filterselect-huge {
	height: 45px;
	
	font-size: 20px;
}

.iodine .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: 45px;
	
	padding: 5px 8px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 46px;
	border-radius: inherit;
}

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

.iodine .v-filterselect-huge img.v-icon {
	max-height: 45px;
	margin-left: 8px;
}

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

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

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

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

.iodine .v-filterselect-huge.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

.iodine .v-csslayout-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	border: 1px solid #c5c5c5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-csslayout-v-component-group .v-widget.v-upload:first-child .v-button, .iodine .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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-formlayout.light  > table > tbody > tr > [class*="captioncell"] {
	color: #7d7d7d;
	text-align: right;
	padding-left: 10px;
	line-height: 28px;
}

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

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

.iodine .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .iodine .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .iodine .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .iodine .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .iodine .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: 28px;
	border-radius: 0;
	padding: 3px 5px;
	
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	border: none;
	color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-grid-row-selected > td {
	background: #0095f1;
}

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

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

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

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

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

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

.iodine .v-grid-column-resize-handle {
	position: absolute;
	width: 27px;
	right: -13.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-grid.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

.iodine .v-grid-header .v-grid-cell.dragged-column-header {
	margin-top: -14px;
}

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

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

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

.iodine .v-grid-row-selected  > .v-grid-cell {
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: #c1dff1;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #087ac0;
}

.iodine .v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: #58bfff;
}

.iodine .v-grid-editor {
	border-color: #0095f1;
}

.iodine .v-grid-editor-footer {
	font-size: 11px;
	padding: 0 5px;
	background: #fafafa;
}

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

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

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

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

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

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

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

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

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

.iodine .v-grid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 7px 0 13.5px;
}

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

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

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

.iodine .v-grid-editor-save, .iodine .v-grid-editor-cancel {
	cursor: pointer;
	color: #0095f1;
	text-decoration: underline;
	font-weight: inherit;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 5px;
	margin: 0;
	outline: none;
}

.iodine .v-grid-editor-save:hover, .iodine .v-grid-editor-cancel:hover {
	color: #25acff;
}

.iodine .v-grid-editor-save.v-disabled, .iodine .v-grid-editor-cancel.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: #0075be;
}

.iodine .v-grid-row-selected.v-grid-row-drag-top:before, .iodine .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: #0075be;
}

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

.iodine .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: 28px;
	border-radius: 2px;
	padding: 3px 6px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	width: 140px;
}

.iodine .v-textfield.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-textfield:focus {
	outline: none;
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .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: 21px;
	border-radius: 2px;
	padding: 2px 5px;
	
	
	font-size: 9px;
}

.iodine .v-textfield-compact, .iodine .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: 24px;
	border-radius: 2px;
	padding: 3px 5px;
	
	
}

.iodine .v-textfield-small {
	font-size: 11px;
}

.iodine .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: 34px;
	border-radius: 2px;
	padding: 4px 7px;
	
	
	font-size: 15px;
}

.iodine .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: 45px;
	border-radius: 2px;
	padding: 5px 9px;
	
	
	font-size: 20px;
}

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

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

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

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

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

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

.iodine .v-textfield-inline-icon  {
	padding-left: 28px;
}

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

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

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

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

.iodine .v-caption-inline-icon.v-caption-tiny span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 21px;
	line-height: 19px;
	text-align: center;
	font-size: 9px;
}

.iodine .v-caption-inline-icon.v-caption-tiny img.v-icon {
	left: 3px;
	bottom: 3px;
}

.iodine .v-textfield-inline-icon.v-textfield-tiny  {
	padding-left: 21px;
}

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

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

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

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

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

.iodine .v-caption-inline-icon.v-caption-compact img.v-icon {
	left: 4px;
	bottom: 4px;
}

.iodine .v-textfield-inline-icon.v-textfield-compact  {
	padding-left: 24px;
}

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

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

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

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

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

.iodine .v-caption-inline-icon.v-caption-small img.v-icon {
	left: 4px;
	bottom: 4px;
}

.iodine .v-textfield-inline-icon.v-textfield-small  {
	padding-left: 24px;
}

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

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

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

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

.iodine .v-caption-inline-icon.v-caption-large span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 34px;
	line-height: 32px;
	text-align: center;
	font-size: 15px;
}

.iodine .v-caption-inline-icon.v-caption-large img.v-icon {
	left: 9px;
	bottom: 9px;
}

.iodine .v-textfield-inline-icon.v-textfield-large  {
	padding-left: 34px;
}

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

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

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

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

.iodine .v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 45px;
	line-height: 43px;
	text-align: center;
	font-size: 20px;
}

.iodine .v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 15px;
	bottom: 15px;
}

.iodine .v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 45px;
}

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

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

.iodine .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: 28px;
	border-radius: 2px;
	padding: 5px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	height: auto;
	resize: none;
	white-space: pre-wrap;
	width: 140px;
}

.iodine .v-textarea.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-textarea:focus {
	outline: none;
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

.iodine .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: 21px;
	border-radius: 2px;
	padding: 5px;
	
	
	
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 9px;
}

.iodine .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: 24px;
	border-radius: 2px;
	padding: 5px;
	
	
	
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 11px;
}

.iodine .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: 34px;
	border-radius: 2px;
	padding: 5px;
	
	
	
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 15px;
}

.iodine .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: 45px;
	border-radius: 2px;
	padding: 5px;
	
	
	
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 20px;
}

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

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

.iodine .v-datefield {
	position: relative;
	width: 140px;
	height: 28px;
	border-radius: 2px;
}

.iodine .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: 28px;
	border-radius: 2px;
	padding: 3px 6px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	padding-left: 33.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.iodine .v-datefield [class*="textfield"].v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-datefield [class*="textfield"]:focus {
	outline: none;
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

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

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

.iodine .v-datefield [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
}

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

.iodine .v-datefield.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-datefield-full {
	width: 180px;
}

.iodine .v-datefield-day {
	width: 140px;
}

.iodine .v-datefield-month {
	width: 90px;
}

.iodine .v-datefield-year {
	width: 78px;
}

.iodine .v-datefield-popup {
	padding: 3px 3px;
	border-radius: 2px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 4px !important;
	margin-bottom: 4px !important;
	margin-right: 4px !important;
	cursor: default;
	width: auto;
}

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

.iodine .v-datefield-popup td {
	padding: 1px;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel {
	font-size: 12px;
	text-align: center;
}

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

.iodine .v-datefield-popup .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 22px;
	height: 20px;
	border: 1px solid transparent;
	line-height: 20px;
	text-align: center;
	font-size: 11px;
	background: #fafafa;
	border-radius: 1px;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: #0095f1;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .iodine .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c1dff1;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	border: none;
	font-weight: 600;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	position: relative;
}

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

.iodine .v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 20px;
	color: rgba(133, 133, 133, 0.85);
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 11px;
}

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

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

.iodine .v-datefield-popup td[class*="year"] button:before, .iodine .v-datefield-popup td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 16px;
	line-height: 18px;
}

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

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

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

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

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

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

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

.iodine .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 112px;
	cursor: default;
	color: #0095f1;
}

.iodine .v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 56px;
}

.iodine .v-datefield-popup .v-datefield-calendarpanel-weeknumber, .iodine .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 22px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 11px;
	display: inline-block;
	text-align: left;
}

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

.iodine .v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 29px;
	bottom: 0;
	left: 0;
	width: 26px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	background: #fafafa;
}

.iodine .v-datefield-popup td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 11px;
}

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

.iodine .v-datefield-calendarpanel {
	font-size: 12px;
	text-align: center;
}

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

.iodine .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 22px;
	height: 20px;
	border: 1px solid transparent;
	line-height: 20px;
	text-align: center;
	font-size: 11px;
	background: #fafafa;
	border-radius: 1px;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.iodine .v-datefield-calendarpanel-day:hover {
	color: #0095f1;
}

.iodine .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.iodine .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.iodine .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .iodine .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: #c1dff1;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	border: none;
	font-weight: 600;
}

.iodine .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	position: relative;
}

.iodine .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .iodine .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.iodine .v-datefield-calendarpanel-weekdays {
	height: 20px;
	color: rgba(133, 133, 133, 0.85);
}

.iodine .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 11px;
}

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

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

.iodine td[class*="year"] button:before, .iodine td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 16px;
	line-height: 18px;
}

.iodine td[class*="year"] button:hover:before, .iodine td[class*="month"] button:hover:before {
	color: #0095f1;
}

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

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

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

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

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

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

.iodine td.v-datefield-calendarpanel-month {
	width: 112px;
	cursor: default;
	color: #0095f1;
}

.iodine td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.iodine .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 56px;
}

.iodine .v-datefield-calendarpanel-weeknumber, .iodine .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 22px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 11px;
	display: inline-block;
	text-align: left;
}

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

.iodine .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 29px;
	bottom: 0;
	left: 0;
	width: 26px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	background: #fafafa;
}

.iodine td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 11px;
}

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

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

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

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

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

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

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

.iodine .v-datefield-tiny {
	height: 21px;
	border-radius: 2px;
	font-size: 9px;
}

.iodine .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: 21px;
	border-radius: 2px;
	padding: 2px 5px;
	
	
	
	padding-left: 25.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.iodine .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: 21px;
	line-height: 21px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 2px 0 0 2px;
}

.iodine .v-datefield-tiny [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
}

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

.iodine .v-datefield-tiny.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

.iodine .v-datefield-compact, .iodine .v-datefield-small {
	height: 24px;
	border-radius: 2px;
}

.iodine .v-datefield-compact [class*="textfield"], .iodine .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: 24px;
	border-radius: 2px;
	padding: 3px 5px;
	
	
	
	padding-left: 28.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

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

.iodine .v-datefield-compact [class*="button"]:before, .iodine .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
}

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

.iodine .v-datefield-compact.v-disabled, .iodine .v-datefield-small.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

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

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

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

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

.iodine .v-datefield-small {
	font-size: 11px;
}

.iodine .v-datefield-large {
	height: 34px;
	border-radius: 2px;
	font-size: 15px;
}

.iodine .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: 34px;
	border-radius: 2px;
	padding: 4px 7px;
	
	
	
	padding-left: 40.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.iodine .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: 34px;
	line-height: 34px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 2px 0 0 2px;
}

.iodine .v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
}

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

.iodine .v-datefield-large.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

.iodine .v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

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

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

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

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

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

.iodine .v-datefield-huge {
	height: 45px;
	border-radius: 2px;
	font-size: 20px;
}

.iodine .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: 45px;
	border-radius: 2px;
	padding: 5px 9px;
	
	
	
	padding-left: 54.0px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.iodine .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: 45px;
	line-height: 45px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	border-radius: 2px 0 0 2px;
}

.iodine .v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
}

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

.iodine .v-datefield-huge.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

.iodine .v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

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

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

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

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

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

.iodine .v-inline-datefield-calendarpanel {
	font-size: 12px;
	text-align: center;
}

.iodine .v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.iodine .v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 22px;
	height: 20px;
	border: 1px solid transparent;
	line-height: 20px;
	text-align: center;
	font-size: 11px;
	background: #fafafa;
	border-radius: 1px;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.iodine .v-inline-datefield-calendarpanel-day:hover {
	color: #0095f1;
}

.iodine .v-inline-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.iodine .v-inline-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.iodine .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .iodine .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: #c1dff1;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	border: none;
	font-weight: 600;
}

.iodine .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	position: relative;
}

.iodine .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .iodine .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.iodine .v-inline-datefield-calendarpanel-weekdays {
	height: 20px;
	color: rgba(133, 133, 133, 0.85);
}

.iodine .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 11px;
}

.iodine .v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

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

.iodine td[class*="year"] button:before, .iodine td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 16px;
	line-height: 18px;
}

.iodine td[class*="year"] button:hover:before, .iodine td[class*="month"] button:hover:before {
	color: #0095f1;
}

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

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

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

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

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

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

.iodine td.v-inline-datefield-calendarpanel-month {
	width: 112px;
	cursor: default;
	color: #0095f1;
}

.iodine td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.iodine .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 56px;
}

.iodine .v-inline-datefield-calendarpanel-weeknumber, .iodine .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 22px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 11px;
	display: inline-block;
	text-align: left;
}

.iodine .v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.iodine .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 29px;
	bottom: 0;
	left: 0;
	width: 26px;
	border-top: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	background: #fafafa;
}

.iodine td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 11px;
}

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

.iodine .v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 5px;
}

.iodine .v-gridlayout-margin-top {
	padding-top: 28px;
}

.iodine .v-gridlayout-margin-bottom {
	padding-bottom: 28px;
}

.iodine .v-gridlayout-margin-left {
	padding-left: 28px;
}

.iodine .v-gridlayout-margin-right {
	padding-right: 28px;
}

.iodine .v-gridlayout-spacing-on {
	padding-left: 9px;
	padding-top: 9px;
}

.iodine .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	cursor: default;
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	text-align: left;
	line-height: 26px;
}

.iodine .v-menubar:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .v-menubar.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-menubar.v-disabled:after {
	display: none;
}

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

.iodine .v-menubar:focus:after {
	border-color: #0095f1;
}

.iodine .v-menubar  > .v-menubar-menuitem {
	padding: 0 11px;
}

.iodine .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 28px;
}

.iodine .v-menubar:active:after {
	background: transparent;
}

.iodine .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 28px;
	padding: 0 12px;
	color: inherit;
	font-weight: 500;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	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;
}

.iodine .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 1px 0 0 1px;
}

.iodine .v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 1px 1px 0;
	border-right-width: 0;
}

.iodine .v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 1px;
}

.iodine .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.iodine .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.iodine .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 3px 0 -3px;
	cursor: inherit;
}

.iodine .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 28px;
	padding: 0;
}

.iodine .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.iodine .v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #ededed;
	background-image: -webkit-linear-gradient(bottom, #ededed 0%, #ededed 100%);
	background-image: linear-gradient(to top,#ededed 0%, #ededed 100%);
	color: #181818;
}

.iodine .v-disabled > .v-menubar-menuitem, .iodine .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.iodine .v-disabled > .v-menubar-menuitem:before, .iodine .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.iodine .v-menubar-menuitem-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-menubar > .v-menubar-menuitem-selected {
	color: #eaf3f9;
	
	
	
	border-radius: 0;
	border: 1px solid #0075be;
	border-top-color: #0075be;
	border-bottom-color: #0075be;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	-webkit-box-shadow: inset 0 1px 0 #2aa3ff, inset 0 -1px 0 #008fe5;
	box-shadow: inset 0 1px 0 #2aa3ff, inset 0 -1px 0 #008fe5;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.iodine .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.iodine .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

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

.iodine .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

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

.iodine .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.iodine .v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 20px;
	padding: 0 14px 0 7px;
	border-radius: 1px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 24px;
	padding-right: 28px;
	position: relative;
}

.iodine .v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0068a9;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.iodine .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 20px;
	margin-right: 4px;
	min-width: 1em;
}

.iodine .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.iodine .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 7px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 22px;
}

.iodine .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: #eaf3f9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.iodine .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 3px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
}

.iodine .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 7px;
}

.iodine .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.iodine .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.iodine .v-menubar-small {
	height: 24px;
	padding: 0 11px;
	
	font-weight: 500;
	
	cursor: default;
	border-radius: 2px;
	padding: 0;
	text-align: left;
	line-height: 22px;
	font-size: 11px;
}

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

.iodine .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 9px;
}

.iodine .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 24px;
}

.iodine .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.iodine .v-menubar-borderless:focus:after {
	display: none;
}

.iodine .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 2px;
	color: #0095f1;
	padding: 0 9px;
}

.iodine .v-menubar-borderless .v-menubar-menuitem:first-child, .iodine .v-menubar-borderless .v-menubar-menuitem:last-child, .iodine .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 2px;
}

.iodine .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.iodine .v-menubar-borderless .v-menubar-menuitem:hover {
	color: #25acff;
}

.iodine .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.iodine .v-menubar-borderless .v-menubar-menuitem-checked, .iodine .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #0095f1;
}

.iodine .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .iodine .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.iodine .v-menubar-borderless .v-menubar-menuitem-selected {
	color: #eaf3f9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.iodine .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: #eaf3f9;
}

.iodine .v-menubar-borderless .v-menubar-menuitem-disabled, .iodine .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.iodine .v-radiobutton {
	position: relative;
	line-height: 14px;
	white-space: nowrap;
}

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

:root .iodine .v-radiobutton {
	padding-left: 19px;
}

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

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

:root .iodine .v-radiobutton > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .iodine .v-radiobutton > input ~ label:before, :root .iodine .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: 2px;
	font-size: 10px;
	text-align: center;
}

:root .iodine .v-radiobutton > input ~ label:before {
	height: 14px;
	padding: 0 7px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 14px;
}

:root .iodine .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
}

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

:root .iodine .v-radiobutton > input:checked ~ label:after {
	color: #0095f1;
}

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

.iodine .v-radiobutton.v-disabled  > label, .iodine .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

:root .iodine .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

:root .iodine .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 5px;
	left: 5px;
	background: #0095f1;
}

:root .iodine .v-radiobutton > input ~ label:before, :root .iodine .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.iodine .v-select-optiongroup .v-radiobutton, .iodine .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 7px 12px 0 0;
}

.iodine .v-select-optiongroup .v-radiobutton:first-child, .iodine .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 5px;
}

.iodine .v-select-optiongroup .v-radiobutton:last-child, .iodine .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 5px;
}

.iodine .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.iodine .v-select-optiongroup-small {
	font-size: 11px;
}

.iodine .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 12px;
	white-space: nowrap;
}

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

:root .iodine .v-select-optiongroup-small .v-checkbox {
	padding-left: 16px;
}

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

:root .iodine .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 .iodine .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .iodine .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 12px;
	padding: 0 6px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 12px;
}

:root .iodine .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
}

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

:root .iodine .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: #0095f1;
}

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

.iodine .v-select-optiongroup-small .v-checkbox.v-disabled  > label, .iodine .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

:root .iodine .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 12px;
	white-space: nowrap;
}

.iodine .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton {
	padding-left: 16px;
}

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

:root .iodine .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 .iodine .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .iodine .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .iodine .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	font-size: 8px;
	text-align: center;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 12px;
	padding: 0 6px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 12px;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .iodine .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: #0095f1;
}

.iodine .v-select-optiongroup-small .v-radiobutton > .v-icon, .iodine .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 4px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.iodine .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .iodine .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.iodine .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .iodine .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.iodine .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 4px;
	height: 4px;
	top: 4px;
	left: 4px;
	background: #0095f1;
}

:root .iodine .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .iodine .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.iodine .v-select-optiongroup-small .v-radiobutton, .iodine .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 6px 12px 0 0;
}

.iodine .v-select-optiongroup-small .v-radiobutton:first-child, .iodine .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 4px;
}

.iodine .v-select-optiongroup-small .v-radiobutton:last-child, .iodine .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 4px;
}

.iodine .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.iodine .v-select-optiongroup-large {
	font-size: 15px;
}

.iodine .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 17px;
	white-space: nowrap;
}

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

:root .iodine .v-select-optiongroup-large .v-checkbox {
	padding-left: 23px;
}

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

:root .iodine .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 .iodine .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

:root .iodine .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 17px;
	padding: 0 8px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 17px;
}

:root .iodine .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
}

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

:root .iodine .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: #0095f1;
}

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

.iodine .v-select-optiongroup-large .v-checkbox.v-disabled  > label, .iodine .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

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

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

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

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

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

:root .iodine .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 17px;
	white-space: nowrap;
}

.iodine .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton {
	padding-left: 23px;
}

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

:root .iodine .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 .iodine .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .iodine .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .iodine .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 17px;
	height: 17px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	font-size: 12px;
	text-align: center;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 17px;
	padding: 0 8px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 17px;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .iodine .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: #0095f1;
}

.iodine .v-select-optiongroup-large .v-radiobutton > .v-icon, .iodine .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.iodine .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .iodine .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.iodine .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .iodine .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.iodine .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 6px;
	left: 6px;
	background: #0095f1;
}

:root .iodine .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .iodine .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.iodine .v-select-optiongroup-large .v-radiobutton, .iodine .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 9px 12px 0 0;
}

.iodine .v-select-optiongroup-large .v-radiobutton:first-child, .iodine .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 6px;
}

.iodine .v-select-optiongroup-large .v-radiobutton:last-child, .iodine .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 6px;
}

.iodine .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.iodine .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.iodine .v-select-optiongroup-horizontal .v-radiobutton, .iodine .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.iodine .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.iodine .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.iodine .v-link {
	cursor: pointer;
	color: #0095f1;
	text-decoration: underline;
	font-weight: inherit;
}

.iodine .v-link:hover {
	color: #25acff;
}

.iodine .v-link.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-link a {
	cursor: pointer;
	color: #0095f1;
	text-decoration: underline;
	font-weight: inherit;
	cursor: inherit;
	color: inherit;
	text-decoration: inherit;
}

.iodine .v-link a:hover {
	color: #25acff;
}

.iodine .v-link a.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-link .v-icon {
	cursor: inherit;
}

.iodine .v-link-small {
	font-size: 11px;
}

.iodine .v-link-large {
	font-size: 15px;
}

.iodine .v-window {
	padding: 3px 3px;
	border-radius: 2px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 16px 80px -6px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	padding: 0;
	min-width: 112px !important;
	min-height: 28px !important;
	white-space: nowrap;
	overflow: hidden !important;
}

.iodine .v-window-modalitycurtain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #222;
	background-image: -webkit-radial-gradient(50% 50%, circle, #222, #222222);
	background-image: radial-gradient(  circle at 50% 50%, #222, #222222);
	opacity: 0.8;
	filter: alpha(opacity=80) ;
}

.iodine .v-window-draggingCurtain {
	position: fixed !important;
}

.iodine .v-window-resizingCurtain + .v-window, .iodine .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

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

.iodine .v-window-outerheader:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
}

.iodine .v-window-header {
	line-height: 27px;
	padding-left: 9px;
	margin-right: 56px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.iodine .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .iodine .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 28px;
}

.iodine .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .iodine .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 9px;
}

.iodine .v-window-closebox, .iodine .v-window-maximizebox, .iodine .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 25px;
	height: 27px;
	background-color: white;
	line-height: 25px;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	color: #999999;
}

.iodine .v-window-closebox:focus, .iodine .v-window-maximizebox:focus, .iodine .v-window-restorebox:focus {
	outline: none;
}

.iodine .v-window-closebox:hover, .iodine .v-window-maximizebox:hover, .iodine .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: #0095f1;
}

.iodine .v-window-closebox:active, .iodine .v-window-maximizebox:active, .iodine .v-window-restorebox:active {
	color: inherit;
}

.iodine .v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 2px;
	border-radius: 2px;
}

.iodine .v-window-maximizebox:focus::after, .iodine .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 2px;
	bottom: 5px;
	left: 5px;
	border-radius: 2px;
}

.iodine .v-window-closebox {
	padding-right: 3px;
	border-radius: 0 2px 0 2px;
}

.iodine .v-window-closebox:before {
	content: "\00d7";
}

.iodine .v-window-maximizebox, .iodine .v-window-restorebox {
	right: 25px;
	padding-left: 3px;
	border-radius: 0 0 0 2px;
}

.iodine .v-window-maximizebox  + .v-window-closebox, .iodine .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.iodine .v-window-closebox-disabled, .iodine .v-window-resizebox-disabled, .iodine .v-window-restorebox-disabled, .iodine .v-window-maximizebox-disabled {
	display: none;
}

.iodine .v-window-closebox-disabled  + .v-window-closebox, .iodine .v-window-resizebox-disabled  + .v-window-closebox, .iodine .v-window-restorebox-disabled  + .v-window-closebox, .iodine .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 28px;
	padding-right: 0;
	border-bottom-left-radius: 2px;
}

.iodine .v-window-closebox-disabled  + .v-window-closebox:focus::after, .iodine .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .iodine .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .iodine .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 5px;
}

.iodine .v-window-maximizebox:before {
	content: "+";
}

.iodine .v-window-restorebox:before {
	content: "\2013";
}

.iodine .v-window > .popupContent, .iodine .v-window-wrap, .iodine .v-window-contents, .iodine .v-window-contents > .v-scrollable {
	height: 100%;
}

.iodine .v-window-contents {
	box-sizing: border-box;
	border-radius: 2px;
	margin-top: 0 !important;
}

.iodine .v-window-contents  > .v-scrollable {
	position: relative;
}

.iodine .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 9px;
}

.iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .iodine .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 9px;
}

.iodine .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.iodine .v-window-contents  > .v-scrollable:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid white;
	left: 0;
	right: 0;
}

.iodine .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #dfdfdf;
}

.iodine .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.iodine .v-window-footer {
	height: 0;
}

.iodine .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 14px;
	height: 14px;
	cursor: nwse-resize;
}

.iodine .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.iodine .v-window-top-toolbar  > .v-widget, .iodine .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.iodine .v-window-top-toolbar .v-label, .iodine .v-window-bottom-toolbar .v-label {
	line-height: 27px;
}

.iodine .v-window-top-toolbar .v-spacing, .iodine .v-window-bottom-toolbar .v-spacing {
	width: 5px;
}

.iodine .v-window-top-toolbar.v-layout {
	padding: 6px 9px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	background-color: #fafafa;
}

.iodine .v-window-top-toolbar.v-menubar {
	margin: 9px 9px 5px;
}

.iodine .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 5px;
	padding-right: 5px;
	margin: 4px 0;
}

.iodine .v-window-bottom-toolbar.v-layout {
	padding: 6px 9px;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0, #fafafa 3px);
	background-image: linear-gradient(to bottom,#fafafa 0, #fafafa 3px);
	border-top: 1px solid #dfdfdf;
	border-radius: 0 0 2px 2px;
}

.iodine .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -9px -9px 0;
}

.iodine .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.iodine .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -4px -4px 0;
	padding: 0;
}

.iodine .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -9px -9px;
}

.iodine .v-tree {
	position: relative;
	white-space: nowrap;
}

.iodine .v-tree:focus {
	outline: none;
}

.iodine .v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 22px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.iodine .v-tree-node-caption {
	height: 22px;
	line-height: 21px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.iodine .v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

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

.iodine .v-tree-node-caption span {
	padding-right: 22px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .iodine .v-tree-node-caption span {
	width: auto;
}

.iodine .v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.iodine .v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -22px;
	width: 100%;
	height: 22px;
	border-radius: 2px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	transition: opacity 120ms;
}

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

.iodine .v-tree-node-leaf:before, .iodine .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.iodine .v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid #0095f1;
}

.iodine .v-tree-node-selected {
	color: #eaf3f9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.iodine .v-tree-node-selected:after {
	opacity: 1;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	border: none;
}

.iodine .v-tree-node-children {
	padding-left: 14px;
}

.iodine .v-tree-node-drag-top:before, .iodine .v-tree-node-drag-bottom:after, .iodine .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: #0095f1;
	font-size: 24px;
	line-height: 2px;
	color: #0095f1;
	text-indent: -3px;
	text-shadow: 0 0 1px #fafafa, 0 0 1px #fafafa;
	opacity: 1;
	visibility: visible;
}

.iodine .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.iodine .v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px #0095f1;
	box-shadow: 0 0 0 2px #0095f1;
	position: relative;
	border-radius: 2px;
}

.v-ff .iodine .v-tree-node-drag-top:before, .v-ff .iodine .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.iodine .v-tree8 {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.iodine .v-tree8-row {
	display: block;
}

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

.iodine .v-tree8-row {
	width: inherit;
}

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

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

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

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

.iodine .v-tree8 {
	outline: none;
}

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

.iodine .v-tree8-scroller-vertical {
	border-left: none;
}

.iodine .v-tree8-scroller-horizontal {
	border-top: none;
}

.iodine .v-tree8-tablewrapper {
	border: 1px solid #d4d4d4;
}

.iodine .v-tree8 .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.iodine .v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.iodine .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.iodine .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: #0095f1;
	position: absolute;
	width: 3px;
}

.iodine .v-tree8-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.iodine .v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.iodine .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;
}

.iodine .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.iodine .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

.iodine .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 10px;
}

.iodine .v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.iodine .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.iodine .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 10px;
	line-height: 1;
}

.v-ie .iodine .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

.iodine .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.iodine .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.iodine .v-tree8-cell {
	background-color: white;
	padding: 0 13.5px;
	line-height: 28px;
	text-overflow: ellipsis;
}

.iodine .v-tree8-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.iodine .v-tree8-cell  > div {
	display: inline-block;
}

.iodine .v-tree8-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.iodine .v-tree8-cell.frozen  + th, .iodine .v-tree8-cell.frozen  + td {
	border-left: none;
}

.iodine .v-tree8-cell div.component-wrap {
	width: 100%;
}

.iodine .v-tree8-row > td, .iodine .v-tree8-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.iodine .v-tree8-row > td:first-child, .iodine .v-tree8-editor-cells > div:first-child {
	border-left: none;
}

.iodine .v-tree8-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.iodine .v-tree8-row-stripe > td {
	background-color: #f5f5f5;
}

.iodine .v-tree8-row-selected > td {
	background: #0095f1;
}

.iodine .v-tree8-row-focused > td {
	
}

.iodine .v-tree8-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 10px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.iodine .v-tree8-header th:first-child {
	border-left: none;
}

.iodine .v-tree8-header .sort-asc, .iodine .v-tree8-header .sort-desc {
	padding-right: 25.5px;
}

.iodine .v-tree8-header .sort-asc:after, .iodine .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 13.5px;
	font-size: 9px;
}

.iodine .v-tree8-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.iodine .v-tree8-column-resize-handle {
	position: absolute;
	width: 27px;
	right: -13.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;
}

.iodine .v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 13.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;
}

.iodine .v-tree8-footer td {
	background-color: #fafafa;
	font-size: 10px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.iodine .v-tree8-footer td:first-child {
	border-left: none;
}

.iodine .v-tree8-header .v-tree8-cell, .iodine .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

.iodine .v-tree8-column-header-content, .iodine .v-tree8-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 28px;
	vertical-align: baseline;
}

.iodine .v-tree8-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.iodine .v-tree8-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.iodine .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.iodine .v-tree8-cell-focused {
	position: relative;
}

.iodine .v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0095f1;
	display: none;
	pointer-events: none;
}

.iodine .v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.iodine .v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.iodine .v-tree8-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.iodine .v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.iodine .v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.iodine .v-tree8-editor-cells.frozen {
	z-index: 2;
}

.iodine .v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.iodine .v-tree8-editor-cells  > div:first-child {
	border-left: none;
}

.iodine .v-tree8-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.iodine .v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.iodine .v-tree8-editor-cells  > div input[type="text"], .iodine .v-tree8-editor-cells  > div input[type="text"].v-filterselect-input, .iodine .v-tree8-editor-cells  > div input[type="password"] {
	padding-left: 13.5px;
}

.iodine .v-tree8-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .iodine .v-tree8-editor-cells  > div input[type="password"] {
	padding-right: 6.75px;
}

.iodine .v-tree8-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 13.5px;
}

.iodine .v-tree8-editor-cells  > div .v-textfield, .iodine .v-tree8-editor-cells  > div .v-datefield, .iodine .v-tree8-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.iodine .v-tree8-editor-cells  > div .v-select, .iodine .v-tree8-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.iodine .v-tree8-editor-cells  > div.not-editable.v-tree8-cell {
	float: none;
}

.iodine .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;
}

.iodine .v-tree8-editor-cells .error, .iodine .v-tree8-editor-cells .error > input {
	background-color: #fee;
}

.iodine .v-tree8-editor-footer {
	display: table;
	height: 28px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.iodine .v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.iodine .v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.iodine .v-tree8-editor-message, .iodine .v-tree8-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.iodine .v-tree8-editor-message {
	width: 100%;
	position: relative;
}

.iodine .v-tree8-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 28px;
	top: 0;
}

.iodine .v-tree8-editor-save {
	margin-right: 4px;
}

.iodine .v-tree8-spacer {
	padding-left: 1px;
}

.iodine .v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.iodine .v-tree8-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.iodine .v-tree8-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.iodine .v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #0095f1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.iodine .v-tree8-cell > .v-progressbar {
	width: 100%;
}

.iodine .v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.iodine .v-tree8.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-tree8-header .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iodine .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;
}

.iodine .v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -14px;
}

.iodine .v-tree8-footer .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iodine .v-tree8-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.iodine .v-tree8-footer-deco, .iodine .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.iodine .v-tree8-row-selected  > .v-tree8-cell {
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: #c1dff1;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #087ac0;
}

.iodine .v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: #58bfff;
}

.iodine .v-tree8-editor {
	border-color: #0095f1;
}

.iodine .v-tree8-editor-footer {
	font-size: 11px;
	padding: 0 5px;
	background: #fafafa;
}

.iodine .v-tree8-editor-cells {
	z-index: 1;
}

.iodine .v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.iodine .v-tree8-editor-cells > div.not-editable.v-tree8-cell {
	float: none;
}

.iodine .v-tree8-editor-cells > div .error::before {
	border-top: 7px solid #ed473b;
	border-right: 7px solid transparent;
}

.iodine .v-tree8-editor-cells > div .error, .iodine .v-tree8-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.iodine .v-tree8-editor-cells > div .v-textfield, .iodine .v-tree8-editor-cells > div .v-textfield-focus, .iodine .v-tree8-editor-cells > div .v-datefield, .iodine .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .iodine .v-tree8-editor-cells > div .v-filterselect-input, .iodine .v-tree8-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.iodine .v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 33.6px;
}

.iodine .v-tree8-editor-cells > div .v-textfield-focus, .iodine .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .iodine .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.iodine .v-tree8-editor-cells > div .v-select {
	padding-left: 7px;
	padding-right: 7px;
}

.iodine .v-tree8-editor-cells > div .v-checkbox.v-widget {
	margin: 0 7px 0 13.5px;
}

.iodine .v-tree8-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.iodine .v-tree8-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.iodine .v-tree8-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 14px;
	text-align: center;
	content: "!";
}

.iodine .v-tree8-editor-save, .iodine .v-tree8-editor-cancel {
	cursor: pointer;
	color: #0095f1;
	text-decoration: underline;
	font-weight: inherit;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 5px;
	margin: 0;
	outline: none;
}

.iodine .v-tree8-editor-save:hover, .iodine .v-tree8-editor-cancel:hover {
	color: #25acff;
}

.iodine .v-tree8-editor-save.v-disabled, .iodine .v-tree8-editor-cancel.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-tree8-spacer {
	margin-top: -1px;
}

.iodine .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.iodine .v-tree8-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.iodine .v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.iodine .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;
}

.iodine .v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.iodine .v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.iodine .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;
}

.iodine .v-tree8-row-drag-top, .iodine .v-tree8-row-drag-bottom {
	z-index: 100;
}

.iodine .v-tree8-row-drag-top:before, .iodine .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #0095f1;
	pointer-events: none;
	border: none;
}

.iodine .v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.iodine .v-tree8-row-drag-top:before {
	top: -1px;
}

.iodine .v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.iodine .v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #0095f1;
	pointer-events: none;
}

.iodine .v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: #0075be;
}

.iodine .v-tree8-row-selected.v-tree8-row-drag-top:before, .iodine .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: #0075be;
}

.iodine .v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #0095f1;
	z-index: 100;
}

.iodine .v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.iodine .v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.iodine .v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.iodine .v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.iodine .v-tree8-expander.collapse-disabled::before {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
	cursor: default;
}

.iodine .v-tree8-node.depth-0 {
	padding-left: 0em;
}

.iodine .v-tree8-node.depth-1 {
	padding-left: 1em;
}

.iodine .v-tree8-node.depth-2 {
	padding-left: 2em;
}

.iodine .v-tree8-node.depth-3 {
	padding-left: 3em;
}

.iodine .v-tree8-node.depth-4 {
	padding-left: 4em;
}

.iodine .v-tree8-node.depth-5 {
	padding-left: 5em;
}

.iodine .v-tree8-node.depth-6 {
	padding-left: 6em;
}

.iodine .v-tree8-node.depth-7 {
	padding-left: 7em;
}

.iodine .v-tree8-node.depth-8 {
	padding-left: 8em;
}

.iodine .v-tree8-node.depth-9 {
	padding-left: 9em;
}

.iodine .v-tree8-node.depth-10 {
	padding-left: 10em;
}

.iodine .v-tree8-node.depth-11 {
	padding-left: 11em;
}

.iodine .v-tree8-node.depth-12 {
	padding-left: 12em;
}

.iodine .v-tree8-node.depth-13 {
	padding-left: 13em;
}

.iodine .v-tree8-node.depth-14 {
	padding-left: 14em;
}

.iodine .v-tree8-node.depth-15 {
	padding-left: 15em;
}

.iodine .v-tree8-node.depth-16 {
	padding-left: 16em;
}

.iodine .v-tree8-node.depth-17 {
	padding-left: 17em;
}

.iodine .v-tree8-node.depth-18 {
	padding-left: 18em;
}

.iodine .v-tree8-node.depth-19 {
	padding-left: 19em;
}

.iodine .v-tree8-node.depth-20 {
	padding-left: 20em;
}

.iodine .v-tree8-node.depth-21 {
	padding-left: 21em;
}

.iodine .v-tree8-node.depth-22 {
	padding-left: 22em;
}

.iodine .v-tree8-node.depth-23 {
	padding-left: 23em;
}

.iodine .v-tree8-node.depth-24 {
	padding-left: 24em;
}

.iodine .v-tree8-node.depth-25 {
	padding-left: 25em;
}

.iodine .v-tree8-node.depth-26 {
	padding-left: 26em;
}

.iodine .v-tree8-node.depth-27 {
	padding-left: 27em;
}

.iodine .v-tree8-node.depth-28 {
	padding-left: 28em;
}

.iodine .v-tree8-node.depth-29 {
	padding-left: 29em;
}

.iodine .v-tree8-node.depth-30 {
	padding-left: 30em;
}

.iodine .v-tree8-node.depth-31 {
	padding-left: 31em;
}

.iodine .v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.iodine .v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0095f1;
	display: none;
	pointer-events: none;
}

.iodine .v-tree8-cell-focused {
	position: static;
}

.iodine .v-tree8-cell-focused::before {
	display: none;
}

.iodine .v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.iodine .v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.iodine .v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.iodine .v-tree8 {
	background-color: transparent;
}

.iodine .v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.iodine .v-tree8-row > td  > * {
	vertical-align: baseline;
}

.iodine .v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.iodine .v-tree8-row::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	pointer-events: none;
	border-width: 1px;
}

.iodine .v-tree8-cell {
	position: relative;
}

.iodine .v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.iodine .v-tree8-row-selected::before {
	display: block;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
}

.iodine .v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px #c1dff1;
}

.iodine .v-tree8-scroller-vertical {
	border: none;
}

.iodine .v-tree8-scroller-horizontal {
	border: none;
}

.iodine .v-tree8-header-deco, .iodine .v-tree8-footer-deco, .iodine .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.iodine .v-treegrid {
	position: relative;
}

.iodine .v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.iodine .v-treegrid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.iodine .v-treegrid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.iodine .v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.iodine .v-treegrid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.iodine .v-treegrid-header-deco, .iodine .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.iodine .v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.iodine .v-treegrid-header, .iodine .v-treegrid-body, .iodine .v-treegrid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.iodine .v-treegrid-header, .iodine .v-treegrid-header-deco {
	top: 0;
}

.iodine .v-treegrid-footer, .iodine .v-treegrid-footer-deco {
	bottom: 0;
}

.iodine .v-treegrid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.iodine .v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.iodine .v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.iodine .v-treegrid-row {
	display: block;
}

.iodine .v-treegrid-row  > td, .iodine .v-treegrid-row  > th {
	background-color: white;
}

.iodine .v-treegrid-row {
	width: inherit;
}

.iodine .v-treegrid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 12px;
}

.iodine .v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.iodine .v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.iodine .v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.iodine .v-treegrid {
	outline: none;
}

.iodine .v-treegrid-scroller-vertical, .iodine .v-treegrid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.iodine .v-treegrid-scroller-vertical {
	border-left: none;
}

.iodine .v-treegrid-scroller-horizontal {
	border-top: none;
}

.iodine .v-treegrid-tablewrapper {
	border: 1px solid #d4d4d4;
}

.iodine .v-treegrid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.iodine .v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.iodine .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-cell {
	border: 1px solid #d4d4d4;
	margin-top: -10px;
	opacity: 0.9;
	filter: alpha(opacity=90);
	z-index: 30000;
}

.iodine .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: #0095f1;
	position: absolute;
	width: 3px;
}

.iodine .v-treegrid-sidebar.v-contextmenu {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	padding: 0;
	z-index: 5;
}

.iodine .v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.iodine .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;
}

.iodine .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.iodine .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.iodine .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 10px;
}

.iodine .v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.iodine .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.iodine .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 10px;
	line-height: 1;
}

.v-ie .iodine .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

.iodine .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.iodine .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.iodine .v-treegrid-cell {
	background-color: white;
	padding: 0 13.5px;
	line-height: 28px;
	text-overflow: ellipsis;
}

.iodine .v-treegrid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.iodine .v-treegrid-cell  > div {
	display: inline-block;
}

.iodine .v-treegrid-cell.frozen {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	position: relative;
	z-index: 11;
}

.iodine .v-treegrid-cell.frozen  + th, .iodine .v-treegrid-cell.frozen  + td {
	border-left: none;
}

.iodine .v-treegrid-cell div.component-wrap {
	width: 100%;
}

.iodine .v-treegrid-row > td, .iodine .v-treegrid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.iodine .v-treegrid-row > td:first-child, .iodine .v-treegrid-editor-cells > div:first-child {
	border-left: none;
}

.iodine .v-treegrid-editor-cells.frozen > div {
	-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
	border-right: 1px solid #d4d4d4;
	border-left: none;
}

.iodine .v-treegrid-row-stripe > td {
	background-color: #f5f5f5;
}

.iodine .v-treegrid-row-selected > td {
	background: #0095f1;
}

.iodine .v-treegrid-row-focused > td {
	
}

.iodine .v-treegrid-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 10px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.iodine .v-treegrid-header th:first-child {
	border-left: none;
}

.iodine .v-treegrid-header .sort-asc, .iodine .v-treegrid-header .sort-desc {
	padding-right: 25.5px;
}

.iodine .v-treegrid-header .sort-asc:after, .iodine .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 13.5px;
	font-size: 9px;
}

.iodine .v-treegrid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.iodine .v-treegrid-column-resize-handle {
	position: absolute;
	width: 27px;
	right: -13.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;
}

.iodine .v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 13.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;
}

.iodine .v-treegrid-footer td {
	background-color: #fafafa;
	font-size: 10px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.iodine .v-treegrid-footer td:first-child {
	border-left: none;
}

.iodine .v-treegrid-header .v-treegrid-cell, .iodine .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

.iodine .v-treegrid-column-header-content, .iodine .v-treegrid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 28px;
	vertical-align: baseline;
}

.iodine .v-treegrid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.iodine .v-treegrid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.iodine .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.iodine .v-treegrid-cell-focused {
	position: relative;
}

.iodine .v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0095f1;
	display: none;
	pointer-events: none;
}

.iodine .v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.iodine .v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.iodine .v-treegrid-editor {
	position: absolute;
	z-index: 20;
	overflow: hidden;
	left: 0;
	right: 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: -1px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.iodine .v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.iodine .v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.iodine .v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.iodine .v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.iodine .v-treegrid-editor-cells  > div:first-child {
	border-left: none;
}

.iodine .v-treegrid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.iodine .v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.iodine .v-treegrid-editor-cells  > div input[type="text"], .iodine .v-treegrid-editor-cells  > div input[type="text"].v-filterselect-input, .iodine .v-treegrid-editor-cells  > div input[type="password"] {
	padding-left: 13.5px;
}

.iodine .v-treegrid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .iodine .v-treegrid-editor-cells  > div input[type="password"] {
	padding-right: 6.75px;
}

.iodine .v-treegrid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 13.5px;
}

.iodine .v-treegrid-editor-cells  > div .v-textfield, .iodine .v-treegrid-editor-cells  > div .v-datefield, .iodine .v-treegrid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.iodine .v-treegrid-editor-cells  > div .v-select, .iodine .v-treegrid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.iodine .v-treegrid-editor-cells  > div.not-editable.v-treegrid-cell {
	float: none;
}

.iodine .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;
}

.iodine .v-treegrid-editor-cells .error, .iodine .v-treegrid-editor-cells .error > input {
	background-color: #fee;
}

.iodine .v-treegrid-editor-footer {
	display: table;
	height: 28px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.iodine .v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.iodine .v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.iodine .v-treegrid-editor-message, .iodine .v-treegrid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.iodine .v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

.iodine .v-treegrid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 28px;
	top: 0;
}

.iodine .v-treegrid-editor-save {
	margin-right: 4px;
}

.iodine .v-treegrid-spacer {
	padding-left: 1px;
}

.iodine .v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.iodine .v-treegrid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.iodine .v-treegrid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.iodine .v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: #0095f1;
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.iodine .v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.iodine .v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.iodine .v-treegrid.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-treegrid-header .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iodine .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;
}

.iodine .v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -14px;
}

.iodine .v-treegrid-footer .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iodine .v-treegrid-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.iodine .v-treegrid-footer-deco, .iodine .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.iodine .v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: #c1dff1;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	border-color: #087ac0;
}

.iodine .v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: #58bfff;
}

.iodine .v-treegrid-editor {
	border-color: #0095f1;
}

.iodine .v-treegrid-editor-footer {
	font-size: 11px;
	padding: 0 5px;
	background: #fafafa;
}

.iodine .v-treegrid-editor-cells {
	z-index: 1;
}

.iodine .v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.iodine .v-treegrid-editor-cells > div.not-editable.v-treegrid-cell {
	float: none;
}

.iodine .v-treegrid-editor-cells > div .error::before {
	border-top: 7px solid #ed473b;
	border-right: 7px solid transparent;
}

.iodine .v-treegrid-editor-cells > div .error, .iodine .v-treegrid-editor-cells > div .error > input {
	background-color: #fffbfb;
}

.iodine .v-treegrid-editor-cells > div .v-textfield, .iodine .v-treegrid-editor-cells > div .v-textfield-focus, .iodine .v-treegrid-editor-cells > div .v-datefield, .iodine .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .iodine .v-treegrid-editor-cells > div .v-filterselect-input, .iodine .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 #f2f2f2;
}

.iodine .v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 33.6px;
}

.iodine .v-treegrid-editor-cells > div .v-textfield-focus, .iodine .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .iodine .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.iodine .v-treegrid-editor-cells > div .v-select {
	padding-left: 7px;
	padding-right: 7px;
}

.iodine .v-treegrid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 7px 0 13.5px;
}

.iodine .v-treegrid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.iodine .v-treegrid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.iodine .v-treegrid-editor-message > div:before {
	display: inline-block;
	color: #ed473b;
	font-weight: 600;
	width: 14px;
	text-align: center;
	content: "!";
}

.iodine .v-treegrid-editor-save, .iodine .v-treegrid-editor-cancel {
	cursor: pointer;
	color: #0095f1;
	text-decoration: underline;
	font-weight: inherit;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 5px 5px;
	margin: 0;
	outline: none;
}

.iodine .v-treegrid-editor-save:hover, .iodine .v-treegrid-editor-cancel:hover {
	color: #25acff;
}

.iodine .v-treegrid-editor-save.v-disabled, .iodine .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-treegrid-spacer {
	margin-top: -1px;
}

.iodine .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.iodine .v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
}

.iodine .v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.iodine .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;
}

.iodine .v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.iodine .v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.iodine .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;
}

.iodine .v-treegrid-row-drag-top, .iodine .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.iodine .v-treegrid-row-drag-top:before, .iodine .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #0095f1;
	pointer-events: none;
	border: none;
}

.iodine .v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.iodine .v-treegrid-row-drag-top:before {
	top: -1px;
}

.iodine .v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.iodine .v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid #0095f1;
	pointer-events: none;
}

.iodine .v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: #0075be;
}

.iodine .v-treegrid-row-selected.v-treegrid-row-drag-top:before, .iodine .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: #0075be;
}

.iodine .v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid #0095f1;
	z-index: 100;
}

.iodine .v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.iodine .v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.iodine .v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.iodine .v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.iodine .v-treegrid-expander.collapse-disabled::before {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
	cursor: default;
}

.iodine .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.iodine .v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.iodine .v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.iodine .v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.iodine .v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.iodine .v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.iodine .v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.iodine .v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.iodine .v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.iodine .v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.iodine .v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.iodine .v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.iodine .v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.iodine .v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.iodine .v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.iodine .v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.iodine .v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.iodine .v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.iodine .v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.iodine .v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.iodine .v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.iodine .v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.iodine .v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.iodine .v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.iodine .v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.iodine .v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.iodine .v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.iodine .v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.iodine .v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.iodine .v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.iodine .v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.iodine .v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.iodine .v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.iodine .v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid #0095f1;
	display: none;
	pointer-events: none;
}

.iodine .v-treegrid-cell-focused {
	position: static;
}

.iodine .v-treegrid-cell-focused::before {
	display: none;
}

.iodine .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.iodine .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.iodine .v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.iodine .v-table {
	position: relative;
	background: #fafafa;
	color: #464646;
	overflow: hidden;
}

.iodine .v-table-header table, .iodine .v-table-footer table, .iodine .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4d4d4;
	box-shadow: 0 0 0 1px #d4d4d4;
}

.iodine .v-table-header-wrap, .iodine .v-table-footer-wrap, .iodine .v-table-header-drag {
	border: 1px solid #d4d4d4;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	white-space: nowrap;
	font-size: 10px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iodine .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.iodine .v-table-footer-wrap {
	border-top: none;
}

.iodine .v-table-footer td {
	border-left: 1px solid #d4d4d4;
}

.iodine .v-table-footer-container, .iodine .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 28px;
	box-sizing: border-box;
}

.iodine .v-table-footer-container {
	padding: 8px 9px 9px;
	float: right;
}

.iodine [class^="v-table-header-cell"] {
	position: relative;
}

.iodine .v-table-caption-container, .iodine .v-table-header-drag {
	padding: 9px 9px 8px;
	border-left: 1px solid #d4d4d4;
}

.iodine .v-table-caption-container-align-right {
	padding-right: 3px;
}

.iodine .v-table-resizer {
	height: 28px;
	width: 6px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -3px;
	z-index: 1;
	margin-left: -6px;
}

.iodine .v-table-cell-content {
	border-left: 1px solid #d4d4d4;
	overflow: hidden;
	height: 29px;
	vertical-align: middle;
}

.iodine .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.iodine .v-table-header td:first-child .v-table-caption-container, .iodine .v-table-footer td:first-child {
	border-left-color: transparent;
}

.iodine .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 9px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.iodine .v-table-cell-wrapper  > .v-widget {
	margin: 2px -5px;
}

.iodine .v-table-cell-wrapper  > .v-widget.v-label, .iodine .v-table-cell-wrapper  > .v-widget.v-checkbox, .iodine .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.iodine .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.iodine .v-table-body {
	border: 1px solid #d4d4d4;
	overflow-anchor: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.iodine .v-table-table {
	background-color: white;
	white-space: nowrap;
}

.iodine .v-table-table td {
	border-top: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.iodine .v-table-table tr:first-child > td {
	height: 28px;
	border-top: none;
}

.iodine .v-table-row {
	background-color: white;
	cursor: pointer;
}

.iodine .v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.iodine .v-table-body-noselection .v-table-row, .iodine .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.iodine .v-table [class*="-row"].v-selected {
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	background-origin: border-box;
	color: #eaf3f9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.iodine .v-table [class*="-row"].v-selected  + .v-selected {
	background: #0095f1;
}

.iodine .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #0095f1;
}

.iodine .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: #087ac0;
}

.iodine .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.iodine .v-table-header-cell-asc .v-table-sort-indicator, .iodine .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 14px;
	height: 28px;
	line-height: 28px;
	margin-left: -14px;
}

.iodine .v-table-header-cell-asc .v-table-sort-indicator:before, .iodine .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.iodine .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.iodine .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.iodine [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.iodine .v-table-focus {
	outline: 1px solid #0095f1;
	outline-offset: -1px;
}

.iodine .v-drag-element.v-table-focus, .iodine .v-drag-element .v-table-focus {
	outline: none;
}

.iodine .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -14px;
	z-index: 30000;
	line-height: 1;
}

.iodine .v-table-focus-slot-right {
	border-right: 3px solid #0095f1;
	right: -2px;
	margin-left: -9px !important;
}

.iodine .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid #0095f1;
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -9px;
}

.iodine .v-table-column-selector {
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 14px;
	height: 14px;
	line-height: 14px;
	padding: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-radius: 0 0 0 2px;
	cursor: pointer;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0) ;
}

.iodine .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.iodine .v-table-column-selector:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.iodine .v-table-column-selector:focus:after {
	border-color: #0095f1;
}

.iodine .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.iodine .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.iodine .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.iodine .v-on:before, .iodine .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 5px;
}

.iodine .v-on div, .iodine .v-off div {
	display: inline;
}

.iodine .v-on.v-disabled, .iodine .v-off.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-off:before {
	visibility: hidden;
}

.iodine tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.iodine 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: 2px;
	overflow: hidden;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	background: white;
}

.iodine .v-table-body {
	position: relative;
	z-index: 1;
}

.iodine .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 28px;
	line-height: 28px;
	margin: -14px 0 0 !important;
	text-align: center;
}

.iodine .v-table-drag {
	overflow: visible;
}

.iodine .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(0, 149, 241, 0.5);
	box-shadow: 0 0 0 2px rgba(0, 149, 241, 0.5);
	border-color: #0095f1;
}

.iodine .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.iodine .v-table-row-drag-middle .v-table-cell-content {
	background-color: #cce9fc;
	color: #1c4764;
}

.iodine .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid #0095f1;
	height: 27px;
}

.iodine .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.iodine .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid #0095f1;
	height: 28px;
}

.iodine .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.iodine .v-table-no-stripes .v-table-row, .iodine .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.iodine .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.iodine .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 10px;
}

.iodine .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.iodine .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .iodine .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 28px;
}

.iodine .v-table-no-header .v-table-header-wrap {
	display: none;
}

.iodine .v-table-borderless .v-table-header-wrap, .iodine .v-table-borderless .v-table-footer-wrap, .iodine .v-table-borderless .v-table-header-drag, .iodine .v-table-borderless .v-table-body {
	border: none;
}

.iodine .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9d9d9;
}

.iodine .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9d9d9;
}

.iodine .v-table-compact .v-table-header-wrap, .iodine .v-table-compact .v-table-footer-wrap, .iodine .v-table-compact .v-table-header-drag, .iodine .v-table-small .v-table-header-wrap, .iodine .v-table-small .v-table-footer-wrap, .iodine .v-table-small .v-table-header-drag {
	font-size: 10px;
}

.iodine .v-table-compact .v-table-footer-container, .iodine .v-table-small .v-table-footer-container {
	padding: 6px 6px 7px;
}

.iodine .v-table-compact .v-table-caption-container, .iodine .v-table-compact .v-table-header-drag, .iodine .v-table-small .v-table-caption-container, .iodine .v-table-small .v-table-header-drag {
	padding-top: 7px;
	padding-bottom: 6px;
	padding-left: 5px;
	padding-right: 5px;
}

.iodine .v-table-compact .v-table-caption-container-align-right, .iodine .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.iodine .v-table-compact .v-table-resizer, .iodine .v-table-small .v-table-resizer {
	height: 24px;
}

.iodine .v-table-compact .v-table-cell-content, .iodine .v-table-small .v-table-cell-content {
	height: 24px;
}

.iodine .v-table-compact .v-table-cell-wrapper, .iodine .v-table-small .v-table-cell-wrapper {
	padding-left: 5px;
	padding-right: 5px;
}

.iodine .v-table-compact .v-table-cell-wrapper  > .v-widget, .iodine .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 1px -3px;
}

.iodine .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .iodine .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .iodine .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .iodine .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .iodine .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .iodine .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.iodine .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .iodine .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.iodine .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .iodine .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .iodine .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .iodine .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 24px;
	line-height: 24px;
}

.iodine .v-table-compact .v-table-header-drag, .iodine .v-table-small .v-table-header-drag {
	margin-top: -12px;
}

.iodine .v-table-compact.v-treetable .v-table-cell-wrapper, .iodine .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 12px;
}

.iodine .v-table-compact.v-treetable .v-table-cell-content, .iodine .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 5px;
	padding-right: 5px;
}

.iodine .v-table-compact.v-treetable .v-table-cell-content:first-child, .iodine .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 6px;
}

.iodine .v-table-compact.v-treetable .v-table-footer-container, .iodine .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 5px;
	padding-right: 5px;
}

.iodine .v-table-compact .v-table-row-drag-top .v-table-cell-content, .iodine .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .iodine .v-table-small .v-table-row-drag-top .v-table-cell-content, .iodine .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 23px;
}

.iodine .v-table-small {
	font-size: 11px;
}

.iodine .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 11px;
}

.iodine .v-treetable [class*="caption-container"], .iodine .v-treetable [class*="footer-container"], .iodine .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.iodine .v-treetable [class*="caption-container"], .iodine .v-treetable [class*="footer-container"] {
	min-height: 11px;
}

.iodine .v-treetable [class*="cell-wrapper"] {
	min-height: 12px;
}

.iodine .v-treetable [class*="caption-container"] {
	padding-left: 9px;
}

.iodine .v-treetable [class*="caption-container-align-right"] {
	padding-left: 15px;
}

.iodine .v-treetable [class*="footer-container"] {
	padding-right: 9px;
}

.iodine .v-treetable [class*="cell-content"] {
	padding-left: 9px;
	padding-right: 9px;
}

.iodine .v-treetable [class*="cell-content"]:first-child {
	padding-left: 10px;
}

.iodine .v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 14px !important;
	margin-left: -19px;
	text-align: center;
	cursor: pointer;
}

.iodine .v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.iodine .v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -4px;
	right: -4px;
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(left, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to right,#fafafa 0%, #fafafa 100%);
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #0095f1;
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.iodine .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.iodine .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -4px;
	bottom: -4px;
}

.iodine .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.iodine .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.iodine .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.iodine .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #0095f1;
}

.iodine .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 9px;
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(left, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to right,#fafafa 0%, #fafafa 100%);
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: #0095f1;
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:after {
	content: "";
	border: 1px solid #dadada;
	border-top-color: #bababa;
	border-left-color: #bababa;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 28px;
	margin-left: -1px;
	margin-top: -14px;
}

.iodine .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 9px;
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 9px;
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: #0095f1;
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:after {
	content: "";
	border: 1px solid #dadada;
	border-top-color: #bababa;
	border-left-color: #bababa;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 28px;
	height: 0;
	margin-left: -14px;
	margin-top: -1px;
}

.iodine .v-progressbar-wrapper {
	border-radius: 2px;
	height: 7px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d4d4d4 0%, #d4d4d4 100%);
	background-image: linear-gradient(to top,#d4d4d4 0%, #d4d4d4 100%);
	box-sizing: border-box;
	min-width: 56px;
}

.iodine .v-progressbar-indicator {
	border-radius: 2px;
	height: inherit;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	
	
	border: 1px solid #0075be;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 4px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	transition: width 160ms;
}

.iodine .v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.iodine .v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 2px;
	height: inherit;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	
	
	border: 1px solid #0075be;
	box-sizing: border-box;
	max-width: 100%;
	width: 7px;
	vertical-align: top;
}

.iodine .v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(0, 149, 241, 0.2);
	border-top-color: #0095f1;
	border-right-color: #0095f1;
	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;
}

.iodine .v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.iodine .v-slider {
	position: relative;
}

.iodine .v-slider:focus {
	outline: none;
}

.iodine .v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

.iodine .v-slider.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-slider-base {
	border-radius: 2px;
	height: 7px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d4d4d4 0%, #d4d4d4 100%);
	background-image: linear-gradient(to top,#d4d4d4 0%, #d4d4d4 100%);
	box-sizing: border-box;
	min-width: 56px;
	height: 4px;
	margin: 12px 8px;
	white-space: nowrap;
	overflow: hidden;
	
}

.iodine .v-slider-base:before {
	content: "";
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 8px;
	width: 4px;
	border-radius: 2px;
	border-left: 1px solid #0075be;
}

.iodine .v-slider-base:after {
	border-radius: 2px;
	height: inherit;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	
	
	border: 1px solid #0075be;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.iodine .v-has-width > .v-slider-base {
	min-width: 0;
}

.iodine .v-slider-handle {
	margin-top: -12px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.iodine .v-slider-handle:before {
	height: 28px;
	padding: 0 13px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iodine .v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.iodine .v-slider-handle:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.iodine .v-slider-handle:before:focus:after {
	border-color: #0095f1;
}

.iodine .v-slider-handle:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-slider-handle:after {
	border: 1px solid #c5c5c5;
	border-color: #0095f1;
	opacity: 0;
}

.iodine .v-slider-handle:before, .iodine .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	position: absolute;
	z-index: 1;
	margin-top: 6px;
	margin-left: -8px;
}

.iodine .v-slider-feedback {
	background-color: rgba(50, 50, 50, 0.9);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 4px 7px;
	border-radius: 1px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

.iodine .v-slider-vertical {
	padding: 8px 0;
	height: 72px;
}

.iodine .v-slider-vertical .v-slider-base {
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(right, #d4d4d4 0%, #d4d4d4 100%);
	background-image: linear-gradient(to left,#d4d4d4 0%, #d4d4d4 100%);
	width: 4px;
	height: 100% !important;
	min-width: 0;
	margin: 0 12px;
}

.iodine .v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 8px;
	left: 12px;
	right: 12px;
	width: auto;
	height: 4px;
	border-left: none;
	border-bottom: 1px solid #0075be;
}

.iodine .v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(left, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to right,#0095f1 0%, #0095f1 100%);
}

.iodine .v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 28px;
	display: block;
}

.iodine .v-slider-vertical .v-slider-handle:before, .iodine .v-slider-vertical .v-slider-handle:after {
	width: 16px;
	height: 16px;
	margin-top: -8px;
	margin-left: -6px;
}

.iodine .v-slider-no-indicator .v-slider-base:before, .iodine .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.iodine .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.iodine .v-tabsheet-spacertd {
	display: none !important;
}

.iodine .v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.iodine .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #dfdfdf;
	bottom: 0;
	left: 0;
	right: 0;
}

.iodine .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.iodine .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.iodine .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.iodine .v-tabsheet-tabitemcell .v-caption {
	margin-left: 14px;
	padding: 0 3px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 28px;
	font-size: 11px;
	font-weight: 400;
	color: #696969;
	width: auto !important;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 2px solid transparent;
	position: relative;
}

.iodine .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.iodine .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 7px;
}

.iodine .v-tabsheet-tabitemcell .v-caption:hover {
	color: #0095f1;
}

.iodine .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
	cursor: default;
	color: inherit !important;
}

.iodine .v-tabsheet-tabitemcell:first-child .v-caption, .iodine .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.iodine .v-tabsheet-tabitemcell:not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 14px;
}

.iodine .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.iodine .v-tabsheet-tabitemcell:focus .v-caption {
	color: #0095f1;
}

.iodine .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #0095f1;
	color: #0095f1;
}

.iodine .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 16px;
}

.iodine .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 3px;
}

.iodine .v-tabsheet-tabitemcell .v-tabsheet-caption-close {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -6px 0 0;
	font-size: 13px;
	line-height: 13px;
	width: 13px;
	text-align: center;
	border-radius: 1px;
	color: #969696;
}

.iodine .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #0095f1;
}

.iodine .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: #0095f1;
	color: #c1dff1;
}

.iodine .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 14px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(right, #fafafa 70%, rgba(250, 250, 250, 0) 100%);
	background-image: linear-gradient(to left,#fafafa 70%, rgba(250, 250, 250, 0) 100%);
	pointer-events: none;
}

.iodine .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, #dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
	background-image: linear-gradient(to left,#dfdfdf 70%, rgba(223, 223, 223, 0) 100%);
}

.iodine .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 7px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: #0095f1;
}

.iodine .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: #0095f1;
}

.iodine .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.iodine .v-tabsheet-scroller [class*="Next"] {
	padding-left: 4px;
}

.iodine .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.iodine .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 4px;
}

.iodine .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.iodine .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.iodine .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .iodine .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .iodine .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.iodine .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.iodine .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.iodine .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 3px;
	padding: 0 9px;
	background-color: #fafafa;
	border: 1px solid transparent;
	line-height: 27px;
	border-radius: 2px 2px 0 0;
	font-weight: 500;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f2f2f2;
	border-bottom-color: #dfdfdf;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #fafafa;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 22px;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 3px;
	right: 3px;
	margin-top: 0;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 3px;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #dfdfdf;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #dfdfdf;
	border-bottom: none;
	padding-bottom: 1px;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #dfdfdf;
	border-top: none;
}

.iodine .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.iodine .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #dfdfdf;
	border-bottom: none;
	background: #fafafa;
	padding-top: 5px;
}

.iodine .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 6px;
}

.iodine .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.iodine .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.iodine .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.iodine .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.iodine .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 7px;
}

.iodine .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1.2;
}

.iodine .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.iodine .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.iodine .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 9px;
}

.iodine .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 3px;
	margin-top: 0;
}

.iodine .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.iodine .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.iodine .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.iodine .v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.iodine .v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 7px;
}

.iodine .v-colorpicker-popup [class$="sliders"] {
	padding: 9px;
}

.iodine .v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.iodine .v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 36px;
}

.iodine .v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -36px;
	width: 36px;
}

.iodine .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 60px;
}

.iodine .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -60px;
	width: 60px;
}

.iodine .v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.iodine .v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.iodine .v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.iodine .v-colorpicker-popup .resize-button-caption {
	display: none;
}

.iodine .v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 7px 0;
	background-color: #fafafa;
	border-top: 1px solid #ededed;
}

.iodine .v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.iodine .v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.iodine .v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 7px;
	display: inline-flex;
}

.iodine .v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.iodine .v-colorpicker {
	width: auto;
}

.iodine .v-colorpicker-button-color {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border-radius: 1px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	max-width: 17px;
}

.iodine .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 14px;
}

.iodine .v-panel {
	background: white;
	color: #474747;
	border-radius: 2px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	overflow: visible !important;
}

.iodine .v-panel-caption {
	box-sizing: border-box;
	padding: 0 9px;
	line-height: 27px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	color: #464646;
	font-weight: 400;
	font-size: 11px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 1px 1px 0 0;
}

.iodine .v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.iodine .v-panel-content  > .v-margin-top {
	padding-top: 9px;
}

.iodine .v-panel-content  > .v-margin-right {
	padding-right: 9px;
}

.iodine .v-panel-content  > .v-margin-bottom {
	padding-bottom: 9px;
}

.iodine .v-panel-content  > .v-margin-left {
	padding-left: 9px;
}

.iodine .v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 9px;
	border-bottom: none;
}

.iodine .v-panel-well {
	background: #f5f5f5;
	color: #454545;
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05), inset 0 2px 3px rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	border: 1px solid #c5c5c5;
}

.iodine .v-panel-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.iodine .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #dfdfdf;
	border-color: rgba(197, 197, 197, 0.5);
}

.iodine .v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #fafafa;
	left: 0;
	right: 0;
}

.iodine .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.iodine .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.iodine .v-panel-caption.v-horizontallayout .v-label {
	line-height: 28px;
}

.iodine .v-accordion {
	background: white;
	color: #474747;
	border-radius: 2px;
	border: 1px solid #d5d5d5;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	overflow: hidden;
}

.iodine .v-accordion-item {
	position: relative;
}

.iodine .v-accordion-item:first-child {
	border-top-left-radius: 1px;
	border-top-right-radius: 1px;
}

.iodine .v-accordion-item:last-child {
	border-bottom-left-radius: 1px;
	border-bottom-right-radius: 1px;
}

.iodine .v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.iodine .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.iodine .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.iodine .v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #d9d9d9;
}

.iodine .v-accordion-item-caption {
	border-radius: inherit;
}

.iodine .v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 9px;
	line-height: 27px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	color: #464646;
	font-weight: 400;
	font-size: 11px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	display: block;
	background: transparent;
	border-bottom-color: #c9c9c9;
	border-radius: inherit;
	cursor: pointer;
	position: relative;
}

.iodine .v-accordion-item-caption  > .v-caption:hover:before, .iodine .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.iodine .v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.iodine .v-accordion-item-content {
	-webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: white;
	box-sizing: border-box;
}

.iodine .v-accordion-item-content  > .v-margin-top {
	padding-top: 9px;
}

.iodine .v-accordion-item-content  > .v-margin-right {
	padding-right: 9px;
}

.iodine .v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 9px;
}

.iodine .v-accordion-item-content  > .v-margin-left {
	padding-left: 9px;
}

.iodine .v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .v-accordion-borderless  > .v-accordion-item, .iodine .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .iodine .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.iodine .v-select-twincol {
	white-space: normal;
}

.iodine .v-select-twincol select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	color: #464646;
}

.iodine .v-select-twincol select:focus {
	outline: none;
}

.iodine .v-select-twincol .v-textfield, .iodine .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 7px;
}

.iodine .v-select-twincol .v-nativebutton {
	margin-left: 7px;
}

.iodine .v-select-twincol-caption-left, .iodine .v-select-twincol-caption-right {
	font-size: 11px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.iodine .v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.iodine .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: 7px;
	right: 7px;
	top: 27px;
	padding: 0;
	text-align: center;
}

.iodine .v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.iodine .v-select-twincol-buttons .v-button-caption {
	display: none;
}

.iodine .v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.iodine .v-select-twincol-buttons .v-button:first-child {
	border-radius: 2px 2px 0 0;
}

.iodine .v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 2px 2px;
}

.iodine .v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.iodine .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.iodine .v-select-twincol-error .v-select-twincol-options, .iodine .v-select-twincol-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.iodine .v-select-twincol-error-info .v-select-twincol-options, .iodine .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.iodine .v-select-twincol-error-warning .v-select-twincol-options, .iodine .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.iodine .v-select-twincol-error-error .v-select-twincol-options, .iodine .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.iodine .v-select-twincol-error-critical .v-select-twincol-options, .iodine .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.iodine .v-select-twincol-error-system .v-select-twincol-options, .iodine .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.iodine .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	color: #464646;
}

.iodine .v-select select:focus {
	outline: none;
}

.iodine .v-select-select {
	display: block;
}

.iodine .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 7px;
}

.iodine .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 7px;
	margin-left: 7px;
}

.iodine .v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.iodine .v-calendar-header-day {
	font-weight: 500;
	text-align: center;
	padding: 6px 0;
}

.iodine .v-calendar-header-week .v-calendar-back, .iodine .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) ;
}

.iodine .v-calendar-header-week .v-calendar-back:focus, .iodine .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.iodine .v-calendar-header-week .v-calendar-back:hover, .iodine .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.iodine .v-calendar-header-week .v-calendar-back:active, .iodine .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.iodine .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.iodine .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.iodine .v-calendar-month td {
	vertical-align: top;
}

.iodine .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.iodine .v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.iodine .v-calendar-bottom-spacer, .iodine .v-calendar-spacer, .iodine .v-calendar-bottom-spacer-empty {
	height: 14px;
	margin-bottom: 2px;
}

.iodine .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 4px;
	cursor: pointer;
}

.iodine .v-calendar-bottom-spacer:hover {
	color: #0095f1;
}

.iodine .v-calendar-day-number {
	line-height: 19px;
	font-size: 12px;
	text-align: right;
	margin: 0 4px;
	white-space: nowrap;
	border-top: 1px solid #f2f2f2;
	cursor: pointer;
}

.iodine .v-calendar-day-number:hover {
	color: #0095f1;
}

.iodine .v-calendar-month-day-today {
	background: #edf4f9;
}

.iodine .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 500;
	color: #0095f1;
	border-top: 2px solid #0095f1;
	line-height: 18px;
	margin: 0;
	padding: 0 4px;
}

.iodine .v-calendar-month-day-selected {
	background-color: #e1eff9;
}

.iodine .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

.iodine .v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.iodine .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 2px solid #e0e0e0;
}

.iodine .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 16px;
	line-height: 1.6;
	margin-bottom: 2px;
}

.iodine .v-calendar-header-week td {
	vertical-align: middle !important;
}

.iodine .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.iodine .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.iodine .v-calendar-time {
	text-align: right;
	padding-right: 7px;
	margin-top: -5px;
	padding-bottom: 5px;
}

.iodine .v-calendar-day-times, .iodine .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.iodine .v-calendar-day-times:focus, .iodine .v-calendar-day-times-today:focus {
	outline: none;
}

.iodine .v-calendar .v-datecellslot, .iodine .v-calendar .v-datecellslot-even {
	border-top: 1px solid #dfdfdf;
}

.iodine .v-calendar .v-datecellslot:first-child, .iodine .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.iodine .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.iodine .v-calendar .v-datecellslot, .iodine .v-calendar .v-datecellslot-even {
	margin-right: 4px;
}

.iodine .v-calendar-current-time {
	background: #0095f1;
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .v-calendar-current-time:before {
	content: "\2022";
	color: #0095f1;
	font-size: 22px;
	margin-left: -0.07em;
}

.iodine .v-calendar .v-daterange {
	position: relative;
}

.iodine .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: #0095f1;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 2px 2px 0 0;
}

.iodine .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.iodine .v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.iodine .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 2px;
}

.iodine .v-calendar-event:focus {
	outline: none;
}

.iodine .v-calendar-event-month {
	padding: 0 4px;
	box-sizing: border-box;
	margin-bottom: 2px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 14px;
	line-height: 14px;
}

.iodine .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 14px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.iodine .v-calendar-event-all-day {
	padding: 0 4px;
	box-sizing: border-box;
	height: 14px;
	line-height: 14px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.iodine .v-calendar-event-all-day:before {
	content: "";
}

.iodine .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.iodine .v-calendar-event-start.v-calendar-event-continued-to, .iodine .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.iodine .v-calendar-event-start {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	margin-left: 4px;
}

.iodine .v-calendar-event-end {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	margin-right: 4px;
}

.iodine .v-calendar-event-caption {
	font-weight: 600;
	line-height: 1.2;
	padding: 4px 0;
	position: absolute;
	overflow: hidden;
	right: 7px;
	left: 4px;
	bottom: 0;
	top: 0;
}

.iodine .v-calendar-event-caption span {
	font-weight: 400;
	white-space: nowrap;
}

.iodine .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.iodine .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 3px;
	border: 1px solid #fafafa;
	padding-top: 3px;
	margin-right: 4px;
}

.iodine .v-calendar-event-month:before {
	color: #00ace0;
}

.iodine .v-calendar-event-all-day {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
	color: #00ace0;
}

.iodine .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.iodine .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
}

.iodine .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.iodine .v-calendar-event-all-day[class*="color2"] {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
	color: #2d9f19;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
}

.iodine .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.iodine .v-calendar-event-all-day[class*="color3"] {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
	color: #d18100;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
}

.iodine .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.iodine .v-calendar-event-all-day[class*="color4"] {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
	color: #ce3812;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
}

.iodine .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.iodine .v-calendar-event-all-day[class*="color5"] {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
	color: #2d55cd;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.iodine .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
}

.iodine .v-calendar.v-disabled * {
	cursor: default;
}

.iodine .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.iodine .v-label.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-label-undef-w {
	white-space: nowrap;
}

.iodine h1, .iodine .v-label-h1, .iodine h2, .iodine .v-label-h2, .iodine h3, .iodine .v-label-h3 {
	line-height: 1.1;
	font-weight: 300;
	color: #141414;
}

.iodine h1, .iodine .v-label-h1 {
	font-size: 2.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.iodine h2, .iodine .v-label-h2 {
	font-size: 1.6em;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.iodine h3, .iodine .v-label-h3 {
	font-size: 1.2em;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.iodine h4, .iodine .v-label-h4 {
	line-height: 1.1;
	font-weight: 600;
	font-size: 11px;
	color: #414141;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.iodine .v-csslayout  > h1:first-child, .iodine .v-csslayout  > h2:first-child, .iodine .v-csslayout  > h3:first-child, .iodine .v-csslayout  > h4 > .v-label-h1:first-child, .iodine .v-csslayout  > .v-label-h2:first-child, .iodine .v-csslayout  > .v-label-h3:first-child, .iodine .v-csslayout  > .v-label-h4:first-child {
	margin-top: 12px;
}

.iodine .v-verticallayout > .v-slot:first-child h1, .iodine .v-verticallayout > .v-slot:first-child .v-label-h1, .iodine .v-verticallayout > .v-slot:first-child h2, .iodine .v-verticallayout > .v-slot:first-child .v-label-h2, .iodine .v-verticallayout > .v-slot:first-child h3, .iodine .v-verticallayout > .v-slot:first-child .v-label-h3, .iodine .v-verticallayout > .v-slot:first-child h4, .iodine .v-verticallayout > .v-slot:first-child .v-label-h4, .iodine .v-verticallayout > div > .v-slot:first-child h1, .iodine .v-verticallayout > div > .v-slot:first-child .v-label-h1, .iodine .v-verticallayout > div > .v-slot:first-child h2, .iodine .v-verticallayout > div > .v-slot:first-child .v-label-h2, .iodine .v-verticallayout > div > .v-slot:first-child h3, .iodine .v-verticallayout > div > .v-slot:first-child .v-label-h3, .iodine .v-verticallayout > div > .v-slot:first-child h4, .iodine .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 12px;
}

.iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .iodine .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .iodine .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.iodine h1.no-margin, .iodine .v-label-h1.no-margin, .iodine h2.no-margin, .iodine .v-label-h2.no-margin, .iodine h3.no-margin, .iodine .v-label-h3.no-margin, .iodine h4.no-margin, .iodine .v-label-h4.no-margin {
	margin: 0 !important;
}

.iodine .v-label-colored {
	color: #0095f1;
}

.iodine .v-label-large {
	font-size: 15px;
}

.iodine .v-label-small {
	font-size: 11px;
}

.iodine .v-label-tiny {
	font-size: 9px;
}

.iodine .v-label-huge {
	font-size: 20px;
}

.iodine .v-label-bold {
	font-weight: 600;
}

.iodine .v-label-light {
	font-weight: 300;
}

.iodine .v-label-align-right {
	text-align: right;
}

.iodine .v-label-align-center {
	text-align: center;
}

.iodine .v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(0, 149, 241, 0.2);
	border-top-color: #0095f1;
	border-right-color: #0095f1;
	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;
}

.iodine .v-label-success, .iodine .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #2c9720;
	border-radius: 2px;
	padding: 6px 14px 6px 28px;
	font-weight: 500;
	font-size: 11px;
}

.iodine .v-label-success:before, .iodine .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -14px;
	color: #2c9720;
}

.iodine .v-label-failure {
	border-color: #ed473b;
}

.iodine .v-label-failure:before {
	content: "\f05e";
	color: #ed473b;
}

.iodine [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.iodine .v-ddwrapper {
	position: relative;
}

.iodine .v-ddwrapper-over:before, .iodine .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid #0095f1;
}

.iodine .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.iodine .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.iodine .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.iodine .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.iodine .no-vertical-drag-hints .v-ddwrapper-over-top:before, .iodine .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.iodine .no-vertical-drag-hints .v-ddwrapper-over-top:after, .iodine .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #78ccff;
}

.iodine .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .iodine .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.iodine .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .iodine .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #78ccff;
}

.iodine .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .iodine .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.iodine .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .iodine .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #78ccff;
}

.iodine .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .iodine .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.iodine .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .iodine .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #78ccff;
}

.iodine .v-ddwrapper-over-middle:after, .iodine .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: #78ccff;
}

.iodine .no-box-drag-hints.v-ddwrapper:after, .iodine .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.iodine button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.iodine .v-nativebutton {
	-webkit-touch-callout: none;
}

.iodine .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	color: #464646;
}

.iodine .v-select select:focus {
	outline: none;
}

.iodine .v-select-select {
	display: block;
}

.iodine .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 7px;
}

.iodine .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 7px;
	margin-left: 7px;
}

.iodine .v-select-error .v-select-select {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.iodine .v-popupview {
	cursor: pointer;
	color: #0095f1;
	text-decoration: underline;
	font-weight: inherit;
}

.iodine .v-popupview:hover {
	color: #25acff;
}

.iodine .v-popupview.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .v-popupview-popup {
	padding: 3px 3px;
	border-radius: 2px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.iodine .v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 9px;
}

.iodine .v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 9px;
}

.iodine .v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 9px;
}

.iodine .v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 9px;
}

.iodine .v-popupview-loading {
	margin: 9px 9px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(0, 149, 241, 0.2);
	border-top-color: #0095f1;
	border-right-color: #0095f1;
	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;
}

.iodine .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: 28px;
	border-radius: 2px;
	padding: 0;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	height: auto;
	overflow: hidden;
}

.iodine .v-richtextarea[class*="prompt"] {
	color: #a3a3a3;
}

.iodine .v-richtextarea .gwt-RichTextToolbar {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2;
	border-bottom: 1px solid #c5c5c5;
	color: #464646;
}

.iodine .v-richtextarea .gwt-ToggleButton, .iodine .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 28px;
	width: 28px;
	text-align: center;
	outline: none;
}

.iodine .v-richtextarea .gwt-ToggleButton:hover, .iodine .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.iodine .v-richtextarea .gwt-ToggleButton-down, .iodine .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e0e0e0;
	background-image: -webkit-linear-gradient(bottom, #e0e0e0 0%, #e0e0e0 100%);
	background-image: linear-gradient(to top,#e0e0e0 0%, #e0e0e0 100%);
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.iodine .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 10px;
	padding: 0 7px 7px 0;
}

.iodine .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 7px 0 0 7px;
}

.iodine .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.iodine .v-richtextarea-readonly {
	padding: 4px 5px;
	background: transparent;
}

.iodine .v-upload .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.iodine .v-upload-immediate .v-button {
	width: 100%;
}

.iodine .v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 28px;
	text-align: right;
	border: none;
	background: transparent;
}

.iodine .v-Notification.v-position-top {
	top: 9px;
}

.iodine .v-Notification.v-position-right {
	right: 9px;
}

.iodine .v-Notification.v-position-bottom {
	bottom: 9px;
}

.iodine .v-Notification.v-position-left {
	left: 9px;
}

.iodine .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.iodine .v-Notification {
	border-radius: 2px;
	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: 14px 16px;
}

.iodine .v-Notification .v-Notification-caption {
	color: #0095f1;
	font-size: 14px;
	line-height: 1;
}

.iodine .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.iodine .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.iodine .v-Notification-description, .iodine .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.iodine .v-Notification-caption ~ .v-Notification-description, .iodine .v-Notification-caption ~ .v-Notification-details {
	margin-left: 18px;
}

.iodine .v-icon + .v-Notification-caption {
	margin-left: 12px;
}

.iodine .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: 9px 11px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 500;
	line-height: 17px;
}

.iodine .v-Notification-system .v-Notification-description, .iodine .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.iodine .v-Notification-system.v-position-top {
	top: 0;
}

.iodine .v-Notification-system.v-position-bottom {
	bottom: 0;
}

.iodine .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.iodine .v-Notification-system .v-Notification-description, .iodine .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.iodine .v-Notification-system u {
	text-decoration: none;
}

.iodine .v-Notification.tray {
	text-align: left;
}

.iodine .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.iodine .v-Notification.warning {
	background: #FFF3D2;
}

.iodine .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.iodine .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.iodine .v-Notification.error {
	background: #ed473b;
	font-weight: 500;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	padding-right: 44px;
	overflow: hidden !important;
	cursor: pointer;
}

.iodine .v-Notification.error .v-Notification-caption {
	color: white;
}

.iodine .v-Notification.error .v-Notification-description {
	color: #f4e0df;
}

.iodine .v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -9px;
	right: 9px;
	width: 19px;
	height: 19px;
	line-height: 18px;
	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;
}

.iodine .v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.iodine .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;
}

.iodine .v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.iodine .v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.iodine .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 500;
	line-height: 17px;
}

.iodine .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.iodine .v-Notification.dark .v-Notification-description, .iodine .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.iodine .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: 9px 11px;
}

.iodine .v-Notification.bar .v-Notification-description, .iodine .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.iodine .v-Notification.bar.v-position-top {
	top: 0;
}

.iodine .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.iodine .v-Notification.small {
	padding: 8px 10px;
}

.iodine .v-Notification.small .v-Notification-caption {
	font-size: 12px;
}

.iodine .v-Notification.small .v-Notification-description {
	font-size: 10px;
}

.iodine .v-Notification.critical-error {
	background: #ed473b;
	font-weight: 500;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
}

.iodine .v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.iodine .v-Notification.critical-error .v-Notification-description {
	color: #f4e0df;
}

.iodine .v-Notification.closable {
	padding-right: 44px;
	overflow: hidden !important;
	cursor: pointer;
}

.iodine .v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -9px;
	right: 9px;
	width: 19px;
	height: 19px;
	line-height: 18px;
	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;
}

.iodine .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.iodine .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;
}

.iodine .v-Notification.closable.dark:after, .iodine .v-Notification.closable.critical-error:after, .iodine .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.iodine .v-Notification.closable.dark:active:after, .iodine .v-Notification.closable.critical-error:active:after, .iodine .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.iodine .v-Notification.closable.tray:after {
	top: 12px;
	margin-top: 0;
}

.iodine .v-Notification.success, .iodine .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.iodine .v-Notification.success .v-Notification-caption, .iodine .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 500;
}

.iodine .v-Notification.success .v-Notification-caption:before, .iodine .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.iodine .v-Notification.success.bar, .iodine .v-Notification.failure.bar {
	margin: -2px !important;
}

.iodine .v-Notification.failure {
	border-color: #ed473b;
}

.iodine .v-Notification.failure .v-Notification-caption {
	color: #ed473b;
}

.iodine .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.iodine .valo-menu {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #4b4b4b 0%, #4b4b4b 7px);
	background-image: linear-gradient(to left,#4b4b4b 0%, #4b4b4b 7px);
	color: #a5a5a5;
	font-size: 11px;
	line-height: 22px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
}

.iodine .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 2px;
	left: 2px;
	min-width: 0;
}

.iodine .valo-menu-part {
	border-left: 1px solid #414141;
	height: 100%;
	padding-bottom: 28px;
	overflow: auto;
}

.iodine .valo-menu-part:first-child {
	border-left: none;
}

.iodine .valo-menu-title, .iodine .valo-menu-subtitle, .iodine .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.iodine .valo-menu-title .valo-menu-badge, .iodine .valo-menu-subtitle .valo-menu-badge, .iodine .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 14px;
}

.iodine .valo-menu-title {
	line-height: 1.2;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
	padding: 9px 14px;
	font-size: 11px;
	border-bottom: 1px solid #0075be;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.iodine .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #0075be;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.iodine .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #2aa3ff, inset 0 -1px 0 #008fe5;
	box-shadow: inset 0 1px 0 #2aa3ff, inset 0 -1px 0 #008fe5;
	text-shadow: inherit;
	font-size: 12px;
	border-color: inherit;
}

.iodine .valo-menu-title h1, .iodine .valo-menu-title .v-label-h1, .iodine .valo-menu-title h2, .iodine .valo-menu-title .v-label-h2, .iodine .valo-menu-title h3, .iodine .valo-menu-title .v-label-h3, .iodine .valo-menu-title h4, .iodine .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.iodine .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: 14px 6px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.iodine .v-menubar-user-menu:focus:after {
	display: none;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 2px;
	color: #0095f1;
	padding: 0 9px;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem:first-child, .iodine .v-menubar-user-menu .v-menubar-menuitem:last-child, .iodine .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 2px;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: #25acff;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem-checked, .iodine .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: #0095f1;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .iodine .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: #eaf3f9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.iodine .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: #eaf3f9;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem-disabled, .iodine .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.iodine .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.iodine .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 42px;
	height: 42px;
	border-radius: 22px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #c5c5c5;
}

.iodine .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.iodine .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.iodine .valo-menu-subtitle {
	color: #868686;
	margin: 6px 0 6px 14px;
	border-bottom: 1px solid #666666;
}

.iodine .valo-menu-subtitle [class*="badge"] {
	color: #66b1df;
}

.iodine .valo-menuitems {
	display: block;
}

.iodine .valo-menu-item {
	outline: none;
	font-weight: 500;
	padding: 0 28px 0 14px;
	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;
}

.iodine .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.iodine .valo-menu-item [class*="badge"] {
	color: #66b1df;
}

.iodine .valo-menu-item.selected {
	background: #434343;
}

.iodine .valo-menu-item.selected .v-icon {
	color: #0095f1;
}

.iodine .valo-menu-item.selected [class*="badge"] {
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: #c1dff1;
}

.iodine .valo-menu-item:focus, .iodine .valo-menu-item:hover, .iodine .valo-menu-item.selected {
	color: white;
}

.iodine .valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 14px;
	text-align: center;
	vertical-align: middle;
	-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0.75)));
}

.iodine .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.iodine .valo-menu-item [class*="badge"] {
	background-color: #585858;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 3px 5px;
	min-width: 8px;
	text-align: center;
	top: 2.5px;
	border-radius: 2px;
}

.iodine .valo-menu-part.large-icons {
	background-color: #4b4b4b;
	min-width: 56px;
	max-width: 84px;
}

.iodine .valo-menu-part.large-icons .valo-menu-title {
	font-size: 9px;
}

.iodine .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.iodine .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 8px;
}

.iodine .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 22px;
	height: 22px;
}

.iodine .valo-menu-part.large-icons [class*="subtitle"] {
	margin: 7px 0 0;
	padding: 6px 19px 6px 7px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 10px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.iodine .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 7px;
}

.iodine .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.iodine .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 19px;
	line-height: 1;
	padding: 9px;
	text-align: center;
	border-top: 1px solid #555555;
}

.iodine .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.iodine .valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 8px;
	line-height: 1.3;
}

.iodine .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.iodine .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.iodine .valo-menu-part.large-icons .valo-menu-item.selected {
	background: #434343;
}

.iodine .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.iodine .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.iodine .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #4b4b4b;
}

.iodine .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 34px !important;
	height: 34px;
	border-radius: 2px;
	text-align: center;
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: white;
	font-size: 19px;
	line-height: 34px;
	margin: 14px auto;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.iodine .valo-menu-logo:focus {
	outline: none;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #4b4b4b;
	min-width: 56px;
	max-width: 84px;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 9px;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 8px;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 22px;
	height: 22px;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 7px 0 0;
	padding: 6px 19px 6px 7px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3c3c3c;
	font-size: 10px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 7px;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 19px;
	line-height: 1;
	padding: 9px;
	text-align: center;
	border-top: 1px solid #555555;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.iodine .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: 8px;
	line-height: 1.3;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #434343;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #434343;
}

.iodine .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 3px;
	padding-right: 3px;
	top: 6px;
	right: 6px;
	border: 2px solid #4b4b4b;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 28px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 28px;
}

.iodine .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 28px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.iodine .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: 28px;
	color: #89c8ee;
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 27px;
	white-space: nowrap;
}

.iodine .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: 14px;
	height: 14px;
	border-radius: 7px;
	border: none;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #4b4b4b;
	background-image: -webkit-linear-gradient(right, #4b4b4b 0%, #4b4b4b 7px);
	background-image: linear-gradient(to left,#4b4b4b 0%, #4b4b4b 7px);
	color: #a5a5a5;
	font-size: 11px;
	line-height: 22px;
	border-right: 1px solid #3b3b3b;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 28px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 14px 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;
}

.iodine .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .iodine .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%);
}

.iodine .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.iodine .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 14px;
	overflow: hidden;
}

.iodine .drg-dropdown__drg-combobox {
	position: relative;
	width: 140px;
	height: 28px;
	border-radius: 2px;
	white-space: nowrap;
}

.iodine .drg-dropdown__drg-combobox [class*="input"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 28px;
	border-radius: 2px;
	padding: 3px 6px;
	border: 1px solid #c5c5c5;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	width: 100% !important;
	height: 100%;
	padding-right: 29px;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox [class*="input"].v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .drg-dropdown__drg-combobox [class*="input"]:focus {
	outline: none;
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
}

.iodine .drg-dropdown__drg-combobox [class*="input"][class*="prompt"] {
	color: #a3a3a3;
}

.iodine .drg-dropdown__drg-combobox .v-icon + [class*="input"] {
	padding-left: 28px;
}

.iodine .drg-dropdown__drg-combobox img.v-icon {
	max-height: 28px;
	margin-left: 6px;
}

.iodine .drg-dropdown__drg-combobox span.v-icon {
	color: #474747;
	width: 28px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 6px;
}

.iodine .drg-dropdown__drg-combobox[class*="prompt"] > [class*="input"] {
	color: #a3a3a3;
}

.iodine .drg-dropdown__drg-combobox [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 28px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	border-left: 1px solid #e4e4e4;
	color: #a3a3a3;
	border-radius: 0 1px 1px 0;
}

.iodine .drg-dropdown__drg-combobox [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	position: absolute;
	width: 28px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.iodine .drg-dropdown__drg-combobox [class$="button"]:hover:before {
	color: #474747;
}

.iodine .drg-dropdown__drg-combobox [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	background-color: rgba(128, 128, 128, 0.2);
}

.iodine .drg-dropdown__drg-combobox.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .drg-dropdown__drg-combobox.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox.v-disabled [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.iodine .drg-dropdown__drg-combobox.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox.v-readonly [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.iodine .drg-dropdown__drg-combobox.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown__drg-combobox .v-icon {
	position: absolute;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox .v-icon.FontAwesome {
	margin-left: 0px;
}

.iodine .drg-dropdown__drg-combobox-error .drg-dropdown__drg-combobox-input {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.iodine .drg-dropdown__drg-combobox-error .drg-dropdown__drg-combobox-button {
	color: #ed473b;
	border-color: #ed473b;
}

.iodine .drg-dropdown__drg-combobox-error-info .drg-dropdown__drg-combobox-input {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.iodine .drg-dropdown__drg-combobox-error-info .drg-dropdown__drg-combobox-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.iodine .drg-dropdown__drg-combobox-error-warning .drg-dropdown__drg-combobox-input {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.iodine .drg-dropdown__drg-combobox-error-warning .drg-dropdown__drg-combobox-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.iodine .drg-dropdown__drg-combobox-error-error .drg-dropdown__drg-combobox-input {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.iodine .drg-dropdown__drg-combobox-error-error .drg-dropdown__drg-combobox-button {
	color: #ed473b;
	border-color: #ed473b;
}

.iodine .drg-dropdown__drg-combobox-error-critical .drg-dropdown__drg-combobox-input {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.iodine .drg-dropdown__drg-combobox-error-critical .drg-dropdown__drg-combobox-button {
	color: #fa007d;
	border-color: #fa007d;
}

.iodine .drg-dropdown__drg-combobox-error-system .drg-dropdown__drg-combobox-input {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.iodine .drg-dropdown__drg-combobox-error-system .drg-dropdown__drg-combobox-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup {
	margin-top: 4px !important;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup [class$="suggestmenu"] {
	padding: 3px 3px;
	border-radius: 2px;
	background-color: white;
	color: #474747;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.09098);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 3px 3px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup table, .iodine .drg-dropdown__drg-combobox-suggestpopup tbody, .iodine .drg-dropdown__drg-combobox-suggestpopup tr, .iodine .drg-dropdown__drg-combobox-suggestpopup td {
	display: block;
	width: 100%;
	overflow-y: hidden;
	float: left;
	clear: both;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup .gwt-MenuItem {
	cursor: pointer;
	line-height: 20px;
	padding: 0 14px 0 7px;
	border-radius: 1px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	height: 20px;
	box-sizing: border-box;
	text-overflow: ellipsis;
	overflow-x: hidden;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup .gwt-MenuItem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0068a9;
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup .gwt-MenuItem .v-icon {
	max-height: 20px;
	margin-right: 4px;
	min-width: 1em;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup .gwt-MenuItem-selected {
	background-color: #0095f1;
	background-image: -webkit-linear-gradient(top, #0095f1 0%, #0095f1 100%);
	background-image: linear-gradient(to bottom,#0095f1 0%, #0095f1 100%);
	color: #eaf3f9;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.iodine .drg-dropdown__drg-combobox-suggestpopup [class$="status"] {
	position: absolute;
	right: 2px;
	background: rgba(212, 212, 212, 0.9);
	color: #3b3b3b;
	border-radius: 0 0 2px 2px;
	height: 17px;
	bottom: -17px;
	font-size: 9px;
	line-height: 17px;
	padding: 0 4px;
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup [class$="status"]  > * {
	color: #3b3b3b;
	text-decoration: none;
}

.iodine .drg-dropdown__drg-combobox-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: 19px;
	height: 19px;
	line-height: 19px;
	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: #464646;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*="page"]:after {
	content: "";
	position: absolute;
	display: block;
	border-radius: 50%;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*="page"]:hover {
	opacity: 1;
	filter: none ;
	background: rgba(250, 250, 250, 0.5);
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*="page"]:hover:after {
	top: -10px;
	bottom: -10px;
	left: -20px;
	right: -20px;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*="page"] span {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup:hover div[class*="page"] {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.iodine .drg-dropdown__drg-combobox-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 2px 0 2px;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*="prev"]:before {
	content: "\f0d8";
}

.iodine .drg-dropdown__drg-combobox-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: 2px 0 2px 0;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*="next"]:before {
	content: "\f0d7";
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*="-off"] {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-no-input {
	cursor: pointer;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iodine .drg-dropdown__drg-combobox-no-input [class*="input"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 0%, #fafafa 100%);
	background-image: linear-gradient(to bottom,#fafafa 0%, #fafafa 100%);
	cursor: inherit;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #c5c5c5;
	text-shadow: inherit;
	text-overflow: ellipsis;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-no-input [class*="input"]:focus {
	outline: none;
	border-color: #0095f1;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.05);
}

.iodine .drg-dropdown__drg-combobox-no-input [class$="button"] {
	border-left: none !important;
}

.iodine .drg-dropdown__drg-combobox-no-input:hover [class$="button"]:before {
	color: inherit;
}

.iodine .drg-dropdown__drg-combobox-borderless .drg-dropdown__drg-combobox-input {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.iodine .drg-dropdown__drg-combobox-borderless .drg-dropdown__drg-combobox-input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-borderless .drg-dropdown__drg-combobox-input[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown__drg-combobox-borderless .drg-dropdown__drg-combobox-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown__drg-combobox-borderless.drg-dropdown__drg-combobox-prompt .drg-dropdown__drg-combobox-input {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown__drg-combobox-align-right input {
	text-align: right;
}

.iodine .drg-dropdown__drg-combobox-align-center input {
	text-align: center;
}

.iodine .drg-dropdown__drg-combobox-tiny {
	height: 21px;
	
	font-size: 9px;
}

.iodine .drg-dropdown__drg-combobox-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: 21px;
	
	padding: 2px 4px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 22px;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-tiny .v-icon + [class*="input"] {
	padding-left: 21px;
}

.iodine .drg-dropdown__drg-combobox-tiny img.v-icon {
	max-height: 21px;
	margin-left: 4px;
}

.iodine .drg-dropdown__drg-combobox-tiny span.v-icon {
	
	width: 21px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 4px;
}

.iodine .drg-dropdown__drg-combobox-tiny [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 21px;
	border-radius: 0 2px 2px 0;
}

.iodine .drg-dropdown__drg-combobox-tiny [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	position: absolute;
	width: 21px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.iodine .drg-dropdown__drg-combobox-tiny [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-disabled [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-readonly [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-tiny.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown__drg-combobox-compact, .iodine .drg-dropdown__drg-combobox-small {
	height: 24px;
	
}

.iodine .drg-dropdown__drg-combobox-compact [class*="input"], .iodine .drg-dropdown__drg-combobox-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: 24px;
	
	padding: 3px 4px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 25px;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-compact .v-icon + [class*="input"], .iodine .drg-dropdown__drg-combobox-small .v-icon + [class*="input"] {
	padding-left: 24px;
}

.iodine .drg-dropdown__drg-combobox-compact img.v-icon, .iodine .drg-dropdown__drg-combobox-small img.v-icon {
	max-height: 24px;
	margin-left: 4px;
}

.iodine .drg-dropdown__drg-combobox-compact span.v-icon, .iodine .drg-dropdown__drg-combobox-small span.v-icon {
	
	width: 24px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 4px;
}

.iodine .drg-dropdown__drg-combobox-compact [class$="button"], .iodine .drg-dropdown__drg-combobox-small [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 24px;
	border-radius: 0 2px 2px 0;
}

.iodine .drg-dropdown__drg-combobox-compact [class$="button"]:before, .iodine .drg-dropdown__drg-combobox-small [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	position: absolute;
	width: 24px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.iodine .drg-dropdown__drg-combobox-compact [class$="button"]:active:after, .iodine .drg-dropdown__drg-combobox-small [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-compact.v-disabled, .iodine .drg-dropdown__drg-combobox-small.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .drg-dropdown__drg-combobox-compact.v-disabled [class$="button"], .iodine .drg-dropdown__drg-combobox-small.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-compact.v-disabled [class$="button"]:active:after, .iodine .drg-dropdown__drg-combobox-small.v-disabled [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-compact.v-readonly [class*="input"], .iodine .drg-dropdown__drg-combobox-small.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-compact.v-readonly [class*="input"]:focus, .iodine .drg-dropdown__drg-combobox-small.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.iodine .drg-dropdown__drg-combobox-compact.v-readonly [class$="button"], .iodine .drg-dropdown__drg-combobox-small.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-compact.v-readonly [class$="button"]:active:after, .iodine .drg-dropdown__drg-combobox-small.v-readonly [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-compact.v-readonly.borderless [class*="input"], .iodine .drg-dropdown__drg-combobox-small.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.iodine .drg-dropdown__drg-combobox-compact.v-readonly.borderless [class*="input"]:focus, .iodine .drg-dropdown__drg-combobox-small.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-compact.v-readonly.borderless [class*="input"][class*="prompt"], .iodine .drg-dropdown__drg-combobox-small.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown__drg-combobox-small {
	font-size: 11px;
}

.iodine .drg-dropdown__drg-combobox-large {
	height: 34px;
	
	font-size: 15px;
}

.iodine .drg-dropdown__drg-combobox-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: 34px;
	
	padding: 4px 6px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 35px;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-large .v-icon + [class*="input"] {
	padding-left: 34px;
}

.iodine .drg-dropdown__drg-combobox-large img.v-icon {
	max-height: 34px;
	margin-left: 6px;
}

.iodine .drg-dropdown__drg-combobox-large span.v-icon {
	
	width: 34px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 6px;
}

.iodine .drg-dropdown__drg-combobox-large [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 34px;
	border-radius: 0 2px 2px 0;
}

.iodine .drg-dropdown__drg-combobox-large [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	position: absolute;
	width: 34px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.iodine .drg-dropdown__drg-combobox-large [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-large.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .drg-dropdown__drg-combobox-large.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-large.v-disabled [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-large.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-large.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.iodine .drg-dropdown__drg-combobox-large.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-large.v-readonly [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-large.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.iodine .drg-dropdown__drg-combobox-large.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-large.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown__drg-combobox-huge {
	height: 45px;
	
	font-size: 20px;
}

.iodine .drg-dropdown__drg-combobox-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: 45px;
	
	padding: 5px 8px;
	
	
	width: 100% !important;
	height: 100%;
	padding-right: 46px;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-huge .v-icon + [class*="input"] {
	padding-left: 45px;
}

.iodine .drg-dropdown__drg-combobox-huge img.v-icon {
	max-height: 45px;
	margin-left: 8px;
}

.iodine .drg-dropdown__drg-combobox-huge span.v-icon {
	
	width: 45px;
	line-height: 1;
	padding-top: 0.12em;
	margin-left: 8px;
}

.iodine .drg-dropdown__drg-combobox-huge [class$="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	position: absolute;
	width: 45px;
	border-radius: 0 2px 2px 0;
}

.iodine .drg-dropdown__drg-combobox-huge [class$="button"]:before {
	font-family: ThemeIcons;
	content: "\f078";
	position: absolute;
	width: 45px;
	text-align: center;
	top: 50%;
	line-height: 1;
	margin-top: -0.47em;
}

.iodine .drg-dropdown__drg-combobox-huge [class$="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.iodine .drg-dropdown__drg-combobox-huge.v-disabled {
	opacity: 0.54;
	filter: alpha(opacity=54.0) ;
}

.iodine .drg-dropdown__drg-combobox-huge.v-disabled [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-huge.v-disabled [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-huge.v-readonly [class*="input"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-huge.v-readonly [class*="input"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.iodine .drg-dropdown__drg-combobox-huge.v-readonly [class$="button"] {
	cursor: default;
	pointer-events: none;
}

.iodine .drg-dropdown__drg-combobox-huge.v-readonly [class$="button"]:active:after {
	display: none;
}

.iodine .drg-dropdown__drg-combobox-huge.v-readonly.borderless [class*="input"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.iodine .drg-dropdown__drg-combobox-huge.v-readonly.borderless [class*="input"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.iodine .drg-dropdown__drg-combobox-huge.v-readonly.borderless [class*="input"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.iodine .drg-dropdown {
	padding: 10px 0;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 2px;
	font-size: 14px;
}

.iodine .drg-dropdown__label {
	font-weight: bold;
}

.iodine .drg-dropdown__label--light {
	color: #79848e;
}

.iodine .drg-dropdown__forecast-warning {
	font-size: 10px;
	margin-top: 3px;
	cursor: pointer;
}

.iodine .drg-dropdown__forecast {
	font-size: 12.5px;
	text-align: center;
	overflow: hidden;
	margin-top: 3px;
}

.iodine .drg-dropdown__forecast-unavailable {
	color: #bcbcbc;
	font-style: italic;
}

.iodine .drg-dropdown__disclaimer .v-window-closebox:before {
	color: gray;
	font-size: 26px;
}

.iodine .drg-dropdown__disclaimer-title {
	text-align: center;
	margin-top: 14px;
	font-size: 17px;
	font-weight: bolder;
}

.iodine .drg-dropdown__disclaimer-body {
	color: #363E47;
	font-weight: 500;
	font-size: 14px;
	white-space: pre-wrap;
	margin: 12px 16px;
}

.iodine .drg-dropdown .v-disabled:hover {
	cursor: default;
	color: #79848e;
}

.iodine .drg-dropdown__divider {
	border: solid 1px rgba(0, 0, 0, 0.07);
}

.iodine .drg-dropdown__more-info__button {
	border-radius: 1px;
	background-color: #f2f2f2;
	border: solid 1px rgba(0, 0, 0, 0.12);
	height: 25px;
	width: 81px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: #79848e;
	font-weight: bold;
}

.iodine .drg-dropdown__more-info__button:hover:not(.v-disabled), .iodine .drg-dropdown__more-info__button.drg-dropdown__more-info__button--active {
	color: #79848e;
	border: solid 1px #0095f1;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .drg-dropdown__more-info__text {
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
}

.iodine .drg-dropdown__drg-combobox.v-widget {
	font-size: 13px;
}

.iodine .drg-dropdown__drg-combobox.v-widget .v-icon + [class*='input'] {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 9px;
	max-width: 100%;
	margin-right: 5px;
}

.iodine .drg-dropdown__drg-combobox.v-widget  > .v-icon {
	right: 28px;
	border: 3px solid white;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup  > .popupContent  > .drg-dropdown__drg-combobox-suggestmenu {
	padding-top: 28px;
	padding-bottom: 56px;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup  > .popupContent  > .drg-dropdown__drg-combobox-suggestmenu tr:nth-child(2n+1) > td {
	background-color: #e6f1ff;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup  > .popupContent  > .drg-dropdown__drg-combobox-suggestmenu tr > td {
	color: #081c2f;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: 0;
	height: 30px;
	align-items: center;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup  > .popupContent  > .drg-dropdown__drg-combobox-suggestmenu tr > td span:not(.v-icon) {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	margin-right: 5px;
	flex-grow: 1;
	margin-left: 6px;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup  > .popupContent  > .drg-dropdown__drg-combobox-suggestmenu tr > td .v-icon {
	min-width: fit-content;
	height: auto;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*='page'] {
	opacity: 1;
	filter: none ;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	right: calc(50% - 13.5px);
	color: #464646;
	border-radius: 50%;
	border: 1px solid #e5e7e8;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*='page']:hover {
	background-color: #e5e7e8;
	border: 0;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*='prev'] {
	top: 4px;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup div[class*='next'] {
	bottom: 28px;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup [class$='status'] {
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
	background-color: transparent;
	border: 0;
	height: 21px;
	bottom: 0;
	font-size: 12px;
	line-height: 21px;
	padding: 0;
	cursor: default;
	pointer-events: none;
	z-index: 3;
}

.iodine .drg-dropdown__drg-combobox-suggestpopup .gwt-MenuItem-selected {
	background: transparent none;
	border: solid 1px #0095f1;
	border-radius: 1px;
	color: #081c2f;
}

.iodine .drg-dropdown__soi-rom-combobox [class*='input'] {
	border-radius: 1px;
	background: #ffffff none;
	border: solid 1px rgba(0, 0, 0, 0.12);
	box-shadow: none;
}

.iodine .tooltip {
	background-color: #323232;
}

.iodine .tooltip.tooltip--green {
	border-left: 8px solid #19a652;
}

.iodine .tooltip.tooltip--red {
	border-left: 8px solid #d85d48;
}

.iodine .tooltip.tooltip--orange {
	border-left: 8px solid #ff9900;
}

.iodine .tooltip.tooltip--blue {
	border-left: 8px solid #0095f1;
}

.iodine .tooltip .v-button {
	color: #fff;
	background: transparent;
	border: none;
	box-shadow: none;
	font-size: 14px;
	margin-top: 3px;
}

.iodine .tooltip .v-button:hover {
	color: #0095f1;
}

.iodine .tooltip .v-button:active {
	color: #0068be;
}

.iodine .tooltip .v-label {
	color: #fff;
	font-size: 14px;
	white-space: pre-wrap;
	word-wrap: break-word;
	line-height: 1.3;
	padding: 0 20px;
}

.iodine .tooltip__close-button {
	border-left: solid 1px #666666;
	padding: 0;
	margin: 0;
}

.iodine .tooltip__close-button .v-button {
	color: #fff;
	border: none;
	font-size: 14px;
	float: right;
	margin-top: 4px;
}

.iodine .tooltip__close-button .v-button:hover {
	color: #0095f1;
}

.iodine .tooltip__close-button .v-button:active {
	color: #0068be;
}

.iodine .tooltip .v-scrollable {
	overflow: visible;
}

.iodine .tooltip .v-scrollable .v-horizontallayout {
	overflow: visible;
}

.iodine .v-smart-filter-checkbox > input {
	display: none;
}

.iodine .v-smart-filter-checkbox > input ~ label {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	color: #081c2f;
	cursor: pointer;
	height: 100%;
	line-height: 1;
	margin-left: 14px;
}

.iodine .v-smart-filter-checkbox > input:checked ~ label::after {
	content: "";
	width: 16px;
	height: 16px;
	top: 7px;
	border-radius: 50%;
	background: #d85d48;
	box-sizing: border-box;
	position: absolute;
	border: 4px solid #fff;
}

.iodine .v-smart-filter-checkbox > input ~ label::before {
	content: "";
	display: inline-block;
	border: 2px solid #e0e0e0;
	border-radius: 50%;
	width: 16px;
	min-width: 16px;
	height: 16px;
	vertical-align: middle;
	margin-right: 5px;
	z-index: 1;
}

.iodine .v-smart-filter-checkbox > input:checked ~ label::before {
	border: 2px solid #d85d48;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--green > input:checked ~ label::after {
	background: #19a652;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--green input:checked ~ label::before {
	border: 2px solid #19a652;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--yellow > input:checked ~ label::after {
	background: #eecc52;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--yellow input:checked ~ label::before {
	border: 2px solid #eecc52;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--blue > input:checked ~ label::after {
	background: #0095f1;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--blue input:checked ~ label::before {
	border: 2px solid #0095f1;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--purple > input:checked ~ label::after {
	background: #532d6d;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--purple input:checked ~ label::before {
	border: 2px solid #532d6d;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--green > input:checked ~ label::after {
	background: #19a652;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--green input:checked ~ label::before {
	border: 2px solid #19a652;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkred > input:checked ~ label::after {
	background: #ac4a39;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkred input:checked ~ label::before {
	border: 2px solid #ac4a39;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkyellow > input:checked ~ label::after {
	background: #bea341;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkyellow input:checked ~ label::before {
	border: 2px solid #bea341;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkblue > input:checked ~ label::after {
	background: #0068be;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkblue input:checked ~ label::before {
	border: 2px solid #0068be;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkpurple > input:checked ~ label::after {
	background: #2f1a45;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkpurple input:checked ~ label::before {
	border: 2px solid #2f1a45;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkgreen > input:checked ~ label::after {
	background: #148441;
}

.iodine .v-smart-filter-checkbox.v-smart-filter-checkbox--darkgreen input:checked ~ label::before {
	border: 2px solid #148441;
}

.iodine .v-tumbler-checkbox {
	line-height: 0;
}

.iodine .v-tumbler-checkbox > input {
	display: none;
}

.iodine .v-tumbler-checkbox > input ~ label {
	background: #b5b5b5;
	border-radius: 10px;
	height: 14px;
	overflow: hidden;
	position: relative;
	display: inline-block;
	width: 24px;
}

.iodine .v-tumbler-checkbox > input ~ label::after {
	background: #fff !important;
	border-radius: 10px;
	border: 1px solid #b5b5b5;
	content: "";
	height: 13px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.1s ease-in-out;
	width: 13px;
	z-index: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.iodine .v-tumbler-checkbox > input:checked ~ label::after {
	border: 1px solid #19a652;
	left: calc(100% - 13px);
	right: 0;
}

.iodine .v-tumbler-checkbox > input ~ label::before {
	background: #19a652;
	border-radius: 10px 0 0 10px;
	border: 0 !important;
	box-shadow: none !important;
	content: "";
	height: 14px;
	left: -100%;
	outline: none !important;
	position: absolute;
	text-shadow: none !important;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.1s ease-in-out;
	width: 17.5px;
	z-index: 0;
}

.iodine .v-tumbler-checkbox > input:checked ~ label::before {
	left: 0;
}

.iodine .search-field {
	font-size: 12px;
	color: #081c2f;
	background: #ffffff;
}

.iodine .search-field .v-icon {
	color: rgba(0, 0, 0, 0.54);
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.iodine .v-caption-search-field__text-field span.v-icon {
	font-size: 22px;
	bottom: 0;
}

.iodine .search-field__clear-button span.v-icon {
	font-size: 24px;
	bottom: 0;
}

.iodine .search-field--small span.v-icon {
	font-size: 16px;
}

.iodine .search-field--small .v-caption-search-field__text-field span.v-icon {
	width: 20px;
}

.iodine .search-field--small .v-textfield-inline-icon {
	padding-left: 20px;
}

.iodine .search-field--large {
	font-size: 14px;
	padding: 0 12px;
}

.iodine .search-field--large .search-field__text-field {
	padding-left: 38px;
}

.iodine .search-field__counter-label {
	color: #d4d4d4;
	margin-right: 8px;
}

.iodine .menu-overlap {
	position: relative;
	z-index: 1;
}

.iodine .iodine-icon-button {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	border: 0;
	padding: 0;
}

.iodine .iodine-icon-button:hover:after {
	background: transparent;
}

.iodine .iodine-input {
	padding: 15px;
	border: solid 1px #e6f1ff;
	width: 100%;
	border-radius: 6px;
	font-size: 13px;
	color: #081c2f;
	box-sizing: border-box;
}

.iodine .iodine-input:focus {
	outline: none;
}

.iodine .iodine-button, .iodine .iodine-button--fill, .iodine .iodine-button--outline, .iodine .iodine-button--fill--primary, .iodine .iodine-button--fill--purple, .iodine .iodine-button--fill--green, .iodine .iodine-button--fill--red, .iodine .iodine-button--outline--primary, .iodine .iodine-button--outline--purple {
	padding: 10px 0;
	border-radius: 6px;
	user-select: none;
	cursor: pointer;
	text-align: center;
	font-size: 14px;
	transition: 0.12s ease;
}

.iodine .iodine-button:focus, .iodine .iodine .iodine-button--fill:focus, .iodine .iodine .iodine-button--outline:focus, .iodine .iodine .iodine .iodine-button--fill--primary:focus, .iodine .iodine .iodine .iodine-button--fill--purple:focus, .iodine .iodine .iodine .iodine-button--fill--green:focus, .iodine .iodine .iodine .iodine-button--fill--red:focus, .iodine .iodine .iodine .iodine-button--outline--primary:focus, .iodine .iodine .iodine .iodine-button--outline--purple:focus {
	outline: none;
}

.iodine .iodine-button--sm {
	padding: 2.5px 30px;
	border-radius: 3px;
	user-select: none;
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	transition: 0.12s ease;
}

.iodine .iodine-button--sm:focus {
	outline: none;
}

.iodine .iodine-button--fill, .iodine .iodine-button--fill--primary, .iodine .iodine-button--fill--purple, .iodine .iodine-button--fill--green, .iodine .iodine-button--fill--red {
	box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
	color: #fff;
	user-select: none;
	outline: none !important;
	border: 0;
}

.iodine .iodine-button--fill:active, .iodine .iodine .iodine-button--fill--primary:active, .iodine .iodine .iodine-button--fill--purple:active, .iodine .iodine .iodine-button--fill--green:active, .iodine .iodine .iodine-button--fill--red:active {
	box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.2);
}

.iodine .iodine-button--fill:focus, .iodine .iodine .iodine-button--fill--primary:focus, .iodine .iodine .iodine-button--fill--purple:focus, .iodine .iodine .iodine-button--fill--green:focus, .iodine .iodine .iodine-button--fill--red:focus {
	outline: none;
}

.iodine .iodine-button--fill--primary {
	background: #0095f1;
}

.iodine .iodine-button--fill--primary:hover {
	background: #33aaf3;
}

.iodine .iodine-button--fill--primary:active {
	background: #0068be;
}

.iodine .iodine-button--fill--purple {
	background: #532d6d;
}

.iodine .iodine-button--fill--purple:hover {
	background: #856794;
}

.iodine .iodine-button--fill--purple:active {
	background: #2f1a45;
}

.iodine .iodine-button--fill--green {
	background: #19a652;
}

.iodine .iodine-button--fill--green:hover {
	background: #47b774;
}

.iodine .iodine-button--fill--green:active {
	background: #148441;
}

.iodine .iodine-button--fill--red {
	background: #d85d48;
}

.iodine .iodine-button--fill--red:hover {
	background: #df7d6c;
}

.iodine .iodine-button--fill--red:active {
	background: #ac4a39;
}

.iodine .iodine-button--outline, .iodine .iodine-button--outline--primary, .iodine .iodine-button--outline--purple {
	border: 2px solid;
	background: transparent;
	box-shadow: none;
}

.iodine .iodine-button--outline--primary {
	border-color: #0095f1;
	color: #0095f1;
}

.iodine .iodine-button--outline--primary:hover {
	color: #fff;
	background: #0095f1;
}

.iodine .iodine-button--outline--primary:active {
	color: white;
	background: #0068be;
	border-color: #0068be;
}

.iodine .iodine-button--outline--purple {
	border-color: #532d6d;
	color: #532d6d;
}

.iodine .iodine-button--outline--purple:hover {
	color: white;
	background: #532d6d;
}

.iodine .iodine-button--outline--purple:active {
	color: white;
	background: #2f1a45;
	border-color: #2f1a45;
}

.iodine .iodine-drg-flag-color-cc {
	background-color: #cd8fc1;
	color: #fff;
}

.iodine .iodine-drg-flag-color-mcc {
	background-color: #856794;
	color: #fff;
}

.iodine .iodine-drg-flag-color-hcc {
	background-color: #50bfcb;
	color: #fff;
}

.iodine .iodine-drg-flag-color-hac {
	background-color: #bdbdbd;
	color: #fff;
}

.iodine .iodine-drg-flag-color-or {
	background-color: #6ca9cf;
	color: #fff;
}

.iodine .iodine-drg-flag-color-ord {
	background-color: #2f1a45;
	color: #fff;
}

.iodine .iodine-drg-flag-color-ds {
	background-color: #f1d674;
	color: #fff;
}

.iodine .v-grid-cell.center-align {
	text-align: center;
}

.iodine .v-grid-cell.right-align {
	text-align: right;
}

.iodine .ah-card-list .ah-card-list-item .ah-card-list-item-heading .ah-text {
	font-size: 15px !important;
}

.iodine .ah-card-list .ah-card-list-item .ah-card-list-item-text {
	font-size: 14px !important;
}

.iodine .account-window-header {
	font-size: 18px;
	font-weight: bold;
	color: #081c2f;
	letter-spacing: 0.5px;
	padding-left: 29px;
	padding-top: 14px;
}

.iodine .account-window .v-window-closebox:before {
	content: "\E5CD";
	font-family: "Material Icons";
	font-size: 22px;
	color: #081c2f;
}

.iodine .account-window-top-holder {
	border-bottom: solid 1px #e0e0e0;
}

.iodine .account-window-account-tab, .iodine .account-window-display-tab, .iodine .account-window-profile-tab, .iodine .account-window-preferences-tab {
	margin-left: 39px;
	padding-bottom: 9px;
	opacity: 0.54;
	height: 24px;
	color: #081c2f;
	font-size: 12px;
	font-weight: normal;
}

.iodine .account-window-account-tab:hover, .iodine .account-window-display-tab:hover, .iodine .account-window-profile-tab:hover, .iodine .account-window-preferences-tab:hover, .iodine .account-window-selected-tab {
	cursor: pointer;
	padding-bottom: 5px;
	border-bottom: solid 4px #0095f1;
	opacity: 1;
}

.iodine .account-window-profile-tab {
	margin-left: 29px;
}

.iodine .account-window-label, .iodine .account-window-label-active {
	margin-right: 7px;
	font-weight: normal;
	padding: 5px 0;
	font-size: 12px;
	color: #081c2f;
	letter-spacing: 1px;
}

.iodine .account-window-text-field.v-textfield, .iodine .account-window-current-password, .iodine .account-window-text-field-narrow {
	border-radius: 2px;
	border: solid 1px #e0e0e0;
}

.iodine .account-window-text-field.v-textfield:focus, .iodine .account-window-text-field-narrow.v-textfield:focus {
	box-shadow: 0 0 0 2px #0095f1;
}

.iodine .account-window-profile-image {
	height: 45px;
	width: 45px;
	margin-top: 30px;
	border-radius: 50%;
}

.iodine .account-window-update-button.v-button {
	margin: 10px 22px 0 0;
	font-weight: bold;
	height: 40px;
	width: 150px;
}

.iodine .account-window-background-caption-label {
	cursor: pointer;
	font-weight: normal;
	font-size: 12px;
	margin-top: 14px;
	color: #081c2f;
}

.iodine .account-window__background-thumbnail {
	cursor: pointer;
}

.iodine .account-window__background-thumbnail--selected {
	background: #e6f1ff;
}

.iodine .account-window-themes-label {
	font-weight: normal;
	font-size: 12px;
	color: #081c2f;
	margin: 28px 0 0 30px;
}

.iodine .account-window-account-separator {
	border-bottom: solid 1px #e0e0e0;
}

.iodine .account-window-label-password-confirmation {
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	color: #081c2f;
	margin: 22px 0 12px 0;
}

.iodine .account-window-current-password {
	margin: 0 72px 0 0;
}

.iodine .account-window-label-active {
	opacity: 1;
}

.iodine .account-window-current-password-margin {
	margin-bottom: 16px;
}

.iodine .account-window-label-margin-left {
	margin-left: 30px;
}

.iodine .account-window-text-field-narrow {
	border-radius: 6px;
	margin-top: 2px;
}

.iodine .account-window-security-question-number {
	margin-right: 13px;
}

.iodine .account-window-upload-button .v-button, .iodine .account-window-upload-button .v-button:hover:after, .iodine .account-window-upload-button .v-button:active:after {
	font-size: 11px;
	font-weight: normal;
	color: #081c2f;
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	border-radius: 0;
	border: none;
	border-top-color: transparent;
	border-bottom-color: transparent;
	background: #ffffff;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
}

.iodine .account-window-warning-icon {
	margin: 0 15px 0 15px;
}

.iodine .account-window-error-message {
	border-radius: 2px;
	border: solid 1px #d85d48;
	margin-bottom: 6px;
}

.iodine .account-window-error-message-label {
	font-size: 12px;
	color: #081c2f;
	letter-spacing: normal;
}

.iodine .account-window-error-message-account {
	margin: 9px 0 0 0;
}

.iodine .account-window-top-label-incorrect-answer-margin {
	margin-top: 6px;
}

.iodine .account-window__background-thumbnail--custom .v-caption-on-top {
	margin-top: -18px;
}

.iodine .account-window__background-upload {
	background-color: #eee;
	position: relative;
}

.iodine .account-window__background-upload .v-button {
	background: transparent;
	border: none;
	box-shadow: none;
	font-size: 24px;
	overflow: hidden;
	position: absolute;
	top: 25%;
}

.iodine .account-window__background-upload .v-button:hover::after, .iodine .account-window__background-upload .v-button:active::after {
	background: transparent;
}

.iodine .account-window__background-upload .v-button::after {
	color: #081c2f;
	content: "\E2C6";
	font-family: "Material Icons";
	text-align: center;
}

.iodine .v-caption-account-window__background-upload {
	font-size: 10px;
	margin-top: -15px;
}

.iodine .v-slot-account-window__custom-image {
	position: absolute;
	top: 12%;
	left: 15%;
	transition: all 0.4s;
}

.iodine .v-slot-account-window__custom-image:hover + .v-slot-account-window__custom-background-button .account-window__custom-background-button {
	display: inline-block;
}

.iodine .account-window__custom-background-button {
	color: #081c2f;
	font-size: 24px;
	position: absolute;
	left: 38%;
	top: 50%;
	z-index: 1;
	display: none;
	padding: 0;
}

.iodine .account-window__custom-background-button:hover {
	display: inline-block;
}

.iodine .account-window__custom-background-button:active {
	display: inline-block;
}

.iodine .account-window__custom-image--hover {
	opacity: 0.4;
}

.iodine .account-window__preferences__header {
	border: 1px solid rgba(0, 0, 0, 0.12);
	background-color: white;
}

.iodine .account-window__preferences__content-panel {
	background-color: #f6f6f6;
}

.iodine .account-window__preferences__hint-label {
	margin-top: 28px;
	padding-bottom: 12px;
	font-size: 14px;
	padding-left: 12px;
	padding-right: 12px;
	text-align: center;
}

.iodine .account-window__preferences__sections-contents {
	border-top: solid 1px;
	border-top-color: rgba(0, 0, 0, 0.12);
	margin-top: 12px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.iodine .account-window__preferences__section-tile__label {
	margin-left: 8px;
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
	margin-top: 6px;
}

.iodine .account-window__preferences__sections-container .radiobutton-row {
	margin-left: -18px;
}

.iodine .account-window__preferences__sections-container .patient-details__left-bar__section__button {
	cursor: default;
}

.iodine .account-window__preferences__save-button.v-button {
	box-sizing: border-box;
	margin: 20px 20px 0 0;
	font-weight: bold;
	height: 40px;
	width: 150px;
}

.iodine .account-window__preferences__save-button-container {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .smartlist__filter-menu__header__label {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
	padding: 21px;
}

.iodine .v-panel-content-smartlist__filter-menu__content__column {
	border-top: 1px solid #e0e0e0;
}

.iodine .v-panel-content-smartlist__filter-menu__content__column--left .smartlist__filter-menu__checkbox {
	margin-left: 14px;
}

.iodine .v-panel-content-smartlist__filter-menu__content__column--middle {
	border-left: 1px solid #e0e0e0;
}

.iodine .v-panel-content-smartlist__filter-menu__content__column--right {
	border-left: 1px solid #e0e0e0;
}

.iodine .smartlist__filter-menu__checkbox {
	margin-top: 10px;
}

.iodine .smartlist__filter-menu__checkbox > input {
	display: none;
}

.iodine .smartlist__filter-menu__checkbox > input ~ label {
	position: relative;
	display: inline-flex;
	font-size: 12px;
	line-height: 1.58;
	text-align: left;
	color: #333333;
	align-items: center;
}

.iodine .smartlist__filter-menu__checkbox > input:checked ~ label::after {
	content: "\E5CA";
	font-family: "Material Icons";
	color: #fff;
	line-height: 1;
	left: 1px;
	font-size: 16px;
	font-weight: bold;
	box-sizing: border-box;
	position: absolute;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
}

.iodine .smartlist__filter-menu__checkbox.group-checkbox--indeterminate > input ~ label::after {
	content: "\E7F6";
	font-family: "Vaadin-Icons";
	color: #fff;
	line-height: 1;
	left: 1px;
	font-size: 16px;
	font-weight: bold;
	box-sizing: border-box;
	position: absolute;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
}

.iodine .smartlist__filter-menu__checkbox > input ~ label::before {
	content: "";
	display: inline-block;
	border: 2px solid #0095f1;
	border-radius: 2px;
	width: 14px;
	height: 14px;
	vertical-align: middle;
	margin-right: 5px;
	cursor: pointer;
}

.iodine .smartlist__filter-menu__checkbox > input:checked ~ label::before, .iodine .smartlist__filter-menu__checkbox.group-checkbox--indeterminate > input ~ label::before {
	border: 2px solid #0095f1;
	background: #0095f1;
}

.iodine .smartlist__filter-menu__checkbox--padded {
	padding-left: 10px;
}

.iodine .smartlist__filter-menu__content__column__label {
	display: block;
	background: #e6f1ff;
	margin: 7px -11px 0 -11px;
	padding: 4px 11px;
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
}

.iodine .v-absolutelayout-wrapper-hidden {
	display: none;
}

.iodine .smartlist__background, .iodine .smartlist__background--custom::before, .iodine .smartlist__background--city::before, .iodine .smartlist__background--clouds::before, .iodine .smartlist__background--forest::before, .iodine .smartlist__background--ocean::before, .iodine .smartlist__background--street::before, .iodine .smartlist__background--urban::before {
	content: "";
	opacity: 0.25;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	background-size: cover;
	z-index: 0;
}

.iodine .smartlist__background--default {
	background: #eee;
}

.iodine .smartlist__background--city::before {
	background: url(images/background/city.jpg) no-repeat center;
	background-size: cover;
}

.iodine .smartlist__background--clouds::before {
	background: url(images/background/clouds.jpg) no-repeat center;
	background-size: cover;
}

.iodine .smartlist__background--forest::before {
	background: url(images/background/forest.jpg) no-repeat center;
	background-size: cover;
}

.iodine .smartlist__background--ocean::before {
	background: url(images/background/ocean.jpg) no-repeat center;
	background-size: cover;
}

.iodine .smartlist__background--street::before {
	background: url(images/background/street.jpg) no-repeat center;
	background-size: cover;
}

.iodine .smartlist__background--urban::before {
	background: url(images/background/urban.jpg) no-repeat center;
	background-size: cover;
}

.iodine .smartlist__navbar {
	background: #ffffff;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	z-index: 2;
	position: relative;
}

.iodine .smartlist__navbar > div > div {
	overflow: visible !important;
}

.iodine .smartlist__navbar__separator {
	background: #eeeeee;
	margin: 0 6px 0 10px;
}

.iodine .smartlist__navbar__label {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #081c2f;
	margin-left: 38px;
}

.iodine .smartlist__navbar__tab-label {
	font-size: 14px !important;
	color: #081c2f;
	padding-bottom: 12px;
	opacity: 0.7;
	cursor: pointer;
	letter-spacing: normal;
	font-weight: normal;
}

.iodine .smartlist__navbar__tab-label--selected {
	cursor: default;
}

.iodine .smartlist__navbar__tab-label--selected, .iodine .smartlist__navbar__tab-label:hover {
	padding-bottom: 8px;
	opacity: 1;
	border-bottom: solid 4px #0095f1;
	letter-spacing: normal;
	font-weight: normal;
}

.iodine .v-button.borderless.smartlist__navbar__filter-button {
	margin-right: 43px;
	font-size: 13px;
	font-weight: normal;
	color: #081c2f;
	letter-spacing: normal;
	cursor: pointer;
	padding-left: 6px;
	border-left: 1px solid #eeeeee;
}

.iodine .v-button.borderless.smartlist__navbar__filter-button:hover {
	background-color: #e6f1ff;
}

.iodine .v-button.borderless.smartlist__navbar__filter-button.smartlist__navbar__filter-button--active {
	color: #ffffff;
	background-color: #0095f1;
	border-color: #0095f1;
}

.iodine .v-button.borderless.smartlist__navbar__filter-button.smartlist__navbar__filter-button--hidden {
	color: #ffffff;
	background-color: transparent;
	border-color: transparent;
}

.iodine .smartlist__navbar__global-search-field__container {
	position: relative;
}

.iodine .smartlist__navbar__global-search-field__container--visible .smartlist__navbar__global-search-field__show-button {
	left: 6px;
}

.iodine .smartlist__navbar__global-search-field__container--visible .smartlist__navbar__global-search-field__hide-button {
	visibility: visible;
}

.iodine .smartlist__navbar__global-search-field__container--visible .smartlist__navbar__global-search-field__input {
	width: 224px;
	visibility: visible;
}

.iodine .smartlist__navbar__global-search-field__input {
	border-radius: 2px;
	border: solid 1px #e0e0e0;
	box-shadow: none;
	padding: 7px 39px;
	height: 30px;
	width: 0;
	font-size: 14px;
	color: #081c2f;
	visibility: hidden;
	transition: width 0.2s ease-in-out;
}

.iodine .smartlist__navbar__global-search-field__show-button {
	font-size: 20px;
	position: absolute;
	top: 3px;
	left: calc(100% - 30px);
	opacity: 0.54;
	color: #000;
	transition: left 0.2s ease-in-out;
}

.iodine .smartlist__navbar__global-search-field__hide-button {
	font-size: 20px;
	position: absolute;
	top: 3px;
	left: calc(100% - 30px);
	opacity: 0.54;
	color: #000;
	visibility: hidden;
}

.iodine .smartlist__main-panel {
	border: 0;
	border-radius: 0;
	position: relative;
}

.iodine .smartlist__main-panel  > .v-panel-content {
	text-align: center;
}

.iodine .smartlist__main-panel__content {
	min-width: 600px;
}

.iodine .smartlist__content__top-container {
	position: relative;
}

.iodine .smartlist__content__buttons-container {
	height: 60px;
	padding: 17px 33px;
	width: 100%;
	text-align: right;
}

.iodine .smartlist--cdi__content__buttons-container {
	text-align: left;
}

.iodine .smartlist__content__filters {
	text-align: right;
	width: 100%;
	margin-top: 20px;
}

.iodine .smartlist__content__filters__show-details-label {
	border: solid 1px #ece6e6;
	border-radius: 89px;
	margin-top: 4px;
	cursor: pointer;
	font-size: 13px;
	color: #081c2f;
	text-align: center;
	font-weight: normal;
	letter-spacing: normal;
}

.iodine .smartlist__content__filters__show-details-label:hover {
	border: solid 1px #0095f1;
}

.iodine .smartlist__content__filters__menu {
	margin-right: 9px;
}

.iodine .smartlist__content__filters__menu .v-button:focus:after {
	border: none;
}

.iodine .smartlist__content__filters__menu.v-menubar > .v-menubar-menuitem-selected {
	background: none;
}

.iodine .smartlist__content__filters__menu .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after {
	content: none;
}

.iodine .smartlist__content__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-caption {
	font-size: 12px;
	line-height: 1.58;
	font-weight: normal;
	color: #081c2f;
	position: relative;
}

.iodine .smartlist__content__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-caption:before {
	content: "\E5C7";
	font-family: "Material Icons";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0;
	font-size: 12px;
	color: #474a4f;
}

.iodine .smartlist__content__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-caption:after {
	content: "\E5C5";
	font-family: "Material Icons";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0;
	font-size: 12px;
	margin: auto;
	color: #474a4f;
	opacity: 1;
}

.iodine .smartlist__content__filters__menu:not(.v-menubar-submenu):hover .v-menubar-menuitem, .iodine .smartlist__content__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-selected {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 2px;
}

.iodine .smartlist__content__filters__menu.v-menubar-submenu .v-menubar-menuitem-caption {
	font-size: 12px;
	text-align: left;
	color: #474a4f;
}

.iodine .smartlist__content__filters__menu .v-menubar-menuitem:hover, .iodine .smartlist__content__filters__menu .v-menubar-menuitem:focus, .iodine .smartlist__content__filters__menu .v-menubar-menuitem:active:before {
	background: #e6f1ff;
}

.iodine .v-menubar-submenu.smartlist__content__filters__menu .v-menubar-menuitem {
	padding: 8px 81px 8px 38px;
	box-shadow: inset 0 -1px 0 0 #eeeeee;
	border-radius: 0;
}

.iodine .smartlist__content__filters__date-range-combo-box {
	margin-right: 9px;
}

.iodine .smartlist__content__filters__date-range-combo-box.v-filterselect [class*='input'] {
	background: none;
	border: none;
	box-shadow: none;
	border-radius: 2px;
	font-size: 12px;
}

.iodine .smartlist__content__filters__date-range-combo-box.v-filterselect.v-filterselect-focus [class*='input'] {
	background-color: rgba(0, 0, 0, 0.1);
}

.iodine .smartlist__content__filters__date-range-combo-box.v-filterselect.v-filterselect-focus [class*='input']:hover {
	background: none;
}

.iodine .smartlist__content__filters__date-range-combo-box.v-filterselect .v-filterselect-button {
	border: none;
	color: #474a4f;
}

.iodine .smartlist__content__filters__date-range-combo-box.v-filterselect:hover {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 2px;
}

.iodine .v-filterselect-suggestpopup-smartlist__content__filters__date-range-combo-box.v-filterselect-suggestpopup [class$='suggestmenu'] {
	border-radius: 2px;
	padding: 0;
	width: auto !important;
}

.iodine .v-filterselect-suggestpopup-smartlist__content__filters__date-range-combo-box.v-filterselect-suggestpopup .gwt-MenuItem {
	padding: 8px 27px;
	height: 30px;
	border-bottom: 1px solid #eee;
	line-height: 1.5;
}

.iodine .v-filterselect-suggestpopup-smartlist__content__filters__date-range-combo-box.v-filterselect-suggestpopup .gwt-MenuItem.gwt-MenuItem-selected {
	color: #474a4f;
	background: #eee none;
	border-radius: 0;
}

.iodine .smartlist__content__search-input__container {
	position: relative;
}

.iodine .smartlist__content__search-input {
	border: solid 1px #eeeeee;
	border-radius: 2px;
	position: relative;
}

.iodine .smartlist__content__refresh-icon, .iodine .smartlist__content__hit-me-icon, .iodine .smartlist__content__print-icon, .iodine .smartlist__content__export-icon {
	color: #898f94;
}

.iodine .smartlist__content__refresh-icon:hover, .iodine .smartlist__content__hit-me-icon:hover, .iodine .smartlist__content__print-icon:hover, .iodine .smartlist__content__export-icon:hover {
	color: #081c2f;
}

.iodine .v-horizontallayout.smartlist__navbar__nav-tabs-container {
	display: inline-flex;
	justify-content: space-between;
	margin-left: 25%;
}

.iodine .smartlist__content__info-layout {
	background: #fafafa;
	margin-left: 4px;
	border-radius: 0 0 3px 3px;
	border-top: 1px solid #eeeeee;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	width: calc(100% - 4px) !important;
}

.iodine .smartlist__faq__header-label {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #081c2f;
}

.iodine .smartlist__faq__header-layout {
	width: 100%;
	height: 70px;
	border-radius: 3px;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15), inset 0 -1px 0 0 #e0e0e0;
	position: relative;
}

.iodine .smartlist__faq__footer-layout {
	width: 100%;
	height: 70px;
	border-radius: 2px;
	box-shadow: 0 -1px 2px 0 rgba(36, 50, 66, 0.15);
	padding-right: 20px;
	position: relative;
}

.iodine .smartlist__faq__button, .iodine .smartlist__faq__button__agree, .iodine .smartlist__faq__button__disagree {
	letter-spacing: 0.3px;
	text-align: center;
	border-radius: 6px;
	border: 2px solid #0095f1;
}

.iodine .smartlist__faq__button__agree {
	width: 235px;
	background: #0095f1;
	border-width: 0;
	box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
	color: #fff;
}

.iodine .smartlist__faq__button__disagree {
	width: 150px;
	height: 30px;
	background: rgba(255, 255, 255, 0.2);
	color: #0095f1;
	margin-right: 10px;
}

.iodine .smartlist__faq__window {
	background-color: #767676;
}

.iodine .smartlist__faq__main-layout {
	background-color: #fff;
}

.iodine .smartlist__faq__body {
	font-size: 13px;
	line-height: 1.5;
	padding-left: 20px !important;
	padding-right: 20px !important;
}

.iodine .smartlist__faq__body.v-layout ul > li {
	color: #000;
}

.iodine .smartlist__grid__cell--left .v-label {
	width: 145px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iodine .smartlist__grid__cell--left, .iodine .smartlist__grid__cell {
	height: 50px;
	line-height: 50px;
	width: 100%;
	text-overflow: clip;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	background-color: #ffffff;
	cursor: pointer;
	transition: 100ms;
	padding-right: 5px;
	color: #79848e;
}

.iodine .smartlist__grid td:first-child .smartlist__grid__cell--left {
	border-radius: 2px;
	font-size: 15px;
	line-height: 40px;
	font-weight: bold;
	color: black;
}

.iodine .smartlist__grid__cell--left .iodine-icons {
	color: #0095f1;
	font-size: 11px;
	margin: 20px 0 0 3px;
}

.iodine .smartlist__grid__cell--left-0095f1 {
	border-left: 4px solid #0095f1;
}

.iodine .smartlist__grid__cell--left-eecc52 {
	border-left: 4px solid #eecc52;
}

.iodine .smartlist__grid__cell--left-19a652 {
	border-left: 4px solid #19a652;
}

.iodine .smartlist__grid__cell--left-d85d48 {
	border-left: 4px solid #d85d48;
}

.iodine .smartlist__grid__cell--left-532d6d {
	border-left: 4px solid #532d6d;
}

.iodine .smartlist__grid__cell--right .smartlist__grid__cell {
	border-right: 4px solid #ffffff;
	border-radius: 2px;
	width: calc(100% - 20px) !important;
	overflow: hidden;
}

.iodine .smartlist__grid .v-grid-tablewrapper, .iodine .smartlist__grid .v-grid-scroller, .iodine .smartlist__grid .v-grid-header-deco {
	border: none;
}

.iodine .smartlist__grid .v-grid-row:hover .smartlist__grid__cell, .iodine .smartlist__grid .v-grid-row:hover .smartlist__grid__cell--left {
	box-shadow: 0 5px 10px 0 rgba(35, 50, 66, 0.2);
	transform: translateY(-1px);
}

.iodine .smartlist__grid .v-grid-cell-focused:before {
	border: none;
}

.iodine .smartlist__grid .v-grid-row > td {
	background: transparent;
	border: none;
	text-overflow: clip;
}

.iodine .smartlist__grid .v-grid-cell {
	background: transparent;
	border: none;
	padding: 0;
}

.iodine .smartlist__grid {
	background: transparent;
}

.iodine .smartlist__grid .v-grid-header .v-grid-column-header-content {
	font-size: 12px;
	box-shadow: -4px 0 #eeeeee, 2px 0 #eeeeee, 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	color: #081c2f;
	line-height: 40px;
	height: 40px;
	background: #eeeeee;
}

.iodine .smartlist__grid th:first-child .v-grid-column-header-content {
	text-indent: 24px;
}

.iodine .smartlist__grid th:first-child {
	min-width: 145px;
}

.iodine .native-cdi-selector [class$='button'], .iodine .native-cdi-selector [class$='button']:before {
	width: 20px;
}

.iodine .smartlist__grid .native-cdi-selector {
	margin: auto 5px;
}

.iodine .v-caption-smartlist__grid__cell--owner__icon-label img {
	height: 24px;
	width: 24px;
	clip-path: circle(12px at center);
}

.iodine .v-ie11, .iodine .v-caption-smartlist__grid__cell--owner__icon-label img {
	border-radius: 50%;
}

.iodine .v-caption-smartlist__grid__cell--owner__icon-label {
	height: 20px;
	margin: auto 0 auto 5px;
}

.iodine .smartlist__grid__cell--queries__more-label, .iodine .smartlist__grid__cell--queries__date-holder {
	border: solid 1px #eeeeee;
	border-radius: 3px;
}

.iodine .smartlist__grid__cell--queries__date-holder {
	margin-top: -4px;
}

.iodine .smartlist__grid__cell--queries__date-holder .iodine-icons {
	position: relative;
	font-size: 15px;
	color: #532d6d;
	top: -12px;
	left: 3px;
}

.iodine .smartlist__grid__cell--queries__date-label {
	margin-top: -15px;
}

.iodine .smartlist__grid__cell--queries__more-label {
	text-align: center;
	line-height: 28px;
	margin: 8px 0 0 5px;
}

.iodine .smartlist__grid__cell--reviewed__label {
	margin-top: -16px;
}

.iodine .smartlist__grid__cell--reviewed__icon {
	margin-top: -3px;
}

.iodine .smartlist__grid__cell--reviewed__icon .iodine-icons {
	font-size: 15px;
}

.iodine .smartlist__grid__flag-cc, .iodine .smartlist__grid__flag-mcc {
	background-color: #cd8fc1;
	border-radius: 2px;
	font-size: 10px;
	padding: 1px 3px;
	margin-left: 5px;
	color: #ffffff;
	font-weight: bold;
}

.iodine .smartlist__grid__flag-mcc {
	background-color: #856794;
}

.iodine .smartlist__grid__cell--indicators__score-label {
	margin-left: 5px;
}

.iodine .smartlist__grid__indicators-tooltip__indicator-label, .iodine .smartlist__grid__cell--indicators__label--ellipsis, .iodine .smartlist__grid__cell--indicators__label {
	color: #0095f1;
	border: 1px solid #0095f1;
	border-radius: 3px;
	text-align: center;
	font-size: 13px;
	font-weight: 900;
	transform: scale(1, 0.9);
	height: 20px;
	line-height: 16px;
	padding: 1px 3px;
	font-family: "monaco", monospace;
	margin: -3px 0 0 2px;
	cursor: pointer;
}

.iodine .smartlist__grid__cell--indicators__label--ellipsis {
	font-family: "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	cursor: pointer;
	padding: 0 3px;
}

.iodine .smartlist__grid__indicators-tooltip__indicator-label {
	border: 1px solid #ffffff;
	margin-right: 5px;
	height: 16px;
	display: inline-block;
	color: #ffffff;
}

.iodine .smartlist__grid__indicators-tooltip {
	padding-top: 2px;
}

.iodine .smartlist__grid__cell--indicators__opportunity-label .iodine-icons {
	color: #0095f1;
}

.iodine .smartlist__grid__cell--indicators__deprioritized-label .iodine-icons {
	color: #d85d48;
	top: -17px;
	position: relative;
}

.iodine .smartlist__grid__cell--indicators__snooze-label .iodine-icons {
	color: #532d6d;
	top: -18px;
	position: relative;
}

.iodine .smartlist__grid__cell--indicators__opportunity-label .iodine-icons, .iodine .smartlist__grid__cell--indicators__discharged-label .iodine-icons, .iodine .smartlist__grid__cell--indicators__expired-label .iodine-icons, .iodine .smartlist__grid__cell--indicators__snooze-label .iodine-icons, .iodine .smartlist__grid__cell--indicators__deprioritized-label .iodine-icons {
	font-size: 15px;
	margin-left: 3px;
	padding-left: 3px;
	border-left: 1px solid #e6e7e9;
}

.iodine .smartlist__grid__cell--indicators__expired-label .iodine-icons {
	color: #000000;
}

.iodine .v-slot-smartlist__grid__cell--indicators__opportunity-label, .iodine .v-slot-smartlist__grid__cell--indicators__discharged-label, .iodine .v-slot-smartlist__grid__cell--indicators__expired-label, .iodine .v-slot-smartlist__grid__cell--indicators__deprioritized-label {
	line-height: 52px;
}

.iodine .smartlist__grid__cell--indicators__discharged-label .iodine-icons {
	color: #0095f1;
}

.iodine .smartlist__grid__cell--indicators__holder {
	margin-left: 3px;
	padding-left: 3px;
	border-left: 1px solid #e6e7e9;
}

.iodine .smartlist__grid__cell--follow-up-holder, .iodine .smartlist__grid__cell--discharge-date-holder {
	width: 83px;
}

.iodine .smartlist__grid__cell--follow-up-holder .v-label, .iodine .smartlist__grid__cell--discharge-date-holder .v-label {
	border-radius: 2px;
	border: solid 1px rgba(53, 61, 72, 0.12);
	width: 80px;
	line-height: 20px;
	margin-top: -4px;
	text-align: center;
}

.iodine .smartlist__section-selector__section-label:hover {
	border-radius: 0 100px 100px 0;
	background-color: rgba(53, 61, 72, 0.08);
	cursor: pointer;
}

.iodine .smartlist__section-selector__section-label .v-label {
	line-height: 45px;
	text-indent: 10px;
}

.iodine .smartlist__section-selector__section-label {
	font-size: 14px;
	margin-bottom: 8px;
	color: #081c2f;
}

.iodine .smartlist__section-selector__section-label--selected:hover {
	background-color: rgba(53, 61, 72, 0.15);
}

.iodine .smartlist__section-selector__section-label--selected {
	color: #0068be;
	border-radius: 0 100px 100px 0;
	font-weight: bold;
	background-color: rgba(53, 61, 72, 0.15);
}

.iodine .smartlist__controls-holder {
	background: #eeeeee;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	margin-bottom: 20px;
	padding-top: 5px;
	width: 100vw;
}

.iodine .v-slot-smartlist__content__filters__menu {
	height: 0;
}

.iodine .v-slot-smartlist__content__filters__menu .smartlist__content__filters__menu {
	position: relative;
	z-index: 10;
	top: 6px;
	left: 0;
}

.iodine .smartlist__grid-container {
	max-width: 1250px;
}

.iodine .smartlist__grid__cell--indicators-column {
	padding-right: 10px;
}

.iodine .v-caption-smartlist__grid__cell--owner__icon-label {
	padding-top: 14px;
}

.iodine .smartlist__controls-holder .smartlist__content__filters__date-range-combo-box {
	position: relative;
	z-index: 10;
	margin: 3px 0 0 20px;
}

.iodine .smartlist__controls-holder .smartlist--cdi__content__buttons-container {
	margin: 2px 0 0 13px;
}

.iodine .smartlist__grid__cell--wdrg {
	padding: 0 0 0 1px;
}

.iodine .smartlist__grid__cell--owner .native-cdi-selector {
	margin-top: -2px;
}

.iodine .smartlist__no-cases-label {
	color: #081c2f;
	margin-top: 150px;
	font-weight: bold;
	font-size: 14px;
	opacity: 0.54;
}

.iodine .smartlist__no-cases--priority {
	white-space: pre;
	width: 100%;
	text-align: center;
	font-size: 13px;
}

.iodine .smartlist__grid__fake-section-header {
	color: #081c2f;
	font-size: 14px;
	padding-top: 37px;
}

.iodine .smartlist__grid .v-grid-header-deco {
	background: transparent;
}

.iodine .smartlist__main-panel__content > .v-expand {
	padding-top: 0 !important;
}

.iodine .v-slot-smartlist__content__filters__menu {
	margin-top: 0 !important;
}

.iodine .title-bar {
	background-color: #f1f6fd;
}

.iodine .title-bar__label, .iodine .title-bar__label .v-button-caption {
	font-size: 14px;
	font-weight: normal;
	color: #081c2f;
}

.iodine .title-bar__logo {
	padding: 0 10px 0 12px;
}

.iodine .v-slot-title-bar__logo {
	border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .title-bar__label .v-button:focus:after {
	border: none;
}

.iodine .title-bar__menu.v-menubar > .v-menubar-menuitem-selected {
	background: none;
}

.iodine .title-bar__menu .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after {
	content: none;
}

.iodine .title-bar__menu .v-menubar-menuitem-caption {
	font-size: 14px;
	font-weight: normal;
	color: #79848e;
}

.iodine .title-bar__menu .v-menubar-menuitem:hover, .iodine .title-bar__menu .v-menubar-menuitem:focus, .iodine .title-bar__menu .v-menubar-menuitem:active:before {
	background: none;
}

.iodine .v-menubar-popup {
	padding: 10px 0;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 2px;
	margin-top: -6px !important;
}

.iodine .title-bar__menu .v-menubar-menuitem {
	box-shadow: inset 0 -1px 0 0 #eeeeee;
	border-radius: 0;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item {
	display: block;
	position: relative;
	padding: 8px 38px;
	width: 140px;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item > .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item > .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item > .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item > .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item > .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item > .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item > .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item > .v-menubar-menuitem-caption {
	color: #081c2f;
	opacity: 1;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item:hover {
	background: #e6f1ff;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item:hover .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item:hover .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item:hover .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item:hover .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item:hover .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item:hover .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item:hover .v-menubar-menuitem-caption, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item:hover .v-menubar-menuitem-caption {
	color: #0095f1;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item a, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item a, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item a, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item a, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item a, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item a, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item a, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item a {
	color: #081c2f;
	text-decoration: none;
	padding: 8px 38px;
	margin: -8px -38px;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item a:active, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item a:active, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item a:active, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item a:active, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item a:active, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item a:active, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item a:active, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item a:hover, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item a:active {
	color: #0095f1;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-cdi-control-item img, .iodine .v-menubar-menuitem.v-menubar-menuitem-retro-control-item img, .iodine .v-menubar-menuitem.v-menubar-menuitem-imc-control-item img, .iodine .v-menubar-menuitem.v-menubar-menuitem-legacy-control-item img, .iodine .v-menubar-menuitem.v-menubar-menuitem-help-center-item img, .iodine .v-menubar-menuitem.v-menubar-menuitem-support-chat-item img, .iodine .v-menubar-menuitem.v-menubar-menuitem-profile-settings-item img, .iodine .v-menubar-menuitem.v-menubar-menuitem-logout-item img {
	position: absolute;
	left: 10px;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-application-item, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-help-item, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-dashboard-item, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-artifact-item, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-forecast-item {
	box-shadow: none;
	border-radius: 0;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item > .v-menubar-menuitem-caption {
	opacity: 1;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-application-item:hover > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-help-item:hover > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-dashboard-item:hover > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item:hover > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-artifact-item:hover > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-forecast-item:hover > .v-menubar-menuitem-caption {
	opacity: 1;
	color: #0068be;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-application-item:hover > .v-menubar-menuitem-caption .v-icon, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-help-item:hover > .v-menubar-menuitem-caption .v-icon, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-dashboard-item:hover > .v-menubar-menuitem-caption .v-icon, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item:hover > .v-menubar-menuitem-caption .v-icon, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-artifact-item:hover > .v-menubar-menuitem-caption .v-icon, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-forecast-item:hover > .v-menubar-menuitem-caption .v-icon {
	color: #0095f1;
}

.iodine .v-menubar > .v-menubar-menuitem-selected > .v-menubar-menuitem-caption {
	opacity: 1;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item .v-icon {
	height: 24px;
	width: 24px;
	position: relative;
	top: -1px;
	transition: 0.13s;
	clip-path: circle(12px at center);
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item .v-icon:hover {
	transform: scale(1.12);
}

.iodine .v-ie11, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item .v-icon {
	border-radius: 50%;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-artifact-item .v-icon {
	font-size: 20px;
}

.iodine .v-menubar > .v-menubar-menuitem:hover {
	color: #0068be;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item {
	margin-left: 47px;
	margin-right: 24px;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-avatar-item-vue {
	margin-left: 47px;
	margin-right: 24px;
	min-width: 42px;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-menu-item-vue-title-bar {
	min-width: 408px;
}

.iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-help-item > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-dashboard-item > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-artifact-item > .v-menubar-menuitem-caption, .iodine .v-menubar > .v-menubar-menuitem.v-menubar-menuitem-forecast-item > .v-menubar-menuitem-caption {
	display: flex;
	align-items: center;
}

.iodine .v-menubar-menuitem-legacy-control-item a:after, .iodine .v-menubar-menuitem-retro-control-item:after, .iodine .v-menubar-menuitem-imc-control-item a:after, .iodine .v-menubar-menuitem-help-center-item a:after {
	content: "\E89E";
	position: absolute;
	font-family: "Material Icons";
	z-index: 100;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: rgba(53, 61, 72, 0.54);
}

.iodine .v-slot.v-slot-account-window-label-margin-left.v-slot-account-window-label-active {
	margin-bottom: 12px;
}

.iodine .worksheet {
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	position: relative;
	z-index: 5;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .worksheet__header {
	background: #0095f1;
	color: white;
	text-align: left;
	padding: 10px;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
}

.iodine .worksheet__header__icon-container {
	margin-top: 6px;
	margin-right: 10px;
	padding-top: 2px;
	background: #fff;
	border-radius: 50%;
}

.iodine .v-caption-worksheet__header__icon-container__icon > .iodine-icons {
	color: #0095f1;
	font-size: 17px;
	text-align: center;
	margin-top: 4px;
	margin-left: 5px;
}

.iodine .worksheet__header__labels__title {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
}

.iodine .worksheet__header__labels__visit-name {
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
}

.iodine .worksheet__header__print-btn {
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.5px;
	border-radius: 50%;
	border: solid 1px #ffffff;
	box-sizing: border-box;
	background: transparent;
	padding-left: 4px;
	padding-top: 4px;
	margin-right: 10px;
	margin-top: 5px;
	box-shadow: none;
}

.iodine .worksheet__header__print-btn .material-icons, .iodine .worksheet__header__print-btn .iodine-icons {
	font-size: 20px;
}

.iodine .worksheet__header__more-btn {
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.5px;
	border-radius: 50%;
	border: solid 1px #ffffff;
	box-sizing: border-box;
	background: transparent;
	padding-left: 4px;
	padding-top: 4px;
	margin-right: 10px;
	margin-top: 5px;
	box-shadow: none;
}

.iodine .worksheet__header__more-btn .material-icons, .iodine .worksheet__header__more-btn .iodine-icons {
	font-size: 20px;
}

.iodine .v-popupview-popup-worksheet__popup__add-button {
	border-radius: 50%;
	background: transparent;
	border: none;
	box-shadow: none;
	margin-top: 25px !important;
}

.iodine .v-popupview-popup-worksheet__popup__add-button .popupContent {
	border-radius: 50%;
	background: transparent;
}

.iodine .worksheet__add-button, .iodine .worksheet__add-button-medication {
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.5px;
	border-radius: 50%;
	box-sizing: border-box;
	background: #0095f1;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	cursor: pointer;
}

.iodine .worksheet__add-button .v-icon.iodine-icons, .iodine .worksheet__add-button-medication .v-icon.iodine-icons {
	font-size: 14px !important;
}

.iodine .worksheet__add-button-medication {
	background: #fff;
	color: #081c2f;
	border: solid 1px #081c2f;
	opacity: 0.24;
	box-shadow: none;
	visibility: hidden;
	margin-left: 2px;
}

.iodine .worksheet__add-button-medication:hover, .iodine .worksheet__add-button-medication.worksheet__add-button-medication--active {
	opacity: 1;
	background: #0095f1;
	border: solid 1px #0095f1;
	color: #fff;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .worksheet__add-button-medication.worksheet__add-button-medication--active {
	background: #0068be;
	visibility: visible;
}

.iodine .worksheet__add-button-medication .v-icon.iodine-icons {
	margin-top: 5px;
}

.iodine .worksheet__add-button-medication-widget {
	position: absolute;
	display: none;
	z-index: 10;
}

.iodine .worksheet__add-button-labs_and_vitals {
	position: absolute;
	top: -30px;
	transform: translateX(-50%);
}

.iodine .worksheet__add-button-documentation {
	position: absolute;
	padding-top: 5px;
	padding-left: 0;
	display: none;
	z-index: 999999;
}

.iodine .worksheet__add-to-worksheet-component {
	min-height: 41px;
	padding: 5px 5px 5px 10px;
	background: #0095f1;
	border-radius: 3px;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	box-sizing: border-box;
}

.iodine .worksheet__add-to-worksheet-component:after {
	content: "";
	position: absolute;
	left: 50%;
	border-style: solid;
	border-color: #0095f1 transparent;
	margin-left: -10px;
}

.iodine .worksheet__add-to-worksheet-component__popup-view {
	position: absolute;
	left: 50%;
	top: -44px;
}

.iodine .worksheet__add-to-worksheet-component__popup-view.worksheet__add-to-worksheet-component__popup-view--top {
	top: 32px;
}

.iodine .worksheet__add-to-worksheet-component-arrow-bottom:after {
	bottom: -10px;
	border-width: 10px 10px 0;
}

.iodine .worksheet__add-to-worksheet-component-arrow-right:after {
	left: 90%;
}

.iodine .worksheet__add-to-worksheet-component-arrow-top:after {
	top: -10px;
	border-width: 0 10px 10px;
}

.iodine .worksheet__add-to-worksheet-btn {
	width: 31px;
	height: 31px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.5px;
	border-radius: 50%;
	border: solid 1px #ffffff;
	box-sizing: border-box;
	background: transparent;
	padding-left: 4px;
	padding-top: 4px;
	margin-right: 5px;
	box-shadow: none;
}

.iodine .worksheet__add-to-worksheet-btn .material-icons, .iodine .worksheet__add-to-worksheet-btn .iodine-icons {
	font-size: 20px;
}

.iodine .worksheet__add-to-worksheet-btn:hover {
	color: #0095f1;
	border-color: transparent;
	background: #fff;
}

.iodine .v-slot-worksheet__add-to-worksheet-btn--divider {
	border-radius: 0;
	border-right: 1px solid #fff;
	margin-right: 5px;
}

.iodine .worksheet__add-to-worksheet-combo {
	border-radius: 5px;
	margin-right: 5px;
}

.iodine .worksheet__add-button-vitals {
	padding-top: 5px;
	padding-left: 5px;
}

.iodine .worksheet__header__close-btn, .iodine .worksheet__header__pop-out-btn {
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.5px;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}

.iodine .worksheet__header__close-btn .v-button, .iodine .worksheet__header__pop-out-btn .v-button {
	border: none;
	box-shadow: none;
}

.iodine .worksheet__section__header {
	background: #e6f1ff;
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
	display: flex;
	align-items: center;
}

.iodine .worksheet__section__header:hover .worksheet__section--notes__delete {
	visibility: visible;
}

.iodine .worksheet__section--notes__delete {
	color: #081c2f;
	opacity: 0.54;
	padding-top: 7px;
	visibility: hidden;
}

.iodine .worksheet__section--notes__delete:hover {
	opacity: 1;
}

.iodine .worksheet__section__header__caption {
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding-left: 20px;
	display: flex;
	align-items: center;
}

.iodine .worksheet__section__header__caption--bookmark:before {
	content: "\E867";
	font-family: "Material Icons";
	color: #0095f1;
	font-size: 18px;
	font-weight: normal;
}

.iodine .worksheet__section {
	box-sizing: border-box;
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

.iodine .worksheet__section--notes__user-icon {
	font-size: 20px;
}

.iodine .worksheet__section--notes__user-image {
	margin-top: -20px;
	clip-path: circle(10px at center);
}

.iodine .v-ie11, .iodine .worksheet__section--notes__user-image {
	border-radius: 50%;
}

.iodine .worksheet__section--notes__date-label {
	font-weight: normal;
	color: #757575;
	font-size: 13px;
	opacity: 0.54;
	text-align: right;
}

.iodine .worksheet__section--notes {
	padding-bottom: 9px;
}

.iodine .worksheet__section--notes__rich-notes-container {
	padding: 0;
}

.iodine .worksheet__section--notes__new-comment-btn {
	display: inline-block;
}

.iodine .worksheet__section--notes__header {
	padding: 10px 10px 10px 20px;
}

.iodine .worksheet__section--notes__comment__header {
	padding: 0 10px;
}

.iodine .worksheet__section--notes__rich-text-area {
	border: none;
	color: #000000;
	border-radius: 0;
	padding: 0 10px 10px;
	-ms-overflow-x: hidden;
	overflow: auto;
	font-family: "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.36;
	word-wrap: break-word;
	white-space: normal;
}

.iodine .worksheet__section--notes__rich-text-area font[size='4'] {
	display: block;
}

.iodine .worksheet__section--notes__rich-text-area font[size='3'] {
	font-size: 14px;
}

.iodine .worksheet__section--notes__rich-text-area a {
	color: #0068be;
	cursor: pointer;
}

.iodine .worksheet__section--notes__rich-text-area .gwt-HTML {
	padding: 16px 6px 6px;
}

.iodine .worksheet__section--notes__rich-text-area--active {
	outline: 1px solid blue;
}

.iodine .worksheet__note__point {
	color: #081c2f;
	font-weight: 100;
	margin-right: 7px;
	padding-top: 3px;
	padding-left: 3px;
}

.iodine .worksheet__note__container {
	border: 1px solid #ffffff;
	box-sizing: border-box;
	font-size: 13px;
	line-height: 1.46;
	text-align: left;
	color: #081c2f;
}

.iodine .worksheet__note__author {
	padding-top: 3px;
}

.iodine .worksheet__note__date {
	font-size: 13px;
	text-align: left;
	color: #333333;
	opacity: 0.54;
	margin-left: 30px;
	padding-top: 3px;
}

.iodine .worksheet__note__text {
	white-space: pre-line;
}

.iodine .worksheet__note__delete {
	visibility: hidden;
	color: #081c2f;
	opacity: 0.54;
	padding: 0;
}

.iodine .worksheet__note__delete:hover {
	opacity: 1;
}

.iodine .worksheet__note__container:hover {
	border-color: #e0e0e0;
}

.iodine .worksheet__note__container:hover .worksheet__note__delete {
	visibility: visible;
}

.iodine .worksheet__section--notes__note {
	padding: 7px 5px 17px 5px;
	cursor: pointer;
	position: relative;
	border: solid 1px transparent;
}

.iodine .worksheet__section--notes__note:hover {
	border: solid 1px #e0e0e0;
}

.iodine .worksheet__section--notes__note:hover:before {
	top: 17px;
	left: 2px;
}

.iodine .worksheet__section--notes__note:hover .worksheet__section--notes__note__delete {
	visibility: visible;
}

.iodine .worksheet__section--notes__note__delete {
	opacity: 0.54;
	visibility: hidden;
}

.iodine .worksheet__section--notes__note__delete:hover {
	opacity: 1;
}

.iodine .worksheet__section--notes__note--editing:before {
	display: none;
}

.iodine .worksheet__section--notes__note--editing:hover {
	border: solid 1px transparent;
}

.iodine .worksheet__section--notes__note--editing:hover .worksheet__section--notes__note__delete {
	visibility: hidden;
}

.iodine .worksheet__section--notes__note--editing .worksheet__section--notes__note__comment-container {
	visibility: hidden;
}

.iodine .worksheet__new-comment {
	margin-top: 10px;
}

.iodine .worksheet__new-comment__area {
	border: solid 1px #eeeeee;
	border-radius: 1px;
	color: #081c2f;
	font-size: 13px;
	line-height: 1.46;
	box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
	padding-right: 1px;
}

.iodine .worksheet__new-comment__submit {
	line-height: 0.9;
}

.iodine .worksheet__new-comment__submit.v-disabled {
	opacity: 0.54;
}

.iodine .worksheet__comment__header__author {
	width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
	font-weight: bold;
}

.iodine .worksheet__comment__header__author-container {
	line-height: normal;
}

.iodine .worksheet__comment__header__date {
	font-size: 13px;
	opacity: 0.54;
	color: #333333;
	text-align: right;
}

.iodine .worksheet__comment__body {
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.iodine .worksheet__rich-text-toolbar {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	position: relative;
	padding-top: 10px;
}

.iodine .worksheet__rich-text-toolbar .worksheet__rich-text-toolbar__top, .iodine .worksheet__rich-text-toolbar .worksheet__rich-text-toolbar__bottom {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 600px;
}

.iodine .worksheet__rich-text-toolbar .gwt-ToggleButton, .iodine .worksheet__rich-text-toolbar .gwt-PushButton {
	cursor: pointer;
	flex-grow: 1;
}

.iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-ToggleButton-up-hovering, .iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-ToggleButton-down-hovering, .iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-PushButton-up-hovering .material-icon, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-ToggleButton-up-hovering, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-ToggleButton-down-hovering, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-PushButton-up-hovering .material-icon {
	color: #0095f1;
}

.iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-ToggleButton-down, .iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-ToggleButton-down-hovering, .iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-PushButton-down-hovering, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-ToggleButton-down, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-ToggleButton-down-hovering, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-PushButton-down-hovering {
	background-color: #e0e0e0;
}

.iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-ToggleButton-up-disabled, .iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-PushButton-up-disabled, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-ToggleButton-up-disabled, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-PushButton-up-disabled {
	cursor: default;
}

.iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-ToggleButton-up-disabled, .iodine .worksheet__rich-text-toolbar .gwt-ToggleButton.gwt-PushButton-up-disabled .material-icon, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-ToggleButton-up-disabled, .iodine .worksheet__rich-text-toolbar .gwt-PushButton.gwt-PushButton-up-disabled .material-icon {
	color: rgba(130, 130, 130, 0.5);
}

.iodine .worksheet__rich-text-toolbar .gwt-ToggleButton .material-icon, .iodine .worksheet__rich-text-toolbar .gwt-PushButton .material-icon {
	position: relative;
	top: 4px;
	line-height: 34px;
	font-size: 22px;
	color: #828282;
}

.iodine .worksheet__rich-text-toolbar .gwt-ListBox {
	height: 30px;
	margin: 0 8px;
	flex-basis: 94px;
	flex-grow: 4;
}

.iodine .worksheet__rich-text-toolbar__color-picker {
	position: absolute;
	padding: 2px;
	background-color: white;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .worksheet__rich-text-toolbar__color-picker td {
	line-height: 0;
}

.iodine .worksheet__rich-text-toolbar__color-picker td .gwt-PushButton {
	width: 20px;
	height: 20px;
}

.iodine .worksheet__section--documentation__documentation__header, .iodine .worksheet__section--medications__medication__header {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
	padding-left: 5px;
	cursor: pointer;
}

.iodine .worksheet__section--documentation__documentation__header:hover, .iodine .worksheet__section--medications__medication__header:hover {
	color: #0095f1;
}

.iodine .worksheet__section--medications__medication__header {
	padding-left: 0;
}

.iodine .worksheet__section--documentation__documentation__content {
	padding-left: 5px;
	border: solid 1px white;
	cursor: pointer;
	display: flex;
	margin-bottom: 6px;
}

.iodine .worksheet__section--documentation__documentation__content:hover {
	border: solid 1px #e0e0e0;
	box-sizing: border-box;
}

.iodine .worksheet__section--documentation__documentation__content:hover .worksheet__section--documentation__documentation__content__buttons-container {
	visibility: visible;
}

.iodine .worksheet__section--documentation__documentation__content__text {
	font-family: "DejaVuSansMono", "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	font-size: 12px;
	text-align: left;
	color: #333333;
	line-height: 1.3;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.iodine .worksheet__section--documentation__documentation__content__buttons-container {
	margin-top: 5px;
}

.iodine .worksheet__section--documentation__documentation__content__buttons-container, .iodine .worksheet__section--medications__medication__buttons-container {
	visibility: hidden;
}

.iodine .worksheet__section--documentation__documentation__content__copy, .iodine .worksheet__section--medications__medication__header-container__copy {
	opacity: 0.54;
	color: #0095f1;
	margin-top: 2px;
}

.iodine .worksheet__section--documentation__documentation__content__copy:hover, .iodine .worksheet__section--medications__medication__header-container__copy:hover {
	opacity: 1;
}

.iodine .worksheet__section--documentation__documentation__content__delete, .iodine .worksheet__section--medications__medication__header-container__delete {
	opacity: 0.54;
	color: #081c2f;
	margin-top: 2px;
}

.iodine .worksheet__section--documentation__documentation__content__delete:hover, .iodine .worksheet__section--medications__medication__header-container__delete:hover {
	opacity: 1;
}

.iodine .worksheet__section--labs__lab__header {
	position: relative;
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
	padding-left: 5px;
	cursor: pointer;
}

.iodine .worksheet__section--labs__lab__header:hover {
	color: #0095f1;
}

.iodine .worksheet__section--labs__lab__header--italic {
	font-size: 12px;
	font-style: italic;
}

.iodine .worksheet__section--labs__lab__header--wrapped {
	white-space: normal;
}

.iodine .worksheet__section--labs__lab__grid {
	padding-left: 18px;
}

.iodine .worksheet__section--labs__lab__grid__cell__content:hover .worksheet__section--labs__lab__grid__cell__copy, .iodine .worksheet__section--labs__lab__grid__cell__content:hover .worksheet__section--labs__lab__grid__cell__delete {
	visibility: visible;
}

.iodine .worksheet__section--labs__lab__grid__cell__content {
	max-width: 300px;
}

.iodine .worksheet__section--labs__lab__grid__layout {
	outline: 1px solid #979797;
	background-color: #ffffff;
	cursor: pointer;
}

.iodine .worksheet__section--labs__lab__grid__layout:hover {
	background-color: #e6f1ff;
	outline: 1px solid #0095f1;
}

.iodine .worksheet__section--labs__lab__grid__layout__cell {
	display: inline-block;
	overflow: hidden;
	padding: 0 5px;
	outline: 1px solid #979797;
	background-color: transparent;
	font-size: 13px;
	color: #333333;
	cursor: pointer;
}

.iodine .worksheet__section--labs__lab__grid__layout__cell:hover {
	outline: 1px solid #0095f1;
}

.iodine .worksheet__section--labs__lab__grid__layout__cell .v-label {
	font-size: 14px;
}

.iodine .worksheet__section--labs__lab__grid__cell__value {
	background-color: transparent;
	border: solid 1px #979797;
	font-size: 13px;
	color: #333333;
	cursor: pointer;
}

.iodine .worksheet__section--labs__lab__grid__cell__value:hover {
	background-color: #e6f1ff;
	border: solid 1px #0095f1;
}

.iodine .worksheet__section--labs__lab__grid__cell__value__retro {
	background-color: #ffffff;
	border: solid 1px #e6f1ff;
	border-radius: 2px;
	padding: 0 6px;
}

.iodine .worksheet__section--labs__lab__grid__cell__value__retro:hover {
	background-color: #e6f1ff;
	border: solid 1px #e6f1ff;
}

.iodine .worksheet__section--labs__lab__grid__cell__header {
	font-size: 12px;
	color: #333333;
	letter-spacing: -0.4px;
}

.iodine .worksheet__section--labs__lab__grid__cell__value-container:hover .worksheet__section--labs__lab__grid__cell__copy {
	visibility: visible;
}

.iodine .worksheet__section--labs__lab__grid__cell__header-container:hover .worksheet__section--labs__lab__grid__cell__delete {
	visibility: visible;
}

.iodine .worksheet__section--labs__lab__grid__cell__copy {
	visibility: hidden;
	opacity: 0.54;
	color: #0095f1;
}

.iodine .worksheet__section--labs__lab__grid__cell__copy:hover {
	opacity: 1;
}

.iodine .worksheet__section--labs__lab__grid__cell__delete {
	visibility: hidden;
	opacity: 0.54;
	color: #081c2f;
	margin-left: 2px;
}

.iodine .worksheet__section--labs__lab__grid__cell__delete:hover {
	opacity: 1;
}

.iodine .worksheet__add-comment-area {
	background: #f2f2f2;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 0;
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
	padding: 5px 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	overflow: auto;
}

.iodine .worksheet__add-comment-area:focus {
	outline: none;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: none;
}

.iodine .worksheet__only-comment {
	background: #f2f2f2;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	cursor: pointer;
	padding: 5px 18px;
	margin-top: 10px;
}

.iodine .worksheet__only-comment:hover {
	border: 1px solid rgba(0, 0, 0, 0.12);
	padding: 5px 17px 4px 17px;
}

.iodine .worksheet__section--labs__lab__grid__cell__value__text {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13px;
	text-align: left;
	color: #333333;
	padding-top: 2px;
}

.iodine .worksheet__section--labs__lab__grid__cell__value__flag {
	font-weight: bold;
	font-size: 9px;
	color: #ffffff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.iodine .worksheet__section--cell-margin {
	margin-top: 4px;
}

.iodine .iodine-abnormal-flag-h {
	background-color: #eecc52;
}

.iodine .iodine-abnormal-flag-hh {
	background-color: #d85d48;
}

.iodine .iodine-abnormal-flag-l {
	background-color: #6ca9cf;
}

.iodine .iodine-abnormal-flag-ll {
	background-color: #532d6d;
}

.iodine .iodine-abnormal-flag-a {
	background-color: #47b774;
}

.iodine .iodine-abnormal-flag-aa {
	background-color: #19a652;
}

.iodine .iodine-abnormal-flag-r {
	background-color: #b659a3;
}

.iodine .iodine-abnormal-flag-unknown {
	background-color: #b659a3;
	font-size: 15px;
}

.iodine .worksheet__section--medications__medication {
	margin-bottom: 4px;
}

.iodine .worksheet__section--medications__medication__header-container {
	cursor: pointer;
	margin-bottom: 2px;
}

.iodine .worksheet__section--medications__medication__header-container:hover {
	box-sizing: border-box;
}

.iodine .worksheet__section--medications__medication__header-container:hover .worksheet__section--medications__medication__buttons-container {
	visibility: visible;
}

.iodine .worksheet__section--medications__medication__info {
	font-size: 14px;
	text-align: left;
	color: #081c2f;
}

.iodine .worksheet__header__expand-button {
	cursor: pointer;
	left: -20px;
	top: -4px;
	position: absolute;
	background-color: #0095f1;
	border-radius: 6px 0 0 6px;
	padding-top: 9px;
	border-left: 2px solid rgba(0, 0, 0, 0.12);
}

.iodine .worksheet__header__expand-button .material-icon {
	font-size: 20px;
	margin-left: -3px;
}

.iodine .worksheet__documentation_missing_warning {
	color: #757575;
}

.iodine .worksheet__documentation_missing_warning.icon {
	font-size: 18px;
	margin-left: 7px;
	margin-top: -3px;
	color: #c0c7d1;
}

.iodine .worksheet__disabled-overlay, .iodine .v-caption-worksheet__disabled-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.iodine .worksheet__disabled-overlay.v-caption, .iodine .v-caption-worksheet__disabled-overlay.v-caption {
	height: 1em;
	z-index: 5;
	margin: auto;
	font-size: 1rem;
	text-align: center;
	color: #e7e7e7;
}

.iodine .worksheet__disabled-overlay.v-layout, .iodine .v-caption-worksheet__disabled-overlay.v-layout {
	background-color: rgba(0, 0, 0, 0.6);
}

.iodine .worksheet__placeholder {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #8e8e8e;
	padding: 30px 0;
	opacity: 0.54;
	line-height: normal;
}

.iodine .worksheet__section--labs__grid__cell__value--long, .iodine .worksheet__section--labs__grid__cell__value {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 48px;
}

.iodine .worksheet__section--labs__grid__cell__value--long {
	max-width: 65px;
}

.iodine .worksheet__section--labs__grid__cell__flag {
	margin-left: 2px;
}

.iodine .query-wrapper {
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .query-window {
	background: #fff;
	border-radius: 3px;
	position: relative;
	z-index: 5;
}

.iodine .query-window .v-slot.v-align-center.v-align-middle:first-child {
	display: flex;
}

.iodine .query-window__selectors-panel {
	background: #edeaf0;
}

.iodine .query-window__header {
	background-color: #532d6d;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 3px 3px 0 0;
	color: #eee;
	padding: 12px 10px;
}

.iodine .query-window__header__print-btn {
	height: auto;
	line-height: 0;
}

.iodine .query-window__header__print-btn:hover {
	opacity: 0.54;
}

.iodine .query-window__header__more-menu .v-icon.material-icons, .iodine .query-window__header__more-menu .v-icon.iodine-icons, .iodine .query-window__header__print-btn .v-icon.material-icons, .iodine .query-window__header__print-btn .v-icon.iodine-icons {
	border: 1px solid #eee;
	border-radius: 50%;
	font-size: 18px;
	padding: 5px;
}

.iodine .query-window__header__more-menu {
	height: auto;
}

.iodine .query-window__header__more-menu:hover {
	color: #eee;
	opacity: 0.54;
}

.iodine .query-window__header__menu-delete {
	cursor: pointer;
}

.iodine .query-window__header__menu-delete .v-label {
	align-items: center;
	display: flex;
	padding: 10px;
}

.iodine .query-window__header__menu-delete .v-label:hover {
	color: #d85d48;
}

.iodine .query-window__header__menu-delete .material-icon {
	font-size: 20px;
	margin-right: 10px;
	vertical-align: sub;
}

.iodine .query-window__header__labels-container {
	margin-left: 10px;
}

.iodine .query-window__header__labels-container__query-name {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
	text-align: left;
}

.iodine .query-window__header__labels-container__patient-name {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	margin-top: 2px;
	text-align: left;
}

.iodine .query-window__controls__btn {
	display: inline-block;
	line-height: 0.5;
}

.iodine .query-window__controls__btn_enabled--copy {
	border-radius: 6px;
	cursor: pointer;
	background-color: #fff;
	color: #532d6d;
	border: 2px solid #532d6d;
	box-shadow: inset 0 -2px 0 0 transparent;
	font-size: 14px;
}

.iodine .query-window__controls__btn_enabled--copy:hover {
	background: #532d6d;
	color: #fff;
}

.iodine .query-window__controls__btn_disabled--copy {
	border-radius: 6px;
	cursor: pointer;
	background-color: #fff;
	color: #532d6d;
	border: 2px solid #532d6d;
	box-shadow: inset 0 -2px 0 0 transparent;
	font-size: 14px;
}

.iodine .query-window__controls__btn_disabled--copy:hover {
	background: #fff;
	color: #532d6d;
}

.iodine .query-window__controls__btn_disabled--copy:disabled {
	background: #fff;
}

.iodine .query-window__controls__btn--save {
	margin-left: 6px;
	padding: 0;
}

.iodine .query-window__controls__btn--cancel {
	margin-left: 6px;
	padding: 0;
}

.iodine .query-window__content {
	padding: 0 10px;
}

.iodine .query-window__selectors .v-spacing {
	width: 7px;
}

.iodine .query-window__selectors .v-caption {
	color: #081c2f;
	font-size: 13px;
	line-height: 1.46;
}

.iodine .v-filterselect-suggestpopup-query-window__selectors__query_template .v-filterselect-suggestmenu {
	width: 200px !important;
	padding: 0;
}

.iodine .query-window__selectors__combo-box [class*='input'] {
	box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.25);
	border-radius: 3px;
	border: 0;
}

.iodine .query-window__selectors__combo-box [class$='button'] {
	border: 0;
}

.iodine .query-window__selectors__combo-box [class$='button']:before {
	content: "\E5C5";
	font-family: "Material Icons";
	color: #474a4f;
	font-size: 20px;
}

.iodine .query-window__template-selector__combo-box [class*='input'] {
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	width: 180px;
}

.iodine .query-window__condition-selector__combo-box [class$='button'] {
	border: 0;
	right: 7px;
}

.iodine .query-window__selectors__datefield [class*='textfield'] {
	box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.25);
	border: 0;
	padding-left: 6px;
	padding-right: 18px;
}

.iodine .query-window__selectors__datefield [class*='button'] {
	border: 0;
}

.iodine .query-window__selectors__datefield .v-datefield-button {
	border: 0;
	color: #b5b5b5;
	font-size: 16px;
	left: auto;
	right: 1px;
}

.iodine .query-window__selectors__datefield .v-datefield-button:before {
	content: "\E916";
	font-family: "Material Icons";
}

.iodine .v-slot-query-window__selectors__datefield {
	z-index: 5;
}

.iodine .query-window__selectors__search-field {
	border-radius: 3px;
	box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.iodine .v-slot-query-window__selectors__search-field, .iodine .v-filterselect-query-window__selectors__query_template {
	padding-left: 10px;
}

.iodine .query-window__selectors__related_condition {
	padding-right: 10px;
}

.iodine .v-filterselect-query-window__selectors__related_condition {
	padding-right: 10px;
}

.iodine .query-window__viewer__selectors-panel {
	padding-right: 10px;
	padding-left: 10px;
}

.iodine .query-window__area__caption {
	color: #081c2f;
	font-size: 13px;
	font-weight: bold;
	padding-bottom: 9px;
}

.iodine .query-window__area.v-richtextarea .gwt-RichTextToolbar {
	display: flex;
}

.iodine .query-window__area.v-richtextarea .gwt-ListBox:not(:last-child) {
	display: none;
}

.iodine .query-window__area.v-richtextarea div[title='Toggle Subscript'], .iodine .query-window__area.v-richtextarea div[title='Toggle Superscript'], .iodine .query-window__area.v-richtextarea div[title='Create Link'], .iodine .query-window__area.v-richtextarea div[title='Remove Link'], .iodine .query-window__area.v-richtextarea div[title='Insert Image'], .iodine .query-window__area.v-richtextarea div[title='Toggle Strikethrough'] {
	display: none;
}

.iodine .query-window__area, .iodine .query-window__area.v-richtextarea .gwt-RichTextArea {
	box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
}

.iodine .query-window__header__respondent-layout {
	border-top: solid 1px rgba(255, 255, 255, 0.12);
	background-color: #532d6d;
	color: #fff;
	padding: 0 10px;
}

.iodine .query-window__header__respondent-layout__label {
	font-size: 13px;
	font-weight: bold;
}

.iodine .query-window__header__respondent-layout__respondent-date {
	margin-left: 5px;
}

.iodine .query-window__header__respondent-layout__respondent-date [class*='textfield'] {
	border: 0;
	border-radius: 2px;
	box-shadow: none;
	padding-left: 6px;
	padding-right: 18px;
}

.iodine .query-window__header__respondent-layout__respondent-date .v-datefield-button {
	border: 0;
	right: 1px;
	left: auto;
}

.iodine .query-window__header__respondent-layout__respondent-date .v-datefield-button:before {
	content: "\E916";
	font-family: "Material Icons";
}

.iodine .query-window__header__respondent-layout__combo-box {
	margin-left: 5px;
}

.iodine .query-window__header__respondent-layout__combo-box [class*='input'] {
	padding-right: 15px;
	box-shadow: none;
	border: 0;
}

.iodine .query-window__header__respondent-layout__combo-box [class$='button'] {
	border: 0;
	width: 15px;
}

.iodine .query-window__header__respondent-layout__combo-box [class$='button']:before {
	content: "\E5C5";
	font-family: "Material Icons";
	width: 15px;
	font-size: 15px;
	color: #474a4f;
}

.iodine .query-window__header__respondent-layout__search-field {
	border-radius: 2px;
	margin-left: 5px;
}

.iodine .query-window__header__respondent-layout__respondent-label {
	margin-left: 17px;
}

.iodine .query-window__caregiver-search.v-window {
	padding: 0;
}

.iodine .query-window__caregiver-search__tab {
	color: #081c2f;
	cursor: pointer;
	font-size: 12px;
	margin: 10px 0 0 20px;
	opacity: 0.7;
}

.iodine .query-window__caregiver-search__tab--selected, .iodine .query-window__caregiver-search__tab:hover {
	padding-bottom: 5px;
	border-bottom: solid 4px #0095f1;
	opacity: 1;
}

.iodine .query-window__caregiver-search__table-header {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	padding-left: 6px;
	position: relative;
	z-index: 90;
}

.iodine .query-window__caregiver-search__table {
	padding: 0 0 5px 15px;
}

.iodine .query-window__caregiver-search__table .v-grid {
	background-color: transparent;
	-ms-overflow-style: auto;
	overflow-x: hidden;
}

.iodine .query-window__caregiver-search__table .v-grid-tablewrapper {
	background-color: transparent;
	border: 0;
}

.iodine .query-window__caregiver-search__table .v-grid-header th {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.iodine .query-window__caregiver-search__table .v-grid-header .v-grid-cell {
	background: #0095f1;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
}

.iodine .query-window__caregiver-search__table .v-grid-row {
	cursor: pointer;
}

.iodine .query-window__caregiver-search__table .v-grid-row td {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.iodine .query-window__caregiver-search__table .v-grid-cell {
	color: #081c2f;
	font-size: 13px;
}

.iodine .query-window__caregiver-search__table .v-grid-row-stripe > td {
	background: #e6f1ff;
}

.iodine .query-window__caregiver-search__table .v-grid-scroller-vertical, .iodine .query-window__caregiver-search__table .v-grid-scroller-horizontal, .iodine .query-window__caregiver-search__table .v-grid-horizontal-scrollbar-deco, .iodine .query-window__caregiver-search__table .v-grid-header-deco, .iodine .query-window__caregiver-search__table .v-grid-footer-deco {
	background: transparent;
	border: none;
}

.iodine .query-window__caregiver-search__table .v-grid-scroller.v-grid-scroller-horizontal {
	display: none;
}

.iodine .query-window__header__status-picker [class*='input'], .queries-tab__table__status-picker .iodine .query-window__header__status-picker [class*='input'] {
	background: #fff none;
	border: 0;
	box-shadow: none;
}

.iodine .query-window__header-text {
	font-size: 18px;
	margin-left: 10px;
}

.iodine .query-window__header-logo {
	border-radius: 50%;
}

.iodine .query-builder__holder {
	overflow-y: auto;
	overflow-x: hidden;
}

.iodine .queries-tab {
	position: relative;
}

.iodine button.ah-btn-suggested {
	color: #524A79;
	font-weight: bold;
}

.iodine button.ah-btn {
	line-height: 1.42857;
}

.iodine .queries-tab__content {
	padding: 0 10px;
}

.iodine .queries-tab__content__no-queries-label {
	font-size: 16px;
	line-height: 1.25;
	opacity: 0.5;
	text-align: center;
}

.iodine .queries-tab__content__new-queries-label {
	font-size: 13px;
	line-height: 1.46;
	text-align: center;
}

.iodine .queries-tab__content__new-query-button {
	color: #fff;
	font-size: 24px;
	border-radius: 50%;
	background: #532d6d;
	cursor: pointer;
	position: relative;
	z-index: 1;
	box-shadow: 0 9px 12px 1px rgba(0, 0, 0, 0.14);
	bottom: 30px;
	right: 30px;
	transition: box-shadow 0.1s ease-in-out;
}

.iodine .queries-tab__content__new-query-button:hover {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14);
}

.iodine .queries-tab__content__new-query-button .v-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 10px;
	height: 14px;
}

.iodine .queries-tab__content__new-query-button-no-queries {
	color: #fff;
	font-size: 24px;
	border-radius: 50%;
	background: #532d6d;
	cursor: pointer;
	position: relative;
	z-index: 1;
	box-shadow: 0 9px 12px 1px rgba(0, 0, 0, 0.14);
	bottom: 30px;
	right: 30px;
	transition: box-shadow 0.1s ease-in-out;
}

.iodine .queries-tab__content__new-query-button-no-queries:hover {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14);
}

.iodine .queries-tab__content__new-query-button-no-queries .v-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 10px;
	height: 14px;
}

.iodine .queries-tab__table {
	background: none;
}

.iodine .v-slot-queries-tab__table__status-picker {
	padding-left: 10px;
}

.iodine .queries-tab__table__status-picker, .iodine .query-window__header__status-picker {
	border-radius: 2px;
	background-color: #e6f1ff;
}

.iodine .queries-tab__table__status-picker .input.v-filterselect-input, .iodine .queries-tab__table__status-picker .v-filterselect-input-readonly, .iodine .query-window__header__status-picker .input.v-filterselect-input, .iodine .query-window__header__status-picker .v-filterselect-input-readonly {
	text-align: left;
	padding-left: 44px !important;
}

.iodine .queries-tab__table__status-picker span.v-icon, .iodine .query-window__header__status-picker span.v-icon, .iodine .v-filterselect-item-queries-tab__table__status-picker span.v-icon, .iodine .v-filterselect-item-query-window__header__status-picker span.v-icon {
	font-size: 15px;
	padding-top: 0;
	text-align: center;
}

.iodine .review-history__query-row__status-icon--unresponsive, .iodine .queries-tab__table__status-picker--unresponsive span.v-icon, .iodine .query-window__header__status-picker--unresponsive span.v-icon, .iodine .smartlist__grid__queries-tile--unresponsive span.iodine-icons {
	color: #b5b5b5;
}

.iodine .review-history__query-row__status-icon--not_agree, .iodine .queries-tab__table__status-picker--not_agree span.v-icon, .iodine .query-window__header__status-picker--not_agree span.v-icon, .iodine .smartlist__grid__queries-tile--not_agree span.iodine-icons {
	color: #d85d48;
}

.iodine .review-history__query-row__status-icon--agree, .iodine .queries-tab__table__status-picker--agree span.v-icon, .iodine .query-window__header__status-picker--agree span.v-icon, .iodine .smartlist__grid__queries-tile--agree span.iodine-icons {
	color: #19a652;
}

.iodine .review-history__query-row__status-icon--not_specified, .iodine .queries-tab__table__status-picker--not_specified span.v-icon, .iodine .query-window__header__status-picker--not_specified span.v-icon, .iodine .smartlist__grid__queries-tile--not_specified span.iodine-icons {
	color: #532d6d;
}

.iodine .v-filterselect-suggestpopup-query-window__header__status-picker, .iodine .v-filterselect-suggestpopup-queries-tab__table__status-picker {
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .v-filterselect-suggestpopup-query-window__header__status-picker .v-filterselect-suggestmenu, .iodine .v-filterselect-suggestpopup-queries-tab__table__status-picker .v-filterselect-suggestmenu {
	width: 100% !important;
	max-width: 450px;
	min-width: 185px;
	padding: 0;
}

.iodine .v-filterselect-suggestpopup-query-window__header__status-picker .gwt-MenuItem, .iodine .v-filterselect-suggestpopup-queries-tab__table__status-picker .gwt-MenuItem {
	height: 30px;
	padding: 0 6px;
	display: flex;
	align-items: center;
	border-radius: 0;
	color: #081c2f;
}

.iodine .v-filterselect-suggestpopup-query-window__header__status-picker .gwt-MenuItem .iodine-icons, .iodine .v-filterselect-suggestpopup-queries-tab__table__status-picker .gwt-MenuItem .iodine-icons {
	width: 28px;
}

.iodine .v-filterselect-suggestpopup-query-window__header__status-picker .gwt-MenuItem-selected, .iodine .v-filterselect-suggestpopup-query-window__header__status-picker .gwt-MenuItem:active:before, .iodine .v-filterselect-suggestpopup-queries-tab__table__status-picker .gwt-MenuItem-selected, .iodine .v-filterselect-suggestpopup-queries-tab__table__status-picker .gwt-MenuItem:active:before {
	background: #e6f1ff none;
}

.iodine .v-slot-queries-tab__table__status-label {
	padding-left: 10px;
}

.iodine .queries-tab__table__title-label {
	padding-left: 18px;
}

.iodine .queries-tab__table__status-label, .iodine .queries-tab__table__title-label, .iodine .queries-tab__table__physician-label, .iodine .queries-tab__table__date-label {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.4px;
	text-align: left;
	color: #8a8e94;
}

.iodine .queries-tab__table__date-label {
	text-align: center;
}

.iodine .queries-tab__table__title {
	padding-left: 18px;
}

.iodine .queries-tab__table__title, .iodine .queries-tab__table__physician, .iodine .queries-tab__table__impact, .iodine .queries-tab__table__date {
	width: 90%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13px;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 1.46;
}

.iodine .queries-tab__table__date, .iodine .queries-tab__table__impact {
	text-align: center;
}

.iodine .queries-tab__table__impact {
	padding: 0 5px;
}

.iodine .queries-tab__table__query-tile, .iodine .queries-tab__table__responded-query-tile {
	position: relative;
	z-index: 1;
	margin-bottom: 9px;
}

.iodine .queries-tab__table__responded-query-tile {
	background-color: #d4d4d4;
}

.iodine .queries-tab__table__query-tile--selected {
	background: #532d6d;
	color: #e0e0e0;
}

.iodine .queries-tab__table__query-tile--selected .queries-tab__table__status-picker {
	border: solid 0 #e6f1ff;
}

.iodine .queries-tab__table__query-tile-response {
	text-align: center;
}

.iodine .queries-tab__confirmation-window {
	background-color: rgba(0, 0, 0, 0.5);
}

.iodine .queries-tab__confirmation-window__layout {
	width: 520px;
	height: 307px;
	border-radius: 3px;
	background-color: #ffffff;
	box-shadow: 0 9px 12px 1px rgba(0, 0, 0, 0.14);
}

.iodine .queries-tab__confirmation-window__header {
	width: 520px;
	height: 70px;
	border-radius: 3px;
	background-color: #ffffff;
	box-shadow: inset 0 -1px 0 0 #e0e0e0;
}

.iodine .queries-tab__confirmation-window__header__label {
	font-size: 18px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: 0.5px;
	text-align: center;
	color: #081c2f;
}

.iodine .queries-tab__confirmation-window__header__text-area {
	font-size: 13px;
	line-height: 1.62;
	margin-top: 20px;
	margin-bottom: 40px;
	color: #081c2f;
}

.iodine .queries-tab__confirmation-window__button {
	width: 195px;
	height: 45px;
	border-radius: 6px;
	margin-right: 10px;
	font-size: 13px;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.46;
	letter-spacing: 0.3px;
}

.iodine .queries-tab__confirmation-window__button-disagree {
	background: #ffffff;
	color: #532d6d;
	border: solid 2px #532d6d;
}

.iodine .queries-tab__confirmation-window__button-agree {
	color: #ffffff;
	box-shadow: inset 0 -2px 0 0 #532d6d;
	border: solid 2px #532d6d;
	background: #532d6d;
}

.iodine .query-tab__template-selector__caption {
	color: #081c2f;
	font-size: 13px;
	line-height: 1.46;
}

.iodine .query-tab__template-selector-label__label {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: 1px solid rgba(0, 0, 0, 0.12);
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: 2.2;
	letter-spacing: normal;
	text-align: left;
	color: #081c2f;
	padding-left: 10px;
	padding-right: 10px;
}

.iodine .queries-tab__confirmation-window__checkbox {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.38;
}

.iodine .queries-tab__confirmation-window__checkbox .v-checkbox input {
	color: #532d6d;
}

.iodine .query-window__area.v-readonly {
	overflow: auto;
}

.iodine .query-window__plain-text-area {
	font-family: "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	font-size: 16px;
	line-height: 1.25;
	overflow: auto !important;
	height: 100% !important;
}

.iodine .vue-queries-tab {
	position: absolute;
}

.iodine .opportunity-tab {
	background-color: #eeeeee;
}

.iodine .opportunity-tab__title {
	width: 155px;
	height: 17px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	color: #6e6e6e;
	margin: 20px 0 0 10px;
}

.iodine .opportunity-tab__content, .iodine .opportunity-tab__content--special {
	background-color: #ffffff;
	margin-top: 22px;
	margin-bottom: 2px;
	padding-bottom: 29px;
	border-radius: 3px;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .opportunity-tab__header__label {
	height: 19px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.36;
	letter-spacing: 0.3px;
	text-align: left;
	padding: 15px 0 35px 35px;
	color: #081c2f;
	cursor: pointer;
	width: 100%;
}

.iodine .opportunity-tab__header__label:hover {
	color: #0095f1;
}

.iodine .opportunity-tab__header__label--opened:before {
	content: "\E5C5";
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	font-family: "Material Icons";
	position: absolute;
	left: 8px;
	line-height: 1;
	transform: translateY(0) rotate(0deg);
	transition: transform 0.1s ease-in-out;
}

.iodine .opportunity-tab__header__label--closed:before {
	content: "\E5C5";
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	font-family: "Material Icons";
	position: absolute;
	left: 8px;
	line-height: 1;
	transform: translateY(0) rotate(-90deg);
	transition: transform 0.1s ease-in-out;
}

.iodine .opportunity-tab__indicator {
	height: 50px;
	width: 100%;
	box-shadow: inset 0 -1px 0 0 #eeeeee;
	cursor: pointer;
	padding-left: 10px;
}

.iodine .v-slot-opportunity-tab__indicator {
	padding: 0 1%;
}

.iodine .opportunity-tab__indicator--selected, .iodine .opportunity-tab__indicator:hover {
	background-color: #e6f1ff;
}

.iodine .opportunity-tab__indicator--selected .opportunity-tab__indicator-label, .iodine .opportunity-tab__indicator:hover .opportunity-tab__indicator-label {
	color: #0095f1;
}

.iodine .opportunity-tab__indicator-label {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 19px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	color: #081c2f;
	margin-left: 5px;
}

.iodine .opportunity-tab__indicator-icon {
	color: #0095f1;
	border: 1px solid #0095f1;
	border-radius: 5px;
	padding: 0 5px;
	font-weight: bold;
}

.iodine .opportunity-tab__retro-indicator-label {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 19px;
	font-size: 14px;
	text-align: left;
	color: #081c2f;
	margin-left: 5px;
	font-weight: bold;
}

.iodine .opportunity-tab__warning-icon .material-icon-warning {
	margin-left: 5px;
	font-size: 16px;
	color: #d85d48;
	line-height: 1;
}

.iodine .opportunity-tab__warning-icon-check .iodine-icons-check {
	margin-left: 5px;
	font-size: 12px;
	color: #19a652;
}

.iodine .opportunity-tab__disclaimer {
	font-size: 11px;
	letter-spacing: 0.3px;
	color: #081c2f;
	padding-left: 38px;
}

.iodine .opportunity-tab__disclaimer__text {
	display: inline;
}

.iodine .opportunity-tab__smart_query_header {
	background: #0068be;
}

.iodine .opportunity-tab__disclaimer__read-more-button {
	color: #081c2f;
	display: inline;
	font-style: oblique;
	padding: 0;
}

.iodine .opportunity-tab__disclaimer__read-more-button:hover {
	color: #0095f1;
}

.iodine .opportunity-tab__disclaimer-window {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 2px;
	box-shadow: 0 20px 30px 0 rgba(35, 50, 66, 0.14);
	color: #081c2f;
}

.iodine .opportunity-tab__disclaimer-window__header {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-align: center;
	line-height: normal;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	padding: 24px;
}

.iodine .opportunity-tab__disclaimer-window__body {
	font-size: 14px;
	letter-spacing: 0.5px;
	line-height: 1.24;
	padding: 20px;
}

.iodine .opportunity-tab__disclaimer-window .v-window-closebox {
	font-size: 30px;
	color: rgba(0, 0, 0, 0.54);
}

.iodine .opportunity-tab__condition-icon .iodine-icons {
	font-size: 16px;
}

.iodine .opportunity-tab__condition-icon--deprioritized {
	color: #0095f1;
}

.iodine .opportunity-tab__condition-icon--unresponsive {
	color: #b5b5b5;
}

.iodine .opportunity-tab__condition-icon--not_agree {
	color: #d85d48;
}

.iodine .opportunity-tab__condition-icon--agree {
	color: #19a652;
}

.iodine .opportunity-tab__condition-icon--not_specified {
	color: #532d6d;
}

.iodine .opportunity-tab__condition-icon--proposed {
	color: #0095f1;
}

.iodine .opportunity-tab__condition-icon--reviewed .iodine-icons {
	color: #19a652;
	font-size: 12px;
}

.iodine .opportunity-tab__evidence-label {
	height: 11px;
	opacity: 0.54;
	font-size: 11px;
	text-align: left;
	color: #000000;
	margin-right: -4px;
	display: inline-flex;
	align-items: center;
	position: relative;
	right: 8px;
}

.iodine .opportunity-tab__evidence-progress-bar {
	height: 11px;
	width: 30px;
	display: inline-flex;
	align-items: center;
}

.iodine .opportunity-tab__evidence-progress-bar .v-progressbar-wrapper {
	height: 5px;
	min-width: 35px;
}

.iodine .opportunity-tab__evidence-progress-bar .v-progressbar-wrapper .v-progressbar-indicator {
	border: none;
	min-width: 4px;
	max-width: calc(100% - 4px);
	background-color: #0095f1;
	background-image: none;
}

.iodine .opportunity-tab__condition-updated-label {
	font-size: 9px;
	font-weight: bold;
	text-align: center;
	color: #0095f1;
	margin-left: 3px;
}

.iodine .opportunity-tab__no-glyph-margin {
	margin-left: 40px;
}

.iodine .opportunity-tab__element-border {
	border-radius: 2px;
	box-shadow: inset 0 -1px 0 0 #eeeeee;
}

.iodine .opportunity-tab__un-reject_label {
	color: #0095f1;
	margin-right: 5px;
}

.iodine .opportunity-tab__un-reject_label .v-label {
	text-decoration: underline;
}

.iodine .opportunity-tab__un-reject_label:hover {
	color: #081c2f;
}

.iodine .opportunity-tab__smart-query-history-icon {
	color: #757575;
}

.iodine .opportunity-tab__element-border--red {
	border: 1px solid #d85d48;
}

.iodine .opportunity-tab__element-border--yellow {
	border: 1px solid #eecc52;
}

.iodine .opportunity-tab__element-border--green {
	border: 1px solid #19a652;
}

.iodine .opportunity-tab__element-border--blue {
	border: 1px solid #0095f1;
}

.iodine .opportunity-tab__element-border--purple {
	border: 1px solid #532d6d;
}

.iodine .opportunity-tab__element-border--darkred {
	border: 1px solid #ac4a39;
}

.iodine .opportunity-tab__element-border--darkyellow {
	border: 1px solid #bea341;
}

.iodine .opportunity-tab__element-border--darkgreen {
	border: 1px solid #148441;
}

.iodine .opportunity-tab__element-border--darkblue {
	border: 1px solid #0068be;
}

.iodine .opportunity-tab__element-border--darkpurple {
	border: 1px solid #2f1a45;
}

.iodine .opportunity-window {
	background-color: #fafafa;
	margin-top: 10px;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .v-panel-content.v-panel-content-opportunity-window.v-scrollable {
	border-left: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 3px 0;
}

.iodine .opportunity-window__title-bar {
	border-radius: 3px 0;
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	z-index: 3;
	position: relative;
}

.iodine .opportunity-window___title-bar-with-smart-query-on {
	background-color: #0068be;
	border-radius: 3px 0;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	z-index: 3;
	position: relative;
}

.iodine .opportunity-window__title-bar__label, .iodine .opportunity-window__title-bar__iconlabel {
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	color: #333333;
}

.iodine .white-upper-text {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	font-family: Helvetica;
	text-transform: uppercase;
	margin-left: 40px;
}

.iodine .opportunity-window__title-bar__label {
	margin-left: 40px;
}

.iodine .opportunity-window__title-bar__iconlabel {
	margin-left: 5px;
}

.iodine .opportunity-window__title-bar__icon .iodine-icons {
	font-size: 16px;
}

.iodine .opportunity-window__title-bar__icon {
	margin-left: 11px;
	color: #0095f1;
}

.iodine .opportunity-window__button, .iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-icon {
	height: 30px;
	width: 30px;
	color: #79848e;
	border: solid 1px #79848e;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin-right: 10px;
	line-height: 1;
}

.iodine .opportunity-window__button:after, .iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-icon:after {
	display: none;
}

.iodine .opportunity-window-smart-query__button, .iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-icon, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-icon {
	height: 30px;
	width: 30px;
	color: #fff;
	border: solid 1px #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin-right: 10px;
	line-height: 1;
}

.iodine .opportunity-window-smart-query__button:after, .iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-icon:after, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-icon:after {
	display: none;
}

.iodine .opportunity-window-smart-query__button .v-icon, .iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-icon .v-icon, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-icon .v-icon {
	font-size: 14px;
	position: relative;
	left: -1px;
}

.iodine .opportunity-window-smart-query__button:hover, .iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-icon:hover, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-icon:hover {
	color: #0095f1;
	background: #fff;
}

.iodine .opportunity-window__button--query .v-icon {
	font-size: 14px;
	position: relative;
	left: -1px;
}

.iodine .opportunity-window__button--query:hover {
	color: #532d6d;
	border: solid 2px #532d6d;
}

.iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-icon {
	font-size: 24px;
}

.iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-icon:hover {
	color: #0095f1;
	border: solid 2px #0095f1;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-icon, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-icon {
	font-size: 20px;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-icon:hover, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-icon:hover {
	color: #0095f1 !important;
	background: #fff;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu, .iodine .v-menubar.opportunity-tab__menu-button__more-menu {
	height: auto;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem, .iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-menubar-menuitem {
	height: 30px;
	padding: 0;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem-selected, .iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem-selected .v-icon, .iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-menubar-menuitem-selected .v-icon {
	background-color: #f5f5f5;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem-caption:after, .iodine .v-menubar.opportunity-tab__menu-button__more-menu .v-menubar-menuitem-caption:after {
	display: none;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu {
	height: auto;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem {
	height: 30px;
	padding: 0;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem-selected, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem-selected .v-icon, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem-selected .v-icon {
	color: #0095f1;
	background-color: #fff;
}

.iodine .v-menubar.opportunity-tab-smart-query-reject__menu-button__more-menu .v-menubar-menuitem-caption:after, .iodine .v-menubar.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem-caption:after {
	display: none;
}

.iodine .v-menubar-submenu.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem, .iodine .v-menubar-submenu.opportunity-tab__menu-button__more-menu .v-menubar-menuitem {
	padding: 0 10px 0 0;
	line-height: 30px;
	color: #081c2f;
	box-shadow: inset 0 -1px 0 0 #eeeeee;
}

.iodine .v-menubar-submenu.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem:hover, .iodine .v-menubar-submenu.opportunity-tab__menu-button__more-menu .v-menubar-menuitem:hover {
	background: #e6f1ff;
}

.iodine .v-menubar-submenu.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem-caption, .iodine .v-menubar-submenu.opportunity-tab__menu-button__more-menu .v-menubar-menuitem-caption {
	display: flex;
	align-items: center;
}

.iodine .v-menubar-submenu.opportunity-tab-smart-query__menu-button__more-menu .v-menubar-menuitem-caption .v-icon, .iodine .v-menubar-submenu.opportunity-tab__menu-button__more-menu .v-menubar-menuitem-caption .v-icon {
	width: 38px;
	margin-right: 0;
	text-align: center;
	max-height: none;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-opportunity-tab__menu-button__more-menu__unresolved .v-icon, .iodine .v-menubar-menuitem.v-menubar-menuitem-opportunity-tab__menu-button__more-menu__reject .v-icon {
	font-size: 16px;
	color: #d85d48;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-opportunity-tab__menu-button__more-menu__reset .v-icon {
	font-size: 24px;
	color: #91969c;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-opportunity-tab__menu-button__more-menu__resolved .v-icon, .iodine .v-menubar-menuitem.v-menubar-menuitem-opportunity-tab__menu-button__more-menu__reviewed .v-icon {
	font-size: 12px;
	color: #19a652;
}

.iodine .v-menubar-menuitem.v-menubar-menuitem-opportunity-tab__menu-button__more-menu__resolve .v-icon, .iodine .v-menubar-menuitem.v-menubar-menuitem-opportunity-tab__menu-button__more-menu__manually-deprioritize .v-icon {
	font-size: 18px;
	color: #0095f1;
}

.iodine .opportunity-window__close-button {
	opacity: 0.54;
	color: #000000;
	margin: 8px;
}

.iodine .opportunity-window__smart-query__close-button {
	opacity: 0.54;
	color: #FFFFFF;
	margin: 8px;
}

.iodine .opportunity-window__section-header {
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	position: relative;
	z-index: 2;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .opportunity-window__section-header__label {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.36;
	letter-spacing: 0.3px;
	text-align: left;
	margin-left: 40px;
	color: #081c2f;
	cursor: pointer;
	font-family: Helvetica;
}

.iodine .opportunity-window__section-header__label:hover {
	color: #0095f1;
}

.iodine .opportunity-window__section-content--mentions, .iodine .opportunity-window__section-content--medications, .iodine .opportunity-window__section-content--services {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #f2f2f2;
	position: relative;
	box-shadow: inset 0 -1px -1px 0 rgba(36, 50, 66, 0.15);
}

.iodine .opportunity-window__tile-header {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #8a8e94;
	padding-left: 20px;
	padding-right: 15px;
	font-family: Helvetica;
}

.iodine .opportunity-window__tile {
	margin-bottom: 5px;
	padding-left: 20px;
}

.iodine .opportunity-window__tile--mention {
	border-radius: 2px;
	padding-right: 15px;
}

.iodine .opportunity-window__tile-label {
	font-size: 14px;
	color: #081c2f;
	font-family: Helvetica;
}

.iodine .opportunity-window__tile-label--primary {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: bold;
	width: 100%;
	font-family: Helvetica;
}

.iodine .opportunity-window__tile-label--small {
	font-size: 12px;
	color: #333333;
	opacity: 0.87;
	margin-bottom: 4px;
	margin-right: 11px;
	vertical-align: middle;
}

.iodine .opportunity-window__tile-label--mention-type-negated {
	font-weight: bold;
	font-style: oblique;
	color: #d85d48;
}

.iodine .opportunity-window__tile-label--mention-type-historical {
	font-weight: bold;
	font-style: oblique;
	color: #532d6d;
}

.iodine .opportunity-window__tile-label--mention-type-family-history {
	font-weight: bold;
	font-style: oblique;
	color: #19a652;
}

.iodine .opportunity-window__tile-label--mention-type-uncertain {
	font-weight: bold;
	font-style: oblique;
	color: #b659a3;
	font-family: Helvetica;
}

.iodine .opportunity-window__empty-section-label {
	opacity: 0.54;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	background: none;
	color: #081c2f;
}

.iodine .v-slot-opportunity-window__empty-section-label {
	background: #fafafa;
	box-shadow: inset 0 -1px 2px 0 rgba(36, 50, 66, 0.15);
}

.iodine .opportunity-window__popup {
	background-color: rgba(0, 0, 0, 0.85);
}

.iodine .opportunity-window__popup__close-button {
	font-size: 12px;
	color: #ffffff;
	padding-top: 20px;
}

.iodine .opportunity-window__popup__close-button .v-button-wrap {
	display: inline-flex;
	height: 100%;
	align-items: center;
}

.iodine .opportunity-window__popup__navigation-button {
	color: #081c2f;
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	padding: 4px 0;
}

.iodine .opportunity-window__popup__navigation-button--hidden {
	visibility: hidden;
}

.iodine .opportunity-window__popup__navigation-button--previous {
	left: 50%;
}

.iodine .opportunity-window__popup__navigation-button--next {
	right: 50%;
}

.iodine .opportunity-window__popup .v-window-contents > .v-scrollable:before, .iodine .opportunity-window__popup .v-window-outerheader:after {
	border-top-width: 0;
}

.iodine .opportunity-window__popup__navigator {
	background: none;
}

.iodine .opportunity-window__popup__navigator-tile {
	background-color: #3b3b3b;
	margin-right: 1px;
	cursor: pointer;
}

.iodine .opportunity-window__popup__navigator-tile:hover, .iodine .opportunity-window__popup__navigator-tile--selected {
	background-color: #0095f1;
}

.iodine .opportunity-window__popup__navigator-tile__icon {
	height: 20px;
	width: 20px;
	color: #fff;
	background: #0095f1;
	margin: 11px 7px 0 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.iodine .opportunity-window__popup__navigator-tile__icon .iodine-icons-custom_timeline_documents {
	font-size: 14px;
}

.iodine .opportunity-window__popup__navigator-tile__label {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	line-height: 1.46;
	color: #ffffff;
}

.iodine .opportunity-window__popup__navigator-tile__label--primary {
	font-weight: bold;
}

.iodine .excerpt-window__separator {
	background-color: #0091FF;
	position: relative;
	z-index: 2;
	border: none;
}

.iodine .excerpt-window__separator__label {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.36;
	letter-spacing: 0.3px;
	text-align: center;
	color: white;
	border: none;
}

.iodine .excerpt-window__content {
	width: 100%;
	height: 100%;
	padding-left: 10px;
	padding-right: 10px;
}

.iodine .opportunity-tab__excerpt-component {
	background-color: #f2f2f2;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-color: #8a8e94 #f2f2f2;
	scrollbar-width: thin;
}

.iodine .opportunity-tab__excerpt-component::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 7px;
}

.iodine .opportunity-tab__excerpt-component::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: #8a8e94;
	-webkit-box-shadow: none !important;
}

.iodine .opportunity-tab__excerpt-title {
	width: 97%;
	font-family: Helvetica;
	font-weight: bold;
	font-size: 12px;
	letter-spacing: 0.4px;
	color: #8a8e94;
	margin: 10px 10px 5px 10px;
}

.iodine .opportunity-tab___evidence-tile {
	height: max-content !important;
	width: 100%;
	color: #081c2f;
	z-index: 1;
	margin-bottom: 5px;
	font-family: "Helvetica";
}

.iodine .opportunity-tab__tile-checkbox {
	width: 18px;
	height: 18px;
	margin-left: 27px;
	margin-right: 27px;
}

.iodine .opportunity-tab__tile-checkbox > input ~ label:before {
	width: 18px !important;
	height: 18px !important;
}

.iodine .opportunity-tab__tile-checkbox > input:checked ~ label:after {
	width: 18px;
	height: 18px;
	font-family: "Material Icons";
	font-weight: bolder;
	content: "\e876";
	font-size: 16px;
	padding-top: 2.5px;
	padding-right: 1px;
	color: #fafafa !important;
	background-color: #0095f2 !important;
}

.iodine .opportunity-tab__observation-title--selected {
	font-family: Helvetica;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	color: #79848e;
	margin-left: 10px;
	margin-top: 10px;
	white-space: pre-wrap !important;
}

.iodine .opportunity-tab__observation-title--unselected {
	font-family: Helvetica;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	margin-left: 10px;
	margin-top: 10px;
	color: #b5bbc1;
	white-space: pre-wrap !important;
}

.iodine .opportunity-tab__observation-body--selected {
	margin-left: 10px;
	margin-bottom: 10px;
	white-space: pre-wrap !important;
}

.iodine .opportunity-tab__observation-body--unselected {
	margin-left: 10px;
	margin-bottom: 10px;
	color: #b5bbc1;
	white-space: pre-wrap !important;
}

.iodine .excerpt-window__section-header {
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	position: relative;
	z-index: 2;
}

.iodine .excerpt-window__section-header__label {
	width: 100%;
	font-size: 16px;
	font-weight: 300;
	font-family: "Helvetica";
	line-height: 1.36;
	letter-spacing: 0.3px;
	text-align: left;
	padding-bottom: 7px;
	color: #081C2F;
	border-bottom: 2px solid #79848E;
}

.iodine .excerpt-window__indicator-section {
	margin-top: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .excerpt-window__indicator-section-icon {
	padding-top: 10px;
	width: 50px;
}

.iodine .excerpt-window__indicator-section-content {
	margin-left: 10px;
}

.iodine .excerpt-window__indicator {
	margin-bottom: 5px;
}

.iodine .excerpt-window__indicator--indented {
	padding-left: 30px;
}

.iodine .excerpt-window__response-options {
	padding-left: 40px;
}

.iodine .excerpt-window__response-option {
	margin-top: 15px;
	height: 35px;
	font-size: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .excerpt-window__response-option--uneditable {
	margin-top: 15px;
	height: 35px;
	color: #8B8B8B;
	font-size: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .excerpt-window__controls__btn {
	display: inline-block;
	line-height: 0.5;
	margin-top: 15px;
	margin-bottom: 30px;
}

.iodine .opportunity-tab__indicator__documents-scroller__item {
	box-shadow: inset 0 -1px 0 0 #eeeeee;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
}

.iodine .opportunity-tab__indicator__documents-scroller__item__title {
	font-size: 14px;
	color: #0095f1;
}

.iodine .opportunity-tab__indicator__documents-scroller__item__date {
	font-size: 14px;
	color: #081c2f;
}

.iodine .opportunity-tab__indicator__documents-scroller__item--selected, .iodine .opportunity-tab__indicator__documents-scroller__item:hover {
	background-color: #0095f1;
}

.iodine .opportunity-tab__indicator__documents-scroller__item--selected .opportunity-tab__indicator__documents-scroller__item__title, .iodine .opportunity-tab__indicator__documents-scroller__item:hover .opportunity-tab__indicator__documents-scroller__item__title {
	color: white;
}

.iodine .opportunity-tab__indicator__documents-scroller__item--selected .opportunity-tab__indicator__documents-scroller__item__date, .iodine .opportunity-tab__indicator__documents-scroller__item:hover .opportunity-tab__indicator__documents-scroller__item__date {
	color: white;
}

.iodine .opportunity-tab__rich-text {
	min-height: 130px;
	font-size: 14px;
	text-align: left;
	color: #081c2f;
	padding: 10px 35px 20px 40px;
	background: #ffffff;
	border: none;
	box-shadow: inset 0 -2px 0 0 rgba(216, 216, 216, 0.5);
	box-sizing: border-box;
}

.iodine .opportunity-tab__rich-text ul > li {
	color: #0095f1;
}

.iodine .v-scrollable ul > li > span {
	color: #081c2f;
}

.iodine .opportunity-tab__timeline-background {
	background-color: #eeeeee;
}

.iodine .opportunity-tab__query-window {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 10;
}

.iodine .opportunity-tab__section-layout {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	font-family: Helvetica;
}

.iodine .opportunity-tab__section-layout .opportunity-tab__header__label--opened {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
}

.iodine .opportunity-tab__services__count {
	margin-right: 8px;
}

.iodine .opportunity-tab__services__text-area {
	background: #fafafa;
	border: 0;
}

.iodine .opportunity-tab__service-tile__icon {
	background: #fff;
	color: #0095f1;
	border-radius: 0 3px 3px 0;
	position: absolute;
	left: 1px;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.iodine .opportunity-tab__services__datetime {
	height: 16px;
	font-size: 14px;
	text-align: left;
	color: #081c2f;
}

.iodine .opportunity-tab__condition-tooltip__expand-window-icon__active {
	float: right;
	color: #0095f1;
	margin-right: 15px;
	margin-top: -4px;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	border: none;
	background: none;
	box-shadow: none;
}

.iodine .opportunity-tab__smart-query-header-tooltip__expand-window-icon__active {
	color: #FFFFFF;
	margin-left: 13px;
	margin-top: -4px;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	border: none;
	background: none;
	box-shadow: none;
}

.iodine .opportunity-tab__smart-query-header-tooltip__expand-window-icon__inactive {
	color: #D7D8D9;
	margin-left: 13px;
	margin-top: -4px;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	border: none;
	box-shadow: none;
	background: none;
	visibility: hidden;
}

.iodine .opportunity-tab__smart-query-header-tooltip__expand-window-icon__inactive:hover {
	color: #FFFFFF;
	cursor: pointer;
}

.iodine .opportunity-tab__smart_query_header:hover #smart-query-header-popover {
	visibility: visible;
}

.iodine .opportunity-tab__smart-query-header-tooltip__text-header {
	text-align: left;
	vertical-align: top;
	margin: 9px 18px !important;
	font-weight: 700;
	font-size: 16px;
	color: #EECC52;
	font-family: Helvetica, monospace;
}

.iodine .opportunity-tab__smart-query-header-tooltip__text-content {
	text-align: left;
	vertical-align: top;
	margin: 0 18px 9px 18px;
	color: #FFFFFF;
	font-family: Helvetica, monospace;
	white-space: initial;
}

.iodine .opportunity-tab__smart-query-header-tooltip__window {
	margin-left: 16px !important;
	margin-top: 6px !important;
	border-radius: 4px !important;
	background-color: #353D48;
	position: absolute !important;
}

.iodine .opportunity-tab__smart-query-header-tooltip__window:before {
	content: "";
	position: fixed;
	border: 18px solid transparent;
	border-bottom-color: #353D48;
	margin-left: 261px;
	margin-top: -38px;
}

.iodine .opportunity-tab__smart-query-history-tooltip__expand-window-icon__active {
	color: #0095f1;
	margin-right: 15px;
	margin-top: -4px;
	margin-left: 5px;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	border: none;
	background: none;
	box-shadow: none;
}

.iodine .opportunity-tab__condition-tooltip__expand-window-icon__inactive {
	float: right;
	color: #D7D8D9;
	margin-right: 15px;
	margin-top: -4px;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	border: none;
	box-shadow: none;
	background: none;
}

.iodine .opportunity-tab__smart-query-history-tooltip__expand-window-icon__inactive {
	color: #D7D8D9;
	margin-right: 15px;
	margin-top: -4px;
	margin-left: 5px;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	border: none;
	box-shadow: none;
	background: none;
}

.iodine .embedded-rejection-options {
	position: relative;
	float: right;
	margin-top: -5px;
}

.iodine .embedded-rejection-options .v-icon {
	color: #79848e !important;
}

.iodine .opportunity-tab__condition-tooltip__expand-window-icon__inactive:hover {
	color: #0095f1;
	cursor: pointer;
}

.iodine .opportunity-tab__smart-query-history-tooltip__expand-window-icon__inactive:hover {
	color: #0095f1;
	cursor: pointer;
}

.iodine .opportunity-tab__smart-query-history-tooltip-tooltip__window {
	margin-left: -20px !important;
	margin-top: 6px !important;
	border-radius: 4px !important;
	background-color: #353D48;
	position: absolute !important;
	max-height: 200px;
}

.iodine .opportunity-tab__query-history-tooltip-tooltip__text-content {
	text-align: left;
	vertical-align: top;
	color: #FFFFFF;
	font-family: Helvetica, monospace;
	white-space: initial;
	margin: 0 18px !important;
	padding-right: 7px;
	max-height: 140px;
	overflow-y: auto;
	scrollbar-color: black #353D48;
	scrollbar-width: thin;
}

.iodine .opportunity-tab__query-history-tooltip-tooltip__text-content::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 7px;
}

.iodine .opportunity-tab__query-history-tooltip-tooltip__text-content::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: black;
	-webkit-box-shadow: none !important;
}

.iodine .opportunity-tab__smart-query-history-tooltip-tooltip__window:before {
	content: "";
	position: fixed;
	border: 18px solid transparent;
	border-bottom-color: #353D48;
	margin-left: 12px;
	margin-top: -40px;
}

.iodine .opportunity-tab__condition-tooltip__window {
	margin-left: 16px !important;
	margin-top: 6px !important;
	border-radius: 4px !important;
	background-color: #353D48;
	position: absolute !important;
}

.iodine .opportunity-tab__condition-tooltip__window:before {
	content: "";
	position: fixed;
	border: 18px solid transparent;
	border-bottom-color: #353D48;
	margin-left: 261px;
	margin-top: -40px;
}

.iodine .opportunity-tab__condition-tooltip__text-header {
	text-align: left;
	vertical-align: top;
	margin: 9px 18px !important;
	font-weight: 700;
	font-size: 16px;
	color: #EECC52;
	font-family: Helvetica, monospace;
}

.iodine .opportunity-tab__condition-tooltip__text-content {
	text-align: left;
	vertical-align: top;
	margin: 0 18px 9px 18px;
	color: #FFFFFF;
	font-family: Helvetica, monospace;
	white-space: initial;
}

.iodine .opportunity-tab__smart_query_header__copy-btn {
	margin-right: 10px;
}

.iodine .opportunity-window .vitals__grid .v-treegrid {
	background-color: #fafafa;
}

.iodine .opportunity-tab__object__read {
	font-style: normal;
	font-weight: normal;
	color: #757575;
}

.iodine .rejected-embedded-smart-query {
	width: 103% !important;
	margin: 0 -1.8% !important;
}

.iodine .rejected-embedded-smart-query .opportunity-tab__header__label--closed:before {
	left: -34% !important;
	font-size: 24px !important;
}

.iodine .embedded-smart-query__label .v-label {
	font-size: 14px;
	margin-left: 5px;
	line-height: 1.36;
	letter-spacing: 0.3px;
}

.iodine .opportunity-tab__style-label-sq, .iodine .opportunity-tab__style-label-sq-right-panel {
	opacity: 0.54;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	background: none;
	color: #081C2F;
	font-family: Helvetica;
}

.iodine .opportunity-tab__style-label-sq-right-panel {
	font-size: 14px;
}

.iodine .opportunity-label-vertical-layout {
	background-color: #F2F2F2;
	border: 1px solid #E0E0E0;
	padding: 30px 20%;
}

.iodine .opportunity-label-vertical-layout-right-panel {
	background-color: #F2F2F2;
	border: 1px solid #E0E0E0;
	padding: 30px 100px;
}

.iodine .opportunity-label-header-sq {
	font-size: 14px;
	line-height: 18px;
	background: none;
	color: #081C2F;
	font-weight: bold;
	opacity: 60%;
	font-family: Helvetica;
	width: 100%;
	text-align: center !important;
	white-space: normal !important;
	margin-bottom: 8px;
}

.iodine .opportunity-label-body-sq {
	font-size: 12px;
	line-height: 18px;
	background: none;
	color: #081C2F;
	opacity: 60%;
	font-family: Helvetica Regular;
	text-align: center;
	white-space: normal !important;
}

.iodine .rejected-smart-query .v-slot {
	width: unset !important;
	margin-top: 16px;
}

.iodine .rejected-smart-query .v-slot-opportunity-tab__un-reject_label {
	position: relative;
	float: right;
	margin-right: 10px;
	height: 100%;
}

.iodine .documents-tab__content {
	margin: 0 10px;
}

.iodine .documents-tab__tile-panel {
	background: none;
}

.iodine .documents-tab__tile-container {
	padding-bottom: 30px;
}

.iodine .documents-tab__tile {
	color: #081c2f;
	position: relative;
	z-index: 1;
	margin-bottom: 5px;
}

.iodine .documents-tab__tile--active {
	background: #0095f1;
	color: #fff;
}

.iodine .documents-tab__tile--active .documents-tab__tile__icon {
	color: #fff;
}

.iodine .documents-tab__tile--active .documents-tab__tile__type, .iodine .documents-tab__tile--active .documents-tab__tile__author {
	opacity: 1;
}

.iodine .documents-tab__tile__datetime {
	margin: 0 11px;
}

.iodine .documents-tab__tile__date {
	font-size: 14px;
	display: block;
}

.iodine .documents-tab__tile__time {
	font-size: 12px;
	display: block;
}

.iodine .documents-tab__tile__title {
	width: 250px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: bold;
}

.iodine .documents-tab__tile__type {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	width: 100%;
}

.iodine .documents-tab__tile__author {
	font-size: 14px;
	text-align: right;
	margin: 0 11px 3px 0;
}

.iodine .documents-tab__tile__icon {
	color: #0095f1;
	position: absolute;
	left: 1px;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}

.iodine .documents-tab__search-field {
	margin-top: 60px;
	border: solid 1px #eeeeee;
	border-radius: 2px;
	color: #081c2f;
	background: #fff;
	position: relative;
}

.iodine .documents-tab__filters {
	margin: 30px 0 10px 0;
}

.iodine .documents-tab__filters__button {
	color: #081c2f;
	font-weight: normal;
}

.iodine .documents-tab__filters__button:hover {
	background: #dfdfdf;
	border-radius: 2px;
}

.iodine .documents-tab__filters__button .v-icon {
	opacity: 0.54;
	font-size: 15px;
}

.iodine .documents-tab__filters__button .v-button-caption {
	font-size: 14px;
}

.iodine .documents-tab__filters__button-selected {
	color: #0068be;
}

.iodine .documents-tab__filters__button-selected .v-icon {
	color: #0095f1;
	opacity: 1;
}

.iodine .documents-tab__filters__button-selected span.material-icon-arrow_drop_down {
	color: #081c2f;
}

.iodine .documents-tab__filters__menu .v-button:focus:after {
	border: none;
}

.iodine .documents-tab__filters__menu.v-menubar > .v-menubar-menuitem-selected {
	background: none;
}

.iodine .documents-tab__filters__menu .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after {
	content: none;
}

.iodine .documents-tab__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-caption {
	font-size: 12px;
	line-height: 1.58;
	font-weight: normal;
	color: #081c2f;
	position: relative;
}

.iodine .documents-tab__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-caption:before {
	content: "\E5C7";
	font-family: "Material Icons";
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0;
	font-size: 12px;
	color: #474a4f;
}

.iodine .documents-tab__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-caption:after {
	content: "\E5C5";
	font-family: "Material Icons";
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0;
	font-size: 12px;
	margin: auto;
	color: #474a4f;
	opacity: 1;
}

.iodine .documents-tab__filters__menu:not(.v-menubar-submenu):hover .v-menubar-menuitem, .iodine .documents-tab__filters__menu:not(.v-menubar-submenu) .v-menubar-menuitem-selected {
	background: #dfdfdf;
	border-radius: 2px;
}

.iodine .documents-tab__filters__menu.v-menubar-submenu .v-menubar-menuitem-caption {
	font-size: 12px;
	text-align: left;
	color: #474a4f;
}

.iodine .documents-tab__filters__menu .v-menubar-menuitem:hover, .iodine .documents-tab__filters__menu .v-menubar-menuitem:focus, .iodine .documents-tab__filters__menu .v-menubar-menuitem:active:before {
	background: #e6f1ff;
}

.iodine .v-menubar-submenu.documents-tab__filters__menu .v-menubar-menuitem {
	padding: 8px 81px 8px 38px;
	box-shadow: inset 0 -1px 0 0 #eeeeee;
	border-radius: 0;
}

.iodine .documents-tab__document-window__content {
	padding-top: 10px;
}

.iodine .documents-tab__document-window__content .document-window__content {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .document-window__header {
	color: #081c2f;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	position: relative;
	border-radius: 3px 3px 0 0;
}

.iodine .document-window__comment-header {
	background: #fff;
	box-shadow: 0 2px 2px 0 rgba(36, 50, 66, 0.15);
	white-space: pre-wrap;
	width: 100%;
	padding: 0 0 5px 30px;
	position: relative;
	max-height: 65px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.iodine .document-window__comment-header::-webkit-scrollbar {
	display: none;
}

.iodine .document-window__header__title {
	font-size: 16px;
	font-weight: bold;
}

.iodine .document-window__header__subtitle {
	font-size: 14px;
	line-height: 1.46;
}

.iodine .document-window__info-layout {
	padding: 10px 10px 20px 30px;
	background-color: #fff;
}

.iodine .document-window__report-field-name, .iodine .document-window__report-field-value {
	color: #081c2f;
	white-space: normal;
	font-size: 14px;
}

.iodine .document-window__report-field-name {
	font-weight: bold;
}

.iodine .document-window__body {
	white-space: pre-wrap;
	word-wrap: break-word;
	font-family: "Menlo", "Lucida Console", "Monaco", monospace;
	font-size: 14px;
	line-height: 1.38;
	text-align: left;
	color: #081c2f;
	padding: 12px 16px 12px 31px;
	overflow: auto;
}

.iodine .document-window__body .selectedText {
	background-color: #d4d4d4;
}

.iodine .document-window__body p {
	hyphens: auto;
	margin-top: 0;
	margin-bottom: 0;
	font-family: "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
}

.iodine .document-window__body td {
	vertical-align: top;
}

.iodine .document-window__body table {
	border-spacing: 0;
	border-collapse: collapse;
}

.iodine .document-window__body table td, .iodine .document-window__body table th {
	padding: 0;
}

.iodine .document-window__body table.table-bordered {
	border-width: 1px;
	border-spacing: 2px;
	border-style: outset;
	border-color: gray;
	border-collapse: collapse;
	background-color: white;
}

.iodine .document-window__body table.table-bordered td {
	border-width: 1px;
	padding: 1px;
	border-style: inset;
	border-color: gray;
	background-color: white;
}

.iodine .v-panel-content-document-window__panel {
	overflow: hidden;
}

.iodine .v-panel-content-document-window__panel .v-csslayout {
	overflow: auto;
}

.iodine .document-window__body > table, .iodine tbody, .iodine tr, .iodine th, .iodine td {
	white-space: normal;
}

.iodine .document-window__body .duplicate-toggle {
	font-family: "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	font-size: 13px;
	font-style: oblique;
	color: #081c2f;
	background-color: #e6f1ff;
	text-align: center;
}

.iodine .document-window__body .duplicate-toggle:hover {
	color: #0095f1;
}

.iodine .document-window__body .duplicate-content {
	background-color: #e6f1ff;
	padding-left: 20px;
}

.iodine .document-window__search-field__container {
	position: relative;
}

.iodine .document-window__search-field__container--visible .document-window__search-field__show-button {
	left: 6px;
}

.iodine .document-window__search-field__container--visible .document-window__search-field__hide-button, .iodine .document-window__search-field__container--visible .document-window__search-field__next-button, .iodine .document-window__search-field__container--visible .document-window__search-field__previous-button {
	visibility: visible;
}

.iodine .document-window__search-field__container--visible .document-window__search-field__input {
	width: 192px;
	visibility: visible;
}

.iodine .document-window__search-field__input {
	border-radius: 2px 0 0 2px;
	border: solid 1px #e0e0e0;
	box-shadow: none;
	padding: 7px 39px;
	height: 30px;
	width: 0;
	font-size: 14px;
	color: #081c2f;
	visibility: hidden;
	transition: width 0.2s ease-in-out;
}

.iodine .document-window__search-field__show-button {
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	position: absolute;
	padding: 3px 1px 16px 3px;
	height: 28px;
	width: 28px;
	top: 1px;
	border-radius: 100%;
	left: calc(100% - 22px);
	transition: left 0.2s ease-in-out;
}

.iodine .document-window__search-field__show-button:hover {
	background: #e6f1ff;
	color: #0095f1;
}

.iodine .document-window__search-field__hide-button {
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	top: 3px;
	visibility: hidden;
	right: 85px;
}

.iodine .document-window__search-field__next-button {
	color: rgba(0, 0, 0, 0.54);
	height: 30px;
	width: 30px;
	border: solid #d8d8d8;
	border-width: 1px 1px 1px 0;
	visibility: hidden;
}

.iodine .document-window__search-field__next-button .v-icon {
	line-height: 30px;
}

.iodine .document-window__search-field__previous-button {
	color: rgba(0, 0, 0, 0.54);
	height: 30px;
	width: 30px;
	border: solid #d8d8d8;
	border-width: 1px 1px 1px 0;
	border-radius: 0 2px 2px 0;
	visibility: hidden;
}

.iodine .document-window__search-field__previous-button .v-icon {
	line-height: 30px;
}

.iodine .document-window__close-button {
	color: rgba(0, 0, 0, 0.54);
}

.iodine .v-menubar-menuitem-documents__sort__checked .v-menubar-menuitem-caption:before {
	content: "\E5CA";
	font-family: "Material Icons";
	font-size: 14px;
	position: absolute;
	color: #081c2f;
	opacity: 0.54;
	top: 50%;
	transform: translateY(-50%);
	left: 18px;
}

.iodine .document-window__highlight-selected {
	color: #fff;
	background-color: #0095f1 !important;
}

.iodine .document-window__document-tile__read {
	font-style: normal;
	font-weight: normal;
	color: #757575;
}

.iodine .grouper .v-panel {
	background: none;
}

.iodine .grouper__grouper-result-view {
	margin-bottom: 10px;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	border-radius: 2px;
	padding-bottom: 30px;
	position: relative;
	top: 10px;
}

.iodine .grouper__grouper-result-view__inner-layout {
	padding: 20px;
}

.iodine .grouper__grouper-result-view__header {
	background-color: #0095f1;
	color: #fff;
	font-size: 14px;
	padding-top: 8px;
	padding-left: 10px;
	border-radius: 2px 2px 0 0;
}

.iodine .grouper__grouper-result-view__title-view {
	border-radius: 3px;
	background-color: #fafafa;
	border: 1px solid rgba(0, 0, 0, 0.12);
	padding: 5px 15px 5px 15px;
	margin-bottom: 12px;
}

.iodine .grouper__grouper-result-view__drgcode {
	font-size: 16px;
	font-weight: bolder;
	color: #081c2f;
}

.iodine .grouper__grouper-result-view__drg-title {
	font-size: 14px;
	line-height: 1.46;
	color: #081c2f;
	word-wrap: break-word;
}

.iodine .grouper__grouper-result-view__result-title {
	font-size: 14px;
	font-weight: bolder;
	color: #081c2f;
}

.iodine .grouper__grouper-result-view__result-value {
	opacity: 0.54;
	font-size: 14px;
	text-align: left;
	color: #333333;
	padding-right: 5px;
	padding-left: 5px;
}

.iodine .grouper__grouper-result-view__more-info-button {
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.iodine .grouper__grouper-result-view__more-info-button:hover {
	color: #0095f1;
}

.iodine .grouper__grouper-result-view__more-info-button:after {
	content: "\E5C5";
	font-family: "Material Icons";
	font-size: 20px;
}

.iodine .grouper__grouper-result-view__more-info-popup .v-label {
	font-size: 14px;
	line-height: 1.46;
	color: #081c2f;
	padding: 0 10px;
}

.iodine .grouper__grouper-result-view__set-drg-button {
	padding: 0;
}

.iodine .grouper__grouper-result-view__set-drg-button .v-button-wrap {
	display: inline-flex;
	align-items: center;
}

.iodine .grouper__grouper-result-view__set-drg-button .v-button-wrap:after {
	content: "\E5C5";
	font-family: "Material Icons";
	font-size: 25px;
}

.iodine .grouper__grouper-finder {
	margin-right: 10px;
	top: 10px;
	position: relative;
	box-sizing: border-box;
}

.iodine .grouper__grouper-finder.v-panel-grouper__grouper-finder {
	background: #fff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .grouper__grouper-finder__header {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.iodine .grouper__grouper-finder__content {
	padding: 10px 10px 20px;
}

.iodine .grouper__grouper-finder__toggle {
	margin-bottom: 10px;
}

.iodine .grouper__grouper-finder__toggle-button {
	background-color: #e6f1ff;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	color: #333333;
}

.iodine .grouper__grouper-finder__toggle-button--left {
	border-radius: 2px 0 0 2px;
}

.iodine .grouper__grouper-finder__toggle-button--right {
	border-radius: 0 2px 2px 0;
}

.iodine .v-button-grouper__grouper-finder__toggle-button.v-disabled {
	background-color: #0095f1;
	color: #fff;
	opacity: 1;
}

.iodine .grouper__grouper-finder__search {
	border: 1px solid #0095f1;
	box-sizing: border-box;
	border-radius: 2px;
}

.iodine .grouper__grouper-finder__section__header {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #eee;
}

.iodine .grouper__grouper-finder__section__header--large {
	padding: 10px;
}

.iodine .grouper__grouper-finder__section__header--red {
	border: 1px solid #d85d48;
}

.iodine .grouper__grouper-finder__section__header--yellow {
	border: 1px solid #eecc52;
}

.iodine .grouper__grouper-finder__section__header--blue {
	border: 1px solid #0095f1;
}

.iodine .grouper__grouper-finder__section__header--purple {
	border: 1px solid #532d6d;
}

.iodine .grouper__grouper-finder__section__header--green {
	border: 1px solid #19a652;
}

.iodine .grouper__grouper-finder__section__header--darkred {
	border: 1px solid #ac4a39;
}

.iodine .grouper__grouper-finder__section__header--darkyellow {
	border: 1px solid #bea341;
}

.iodine .grouper__grouper-finder__section__header--darkblue {
	border: 1px solid #0068be;
}

.iodine .grouper__grouper-finder__section__header--darkpurple {
	border: 1px solid #2f1a45;
}

.iodine .grouper__grouper-finder__section__header--darkgreen {
	border: 1px solid #148441;
}

.iodine .grouper__grouper-finder__section__header__label {
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
	margin-left: 28px;
	padding-top: 4px;
}

.iodine .grouper__grouper-finder__section__header__label--expandable {
	cursor: pointer;
}

.iodine .grouper__grouper-finder__section__header__label--expandable:hover {
	color: #0095f1;
}

.iodine .grouper__grouper-finder__section__header__label--opened:before {
	content: "\E5C5";
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	font-family: "Material Icons";
	position: absolute;
	left: 8px;
	line-height: 1;
	transform: translateY(0) rotate(0deg);
	transition: transform 0.1s ease-in-out;
}

.iodine .grouper__grouper-finder__section__header__label--closed:before {
	content: "\E5C5";
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	font-family: "Material Icons";
	position: absolute;
	left: 8px;
	line-height: 1;
	transform: translateY(0) rotate(-90deg);
	transition: transform 0.1s ease-in-out;
}

.iodine .grouper__grouper-finder__section__subheader__label {
	font-weight: bold;
	color: rgba(53, 61, 72, 0.54);
	margin-left: 28px;
}

.iodine .grouper__grouper-finder__section__content {
	background-color: #fafafa;
	box-shadow: inset 0 -1px 2px 0 rgba(36, 50, 66, 0.5);
	padding: 8px 15px 20px 20px;
}

.iodine .grouper__grouper-finder__filter {
	width: 197px;
	padding: 0 5px;
}

.iodine .grouper__grouper-finder__filter select {
	color: #333333;
	background: #fff;
	width: 185px;
	cursor: pointer;
	box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.5);
	border: none;
	overflow-y: auto;
	border-radius: 0;
	padding: 0;
}

.iodine .grouper__grouper-finder__filter option {
	height: 30px;
	text-indent: 10px;
	padding-top: 8px;
	box-sizing: border-box;
}

.iodine .grouper__grouper-finder__filter option:first-child {
	font-weight: bold;
}

.iodine .v-caption-grouper__grouper-finder__filter .v-captiontext {
	width: 185px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 12px;
	font-weight: bold;
	color: #757575;
	line-height: 1;
	padding: 12px 0 2px 5px;
}

.iodine .v-caption-grouper__grouper-finder__filter {
	padding-bottom: 0;
	line-height: 1;
}

.iodine .grouper__grouper-finder__section__content .v-gridlayout {
	width: 591px;
}

.iodine .grouper__grouper-finder__section__header__label .v-icon {
	color: #fff;
	background-color: #0095f1;
	width: 24px;
	font-size: 20px;
	height: 24px;
	line-height: 24px;
	border-radius: 2px;
	margin: -2px 6px 0 9px;
	text-align: center;
}

.iodine .grouper__grouper-finder__section__header__label .specificity-header {
	top: -2px;
	position: relative;
}

.iodine .grouper__grouper-finder__condition-code-row--selected {
	background-color: #e6f1ff;
}

.iodine .grouper__grouper-finder__condition-code-row:hover {
	background-color: #e6f1ff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	cursor: pointer;
}

.iodine .grouper__grouper-finder__condition-code-row:hover .grouper__grouper-finder__condition-code-row__add-button {
	visibility: visible;
}

.iodine .grouper__grouper-finder__condition-code-row__flags__flag {
	font-size: 11px;
	color: #fff;
	border-radius: 3px;
	padding: 0 4px;
}

.iodine .grouper__grouper-finder__condition-code-row__flags__flag--cc {
	background-color: #cd8fc1;
}

.iodine .grouper__grouper-finder__condition-code-row__flags__flag--mcc {
	background-color: #856794;
}

.iodine .grouper__grouper-finder__condition-code-row__flags__flag--hcc {
	background-color: #50bfcb;
}

.iodine .grouper__grouper-finder__condition-code-row__flags__flag--hac {
	background-color: #bdbdbd;
}

.iodine .grouper__grouper-finder__condition-code-row__flags__flag--ds {
	background-color: #f1d675;
}

.iodine .grouper__grouper-finder__condition-code-row__code {
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
}

.iodine .grouper__grouper-finder__condition-code-row__code-name {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	color: #081c2f;
}

.iodine .grouper__grouper-finder__condition-code-row__add-button {
	color: #0095f1;
	visibility: hidden;
	vertical-align: middle;
	margin-top: 4px;
}

.iodine .grouper__grouper-finder__condition-code-row__add-button .material-icons, .iodine .grouper__grouper-finder__condition-code-row__add-button .iodine-icons {
	font-size: 20px;
}

.iodine .grouper__code-entry-section__view {
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	padding-bottom: 30px;
	top: 10px;
	position: relative;
}

.iodine .grouper__code-entry-section__view--diagnoses {
	border-radius: 2px 2px 0 0;
}

.iodine .grouper__code-entry-section__view--diagnoses .grouper__code-entry-section__title {
	border-radius: 2px 2px 0 0;
}

.iodine .grouper__code-entry-section__view--procedures {
	border-radius: 0;
}

.iodine .grouper__code-entry-section__view--misc {
	border-radius: 0 0 2px 2px;
	padding-bottom: 0;
}

.iodine .grouper__code-entry-section__set-poas {
	border: 0;
	box-shadow: none;
	background: none;
	top: -40px;
	right: 10px;
	font-weight: normal;
	padding: 10px 0px;
	border-radius: 0;
	color: #081c2f;
}

.iodine .grouper__code-entry-section__set-poas:hover {
	color: #0095f1;
	border-bottom: 1px solid #0095f1;
}

.iodine .grouper__code-entry-section__set-poas-disabled {
	border: 0;
	box-shadow: none;
	background: none;
	top: -40px;
	right: 10px;
	font-weight: normal;
	padding: 10px 0px;
	border-radius: 0;
	color: #081c2f;
}

.iodine .grouper__code-entry-section__title {
	background: #e6f1ff;
	padding-top: 8px;
	padding-left: 10px;
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
}

.iodine .grouper__code-entry-section__header {
	padding-left: 15px;
}

.iodine .grouper__code-entry-section__header__label {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #79848e;
}

.iodine .grouper__code-entry-section__dndtarget {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 1px;
	border-top: 2px solid #fff;
}

.iodine .grouper__code-entry-section__dndtarget .grouper__code-entry-section__row {
	padding-left: 2px;
	padding-right: 10px;
}

.iodine .grouper__code-entry-section__dndtarget .grouper__code-entry-section__row:hover .grouper__code-entry-section__row__del {
	visibility: visible;
}

.iodine .grouper__code-entry-section__dndtarget .grouper__code-entry-section__row:hover .grouper__code-entry-section__diagnosis-row__grip {
	visibility: hidden;
}

.iodine .grouper__code-entry-section__dndtarget_highlighted {
	border-top: 2px solid #0095f1;
}

.iodine .grouper__code-entry-section__row {
	padding-left: 2px;
	padding-right: 10px;
}

.iodine .grouper__code-entry-section__row:hover .grouper__code-entry-section__row__del {
	visibility: visible;
}

.iodine .grouper__code-entry-section__row:hover .grouper__code-entry-section__diagnosis-row__grip {
	visibility: visible;
}

.iodine .grouper__code-entry-section__row:active .grouper__code-entry-section__row__del {
	visibility: visible;
}

.iodine .grouper__code-entry-section__row:active .grouper__code-entry-section__diagnosis-row__grip {
	visibility: visible;
	color: #0095f1;
	opacity: 1;
	cursor: grabbing;
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}

.iodine .grouper__code-entry-section__newrow {
	padding-left: 2px;
	padding-right: 10px;
}

.iodine .grouper__code-entry-section__newrow:hover .grouper__code-entry-section__row__del {
	visibility: hidden;
}

.iodine .grouper__code-entry-section__newrow:hover .grouper__code-entry-section__diagnosis-row__grip {
	visibility: hidden;
}

.iodine .grouper__code-entry-section__diagnosis-row__grip {
	line-height: 1;
	opacity: 0.54;
	cursor: move;
	visibility: hidden;
}

.iodine .grouper__code-entry-section__diagnosis-row__grip .iodine-icons {
	font-size: 18px;
}

.iodine .grouper__code-entry-section__diagnosis-row__grip:hover {
	color: #0095f1;
	opacity: 1;
}

.iodine .grouper__code-entry-section__diagnosis-row__poa {
	margin-left: 2px;
}

.iodine .grouper__code-entry-section__diagnosis-row__poa [class$='input'] {
	padding-right: 24px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .grouper__code-entry-section__diagnosis-row__poa [class$='button'] {
	border: 0;
	width: 24px;
}

.iodine .grouper__code-entry-section__diagnosis-row__poa [class$='button']:before {
	content: "\E5C5";
	width: 24px;
	font-family: "Material Icons";
	font-size: 20px;
}

.iodine .grouper__code-entry-section__diagnosis-row__code {
	margin-left: 10px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .grouper__code-entry-section__diagnosis-row__desc, .iodine .grouper__code-entry-section__procedure-row__desc {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-left: 5px;
	border-radius: 1px;
	background-color: #f2f2f2;
	align-items: center;
	padding: 0 5px;
	width: calc(100% - 5px) !important;
	display: inline-block;
	vertical-align: middle;
	line-height: 30px;
}

.iodine .grouper__code-entry-section__row__del {
	visibility: hidden;
	opacity: 0.54;
	margin-left: 10px;
}

.iodine .grouper__code-entry-section__row__del:hover {
	opacity: 1;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags {
	padding: 0 9px;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags .v-spacing {
	width: 3px;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag {
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	color: #fff;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	padding: 0 4px;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag--cc {
	background-color: #cd8fc1;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag--mcc {
	background-color: #856794;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag--hcc {
	background-color: #50bfcb;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag--hac {
	background-color: #bdbdbd;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag--ds {
	background-color: #f1d674;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag--or {
	background-color: #6ca9cf;
}

.iodine .grouper__code-entry-section__diagnosis-row__flags__flag--ord {
	background-color: #2f1a45;
}

.iodine .grouper__code-entry-section__procedure-row__code {
	margin-left: 14px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .grouper__code-entry-section__content {
	padding: 10px 16px;
}

.iodine .v-caption-grouper__misc-section__element {
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
}

.iodine .grouper__misc-section__age {
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: none;
	padding-left: 8px;
}

.iodine .grouper__misc-section__combo-box {
	font-size: 13px;
}

.iodine .grouper__misc-section__combo-box [class$='input'] {
	padding-right: 24px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .grouper__misc-section__combo-box [class$='button'] {
	border: 0;
	width: 24px;
}

.iodine .grouper__misc-section__combo-box [class$='button']:before {
	content: "\E5C5";
	width: 24px;
	font-family: "Material Icons";
	font-size: 20px;
}

.iodine .grouper__misc-section__discharge-date-field [class*='textfield'] {
	padding-right: 24px;
	padding-left: 8px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .grouper__misc-section__discharge-date-field [class$='button'] {
	border: 0;
	width: 24px;
	right: 0;
	left: auto;
}

.iodine .grouper__misc-section__discharge-date-field [class$='button']:before {
	content: "\E5C5";
	width: 24px;
	font-family: "Material Icons";
	font-size: 20px;
}

.iodine .grouper__misc-section__disclaimer {
	font-variant: JIS83;
	color: #081c2f;
	font-style: oblique;
	margin-top: 30px;
	text-align: center;
	padding: 20px 0px 20px 0px;
	border-top: 1px solid #eee;
}

.iodine .v-slot-title-bar {
	position: relative;
	z-index: 10;
}

.iodine .v-slot-smartlist-view-container {
	position: relative;
	z-index: 1;
}

.iodine .main-window > div {
	position: fixed;
}

.iodine #patient-view-root > .v-expand {
	height: calc(100% + 40px);
}

.iodine .patient-details__content {
	background-color: #eee;
}

.iodine .patient-details__navbar {
	background-color: #ffffff;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	position: relative;
	display: flex;
}

.iodine .patient-details__navbar .v-expand {
	display: flex;
}

.iodine .patient-details__left-bar {
	background-color: #ffffff;
}

.iodine .patient-details__left-bar__section {
	cursor: pointer;
	padding: 11.5px 8px;
}

.iodine .patient-details__left-bar__section:hover {
	background: #e6f1ff;
}

.iodine .patient-details__left-bar__section--active {
	background: #e6f1ff;
}

.iodine .patient-details__left-bar__section--active .patient-details__left-bar__section__button {
	color: #0095f1;
	background: none;
}

.iodine .patient-details__left-bar__section--active .patient-details__left-bar__section__label {
	color: #0068be;
	font-weight: bold;
}

.iodine .patient-details__left-bar__section__button {
	padding: 0;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #79848e;
}

.iodine .patient-details__left-bar__section__button .v-button-wrap {
	height: initial;
	line-height: 0;
}

.iodine .patient-details__left-bar__section__button .v-icon {
	font-size: 18px;
}

.iodine .patient-details__left-bar__section__button--review_history .v-icon, .iodine .patient-details__left-bar__section__button--timeline .v-icon, .iodine .patient-details__left-bar__section__button--opportunities .v-icon {
	font-size: 24px;
}

.iodine .patient-details__left-bar__section__button--labs_and_vitals .v-icon {
	font-size: 14px;
}

.iodine .patient-details__left-bar__section__label {
	margin-left: 8px;
	font-size: 14px;
	line-height: 1.46;
	color: #081c2f;
}

.iodine .patient-details__left-bar__spotlight {
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.12);
	position: relative;
}

.iodine .v-caption-beta-condition {
	margin: 4px 0 0 -6px;
}

.iodine .beta-condition-checkbox {
	margin-left: -16px;
}

.iodine .patient-details__left-bar__spotlight__header {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	position: relative;
	cursor: pointer;
}

.iodine .patient-details__left-bar__spotlight__header__label {
	font-size: 14px;
	font-weight: bold;
	margin-left: 25px;
	padding: 11.5px 8px;
	user-select: none;
}

.iodine .patient-details__left-bar__spotlight__header__label:hover {
	color: #0095f1;
}

.iodine .patient-details__left-bar__spotlight_toggle_button label {
	cursor: pointer;
}

.iodine .patient-details__left-bar__spotlight__panel-no_condition_message {
	font-style: italic;
	color: #79848e;
	padding: 10px;
}

.iodine .patient-details__left-bar__spotlight__header__label--opened:before {
	content: "\E5C5";
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	font-family: "Material Icons";
	position: absolute;
	left: 8px;
	line-height: 1;
	transform: translateY(0) rotate(0deg);
	transition: transform 0.1s ease-in-out;
}

.iodine .patient-details__left-bar__spotlight__header__label--closed:before {
	content: "\E5C5";
	color: rgba(0, 0, 0, 0.54);
	font-size: 20px;
	font-family: "Material Icons";
	position: absolute;
	left: 8px;
	line-height: 1;
	transform: translateY(0) rotate(-90deg);
	transition: transform 0.1s ease-in-out;
}

.iodine .patient-details-left-bar .v-caption-on-top.v-has-caption {
	display: flex;
}

.iodine .patient-details-smartlist-nav-label {
	font-weight: normal;
	color: #081c2f;
	letter-spacing: normal;
	cursor: pointer;
}

.iodine .patient-details-smartlist-nav-label .v-button-wrap {
	display: inline-flex;
	height: 100%;
	align-items: center;
}

.iodine .patient-details__navbar__reviewed-today {
	color: #0095f1;
	padding-left: 7px;
	padding-right: 9px;
	line-height: 1;
	visibility: hidden;
}

.iodine .patient-details__navbar__reviewed-today .iodine-icons-check {
	font-size: 14px;
}

.iodine .patient-details__navbar__reviewed-today--visible {
	visibility: visible;
}

.iodine .patient-details__navbar__material-icon-warning {
	margin-left: 0;
	margin-right: 7px;
	padding-top: 1px;
	line-height: 1;
	width: 20px;
	height: 20px;
}

.iodine .patient-details__navbar__material-icon-warning .iodine-icons-stopped {
	color: #d85d48;
	font-size: 16px;
}

.iodine .patient-details__navbar__patient-discharge-icon > span {
	color: #0095f1;
	font-size: 15px;
	margin: 5px;
}

.iodine .patient-details__navbar__patient-discharge-no-review-icon > span {
	color: #BA1A1A;
	font-size: 15px;
	margin: 5px;
	padding: 2px;
	border-radius: 2px;
	border: 1px solid var(--ioUI-sys-light-error, #BA1A1A);
	background: var(--ioUI-sys-light-error-container, #FFDAD6);
}

.iodine .patient-details__navbar__patient-name {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #081c2f;
	position: relative;
	top: 0;
}

.iodine .patient-details__navbar__retro-patient-name {
	letter-spacing: 0.5px;
	color: #081c2f;
	position: relative;
	top: 0;
	margin-left: 25px;
	font-size: 18px;
	font-weight: bold;
}

.iodine .patient-details__navbar__patient-score {
	position: absolute;
	left: 0;
	top: 40px;
}

.iodine .patient-details__navbar__retro-patient-score {
	margin-left: 30px;
}

.iodine .patient-details__navbar__filter-button {
	opacity: 0.54;
	font-size: 14px;
	color: #000000;
	font-weight: normal;
	padding-left: 19px;
	margin-left: 19px;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 0;
	line-height: 1;
	position: relative;
	padding-right: 14px;
	margin-right: 19px;
}

.iodine .patient-details__navbar__filter-button .material-icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.iodine .patient-details__navbar__filter-button.patient-details__navbar__filter-button--drg {
	margin-left: 0;
}

.iodine .patient-details__navbar__retro-filter-button {
	max-width: 200px;
}

.iodine .patient-details__navbar__button {
	font-weight: normal;
	color: #081c2f;
	display: inline-flex;
	align-items: center;
}

.iodine .patient-details__navbar__button .v-icon {
	font-size: 18px;
	line-height: 18px;
}

.iodine .patient-details__navbar__button .v-button-caption {
	font-size: 11px;
}

.iodine .patient-details__navbar__button--complete .v-icon {
	font-size: 14px;
}

.iodine .patient-details__navbar__button--more .v-icon {
	font-size: 24px;
}

.iodine .patient-details__navbar__button--worksheet, .iodine .patient-details__navbar__button--worksheet.v-disabled {
	border-left: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 0;
	opacity: 1;
}

.iodine .patient-details__navbar__button--query:hover:after {
	content: "";
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgba(83, 45, 109, 0.15);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.iodine .patient-details__navbar__button--query:hover .v-icon {
	color: #532d6d;
}

.iodine .patient-details__navbar__button--query:hover .v-button-caption {
	color: #532d6d;
}

.iodine .patient-details__navbar__button--complete:hover:after {
	content: "";
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgba(25, 166, 82, 0.2);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.iodine .patient-details__navbar__button--complete:hover .v-icon {
	color: #19a652;
}

.iodine .patient-details__navbar__button--complete:hover .v-button-caption {
	color: #19a652;
}

.iodine .patient-details__navbar__button--complete .v-button-wrap {
	padding-left: 4px;
}

.iodine .patient-details__navbar__button--active {
	background: #19A652;
}

.iodine .patient-details__navbar__button--active .v-icon {
	color: #fff;
}

.iodine .patient-details__navbar__button--active .v-button-caption {
	color: #fff;
}

.iodine .patient-details__navbar__button--complete.completed .v-button-wrap {
	padding-left: 0;
}

.iodine .patient-details__navbar__button--complete.completed:after {
	content: none;
}

.iodine .patient-details__navbar__button--complete.completed:after {
	content: "";
	width: 45px;
	height: 45px;
	position: absolute;
	background-color: rgba(25, 166, 82, 0.1);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -55%);
	z-index: -1;
	border-radius: 100%;
}

.iodine .patient-details__navbar__button--complete.completed .v-icon {
	color: #19a652;
	font-size: 21px;
}

.iodine .patient-details__navbar__button--complete.completed .v-button-caption {
	color: #19a652;
}

.iodine .patient-details__navbar__button--complete.clicked, .iodine .patient-details__navbar__button--complete.completed {
	padding-top: 4px;
}

.iodine .patient-details__navbar__button--complete.completed:hover .v-button-caption {
	color: #127a3c;
}

.iodine .patient-details__navbar__button--complete.clicked .v-icon {
	animation: flip 0.75s 1;
	animation-fill-mode: forwards;
}

.iodine .patient-details__navbar__button--complete.clicked .v-button-caption {
	animation: bump 0.75s 1;
	animation-fill-mode: forwards;
}

.iodine .patient-details__complete-menu__another-review .v-icon.iodine-icons {
	font-size: 11px;
	margin: 0 3px;
}

.iodine .patient-details__navbar__button--more:hover:after, .iodine .patient-details__navbar__button--outcomes:hover:after, .iodine .patient-details__navbar__button--outcomes.selected:after, .iodine .patient-details__navbar__button--pending:hover:after, .iodine .patient-details__navbar__button--pending.completed:after {
	content: "";
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #e6f1ff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.iodine .patient-details__navbar__button--more:hover .v-icon, .iodine .patient-details__navbar__button--outcomes:hover .v-icon, .iodine .patient-details__navbar__button--outcomes.selected .v-icon, .iodine .patient-details__navbar__button--pending:hover .v-icon, .iodine .patient-details__navbar__button--pending.completed .v-icon {
	color: #0095f1;
}

.iodine .patient-details__navbar__button--more:hover .v-button-caption, .iodine .patient-details__navbar__button--outcomes:hover .v-button-caption, .iodine .patient-details__navbar__button--outcomes.selected .v-button-caption, .iodine .patient-details__navbar__button--pending:hover .v-button-caption, .iodine .patient-details__navbar__button--pending.completed .v-button-caption {
	color: #0095f1;
}

.iodine .patient-details__navbar__button--worksheet:hover, .iodine .patient-details__navbar__button--worksheet.v-disabled, .iodine .patient-details__navbar__button--worksheet.selected {
	background: #0095f1;
}

.iodine .patient-details__navbar__button--worksheet:hover .v-icon, .iodine .patient-details__navbar__button--worksheet.v-disabled .v-icon, .iodine .patient-details__navbar__button--worksheet.selected .v-icon {
	color: #fff;
}

.iodine .patient-details__navbar__button--worksheet:hover .v-button-caption, .iodine .patient-details__navbar__button--worksheet.v-disabled .v-button-caption, .iodine .patient-details__navbar__button--worksheet.selected .v-button-caption {
	color: #fff;
}

.iodine .patient-details__navbar__button--grouper:hover, .iodine .patient-details__navbar__button--grouper.v-disabled, .iodine .patient-details__navbar__button--grouper.selected {
	background: #19a652;
}

.iodine .patient-details__navbar__button--grouper:hover .v-icon, .iodine .patient-details__navbar__button--grouper.v-disabled .v-icon, .iodine .patient-details__navbar__button--grouper.selected .v-icon {
	color: #fff;
}

.iodine .patient-details__navbar__button--grouper:hover .v-button-caption, .iodine .patient-details__navbar__button--grouper.v-disabled .v-button-caption, .iodine .patient-details__navbar__button--grouper.selected .v-button-caption {
	color: #fff;
}

.iodine .patient-details__more-options {
	padding: 10px 0;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 2px;
	margin-top: -6px !important;
}

.iodine .patient-details__more-options__menu-item {
	padding: 0 15px;
	position: relative;
	font-size: 12px;
	min-width: 250px;
	transition: 0.12s ease;
	border-bottom: 1px solid #eeeeee;
	cursor: pointer;
	color: #081c2f;
	opacity: 1;
}

.iodine .patient-details__more-options__menu-item a {
	color: #081c2f;
}

.iodine .patient-details__more-options__menu-item .material-icons, .iodine .patient-details__more-options__menu-item .iodine-icons {
	color: #79848e;
}

.iodine .patient-details__more-options__menu-item:hover {
	background-color: #e6f1ff;
	color: #0095f1;
}

.iodine .patient-details__more-options__menu-item:hover .material-icons, .iodine .patient-details__more-options__menu-item:hover .iodine-icons, .iodine .patient-details__more-options__menu-item:hover a {
	color: #0095f1;
}

.iodine .patient-details__more-options__menu-item:focus {
	color: #0095f1;
}

.iodine .patient-details__more-options__menu-item:active {
	color: #0068be;
}

.iodine .patient-details__more-options__menu-item:active .material-icons, .iodine .patient-details__more-options__menu-item:active .iodine-icons, .iodine .patient-details__more-options__menu-item:active a {
	color: #0068be;
}

.iodine .patient-details__more-options__menu-item .v-caption {
	line-height: 1;
	padding: 0;
}

.iodine .patient-details__more-options__menu-item .v-has-caption {
	display: inline-flex;
	height: 100%;
	align-items: center;
}

.iodine .patient-details__more-options__menu-item .v-icon {
	font-size: 20px;
}

.iodine .patient-details__more-options__menu-item .v-label {
	padding-left: 9px;
}

.iodine .patient-details__more-options__menu-item--button:hover {
	cursor: pointer;
}

.iodine .patient-details__more-options__deprioritize-active {
	padding: 0 15px;
	box-shadow: inset 0 -1px 0 0 #eeeeee;
}

.iodine .patient-details__more-options__deprioritize-active:hover {
	background-color: rgba(216, 93, 72, 0.1);
}

.iodine .patient-details__more-options__deprioritize-active .v-caption {
	line-height: 1;
	padding: 0;
}

.iodine .patient-details__more-options__deprioritize-active .v-has-caption {
	display: inline-flex;
	height: 100%;
	align-items: center;
}

.iodine .patient-details__more-options__deprioritize-active .v-icon {
	font-size: 20px;
	color: #ac4a39;
}

.iodine .patient-details__more-options__deprioritize-active .v-label {
	padding-left: 9px;
	color: #ac4a39;
}

.iodine .patient-details__more-options__deprioritize-active:hover {
	cursor: pointer;
}

.iodine .patient-details__more-options__skip-review {
	margin-left: 20px;
	padding-top: 6px;
}

.iodine .patient-details__more-options__read-only-field {
	font-weight: bold;
	color: rgba(53, 61, 72, 0.54);
}

.iodine .patient-info__window .v-label {
	font-size: 14px;
	text-align: left;
	color: #79848e;
	line-height: 1;
}

.iodine .patient-info__window .v-label.bold {
	font-weight: bold;
	opacity: 0.87;
	color: #081c2f;
}

.iodine .patient-info__window .v-label.huge {
	font-size: 16px;
	font-weight: bold;
	color: #081c2f;
	opacity: 1;
	padding-top: 15px;
	padding-left: 15px;
}

.iodine .patient-info__window.v-window {
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .patient-info__row-container {
	padding: 0 15px;
}

.iodine .patient-info__row-container:hover {
	background-color: #e6f1ff;
	border-radius: 2px;
	box-sizing: border-box;
	cursor: pointer;
}

.iodine .patient-info__row-container:hover .iodine-copy-button {
	visibility: visible;
}

.iodine .iodine-copy-button {
	color: #0095f1;
	visibility: hidden;
	margin-top: 2px;
}

.iodine .patient-details__navbar--non-shadow {
	box-shadow: none;
	border-bottom: 1px solid rgba(36, 50, 66, 0.2);
}

.iodine .v-window.patient-details__copy-field-window {
	border-radius: 3px;
}

.iodine .patient-details__copy-field-window__checkbox {
	margin: 10px 15px;
}

.iodine .patient-details__copy-field-window__checkbox > input:checked ~ label::after {
	font-size: 18px;
}

.iodine .patient-details__copy-field-window__checkbox > input ~ label::before {
	height: 16px;
	width: 16px;
}

.iodine .patient-details__copy-field-window__header-layout {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	margin-bottom: 2px;
}

.iodine .patient-details__copy-field-window__bottom-layout {
	box-shadow: 0 -1px 2px 0 rgba(36, 50, 66, 0.15);
	margin-top: 2px;
	padding-right: 20px;
}

.iodine .patient-details__copy-field-window__ok {
	margin: 0 0 10px 0;
}

.iodine .patient-details__copy-field-window__cancel {
	margin: 10px;
}

.iodine .patient-details__copy-field-window__info-label {
	color: #081c2f;
	margin-top: 14px;
}

.iodine .patient-details__copy-field-window__header-label {
	color: #081c2f;
	letter-spacing: 0.5px;
	white-space: normal;
	text-align: center;
	font-weight: bold;
	line-height: 20px;
	margin-top: 10px;
	font-size: 18px;
	width: 330px;
}

.iodine .patient-details__copy-field-window__checkbox-label {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #081c2f;
	font-weight: bold;
	margin-top: 9px;
	font-size: 14px;
	opacity: 0.87;
}

.iodine .patient-details__copy-field-window__checkbox-value-label {
	font-weight: normal;
	color: #000000;
	opacity: 0.54;
}

.iodine .patient-details__copy-bar {
	background: #ffffff;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	z-index: 4;
	position: relative;
}

.iodine .patient-details__collapse-expand-favorite:hover {
	color: #0095f1;
}

.iodine .patient-details__collapse-expand-favorite {
	position: relative;
	margin-top: 42px;
	cursor: pointer;
	color: #79848e;
	left: 19px;
}

.iodine .patient-details__collapse-expand-favorite .iodine-icons {
	font-size: 10px;
}

.iodine .patient-details__copy-bar__field-name--gender.patient-details__copy-bar__field-name--left, .iodine .patient-details__copy-bar__field-name.patient-details__copy-bar__field-name--left {
	border-left: none;
}

.iodine .patient-details__copy-bar__expand-window-icon:hover {
	color: #0095f1;
	cursor: pointer;
}

.iodine .patient-details__copy-bar__expand-window-icon {
	border-left: 1px solid #eeeeee;
	text-align: center;
	font-size: 20px;
	color: #d8d8d8;
}

.iodine .patient-details__copy-bar__field-name--gender, .iodine .patient-details__copy-bar__field-name {
	color: #081c2f;
	border-left: 1px solid #eeeeee;
	padding-left: 7px;
	font-weight: bold;
	font-size: 14px;
	opacity: 0.87;
}

.iodine .patient-details__copy-bar__field-name--gender {
	cursor: pointer;
}

.iodine .patient-details__copy-bar__field-value {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 1px 0 0 5px;
	padding-right: 7px;
	cursor: pointer;
	font-size: 14px;
	color: #000000;
	opacity: 0.54;
}

.iodine .patient-details__copy-bar__field-value:hover {
	opacity: 1;
	color: #0095f1;
}

.iodine .patient-details__copy-bar__field-name-owner {
	margin-right: 6px;
}

.iodine .v-panel.patient-details-left-bar-panel {
	border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.iodine .patient-details__copy-bar__values-holder {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 30px;
}

.iodine .patient-details__copy-bar__item-holder {
	height: 20px;
	display: flex;
	min-width: 160px;
}

.iodine .patient-details__copy-bar__item-holder--wide {
	min-width: 180px;
}

.iodine .patient-details__copy-bar__item-holder--wider {
	min-width: 230px;
}

.iodine .patient-details__outcome-window__outcome-type-combobox {
	margin: 10px;
}

.iodine .patient-details__outcome-window__outcome-line--readonly {
	margin: 5px;
}

.iodine .patient-details__outcome-window__outcome-read-only-group {
	background: #e6f1ff;
	border: 1px solid lightgray;
	border-radius: 6px;
	margin: 15px;
}

.iodine .patient-details__outcome-window__section {
	margin: 15px;
	width: 100%;
}

.iodine .patient-details-outcome-window__group {
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 3px;
	font-size: 14px;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 10px;
	padding: 0;
}

.iodine .patient-details__outcome-window__drg-dropdown__label {
	font-weight: bold;
}

.iodine .patient-details__outcome-window__group-header {
	background-color: #19a652;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.iodine .patient-details__outcome-window__readonly-group-header {
	background-color: #0095f1;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.iodine .patient-details__outcome-window__margin {
	margin-left: 5px;
}

.iodine .patient-details__outcome-window__header-margin {
	margin-left: 10px;
}

.iodine .patient-details__outcome-window__add-button {
	color: #fff;
	font-size: 24px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	z-index: 1;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	bottom: 13px;
	right: 30px;
	transition: box-shadow 0.1s ease-in-out;
}

.iodine .patient-details__outcome-window__add-button .v-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 10px;
	height: 14px;
}

.iodine .patient-details__outcome-window__no-groups--first {
	font-size: 18px;
	color: #d4d4d4;
}

.iodine .patient-details__outcome-window__no-groups--second {
	font-size: 14px;
	color: #79848e;
}

.iodine .patient-details__outcome-window__caregiver-selector {
	border-radius: 3px;
	border: 1px solid #c5c5c5;
}

.iodine .patient-details__outcome-window__main-layout {
	background-color: #fff;
}

.iodine .patient-details__outcome-window__header-layout {
	width: 100%;
	height: 70px;
	border-radius: 3px;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15), inset 0 -1px 0 0 #e0e0e0;
	position: relative;
}

.iodine .patient-details__outcome-window__label {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #081c2f;
}

.iodine .patient-details__outcome-window__footer-layout {
	width: 100%;
	height: 70px;
	border-radius: 2px;
	box-shadow: 0 -1px 2px 0 rgba(36, 50, 66, 0.15);
	padding-right: 20px;
	position: relative;
}

.iodine .patient-details__outcome-window__close-button {
	line-height: 30px;
	padding: 0;
}

.iodine .patient-details__outcome-window__close-button .v-button-wrap {
	display: inline-flex;
	align-items: center;
}

.iodine .patient-details__outcome-window__group-button {
	cursor: pointer;
}

.iodine .patient-details__outcome-window__group-button:hover {
	opacity: 0.54;
}

.iodine .v-slot-patient-details__copy-bar__expand-window-icon {
	display: inline-flex;
	align-items: center;
}

.iodine .v-slot-patient-details__copy-bar__expand-window-icon::before {
	display: none;
}

.iodine .v-panel {
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.iodine .v-treegrid-tablewrapper {
	border: 0;
}

.iodine .v-button:after {
	content: none;
	top: 0;
	bottom: 0;
}

.iodine .v-button:focus:after {
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.iodine .v-tooltip {
	max-width: 60em;
}

.iodine .v-tooltip.vs-tooltip {
	background-color: transparent;
}

.iodine .v-window {
	padding: 10px 0;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 2px;
}

.iodine .v-window-outerheader:after {
	content: none;
}

.iodine .v-window-contents > .v-scrollable:before {
	content: none;
}

.iodine .v-window-closebox, .iodine .v-window-closebox:hover {
	color: #081c2f;
}

.iodine span.v-menubar-menuitem {
	box-sizing: content-box;
}

.iodine .blue-header-window {
	box-shadow: 0 20px 30px 0 rgba(35, 50, 66, 0.14);
	padding: 0;
	overflow-x: hidden;
}

.iodine .blue-header-window .blue-header {
	background: #0095f1;
	box-sizing: border-box;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	min-height: 45px;
	z-index: 10;
}

.iodine .blue-header-window .caption {
	margin-top: 8px;
	font-weight: bolder;
	font-size: 18px;
	text-align: center;
	padding-left: 37px;
	color: white;
}

.iodine .blue-header-window .header-button {
	cursor: pointer;
	color: #fff;
}

.iodine .blue-header-window .v-window-contents > .v-scrollable:before, .iodine .blue-header-window .v-window-outerheader:after {
	border-top-width: 0;
}

.iodine .blue-header-window .v-window-outerheader {
	height: 5px;
	background: #0095f1;
	box-sizing: border-box;
}

.iodine .blue-header-window .v-window-outerheader div {
	background: transparent;
	color: #fff;
	border-bottom-left-radius: 0;
}

.iodine .blue-header-window .v-window-outerheader .v-window-closebox {
	visibility: hidden;
}

.iodine .blue-header-window .v-window-outerheader .v-window-header {
	margin-top: 8px;
	font-weight: bolder;
	font-size: 18px;
	text-align: center;
	padding-left: 37px;
}

.iodine .blue-header-window .v-window-outerheader .v-window-maximizebox, .iodine .blue-header-window .v-window-outerheader .v-window-closebox {
	font-size: 28px;
}

.iodine .blue-header-window-mini {
	min-width: 56px !important;
	background: transparent;
	box-shadow: none;
	padding: 0;
	border: none;
}

.iodine .blue-header-window-mini .v-window-outerheader {
	height: 0;
	visibility: hidden;
}

.iodine .blue-header-window-mini .v-window-closebox {
	visibility: hidden;
}

.iodine .blue-header-window-mini .v-window-contents > .v-scrollable:before, .iodine .blue-header-window-mini .v-window-outerheader:after {
	border-top-width: 0;
}

.iodine .blue-header-window-mini .absolute-layout {
	background: transparent;
}

.iodine .blue-header-window-mini .main-component {
	background: #0095f1;
	border-radius: 50%;
	padding: 18px;
	cursor: pointer;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	transition: box-shadow 0.1s ease-in-out;
}

.iodine .blue-header-window-mini .main-component:hover {
	box-shadow: 0 20px 30px 0 rgba(35, 50, 66, 0.14);
}

.iodine .blue-header-window-mini .minimized-icon {
	background: transparent;
}

.iodine .blue-header-window-mini .minimized-badge {
	border-radius: 50%;
	background: #47b774;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	padding-top: 3px;
}

.iodine .contact-support-input-field {
	max-height: 172px;
}

.iodine .contact-support-messages-list {
	background-color: #f8fafe;
	border-radius: 0;
	border-width: 0;
	border-top: 1px solid #f8fafe;
}

.iodine .main-layout {
	overflow-y: hidden;
}

.iodine .contact-support-messages-dates {
	text-align: center;
	font-size: 12px;
	color: #081c2f;
	opacity: 0.54;
	margin-top: 20px;
}

.iodine .contact-support-messages-content {
	padding: 10px;
}

.iodine .contact-support-input-section {
	min-height: 70px;
	box-sizing: border-box;
	box-shadow: 0 -1px 2px 0 rgba(36, 50, 66, 0.15);
	background-color: white;
	vertical-align: middle;
	padding: 22px 10px 15px 20px;
	position: relative;
}

.iodine .contact-support-input-section .v-textarea {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border: none;
	box-sizing: border-box;
	margin: 0 15px 0 0;
	background-color: transparent;
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
}

.iodine .contact-support-send-button {
	background: #19a652 none;
	padding: 0;
	border: 0;
	box-shadow: inset 0 -2px 0 0 #148441;
	color: white;
	border-radius: 6px;
	font-size: 13px;
	margin-top: auto;
	margin-bottom: auto;
}

.iodine .contact-support-send-button:active {
	box-shadow: none;
}

.iodine .message-bubble {
	margin-top: 12px;
}

.iodine .message-bubble-text {
	border-radius: 10px;
	padding: 15px;
	font-size: 13px;
	line-height: 1.46;
	word-wrap: break-word;
}

.iodine .message-bubble-text-received {
	background-color: white;
	color: #081c2f;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
}

.iodine .message-bubble-text-sent {
	background-color: #0095f1;
	color: #fff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
}

.iodine .message-bubble-icon-iosupport {
	height: 21px;
	width: 21px;
}

.iodine .message-bubble-icon {
	height: 25px;
	width: 25px;
	border: solid 1px rgba(140, 146, 155, 0.34);
	border-radius: 50%;
}

.iodine .message-bubble-icon-layout {
	text-align: center;
}

.iodine .message-bubble-icon-layout .v-button-link {
	visibility: hidden;
}

.iodine .message-bubble-icon-layout:hover .v-button-link {
	visibility: visible;
}

.iodine .message-bubble-delete {
	font-size: 13px;
	color: #0095f1;
	padding: 0;
	margin-top: -8px;
	text-decoration: underline;
}

.iodine .message-bubble-timestamp {
	font-size: 12px;
	text-align: center;
	color: #081c2f;
	opacity: 0.54;
	letter-spacing: 0.1px;
	visibility: hidden;
}

.iodine .message-bubble:hover .message-bubble-timestamp {
	visibility: visible;
}

.iodine .contact-support__screenshot-button .material-icon-screen_share {
	margin-left: 8px;
}

.iodine .contact-support__screenshot-button {
	text-align: center;
}

.iodine .contact-support__screenshot-button .v-label {
	font-size: 22px;
	margin-top: -2px;
	color: #081c2f;
}

.iodine .contact-support__screenshot-button:hover .v-label {
	cursor: pointer;
	color: #33aaf3;
}

.iodine .contact-support__screenshot-button:active .v-label {
	color: #0095f1;
}

.iodine .contact-support__screenshot-thumbnail:hover {
	cursor: pointer;
}

.iodine .contact-support__screenshot-window .v-slot {
	overflow-y: auto;
}

.iodine .contact-support__screenshot-window img {
	max-width: 100%;
	height: auto;
}

.iodine .contact-support__screenshot-window {
	padding: 0;
	max-width: 90%;
	max-height: 90%;
}

.iodine .contact-support__upload-image-button .v-button:before {
	content: "\E3F4";
	font-family: "Material Icons";
	color: #081c2f;
	font-size: 21px;
	margin-left: -5px;
	margin-top: -1px;
}

.iodine .contact-support__upload-image-button .v-button {
	background: none;
	border: none;
	box-shadow: none;
}

.iodine .contact-support__upload-image-button .v-button:hover:before {
	color: #33aaf3;
}

.iodine .contact-support__upload-image-button .v-button:active:before {
	color: #0095f1;
}

.iodine .global-search-window {
	border-radius: 3px;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
}

.iodine .global-search-window__top-holder {
	border-bottom: solid 1px #e0e0e0;
}

.iodine .global-search-window__header {
	font-size: 18px;
	font-weight: bold;
	color: #081c2f;
	letter-spacing: 0.5px;
	height: 22px;
	padding-left: 20px;
	padding-top: 5px;
}

.iodine .global-search-window__notification {
	font-size: 14px;
	font-style: italic;
	height: 30px;
	padding-top: 5px;
}

.iodine .global-search-window__tab {
	margin-left: 20px;
	padding-bottom: 9px;
	opacity: 0.54;
	height: 24px;
	color: #081c2f;
	font-size: 12px;
}

.iodine .global-search-window__tab--selected, .iodine .global-search-window__tab:hover {
	padding-bottom: 5px;
	border-bottom: solid 4px #0095f1;
	opacity: 1;
}

.iodine .global-search-window__tab:hover {
	cursor: pointer;
}

.iodine .global-search-window__tab--selected:hover {
	cursor: default;
}

.iodine .global-search-window__tabs-container {
	padding-bottom: 1px;
}

.iodine .global-search-window__table-container {
	padding-left: 10px;
	padding-right: 10px;
}

.iodine .global-search-window__table .v-grid-row-stripe > td {
	background: #e6f1ff;
}

.iodine .global-search-window__table .v-grid-header .v-grid-cell {
	background: #0095f1;
	font-size: 13px;
	font-weight: bold;
	color: #ffffff;
}

.iodine .global-search-window__table .v-grid-row > td {
	font-size: 13px;
	color: #081c2f;
}

.iodine .global-search-window__table .v-grid-tablewrapper {
	border: none;
}

.iodine .global-search-window__table .v-grid-header th {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.iodine .global-search-window__table .v-grid-header th:first-child {
	border-left: none;
}

.iodine .global-search-window__table .v-grid-row > td {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.iodine .global-search-window__table .v-grid-row > td:first-child {
	border-left: none;
}

.iodine .vitals__controls {
	padding: 0 34px;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	background: #fff;
	z-index: 10;
	position: relative;
}

.iodine .vitals__controls__resolution-select {
	margin-top: 2px;
}

.iodine .v-caption-vitals__controls__icon .v-icon {
	color: rgba(53, 61, 72, 0.54);
	font-size: 15px;
}

.iodine .vitals__controls__category-header--selected {
	color: #0068be;
}

.iodine .v-caption-vitals__controls__icon--selected .v-icon {
	color: #0095f1;
}

.iodine .v-slot-vitals__controls__icon .v-has-caption {
	line-height: 0;
}

.iodine .v-slot-vitals__controls__icon .v-caption {
	line-height: 0;
	padding-bottom: 0;
}

.iodine .vitals__controls__button {
	color: #081c2f;
	font-size: 13px;
	cursor: pointer;
	z-index: 100;
	background: #fff;
	position: relative;
}

.iodine .vitals__controls__button:hover {
	color: #0068be;
}

.iodine .vitals__controls__button:hover .v-caption-vitals__controls__icon .v-icon {
	color: #0095f1;
}

.iodine .vitals__controls__button .v-caption-vitals__controls__icon {
	margin-left: 52px;
}

.iodine .vitals__controls__button .vitals__controls__button__label {
	margin-left: 7px;
}

.iodine .vitals__popup-window {
	background: #ffffff;
}

.iodine .vitals__no-results__container {
	background: #eee;
}

.iodine .vitals__grid .vitals__grid__separator {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	z-index: 3;
}

.iodine .vitals__grid .vitals__grid__separator, .iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > td, .iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > tr {
	font-size: 16px;
	font-weight: bold;
	color: #081c2f;
	background: #fff;
	cursor: pointer;
	border: 0;
}

.iodine .vitals__grid__separator .v-treegrid-cell.frozen {
	box-shadow: none;
	border-right: 0;
	position: relative;
}

.iodine .vitals__grid .v-treegrid {
	background: #eeeeee;
}

.iodine .vitals__grid .v-treegrid-header .v-treegrid-cell.frozen {
	background: #0068be;
	border: 0;
	box-shadow: inset -3px 0 0 0 rgba(0, 0, 0, 0.12);
	z-index: 5;
}

.iodine .vitals__grid .v-treegrid-header .v-treegrid-cell {
	background: #0095f1;
	color: #fff;
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
	padding: 0;
}

.iodine .vitals-relative td.v-treegrid-cell {
	align-items: center;
}

.iodine .vitals__grid__row--header-top .v-treegrid-cell {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.iodine .vitals__grid__row--header-top .v-treegrid-cell:after {
	content: "";
	position: absolute;
	width: 3px;
	background-color: #0068be;
	height: 200%;
	right: 0;
	top: 0;
	z-index: 3;
}

.iodine .vitals__grid__row--header-bottom .v-treegrid-cell {
	border-left: 0;
	border-right: 0;
	font-size: 12px;
	text-align: center;
}

.iodine .vitals__grid__cell--left {
	background-color: #fff;
}

.iodine .vitals__grid .v-treegrid-row.v-treegrid-row-stripe:not(.vitals__grid__separator) > .v-treegrid-cell.frozen {
	background-color: #fafafa;
}

.iodine .vitals__grid .v-treegrid-row-selected.v-treegrid-row-stripe:not(.vitals__grid__separator) > td {
	background-color: #eee;
}

.iodine .vitals__grid th.vitals__grid__spotlight--empty-cell {
	opacity: 0.5;
}

.iodine .vitals__grid .v-treegrid-row-selected > td {
	background: #fff none;
}

.iodine .vitals__grid .v-treegrid-row-selected > .vitals__grid__spotlight--empty-cell, .iodine .vitals__grid td.vitals__grid__spotlight--empty-cell {
	background-image: url(images/labs-vitals-empty-cell.png);
	opacity: 0.5;
}

.iodine .vitals__grid .v-treegrid-row.v-treegrid-row-focused:before {
	display: none;
}

.iodine .vitals__grid .v-treegrid-row:not(.vitals__grid__separator) > .vitals__grid__cell--left {
	border: 0;
	border-right: 3px solid #b5b5b5;
	font-size: 14px;
	box-shadow: none;
	color: #333;
}

.iodine .vitals__grid .v-treegrid-row > td {
	border: 1px solid #dedede;
	font-size: 13px;
	color: #333;
	padding-left: 0;
	padding-right: 0;
	display: flex;
	justify-content: space-between;
}

.iodine .vitals__grid .v-treegrid-row-stripe > td {
	background-color: #eee;
}

.iodine .vitals__grid .v-treegrid-row:not(.vitals__grid__separator) > .vitals__grid__cell--border-right {
	border-right: 3px solid #b5b5b5;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-default-main-header {
	border-left: 8px solid #d8d8d8;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-chemistry-main-header {
	border-left: 8px solid #d85d48;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hematology-main-header {
	border-left: 8px solid #532d6d;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-coagulation-main-header {
	border-left: 8px solid #0068be;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hepatic-main-header {
	border-left: 8px solid #eecc52;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-cardiac-markers-main-header {
	border-left: 8px solid #19a652;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-lipid-main-header {
	border-left: 8px solid #eecc52;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-default-main-header-no-data {
	border-left: 8px solid #d8d8d8;
	overflow: visible;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-chemistry-main-header-no-data {
	border-left: 8px solid #d85d48;
	overflow: visible;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hematology-main-header-no-data {
	border-left: 8px solid #532d6d;
	opacity: 0.54;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-coagulation-main-header-no-data {
	border-left: 8px solid #0068be;
	opacity: 0.54;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hepatic-main-header-no-data {
	border-left: 8px solid #eecc52;
	opacity: 0.54;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-cardiac-markers-main-header-no-data {
	border-left: 8px solid #19a652;
	opacity: 0.54;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-lipid-main-header-no-data {
	border-left: 8px solid #eecc52;
	opacity: 0.54;
	overflow: visible;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-default-no-data {
	border-left: 8px solid #d8d8d8;
	border-right: 3px solid #b5b5b5;
	text-align: center;
	opacity: 0.54;
	font-size: 14px;
	overflow: visible;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: default;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-default-no-data .v-label {
	margin-left: 180px;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-chemistry-no-data {
	border-left: 8px solid #d85d48;
	border-right: 3px solid #b5b5b5;
	text-align: center;
	opacity: 0.54;
	font-size: 14px;
	overflow: visible;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: default;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-chemistry-no-data .v-label {
	margin-left: 180px;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hematology-no-data {
	border-left: 8px solid #532d6d;
	border-right: 3px solid #b5b5b5;
	text-align: center;
	opacity: 0.54;
	font-size: 14px;
	overflow: visible;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: default;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hematology-no-data .v-label {
	margin-left: 180px;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-coagulation-no-data {
	border-left: 8px solid #0068be;
	border-right: 3px solid #b5b5b5;
	text-align: center;
	opacity: 0.54;
	font-size: 14px;
	overflow: visible;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: default;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-coagulation-no-data .v-label {
	margin-left: 180px;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hepatic-no-data {
	border-left: 8px solid #eecc52;
	border-right: 3px solid #b5b5b5;
	text-align: center;
	opacity: 0.54;
	font-size: 14px;
	overflow: visible;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: default;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-hepatic-no-data .v-label {
	margin-left: 180px;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-cardiac-markers-no-data {
	border-left: 8px solid #19a652;
	border-right: 3px solid #b5b5b5;
	text-align: center;
	opacity: 0.54;
	font-size: 14px;
	overflow: visible;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: default;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-cardiac-markers-no-data .v-label {
	margin-left: 180px;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-lipid-no-data {
	border-left: 8px solid #eecc52;
	border-right: 3px solid #b5b5b5;
	opacity: 0.54;
	font-size: 14px;
	overflow: visible;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: default;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > .vitals__grid__cell--border-left-lipid-no-data .v-label {
	margin-left: 180px;
	opacity: 0.54;
}

.iodine .vitals__grid .v-treegrid-row.vitals__grid__separator > td.v-treegrid-cell {
	border-top-width: 1px;
	border-bottom-width: 1px;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell.vitals__grid__cell--border-left-default {
	border-left: 8px solid #eee;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell.vitals__grid__cell--border-left-chemistry {
	border-left: 8px solid #df7d6c;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell.vitals__grid__cell--border-left-hematology {
	border-left: 8px solid #856794;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell.vitals__grid__cell--border-left-coagulation {
	border-left: 8px solid #0095f1;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell.vitals__grid__cell--border-left-hepatic {
	border-left: 8px solid #f1d674;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell.vitals__grid__cell--border-left-cardiac-markers {
	border-left: 8px solid #47b774;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell.vitals__grid__cell--border-left-lipid {
	border-left: 8px solid #f1d674;
}

.iodine .vitals__grid .v-treegrid-body .v-treegrid-row:not(.vitals__grid__separator) > td.v-treegrid-cell:hover {
	cursor: pointer;
	color: #0095f1;
}

.iodine .vitals__grid__cell__abnormal-flag {
	font-weight: bold;
	font-size: 9px;
	color: #ffffff;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 1px;
}

.iodine .vitals__grid__cell__abnormal-flag-unknown {
	font-size: 15px;
}

.iodine .vitals__grid .iodine-icons-custom_more_results {
	font-size: 18px;
	width: 100%;
	display: block;
	text-align: center;
	color: #0095f1;
}

.iodine .vitals__details-window {
	padding: 0;
	min-width: 232px !important;
}

.iodine .vitals__details-window__content {
	padding: 14px;
}

.iodine .vitals__details-window__content__header-label {
	font-size: 14px;
	color: #081c2f;
}

.iodine .vitals__details-window__content__date {
	display: block;
	background: #0095f1;
	height: 25px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.iodine .vitals__details-window__content__time {
	background: #0095f1;
	height: 25px;
	color: #fff;
	font-size: 12px;
	text-align: center;
}

.iodine .vitals__details-window__content__time .v-label {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.iodine .vitals__details-window__content__value {
	font-size: 13px;
	color: #333333;
	border: 2px solid #e1e1e1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	min-width: 70px;
	text-align: center;
}

.iodine .vitals__details-window__content__add-to-worksheet {
	top: 0;
}

.iodine .vitals-relative {
	position: relative;
	z-index: 2;
}

.iodine .vitals__grid__value .v-treegrid-expander {
	width: 0;
}

.iodine .vitals__grid__value .v-treegrid-node {
	padding-left: 0;
}

.iodine .vitals__grid__value .v-treegrid-cell {
	position: relative;
}

.iodine .vitals__grid_label__name {
	margin-left: 5px;
	margin-top: 5px;
}

.iodine .vitals__grid__cell__value {
	display: inline-flex;
	justify-content: space-between;
}

.iodine .vitals__grid__cell__value-holder {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: auto;
	text-align: left;
	-ms-user-select: none;
	user-select: none;
}

.iodine .vitals__details-window__content .vitals__grid__cell__abnormal-flag {
	margin-left: 5px;
}

.iodine .vitals__controls__date-sort-icon:hover {
	color: #0095f1;
	cursor: pointer;
}

.iodine .vitals__controls__date-sort-icon:hover:after {
	background-color: #0095f1;
	border-radius: 50%;
	position: absolute;
	height: 25px;
	content: "";
	opacity: 0.1;
	width: 25px;
	left: -2px;
	top: 4px;
}

.iodine .vitals__controls__date-sort-icon {
	color: #081c2f;
	margin-top: 1px;
	z-index: 10;
}

.iodine .vitals__controls__date-sort-icon .material-icon {
	font-size: 20px;
	width: 20px;
}

.iodine .all-lab-results-window {
	padding: 0;
}

.iodine .all-lab-results-window__header {
	font-size: 16px;
	font-weight: bold;
	color: #081c2f;
	margin-left: 18px;
}

.iodine .v-slot-all-lab-results-window__lab-value-holder {
	border-bottom: 2px solid #d8d8d8;
	box-sizing: border-box;
	color: #333333;
}

.iodine .all-lab-results-window__lab-value-label {
	padding-left: 10px;
	font-size: 13px;
}

.iodine .v-slot-all-lab-results-window__lab-date-label {
	background-color: #0095f1;
	color: white;
	border-bottom: 2px solid #ffffff;
	box-sizing: border-box;
	font-size: 13px;
	padding: 0 10px 0 10px;
}

.iodine .all-lab-results-window__panel {
	box-shadow: inset 0 -3px 2px -1px rgba(36, 50, 66, 0.15), inset 0 3px 2px -1px rgba(36, 50, 66, 0.15);
	max-height: 400px;
	padding: 0 10px;
	margin-bottom: 10px;
	overflow-y: auto;
	overflow-x: hidden;
}

.iodine .all-lab-results-window__values-holder {
	margin: 3px 0 3px 0;
}

.iodine .v-popupview-popup-all-lab-results-window__add-to-worksheet {
	margin-left: -15px !important;
}

.iodine .v-popupview-all-lab-results-window__add-to-worksheet {
	margin-left: 15px !important;
}

.iodine .all-lab-results-window__lab-value-label .vitals__grid__cell__value-holder {
	vertical-align: middle;
	display: inline-block;
}

.iodine .all-lab-results-window__lab-value-label .vitals__grid__cell__abnormal-flag {
	margin-left: 5px;
}

.iodine .all-lab-results-window .timeline__right-section__header__close {
	margin: 5px 5px 0 0;
}

.iodine .vitals-grid-cell--selected, .iodine .vitals-cell--selected {
	background: #e6f1ff;
	border: 2px solid #33aaf3;
}

.iodine .v-popupview-popup-worksheet__add-to-worksheet-component__popup-view {
	padding: 0;
}

.iodine .hide-results-window__content__row {
	padding: 0 15px;
	position: relative;
	font-size: 12px;
	min-width: 250px;
	transition: 0.12s ease;
	border-bottom: 1px solid #eeeeee;
	cursor: pointer;
	color: #081c2f;
	opacity: 1;
}

.iodine .hide-results-window__content__row a {
	color: #081c2f;
}

.iodine .hide-results-window__content__row .material-icons, .iodine .hide-results-window__content__row .iodine-icons {
	color: #79848e;
}

.iodine .hide-results-window__content__row:hover {
	background-color: #e6f1ff;
	color: #0095f1;
}

.iodine .hide-results-window__content__row:hover .material-icons, .iodine .hide-results-window__content__row:hover .iodine-icons, .iodine .hide-results-window__content__row:hover a {
	color: #0095f1;
}

.iodine .hide-results-window__content__row:focus {
	color: #0095f1;
}

.iodine .hide-results-window__content__row:active {
	color: #0068be;
}

.iodine .hide-results-window__content__row:active .material-icons, .iodine .hide-results-window__content__row:active .iodine-icons, .iodine .hide-results-window__content__row:active a {
	color: #0068be;
}

.iodine .hide-results-window__content__row:focus .hide-results-window__content__row__label, .iodine .hide-results-window__content__row:active .hide-results-window__content__row__label {
	color: #0068be;
}

.iodine .hide-results-window__content__row--default {
	box-shadow: inset 4px 0 0 0 #d8d8d8;
}

.iodine .hide-results-window__content__row--chemistry {
	box-shadow: inset 4px 0 0 0 #ed6a5a;
}

.iodine .hide-results-window__content__row--hematology {
	box-shadow: inset 4px 0 0 0 #856794;
}

.iodine .hide-results-window__content__row--coagulation {
	box-shadow: inset 4px 0 0 0 #6ca9cf;
}

.iodine .hide-results-window__content__row--hepatic {
	box-shadow: inset 4px 0 0 0 #efcd52;
}

.iodine .hide-results-window__content__row--cardiac-markers {
	box-shadow: inset 4px 0 0 0 #47b774;
}

.iodine .hide-results-window__content__row--spotlight {
	background: #eee;
}

.iodine .hide-results-window__content__row__label {
	margin-left: 10px;
}

.iodine .hide-results-window__content__buttons-between {
	margin-bottom: 10px;
}

.iodine .hide-results-window__content__buttons {
	margin-top: 10px;
	padding: 0 10px;
}

.iodine .hide-results-window__content__button {
	width: calc(100% - 5px);
	padding: 0;
}

.iodine .hide-results-window__content__button--show-all {
	margin-left: 5px;
}

.iodine .query-templates-selector__content {
	padding: 2px;
}

.iodine .query-templates-selector__content--item {
	border-bottom: 1px solid #e5dee8;
	padding: 0 5px;
	cursor: pointer;
}

.iodine .query-templates-selector__content--item:hover {
	background-color: #e6f1ff;
	color: #33aaf3;
}

.iodine .query-templates-selector__panel, .iodine .v-slot-query-templates-selector__panel {
	overflow: auto;
}

.iodine .date-range-window__content__label {
	padding: 0 15px 0 38px;
	position: relative;
	font-size: 12px;
	line-height: 30px;
	transition: 0.12s ease;
	border-bottom: 1px solid #eeeeee;
	cursor: pointer;
}

.iodine .date-range-window__content__label:hover {
	background-color: #e6f1ff;
	color: #0095f1;
}

.iodine .date-range-window__content__label:hover > .iodine-menu__item__icon {
	color: #0095f1;
}

.iodine .date-range-window__content__label:hover:before {
	color: #0095f1;
}

.iodine .date-range-window__content__label:focus {
	color: #0095f1;
}

.iodine .date-range-window__content__label:active {
	color: #0068be;
}

.iodine .date-range-window__content__label:active:before {
	color: #0068be;
}

.iodine .date-range-window__content__label--selected {
	position: relative;
}

.iodine .date-range-window__content__label--selected:before {
	position: absolute;
	font-size: 20px;
	top: 50%;
	margin-top: -15px;
	left: 7px;
	color: #79848e;
	content: "\E5CA";
	font-family: "Material Icons";
}

.iodine .date-range-window__content__datepicker-container {
	padding: 0 15px 0 38px;
	position: relative;
	font-size: 12px;
	line-height: 30px;
	transition: 0.12s ease;
	border-bottom: 1px solid #eeeeee;
	cursor: pointer;
	line-height: 20px;
}

.iodine .date-range-window__content__datepicker-container:hover {
	background-color: #e6f1ff;
	color: #0095f1;
}

.iodine .date-range-window__content__datepicker-container:hover > .iodine-menu__item__icon {
	color: #0095f1;
}

.iodine .date-range-window__content__datepicker-container:hover:before {
	color: #0095f1;
}

.iodine .date-range-window__content__datepicker-container:focus {
	color: #0095f1;
}

.iodine .date-range-window__content__datepicker-container:active {
	color: #0068be;
}

.iodine .date-range-window__content__datepicker-container:active:before {
	color: #0068be;
}

.iodine .date-range-window__content__datepicker-container .v-datefield {
	margin-left: 2px;
}

.iodine .date-range-window__content__datepicker-container .v-datefield [class*='textfield'] {
	border-radius: 2px;
	box-shadow: none;
	border: solid 1px rgba(53, 61, 72, 0.12);
	padding-left: 5px;
}

.iodine .date-range-window__content__datepicker-container .v-datefield .v-datefield-button {
	border: 0;
	border-left: 1px solid #e6e7e9;
	right: 1px;
	left: auto;
	width: 18px;
	line-height: 1.2;
}

.iodine .date-range-window__content__datepicker-container .v-datefield .v-datefield-button:before {
	content: "\E916";
	font-family: "Material Icons";
	font-size: 16px;
}

.iodine .date-range-window__content__datepicker-container:hover {
	background: #e6f1ff;
}

.iodine .date-range-window__content__datepicker-container__label-to {
	margin-left: 2px;
}

.iodine .dashboard-window .v-window-outerheader {
	display: none;
}

.iodine .dashboard-window__navbar {
	background-color: #fff;
	box-shadow: 0 3px 5px 0 rgba(36, 50, 66, 0.2);
	z-index: 2;
	position: fixed;
	left: 0;
}

.iodine .v-absolutelayout-wrapper-dashboard-window__navbar__nav-tabs-container {
	left: 50%;
	transform: translateX(-50%);
}

.iodine .v-slot-dashboard-window__navbar__tab-label {
	width: 200px;
}

.iodine .dashboard-window__navbar__label {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-align: left;
	color: #081c2f;
}

.iodine .dashboard-window__content, .iodine .dashboard-window__panel {
	background-color: #eee;
}

.iodine .dashboard-window__panel {
	padding-left: 64px;
	padding-right: 64px;
	min-width: 984px;
	max-width: 1410px;
}

.iodine .dashboard-window__navbar__tab-label, .iodine .dashboard-window__tab-label--selected {
	font-size: 14px;
	color: #081c2f;
	padding-bottom: 12px;
	opacity: 0.7;
	cursor: pointer;
	letter-spacing: normal;
	font-weight: normal;
}

.iodine .dashboard-window__tab-label--selected, .iodine .dashboard-window__navbar__tab-label:hover {
	padding-bottom: 8px;
	opacity: 1;
	border-bottom: solid 4px #0095f1;
	letter-spacing: normal;
	font-weight: normal;
}

.iodine .dashboard-window__export {
	margin-top: 85px;
	color: #898f94;
	font-size: 10px;
	letter-spacing: 0.2px;
}

.iodine .dashboard-window__export:hover {
	color: #081c2f;
}

.iodine .dashboard-window__stats__my-stats {
	margin-left: 20px;
}

.iodine .dashboard-window__stats__team-stats {
	position: relative;
	cursor: pointer;
}

.iodine .dashboard-window__stats {
	margin-bottom: 56px;
}

.iodine .dashboard-window__stats__my-stats, .iodine .dashboard-window__stats__team-stats {
	border-radius: 100px;
	background: #d8d8d8;
	box-shadow: inset 0 1px 3px 0 rgba(156, 151, 151, 0.5);
	font-size: 14px;
	color: rgba(53, 61, 72, 0.54);
	font-weight: bold;
	text-align: center;
	border: 0;
}

.iodine .dashboard-window__stats--selected {
	border-radius: 100px;
	background: #0095f1;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
	color: #fff;
	position: relative;
	z-index: 1;
}

.iodine .dashboard-window__charts-header-label {
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	color: #081c2f;
	margin-bottom: 11px;
}

.iodine .dashboard-window__counter-layout .v-spacing {
	height: 13px;
}

.iodine .dashboard-window__counter-tile {
	border-radius: 2px;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	padding-left: 13px;
	line-height: 1;
}

.iodine .dashboard-window__counter-tile__title {
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
	display: block;
}

.iodine .dashboard-window__counter-tile__subtitle {
	font-size: 14px;
	font-style: oblique;
	color: #081c2f;
	display: block;
}

.iodine .dashboard-window__counter-tile__counter {
	font-size: 40px;
	font-weight: bold;
	text-align: left;
}

.iodine .dashboard-window__counter-tile__counter-reviews0 {
	color: #0095f1;
}

.iodine .dashboard-window__counter-tile__counter-reviews1 {
	color: #19a652;
}

.iodine .dashboard-window__counter-tile__counter-reviews2 {
	color: #d85d48;
}

.iodine .dashboard-window__counter-tile__counter-reviews3 {
	color: #532d6d;
}

.iodine .dashboard-window__counter-tile__counter-reviews4 {
	color: #eecc52;
}

.iodine .dashboard-window__counter-tile__counter-queries0 {
	color: #0068be;
}

.iodine .dashboard-window__counter-tile__counter-queries14 {
	color: #65c5ff;
}

.iodine .dashboard-window__counter-tile__counter-queries2 {
	color: #856794;
}

.iodine .dashboard-window__counter-tile__counter-discharges0 {
	color: #0095f1;
}

.iodine .dashboard-window__counter-tile__counter-discharges1 {
	color: #eecc52;
}

.iodine .dashboard-window__counter-tile__counter-discharges2 {
	color: #19a652;
}

.iodine .v-slot-dashboard-window__charts__reviews-chart, .iodine .v-slot-dashboard-window__charts__queries-chart, .iodine .v-slot-dashboard-window__discharges-charts__bydate-chart, .iodine .v-slot-dashboard-window__discharges-charts__byscore-chart, .iodine .v-slot-dashboard-window__discharges-charts__bycdidate-chart {
	width: auto !important;
}

.iodine .dashboard-window__charts__reviews-chart, .iodine .dashboard-window__charts__queries-chart, .iodine .dashboard-window__discharges-charts__bydate-chart, .iodine .dashboard-window__discharges-charts__byscore-chart, .iodine .dashboard-window__discharges-charts__bycdidate-chart {
	border-radius: 3px;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	margin-left: 14px;
	margin-bottom: 38px;
	padding: 20px;
}

.iodine .dashboard-window__contents__weekparts {
	margin: 30px 40px;
}

.iodine .v-caption-dashboard-window__combo-box {
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
}

.iodine .dashboard-window__selectors {
	margin-bottom: 33px;
}

.iodine .dashboard-window__selectors .v-spacing {
	width: 20px;
}

.iodine .dashboard-window__selectors__range .v-spacing {
	width: 5px;
}

.iodine .dashboard-window__selectors__date-label {
	font-size: 13px;
	line-height: 2;
	color: #081c2f;
}

.iodine .dashboard-window__combo-box [class*='input'] {
	border-radius: 2px;
	border: 0;
	box-shadow: none;
}

.iodine .dashboard-window__combo-box [class$='button'] {
	border: 0;
}

.iodine .dashboard-window__combo-box [class$='button']:before {
	content: "\E5C5";
	font-family: "Material Icons";
	color: #474a4f;
	font-size: 20px;
}

.iodine .dashboard-window__datefield [class*='textfield'] {
	box-shadow: none;
	border: 0;
	border-radius: 3px;
	padding-left: 25px;
}

.iodine .dashboard-window__datefield [class*='button'] {
	border: 0;
	z-index: 0;
}

.iodine .dashboard-window__datefield .v-datefield-button:before {
	content: "\E916";
	font-family: "Material Icons";
	font-size: 16px;
	color: #b5b5b5;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iodine .timeline {
	padding: 28px 10px 0 10px;
}

.iodine .timeline__hide-info {
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
	position: relative;
	cursor: pointer;
	width: 155px;
	padding: 4px 10px;
	border-radius: 2px;
}

.iodine .timeline__hide-info .v-label {
	position: relative;
	left: 20px;
}

.iodine .timeline__hide-info:before {
	content: "\f070";
	font-family: "FontAwesome";
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #081c2f;
	opacity: 0.54;
}

.iodine .timeline__hide-info:after {
	content: "\E5C5";
	font-family: "Material Icons";
	position: absolute;
	top: 50%;
	right: 10px;
	font-size: 20px;
	transform: translateY(-50%);
	color: #474a4f;
}

.iodine .timeline__hide-info:hover {
	background: #dfdfdf;
}

.iodine .timeline__hide-info--selected-single, .iodine .timeline__hide-info--selected-plural {
	color: #0068be;
	width: 166px;
}

.iodine .timeline__hide-info--selected-single:before, .iodine .timeline__hide-info--selected-plural:before {
	color: #0095f1;
	opacity: 1;
}

.iodine .timeline__hide-info--selected-plural {
	width: 175px;
}

.iodine .timeline__search {
	position: relative;
	margin-top: 13px;
}

.iodine .timeline__search__input {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 2px;
	background: #fff;
	position: relative;
}

.iodine .timeline__historical-button {
	line-height: 30px;
	width: 226px;
	padding: 0;
}

.iodine .timeline__historical-button .v-button-wrap {
	display: inline-flex;
	align-items: center;
}

.iodine .timeline__left-panel {
	background: #eee;
}

.iodine .v-panel-caption-timeline__left-panel {
	background: #fff;
	border: 0;
}

.iodine .timeline__tiles-container {
	background-color: transparent;
	background-image: -webkit-linear-gradient(-450deg, transparent, rgba(53, 61, 72, 0.25), transparent);
	background-image: linear-gradient(180deg,transparent, rgba(53, 61, 72, 0.25), transparent);
	background-position: 50%;
	background-repeat: repeat-y;
	background-size: 3px 1px;
	margin: 10px 0 30px 0;
}

.iodine .timeline__day .v-spacing {
	width: 18px;
}

.iodine .timeline__day--missing__container {
	border-radius: 3px;
	border: solid 1px #0095f1;
	margin-top: 10px;
	box-shadow: 0 0 0 5px #eee;
}

.iodine .timeline__day__labels {
	background: #eee;
	margin-top: 20px;
	margin-bottom: 11px;
}

.iodine .timeline__day--missing__labels__days-amount {
	font-size: 13px;
	font-style: oblique;
	color: #0068be;
	background: #eee;
}

.iodine .timeline__day--missing__labels--top {
	background: #eee;
	padding-top: 10px;
	margin-bottom: 20px;
}

.iodine .timeline__day--missing__labels--bottom {
	background: #eee;
	margin-top: 20px;
	padding-bottom: 10px;
}

.iodine .timeline__day__labels__days-offset {
	font-size: 13px;
	color: #081c2f;
	font-weight: bold;
}

.iodine .timeline__day__labels__day {
	font-size: 13px;
	color: #081c2f;
}

.iodine .timeline__tile-container {
	position: relative;
}

.iodine .timeline__tile-container .v-spacing {
	height: 6px;
}

.iodine .timeline__tile {
	border: solid 1px transparent;
	color: #081c2f;
}

.iodine .timeline__tile-selected, .iodine .timeline__tile-selected.timeline__tile-has-search-result {
	background: #0095f1;
	color: #fff;
}

.iodine .timeline__tile-selected .timeline__tile__icon, .iodine .timeline__tile-selected.timeline__tile-has-search-result .timeline__tile__icon {
	color: #fff;
}

.iodine .timeline__query-tile-selected, .iodine .timeline__query-tile-selected.timeline__tile-has-search-result {
	background: #532d6d;
	color: #fff;
}

.iodine .timeline__query-tile-selected .timeline__tile__icon, .iodine .timeline__query-tile-selected.timeline__tile-has-search-result .timeline__tile__icon {
	color: #fff;
}

.iodine .timeline__tile__query-icon .timeline__tile__icon {
	color: #532d6d;
}

.iodine .timeline__tile__icon-selected {
	color: #fff;
}

.iodine .timeline__tile__query-icon-selected {
	color: #ffffff;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}

.iodine .timeline__tile-has-search-result {
	border: solid 1px #19a652;
	border-radius: 2px;
}

.iodine .timeline-search-result {
	background-color: rgba(0, 149, 241, 0.25);
}

.iodine .timeline__tile__primary-label {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: bold;
	margin-left: 1px;
	padding-left: 10px;
}

.iodine .timeline__tile__secondary-label {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	margin-left: 1px;
	white-space: nowrap;
	padding-left: 10px;
}

.iodine .timeline__tile__icon {
	color: #0095f1;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}

.iodine .timeline__tile-has-search-result .timeline__tile__icon {
	background-color: #19a652;
	color: white;
}

.iodine .iodine-icons-custom_timeline_labresults, .iodine .iodine-icons-custom_timeline_medication, .iodine .iodine-icons-custom_timeline_radiology {
	font-size: 20px;
}

.iodine .iodine-icons-custom_timeline_query {
	color: #532d6d;
}

.iodine .timeline__right-panel {
	padding-top: 10px;
}

.iodine .timeline__right-panel  > .v-expand > .v-slot:first-child {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #fff;
}

.iodine .timeline__right-section--medications {
	position: relative;
}

.iodine .timeline__right-section__header {
	padding-left: 30px;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	z-index: 5;
	position: relative;
	background: #ffffff;
	border-radius: 3px 0;
}

.iodine .timeline__right-section__header__primary-label {
	font-size: 16px;
	font-weight: bold;
	color: #081c2f;
}

.iodine .timeline__right-section__header__secondary-label {
	font-size: 14px;
	line-height: 1.46;
	color: #081c2f;
}

.iodine .timeline__right-section__header__close {
	color: #000;
	opacity: 0.54;
	margin: 7px 15px 0 0;
}

.iodine .timeline__right-section--medications__content-header {
	background: #0095f1;
	padding: 0 7px 8px 40px;
}

.iodine .timeline__right-section--medications__content-header .v-label {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #ffffff;
}

.iodine .timeline__right-section--medications__content-header .v-spacing {
	width: 6px;
}

.iodine .timeline__right-section--medications__section__header {
	padding-left: 40px;
	padding-right: 7px;
	border-bottom: 2px solid #eee;
	cursor: pointer;
	position: relative;
}

.iodine .timeline__right-section--medications__section__header .v-spacing {
	width: 6px;
}

.iodine .timeline__right-section--medications__section__header:before {
	content: "\E5C5";
	font-family: "Material Icons";
	transform: translateY(-50%) rotate(-90deg);
	position: absolute;
	left: 13px;
	top: 50%;
	font-size: 24px;
	color: #55565a;
	transition: transform 0.1s ease-in-out;
}

.iodine .timeline__right-section--medications__section__header:hover .worksheet__add-button-medication {
	visibility: visible;
}

.iodine .timeline__right-section--medications__section--route-header {
	white-space: normal;
	text-align: center;
}

.iodine .timeline__right-section--medications__section__header--opened {
	border-bottom: 0;
	padding-bottom: 2px;
}

.iodine .timeline__right-section--medications__section__header--opened:before {
	transform: translateY(-50%) rotate(0);
}

.iodine .timeline__right-section--medications__section__header__name {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: bold;
	color: #081c2f;
}

.iodine .timeline__right-section--medications__section__header__value {
	text-align: center;
	font-size: 14px;
	line-height: 1.46;
	color: #081c2f;
	border-radius: 2px;
	background-color: #e6f1ff;
}

.iodine .timeline__right-section--medications__section__notes-label {
	white-space: normal;
}

.iodine .v-slot-timeline__right-section--medications__section__content--open {
	overflow: hidden;
}

.iodine .timeline__right-section--medications__section__content--open {
	animation-name: slidedown;
	animation-duration: 0.2s;
	animation-fill-mode: forwards;
}

.iodine .timeline__right-section--medications__section__content {
	padding: 40px 20px 10px;
	background-color: #fafafa;
	box-shadow: inset 0 1px 2px 0 rgba(36, 50, 66, 0.15);
}

.iodine .v-window.medication-all-results-window, .iodine .v-window.medication-order-window {
	border-radius: 3px;
	padding: 0;
	border: none;
}

.iodine .medication-order-window {
	font-size: 14px;
}

.iodine .medication-order-window .medication-order-window__header {
	font-size: 16px;
	line-height: 60px;
	font-weight: bold;
}

.iodine .medication-order-window .medication-order-window__drug-name-label {
	font-weight: bold;
}

.iodine .medication-order-window .medication-order-window__padding-left {
	padding-left: 20px;
}

.iodine .medication-order-window .v-slot-medication-order-window__instructions-label {
	padding: 5px 20px 20px 20px;
}

.iodine .medication-order-window .medication-order-window__instructions-label {
	overflow: auto;
	white-space: normal;
}

.iodine .medication-order-window .iodine-button--fill--primary {
	padding: 0;
}

.iodine .medication-all-results-window {
	font-size: 14px;
}

.iodine .medication-all-results-window .medication-all-results-window__row:hover .worksheet__add-button-medication {
	visibility: visible;
}

.iodine .medication-all-results-window .worksheet__add-button-medication {
	margin-right: 7px;
}

.iodine .medication-all-results-window .worksheet__add-to-worksheet-component:after {
	left: 95%;
}

.iodine .medication-all-results-window .medication-all-results-window__row-holder {
	overflow-y: auto;
}

.iodine .medication-all-results-window .medication-all-results-window__header {
	font-size: 16px;
	line-height: 60px;
	font-weight: bold;
}

.iodine .medication-all-results-window .medication-all-results-window__sub-header {
	background-color: #0095f1;
	color: #ffffff;
	line-height: 40px;
}

.iodine .medication-all-results-window .medication-all-results-window__sub-header .v-label {
	text-align: right;
}

.iodine .medication-all-results-window .iodine-button--fill--primary {
	margin-top: 10px;
	padding: 0;
}

.iodine .medication-all-results-window .medication-all-results-window__row {
	cursor: pointer;
	position: relative;
}

.iodine .medication-all-results-window .medication-all-results-window__row:before {
	content: "\E5C5";
	font-family: "Material Icons";
	transform: translateY(-50%) rotate(-90deg);
	position: absolute;
	left: 13px;
	top: 50%;
	font-size: 24px;
	color: #55565a;
	transition: transform 0.1s ease-in-out;
}

.iodine .medication-all-results-window .medication-all-results-window__row.opened:before {
	transform: translateY(-50%) rotate(0);
}

.iodine .medication-all-results-window .medication-all-results-window__row-inner-holder {
	border-bottom: solid 1px rgba(53, 61, 72, 0.12);
}

.iodine .medication-all-results-window .medication-all-results-window__value-label {
	text-align: center;
	margin-left: 10px;
	font-size: 14px;
	border-radius: 2px;
	background-color: #e6f1ff;
}

.iodine .medication-all-results-window .medication-all-results-window__notes-holder {
	background: #eeeeee;
	padding: 20px;
}

.iodine .medication-all-results-window .medication-all-results-window__notes-label {
	font-weight: bold;
}

.iodine .timeline__right-section--medications__section__no-administrations-label {
	margin: 40px;
	font-size: 14px;
}

.iodine .timeline__right-section--medications__section__content__section {
	font-size: 14px;
	letter-spacing: 0.5px;
	color: #081c2f;
	margin-bottom: 5px;
}

.iodine .timeline__right-section--medications__section__content__section .v-label {
	line-height: 1;
}

.iodine .timeline__right-section--medications__section__content__section--bottom {
	margin-top: 5px;
}

.iodine .timeline__right-section--medications__section__content__label {
	margin-right: 5px;
}

.iodine .timeline__right-section--medications__section__content__bold {
	font-weight: bold;
}

.iodine .timeline__right-section--medications__section__clickable-label {
	cursor: pointer;
}

.iodine .timeline__right-section--medications__section__clickable-label:hover {
	color: #0095f1;
}

.iodine .timeline__right-section--medications__section__separator {
	border-bottom: solid 1px rgba(53, 61, 72, 0.12);
}

.iodine .timeline-panel .v-panel-caption {
	border: none;
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	height: 41px;
}

.iodine .timeline-panel .timeline-indicator {
	border-bottom: solid 2px #0095f1;
}

.iodine .timeline-panel .timeline-indicator.timeline-indicator--empty:before, .iodine .timeline-panel .timeline-indicator:after {
	background-color: #0095f1;
}

.iodine .timeline-panel .timeline-indicator__marker {
	color: #0095f1;
	font-family: "Iodine Icons";
}

.iodine .timeline__versions-menu:focus {
	outline: none;
}

.iodine .timeline__versions-menu:not(.timeline__versions-menu-submenu) {
	margin-top: -6px;
	margin-right: 4px;
	border: 0;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	border-radius: 0 0 3px 3px;
	cursor: pointer;
}

.iodine .timeline__versions-menu:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem {
	padding: 0;
	text-align: center;
	line-height: 1;
	display: block;
	height: 100%;
	background: #fff;
	border-radius: 0 0 3px 3px;
}

.iodine .timeline__versions-menu:not(.timeline__versions-menu-submenu) .timeline__versions-menu-submenu-indicator {
	display: none;
}

.iodine .timeline__versions-menu:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem-caption {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
	color: #081c2f;
	opacity: 0.54;
}

.iodine .timeline__versions-menu:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem-caption:after {
	display: none;
}

.iodine .timeline__versions-menu:not(.timeline__versions-menu-submenu):hover .timeline__versions-menu-menuitem {
	background-color: #0095f1;
	border-radius: 0 0 3px 3px;
}

.iodine .timeline__versions-menu:not(.timeline__versions-menu-submenu):hover .timeline__versions-menu-menuitem-caption {
	color: #fff;
	opacity: 1;
}

.iodine .timeline__versions-menu--active:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem {
	background-color: #0095f1;
}

.iodine .timeline__versions-menu--active:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem-caption {
	color: #fff;
	opacity: 1;
}

.iodine .timeline__versions-menu-popup {
	margin-top: -20px !important;
	margin-left: -90px !important;
}

.iodine .timeline__versions-menu-popup .timeline__versions-menu-submenu {
	background: #fff;
}

.iodine .timeline__versions-menu-popup .timeline__versions-menu-submenu .timeline__versions-menu-menuitem-caption {
	opacity: 0.54;
	font-size: 13px;
	color: #000000;
	cursor: pointer;
}

.iodine .timeline__versions-menu-popup .timeline__versions-menu-submenu .timeline__versions-menu-menuitem {
	display: flex;
	border-radius: 0 0 3px 3px;
	width: 171px;
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	height: 20px;
	align-items: center;
	justify-content: center;
}

.iodine .timeline__versions-menu-popup .timeline__versions-menu-submenu .timeline__versions-menu-menuitem-selected {
	background: #e6f1ff;
}

.iodine .documents-tab__tile--active:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem, .iodine .timeline__versions-menu-timeline__tile-selected:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem {
	background: #0095f1;
}

.iodine .documents-tab__tile--active:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem-caption, .iodine .timeline__versions-menu-timeline__tile-selected:not(.timeline__versions-menu-submenu) .timeline__versions-menu-menuitem-caption {
	color: #fff;
	opacity: 1;
}

.iodine .timeline__nontile {
	margin-bottom: 5px;
	margin-top: 5px;
	height: 60px;
}

.iodine .timeline__nontile.timeline__nontile-right .timeline__nontile-top {
	margin-left: 5px;
}

.iodine .timeline__nontile.timeline__nontile-right .timeline__nontile-bottom {
	margin-left: 5px;
	white-space: pre-line;
}

.iodine .timeline__nontile .timeline__nontile-top {
	height: 13px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	color: #0068be;
	padding-left: 6px;
	margin-top: 4px;
	border-bottom: 2px solid;
	width: 100%;
	line-height: 1px;
	position: relative;
	top: 5px;
}

.iodine .timeline__nontile .timeline__nontile-bottom {
	width: calc(100% - 7px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	text-align: left;
	color: #0068be;
	padding-left: 6px;
	margin-top: 5px;
}

.iodine .spotlight-result-container-horizontal {
	margin-top: -12px;
}

.iodine .timeline__order-icon {
	padding-top: 3px;
	font-size: 16px;
	color: #081c2f;
	z-index: 10;
}

.iodine .timeline__order-icon:hover:after {
	content: "";
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.12);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
	opacity: 0.5;
}

.iodine .timeline__order-icon:hover .v-icon {
	color: #0095f1;
}

.iodine .microbiology-layout__sub-header-layout {
	background-color: #0095f1;
	letter-spacing: 0.4px;
	padding-left: 30px;
	font-weight: bold;
	font-size: 14px;
	color: #ffffff;
}

.iodine .microbiology-layout__header-label {
	color: #081c2f;
	font-weight: bold;
	font-size: 16px;
}

.iodine .microbiology-layout__date-label {
	margin-top: -4px;
	font-size: 14px;
	color: #474a4f;
}

.iodine .microbiology-layout__date-label .material-icon {
	opacity: 0.54;
	position: relative;
	margin-right: 5px;
	font-size: 16px;
	top: 3px;
}

.iodine .microbiology-layout__header-layout {
	padding: 15px 0 6px 30px;
}

.iodine .microbiology-layout__report-field-name, .iodine .microbiology-layout__report-field-value {
	color: #081c2f;
	white-space: normal;
	font-size: 14px;
}

.iodine .microbiology-layout__report-field-name {
	font-weight: bold;
}

.iodine .microbiology-layout__info-layout {
	padding: 10px 10px 20px 30px;
}

.iodine .microbiology-layout__drug-table__drug-header {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-right: solid 1px rgba(53, 61, 72, 0.12);
	padding: 6px 0 0 30px;
}

.iodine .microbiology-layout__drug-table__drug-header--odd {
	background-color: #e6f1ff;
	color: #081c2f;
	font-size: 14px;
}

.iodine .microbiology-layout__drug-table__micro-header__holder, .iodine .microbiology-layout__drug-table__micro-header--left {
	border-bottom: solid 1px rgba(53, 61, 72, 0.12);
	border-right: solid 1px rgba(53, 61, 72, 0.12);
}

.iodine .microbiology-layout__drug-table__micro-header--left, .iodine .microbiology-layout__drug-table__micro-header {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #081c2f;
	padding: 11px 0 0 30px;
	line-height: normal;
	font-weight: bold;
	font-size: 14px;
}

.iodine .microbiology-layout__drug-table__micro-header {
	padding-right: 30px;
	text-align: center;
}

.iodine .microbiology-layout__drug-table__micro-header__sub-header {
	font-size: 10px;
}

.iodine .microbiology-layout__drug-table__cell, .iodine .microbiology-layout__drug-table__cell--odd {
	font-size: 14px;
	border-right: solid 1px rgba(53, 61, 72, 0.12);
}

.iodine .microbiology-layout__drug-table__cell--odd {
	background-color: #e6f1ff;
}

.iodine .microbiology-layout__drug-table__drug-header--last {
	border-bottom: solid 1px rgba(53, 61, 72, 0.12);
}

.iodine .microbiology-layout__table-panel {
	margin-bottom: 10px;
}

.iodine .microbiology-layout__header {
	box-shadow: 0 1px 2px 0 rgba(36, 50, 66, 0.15);
	background-color: white;
	position: relative;
}

.iodine .microbiology-layout__header .worksheet__add-button-medication {
	visibility: visible;
	margin-bottom: 5px;
}

.iodine #microbiology-window {
	position: relative;
}

.iodine .timeline__right-panel .vitals__grid .v-treegrid {
	background: #ffffff;
}

.iodine .timeline__document-tile__read {
	font-style: normal;
	font-weight: normal;
	color: #757575;
}

.iodine .timeline__tile--retro-query.timeline__tile-selected, .iodine .timeline__right-panel__retro-query .query-non-editable-layout__header-layout {
	background-color: #532d6d;
}

.iodine .timeline__tile--retro-query.timeline__tile-selected .iodine-icons {
	color: #ffffff;
}

.iodine .timeline__tile__document-menu--search-found, .iodine .timeline__versions-menu-menuitem-timeline__tile__document-menu--search-found {
	border: 2px solid #0095f1;
}

.iodine .timeline__final-code-table {
	margin: 0;
}

.iodine .timeline__final-code-table .review-history__codes-table {
	max-height: none;
	box-shadow: none;
}

.iodine .v-slot-review-history__codes-table {
	overflow: auto;
}

.iodine .final-codes-panel .review-history__codes-table__sub-header {
	margin: 15px 15px 5px 30px;
	font-weight: normal;
	font-size: 14px;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
}

.iodine .final-codes-panel .review-history__codes-table__spot-holder {
	margin-left: 17px;
}

.iodine .review-history__codes-table__code-row {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iodine .review-history__codes-table__code-row--poa {
	text-align: center;
	margin-right: 15px;
}

.iodine .timeline__tile__final-codes .timeline__tile__primary-label {
	overflow: visible;
	white-space: normal;
}

.iodine .historical-diagnoses-window .v-window-closebox {
	font-size: 30px;
	color: #081c2f;
}

.iodine .historical-diagnoses-window__header {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #081c2f;
	border-bottom: 1px solid #e0e0e0;
}

.iodine .historical-diagnoses-window__content {
	padding: 10px;
}

.iodine .historical-diagnoses-window__content__grid {
	background: #fff;
	font-family: Helvetica;
}

.iodine .historical-diagnoses-window__content__grid .v-grid-tablewrapper {
	border: 0;
}

.iodine .historical-diagnoses-window__content__grid .v-grid-header th {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.iodine .historical-diagnoses-window__content__grid .v-grid-header .v-grid-cell {
	background: #0095f1;
	font-size: 13px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
}

.iodine .historical-diagnoses-window__content__grid .v-grid-row td {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.iodine .historical-diagnoses-window__content__grid .v-grid-cell {
	font-size: 13px;
	color: #081c2f;
}

.iodine .historical-diagnoses-window__content__grid .v-grid-row-stripe > td {
	background: #e6f1ff;
}

.iodine .historical-diagnoses-window__flag {
	width: 40px;
	height: 20px;
	line-height: 20px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
}

.iodine .historical-diagnoses-window__flag--cc {
	background-color: #cd8fc1;
}

.iodine .historical-diagnoses-window__flag--mcc {
	background-color: #856794;
}

.iodine .historical-diagnoses-window__flag--hcc {
	background-color: #50bfcb;
}

.iodine .v-slot-spotlight-result {
	line-height: 8px;
}

.iodine .timeline__tile .spotlight-result-container {
	margin-right: -10px;
}

.iodine .spotlight-result {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-top: 2px;
	margin-left: 1px;
	margin-right: 3px;
}

.iodine .spotlight-result.spotlight-result-overflow {
	margin-left: 2px;
}

.iodine .red {
	background-color: #d85d48;
}

.iodine .yellow {
	background-color: #eecc52;
}

.iodine .blue {
	background-color: #0095f1;
}

.iodine .purple {
	background-color: #532d6d;
}

.iodine .green {
	background-color: #19a652;
}

.iodine .darkred {
	background-color: #ac4a39;
}

.iodine .darkyellow {
	background-color: #bea341;
}

.iodine .darkblue {
	background-color: #0068be;
}

.iodine .darkpurple {
	background-color: #2f1a45;
}

.iodine .darkgreen {
	background-color: #148441;
}

.iodine .spotlight__document-mention--red {
	border: dashed 2px #d85d48;
	background-color: rgba(216, 93, 72, 0.15);
}

.iodine .spotlight__document-mention--yellow {
	border: dashed 2px #eecc52;
	background-color: rgba(238, 204, 82, 0.15);
}

.iodine .spotlight__document-mention--blue {
	border: dashed 2px #0095f1;
	background-color: rgba(0, 149, 241, 0.15);
}

.iodine .spotlight__document-mention--purple {
	border: dashed 2px #532d6d;
	background-color: rgba(83, 45, 109, 0.15);
}

.iodine .spotlight__document-mention--green {
	border: dashed 2px #19a652;
	background-color: rgba(25, 166, 82, 0.15);
}

.iodine .spotlight__document-mention--darkred {
	border: dashed 2px #ac4a39;
	background-color: rgba(172, 74, 57, 0.15);
}

.iodine .spotlight__document-mention--darkyellow {
	border: dashed 2px #bea341;
	background-color: rgba(190, 163, 65, 0.15);
}

.iodine .spotlight__document-mention--darkblue {
	border: dashed 2px #0068be;
	background-color: rgba(0, 104, 190, 0.15);
}

.iodine .spotlight__document-mention--darkpurple {
	border: dashed 2px #2f1a45;
	background-color: rgba(47, 26, 69, 0.15);
}

.iodine .spotlight__document-mention--darkgreen {
	border: dashed 2px #50c37e;
}

.iodine .spotlight__document-definite-mention--red {
	background-color: #ff6b52;
}

.iodine .spotlight__document-definite-mention--yellow {
	background-color: #ffe27b;
}

.iodine .spotlight__document-definite-mention--blue {
	background-color: #79ccff;
}

.iodine .spotlight__document-definite-mention--purple {
	background-color: #c97aff;
}

.iodine .spotlight__document-definite-mention--green {
	background-color: #84ffb6;
}

.iodine .spotlight__document-definite-mention--darkred {
	background-color: #f98773;
}

.iodine .spotlight__document-definite-mention--darkyellow {
	background-color: #f3de90;
}

.iodine .spotlight__document-definite-mention--darkblue {
	background-color: #3ba6ff;
}

.iodine .spotlight__document-definite-mention--darkpurple {
	background-color: #c2b3d2;
}

.iodine .spotlight__document-definite-mention--darkgreen {
	background-color: #50c37e;
}

.iodine .spotlight-labs-category-container {
	margin-left: 5px;
	margin-top: 5px;
}

.iodine .multiselect-popup__caption {
	font-size: 13px;
	line-height: 1.46;
	color: #081c2f;
}

.iodine .multiselect-popup__placeholder {
	white-space: nowrap;
	vertical-align: text-top;
}

.iodine .multiselect-popup__field {
	background-color: white;
	padding: 3px 6px 3px 6px;
	cursor: pointer;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 2px;
	white-space: nowrap;
}

.iodine .multiselect-popup-content {
	padding: 5px;
}

.iodine .loading-indicator {
	opacity: 1;
	margin: auto;
	overflow: hidden;
	position: relative;
	text-indent: -9999px;
	display: inline-block;
	width: 7px;
	height: 7px;
	background: transparent;
	border-radius: 100%;
	box-shadow: #532d6d -14px -14px 0 7px, #0095f1 14px -14px 0 7px, #eecc52 14px 14px 0 7px, #d85d48 -14px 14px 0 7px;
	animation: dots-loader 5s infinite ease-in-out;
	transform-origin: 50% 50%;
}

.iodine .query-non-editable-layout__header-layout {
	background: #0095f1;
}

.iodine .query-non-editable-layout__header-query-name, .iodine .query-non-editable-layout__header-query-sub-header {
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
}

.iodine .query-non-editable-layout__header-query-sub-header {
	font-size: 14px;
}

.iodine .query-non-editable-window .v-window-closebox {
	background: none;
}

.iodine .query-non-editable-window .v-window-closebox::before {
	content: none;
}

.iodine .query-non-editable-window {
	padding: 30px 0;
	border: none;
	background: transparent;
}

.iodine .query-non-editable-layout__query-status-icon {
	background: #ffffff;
	border-radius: 50%;
	padding: 8px 0 0 6px;
	margin: 0 10px;
}

.iodine .query-non-editable-layout__query-status-icon .iodine-icons {
	font-size: 18px;
}

.iodine .query-non-editable-layout__query-status-icon--sent {
	padding: 9px 0 0 8px;
}

.iodine .query-non-editable-layout__query-status-icon--wide .iodine-icons {
	margin-left: -5px;
}

.iodine .query-non-editable-layout__header-close-icon {
	font-size: 20px;
	color: #ffffff;
	cursor: pointer;
}

.iodine .query-non-editable-layout {
	background: #ffffff;
	border-radius: 3px;
}

.iodine .query-non-editable-layout__info-holder {
	background: #fafafa;
	padding-bottom: 7px;
}

.iodine .query-non-editable-layout__info-holder-header {
	margin-left: 10px;
	font-size: 13px;
	color: #081c2f;
}

.iodine .query-non-editable-layout__info-holder-value {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-left: 10px;
	border-radius: 2px;
	border: solid 1px #e6f1ff;
	font-size: 13px;
	font-weight: bold;
	color: #081c2f;
	padding: 5px 5px 5px 12px;
}

.iodine .query-non-editable-layout__query-details-label {
	font-size: 13px;
	font-weight: bold;
	margin: 10px 0 0 15px;
}

.iodine .query-non-editable-layout__query-details-textarea, .iodine .query-non-editable-layout__query-details-textarea .v-richtextarea {
	padding: 10px;
}

.iodine .radiobutton-icon {
	color: #0095f1;
	font-size: 24px;
}

.iodine .radiobutton-row {
	padding: 11.5px 8px;
}

.iodine .priority-dot-holder {
	display: flex;
}

.iodine .priority-dot {
	height: 5px;
	width: 5px;
	border: 1px solid #0095f1;
	border-radius: 50%;
	margin-right: 3px;
}

.iodine .priority-dot--filled {
	background: #0095f1;
}

.iodine .summaries-tab {
	padding: 10px;
	background-color: #eee;
}

.iodine .summaries-tab #single-spa-application\:\@iodine\/visit-summary {
	display: block;
}

.iodine .summaries-tab-hidden {
	display: none;
}

.iodine .iodine-grouper-embedded-wrapper {
	order: 4;
	min-width: 612px;
	max-width: 612px;
	padding-top: 20px;
	min-height: 0;
}

.iodine .iodine-grouper-embedded-wrapper #single-spa-application\:\@iodine\/iodine-grouper, .iodine .iodine-grouper-embedded-wrapper .single-spa-container, .iodine .iodine-grouper-embedded-wrapper .io-mfe-ig {
	height: 100%;
	min-height: 0;
}

.iodine .iodine-grouper-embedded-wrapper #single-spa-application\:\@iodine\/iodine-grouper {
	border-radius: 4px 4px 0 0;
	box-shadow: 0 1px 2px 0 rgba(20, 22, 23, 0.3), 0 1px 3px 1px rgba(20, 22, 23, 0.15);
	overflow: hidden;
}

.iodine .iodine-grouper-embedded-wrapper.iodine-grouper-embedded-resources {
	min-width: 874px;
	max-width: 874px;
}

.iodine .iodine-grouper-embedded-wrapper-hidden {
	display: none;
}

.iodine .v-ui {
	min-width: 1200px;
}

.iodine .v-ui.pop-out {
	min-width: 400px;
}

.iodine .view-container {
	overflow-x: auto;
	overflow-y: hidden;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: stretch;
	background: #eee;
}

.iodine .view-container--opportunity {
	overflow-x: auto;
}

.iodine .patient-tab {
	flex: 1 1 auto;
	overflow: hidden;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: stretch;
}

.iodine .column-container {
	flex: 1 1 auto;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: stretch;
	overflow: hidden;
}

.iodine .column-container .col-1 {
	flex: 1 3 auto;
	width: 100%;
	max-width: 500px;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	margin-left: auto;
}

.iodine .column-container .col-1:only-child {
	margin-right: auto;
}

.iodine .column-container .col-1  > .v-widget {
	min-width: 387px;
	padding-left: 10px;
	padding-right: 10px;
}

.iodine .column-container .col-1  > .queries-tab__content {
	min-width: 590px;
}

.iodine .column-container .col-1.col-1--wide:only-child {
	flex: 1 1 auto;
	min-width: 387px;
	max-width: 1410px;
	width: 100%;
}

.iodine .column-container .col-2 {
	flex: 0 1 900px;
	min-width: 587px;
	z-index: 1;
	margin-right: auto;
}

.iodine .vitals__container.column-container {
	flex: 1 2 auto;
}

.iodine .col-2 .document-window__body {
	min-width: 587px;
	max-width: 900px;
}

.iodine .worksheet-wrapper {
	flex-grow: 0;
	flex-shrink: 1;
	width: 72%;
	max-width: 410px;
	min-width: 410px;
	padding-left: 10px;
	order: 3;
	overflow: hidden;
	transition-property: max-width, padding-left, margin-left;
	transition-duration: 0.3s;
}

.iodine .worksheet-wrapper.wide {
	max-width: 610px;
}

.iodine .worksheet-wrapper.wide > .v-widget {
	max-width: 600px;
}

.iodine .worksheet-wrapper:not(.layout--show) {
	min-width: 0;
	max-width: 0;
	padding-left: 0;
	margin-left: 0;
}

.iodine .view-container--documents .worksheet-wrapper {
	width: 100% !important;
}

.iodine .view-container--grouper .worksheet-wrapper {
	width: 79%;
}

.iodine .query-wrapper {
	order: 2;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 640px;
	z-index: 5;
	transition: flex-basis 0.3s;
	overflow: hidden;
	position: relative;
}

.iodine .query-wrapper  > .v-widget {
	min-width: 640px;
}

.iodine .query-wrapper:not(.layout--show) {
	flex-basis: 0;
}

.iodine .v-ie.v-ie11 .query-wrapper, .iodine .v-ie.v-ie11 .worksheet-wrapper {
	flex-basis: auto;
}

.iodine .query-wrapper ~ .v-layout {
	overflow: hidden;
	z-index: 0;
}

.v-overlay-container .v-tooltip {
	display: block;
}

#single-spa-application\:\@iodine\/visit-summary {
	display: none;
}

body > #single-spa-application\:\@iodine\/iodine-grouper {
	display: none;
}