@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 300;
	src: local("Open Sans Light"), local("OpenSans-Light"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-300.woff2) format("woff2"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-300.woff) format("woff");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	src: local("Open Sans Regular"), local("OpenSans-Regular"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-regular.woff2) format("woff2"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-regular.woff) format("woff");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 600;
	src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-600.woff2) format("woff2"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-600.woff) format("woff");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 700;
	src: local("Open Sans Bold"), local("OpenSans-Bold"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-700.woff2) format("woff2"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-700.woff) format("woff");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 800;
	src: local("Open Sans ExtraBold"), local("OpenSans-ExtraBold"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-800.woff2) format("woff2"), url(../valoneutral/fonts/open-sans/open-sans-v15-cyrillic-ext_latin-ext_vietnamese_latin_greek-ext_cyrillic_greek-800.woff) format("woff");
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 *
 * @group table
 */

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

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

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

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

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

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

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

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

/**
 *
 * @group link
 */

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

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

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

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

/**
 *
 * @group notification
 */

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

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

/**
 *
 * @group panel
 */

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

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

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

/**
 *
 * @group progressbar
 */

/**
 *
 * @group richtextarea
 */

/**
 *
 * @group slider
 */

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

/**
 *
 * @group table
 */

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

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

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

/**
 *
 * @group tree
 */

/**
 *
 * @group table
 */

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

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

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

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

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

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

/**
 *
 * @group table
 */

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

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

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

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

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

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

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

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

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

/**
 * @group window
 */

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

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

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

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

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

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

/**
 * @group valo-menu
 */

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

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

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

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

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

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

.v-ui {
	position: relative;
}

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

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

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

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

.v-clip {
	overflow: hidden;
}

.v-scrollable {
	overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.v-gridlayout {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#toast-container.toast-top-right, #toast-container.toast-top-left {
	top: 42px;
}

#toast-container .toast {
	background-color: #ffffff;
	color: rgba(0, 0, 0, 0.87);
	border: solid 4px #b1b3b4;
	border-left-width: 11px;
	padding-left: 4.5em;
	min-height: 4.5em;
	border-radius: 0px;
	width: 400px;
	overflow: visible;
}

#toast-container .toast:before {
	content: "";
	font-family: "Material Icons";
	background-color: #b1b3b4;
	color: #ffffff;
	height: 104%;
	width: 1.8em;
	padding: 0 5px;
	position: absolute;
	left: -10px;
	top: -2px;
	box-sizing: border-box;
	text-align: center;
	line-height: 1.5em;
	font-size: 2.5em;
}

#toast-container .toast.toast-info {
	border-color: #0063bb;
}

#toast-container .toast.toast-info:before {
	background-color: #0063bb;
	content: "\E88E";
}

#toast-container .toast.toast-success {
	border-color: #86ba17;
}

#toast-container .toast.toast-success:before {
	background-color: #86ba17;
	content: "\E86C";
}

#toast-container .toast.toast-warning {
	border-color: #fabb00;
}

#toast-container .toast.toast-warning:before {
	background-color: #fabb00;
	content: "\E002";
}

#toast-container .toast.toast-error {
	border-color: #e32119;
}

#toast-container .toast.toast-error:before {
	background-color: #e32119;
	content: "\E000";
}

#toast-container .toast .toast-close-button {
	color: rgba(0, 0, 0, 0.87);
	position: absolute;
	top: 0;
	right: 0;
	height: 1.5em;
	width: 1.5em;
	line-height: 1.5em;
	text-align: center;
	z-index: 2;
}

#toast-container .toast .toast-title {
	position: relative;
	top: -10px;
	font-size: 1.1em;
	padding-right: 20px;
	z-index: 1;
	font-family: "Open Sans", sans-serif;
}

#toast-container .toast .toast-message {
	line-height: 1.2em;
	font-family: "Open Sans", sans-serif;
}

#toast-container .toast .toast-link {
	position: relative;
	padding-right: 2.24em;
	margin-right: 1em;
	cursor: pointer;
}

#toast-container .toast .toast-link:hover {
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 0px;
}

#toast-container .toast .toast-link:after {
	content: "\e89E";
	font-family: "Material Icons";
	font-size: 1.6em;
	width: 1em;
	height: 1em;
	line-height: 1em;
	display: block;
	position: absolute;
	right: 0.2em;
	top: 50%;
	margin: -0.5em 0;
}

@-webkit-keyframes animate-in-fade-translate {
		from {
		opacity: 0;
		transform: translateY(-20px);
	}
		to {
		opacity: 1;
	}
	}

@-moz-keyframes animate-in-fade-translate {
		from {
		opacity: 0;
		transform: translateY(-20px);
	}
		to {
		opacity: 1;
	}
	}

@keyframes animate-in-fade-translate {
		from {
		opacity: 0;
		transform: translateY(-20px);
	}
		to {
		opacity: 1;
	}
	}

@-webkit-keyframes animate-in-fade {
		from {
		opacity: 0;
	}
		to {
		opacity: 1;
	}
	}

@-moz-keyframes animate-in-fade {
		from {
		opacity: 0;
	}
		to {
		opacity: 1;
	}
	}

@keyframes animate-in-fade {
		from {
		opacity: 0;
	}
		to {
		opacity: 1;
	}
	}

#toast-container.toast-top-right, #toast-container.toast-top-left {
	top: 42px;
}

#toast-container .toast {
	background-color: #ffffff;
	color: rgba(0, 0, 0, 0.87);
	border: solid 4px #b1b3b4;
	border-left-width: 11px;
	padding-left: 4.5em;
	min-height: 4.5em;
	border-radius: 0px;
	width: 400px;
	overflow: visible;
}

#toast-container .toast:before {
	content: "";
	font-family: "Material Icons";
	background-color: #b1b3b4;
	color: #ffffff;
	height: 104%;
	width: 1.8em;
	padding: 0 5px;
	position: absolute;
	left: -10px;
	top: -2px;
	box-sizing: border-box;
	text-align: center;
	line-height: 1.5em;
	font-size: 2.5em;
}

#toast-container .toast.toast-info {
	border-color: #0063bb;
}

#toast-container .toast.toast-info:before {
	background-color: #0063bb;
	content: "\E88E";
}

#toast-container .toast.toast-success {
	border-color: #86ba17;
}

#toast-container .toast.toast-success:before {
	background-color: #86ba17;
	content: "\E86C";
}

#toast-container .toast.toast-warning {
	border-color: #fabb00;
}

#toast-container .toast.toast-warning:before {
	background-color: #fabb00;
	content: "\E002";
}

#toast-container .toast.toast-error {
	border-color: #e32119;
}

#toast-container .toast.toast-error:before {
	background-color: #e32119;
	content: "\E000";
}

#toast-container .toast .toast-close-button {
	color: rgba(0, 0, 0, 0.87);
	position: absolute;
	top: 0;
	right: 0;
	height: 1.5em;
	width: 1.5em;
	line-height: 1.5em;
	text-align: center;
	z-index: 2;
}

#toast-container .toast .toast-title {
	position: relative;
	top: -10px;
	font-size: 1.1em;
	padding-right: 20px;
	z-index: 1;
	font-family: "Open Sans", sans-serif;
}

#toast-container .toast .toast-message {
	line-height: 1.2em;
	font-family: "Open Sans", sans-serif;
}

#toast-container .toast .toast-link {
	position: relative;
	padding-right: 2.24em;
	margin-right: 1em;
	cursor: pointer;
}

#toast-container .toast .toast-link:hover {
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 0px;
}

#toast-container .toast .toast-link:after {
	content: "\e89E";
	font-family: "Material Icons";
	font-size: 1.6em;
	width: 1em;
	height: 1em;
	line-height: 1em;
	display: block;
	position: absolute;
	right: 0.2em;
	top: 50%;
	margin: -0.5em 0;
}

.telenor.v-app, .telenor.v-app-loading {
	font: 400 14px/1.55 "Open Sans", sans-serif;
	color: rgba(0, 0, 0, 0.87);
	background-color: #ffffff;
	cursor: default;
}

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

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

.telenor .v-loading-indicator {
	position: fixed !important;
	z-index: 99999;
	left: 0;
	right: auto;
	top: 0;
	width: 50%;
	opacity: 1;
	height: 4px;
	background-color: rgba(153, 153, 153, 0.3);
	pointer-events: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-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;
}

.telenor .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;
	-o-transition: opacity 500ms 300ms, width 300ms;
	transition: opacity 500ms 300ms, width 300ms;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor 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 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.telenor select:focus {
	outline: none;
}

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

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

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

.telenor .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 8px;
	border-radius: 1px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-contextmenu {
	padding: 4px 4px;
	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: 4px 4px;
}

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

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

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

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

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

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

.telenor .v-contextmenu .gwt-MenuItem-selected {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(15, 15, 15, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

.telenor .v-reconnect-dialog .spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(153, 153, 153, 0);
	border-top-color: rgba(153, 153, 153, 0.3);
	border-right-color: rgba(153, 153, 153, 0.3);
	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;
}

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

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

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

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

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

.telenor .v-margin-top {
	padding-top: 20px;
}

.telenor .v-margin-right {
	padding-right: 20px;
}

.telenor .v-margin-bottom {
	padding-bottom: 20px;
}

.telenor .v-margin-left {
	padding-left: 20px;
}

.telenor .v-spacing {
	width: 20px;
	height: 20px;
}

.telenor .v-verticallayout-well, .telenor .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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-button:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

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

.telenor .v-button-primary {
	height: 32px;
	padding: 0 14px;
	color: rgba(15, 15, 15, 0.3);
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #242424;
	border-top-color: #303030;
	border-bottom-color: #222222;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	-webkit-box-shadow: inset 0 1px 0 #515151, inset 0 -1px 0 #2a2a2a, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #515151, inset 0 -1px 0 #2a2a2a, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0 16px;
	font-weight: bold;
	min-width: 70px;
}

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

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

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

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

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

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

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

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

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

.telenor .v-button-danger {
	height: 32px;
	padding: 0 14px;
	color: #f8edec;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #b31a13;
	border-top-color: #b41b15;
	border-bottom-color: #a91611;
	background-color: #e32119;
	background-image: -webkit-linear-gradient(top, #e5231b 2%, #d71c16 98%);
	background-image: linear-gradient(to bottom,#e5231b 2%, #d71c16 98%);
	-webkit-box-shadow: inset 0 1px 0 #e7534e, inset 0 -1px 0 #cc1c16, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 #e7534e, inset 0 -1px 0 #cc1c16, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

.telenor .v-button-danger:hover:after {
	background-color: rgba(237, 97, 92, 0.1);
}

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

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

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

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

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

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

.telenor .v-button-borderless-colored {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-button-borderless-colored:hover {
	color: rgba(179, 179, 179, 0.3);
}

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

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

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

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

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

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

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

.telenor .v-button-link {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	color: rgba(153, 153, 153, 0.3);
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

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

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

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

.telenor .v-button-link:hover {
	color: rgba(179, 179, 179, 0.3);
}

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

.telenor .v-button-tiny {
	height: 24px;
	padding: 0 11px;
	
	
	font-size: 14px;
	
	border-radius: 2px;
}

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

.telenor .v-button-small {
	height: 27px;
	padding: 0 12px;
	
	
	font-size: 14px;
	
	border-radius: 2px;
}

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

.telenor .v-button-large {
	height: 38px;
	padding: 0 17px;
	
	
	font-size: 20px;
	
	border-radius: 2px;
}

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

.telenor .v-button-huge {
	height: 51px;
	padding: 0 22px;
	
	
	font-size: 22px;
	
	border-radius: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .telenor .v-checkbox > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .telenor .v-checkbox-small > input ~ label:before {
	height: 13.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 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 .telenor .v-checkbox-small > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	-o-transition: color 100ms;
	transition: color 100ms;
}

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

:root .telenor .v-checkbox-small > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root .telenor .v-checkbox-large > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

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

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

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

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

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

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

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

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

.telenor .v-filterselect {
	position: relative;
	width: 320px;
	height: 32px;
	border-radius: 0;
	white-space: nowrap;
}

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

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

.telenor .v-filterselect [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	border-color: rgba(153, 153, 153, 0.3);
	-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-filterselect-error .v-filterselect-input {
	border-color: #e32119 !important;
	background: #fefbfa;
	color: #6b2522;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 4px 4px;
	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: 4px 4px;
	box-sizing: content-box;
	position: relative;
	z-index: 1;
	display: block;
}

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

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

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

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

.telenor .v-filterselect-suggestpopup .gwt-MenuItem-selected {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(15, 15, 15, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .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: 20px;
	bottom: -20px;
	font-size: 11px;
	line-height: 20px;
	padding: 0 5px;
	cursor: default;
	pointer-events: none;
	-webkit-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	-moz-animation: valo-animate-in-slide-down 200ms 80ms backwards;
	animation: valo-animate-in-slide-down 200ms 80ms backwards;
}

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

.telenor .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;
	-o-transition: all 200ms;
	transition: all 200ms;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	font-family: ThemeIcons;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	color: #464646;
}

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-filterselect-no-input [class*="input"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	border-color: rgba(153, 153, 153, 0.3);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

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

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

.telenor .v-filterselect-tiny {
	height: 24px;
	
	font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-filterselect-huge {
	height: 51px;
	
	font-size: 22px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-grid .header-drag-table .v-grid-header  > .v-grid-drop-marker {
	background-color: rgba(153, 153, 153, 0.3);
	position: absolute;
	width: 3px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-grid-row-selected > td {
	background: rgba(153, 153, 153, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-grid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid rgba(153, 153, 153, 0.3);
	display: none;
	pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-grid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: rgba(153, 153, 153, 0.3);
	position: absolute;
	height: 100%;
	pointer-events: none;
}

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

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

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

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

.telenor .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;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

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

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

.telenor .v-grid-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

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

.telenor .v-grid-row-selected  > .v-grid-cell {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(43, 43, 43, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-color: rgba(133, 133, 133, 0.3);
}

.telenor .v-grid-row-selected  > .v-grid-cell-focused:before {
	border-color: rgba(204, 204, 204, 0.3);
}

.telenor .v-grid-editor {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-grid-editor-footer {
	font-size: 14px;
	padding: 0 10px;
	background: #ffffff;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.telenor .v-grid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

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

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

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

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

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

.telenor .v-grid-editor-cells > div .v-textfield, .telenor .v-grid-editor-cells > div .v-textfield-focus, .telenor .v-grid-editor-cells > div .v-datefield, .telenor .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .telenor .v-grid-editor-cells > div .v-filterselect-input, .telenor .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;
}

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

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

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

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

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

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

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

.telenor .v-grid-editor-save, .telenor .v-grid-editor-cancel {
	cursor: pointer;
	color: rgba(153, 153, 153, 0.3);
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 10px 10px;
	margin: 0;
	outline: none;
}

.telenor .v-grid-editor-save:hover, .telenor .v-grid-editor-cancel:hover {
	color: rgba(179, 179, 179, 0.3);
}

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

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

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

.telenor .v-grid-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

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

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

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

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

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

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

.telenor .v-grid-row-drag-top:before, .telenor .v-grid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: rgba(153, 153, 153, 0.3);
	pointer-events: none;
	border: none;
}

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

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

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

.telenor .v-grid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid rgba(153, 153, 153, 0.3);
	pointer-events: none;
}

.telenor .v-grid-row-selected.v-grid-row-drag-center:after {
	border-color: rgba(128, 128, 128, 0.3);
}

.telenor .v-grid-row-selected.v-grid-row-drag-top:before, .telenor .v-grid-row-selected.v-grid-row-drag-bottom:after {
	background: rgba(128, 128, 128, 0.3);
}

.telenor .v-grid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid rgba(153, 153, 153, 0.3);
	z-index: 100;
}

.telenor .v-textfield {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 0;
	padding: 4px 6px;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	width: 320px;
}

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

.telenor .v-textfield:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	border-color: rgba(153, 153, 153, 0.3);
	-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);
}

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

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

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

.telenor .v-textfield-error {
	border-color: #e32119 !important;
	background: #fefbfa;
	color: #6b2522;
}

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

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

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

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

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

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

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

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

.telenor .v-textfield-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 24px;
	border-radius: 0;
	padding: 3px 4px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 14px;
}

.telenor .v-textfield-compact, .telenor .v-textfield-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 27px;
	border-radius: 0;
	padding: 3px 5px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

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

.telenor .v-textfield-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 0;
	padding: 4px 7px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 20px;
}

.telenor .v-textfield-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 51px;
	border-radius: 0;
	padding: 6px 9px;
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	font-size: 22px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.telenor .v-caption-inline-icon.v-caption-huge span.v-icon {
	left: 1px;
	bottom: 1px;
	width: 51px;
	line-height: 49px;
	text-align: center;
	font-size: 22px;
}

.telenor .v-caption-inline-icon.v-caption-huge img.v-icon {
	left: 18px;
	bottom: 18px;
}

.telenor .v-textfield-inline-icon.v-textfield-huge  {
	padding-left: 51px;
}

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

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

.telenor .v-textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 0;
	padding: 5px;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	width: 320px;
}

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

.telenor .v-textarea:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	border-color: rgba(153, 153, 153, 0.3);
	-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);
}

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

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

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

.telenor .v-textarea-error {
	border-color: #e32119 !important;
	background: #fefbfa;
	color: #6b2522;
}

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

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

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

.telenor .v-textarea-tiny {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 24px;
	border-radius: 0;
	padding: 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 14px;
}

.telenor .v-textarea-small {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 27px;
	border-radius: 0;
	padding: 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 14px;
}

.telenor .v-textarea-large {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 0;
	padding: 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 20px;
}

.telenor .v-textarea-huge {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 51px;
	border-radius: 0;
	padding: 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	resize: none;
	white-space: pre-wrap;
	font-size: 22px;
}

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

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

.telenor .v-datefield {
	position: relative;
	width: 320px;
	height: 32px;
	border-radius: 0;
}

.telenor .v-datefield [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 0;
	padding: 4px 6px;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 38.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

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

.telenor .v-datefield [class*="textfield"]:focus {
	outline: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	border-color: rgba(153, 153, 153, 0.3);
	-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);
}

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

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

.telenor .v-datefield [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 32px;
	line-height: 30px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
	top: 1px;
	bottom: 1px;
	left: 1px;
	border: none;
	border-right: 1px solid #e4e4e4;
	color: #a3a3a3;
}

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

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

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

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

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

.telenor .v-datefield.v-disabled [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.telenor .v-datefield.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield.v-readonly [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.telenor .v-datefield.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-error .v-datefield-textfield {
	border-color: #e32119 !important;
	background: #fefbfa;
	color: #6b2522;
}

.telenor .v-datefield-error .v-datefield-button {
	color: #e32119;
	border-color: #e32119;
}

.telenor .v-datefield-error-info .v-datefield-textfield {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.telenor .v-datefield-error-info .v-datefield-button {
	color: #00a7f5;
	border-color: #00a7f5;
}

.telenor .v-datefield-error-warning .v-datefield-textfield {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.telenor .v-datefield-error-warning .v-datefield-button {
	color: #fc9c00;
	border-color: #fc9c00;
}

.telenor .v-datefield-error-error .v-datefield-textfield {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.telenor .v-datefield-error-error .v-datefield-button {
	color: #ed473b;
	border-color: #ed473b;
}

.telenor .v-datefield-error-critical .v-datefield-textfield {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.telenor .v-datefield-error-critical .v-datefield-button {
	color: #fa007d;
	border-color: #fa007d;
}

.telenor .v-datefield-error-system .v-datefield-textfield {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.telenor .v-datefield-error-system .v-datefield-button {
	color: #bb00ff;
	border-color: #bb00ff;
}

.telenor .v-datefield-full {
	width: 210px;
}

.telenor .v-datefield-day {
	width: 320px;
}

.telenor .v-datefield-month {
	width: 105px;
}

.telenor .v-datefield-year {
	width: 91px;
}

.telenor .v-datefield-popup {
	padding: 4px 4px;
	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;
}

.telenor .v-datefield-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.telenor .v-datefield-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.telenor .v-datefield-popup table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
}

.telenor .v-datefield-popup td {
	padding: 2px;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel:focus {
	outline: none;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 26px;
	height: 22px;
	border: 1px solid transparent;
	line-height: 22px;
	text-align: center;
	font-size: 13px;
	background: #fafafa;
	border-radius: 1px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	-o-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day:hover {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: rgba(43, 43, 43, 0.3);
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	border: none;
	font-weight: 600;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	position: relative;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-weekdays {
	height: 22px;
	color: rgba(133, 133, 133, 0.85);
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.telenor .v-datefield-popup td[class*="year"] button, .telenor .v-datefield-popup td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 16px;
	height: 21px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.telenor .v-datefield-popup td[class*="year"] button:before, .telenor .v-datefield-popup td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	-o-transition: color 200ms;
	transition: color 200ms;
}

.telenor .v-datefield-popup td[class*="year"] button:hover:before, .telenor .v-datefield-popup td[class*="month"] button:hover:before {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-datefield-popup td[class*="year"] button.outside-range, .telenor .v-datefield-popup td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.telenor .v-datefield-popup td[class*="year"] button.outside-range:hover:before, .telenor .v-datefield-popup td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.telenor .v-datefield-popup .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.telenor .v-datefield-popup .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.telenor .v-datefield-popup .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.telenor .v-datefield-popup .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.telenor .v-datefield-popup td.v-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-datefield-popup td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 64px;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-weeknumber, .telenor .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 26px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	width: 30px;
	border-top: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	background: #ffffff;
}

.telenor .v-datefield-popup td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.telenor .v-datefield-popup td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.telenor .v-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.telenor .v-datefield-calendarpanel:focus {
	outline: none;
}

.telenor .v-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 26px;
	height: 22px;
	border: 1px solid transparent;
	line-height: 22px;
	text-align: center;
	font-size: 13px;
	background: #fafafa;
	border-radius: 1px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	-o-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.telenor .v-datefield-calendarpanel-day:hover {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.telenor .v-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.telenor .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .telenor .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
	color: rgba(43, 43, 43, 0.3);
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	border: none;
	font-weight: 600;
}

.telenor .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
	position: relative;
}

.telenor .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .telenor .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.telenor .v-datefield-calendarpanel-weekdays {
	height: 22px;
	color: rgba(133, 133, 133, 0.85);
}

.telenor .v-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.telenor .v-datefield-calendarpanel-header {
	white-space: nowrap;
}

.telenor td[class*="year"] button, .telenor td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 16px;
	height: 21px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.telenor td[class*="year"] button:before, .telenor td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	-o-transition: color 200ms;
	transition: color 200ms;
}

.telenor td[class*="year"] button:hover:before, .telenor td[class*="month"] button:hover:before {
	color: rgba(153, 153, 153, 0.3);
}

.telenor td[class*="year"] button.outside-range, .telenor td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.telenor td[class*="year"] button.outside-range:hover:before, .telenor td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.telenor .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.telenor .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.telenor .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.telenor .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.telenor td.v-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: rgba(153, 153, 153, 0.3);
}

.telenor td.v-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.telenor .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
	width: 64px;
}

.telenor .v-datefield-calendarpanel-weeknumber, .telenor .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
	width: 26px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.telenor .v-datefield-calendarpanel-weeknumber {
	position: relative;
}

.telenor .v-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	width: 30px;
	border-top: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	background: #ffffff;
}

.telenor td.v-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.telenor td.v-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.telenor .v-datefield-borderless .v-datefield-textfield {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.telenor .v-datefield-borderless .v-datefield-textfield:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-borderless .v-datefield-textfield[class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-borderless .v-datefield-button {
	border: none;
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-align-right input {
	text-align: right;
}

.telenor .v-datefield-align-center input {
	text-align: center;
}

.telenor .v-datefield-tiny {
	height: 24px;
	border-radius: 0;
	font-size: 14px;
}

.telenor .v-datefield-tiny [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 24px;
	border-radius: 0;
	padding: 3px 4px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 28.8px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.telenor .v-datefield-tiny [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 24px;
	line-height: 24px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.telenor .v-datefield-tiny [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-datefield-tiny [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.telenor .v-datefield-tiny.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-tiny.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-tiny.v-disabled [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-tiny.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-tiny.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.telenor .v-datefield-tiny.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-tiny.v-readonly [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-tiny.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.telenor .v-datefield-tiny.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-tiny.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-compact, .telenor .v-datefield-small {
	height: 27px;
	border-radius: 0;
}

.telenor .v-datefield-compact [class*="textfield"], .telenor .v-datefield-small [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 27px;
	border-radius: 0;
	padding: 3px 5px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 32.4px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.telenor .v-datefield-compact [class*="button"], .telenor .v-datefield-small [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 27px;
	line-height: 27px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.telenor .v-datefield-compact [class*="button"]:before, .telenor .v-datefield-small [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-datefield-compact [class*="button"]:active:after, .telenor .v-datefield-small [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.telenor .v-datefield-compact.v-disabled, .telenor .v-datefield-small.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-compact.v-disabled [class*="button"], .telenor .v-datefield-small.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-compact.v-disabled [class*="button"]:active:after, .telenor .v-datefield-small.v-disabled [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-compact.v-readonly [class*="textfield"], .telenor .v-datefield-small.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-compact.v-readonly [class*="textfield"]:focus, .telenor .v-datefield-small.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.telenor .v-datefield-compact.v-readonly [class*="button"], .telenor .v-datefield-small.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-compact.v-readonly [class*="button"]:active:after, .telenor .v-datefield-small.v-readonly [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-compact.v-readonly.borderless [class*="textfield"], .telenor .v-datefield-small.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.telenor .v-datefield-compact.v-readonly.borderless [class*="textfield"]:focus, .telenor .v-datefield-small.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-compact.v-readonly.borderless [class*="textfield"][class*="prompt"], .telenor .v-datefield-small.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-small {
	font-size: 14px;
}

.telenor .v-datefield-large {
	height: 38px;
	border-radius: 0;
	font-size: 20px;
}

.telenor .v-datefield-large [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 38px;
	border-radius: 0;
	padding: 4px 7px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 45.6px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.telenor .v-datefield-large [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 38px;
	line-height: 38px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.telenor .v-datefield-large [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-datefield-large [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.telenor .v-datefield-large.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-large.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-large.v-disabled [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-large.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-large.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.telenor .v-datefield-large.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-large.v-readonly [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-large.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.telenor .v-datefield-large.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-large.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-huge {
	height: 51px;
	border-radius: 0;
	font-size: 22px;
}

.telenor .v-datefield-huge [class*="textfield"] {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 51px;
	border-radius: 0;
	padding: 6px 9px;
	
	
	
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	padding-left: 61.2px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.telenor .v-datefield-huge [class*="button"] {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	-webkit-appearance: none;
	background: transparent;
	padding: 0;
	position: absolute;
	z-index: 10;
	width: 51px;
	line-height: 51px;
	text-align: center;
	font: inherit;
	outline: none;
	margin: 0;
}

.telenor .v-datefield-huge [class*="button"]:before {
	font-family: ThemeIcons;
	content: "\f073";
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-datefield-huge [class*="button"]:active:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.telenor .v-datefield-huge.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-datefield-huge.v-disabled [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-huge.v-disabled [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-huge.v-readonly [class*="textfield"] {
	background: #fafafa;
	color: #464646;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-huge.v-readonly [class*="textfield"]:focus {
	box-shadow: none;
	border-color: #c5c5c5;
}

.telenor .v-datefield-huge.v-readonly [class*="button"] {
	cursor: default;
	pointer-events: none;
}

.telenor .v-datefield-huge.v-readonly [class*="button"]:active:after {
	display: none;
}

.telenor .v-datefield-huge.v-readonly.borderless [class*="textfield"] {
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
}

.telenor .v-datefield-huge.v-readonly.borderless [class*="textfield"]:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield-huge.v-readonly.borderless [class*="textfield"][class*="prompt"] {
	color: inherit;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-inline-datefield-calendarpanel {
	font-size: 14px;
	text-align: center;
}

.telenor .v-inline-datefield-calendarpanel:focus {
	outline: none;
}

.telenor .v-inline-datefield-calendarpanel-day {
	box-sizing: border-box;
	width: 26px;
	height: 22px;
	border: 1px solid transparent;
	line-height: 22px;
	text-align: center;
	font-size: 13px;
	background: #fafafa;
	border-radius: 1px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	-o-transition: color 200ms;
	transition: color 200ms;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}

.telenor .v-inline-datefield-calendarpanel-day:hover {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-inline-datefield-calendarpanel-day-offmonth {
	color: #a0a0a0;
	background: transparent;
}

.telenor .v-inline-datefield-calendarpanel-day-today {
	color: #191919;
	font-weight: 600;
	border-color: #afafaf;
}

.telenor .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .telenor .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
	color: rgba(43, 43, 43, 0.3);
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	border: none;
	font-weight: 600;
}

.telenor .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
	position: relative;
}

.telenor .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .telenor .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
	color: #a0a0a0;
	cursor: not-allowed;
}

.telenor .v-inline-datefield-calendarpanel-weekdays {
	height: 22px;
	color: rgba(133, 133, 133, 0.85);
}

.telenor .v-inline-datefield-calendarpanel-weekdays strong {
	font: inherit;
	font-size: 13px;
}

.telenor .v-inline-datefield-calendarpanel-header {
	white-space: nowrap;
}

.telenor td[class*="year"] button, .telenor td[class*="month"] button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	width: 16px;
	height: 21px;
	outline: none;
	position: relative;
	vertical-align: middle;
}

.telenor td[class*="year"] button:before, .telenor td[class*="month"] button:before {
	color: #a0a0a0;
	font-size: 18px;
	line-height: 21px;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	-o-transition: color 200ms;
	transition: color 200ms;
}

.telenor td[class*="year"] button:hover:before, .telenor td[class*="month"] button:hover:before {
	color: rgba(153, 153, 153, 0.3);
}

.telenor td[class*="year"] button.outside-range, .telenor td[class*="month"] button.outside-range {
	cursor: default;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
}

.telenor td[class*="year"] button.outside-range:hover:before, .telenor td[class*="month"] button.outside-range:hover:before {
	color: #a0a0a0;
}

.telenor .v-button-prevyear:before {
	font-family: ThemeIcons;
	content: "\f100";
}

.telenor .v-button-prevmonth:before {
	font-family: ThemeIcons;
	content: "\f104";
}

.telenor .v-button-nextyear:before {
	font-family: ThemeIcons;
	content: "\f101";
}

.telenor .v-button-nextmonth:before {
	font-family: ThemeIcons;
	content: "\f105";
}

.telenor td.v-inline-datefield-calendarpanel-month {
	width: 128px;
	cursor: default;
	color: rgba(153, 153, 153, 0.3);
}

.telenor td.v-inline-datefield-calendarpanel-month.header-month-year {
	cursor: pointer;
}

.telenor .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
	width: 64px;
}

.telenor .v-inline-datefield-calendarpanel-weeknumber, .telenor .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
	width: 26px;
	color: rgba(133, 133, 133, 0.85);
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.telenor .v-inline-datefield-calendarpanel-weeknumber {
	position: relative;
}

.telenor .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	width: 30px;
	border-top: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	background: #ffffff;
}

.telenor td.v-inline-datefield-calendarpanel-time {
	width: 100%;
	font-size: 13px;
}

.telenor td.v-inline-datefield-calendarpanel-time .v-label {
	display: inline;
	margin: 0 0.1em;
	font-weight: 400;
}

.telenor .v-inline-datefield-calendarpanel {
	position: relative;
	background: white;
	padding: 5px;
}

.telenor .v-gridlayout-margin-top {
	padding-top: 20px;
}

.telenor .v-gridlayout-margin-bottom {
	padding-bottom: 20px;
}

.telenor .v-gridlayout-margin-left {
	padding-left: 20px;
}

.telenor .v-gridlayout-margin-right {
	padding-right: 20px;
}

.telenor .v-gridlayout-spacing-on {
	padding-left: 20px;
	padding-top: 20px;
}

.telenor .v-menubar {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	height: 32px;
	padding: 0 14px;
	color: #191919;
	font-weight: 500;
	
	cursor: default;
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	text-align: left;
	line-height: 30px;
}

.telenor .v-menubar:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
}

.telenor .v-menubar:focus:after {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.telenor .v-menubar.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-menubar.v-disabled:after {
	display: none;
}

.telenor .v-menubar:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-menubar:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-menubar  > .v-menubar-menuitem {
	padding: 0 12px;
}

.telenor .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 32px;
}

.telenor .v-menubar:active:after {
	background: transparent;
}

.telenor .v-menubar > .v-menubar-menuitem {
	position: relative;
	z-index: 1;
	display: inline-block;
	box-sizing: border-box;
	height: 32px;
	padding: 0 13px;
	color: inherit;
	font-weight: 500;
	
	cursor: pointer;
	border-radius: 0;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	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;
}

.telenor .v-menubar > .v-menubar-menuitem:first-child {
	border-left-width: 0;
	border-radius: 1px 0 0 1px;
}

.telenor .v-menubar > .v-menubar-menuitem:last-child {
	border-radius: 0 1px 1px 0;
	border-right-width: 0;
}

.telenor .v-menubar > .v-menubar-menuitem:first-child:last-child {
	border-radius: 1px;
}

.telenor .v-menubar > .v-menubar-menuitem:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.telenor .v-menubar > .v-menubar-menuitem:hover {
	zoom: 1;
}

.telenor .v-menubar > .v-menubar-menuitem:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.telenor .v-menubar > .v-menubar-menuitem:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .v-menubar > .v-menubar-menuitem .v-icon {
	margin: 0 3px 0 -3px;
	cursor: inherit;
}

.telenor .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
	width: 32px;
	padding: 0;
}

.telenor .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
	margin: 0;
}

.telenor .v-menubar > .v-menubar-menuitem-checked {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #ededed;
	background-image: -webkit-linear-gradient(bottom, #ededed 2%, #e9e9e9 98%);
	background-image: linear-gradient(to top,#ededed 2%, #e9e9e9 98%);
	color: #181818;
}

.telenor .v-disabled > .v-menubar-menuitem, .telenor .v-menubar > .v-menubar-menuitem-disabled {
	cursor: default;
}

.telenor .v-disabled > .v-menubar-menuitem:before, .telenor .v-menubar > .v-menubar-menuitem-disabled:before {
	display: none;
}

.telenor .v-menubar-menuitem-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-menubar > .v-menubar-menuitem-selected {
	color: rgba(15, 15, 15, 0.3);
	
	
	
	border-radius: 0;
	border: 1px solid #242424;
	border-top-color: #303030;
	border-bottom-color: #222222;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	-webkit-box-shadow: inset 0 1px 0 #515151, inset 0 -1px 0 #2a2a2a;
	box-shadow: inset 0 1px 0 #515151, inset 0 -1px 0 #2a2a2a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: 2;
}

.telenor .v-menubar > .v-menubar-menuitem-selected:hover:before {
	background: none;
}

.telenor .v-menubar .v-menubar-submenu-indicator {
	display: none;
}

.telenor .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;
}

.telenor .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
	margin-left: -0.2em;
}

.telenor .v-menubar-popup {
	padding: 4px 4px;
	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: 4px 4px;
	margin: 4px 0 0 1px !important;
}

.telenor .v-menubar-popup[class*="animate-in"] {
	-webkit-animation: valo-overlay-animate-in 120ms;
	-moz-animation: valo-overlay-animate-in 120ms;
	animation: valo-overlay-animate-in 120ms;
}

.telenor .v-menubar-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.telenor .v-menubar-popup .v-menubar-submenu {
	outline: none;
}

.telenor .v-menubar-popup .v-menubar-menuitem {
	display: block;
	cursor: pointer;
	line-height: 23px;
	padding: 0 16px 0 8px;
	border-radius: 1px;
	font-weight: 400;
	white-space: nowrap;
	position: relative;
	padding-left: 27px;
	padding-right: 32px;
	position: relative;
}

.telenor .v-menubar-popup .v-menubar-menuitem:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(107, 107, 107, 0.3);
	opacity: 0.15;
	filter: alpha(opacity=15.0) ;
	pointer-events: none;
	border-radius: inherit;
}

.telenor .v-menubar-popup .v-menubar-menuitem .v-icon {
	max-height: 23px;
	margin-right: 4px;
	min-width: 1em;
}

.telenor .v-menubar-popup .v-menubar-submenu-indicator {
	display: none;
}

.telenor .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
	position: absolute;
	right: 8px;
	font-family: ThemeIcons;
	content: "\f054";
	line-height: 25px;
}

.telenor .v-menubar-popup .v-menubar-menuitem-selected {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(15, 15, 15, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-menubar-popup .v-menubar-separator {
	display: block;
	margin: 4px 0;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
}

.telenor .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
	content: "\f00c";
	font-family: ThemeIcons;
	position: absolute;
	left: 8px;
}

.telenor .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
	content: "";
}

.telenor .v-menubar-popup [class*="disabled"] {
	cursor: default;
}

.telenor .v-menubar-small {
	height: 27px;
	padding: 0 12px;
	
	font-weight: 500;
	
	cursor: default;
	border-radius: 2px;
	padding: 0;
	text-align: left;
	line-height: 25px;
	font-size: 14px;
}

.telenor .v-menubar-small:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-menubar-small  > .v-menubar-menuitem {
	padding: 0 10px;
}

.telenor .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
	width: 27px;
}

.telenor .v-menubar-borderless {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
}

.telenor .v-menubar-borderless:focus:after {
	display: none;
}

.telenor .v-menubar-borderless .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 2px;
	color: rgba(153, 153, 153, 0.3);
	padding: 0 11px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-menubar-borderless .v-menubar-menuitem:first-child, .telenor .v-menubar-borderless .v-menubar-menuitem:last-child, .telenor .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
	border-radius: 2px;
}

.telenor .v-menubar-borderless .v-menubar-menuitem:before {
	content: none;
}

.telenor .v-menubar-borderless .v-menubar-menuitem:hover {
	color: rgba(179, 179, 179, 0.3);
}

.telenor .v-menubar-borderless .v-menubar-menuitem:active {
	color: inherit;
}

.telenor .v-menubar-borderless .v-menubar-menuitem-checked, .telenor .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .telenor .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.telenor .v-menubar-borderless .v-menubar-menuitem-selected {
	color: rgba(15, 15, 15, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-menubar-borderless .v-menubar-menuitem-selected:hover {
	color: rgba(15, 15, 15, 0.3);
}

.telenor .v-menubar-borderless .v-menubar-menuitem-disabled, .telenor .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.telenor .v-radiobutton {
	position: relative;
	line-height: 16px;
	white-space: nowrap;
}

.telenor .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .telenor .v-radiobutton {
	padding-left: 21px;
}

:root .telenor .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .telenor .v-radiobutton > input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	left: 0.2em;
	top: 0.2em;
	z-index: 0;
	margin: 0;
}

:root .telenor .v-radiobutton > input:focus ~ label:before {
	border-color: rgba(153, 153, 153, 0.3);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .telenor .v-radiobutton > input ~ label:before, :root .telenor .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	font-size: 11px;
	text-align: center;
}

:root .telenor .v-radiobutton > input ~ label:before {
	height: 16px;
	padding: 0 8px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 16px;
}

:root .telenor .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	-o-transition: color 100ms;
	transition: color 100ms;
}

:root .telenor .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .telenor .v-radiobutton > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-radiobutton > .v-icon, .telenor .v-radiobutton > label .v-icon {
	margin: 0 5px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.telenor .v-radiobutton.v-disabled  > label, .telenor .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.telenor .v-radiobutton.v-readonly  > label, .telenor .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.telenor .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .telenor .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .telenor .v-radiobutton > input:checked ~ label:after {
	width: 6px;
	height: 6px;
	top: 5px;
	left: 5px;
	background: rgba(153, 153, 153, 0.3);
}

:root .telenor .v-radiobutton > input ~ label:before, :root .telenor .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.telenor .v-select-optiongroup .v-radiobutton, .telenor .v-select-optiongroup .v-checkbox {
	display: block;
	margin: 8px 14px 0 0;
}

.telenor .v-select-optiongroup .v-radiobutton:first-child, .telenor .v-select-optiongroup .v-checkbox:first-child {
	margin-top: 5px;
}

.telenor .v-select-optiongroup .v-radiobutton:last-child, .telenor .v-select-optiongroup .v-checkbox:last-child {
	margin-bottom: 5px;
}

.telenor .v-select-optiongroup.v-has-width label {
	white-space: normal;
}

.telenor .v-select-optiongroup-small {
	font-size: 14px;
}

.telenor .v-select-optiongroup-small .v-checkbox {
	position: relative;
	line-height: 14px;
	white-space: nowrap;
}

.telenor .v-select-optiongroup-small .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .telenor .v-select-optiongroup-small .v-checkbox {
	padding-left: 18px;
}

:root .telenor .v-select-optiongroup-small .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .telenor .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 .telenor .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
	border-color: rgba(153, 153, 153, 0.3);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .telenor .v-select-optiongroup-small .v-checkbox > input ~ label:before, :root .telenor .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	font-size: 9px;
	text-align: center;
}

:root .telenor .v-select-optiongroup-small .v-checkbox > input ~ label:before {
	height: 13.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 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 .telenor .v-select-optiongroup-small .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	-o-transition: color 100ms;
	transition: color 100ms;
}

:root .telenor .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .telenor .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-select-optiongroup-small .v-checkbox > .v-icon, .telenor .v-select-optiongroup-small .v-checkbox > label .v-icon {
	margin: 0 5px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.telenor .v-select-optiongroup-small .v-checkbox.v-disabled  > label, .telenor .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-small .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.telenor .v-select-optiongroup-small .v-checkbox.v-readonly  > label, .telenor .v-select-optiongroup-small .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.telenor .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-small .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .telenor .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-select-optiongroup-small .v-radiobutton {
	position: relative;
	line-height: 14px;
	white-space: nowrap;
}

.telenor .v-select-optiongroup-small .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton {
	padding-left: 18px;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .telenor .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 .telenor .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
	border-color: rgba(153, 153, 153, 0.3);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .telenor .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .telenor .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	font-size: 9px;
	text-align: center;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
	height: 13.5px;
	padding: 0 7px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 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 .telenor .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	-o-transition: color 100ms;
	transition: color 100ms;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .telenor .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-select-optiongroup-small .v-radiobutton > .v-icon, .telenor .v-select-optiongroup-small .v-radiobutton > label .v-icon {
	margin: 0 5px 0 2px;
	min-width: 1em;
	cursor: pointer;
}

.telenor .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .telenor .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.telenor .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .telenor .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.telenor .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .telenor .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
	width: 5px;
	height: 5px;
	top: 5px;
	left: 5px;
	background: rgba(153, 153, 153, 0.3);
}

:root .telenor .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .telenor .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.telenor .v-select-optiongroup-small .v-radiobutton, .telenor .v-select-optiongroup-small .v-checkbox {
	display: block;
	margin: 7px 14px 0 0;
}

.telenor .v-select-optiongroup-small .v-radiobutton:first-child, .telenor .v-select-optiongroup-small .v-checkbox:first-child {
	margin-top: 5px;
}

.telenor .v-select-optiongroup-small .v-radiobutton:last-child, .telenor .v-select-optiongroup-small .v-checkbox:last-child {
	margin-bottom: 5px;
}

.telenor .v-select-optiongroup-small.v-has-width label {
	white-space: normal;
}

.telenor .v-select-optiongroup-large {
	font-size: 20px;
}

.telenor .v-select-optiongroup-large .v-checkbox {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.telenor .v-select-optiongroup-large .v-checkbox.v-has-width label {
	white-space: normal;
}

:root .telenor .v-select-optiongroup-large .v-checkbox {
	padding-left: 25px;
}

:root .telenor .v-select-optiongroup-large .v-checkbox label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .telenor .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 .telenor .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
	border-color: rgba(153, 153, 153, 0.3);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .telenor .v-select-optiongroup-large .v-checkbox > input ~ label:before, :root .telenor .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	font-size: 13px;
	text-align: center;
}

:root .telenor .v-select-optiongroup-large .v-checkbox > input ~ label:before {
	height: 19px;
	padding: 0 9px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .telenor .v-select-optiongroup-large .v-checkbox > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	-o-transition: color 100ms;
	transition: color 100ms;
}

:root .telenor .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .telenor .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-select-optiongroup-large .v-checkbox > .v-icon, .telenor .v-select-optiongroup-large .v-checkbox > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.telenor .v-select-optiongroup-large .v-checkbox.v-disabled  > label, .telenor .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-large .v-checkbox.v-disabled > input:active ~ label:after {
	background: transparent;
}

.telenor .v-select-optiongroup-large .v-checkbox.v-readonly  > label, .telenor .v-select-optiongroup-large .v-checkbox.v-readonly  > .v-icon {
	cursor: default;
}

.telenor .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-large .v-checkbox.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .telenor .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-select-optiongroup-large .v-radiobutton {
	position: relative;
	line-height: 19px;
	white-space: nowrap;
}

.telenor .v-select-optiongroup-large .v-radiobutton.v-has-width label {
	white-space: normal;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton {
	padding-left: 25px;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton label {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	cursor: pointer;
	display: inline-block;
}

:root .telenor .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 .telenor .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
	border-color: rgba(153, 153, 153, 0.3);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .telenor .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .telenor .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2px;
	font-size: 13px;
	text-align: center;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
	height: 19px;
	padding: 0 9px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	height: 19px;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	content: "\f00c";
	font-family: ThemeIcons;
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	-o-transition: color 100ms;
	transition: color 100ms;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
	background-color: rgba(125, 125, 125, 0.2);
}

:root .telenor .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-select-optiongroup-large .v-radiobutton > .v-icon, .telenor .v-select-optiongroup-large .v-radiobutton > label .v-icon {
	margin: 0 6px 0 3px;
	min-width: 1em;
	cursor: pointer;
}

.telenor .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .telenor .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
	cursor: default;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
	background: transparent;
}

.telenor .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .telenor .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
	cursor: default;
}

.telenor .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
	cursor: default;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
	background: transparent;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

:root .telenor .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
	width: 7px;
	height: 7px;
	top: 6px;
	left: 6px;
	background: rgba(153, 153, 153, 0.3);
}

:root .telenor .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .telenor .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
	border-radius: 50%;
	content: "";
}

.telenor .v-select-optiongroup-large .v-radiobutton, .telenor .v-select-optiongroup-large .v-checkbox {
	display: block;
	margin: 10px 14px 0 0;
}

.telenor .v-select-optiongroup-large .v-radiobutton:first-child, .telenor .v-select-optiongroup-large .v-checkbox:first-child {
	margin-top: 6px;
}

.telenor .v-select-optiongroup-large .v-radiobutton:last-child, .telenor .v-select-optiongroup-large .v-checkbox:last-child {
	margin-bottom: 6px;
}

.telenor .v-select-optiongroup-large.v-has-width label {
	white-space: normal;
}

.telenor .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.telenor .v-select-optiongroup-horizontal .v-radiobutton, .telenor .v-select-optiongroup-horizontal .v-checkbox {
	display: inline-block;
}

.telenor .v-select-optiongroup-horizontal.v-has-width {
	white-space: normal;
}

.telenor .v-select-optiongroup-horizontal.v-has-width label {
	white-space: nowrap;
}

.telenor .v-link {
	cursor: pointer;
	color: rgba(153, 153, 153, 0.3);
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-link:hover {
	color: rgba(179, 179, 179, 0.3);
}

.telenor .v-link.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-link a {
	cursor: pointer;
	color: rgba(153, 153, 153, 0.3);
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
	cursor: inherit;
	color: inherit;
	text-decoration: inherit;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}

.telenor .v-link a:hover {
	color: rgba(179, 179, 179, 0.3);
}

.telenor .v-link a.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-link .v-icon {
	cursor: inherit;
}

.telenor .v-link-small {
	font-size: 14px;
}

.telenor .v-link-large {
	font-size: 20px;
}

.telenor .v-window {
	padding: 4px 4px;
	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: 128px !important;
	min-height: 32px !important;
	white-space: nowrap;
	overflow: hidden !important;
	-webkit-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	-moz-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	-o-transition: width 200ms, height 200ms, top 200ms, left 200ms;
	transition: width 200ms, height 200ms, top 200ms, left 200ms;
}

.telenor .v-window[class*="animate-in"] {
	-webkit-animation: valo-animate-in-fade 140ms;
	-moz-animation: valo-animate-in-fade 140ms;
	animation: valo-animate-in-fade 140ms;
}

.telenor .v-window[class*="animate-out"] {
	-webkit-animation: valo-animate-out-scale-down-fade 100ms;
	-moz-animation: valo-animate-out-scale-down-fade 100ms;
	animation: valo-animate-out-scale-down-fade 100ms;
}

.telenor .v-window.v-window-animate-in {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.telenor .v-window-modalitycurtain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #222;
	background-image: -webkit-radial-gradient(50% 50%, circle, #222, #0e0e0e);
	background-image: radial-gradient(  circle at 50% 50%, #222, #0e0e0e);
	opacity: 0.72;
	filter: alpha(opacity=72) ;
	-webkit-animation: valo-animate-in-fade 400ms 100ms backwards;
	-moz-animation: valo-animate-in-fade 400ms 100ms backwards;
	animation: valo-animate-in-fade 400ms 100ms backwards;
}

.v-op12 .telenor .v-window-modalitycurtain {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.telenor .v-window-draggingCurtain {
	position: fixed !important;
}

.telenor .v-window-resizingCurtain + .v-window, .telenor .v-window-draggingCurtain + .v-window {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.telenor .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);
}

.telenor .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);
}

.telenor .v-window-header {
	line-height: 31px;
	padding-left: 11px;
	margin-right: 64px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #7e7e7e;
}

.telenor .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .telenor .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	margin-right: 32px;
}

.telenor .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .telenor .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
	margin-right: 11px;
}

.telenor .v-window-closebox, .telenor .v-window-maximizebox, .telenor .v-window-restorebox {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 28px;
	height: 31px;
	background-color: white;
	line-height: 29px;
	text-align: center;
	cursor: pointer;
	font-size: 18px;
	color: #999999;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-window-closebox:focus, .telenor .v-window-maximizebox:focus, .telenor .v-window-restorebox:focus {
	outline: none;
}

.telenor .v-window-closebox:hover, .telenor .v-window-maximizebox:hover, .telenor .v-window-restorebox:hover {
	opacity: 1;
	filter: none ;
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-window-closebox:active, .telenor .v-window-maximizebox:active, .telenor .v-window-restorebox:active {
	color: inherit;
}

.telenor .v-window-closebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 2px;
	border-radius: 2px;
}

.telenor .v-window-maximizebox:focus::after, .telenor .v-window-restorebox:focus::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 2px;
	bottom: 5px;
	left: 5px;
	border-radius: 2px;
}

.telenor .v-window-closebox {
	padding-right: 4px;
	border-radius: 0 2px 0 2px;
}

.telenor .v-window-closebox:before {
	content: "\00d7";
}

.telenor .v-window-maximizebox, .telenor .v-window-restorebox {
	right: 28px;
	padding-left: 4px;
	border-radius: 0 0 0 2px;
}

.telenor .v-window-maximizebox  + .v-window-closebox, .telenor .v-window-restorebox  + .v-window-closebox {
	border-bottom-left-radius: 0;
}

.telenor .v-window-closebox-disabled, .telenor .v-window-resizebox-disabled, .telenor .v-window-restorebox-disabled, .telenor .v-window-maximizebox-disabled {
	display: none;
}

.telenor .v-window-closebox-disabled  + .v-window-closebox, .telenor .v-window-resizebox-disabled  + .v-window-closebox, .telenor .v-window-restorebox-disabled  + .v-window-closebox, .telenor .v-window-maximizebox-disabled  + .v-window-closebox {
	width: 32px;
	padding-right: 0;
	border-bottom-left-radius: 2px;
}

.telenor .v-window-closebox-disabled  + .v-window-closebox:focus::after, .telenor .v-window-resizebox-disabled  + .v-window-closebox:focus::after, .telenor .v-window-restorebox-disabled  + .v-window-closebox:focus::after, .telenor .v-window-maximizebox-disabled  + .v-window-closebox:focus::after {
	left: 5px;
}

.telenor .v-window-maximizebox:before {
	content: "+";
}

.telenor .v-window-restorebox:before {
	content: "\2013";
}

.telenor .v-window > .popupContent, .telenor .v-window-wrap, .telenor .v-window-contents, .telenor .v-window-contents > .v-scrollable {
	height: 100%;
}

.telenor .v-window-contents {
	box-sizing: border-box;
	border-radius: 2px;
	margin-top: 0 !important;
}

.telenor .v-window-contents  > .v-scrollable {
	position: relative;
}

.telenor .v-window-contents  > .v-scrollable  > .v-margin-top {
	padding-top: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-margin-right {
	padding-right: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-margin-bottom {
	padding-bottom: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-margin-left {
	padding-left: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
	padding-top: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
	padding-bottom: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
	padding-left: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	left: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
	padding-right: 11px;
}

.telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .telenor .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
	right: 11px;
}

.telenor .v-window-contents  > .v-scrollable:focus {
	outline: none;
}

.telenor .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;
}

.telenor .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
	border-color: #dfdfdf;
}

.telenor .v-window-contents  > .v-scrollable .v-panel-content:before {
	border-color: white;
}

.telenor .v-window-footer {
	height: 0;
}

.telenor .v-window-resizebox {
	position: absolute;
	z-index: 1000;
	right: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	cursor: nwse-resize;
}

.telenor .v-window-modalitycurtain:active  ~ .v-window {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

.telenor .v-window-top-toolbar  > .v-widget, .telenor .v-window-bottom-toolbar  > .v-widget {
	vertical-align: top;
}

.telenor .v-window-top-toolbar .v-label, .telenor .v-window-bottom-toolbar .v-label {
	line-height: 31px;
}

.telenor .v-window-top-toolbar .v-spacing, .telenor .v-window-bottom-toolbar .v-spacing {
	width: 10px;
}

.telenor .v-window-top-toolbar.v-layout {
	padding: 6px 11px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	background-color: #fafafa;
}

.telenor .v-window-top-toolbar.v-menubar {
	margin: 11px 11px 5px;
}

.telenor .v-window-top-toolbar.v-menubar-borderless {
	padding-left: 5px;
	padding-right: 5px;
	margin: 4px 0;
}

.telenor .v-window-bottom-toolbar.v-layout {
	padding: 6px 11px;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #f0f0f0 0, #fafafa 3px);
	background-image: linear-gradient(to bottom,#f0f0f0 0, #fafafa 3px);
	border-top: 1px solid #dfdfdf;
	border-radius: 0 0 2px 2px;
}

.telenor .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
	box-sizing: content-box;
	margin: -11px -11px 0;
}

.telenor .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
	margin: 0;
}

.telenor .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
	margin: -6px -6px 0;
	padding: 0;
}

.telenor .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
	box-sizing: content-box;
	margin: 0 -11px -11px;
}

.telenor .v-tree {
	position: relative;
	white-space: nowrap;
}

.telenor .v-tree:focus {
	outline: none;
}

.telenor .v-tree-node:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 3;
	width: 1.9em;
	height: 25px;
	cursor: pointer;
	background: red;
	opacity: 0;
}

.telenor .v-tree-node-caption {
	height: 25px;
	line-height: 24px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.telenor .v-tree-node-caption > div {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.telenor .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;
	-o-transition: all 100ms;
	transition: all 100ms;
}

.telenor .v-tree-node-caption span {
	padding-right: 25px;
	cursor: pointer;
	display: inline-block;
	width: 100%;
}

.v-ie .telenor .v-tree-node-caption span {
	width: auto;
}

.telenor .v-tree-node-caption .v-icon {
	padding-right: 0;
	width: auto;
	min-width: 1em;
}

.telenor .v-tree-node-caption:after {
	content: "";
	display: block;
	vertical-align: top;
	position: absolute;
	z-index: 1;
	left: 0;
	margin-top: -25px;
	width: 100%;
	height: 25px;
	border-radius: 2px;
	opacity: 0;
	-webkit-transition: opacity 120ms;
	-moz-transition: opacity 120ms;
	-o-transition: opacity 120ms;
	transition: opacity 120ms;
}

.telenor .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;
}

.telenor .v-tree-node-leaf:before, .telenor .v-tree-node-leaf > .v-tree-node-caption > div:before {
	visibility: hidden;
}

.telenor .v-tree-node-focused:after {
	opacity: 1;
	border: 1px solid rgba(153, 153, 153, 0.3);
}

.telenor .v-tree-node-selected {
	color: rgba(15, 15, 15, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-tree-node-selected:after {
	opacity: 1;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	border: none;
}

.telenor .v-tree-node-children {
	padding-left: 16px;
}

.telenor .v-tree-node-drag-top:before, .telenor .v-tree-node-drag-bottom:after, .telenor .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: rgba(153, 153, 153, 0.3);
	font-size: 28px;
	line-height: 2px;
	color: rgba(153, 153, 153, 0.3);
	text-indent: -4px;
	text-shadow: 0 0 1px #fafafa, 0 0 1px #fafafa;
	opacity: 1;
	visibility: visible;
}

.telenor .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
	content: none;
}

.telenor .v-tree-node-caption-drag-center {
	-webkit-box-shadow: 0 0 0 2px rgba(153, 153, 153, 0.3);
	box-shadow: 0 0 0 2px rgba(153, 153, 153, 0.3);
	position: relative;
	border-radius: 2px;
}

.v-ff .telenor .v-tree-node-drag-top:before, .v-ff .telenor .v-tree-node-drag-bottom:after {
	line-height: 1px;
}

.telenor .v-tree8 {
	position: relative;
}

.telenor .v-tree8-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.telenor .v-tree8-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.telenor .v-tree8-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.telenor .v-tree8-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.telenor .v-tree8-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.telenor .v-tree8-header-deco, .telenor .v-tree8-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.telenor .v-tree8-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.telenor .v-tree8-header, .telenor .v-tree8-body, .telenor .v-tree8-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.telenor .v-tree8-header, .telenor .v-tree8-header-deco {
	top: 0;
}

.telenor .v-tree8-footer, .telenor .v-tree8-footer-deco {
	bottom: 0;
}

.telenor .v-tree8-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.telenor .v-tree8-body .v-tree8-row {
	position: absolute;
	top: 0;
	left: 0;
}

.telenor .v-tree8-body .v-tree8-header > .v-tree8-row {
	position: relative;
}

.telenor .v-tree8-row {
	display: block;
}

.telenor .v-tree8-row  > td, .telenor .v-tree8-row  > th {
	background-color: white;
}

.telenor .v-tree8-row {
	width: inherit;
}

.telenor .v-tree8-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.telenor .v-tree8-cell.frozen {
	position: relative;
	z-index: 1;
}

.telenor .v-tree8-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.telenor .v-tree8-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.telenor .v-tree8 {
	outline: none;
}

.telenor .v-tree8-scroller-vertical, .telenor .v-tree8-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.telenor .v-tree8-scroller-vertical {
	border-left: none;
}

.telenor .v-tree8-scroller-horizontal {
	border-top: none;
}

.telenor .v-tree8-tablewrapper {
	border: 1px solid #d4d4d4;
}

.telenor .v-tree8 .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.telenor .v-tree8 .header-drag-table .v-tree8-header {
	position: absolute;
}

.telenor .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;
}

.telenor .v-tree8 .header-drag-table .v-tree8-header  > .v-tree8-drop-marker {
	background-color: rgba(153, 153, 153, 0.3);
	position: absolute;
	width: 3px;
}

.telenor .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;
}

.telenor .v-tree8-sidebar.v-contextmenu.v-tree8-sidebar-popup {
	right: auto;
}

.telenor .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;
}

.telenor .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button[disabled] {
	cursor: default;
}

.telenor .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button::-moz-focus-inner {
	border: 0;
}

.telenor .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 12px;
}

.telenor .v-tree8-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.telenor .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	width: 100%;
}

.telenor .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .telenor .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-button {
	vertical-align: middle;
}

.telenor .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.telenor .v-tree8-sidebar.v-contextmenu .v-tree8-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.telenor .v-tree8-cell {
	background-color: white;
	padding: 0 16.5px;
	line-height: 32px;
	text-overflow: ellipsis;
}

.telenor .v-tree8-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.telenor .v-tree8-cell  > div {
	display: inline-block;
}

.telenor .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;
}

.telenor .v-tree8-cell.frozen  + th, .telenor .v-tree8-cell.frozen  + td {
	border-left: none;
}

.telenor .v-tree8-cell div.component-wrap {
	width: 100%;
}

.telenor .v-tree8-row > td, .telenor .v-tree8-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.telenor .v-tree8-row > td:first-child, .telenor .v-tree8-editor-cells > div:first-child {
	border-left: none;
}

.telenor .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;
}

.telenor .v-tree8-row-stripe > td {
	background-color: #f5f5f5;
}

.telenor .v-tree8-row-selected > td {
	background: rgba(153, 153, 153, 0.3);
}

.telenor .v-tree8-row-focused > td {
	
}

.telenor .v-tree8-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.telenor .v-tree8-header th:first-child {
	border-left: none;
}

.telenor .v-tree8-header .sort-asc, .telenor .v-tree8-header .sort-desc {
	padding-right: 30.5px;
}

.telenor .v-tree8-header .sort-asc:after, .telenor .v-tree8-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 16.5px;
	font-size: 10px;
}

.telenor .v-tree8-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.telenor .v-tree8-column-resize-handle {
	position: absolute;
	width: 33px;
	right: -16.5px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.telenor .v-tree8-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 16.5px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.telenor .v-tree8-footer td {
	background-color: #fafafa;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.telenor .v-tree8-footer td:first-child {
	border-left: none;
}

.telenor .v-tree8-header .v-tree8-cell, .telenor .v-tree8-footer .v-tree8-cell {
	overflow: visible;
}

.telenor .v-tree8-column-header-content, .telenor .v-tree8-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	vertical-align: baseline;
}

.telenor .v-tree8-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.telenor .v-tree8-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.telenor .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.telenor .v-tree8-cell-focused {
	position: relative;
}

.telenor .v-tree8-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid rgba(153, 153, 153, 0.3);
	display: none;
	pointer-events: none;
}

.telenor .v-tree8:focus .v-tree8-cell-focused:before {
	display: block;
}

.telenor .v-tree8.v-disabled:focus .v-tree8-cell-focused:before {
	display: none;
}

.telenor .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);
}

.telenor .v-tree8-editor.unbuffered .v-tree8-editor-footer {
	width: 100%;
}

.telenor .v-tree8-editor-cells {
	position: relative;
	white-space: nowrap;
}

.telenor .v-tree8-editor-cells.frozen {
	z-index: 2;
}

.telenor .v-tree8-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.telenor .v-tree8-editor-cells  > div:first-child {
	border-left: none;
}

.telenor .v-tree8-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.telenor .v-tree8-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.telenor .v-tree8-editor-cells  > div input[type="text"], .telenor .v-tree8-editor-cells  > div input[type="text"].v-filterselect-input, .telenor .v-tree8-editor-cells  > div input[type="password"] {
	padding-left: 16.5px;
}

.telenor .v-tree8-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .telenor .v-tree8-editor-cells  > div input[type="password"] {
	padding-right: 8.25px;
}

.telenor .v-tree8-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 16.5px;
}

.telenor .v-tree8-editor-cells  > div .v-textfield, .telenor .v-tree8-editor-cells  > div .v-datefield, .telenor .v-tree8-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.telenor .v-tree8-editor-cells  > div .v-select, .telenor .v-tree8-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.telenor .v-tree8-editor-cells  > div.not-editable.v-tree8-cell {
	float: none;
}

.telenor .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;
}

.telenor .v-tree8-editor-cells .error, .telenor .v-tree8-editor-cells .error > input {
	background-color: #fee;
}

.telenor .v-tree8-editor-footer {
	display: table;
	height: 32px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.telenor .v-tree8-editor-footer  + .v-tree8-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.telenor .v-tree8-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.telenor .v-tree8-editor-message, .telenor .v-tree8-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.telenor .v-tree8-editor-message {
	width: 100%;
	position: relative;
}

.telenor .v-tree8-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	top: 0;
}

.telenor .v-tree8-editor-save {
	margin-right: 4px;
}

.telenor .v-tree8-spacer {
	padding-left: 1px;
}

.telenor .v-tree8-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.telenor .v-tree8-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.telenor .v-tree8-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.telenor .v-tree8-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: rgba(153, 153, 153, 0.3);
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.telenor .v-tree8-cell > .v-progressbar {
	width: 100%;
}

.telenor .v-tree8 {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.telenor .v-tree8.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-tree8-header .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .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;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.telenor .v-tree8-header .v-tree8-cell.dragged-column-header {
	margin-top: -16px;
}

.telenor .v-tree8-footer .v-tree8-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-tree8-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.telenor .v-tree8-footer-deco, .telenor .v-tree8-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.telenor .v-tree8-row-selected  > .v-tree8-cell {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(43, 43, 43, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-color: rgba(133, 133, 133, 0.3);
}

.telenor .v-tree8-row-selected  > .v-tree8-cell-focused:before {
	border-color: rgba(204, 204, 204, 0.3);
}

.telenor .v-tree8-editor {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-tree8-editor-footer {
	font-size: 14px;
	padding: 0 10px;
	background: #ffffff;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.telenor .v-tree8-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.telenor .v-tree8-editor-cells {
	z-index: 1;
}

.telenor .v-tree8-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.telenor .v-tree8-editor-cells > div.not-editable.v-tree8-cell {
	float: none;
}

.telenor .v-tree8-editor-cells > div .error::before {
	border-top: 8px solid #e32119;
	border-right: 8px solid transparent;
}

.telenor .v-tree8-editor-cells > div .error, .telenor .v-tree8-editor-cells > div .error > input {
	background-color: #fefbfa;
}

.telenor .v-tree8-editor-cells > div .v-textfield, .telenor .v-tree8-editor-cells > div .v-textfield-focus, .telenor .v-tree8-editor-cells > div .v-datefield, .telenor .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .telenor .v-tree8-editor-cells > div .v-filterselect-input, .telenor .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;
}

.telenor .v-tree8-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 38.4px;
}

.telenor .v-tree8-editor-cells > div .v-textfield-focus, .telenor .v-tree8-editor-cells > div .v-datefield .v-textfield-focus, .telenor .v-tree8-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.telenor .v-tree8-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.telenor .v-tree8-editor-cells > div .v-checkbox.v-widget {
	margin: 0 8px 0 16.5px;
}

.telenor .v-tree8-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.telenor .v-tree8-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.telenor .v-tree8-editor-message > div:before {
	display: inline-block;
	color: #e32119;
	font-weight: 600;
	width: 16px;
	text-align: center;
	content: "!";
}

.telenor .v-tree8-editor-save, .telenor .v-tree8-editor-cancel {
	cursor: pointer;
	color: rgba(153, 153, 153, 0.3);
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 10px 10px;
	margin: 0;
	outline: none;
}

.telenor .v-tree8-editor-save:hover, .telenor .v-tree8-editor-cancel:hover {
	color: rgba(179, 179, 179, 0.3);
}

.telenor .v-tree8-editor-save.v-disabled, .telenor .v-tree8-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-tree8-spacer {
	margin-top: -1px;
}

.telenor .v-tree8-sidebar.v-contextmenu.open .v-tree8-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.telenor .v-tree8-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.telenor .v-tree8-scroller::-webkit-scrollbar {
	border: none;
}

.telenor .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;
}

.telenor .v-tree8-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.telenor .v-tree8-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.telenor .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;
}

.telenor .v-tree8-row-drag-top, .telenor .v-tree8-row-drag-bottom {
	z-index: 100;
}

.telenor .v-tree8-row-drag-top:before, .telenor .v-tree8-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: rgba(153, 153, 153, 0.3);
	pointer-events: none;
	border: none;
}

.telenor .v-tree8-row-drag-bottom:after {
	bottom: -1px;
}

.telenor .v-tree8-row-drag-top:before {
	top: -1px;
}

.telenor .v-tree8-row-drag-top:first-child:before {
	top: 0;
}

.telenor .v-tree8-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid rgba(153, 153, 153, 0.3);
	pointer-events: none;
}

.telenor .v-tree8-row-selected.v-tree8-row-drag-center:after {
	border-color: rgba(128, 128, 128, 0.3);
}

.telenor .v-tree8-row-selected.v-tree8-row-drag-top:before, .telenor .v-tree8-row-selected.v-tree8-row-drag-bottom:after {
	background: rgba(128, 128, 128, 0.3);
}

.telenor .v-tree8-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid rgba(153, 153, 153, 0.3);
	z-index: 100;
}

.telenor .v-tree8-expander {
	display: inline-block;
	vertical-align: top;
}

.telenor .v-tree8-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.telenor .v-tree8-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.telenor .v-tree8-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.telenor .v-tree8-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.telenor .v-tree8-node.depth-0 {
	padding-left: 0em;
}

.telenor .v-tree8-node.depth-1 {
	padding-left: 1em;
}

.telenor .v-tree8-node.depth-2 {
	padding-left: 2em;
}

.telenor .v-tree8-node.depth-3 {
	padding-left: 3em;
}

.telenor .v-tree8-node.depth-4 {
	padding-left: 4em;
}

.telenor .v-tree8-node.depth-5 {
	padding-left: 5em;
}

.telenor .v-tree8-node.depth-6 {
	padding-left: 6em;
}

.telenor .v-tree8-node.depth-7 {
	padding-left: 7em;
}

.telenor .v-tree8-node.depth-8 {
	padding-left: 8em;
}

.telenor .v-tree8-node.depth-9 {
	padding-left: 9em;
}

.telenor .v-tree8-node.depth-10 {
	padding-left: 10em;
}

.telenor .v-tree8-node.depth-11 {
	padding-left: 11em;
}

.telenor .v-tree8-node.depth-12 {
	padding-left: 12em;
}

.telenor .v-tree8-node.depth-13 {
	padding-left: 13em;
}

.telenor .v-tree8-node.depth-14 {
	padding-left: 14em;
}

.telenor .v-tree8-node.depth-15 {
	padding-left: 15em;
}

.telenor .v-tree8-node.depth-16 {
	padding-left: 16em;
}

.telenor .v-tree8-node.depth-17 {
	padding-left: 17em;
}

.telenor .v-tree8-node.depth-18 {
	padding-left: 18em;
}

.telenor .v-tree8-node.depth-19 {
	padding-left: 19em;
}

.telenor .v-tree8-node.depth-20 {
	padding-left: 20em;
}

.telenor .v-tree8-node.depth-21 {
	padding-left: 21em;
}

.telenor .v-tree8-node.depth-22 {
	padding-left: 22em;
}

.telenor .v-tree8-node.depth-23 {
	padding-left: 23em;
}

.telenor .v-tree8-node.depth-24 {
	padding-left: 24em;
}

.telenor .v-tree8-node.depth-25 {
	padding-left: 25em;
}

.telenor .v-tree8-node.depth-26 {
	padding-left: 26em;
}

.telenor .v-tree8-node.depth-27 {
	padding-left: 27em;
}

.telenor .v-tree8-node.depth-28 {
	padding-left: 28em;
}

.telenor .v-tree8-node.depth-29 {
	padding-left: 29em;
}

.telenor .v-tree8-node.depth-30 {
	padding-left: 30em;
}

.telenor .v-tree8-node.depth-31 {
	padding-left: 31em;
}

.telenor .v-tree8-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.telenor .v-tree8-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid rgba(153, 153, 153, 0.3);
	display: none;
	pointer-events: none;
}

.telenor .v-tree8-cell-focused {
	position: static;
}

.telenor .v-tree8-cell-focused::before {
	display: none;
}

.telenor .v-tree8:focus .v-tree8-row-focused::before {
	display: block;
}

.telenor .v-tree8.v-disabled:focus .v-tree8-row-focused::before {
	display: none;
}

.telenor .v-tree8:focus .v-tree8-cell-focused::before {
	display: none;
}

.telenor .v-tree8 {
	background-color: transparent;
}

.telenor .v-tree8-row > td {
	background-color: transparent;
	border: 0;
	line-height: 28px;
}

.telenor .v-tree8-row > td  > * {
	vertical-align: baseline;
}

.telenor .v-tree8-tablewrapper {
	background-color: transparent;
	border: none;
}

.telenor .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;
}

.telenor .v-tree8-cell {
	position: relative;
}

.telenor .v-tree8-row-selected  > .v-tree8-cell {
	background: transparent;
}

.telenor .v-tree8-row-selected::before {
	display: block;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
}

.telenor .v-tree8:focus .v-tree8-row-selected.v-tree8-row-focused::before {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px rgba(43, 43, 43, 0.3);
}

.telenor .v-tree8-scroller-vertical {
	border: none;
}

.telenor .v-tree8-scroller-horizontal {
	border: none;
}

.telenor .v-tree8-header-deco, .telenor .v-tree8-footer-deco, .telenor .v-tree8-horizontal-scrollbar-deco {
	border: none;
	background: transparent;
}

.telenor .v-treegrid {
	position: relative;
}

.telenor .v-treegrid-scroller {
	position: absolute;
	z-index: 1;
	outline: none;
	box-sizing: border-box;
}

.telenor .v-treegrid-scroller-horizontal {
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	-ms-overflow-y: hidden;
}

.telenor .v-treegrid-scroller-vertical {
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}

.telenor .v-treegrid-tablewrapper {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 5;
}

.telenor .v-treegrid-tablewrapper > table {
	border-spacing: 0;
	table-layout: fixed;
	width: inherit;
}

.telenor .v-treegrid-header-deco, .telenor .v-treegrid-footer-deco {
	position: absolute;
	right: 0;
	box-sizing: border-box;
}

.telenor .v-treegrid-horizontal-scrollbar-deco {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
}

.telenor .v-treegrid-header, .telenor .v-treegrid-body, .telenor .v-treegrid-footer {
	position: absolute;
	left: 0;
	width: inherit;
	z-index: 10;
}

.telenor .v-treegrid-header, .telenor .v-treegrid-header-deco {
	top: 0;
}

.telenor .v-treegrid-footer, .telenor .v-treegrid-footer-deco {
	bottom: 0;
}

.telenor .v-treegrid-body {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;
	top: 0;
}

.telenor .v-treegrid-body .v-treegrid-row {
	position: absolute;
	top: 0;
	left: 0;
}

.telenor .v-treegrid-body .v-treegrid-header > .v-treegrid-row {
	position: relative;
}

.telenor .v-treegrid-row {
	display: block;
}

.telenor .v-treegrid-row  > td, .telenor .v-treegrid-row  > th {
	background-color: white;
}

.telenor .v-treegrid-row {
	width: inherit;
}

.telenor .v-treegrid-cell {
	display: block;
	float: left;
	padding: 2px;
	white-space: nowrap;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 14px;
}

.telenor .v-treegrid-cell.frozen {
	position: relative;
	z-index: 1;
}

.telenor .v-treegrid-spacer {
	position: absolute;
	display: block;
	background-color: white;
}

.telenor .v-treegrid-spacer  > td {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.telenor .v-treegrid {
	outline: none;
}

.telenor .v-treegrid-scroller-vertical, .telenor .v-treegrid-scroller-horizontal {
	border: 1px solid #d4d4d4;
}

.telenor .v-treegrid-scroller-vertical {
	border-left: none;
}

.telenor .v-treegrid-scroller-horizontal {
	border-top: none;
}

.telenor .v-treegrid-tablewrapper {
	border: 1px solid #d4d4d4;
}

.telenor .v-treegrid .header-drag-table {
	border-spacing: 0;
	position: relative;
	table-layout: fixed;
	width: inherit;
}

.telenor .v-treegrid .header-drag-table .v-treegrid-header {
	position: absolute;
}

.telenor .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;
}

.telenor .v-treegrid .header-drag-table .v-treegrid-header  > .v-treegrid-drop-marker {
	background-color: rgba(153, 153, 153, 0.3);
	position: absolute;
	width: 3px;
}

.telenor .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;
}

.telenor .v-treegrid-sidebar.v-contextmenu.v-treegrid-sidebar-popup {
	right: auto;
}

.telenor .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;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button[disabled] {
	cursor: default;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::-moz-focus-inner {
	border: 0;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	display: block;
	font-family: ThemeIcons, sans-serif;
	font-size: 12px;
}

.telenor .v-treegrid-sidebar.v-contextmenu.closed {
	border-radius: 0;
}

.telenor .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	width: 100%;
}

.telenor .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button:after {
	content: "\f0c9";
	font-size: 12px;
	line-height: 1;
}

.v-ie .telenor .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button {
	vertical-align: middle;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content {
	padding: 4px 0;
	overflow-y: auto;
	overflow-x: hidden;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
	text-shadow: none;
}

.telenor .v-treegrid-cell {
	background-color: white;
	padding: 0 16.5px;
	line-height: 32px;
	text-overflow: ellipsis;
}

.telenor .v-treegrid-cell  > * {
	line-height: 1.55;
	vertical-align: middle;
}

.telenor .v-treegrid-cell  > div {
	display: inline-block;
}

.telenor .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;
}

.telenor .v-treegrid-cell.frozen  + th, .telenor .v-treegrid-cell.frozen  + td {
	border-left: none;
}

.telenor .v-treegrid-cell div.component-wrap {
	width: 100%;
}

.telenor .v-treegrid-row > td, .telenor .v-treegrid-editor-cells > div {
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}

.telenor .v-treegrid-row > td:first-child, .telenor .v-treegrid-editor-cells > div:first-child {
	border-left: none;
}

.telenor .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;
}

.telenor .v-treegrid-row-stripe > td {
	background-color: #f5f5f5;
}

.telenor .v-treegrid-row-selected > td {
	background: rgba(153, 153, 153, 0.3);
}

.telenor .v-treegrid-row-focused > td {
	
}

.telenor .v-treegrid-header th {
	position: relative;
	background-color: #fafafa;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	
	text-align: left;
}

.telenor .v-treegrid-header th:first-child {
	border-left: none;
}

.telenor .v-treegrid-header .sort-asc, .telenor .v-treegrid-header .sort-desc {
	padding-right: 30.5px;
}

.telenor .v-treegrid-header .sort-asc:after, .telenor .v-treegrid-header .sort-desc:after {
	font-family: ThemeIcons, sans-serif;
	content: "\f0de" " " attr(sort-order);
	position: absolute;
	right: 16.5px;
	font-size: 10px;
}

.telenor .v-treegrid-header .sort-desc:after {
	content: "\f0dd" " " attr(sort-order);
}

.telenor .v-treegrid-column-resize-handle {
	position: absolute;
	width: 33px;
	right: -16.5px;
	top: 0px;
	bottom: 0px;
	cursor: col-resize;
	z-index: 10;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.telenor .v-treegrid-column-resize-simple-indicator {
	position: absolute;
	width: 3px;
	top: 0px;
	left: 16.5px;
	z-index: 9001;
	background: #fff;
	box-shadow: 0px 0px 5px #000;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.telenor .v-treegrid-footer td {
	background-color: #fafafa;
	font-size: 12px;
	font-weight: inherit;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-bottom: none;
	
}

.telenor .v-treegrid-footer td:first-child {
	border-left: none;
}

.telenor .v-treegrid-header .v-treegrid-cell, .telenor .v-treegrid-footer .v-treegrid-cell {
	overflow: visible;
}

.telenor .v-treegrid-column-header-content, .telenor .v-treegrid-column-footer-content {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	vertical-align: baseline;
}

.telenor .v-treegrid-header-deco {
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.telenor .v-treegrid-footer-deco {
	border-bottom: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	background-color: #fafafa;
}

.telenor .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	border: 1px solid #d4d4d4;
	border-top: none;
}

.telenor .v-treegrid-cell-focused {
	position: relative;
}

.telenor .v-treegrid-cell-focused:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid rgba(153, 153, 153, 0.3);
	display: none;
	pointer-events: none;
}

.telenor .v-treegrid:focus .v-treegrid-cell-focused:before {
	display: block;
}

.telenor .v-treegrid.v-disabled:focus .v-treegrid-cell-focused:before {
	display: none;
}

.telenor .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);
}

.telenor .v-treegrid-editor.unbuffered .v-treegrid-editor-footer {
	width: 100%;
}

.telenor .v-treegrid-editor-cells {
	position: relative;
	white-space: nowrap;
}

.telenor .v-treegrid-editor-cells.frozen {
	z-index: 2;
}

.telenor .v-treegrid-editor-cells  > div {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	background: white;
}

.telenor .v-treegrid-editor-cells  > div:first-child {
	border-left: none;
}

.telenor .v-treegrid-editor-cells  > div  > * {
	vertical-align: middle;
	display: inline-block;
}

.telenor .v-treegrid-editor-cells  > div .v-filterselect {
	padding-left: 0;
}

.telenor .v-treegrid-editor-cells  > div input[type="text"], .telenor .v-treegrid-editor-cells  > div input[type="text"].v-filterselect-input, .telenor .v-treegrid-editor-cells  > div input[type="password"] {
	padding-left: 16.5px;
}

.telenor .v-treegrid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .telenor .v-treegrid-editor-cells  > div input[type="password"] {
	padding-right: 8.25px;
}

.telenor .v-treegrid-editor-cells  > div :not(.v-assistive-device-only-label).v-widget > input[type="checkbox"] {
	margin-left: 16.5px;
}

.telenor .v-treegrid-editor-cells  > div .v-textfield, .telenor .v-treegrid-editor-cells  > div .v-datefield, .telenor .v-treegrid-editor-cells  > div .v-filterselect {
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}

.telenor .v-treegrid-editor-cells  > div .v-select, .telenor .v-treegrid-editor-cells  > div .v-select-select {
	min-width: 100%;
	max-width: 100%;
}

.telenor .v-treegrid-editor-cells  > div.not-editable.v-treegrid-cell {
	float: none;
}

.telenor .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;
}

.telenor .v-treegrid-editor-cells .error, .telenor .v-treegrid-editor-cells .error > input {
	background-color: #fee;
}

.telenor .v-treegrid-editor-footer {
	display: table;
	height: 32px;
	border-top: 1px solid #d4d4d4;
	margin-top: -1px;
	background: white;
	padding: 0 5px;
}

.telenor .v-treegrid-editor-footer  + .v-treegrid-editor-cells > div {
	border-bottom: none;
	border-top: 1px solid #d4d4d4;
}

.telenor .v-treegrid-editor-footer:first-child {
	border-top: none;
	margin-top: 0;
	border-bottom: 1px solid #d4d4d4;
	margin-bottom: -1px;
}

.telenor .v-treegrid-editor-message, .telenor .v-treegrid-editor-buttons {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

.telenor .v-treegrid-editor-message {
	width: 100%;
	position: relative;
}

.telenor .v-treegrid-editor-message  > div {
	position: absolute;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 32px;
	top: 0;
}

.telenor .v-treegrid-editor-save {
	margin-right: 4px;
}

.telenor .v-treegrid-spacer {
	padding-left: 1px;
}

.telenor .v-treegrid-spacer > td {
	display: block;
	padding: 0;
	background-color: white;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #d4d4d4;
}

.telenor .v-treegrid-spacer.stripe > td {
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #d4d4d4;
}

.telenor .v-treegrid-spacer-deco-container {
	border-top: 1px solid transparent;
	position: relative;
	top: 0;
	z-index: 5;
}

.telenor .v-treegrid-spacer-deco {
	top: 0;
	left: 0;
	width: 2px;
	background-color: rgba(153, 153, 153, 0.3);
	position: absolute;
	height: 100%;
	pointer-events: none;
}

.telenor .v-treegrid-cell > .v-progressbar {
	width: 100%;
}

.telenor .v-treegrid {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	background-color: #fafafa;
}

.telenor .v-treegrid.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-treegrid-header .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .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;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.telenor .v-treegrid-header .v-treegrid-cell.dragged-column-header {
	margin-top: -16px;
}

.telenor .v-treegrid-footer .v-treegrid-cell {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-treegrid-header-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.telenor .v-treegrid-footer-deco, .telenor .v-treegrid-horizontal-scrollbar-deco {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.telenor .v-treegrid-row-selected  > .v-treegrid-cell {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(43, 43, 43, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-color: rgba(133, 133, 133, 0.3);
}

.telenor .v-treegrid-row-selected  > .v-treegrid-cell-focused:before {
	border-color: rgba(204, 204, 204, 0.3);
}

.telenor .v-treegrid-editor {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-treegrid-editor-footer {
	font-size: 14px;
	padding: 0 10px;
	background: #ffffff;
	-webkit-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in 200ms 120ms backwards;
}

.telenor .v-treegrid-editor-footer:first-child {
	-webkit-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	-moz-animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
	animation: valo-grid-editor-footer-animate-in-alt 200ms 120ms backwards;
}

.telenor .v-treegrid-editor-cells {
	z-index: 1;
}

.telenor .v-treegrid-editor-cells > div:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.telenor .v-treegrid-editor-cells > div.not-editable.v-treegrid-cell {
	float: none;
}

.telenor .v-treegrid-editor-cells > div .error::before {
	border-top: 8px solid #e32119;
	border-right: 8px solid transparent;
}

.telenor .v-treegrid-editor-cells > div .error, .telenor .v-treegrid-editor-cells > div .error > input {
	background-color: #fefbfa;
}

.telenor .v-treegrid-editor-cells > div .v-textfield, .telenor .v-treegrid-editor-cells > div .v-textfield-focus, .telenor .v-treegrid-editor-cells > div .v-datefield, .telenor .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .telenor .v-treegrid-editor-cells > div .v-filterselect-input, .telenor .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;
}

.telenor .v-treegrid-editor-cells > div input[type="text"].v-datefield-textfield {
	padding-left: 38.4px;
}

.telenor .v-treegrid-editor-cells > div .v-textfield-focus, .telenor .v-treegrid-editor-cells > div .v-datefield .v-textfield-focus, .telenor .v-treegrid-editor-cells > div .v-filterselect-input:focus {
	position: relative;
}

.telenor .v-treegrid-editor-cells > div .v-select {
	padding-left: 8px;
	padding-right: 8px;
}

.telenor .v-treegrid-editor-cells > div .v-checkbox.v-widget {
	margin: 0 8px 0 16.5px;
}

.telenor .v-treegrid-editor-cells > div .v-checkbox.v-widget  > input[type="checkbox"] {
	margin-left: 0;
}

.telenor .v-treegrid-editor-cells > div .v-checkbox.v-widget  > label {
	white-space: nowrap;
}

.telenor .v-treegrid-editor-message > div:before {
	display: inline-block;
	color: #e32119;
	font-weight: 600;
	width: 16px;
	text-align: center;
	content: "!";
}

.telenor .v-treegrid-editor-save, .telenor .v-treegrid-editor-cancel {
	cursor: pointer;
	color: rgba(153, 153, 153, 0.3);
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background: transparent;
	padding: 10px 10px;
	margin: 0;
	outline: none;
}

.telenor .v-treegrid-editor-save:hover, .telenor .v-treegrid-editor-cancel:hover {
	color: rgba(179, 179, 179, 0.3);
}

.telenor .v-treegrid-editor-save.v-disabled, .telenor .v-treegrid-editor-cancel.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-treegrid-spacer {
	margin-top: -1px;
}

.telenor .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	margin: 0 0 2px;
	padding: 4px 4px 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.telenor .v-treegrid-sidebar.v-contextmenu.closed {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
}

.telenor .v-treegrid-scroller::-webkit-scrollbar {
	border: none;
}

.telenor .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;
}

.telenor .v-treegrid-scroller-vertical::-webkit-scrollbar-thumb {
	min-height: 30px;
}

.telenor .v-treegrid-scroller-horizontal::-webkit-scrollbar-thumb {
	min-width: 30px;
}

.telenor .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;
}

.telenor .v-treegrid-row-drag-top, .telenor .v-treegrid-row-drag-bottom {
	z-index: 100;
}

.telenor .v-treegrid-row-drag-top:before, .telenor .v-treegrid-row-drag-bottom:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: rgba(153, 153, 153, 0.3);
	pointer-events: none;
	border: none;
}

.telenor .v-treegrid-row-drag-bottom:after {
	bottom: -1px;
}

.telenor .v-treegrid-row-drag-top:before {
	top: -1px;
}

.telenor .v-treegrid-row-drag-top:first-child:before {
	top: 0;
}

.telenor .v-treegrid-row-drag-center:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 2px;
	border: 2px solid rgba(153, 153, 153, 0.3);
	pointer-events: none;
}

.telenor .v-treegrid-row-selected.v-treegrid-row-drag-center:after {
	border-color: rgba(128, 128, 128, 0.3);
}

.telenor .v-treegrid-row-selected.v-treegrid-row-drag-top:before, .telenor .v-treegrid-row-selected.v-treegrid-row-drag-bottom:after {
	background: rgba(128, 128, 128, 0.3);
}

.telenor .v-treegrid-body-drag-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 2px solid rgba(153, 153, 153, 0.3);
	z-index: 100;
}

.telenor .v-treegrid-expander {
	display: inline-block;
	vertical-align: top;
}

.telenor .v-treegrid-expander::before {
	display: inline-block;
	width: 1.5em;
	text-align: center;
	content: "";
}

.telenor .v-treegrid-expander.expanded::before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.telenor .v-treegrid-expander.collapsed::before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.telenor .v-treegrid-expander.collapse-disabled::before {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
}

.telenor .v-treegrid-node.depth-0 {
	padding-left: 0em;
}

.telenor .v-treegrid-node.depth-1 {
	padding-left: 1em;
}

.telenor .v-treegrid-node.depth-2 {
	padding-left: 2em;
}

.telenor .v-treegrid-node.depth-3 {
	padding-left: 3em;
}

.telenor .v-treegrid-node.depth-4 {
	padding-left: 4em;
}

.telenor .v-treegrid-node.depth-5 {
	padding-left: 5em;
}

.telenor .v-treegrid-node.depth-6 {
	padding-left: 6em;
}

.telenor .v-treegrid-node.depth-7 {
	padding-left: 7em;
}

.telenor .v-treegrid-node.depth-8 {
	padding-left: 8em;
}

.telenor .v-treegrid-node.depth-9 {
	padding-left: 9em;
}

.telenor .v-treegrid-node.depth-10 {
	padding-left: 10em;
}

.telenor .v-treegrid-node.depth-11 {
	padding-left: 11em;
}

.telenor .v-treegrid-node.depth-12 {
	padding-left: 12em;
}

.telenor .v-treegrid-node.depth-13 {
	padding-left: 13em;
}

.telenor .v-treegrid-node.depth-14 {
	padding-left: 14em;
}

.telenor .v-treegrid-node.depth-15 {
	padding-left: 15em;
}

.telenor .v-treegrid-node.depth-16 {
	padding-left: 16em;
}

.telenor .v-treegrid-node.depth-17 {
	padding-left: 17em;
}

.telenor .v-treegrid-node.depth-18 {
	padding-left: 18em;
}

.telenor .v-treegrid-node.depth-19 {
	padding-left: 19em;
}

.telenor .v-treegrid-node.depth-20 {
	padding-left: 20em;
}

.telenor .v-treegrid-node.depth-21 {
	padding-left: 21em;
}

.telenor .v-treegrid-node.depth-22 {
	padding-left: 22em;
}

.telenor .v-treegrid-node.depth-23 {
	padding-left: 23em;
}

.telenor .v-treegrid-node.depth-24 {
	padding-left: 24em;
}

.telenor .v-treegrid-node.depth-25 {
	padding-left: 25em;
}

.telenor .v-treegrid-node.depth-26 {
	padding-left: 26em;
}

.telenor .v-treegrid-node.depth-27 {
	padding-left: 27em;
}

.telenor .v-treegrid-node.depth-28 {
	padding-left: 28em;
}

.telenor .v-treegrid-node.depth-29 {
	padding-left: 29em;
}

.telenor .v-treegrid-node.depth-30 {
	padding-left: 30em;
}

.telenor .v-treegrid-node.depth-31 {
	padding-left: 31em;
}

.telenor .v-treegrid-cell-content {
	display: inline-block;
	vertical-align: middle;
}

.telenor .v-treegrid-row-focused::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px solid rgba(153, 153, 153, 0.3);
	display: none;
	pointer-events: none;
}

.telenor .v-treegrid-cell-focused {
	position: static;
}

.telenor .v-treegrid-cell-focused::before {
	display: none;
}

.telenor .v-treegrid:focus .v-treegrid-row-focused::before {
	display: block;
}

.telenor .v-treegrid.v-disabled:focus .v-treegrid-row-focused::before {
	display: none;
}

.telenor .v-treegrid:focus .v-treegrid-cell-focused::before {
	display: none;
}

.telenor .v-table {
	position: relative;
	background: #fafafa;
	color: #464646;
	overflow: hidden;
}

.telenor .v-table-header table, .telenor .v-table-footer table, .telenor .v-table-table {
	-webkit-box-shadow: 0 0 0 1px #d4d4d4;
	box-shadow: 0 0 0 1px #d4d4d4;
}

.telenor .v-table-header-wrap, .telenor .v-table-footer-wrap, .telenor .v-table-header-drag {
	border: 1px solid #d4d4d4;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	white-space: nowrap;
	font-size: 12px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-table-header-wrap {
	position: relative;
	border-bottom: none;
}

.telenor .v-table-footer-wrap {
	border-top: none;
}

.telenor .v-table-footer td {
	border-left: 1px solid #d4d4d4;
}

.telenor .v-table-footer-container, .telenor .v-table-caption-container {
	overflow: hidden;
	line-height: 1;
	min-height: 32px;
	box-sizing: border-box;
}

.telenor .v-table-footer-container {
	padding: 9px 11px 10px;
	float: right;
}

.telenor [class^="v-table-header-cell"] {
	position: relative;
}

.telenor .v-table-caption-container, .telenor .v-table-header-drag {
	padding: 10px 11px 9px;
	border-left: 1px solid #d4d4d4;
}

.telenor .v-table-caption-container-align-right {
	padding-right: 4px;
}

.telenor .v-table-resizer {
	height: 32px;
	width: 7px;
	cursor: e-resize;
	cursor: col-resize;
	position: relative;
	right: -4px;
	z-index: 1;
	margin-left: -7px;
}

.telenor .v-table-cell-content {
	border-left: 1px solid #d4d4d4;
	overflow: hidden;
	height: 33px;
	vertical-align: middle;
}

.telenor .v-table-cell-content:first-child {
	border-left: none;
	padding-left: 1px;
}

.telenor .v-table-header td:first-child .v-table-caption-container, .telenor .v-table-footer td:first-child {
	border-left-color: transparent;
}

.telenor .v-table-cell-wrapper {
	line-height: 1;
	padding: 0 11px;
	box-sizing: border-box;
	margin-right: 0 !important;
}

.telenor .v-table-cell-wrapper  > .v-widget {
	margin: 3px -6px;
}

.telenor .v-table-cell-wrapper  > .v-widget.v-label, .telenor .v-table-cell-wrapper  > .v-widget.v-checkbox, .telenor .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.telenor .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.telenor .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;
}

.telenor .v-table-table {
	background-color: white;
	white-space: nowrap;
}

.telenor .v-table-table td {
	border-top: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.telenor .v-table-table tr:first-child > td {
	height: 32px;
	border-top: none;
}

.telenor .v-table-row {
	background-color: white;
	cursor: pointer;
}

.telenor .v-table-row-odd {
	background-color: #f5f5f5;
	cursor: pointer;
}

.telenor .v-table-body-noselection .v-table-row, .telenor .v-table-body-noselection .v-table-row-odd {
	cursor: default;
}

.telenor .v-table [class*="-row"].v-selected {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	background-origin: border-box;
	color: rgba(15, 15, 15, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-table [class*="-row"].v-selected  + .v-selected {
	background: #2c2c2c;
}

.telenor .v-table [class*="-row"].v-selected  + .v-selected td {
	border-top-color: #2c2c2c;
}

.telenor .v-table [class*="-row"].v-selected .v-table-cell-content {
	border-color: transparent;
	border-left-color: rgba(133, 133, 133, 0.3);
}

.telenor .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
	border-left-color: transparent;
}

.telenor .v-table-header-cell-asc .v-table-sort-indicator, .telenor .v-table-header-cell-desc .v-table-sort-indicator {
	background: transparent;
	width: 16px;
	height: 32px;
	line-height: 32px;
	margin-left: -16px;
}

.telenor .v-table-header-cell-asc .v-table-sort-indicator:before, .telenor .v-table-header-cell-desc .v-table-sort-indicator:before {
	font-style: normal;
	font-weight: normal;
	display: inline-block;
}

.telenor .v-table-header-cell-asc .v-table-sort-indicator:before {
	content: "\f0de";
	font-family: ThemeIcons;
}

.telenor .v-table-header-cell-desc .v-table-sort-indicator:before {
	content: "\f0dd";
	font-family: ThemeIcons;
}

.telenor [class*="rowheader"] span.v-icon {
	min-width: 1em;
}

.telenor .v-table-focus {
	outline: 1px solid rgba(153, 153, 153, 0.3);
	outline-offset: -1px;
}

.telenor .v-drag-element.v-table-focus, .telenor .v-drag-element .v-table-focus {
	outline: none;
}

.telenor .v-table-header-drag {
	position: absolute;
	opacity: 0.9;
	filter: alpha(opacity=90) ;
	margin-top: -16px;
	z-index: 30000;
	line-height: 1;
}

.telenor .v-table-focus-slot-right {
	border-right: 3px solid rgba(153, 153, 153, 0.3);
	right: -2px;
	margin-left: -10px !important;
}

.telenor .v-table-focus-slot-left {
	float: left;
	border-left: 3px solid rgba(153, 153, 153, 0.3);
	left: -1px;
	right: auto;
	margin-left: 0 !important;
	margin-right: -10px;
}

.telenor .v-table-column-selector {
	height: 32px;
	padding: 0 14px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 16px;
	height: 16px;
	line-height: 16px;
	padding: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-radius: 0 0 0 2px;
	cursor: pointer;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0) ;
	-webkit-transition: opacity 200ms 2s;
	-moz-transition: opacity 200ms 2s;
	-o-transition: opacity 200ms 2s;
	transition: opacity 200ms 2s;
}

.telenor .v-table-column-selector:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-table-column-selector:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.telenor .v-table-column-selector:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .v-table-column-selector:after {
	content: "";
	position: absolute;
	border: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.telenor .v-table-column-selector:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .v-table-column-selector:before {
	font-family: ThemeIcons;
	content: "\f013";
}

.telenor .v-table-header-wrap:hover .v-table-column-selector {
	opacity: 1;
	filter: none ;
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	transition-delay: 200ms;
}

.telenor .v-on:before, .telenor .v-off:before {
	content: "\f00c";
	font-family: ThemeIcons;
	font-size: 0.9em;
	margin-right: 5px;
}

.telenor .v-on div, .telenor .v-off div {
	display: inline;
}

.telenor .v-on.v-disabled, .telenor .v-off.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-off:before {
	visibility: hidden;
}

.telenor tbody.v-drag-element {
	display: block;
	overflow: visible;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	opacity: 1;
	filter: none ;
}

.telenor 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;
}

.telenor .v-table-body {
	position: relative;
	z-index: 1;
}

.telenor .v-table-scrollposition {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 32px;
	line-height: 32px;
	margin: -16px 0 0 !important;
	text-align: center;
}

.telenor .v-table-drag {
	overflow: visible;
}

.telenor .v-table-drag .v-table-body {
	-webkit-box-shadow: 0 0 0 2px rgba(153, 153, 153, 0.5);
	box-shadow: 0 0 0 2px rgba(153, 153, 153, 0.5);
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-table-drag .v-table-body .v-table-focus {
	outline: none;
}

.telenor .v-table-row-drag-middle .v-table-cell-content {
	background-color: rgba(250, 250, 250, 0.86);
	color: rgba(70, 70, 70, 0.86);
}

.telenor .v-table-row-drag-bottom td.v-table-cell-content {
	border-bottom: 2px solid rgba(153, 153, 153, 0.3);
	height: 31px;
}

.telenor .v-table-row-drag-bottom .v-table-cell-wrapper {
	margin-bottom: -2px;
}

.telenor .v-table-row-drag-top td.v-table-cell-content {
	border-top: 2px solid rgba(153, 153, 153, 0.3);
	height: 32px;
}

.telenor .v-table-row-drag-top .v-table-cell-wrapper {
	margin-top: -1px;
}

.telenor .v-table-no-stripes .v-table-row, .telenor .v-table-no-stripes .v-table-row-odd {
	background: transparent;
}

.telenor .v-table-no-vertical-lines .v-table-cell-content {
	border-left: none;
	padding-left: 1px;
}

.telenor .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
	padding-left: 12px;
}

.telenor .v-table-no-horizontal-lines .v-table-cell-content {
	border-top: none;
	border-bottom: none;
}

.telenor .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .telenor .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
	height: 32px;
}

.telenor .v-table-no-header .v-table-header-wrap {
	display: none;
}

.telenor .v-table-borderless .v-table-header-wrap, .telenor .v-table-borderless .v-table-footer-wrap, .telenor .v-table-borderless .v-table-header-drag, .telenor .v-table-borderless .v-table-body {
	border: none;
}

.telenor .v-table-borderless .v-table-header-wrap {
	border-bottom: 1px solid #d9d9d9;
}

.telenor .v-table-borderless .v-table-footer-wrap {
	border-top: 1px solid #d9d9d9;
}

.telenor .v-table-compact .v-table-header-wrap, .telenor .v-table-compact .v-table-footer-wrap, .telenor .v-table-compact .v-table-header-drag, .telenor .v-table-small .v-table-header-wrap, .telenor .v-table-small .v-table-footer-wrap, .telenor .v-table-small .v-table-header-drag {
	font-size: 12px;
}

.telenor .v-table-compact .v-table-footer-container, .telenor .v-table-small .v-table-footer-container {
	padding: 7px 7px 8px;
}

.telenor .v-table-compact .v-table-caption-container, .telenor .v-table-compact .v-table-header-drag, .telenor .v-table-small .v-table-caption-container, .telenor .v-table-small .v-table-header-drag {
	padding-top: 8px;
	padding-bottom: 7px;
	padding-left: 6px;
	padding-right: 6px;
}

.telenor .v-table-compact .v-table-caption-container-align-right, .telenor .v-table-small .v-table-caption-container-align-right {
	padding-right: 0;
}

.telenor .v-table-compact .v-table-resizer, .telenor .v-table-small .v-table-resizer {
	height: 27px;
}

.telenor .v-table-compact .v-table-cell-content, .telenor .v-table-small .v-table-cell-content {
	height: 27px;
}

.telenor .v-table-compact .v-table-cell-wrapper, .telenor .v-table-small .v-table-cell-wrapper {
	padding-left: 6px;
	padding-right: 6px;
}

.telenor .v-table-compact .v-table-cell-wrapper  > .v-widget, .telenor .v-table-small .v-table-cell-wrapper  > .v-widget {
	margin: 2px -3px;
}

.telenor .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .telenor .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .telenor .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .telenor .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .telenor .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .telenor .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
	margin: 0;
}

.telenor .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .telenor .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
	margin-left: 0;
	margin-right: 0;
}

.telenor .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .telenor .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .telenor .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .telenor .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
	height: 27px;
	line-height: 27px;
}

.telenor .v-table-compact .v-table-header-drag, .telenor .v-table-small .v-table-header-drag {
	margin-top: -14px;
}

.telenor .v-table-compact.v-treetable .v-table-cell-wrapper, .telenor .v-table-small.v-treetable .v-table-cell-wrapper {
	padding-left: 0;
	padding-right: 0;
	min-height: 14px;
}

.telenor .v-table-compact.v-treetable .v-table-cell-content, .telenor .v-table-small.v-treetable .v-table-cell-content {
	padding-left: 6px;
	padding-right: 6px;
}

.telenor .v-table-compact.v-treetable .v-table-cell-content:first-child, .telenor .v-table-small.v-treetable .v-table-cell-content:first-child {
	padding-left: 7px;
}

.telenor .v-table-compact.v-treetable .v-table-footer-container, .telenor .v-table-small.v-treetable .v-table-footer-container {
	padding-left: 6px;
	padding-right: 6px;
}

.telenor .v-table-compact .v-table-row-drag-top .v-table-cell-content, .telenor .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .telenor .v-table-small .v-table-row-drag-top .v-table-cell-content, .telenor .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
	height: 26px;
}

.telenor .v-table-small {
	font-size: 14px;
}

.telenor .v-table-small.v-treetable .v-table-cell-wrapper {
	min-height: 14px;
}

.telenor .v-treetable [class*="caption-container"], .telenor .v-treetable [class*="footer-container"], .telenor .v-treetable [class*="cell-wrapper"] {
	box-sizing: content-box;
	padding-left: 0;
	padding-right: 0;
}

.telenor .v-treetable [class*="caption-container"], .telenor .v-treetable [class*="footer-container"] {
	min-height: 13px;
}

.telenor .v-treetable [class*="cell-wrapper"] {
	min-height: 14px;
}

.telenor .v-treetable [class*="caption-container"] {
	padding-left: 11px;
}

.telenor .v-treetable [class*="caption-container-align-right"] {
	padding-left: 18px;
}

.telenor .v-treetable [class*="footer-container"] {
	padding-right: 11px;
}

.telenor .v-treetable [class*="cell-content"] {
	padding-left: 11px;
	padding-right: 11px;
}

.telenor .v-treetable [class*="cell-content"]:first-child {
	padding-left: 12px;
}

.telenor .v-treetable-treespacer {
	display: inline-block;
	position: absolute;
	width: 16px !important;
	margin-left: -22px;
	text-align: center;
	cursor: pointer;
}

.telenor .v-treetable-node-closed:before {
	content: "\f0da";
	font-family: ThemeIcons;
}

.telenor .v-treetable-node-open:before {
	content: "\f0d7";
	font-family: ThemeIcons;
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
	width: 1px;
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
	left: -5px;
	right: -5px;
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 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 2%, #efefef 98%);
	background-image: linear-gradient(to right,#fafafa 2%, #efefef 98%);
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
	margin-left: 1px;
}

.telenor .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
	height: 1px;
}

.telenor .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
	top: -5px;
	bottom: -5px;
}

.telenor .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.telenor .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.telenor .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
	width: 11px;
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
	left: 0px;
	right: 0px;
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 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 2%, #efefef 98%);
	background-image: linear-gradient(to right,#fafafa 2%, #efefef 98%);
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .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: 32px;
	margin-left: -1px;
	margin-top: -16px;
}

.telenor .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
	margin-left: 11px;
}

.telenor .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
	height: 11px;
}

.telenor .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
	top: 0px;
	bottom: 0px;
}

.telenor .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
	height: 32px;
	padding: 0 14px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	height: auto;
	padding: 0;
	border-radius: 0;
}

.telenor .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.telenor .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .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: 32px;
	height: 0;
	margin-left: -16px;
	margin-top: -1px;
}

.telenor .v-progressbar-wrapper {
	border-radius: 2px;
	height: 8px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
	box-sizing: border-box;
	min-width: 64px;
}

.telenor .v-progressbar-indicator {
	border-radius: 2px;
	height: inherit;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	
	
	border: 1px solid #242424;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 4px;
	-webkit-transition: width 160ms;
	-moz-transition: width 160ms;
	-o-transition: width 160ms;
	transition: width 160ms;
}

.telenor .v-progressbar-point .v-progressbar-indicator {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	text-align: right;
	overflow: hidden;
}

.telenor .v-progressbar-point .v-progressbar-indicator:before {
	content: "";
	display: inline-block;
	border-radius: 2px;
	height: inherit;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	
	
	border: 1px solid #242424;
	box-sizing: border-box;
	max-width: 100%;
	width: 8px;
	vertical-align: top;
}

.telenor .v-progressbar-indeterminate {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(153, 153, 153, 0);
	border-top-color: rgba(153, 153, 153, 0.3);
	border-right-color: rgba(153, 153, 153, 0.3);
	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;
}

.telenor .v-progressbar-indeterminate .v-progressbar-wrapper {
	display: none;
}

.telenor .v-slider {
	position: relative;
}

.telenor .v-slider:focus {
	outline: none;
}

.telenor .v-slider:focus .v-slider-handle:after {
	opacity: 1;
}

.telenor .v-slider.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-slider-base {
	border-radius: 2px;
	height: 8px;
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
	box-sizing: border-box;
	min-width: 64px;
	height: 4px;
	margin: 14px 9px;
	white-space: nowrap;
	overflow: hidden;
	
}

.telenor .v-slider-base:before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 9px;
	width: 4px;
	border-radius: 2px;
	border-left: 1px solid #242424;
}

.telenor .v-slider-base:after {
	border-radius: 2px;
	height: inherit;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	
	
	border: 1px solid #242424;
	box-sizing: border-box;
	max-width: 100%;
	content: "";
	display: inline-block;
	margin-left: -100%;
	width: 100%;
	vertical-align: top;
}

.telenor .v-has-width > .v-slider-base {
	min-width: 0;
}

.telenor .v-slider-handle {
	margin-top: -14px;
	width: 0.1px;
	display: inline-block;
	vertical-align: top;
}

.telenor .v-slider-handle:before {
	height: 32px;
	padding: 0 14px;
	color: #191919;
	font-weight: 500;
	
	
	border-radius: 2px;
	border: 1px solid #c5c5c5;
	border-top-color: #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-slider-handle:before:after {
	border: inherit;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
}

.telenor .v-slider-handle:before:hover:after {
	background-color: rgba(186, 186, 186, 0.1);
}

.telenor .v-slider-handle:before:focus:after {
	border-color: rgba(153, 153, 153, 0.3);
}

.telenor .v-slider-handle:before:active:after {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .v-slider-handle:after {
	border: 1px solid #c5c5c5;
	border-color: rgba(153, 153, 153, 0.3);
	opacity: 0;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	-o-transition: opacity 200ms;
	transition: opacity 200ms;
}

.telenor .v-slider-handle:before, .telenor .v-slider-handle:after {
	content: "";
	box-sizing: border-box;
	padding: 0;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	position: absolute;
	z-index: 1;
	margin-top: 7px;
	margin-left: -9px;
}

.telenor .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 8px;
	border-radius: 1px;
	max-width: 35em;
	overflow: hidden !important;
	font-size: 12px;
}

.telenor .v-slider-vertical {
	padding: 9px 0;
	height: 82px;
}

.telenor .v-slider-vertical .v-slider-base {
	background-color: #d4d4d4;
	background-image: -webkit-linear-gradient(right, #d7d7d7 2%, #c7c7c7 98%);
	background-image: linear-gradient(to left,#d7d7d7 2%, #c7c7c7 98%);
	width: 4px;
	height: 100% !important;
	min-width: 0;
	margin: 0 14px;
}

.telenor .v-slider-vertical .v-slider-base:before {
	top: auto;
	bottom: 9px;
	left: 14px;
	right: 14px;
	width: auto;
	height: 4px;
	border-left: none;
	border-bottom: 1px solid #242424;
}

.telenor .v-slider-vertical .v-slider-base:after {
	height: 101%;
	margin-left: 0;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(left, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to right,#3e3e3e 2%, #2c2c2c 98%);
}

.telenor .v-slider-vertical .v-slider-handle {
	width: 0;
	height: 0.1px;
	width: 32px;
	display: block;
}

.telenor .v-slider-vertical .v-slider-handle:before, .telenor .v-slider-vertical .v-slider-handle:after {
	width: 18px;
	height: 18px;
	margin-top: -9px;
	margin-left: -7px;
}

.telenor .v-slider-no-indicator .v-slider-base:before, .telenor .v-slider-no-indicator .v-slider-base:after {
	display: none;
}

.telenor .v-tabsheet:not(.v-has-width) {
	width: auto !important;
}

.telenor .v-tabsheet-spacertd {
	display: none !important;
}

.telenor .v-tabsheet-tabcontainer {
	position: relative;
	box-sizing: border-box;
}

.telenor .v-tabsheet-tabcontainer:before {
	content: "";
	position: absolute;
	height: 0;
	border-top: 1px solid #e4e4e4;
	bottom: 0;
	left: 0;
	right: 0;
}

.telenor .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	position: relative;
}

.telenor .v-tabsheet-tabitemcell {
	vertical-align: bottom;
}

.telenor .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
	line-height: 0;
	overflow: hidden;
}

.telenor .v-tabsheet-tabitemcell .v-caption {
	margin-left: 16px;
	padding: 0 3px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	line-height: 32px;
	font-size: 13px;
	font-weight: 400;
	color: #6b6b6b;
	width: auto !important;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 2px solid transparent;
	position: relative;
	-webkit-transition: border-bottom 200ms, color 200ms;
	-moz-transition: border-bottom 200ms, color 200ms;
	-o-transition: border-bottom 200ms, color 200ms;
	transition: border-bottom 200ms, color 200ms;
}

.telenor .v-tabsheet-tabitemcell .v-caption .v-captiontext {
	display: inline;
}

.telenor .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
	margin-left: 8px;
}

.telenor .v-tabsheet-tabitemcell .v-caption:hover {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-tabsheet-tabitemcell .v-caption.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	cursor: default;
	color: inherit !important;
}

.telenor .v-tabsheet-tabitemcell:first-child .v-caption, .telenor .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.telenor .v-tabsheet-tabitemcell:not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 16px;
}

.telenor .v-tabsheet-tabitemcell:focus {
	outline: none;
}

.telenor .v-tabsheet-tabitemcell:focus .v-caption {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: rgba(153, 153, 153, 0.3);
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-tabsheet-tabitemcell .v-caption-closable {
	padding-right: 18px;
}

.telenor .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
	padding-right: 3px;
}

.telenor .v-tabsheet-tabitemcell .v-tabsheet-caption-close {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -7px 0 0;
	font-size: 15px;
	line-height: 15px;
	width: 15px;
	text-align: center;
	border-radius: 1px;
	color: #999999;
}

.telenor .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
	background: rgba(0, 0, 0, 0.03);
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
	background: rgba(153, 153, 153, 0.3);
	color: rgba(43, 43, 43, 0.3);
}

.telenor .v-tabsheet-scroller {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-left: 16px;
	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;
}

.telenor .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%);
}

.telenor .v-tabsheet-scroller button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	height: 100%;
	margin: 0;
	padding: 0 8px;
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-tabsheet-scroller button:hover {
	opacity: 1;
	filter: none ;
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-tabsheet-scroller button:active {
	opacity: 0.7;
	filter: alpha(opacity=70) ;
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-tabsheet-scroller button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.telenor .v-tabsheet-scroller [class*="Next"] {
	padding-left: 4px;
}

.telenor .v-tabsheet-scroller [class*="Next"]:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.telenor .v-tabsheet-scroller [class*="Prev"] {
	padding-right: 4px;
}

.telenor .v-tabsheet-scroller [class*="Prev"]:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.telenor .v-tabsheet-scroller [class*="disabled"] {
	cursor: default;
	color: inherit !important;
	opacity: 0.1 !important;
	filter: alpha(opacity=10) !important;
}

.telenor .v-tabsheet-tabsheetpanel > .v-scrollable > .v-widget {
	-webkit-animation: valo-animate-in-fade 300ms backwards;
	-moz-animation: valo-animate-in-fade 300ms backwards;
	animation: valo-animate-in-fade 300ms backwards;
}

.telenor .v-tabsheet-deco {
	height: 16px !important;
	width: 16px !important;
	box-sizing: border-box;
	border: 2px solid rgba(153, 153, 153, 0);
	border-top-color: rgba(153, 153, 153, 0.3);
	border-right-color: rgba(153, 153, 153, 0.3);
	border-radius: 100%;
	-webkit-animation: v-rotate-360 500ms infinite linear;
	-moz-animation: v-rotate-360 500ms infinite linear;
	animation: v-rotate-360 500ms infinite linear;
	pointer-events: none;
	display: none;
	position: absolute;
	z-index: 1;
	bottom: 50%;
	margin-bottom: -24px;
	left: 50%;
	margin-left: -8px;
}

.telenor .v-tabsheet-loading .v-tabsheet-deco {
	display: block;
}

.telenor .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .telenor .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .telenor .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	width: 100%;
}

.telenor .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
	display: table;
	table-layout: fixed;
}

.telenor .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
	display: table-cell;
}

.telenor .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
	margin: 0;
	display: block;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
	margin-left: 3px;
	padding: 0 20px;
	background-color: #ffffff;
	border: 1px solid transparent;
	line-height: 31px;
	border-radius: 2px 2px 0 0;
	font-weight: 500;
	-webkit-transition: background-color 160ms;
	-moz-transition: background-color 160ms;
	-o-transition: background-color 160ms;
	transition: background-color 160ms;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
	background-color: #f7f7f7;
	border-bottom-color: #e4e4e4;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
	background-color: #ffffff;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 35px;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	right: 4px;
	margin-top: 0;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
	margin-left: 0;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer :not([aria-hidden="true"]) ~ td .v-caption {
	margin-left: 3px;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
	border-color: #e4e4e4;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	background: white;
	border-color: #e4e4e4;
	border-bottom: none;
	padding-bottom: 1px;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-content {
	border: 1px solid #e4e4e4;
	border-top: none;
}

.telenor .v-tabsheet-framed  > .v-tabsheet-content  > div {
	background: white;
}

.telenor .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
	border: 1px solid #e4e4e4;
	border-bottom: none;
	background: #fafafa;
	padding-top: 5px;
}

.telenor .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
	padding-bottom: 6px;
}

.telenor .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
	text-align: center;
}

.telenor .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
	text-align: right;
}

.telenor .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd {
	display: inline-block !important;
}

.telenor .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller {
	padding-left: 9px;
}

.telenor .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
	padding: 0 8px;
}

.telenor .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1.2;
}

.telenor .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
	display: block;
}

.telenor .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
	margin-left: 0;
}

.telenor .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
	padding-right: 20px;
}

.telenor .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	top: 4px;
	margin-top: 0;
}

.telenor .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
	line-height: 1.8;
}

.telenor .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
	visibility: hidden;
}

.telenor .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
	visibility: visible;
}

.telenor .v-colorpicker-popup.v-window {
	min-width: 220px !important;
}

.telenor .v-colorpicker-popup .v-tabsheet-tabs {
	padding: 0 8px;
}

.telenor .v-colorpicker-popup [class$="sliders"] {
	padding: 11px;
}

.telenor .v-colorpicker-popup [class$="sliders"] .v-widget {
	width: 100% !important;
	vertical-align: middle;
}

.telenor .v-colorpicker-popup [class$="sliders"] .v-has-caption {
	white-space: nowrap;
	padding-left: 42px;
}

.telenor .v-colorpicker-popup [class$="sliders"] .v-caption {
	display: inline-block;
	margin-left: -42px;
	width: 42px;
}

.telenor .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
	padding-left: 70px;
}

.telenor .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
	margin-left: -70px;
	width: 70px;
}

.telenor .v-colorpicker-popup .v-slider-red .v-slider-base:after {
	background: red;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-colorpicker-popup .v-slider-green .v-slider-base:after {
	background: green;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
	background: blue;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-colorpicker-popup .v-margin-bottom {
	padding-bottom: 0;
}

.telenor .v-colorpicker-popup .resize-button {
	width: 100% !important;
	height: auto !important;
	text-align: center;
	outline: none;
}

.telenor .v-colorpicker-popup .resize-button:before {
	font-family: ThemeIcons;
	content: "\f141";
}

.telenor .v-colorpicker-popup .resize-button-caption {
	display: none;
}

.telenor .v-colorpicker-popup .v-horizontallayout {
	height: auto !important;
	padding: 8px 0;
	background-color: #fafafa;
	border-top: 1px solid #ededed;
}

.telenor .v-colorpicker-popup .v-horizontallayout .v-expand {
	overflow: visible;
}

.telenor .v-colorpicker-popup .v-horizontallayout .v-button {
	width: 80% !important;
}

.telenor .v-colorpicker-preview {
	width: 100% !important;
	height: auto !important;
	padding: 8px;
	display: inline-flex;
}

.telenor .v-colorpicker-preview-textfield {
	height: auto !important;
	text-align: center;
	border: none;
}

.telenor .v-colorpicker {
	width: auto;
}

.telenor .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: 19px;
}

.telenor .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
	margin-left: 16px;
}

.telenor .v-panel {
	background: white;
	color: #474747;
	border-radius: 2px;
	border: 1px solid #d9d9d9;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	overflow: visible !important;
}

.telenor .v-panel-caption {
	box-sizing: border-box;
	padding: 0 11px;
	line-height: 31px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f6f6f6 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f6f6f6 98%);
	color: #464646;
	font-weight: 400;
	font-size: 14px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 1px 1px 0 0;
}

.telenor .v-panel-content {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.telenor .v-panel-content  > .v-margin-top {
	padding-top: 11px;
}

.telenor .v-panel-content  > .v-margin-right {
	padding-right: 11px;
}

.telenor .v-panel-content  > .v-margin-bottom {
	padding-bottom: 11px;
}

.telenor .v-panel-content  > .v-margin-left {
	padding-left: 11px;
}

.telenor .v-panel-borderless {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-panel-borderless  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: inherit;
	padding: 0;
	margin: 0 11px;
	border-bottom: none;
}

.telenor .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;
}

.telenor .v-panel-well  > div > [class*="-caption"] {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-panel-scroll-divider  > [class*="-captionwrap"] {
	position: relative;
	z-index: 2;
}

.telenor .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 0;
	border-top: 1px solid #e4e4e4;
	border-color: rgba(201, 201, 201, 0.5);
}

.telenor .v-panel-scroll-divider  > [class*="-content"]:before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	height: 0;
	border-top: 1px solid #ffffff;
	left: 0;
	right: 0;
}

.telenor .v-panel-caption.v-horizontallayout {
	height: auto !important;
	line-height: 0;
}

.telenor .v-panel-caption.v-horizontallayout .v-slot {
	vertical-align: middle;
}

.telenor .v-panel-caption.v-horizontallayout .v-label {
	line-height: 32px;
}

.telenor .v-accordion {
	background: white;
	color: #474747;
	border-radius: 2px;
	border: 1px solid #d9d9d9;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f4f4f4 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f4f4f4 98%);
	overflow: hidden;
}

.telenor .v-accordion-item {
	position: relative;
}

.telenor .v-accordion-item:first-child {
	border-top-left-radius: 1px;
	border-top-right-radius: 1px;
}

.telenor .v-accordion-item:last-child {
	border-bottom-left-radius: 1px;
	border-bottom-right-radius: 1px;
}

.telenor .v-accordion-item:last-child [class*="item-content"] {
	border-radius: inherit;
}

.telenor .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
	border-radius: 0;
}

.telenor .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
	border-bottom: none;
	margin-bottom: 0;
}

.telenor .v-accordion-item[class*="item-open"] + [class*="item"] {
	border-top: 1px solid #d9d9d9;
}

.telenor .v-accordion-item-caption {
	border-radius: inherit;
}

.telenor .v-accordion-item-caption  > .v-caption {
	box-sizing: border-box;
	padding: 0 11px;
	line-height: 31px;
	border-bottom: 1px solid #d5d5d5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #f6f6f6 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #f6f6f6 98%);
	color: #464646;
	font-weight: 400;
	font-size: 14px;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #eeeeee;
	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;
}

.telenor .v-accordion-item-caption  > .v-caption:hover:before, .telenor .v-accordion-item-caption  > .v-caption:active:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}

.telenor .v-accordion-item-caption  > .v-caption:hover:before {
	background-color: rgba(186, 186, 186, 0.1);
	border: none;
}

.telenor .v-accordion-item-caption  > .v-caption:active:before {
	background-color: rgba(125, 125, 125, 0.2);
}

.telenor .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;
}

.telenor .v-accordion-item-content  > .v-margin-top {
	padding-top: 11px;
}

.telenor .v-accordion-item-content  > .v-margin-right {
	padding-right: 11px;
}

.telenor .v-accordion-item-content  > .v-margin-bottom {
	padding-bottom: 11px;
}

.telenor .v-accordion-item-content  > .v-margin-left {
	padding-left: 11px;
}

.telenor .v-accordion-borderless {
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-accordion-borderless  > .v-accordion-item, .telenor .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .telenor .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
	border-radius: 0;
}

.telenor .v-select-twincol {
	white-space: normal;
}

.telenor .v-select-twincol select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.telenor .v-select-twincol select:focus {
	outline: none;
}

.telenor .v-select-twincol .v-textfield, .telenor .v-select-twincol .v-nativebutton {
	width: auto !important;
	margin-top: 8px;
}

.telenor .v-select-twincol .v-nativebutton {
	margin-left: 8px;
}

.telenor .v-select-twincol-caption-left, .telenor .v-select-twincol-caption-right {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 0.3em;
	padding-left: 1px;
}

.telenor .v-select-twincol-buttons {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	position: relative;
	min-width: 3.5em;
}

.telenor .v-select-twincol-buttons .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
	position: absolute;
	left: 8px;
	right: 8px;
	top: 31px;
	padding: 0;
	text-align: center;
}

.telenor .v-select-twincol-buttons .v-button:first-child {
	top: 0;
}

.telenor .v-select-twincol-buttons .v-button-caption {
	display: none;
}

.telenor .v-select-twincol-buttons .v-button:focus {
	z-index: 1;
}

.telenor .v-select-twincol-buttons .v-button:first-child {
	border-radius: 2px 2px 0 0;
}

.telenor .v-select-twincol-buttons .v-button:last-child {
	border-radius: 0 0 2px 2px;
}

.telenor .v-select-twincol-buttons .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.telenor .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.telenor .v-select-twincol-error .v-select-twincol-options, .telenor .v-select-twincol-error .v-select-twincol-selections {
	border-color: #e32119 !important;
	background: #fefbfa;
	color: #6b2522;
}

.telenor .v-select-twincol-error-info .v-select-twincol-options, .telenor .v-select-twincol-error-info .v-select-twincol-selections {
	border-color: #00a7f5 !important;
	background: #fafdff;
	color: #195774;
}

.telenor .v-select-twincol-error-warning .v-select-twincol-options, .telenor .v-select-twincol-error-warning .v-select-twincol-selections {
	border-color: #fc9c00 !important;
	background: #fffdfa;
	color: #745119;
}

.telenor .v-select-twincol-error-error .v-select-twincol-options, .telenor .v-select-twincol-error-error .v-select-twincol-selections {
	border-color: #ed473b !important;
	background: #fffbfb;
	color: #6c2621;
}

.telenor .v-select-twincol-error-critical .v-select-twincol-options, .telenor .v-select-twincol-error-critical .v-select-twincol-selections {
	border-color: #fa007d !important;
	background: #fffafc;
	color: #741947;
}

.telenor .v-select-twincol-error-system .v-select-twincol-options, .telenor .v-select-twincol-error-system .v-select-twincol-selections {
	border-color: #bb00ff !important;
	background: #fefaff;
	color: #5c1974;
}

.telenor .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.telenor .v-select select:focus {
	outline: none;
}

.telenor .v-select-select {
	display: block;
}

.telenor .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.telenor .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.telenor .v-select-error .v-select-select {
	border-color: #e32119 !important;
	background: #fefbfa;
	color: #6b2522;
}

.telenor .v-calendar-header-day {
	font-weight: 500;
	text-align: center;
	padding: 6px 0;
}

.telenor .v-calendar-header-week .v-calendar-back, .telenor .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) ;
}

.telenor .v-calendar-header-week .v-calendar-back:focus, .telenor .v-calendar-header-week .v-calendar-next:focus {
	outline: none;
}

.telenor .v-calendar-header-week .v-calendar-back:hover, .telenor .v-calendar-header-week .v-calendar-next:hover {
	opacity: 1;
	filter: none ;
}

.telenor .v-calendar-header-week .v-calendar-back:active, .telenor .v-calendar-header-week .v-calendar-next:active {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-calendar-header-week .v-calendar-back:before {
	font-family: ThemeIcons;
	content: "\f053";
}

.telenor .v-calendar-header-week .v-calendar-next:before {
	font-family: ThemeIcons;
	content: "\f054";
}

.telenor .v-calendar-month {
	outline: none;
	overflow: hidden;
}

.telenor .v-calendar-month td {
	vertical-align: top;
}

.telenor .v-calendar-week-number {
	cursor: pointer;
	width: 20px;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-calendar-week-number:hover {
	opacity: 1;
	filter: none ;
}

.telenor .v-calendar-month-day {
	outline: none;
	box-sizing: border-box;
	line-height: 1.2;
}

.telenor .v-calendar-bottom-spacer, .telenor .v-calendar-spacer, .telenor .v-calendar-bottom-spacer-empty {
	height: 17px;
	margin-bottom: 3px;
}

.telenor .v-calendar-bottom-spacer {
	font-size: 0.8em;
	padding: 0 4px;
	cursor: pointer;
}

.telenor .v-calendar-bottom-spacer:hover {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-calendar-day-number {
	line-height: 21px;
	font-size: 14px;
	text-align: right;
	margin: 0 4px;
	white-space: nowrap;
	border-top: 1px solid #f2f2f2;
	cursor: pointer;
}

.telenor .v-calendar-day-number:hover {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-calendar-month-day-today {
	background: #f5f5f5;
}

.telenor .v-calendar-month-day-today .v-calendar-day-number {
	font-weight: 500;
	color: rgba(153, 153, 153, 0.3);
	border-top: 2px solid rgba(153, 153, 153, 0.3);
	line-height: 20px;
	margin: 0;
	padding: 0 4px;
}

.telenor .v-calendar-month-day-selected {
	background-color: #f0f0f0;
}

.telenor .v-calendar-month-day-dragemphasis {
	background-color: #a8a8a8;
}

.telenor .v-calendar-month-day-scrollable {
	overflow-y: scroll;
}

.telenor .v-calendar-weekly-longevents {
	margin-left: 50px;
	border-bottom: 3px solid #e0e0e0;
}

.telenor .v-calendar-weekly-longevents .v-calendar-event-all-day {
	height: 19px;
	line-height: 1.6;
	margin-bottom: 3px;
}

.telenor .v-calendar-header-week td {
	vertical-align: middle !important;
}

.telenor .v-calendar-header-week .v-calendar-header-day {
	cursor: pointer;
}

.telenor .v-calendar-times {
	width: 50px;
	font-size: 0.77em;
	line-height: 1;
	white-space: nowrap;
}

.telenor .v-calendar-time {
	text-align: right;
	padding-right: 8px;
	margin-top: -6px;
	padding-bottom: 6px;
}

.telenor .v-calendar-day-times, .telenor .v-calendar-day-times-today {
	outline: none;
	border-right: 1px solid transparent;
}

.telenor .v-calendar-day-times:focus, .telenor .v-calendar-day-times-today:focus {
	outline: none;
}

.telenor .v-calendar .v-datecellslot, .telenor .v-calendar .v-datecellslot-even {
	border-top: 1px solid #e4e4e4;
}

.telenor .v-calendar .v-datecellslot:first-child, .telenor .v-calendar .v-datecellslot-even:first-child {
	border-top-color: transparent;
}

.telenor .v-calendar .v-datecellslot {
	border-top-style: dotted;
}

.telenor .v-calendar .v-datecellslot, .telenor .v-calendar .v-datecellslot-even {
	margin-right: 4px;
}

.telenor .v-calendar-current-time {
	background: rgba(153, 153, 153, 0.3);
	line-height: 1px;
	pointer-events: none;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-calendar-current-time:before {
	content: "\2022";
	color: rgba(153, 153, 153, 0.3);
	font-size: 22px;
	margin-left: -0.07em;
}

.telenor .v-calendar .v-daterange {
	position: relative;
}

.telenor .v-calendar .v-daterange:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	background: rgba(153, 153, 153, 0.3);
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	border-radius: 2px 2px 0 0;
}

.telenor .v-calendar .v-daterange  + .v-daterange {
	border-color: transparent;
}

.telenor .v-calendar .v-daterange  + .v-daterange:before {
	border-radius: 0;
}

.telenor .v-calendar-event {
	font-size: 0.85em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	border-radius: 2px;
}

.telenor .v-calendar-event:focus {
	outline: none;
}

.telenor .v-calendar-event-month {
	padding: 0 4px;
	box-sizing: border-box;
	margin-bottom: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 17px;
	line-height: 17px;
}

.telenor .v-calendar-event-month .v-calendar-event-time {
	float: right;
	font-size: 0.9em;
	line-height: 17px;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-calendar-event-month:before {
	content: "\25cf";
	margin-right: 0.2em;
}

.telenor .v-calendar-event-all-day {
	padding: 0 4px;
	box-sizing: border-box;
	height: 17px;
	line-height: 17px;
	border-radius: 0;
	margin-left: -1px;
	white-space: nowrap;
}

.telenor .v-calendar-event-all-day:before {
	content: "";
}

.telenor .v-calendar-event-start {
	overflow: visible;
	margin-left: 0;
}

.telenor .v-calendar-event-start.v-calendar-event-continued-to, .telenor .v-calendar-event-start.v-calendar-event-end {
	overflow: hidden;
	text-overflow: ellipsis;
}

.telenor .v-calendar-event-start {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	margin-left: 4px;
}

.telenor .v-calendar-event-end {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	margin-right: 4px;
}

.telenor .v-calendar-event-caption {
	font-weight: 600;
	line-height: 1.2;
	padding: 4px 0;
	position: absolute;
	overflow: hidden;
	right: 8px;
	left: 4px;
	bottom: 0;
	top: 0;
}

.telenor .v-calendar-event-caption span {
	font-weight: 400;
	white-space: nowrap;
}

.telenor .v-calendar-week-wrapper .v-calendar-event {
	overflow: visible;
}

.telenor .v-calendar-week-wrapper .v-calendar-event-content {
	margin-top: -1px;
	border-radius: 3px;
	border: 1px solid #ffffff;
	padding-top: 3px;
	margin-right: 4px;
}

.telenor .v-calendar-event-month:before {
	color: #00ace0;
}

.telenor .v-calendar-event-all-day {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
	color: #00ace0;
}

.telenor .v-calendar-week-wrapper .v-calendar-event {
	color: #00ace0;
}

.telenor .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
	background-color: #c8eaf4;
	background-color: rgba(200, 234, 244, 0.8);
}

.telenor .v-calendar-event-month[class*="color2"]:before {
	color: #2d9f19;
}

.telenor .v-calendar-event-all-day[class*="color2"] {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
	color: #2d9f19;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
	color: #2d9f19;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
	background-color: #d1e7cd;
	background-color: rgba(209, 231, 205, 0.8);
}

.telenor .v-calendar-event-month[class*="color3"]:before {
	color: #d18100;
}

.telenor .v-calendar-event-all-day[class*="color3"] {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
	color: #d18100;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
	color: #d18100;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
	background-color: #f1e1c8;
	background-color: rgba(241, 225, 200, 0.8);
}

.telenor .v-calendar-event-month[class*="color4"]:before {
	color: #ce3812;
}

.telenor .v-calendar-event-all-day[class*="color4"] {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
	color: #ce3812;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
	color: #ce3812;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
	background-color: #f1d3cb;
	background-color: rgba(241, 211, 203, 0.8);
}

.telenor .v-calendar-event-month[class*="color5"]:before {
	color: #2d55cd;
}

.telenor .v-calendar-event-all-day[class*="color5"] {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
	color: #2d55cd;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
	color: #2d55cd;
}

.telenor .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
	background-color: #d1d9f1;
	background-color: rgba(209, 217, 241, 0.8);
}

.telenor .v-calendar.v-disabled * {
	cursor: default;
}

.telenor .v-label {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.telenor .v-label.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-label-undef-w {
	white-space: nowrap;
}

.telenor h1, .telenor .v-label-h1, .telenor h2, .telenor .v-label-h2, .telenor h3, .telenor .v-label-h3 {
	line-height: 1.1;
	font-weight: 300;
	color: #141414;
}

.telenor h1, .telenor .v-label-h1 {
	font-size: 27px;
	margin-top: 1.4em;
	margin-bottom: 1em;
	
	letter-spacing: -0.03em;
}

.telenor h2, .telenor .v-label-h2 {
	font-size: 22px;
	
	margin-top: 1.6em;
	margin-bottom: 0.77em;
	letter-spacing: -0.02em;
}

.telenor h3, .telenor .v-label-h3 {
	font-size: 20px;
	
	margin-top: 1.8em;
	margin-bottom: 0.77em;
	letter-spacing: 0;
}

.telenor h4, .telenor .v-label-h4 {
	line-height: 1.1;
	font-weight: 600;
	font-size: 14px;
	color: #424242;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 2.4em;
	margin-bottom: 0.8em;
}

.telenor .v-csslayout  > h1:first-child, .telenor .v-csslayout  > h2:first-child, .telenor .v-csslayout  > h3:first-child, .telenor .v-csslayout  > h4 > .v-label-h1:first-child, .telenor .v-csslayout  > .v-label-h2:first-child, .telenor .v-csslayout  > .v-label-h3:first-child, .telenor .v-csslayout  > .v-label-h4:first-child {
	margin-top: 14px;
}

.telenor .v-verticallayout > .v-slot:first-child h1, .telenor .v-verticallayout > .v-slot:first-child .v-label-h1, .telenor .v-verticallayout > .v-slot:first-child h2, .telenor .v-verticallayout > .v-slot:first-child .v-label-h2, .telenor .v-verticallayout > .v-slot:first-child h3, .telenor .v-verticallayout > .v-slot:first-child .v-label-h3, .telenor .v-verticallayout > .v-slot:first-child h4, .telenor .v-verticallayout > .v-slot:first-child .v-label-h4, .telenor .v-verticallayout > div > .v-slot:first-child h1, .telenor .v-verticallayout > div > .v-slot:first-child .v-label-h1, .telenor .v-verticallayout > div > .v-slot:first-child h2, .telenor .v-verticallayout > div > .v-slot:first-child .v-label-h2, .telenor .v-verticallayout > div > .v-slot:first-child h3, .telenor .v-verticallayout > div > .v-slot:first-child .v-label-h3, .telenor .v-verticallayout > div > .v-slot:first-child h4, .telenor .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
	margin-top: 14px;
}

.telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .telenor .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .telenor .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
	margin-top: -0.5em;
}

.telenor h1.no-margin, .telenor .v-label-h1.no-margin, .telenor h2.no-margin, .telenor .v-label-h2.no-margin, .telenor h3.no-margin, .telenor .v-label-h3.no-margin, .telenor h4.no-margin, .telenor .v-label-h4.no-margin {
	margin: 0 !important;
}

.telenor .v-label-colored {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-label-large {
	font-size: 20px;
}

.telenor .v-label-small {
	font-size: 14px;
}

.telenor .v-label-tiny {
	font-size: 14px;
}

.telenor .v-label-huge {
	font-size: 22px;
}

.telenor .v-label-bold {
	font-weight: 600;
}

.telenor .v-label-light {
	font-weight: 300;
}

.telenor .v-label-align-right {
	text-align: right;
}

.telenor .v-label-align-center {
	text-align: center;
}

.telenor .v-label-spinner {
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(153, 153, 153, 0);
	border-top-color: rgba(153, 153, 153, 0.3);
	border-right-color: rgba(153, 153, 153, 0.3);
	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;
}

.telenor .v-label-success, .telenor .v-label-failure {
	background: white;
	color: #474747;
	border: 2px solid #2c9720;
	border-radius: 2px;
	padding: 6px 16px 6px 32px;
	font-weight: 500;
	font-size: 13px;
}

.telenor .v-label-success:before, .telenor .v-label-failure:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
	margin-left: -16px;
	color: #2c9720;
}

.telenor .v-label-failure {
	border-color: #e32119;
}

.telenor .v-label-failure:before {
	content: "\f05e";
	color: #e32119;
}

.telenor [draggable=true] {
	-khtml-user-drag: element;
	-webkit-user-drag: element;
}

.telenor .v-ddwrapper {
	position: relative;
}

.telenor .v-ddwrapper-over:before, .telenor .v-ddwrapper-over:after {
	content: "";
	position: absolute;
	z-index: 10;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 0 solid rgba(153, 153, 153, 0.3);
}

.telenor .v-ddwrapper-over-top:before {
	border-top-width: 2px;
}

.telenor .v-ddwrapper-over-right:before {
	border-right-width: 2px;
}

.telenor .v-ddwrapper-over-bottom:before {
	border-bottom-width: 2px;
}

.telenor .v-ddwrapper-over-left:before {
	border-left-width: 2px;
}

.telenor .no-vertical-drag-hints .v-ddwrapper-over-top:before, .telenor .no-vertical-drag-hints.v-ddwrapper-over-top:before {
	border-top-width: 0;
}

.telenor .no-vertical-drag-hints .v-ddwrapper-over-top:after, .telenor .no-vertical-drag-hints.v-ddwrapper-over-top:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(77, 77, 77, 0.3);
}

.telenor .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .telenor .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
	border-bottom-width: 0;
}

.telenor .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .telenor .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(77, 77, 77, 0.3);
}

.telenor .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .telenor .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
	border-left-width: 0;
}

.telenor .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .telenor .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(77, 77, 77, 0.3);
}

.telenor .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .telenor .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
	border-right-width: 0;
}

.telenor .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .telenor .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(77, 77, 77, 0.3);
}

.telenor .v-ddwrapper-over-middle:after, .telenor .v-ddwrapper-over-center:after {
	border-width: 2px;
	border-radius: 2px;
	opacity: 0.3;
	filter: alpha(opacity=30.0) ;
	background: rgba(77, 77, 77, 0.3);
}

.telenor .no-box-drag-hints.v-ddwrapper:after, .telenor .no-box-drag-hints .v-ddwrapper:after {
	display: none !important;
	content: none;
}

.telenor button {
	font: inherit;
	font-weight: 400;
	line-height: 1.55;
}

.telenor .v-nativebutton {
	-webkit-touch-callout: none;
}

.telenor .v-select select {
	border: 1px solid #c5c5c5;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	color: #464646;
}

.telenor .v-select select:focus {
	outline: none;
}

.telenor .v-select-select {
	display: block;
}

.telenor .v-select-select  + .v-textfield {
	width: auto !important;
	margin-top: 8px;
}

.telenor .v-select-select  + .v-textfield  + .v-nativebutton {
	margin-top: 8px;
	margin-left: 8px;
}

.telenor .v-select-error .v-select-select {
	border-color: #e32119 !important;
	background: #fefbfa;
	color: #6b2522;
}

.telenor .v-popupview {
	cursor: pointer;
	color: rgba(153, 153, 153, 0.3);
	text-decoration: underline;
	font-weight: inherit;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-popupview:hover {
	color: rgba(179, 179, 179, 0.3);
}

.telenor .v-popupview.v-disabled {
	opacity: 0.5;
	filter: alpha(opacity=50) ;
}

.telenor .v-popupview-popup {
	padding: 4px 4px;
	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;
}

.telenor .v-popupview-popup[class*="animate-in"] {
	-webkit-animation: v-popupview-animate-in 120ms;
	-moz-animation: v-popupview-animate-in 120ms;
	animation: v-popupview-animate-in 120ms;
}

.telenor .v-popupview-popup[class*="animate-out"] {
	-webkit-animation: valo-animate-out-fade 120ms;
	-moz-animation: valo-animate-out-fade 120ms;
	animation: valo-animate-out-fade 120ms;
}

.telenor .v-popupview-popup .popupContent  > .v-margin-top {
	padding-top: 11px;
}

.telenor .v-popupview-popup .popupContent  > .v-margin-right {
	padding-right: 11px;
}

.telenor .v-popupview-popup .popupContent  > .v-margin-bottom {
	padding-bottom: 11px;
}

.telenor .v-popupview-popup .popupContent  > .v-margin-left {
	padding-left: 11px;
}

.telenor .v-popupview-loading {
	margin: 20px 20px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(153, 153, 153, 0);
	border-top-color: rgba(153, 153, 153, 0.3);
	border-right-color: rgba(153, 153, 153, 0.3);
	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;
}

.telenor .v-richtextarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
	margin: 0;
	font: inherit;
	
	font-weight: 400;
	line-height: normal;
	height: 32px;
	border-radius: 0;
	padding: 0;
	border: 1px solid #c9c9c9;
	background: white;
	color: #474747;
	-webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-transition: box-shadow 180ms, border 180ms;
	-moz-transition: box-shadow 180ms, border 180ms;
	-o-transition: box-shadow 180ms, border 180ms;
	transition: box-shadow 180ms, border 180ms;
	height: auto;
	overflow: hidden;
}

.telenor .v-richtextarea[class*="prompt"] {
	color: #a3a3a3;
}

.telenor .v-richtextarea .gwt-RichTextToolbar {
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear-gradient(to bottom,#fafafa 2%, #efefef 98%);
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7;
	border-bottom: 1px solid #c5c5c5;
	color: #464646;
}

.telenor .v-richtextarea .gwt-ToggleButton, .telenor .v-richtextarea .gwt-PushButton {
	display: inline-block;
	line-height: 32px;
	width: 32px;
	text-align: center;
	outline: none;
}

.telenor .v-richtextarea .gwt-ToggleButton:hover, .telenor .v-richtextarea .gwt-PushButton:hover {
	color: black;
}

.telenor .v-richtextarea .gwt-ToggleButton-down, .telenor .v-richtextarea .gwt-ToggleButton-down-hovering {
	background-color: #e0e0e0;
	background-image: -webkit-linear-gradient(bottom, #e0e0e0 2%, #dcdcdc 98%);
	background-image: linear-gradient(to top,#e0e0e0 2%, #dcdcdc 98%);
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top img {
	display: none;
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div:before {
	font-family: ThemeIcons;
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
	content: "\f032";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
	content: "\f033";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
	content: "\f0cd";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
	content: "\f12c";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
	content: "\f12b";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
	content: "\f036";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
	content: "\f037";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
	content: "\f038";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
	content: "\f0cc";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
	content: "\f03c";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
	content: "\f03b";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
	content: "\2014";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
	content: "\f0cb";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
	content: "\f0ca";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
	content: "\f03e";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
	content: "\f0c1";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
	content: "\f127";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
	content: "\f12d";
}

.telenor .v-richtextarea .gwt-RichTextToolbar-bottom {
	font-size: 11px;
	padding: 0 8px 8px 0;
}

.telenor .v-richtextarea .gwt-RichTextToolbar-bottom select {
	margin: 8px 0 0 8px;
}

.telenor .v-richtextarea .gwt-RichTextArea {
	background: #fff;
	border: none;
	display: block;
}

.telenor .v-richtextarea-readonly {
	padding: 4px 6px;
	background: transparent;
}

.telenor .v-upload .v-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	white-space: normal;
}

.telenor .v-upload-immediate .v-button {
	width: 100%;
}

.telenor .v-upload-immediate input[type="file"] {
	opacity: 0;
	filter: alpha(opacity=0) ;
	z-index: -1;
	position: absolute;
	right: 0;
	height: 32px;
	text-align: right;
	border: none;
	background: transparent;
}

.telenor .v-Notification.v-position-top {
	top: 20px;
}

.telenor .v-Notification.v-position-right {
	right: 20px;
}

.telenor .v-Notification.v-position-bottom {
	bottom: 20px;
}

.telenor .v-Notification.v-position-left {
	left: 20px;
}

.telenor .v-Notification.v-position-assistive {
	top: -9999px;
	left: -9999px;
}

.telenor .v-Notification-animate-in {
	-webkit-animation: valo-animate-in-fade 180ms 10ms backwards;
	-moz-animation: valo-animate-in-fade 180ms 10ms backwards;
	animation: valo-animate-in-fade 180ms 10ms backwards;
}

.telenor .v-Notification-animate-in.v-position-top {
	-webkit-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 400ms 10ms backwards;
	animation: valo-animate-in-slide-down 400ms 10ms backwards;
}

.telenor .v-Notification-animate-in.v-position-bottom {
	-webkit-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 400ms 10ms backwards;
	animation: valo-animate-in-slide-up 400ms 10ms backwards;
}

.telenor .v-Notification-animate-out {
	-webkit-animation: valo-animate-out-fade 150ms;
	-moz-animation: valo-animate-out-fade 150ms;
	animation: valo-animate-out-fade 150ms;
}

.telenor .v-Notification-animate-out.v-position-top, .telenor .v-Notification-animate-out.v-position-bottom {
	-webkit-animation: valo-animate-out-slide-down-fade 200ms;
	-moz-animation: valo-animate-out-slide-down-fade 200ms;
	animation: valo-animate-out-slide-down-fade 200ms;
}

.telenor .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: 16px 19px;
}

.telenor .v-Notification .v-Notification-caption {
	color: rgba(153, 153, 153, 0.3);
	font-size: 17px;
	line-height: 1;
}

.telenor .v-Notification .v-Notification-description {
	line-height: 1.4;
}

.telenor .v-Notification-caption {
	margin: 0;
	display: inline-block;
	text-align: left;
	font-weight: inherit;
	line-height: inherit;
	white-space: nowrap;
	letter-spacing: 0;
}

.telenor .v-Notification-description, .telenor .v-Notification-details {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	max-width: 30em;
	text-align: left;
	max-height: 20em;
	overflow: auto;
}

.telenor .v-Notification-caption ~ .v-Notification-description, .telenor .v-Notification-caption ~ .v-Notification-details {
	margin-left: 21px;
}

.telenor .v-icon + .v-Notification-caption {
	margin-left: 14px;
}

.telenor .v-Notification-system {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 11px 13px;
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 500;
	line-height: 20px;
}

.telenor .v-Notification-system .v-Notification-description, .telenor .v-Notification-system .v-Notification-details {
	max-width: 50em;
}

.telenor .v-Notification-system.v-position-top {
	top: 0;
}

.telenor .v-Notification-system.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.telenor .v-Notification-system.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.telenor .v-Notification-system.v-position-bottom {
	bottom: 0;
}

.telenor .v-Notification-system.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.telenor .v-Notification-system.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.telenor .v-Notification-system .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.telenor .v-Notification-system .v-Notification-description, .telenor .v-Notification-system .v-Notification-details {
	color: #e6e6e6;
}

.telenor .v-Notification-system u {
	text-decoration: none;
}

.telenor .v-Notification.tray {
	text-align: left;
}

.telenor .v-Notification.tray .v-Notification-caption + .v-Notification-description {
	display: block;
	margin: 0.5em 0 0;
}

.telenor .v-Notification.warning {
	background: #FFF3D2;
}

.telenor .v-Notification.warning .v-Notification-caption {
	color: #AC7C00;
}

.telenor .v-Notification.warning .v-Notification-description {
	color: #9D874D;
}

.telenor .v-Notification.error {
	background: #e32119;
	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: 51px;
	overflow: hidden !important;
	cursor: pointer;
}

.telenor .v-Notification.error .v-Notification-caption {
	color: white;
}

.telenor .v-Notification.error .v-Notification-description {
	color: #f2dad9;
}

.telenor .v-Notification.error:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	right: 11px;
	width: 21px;
	height: 21px;
	line-height: 20px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	-o-transition: opacity 200ms;
	transition: opacity 200ms;
}

.telenor .v-Notification.error:hover:after {
	opacity: 1;
	filter: none ;
}

.telenor .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;
	-o-transition: none 200ms;
	transition: none 200ms;
}

.telenor .v-Notification.error:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.telenor .v-Notification.error:active:after {
	background-color: #fff;
	color: #000;
}

.telenor .v-Notification.dark {
	background-color: #444;
	background-color: rgba(68, 68, 68, 0.9);
	font-weight: 500;
	line-height: 20px;
}

.telenor .v-Notification.dark .v-Notification-caption {
	color: #fff;
	vertical-align: middle;
}

.telenor .v-Notification.dark .v-Notification-description, .telenor .v-Notification.dark .v-Notification-details {
	color: #e6e6e6;
}

.telenor .v-Notification.bar {
	left: 0 !important;
	right: 0;
	max-width: 100%;
	margin: 0 !important;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 11px 13px;
}

.telenor .v-Notification.bar .v-Notification-description, .telenor .v-Notification.bar .v-Notification-details {
	max-width: 50em;
}

.telenor .v-Notification.bar.v-position-top {
	top: 0;
}

.telenor .v-Notification.bar.v-position-top[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-down 300ms 10ms backwards;
	animation: valo-animate-in-slide-down 300ms 10ms backwards;
}

.telenor .v-Notification.bar.v-position-top[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-up 200ms;
	-moz-animation: valo-animate-out-slide-up 200ms;
	animation: valo-animate-out-slide-up 200ms;
}

.telenor .v-Notification.bar.v-position-bottom {
	bottom: 0;
}

.telenor .v-Notification.bar.v-position-bottom[class*="animate-in"] {
	-webkit-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	-moz-animation: valo-animate-in-slide-up 300ms 10ms backwards;
	animation: valo-animate-in-slide-up 300ms 10ms backwards;
}

.telenor .v-Notification.bar.v-position-bottom[class*="animate-out"] {
	-webkit-animation: valo-animate-out-slide-down 200ms;
	-moz-animation: valo-animate-out-slide-down 200ms;
	animation: valo-animate-out-slide-down 200ms;
}

.telenor .v-Notification.small {
	padding: 10px 11px;
}

.telenor .v-Notification.small .v-Notification-caption {
	font-size: 14px;
}

.telenor .v-Notification.small .v-Notification-description {
	font-size: 12px;
}

.telenor .v-Notification.critical-error {
	background: #e32119;
	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);
}

.telenor .v-Notification.critical-error .v-Notification-caption {
	color: white;
}

.telenor .v-Notification.critical-error .v-Notification-description {
	color: #f2dad9;
}

.telenor .v-Notification.closable {
	padding-right: 51px;
	overflow: hidden !important;
	cursor: pointer;
}

.telenor .v-Notification.closable:after {
	content: "\00d7";
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	right: 11px;
	width: 21px;
	height: 21px;
	line-height: 20px;
	cursor: pointer;
	color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50) ;
	text-align: center;
	border: 1px solid #000;
	border-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	-o-transition: opacity 200ms;
	transition: opacity 200ms;
}

.telenor .v-Notification.closable:hover:after {
	opacity: 1;
	filter: none ;
}

.telenor .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;
	-o-transition: none 200ms;
	transition: none 200ms;
}

.telenor .v-Notification.closable.dark:after, .telenor .v-Notification.closable.critical-error:after, .telenor .v-Notification.closable.system:after {
	color: #fff;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.telenor .v-Notification.closable.dark:active:after, .telenor .v-Notification.closable.critical-error:active:after, .telenor .v-Notification.closable.system:active:after {
	background-color: #fff;
	color: #000;
}

.telenor .v-Notification.closable.tray:after {
	top: 14px;
	margin-top: 0;
}

.telenor .v-Notification.success, .telenor .v-Notification.failure {
	background: #fff;
	color: #555;
	border: 2px solid #2c9720;
}

.telenor .v-Notification.success .v-Notification-caption, .telenor .v-Notification.failure .v-Notification-caption {
	color: #2c9720;
	font-weight: 500;
}

.telenor .v-Notification.success .v-Notification-caption:before, .telenor .v-Notification.failure .v-Notification-caption:before {
	font-family: ThemeIcons;
	content: "\f00c";
	margin-right: 0.5em;
}

.telenor .v-Notification.success.bar, .telenor .v-Notification.failure.bar {
	margin: -2px !important;
}

.telenor .v-Notification.failure {
	border-color: #e32119;
}

.telenor .v-Notification.failure .v-Notification-caption {
	color: #e32119;
}

.telenor .v-Notification.failure .v-Notification-caption:before {
	content: "\f05e";
}

.telenor .valo-menu {
	height: 100%;
	background-color: #4d4d4d;
	background-image: -webkit-linear-gradient(right, #424242 0%, #4d4d4d 8px);
	background-image: linear-gradient(to left,#424242 0%, #4d4d4d 8px);
	color: #a6a6a6;
	font-size: 13px;
	line-height: 26px;
	border-right: 1px solid #3c3c3c;
	white-space: nowrap;
}

.telenor .valo-menu-toggle {
	display: none;
	position: fixed;
	z-index: 200;
	top: 3px;
	left: 3px;
	min-width: 0;
}

.telenor .valo-menu-part {
	border-left: 1px solid #434343;
	height: 100%;
	padding-bottom: 32px;
	overflow: auto;
}

.telenor .valo-menu-part:first-child {
	border-left: none;
}

.telenor .valo-menu-title, .telenor .valo-menu-subtitle, .telenor .valo-menu-item {
	display: block;
	line-height: inherit;
	white-space: nowrap;
	position: relative;
}

.telenor .valo-menu-title .valo-menu-badge, .telenor .valo-menu-subtitle .valo-menu-badge, .telenor .valo-menu-item .valo-menu-badge {
	position: absolute;
	right: 16px;
}

.telenor .valo-menu-title {
	line-height: 1.2;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(0, 0, 0, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 11px 16px;
	font-size: 13px;
	border-bottom: 1px solid #242424;
	-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;
}

.telenor .valo-menu-title .v-menubar.v-menubar {
	background: transparent;
	border-color: #242424;
	color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: inherit;
}

.telenor .valo-menu-title .v-menubar-menuitem {
	background: transparent;
	-webkit-box-shadow: inset 0 1px 0 #515151, inset 0 -1px 0 #2a2a2a;
	box-shadow: inset 0 1px 0 #515151, inset 0 -1px 0 #2a2a2a;
	text-shadow: inherit;
	font-size: 14px;
	border-color: inherit;
}

.telenor .valo-menu-title h1, .telenor .valo-menu-title .v-label-h1, .telenor .valo-menu-title h2, .telenor .valo-menu-title .v-label-h2, .telenor .valo-menu-title h3, .telenor .valo-menu-title .v-label-h3, .telenor .valo-menu-title h4, .telenor .valo-menu-title .v-label-h4 {
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}

.telenor .v-menubar-user-menu {
	border: none;
	border-radius: 0;
	padding: 1px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: none;
	background: transparent;
	color: inherit;
	margin: 16px 6px;
	display: block;
	overflow: hidden;
	text-align: center;
	height: auto;
	color: inherit;
}

.telenor .v-menubar-user-menu:focus:after {
	display: none;
}

.telenor .v-menubar-user-menu .v-menubar-menuitem {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-right: 1px;
	border-radius: 2px;
	color: rgba(153, 153, 153, 0.3);
	padding: 0 11px;
	-webkit-transition: color 140ms;
	-moz-transition: color 140ms;
	-o-transition: color 140ms;
	transition: color 140ms;
}

.telenor .v-menubar-user-menu .v-menubar-menuitem:first-child, .telenor .v-menubar-user-menu .v-menubar-menuitem:last-child, .telenor .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
	border-radius: 2px;
}

.telenor .v-menubar-user-menu .v-menubar-menuitem:before {
	content: none;
}

.telenor .v-menubar-user-menu .v-menubar-menuitem:hover {
	color: rgba(179, 179, 179, 0.3);
}

.telenor .v-menubar-user-menu .v-menubar-menuitem:active {
	color: inherit;
}

.telenor .v-menubar-user-menu .v-menubar-menuitem-checked, .telenor .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
	border: 1px solid #c5c5c5;
	color: rgba(153, 153, 153, 0.3);
}

.telenor .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .telenor .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
	position: relative;
	top: -1px;
}

.telenor .v-menubar-user-menu .v-menubar-menuitem-selected {
	color: rgba(15, 15, 15, 0.3);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.telenor .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
	color: rgba(15, 15, 15, 0.3);
}

.telenor .v-menubar-user-menu .v-menubar-menuitem-disabled, .telenor .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
	color: inherit;
}

.telenor .v-menubar-user-menu  > .v-menubar-menuitem {
	color: inherit;
	white-space: normal;
	line-height: 1.4;
	margin: 0;
}

.telenor .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
	width: 48px;
	height: 48px;
	border-radius: 25px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	display: block;
	margin: 0 auto 0.3em;
	border: 1px solid #c5c5c5;
}

.telenor .v-menubar-user-menu  > .v-menubar-menuitem:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.telenor .v-menubar-user-menu .v-menubar-menuitem-selected {
	background: transparent;
}

.telenor .valo-menu-subtitle {
	color: #878787;
	margin: 6px 0 6px 16px;
	border-bottom: 1px solid #676767;
}

.telenor .valo-menu-subtitle [class*="badge"] {
	color: rgba(197, 197, 197, 0.65);
}

.telenor .valo-menuitems {
	display: block;
}

.telenor .valo-menu-item {
	outline: none;
	font-weight: 500;
	padding: 0 32px 0 16px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
	-webkit-transition: background-color 300ms, color 60ms;
	-moz-transition: background-color 300ms, color 60ms;
	-o-transition: background-color 300ms, color 60ms;
	transition: background-color 300ms, color 60ms;
}

.telenor .valo-menu-item [class*="caption"] {
	vertical-align: middle;
	display: inline-block;
	width: 90%;
	max-width: 15em;
	padding-right: 16px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.telenor .valo-menu-item [class*="badge"] {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .valo-menu-item.selected {
	background: #454545;
}

.telenor .valo-menu-item.selected .v-icon {
	color: rgba(153, 153, 153, 0.3);
}

.telenor .valo-menu-item.selected [class*="badge"] {
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(43, 43, 43, 0.3);
}

.telenor .valo-menu-item:focus, .telenor .valo-menu-item:hover, .telenor .valo-menu-item.selected {
	color: white;
}

.telenor .valo-menu-item span.v-icon {
	min-width: 1em;
	margin-right: 16px;
	text-align: center;
	vertical-align: middle;
	-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0.75)));
}

.telenor .valo-menu-item span.v-icon  + span {
	margin-left: 0;
}

.telenor .valo-menu-item [class*="badge"] {
	background-color: #595959;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	-o-transition: background-color 300ms;
	transition: background-color 300ms;
	line-height: 1;
	padding: 4px 5px;
	min-width: 9px;
	text-align: center;
	top: 2.5px;
	border-radius: 2px;
}

.telenor .valo-menu-part.large-icons {
	background-color: #4d4d4d;
	min-width: 64px;
	max-width: 96px;
}

.telenor .valo-menu-part.large-icons .valo-menu-title {
	font-size: 11px;
}

.telenor .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.telenor .valo-menu-part.large-icons .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.telenor .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
	width: 25px;
	height: 25px;
}

.telenor .valo-menu-part.large-icons [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 21px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3d3d3d;
	font-size: 11px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.telenor .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.telenor .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.telenor .valo-menu-part.large-icons .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 11px;
	text-align: center;
	border-top: 1px solid #575757;
}

.telenor .valo-menu-part.large-icons .valo-menu-item:first-child {
	border-top: none;
}

.telenor .valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.3;
}

.telenor .valo-menu-part.large-icons .valo-menu-item .v-icon {
	margin: 0;
}

.telenor .valo-menu-part.large-icons .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.telenor .valo-menu-part.large-icons .valo-menu-item.selected {
	background: #454545;
}

.telenor .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.telenor .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
	border-color: #454545;
}

.telenor .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 6px;
	right: 6px;
	border: 2px solid #4d4d4d;
}

.telenor .valo-menu-logo {
	display: block;
	overflow: hidden;
	width: 38px !important;
	height: 38px;
	border-radius: 2px;
	text-align: center;
	background-color: rgba(153, 153, 153, 0.3);
	background-image: -webkit-linear-gradient(top, #3e3e3e 2%, #2c2c2c 98%);
	background-image: linear-gradient(to bottom,#3e3e3e 2%, #2c2c2c 98%);
	color: rgba(0, 0, 0, 0.3);
	font-size: 21px;
	line-height: 38px;
	margin: 16px auto;
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.telenor .valo-menu-logo:focus {
	outline: none;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
	background-color: #4d4d4d;
	min-width: 64px;
	max-width: 96px;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
	font-size: 11px;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
	white-space: normal;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
	margin-left: 0;
	margin-right: 0;
	font-size: 10px;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
	width: 25px;
	height: 25px;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
	margin: 8px 0 0;
	padding: 6px 21px 6px 8px;
	line-height: 1;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
	background: #3d3d3d;
	font-size: 11px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
	right: 8px;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
	border-top: none;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
	display: block;
	font-size: 22px;
	line-height: 1;
	padding: 11px;
	text-align: center;
	border-top: 1px solid #575757;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
	border-top: none;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="caption"] {
	display: block;
	width: auto;
	margin: 0.3em 0 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.3;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
	margin: 0;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
	opacity: 0.8;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
	background: #454545;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
	opacity: 1;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
	border-color: #454545;
}

.telenor .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
	padding-left: 4px;
	padding-right: 4px;
	top: 6px;
	right: 6px;
	border: 2px solid #4d4d4d;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] {
	padding-top: 32px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
	top: 32px;
}

.telenor .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
	position: relative !important;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
	border-right: none;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
	overflow: visible;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
	display: inline-block;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 32px !important;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-backface-visibility: hidden;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	height: 32px;
	color: rgba(77, 77, 77, 0.3);
	max-width: 30%;
	-webkit-backface-visibility: hidden;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
	line-height: 31px;
	white-space: nowrap;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu img.v-icon {
	display: inline-block;
	margin: 0 5px 0 0;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	border: none;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
	height: 100%;
	background-color: #4d4d4d;
	background-image: -webkit-linear-gradient(right, #424242 0%, #4d4d4d 8px);
	background-image: linear-gradient(to left,#424242 0%, #4d4d4d 8px);
	color: #a6a6a6;
	font-size: 13px;
	line-height: 26px;
	border-right: 1px solid #3c3c3c;
	white-space: nowrap;
	position: fixed;
	z-index: 9000;
	top: 32px;
	bottom: 0;
	height: auto;
	max-width: 100%;
	overflow: auto;
	padding: 16px 0;
	-webkit-transform: translatex(-100%);
	-moz-transform: translatex(-100%);
	-ms-transform: translatex(-100%);
	-o-transform: translatex(-100%);
	transform: translatex(-100%);
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

.telenor .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems, .telenor .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%);
}

.telenor .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
	display: none;
}

.telenor .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
	display: inline-block;
	width: 16px;
	overflow: hidden;
}

.telenor .v-menubar.top-menu {
	padding: 0;
	height: 45px;
	line-height: 45px;
}

.telenor .v-menubar.top-menu  > .v-menubar-menuitem {
	line-height: 40px;
	height: 45px;
	padding: 5px 20px 0;
	margin: 0;
	color: black;
	border-bottom-color: #00577e;
	-webkit-transition: color 140ms, border-bottom-width 140ms, border-bottom-color 140ms;
	-moz-transition: color 140ms, border-bottom-width 140ms, border-bottom-color 140ms;
	transition: color 140ms, border-bottom-width 140ms, border-bottom-color 140ms;
}

.telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected:hover, .telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected:first-child, .telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected:last-child, .telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected:first-child:last-child {
	background-image: none;
	background-color: transparent;
	border-bottom: 4px solid #00577e;
	border-radius: 0;
	color: #00577e;
}

.telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected:last-child, .telenor .v-menubar.top-menu  > .v-menubar-menuitem:hover {
	color: #00577e;
}

.telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after, .telenor .v-menubar.top-menu  > .v-menubar-menuitem.v-menubar-menuitem-selected:last-child .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after, .telenor .v-menubar.top-menu  > .v-menubar-menuitem:hover .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after {
	color: #00577e;
}

.telenor .v-grid-sidebar-content .gwt-MenuBar .gwt-MenuItem-selected {
	background: #e0e0e0;
	color: rgba(0, 0, 0, 0.87);
	-webkit-transition: background 140ms;
	transition: background 140ms;
}

.telenor .v-menubar > .v-menubar-menuitem {
	font-weight: bolder;
}

.telenor .footer-layout {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	margin-right: auto;
	margin-left: auto;
	display: block;
}

.telenor .footer-layout  > .footer-content {
	width: 100% !important;
}

.telenor .footer-layout  > .footer-content  > .copyright {
	padding: 24px 0;
}

.telenor .footer-layout-margin {
	margin-bottom: 5px;
}

.telenor .footer-portal-instances {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.telenor .footer-portal-instances .row {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	padding: 1em 0;
	width: 100%;
	position: relative;
}

.telenor .footer-portal-instances .row .logo {
	width: 120px;
	position: absolute;
	top: 2em;
	left: 0px;
}

.telenor .footer-portal-instances .row .portal2-description {
	float: left;
	position: relative;
	width: 20%;
	margin-left: 15%;
}

.telenor .footer-portal-instances .row .portal2-description .description {
	font-size: 0.8em;
	margin-top: 1em;
	text-align: justify;
	white-space: normal;
}

.telenor .footer-portal-instances .row .links {
	float: right;
	position: relative;
	width: 63%;
	-webkit-columns: auto 3;
	-moz-columns: auto 3;
	columns: auto 3;
	padding-top: 2.3em;
}

.telenor .footer-portal-instances .row .links .header {
	position: absolute;
	top: 0px;
	left: 0px;
}

.telenor .footer-portal-instances .row .links .link-block {
	margin-bottom: 1em;
	width: 100%;
	font-size: 0.8em;
}

.telenor .footer-portal-instances .row .links .link-block .v-link:before {
	content: "-";
	margin-right: 0.5em;
}

.telenor .footer-portal-instances .row .links .link-block .v-link a:hover {
	text-decoration: underline;
}

.telenor .footer-portal-instances .row .links .link-block .v-link {
	color: #00577e;
	text-decoration: none;
}

.telenor  > .v-ui > .portal-view {
	min-height: 43em;
}

.telenor .note-layout-label {
	margin-bottom: 10px;
	margin-top: -10px;
}

.telenor .v-slot-view-content-parent {
	background-color: #ffffff;
}

.telenor img.top-area-logo {
	max-height: 50px;
	max-width: 350px;
}

.telenor .view-content-parent > .v-slot  > div, .telenor .v-slot-top-area  > div, .telenor .v-slot-top-menu  > div, .telenor .v-slot-footer-layout  > div {
	width: 100% !important;
	max-width: 1006px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	display: block;
}

.telenor .view-content-parent > .v-slot  > div.top-area, .telenor .v-slot-top-area  > div.top-area, .telenor .v-slot-top-menu  > div.top-area, .telenor .v-slot-footer-layout  > div.top-area {
	padding: 10px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .view-content-parent > .v-slot  > div.top-menu, .telenor .v-slot-top-area  > div.top-menu, .telenor .v-slot-top-menu  > div.top-menu, .telenor .v-slot-footer-layout  > div.top-menu {
	padding: 0;
}

.telenor .view-content-parent > .v-slot  > .v-grid, .telenor .v-slot-top-area  > .v-grid, .telenor .v-slot-top-menu  > .v-grid, .telenor .v-slot-footer-layout  > .v-grid {
	padding: 0;
}

.telenor .v-slot-top-area {
	background-color: transparent;
}

.telenor .view-content-parent.embedded > .v-slot > div {
	width: 100% !important;
	max-width: 1016px;
}

.telenor .v-slot-panel-actions {
	margin: 0 -20px -10px;
	padding: 10px 20px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .notes-layout  > .v-spacing, .telenor .notes-layout  > .v-expand  > .v-spacing {
	height: 0;
}

.telenor .additionalFilterLayout {
	margin: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .v-gridlayout.deviceoverview {
	margin-bottom: -20px;
}

.telenor .side-info {
	width: 240px !important;
}

.telenor .dcp-layout.approved {
	color: #00577e;
}

.telenor .dcp-layout.error, .telenor .dcp-layout.rejected {
	color: #e32119;
}

.telenor .dcp-layout.timeout {
	color: #e32119;
}

.telenor .columns  > .v-spacing, .telenor .columns  > .v-expand > .v-spacing {
	width: 0;
}

.telenor .left-column, .telenor .right-column {
	padding: 10px;
}

.telenor .buttons-layout  > .v-spacing, .telenor .buttons-layout  > .v-expand  > .v-spacing {
	width: 10px;
}

.telenor .v-formlayout.v-layout .v-formlayout-row > td {
	padding: 10px;
	line-height: 10px;
}

.telenor .v-formlayout.v-layout .v-formlayout-row > td.v-formlayout-captioncell {
	text-align: right;
}

.telenor .v-formlayout.v-layout .v-formlayout-row > td.v-formlayout-contentcell {
	padding-left: 0;
}

.telenor .v-formlayout.v-layout .v-formlayout-row > td.v-formlayout-errorcell {
	padding: 0;
}

.telenor .v-formlayout.v-layout .v-formlayout-row > td.v-formlayout-errorcell .v-formlayout-error-indicator:empty {
	display: none;
}

.telenor .column-slot {
	font-size: 18px;
	font-weight: normal;
}

.telenor .column-slot .column-units {
	padding-bottom: 4px;
}

.telenor .column-slot .v-caption {
	font-weight: bolder;
}

.telenor .v-verticallayout-noleftpadding {
	padding-left: 0;
}

.telenor .dcp-buttonbar {
	padding: 10px;
}

.telenor .v-slot-dcp-buttonbar.v-slot-dcp-buttonbar-top-border {
	border-top: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .v-slot-dcp-buttonbar.v-slot-dcp-buttonbar-bottom-border {
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-scrolling-content-layout {
	overflow: auto;
}

.telenor .dcp-layout-border-bottom, .telenor .v-slot-dcp-layout-slot-border-bottom {
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-layout-border-top, .telenor .v-slot-dcp-layout-slot-border-top {
	border-top: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-layout-border-left, .telenor .v-slot-dcp-layout-slot-border-left {
	border-left: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-layout-border-right, .telenor .v-slot-dcp-layout-slot-border-right {
	border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-layout-half-spacing .v-spacing {
	width: 10px;
	height: 10px;
}

.telenor .dcp-layout-quarter-spacing .v-spacing {
	width: 5px;
	height: 5px;
}

.telenor .dcp-layout-half-margin.v-margin-top, .telenor .dcp-layout-half-margin.v-gridlayout-margin-top {
	padding-top: 10px;
}

.telenor .dcp-layout-half-margin.v-margin-bottom, .telenor .dcp-layout-half-margin.v-gridlayout-margin-bottom {
	padding-bottom: 10px;
}

.telenor .dcp-layout-half-margin.v-margin-left, .telenor .dcp-layout-half-margin.v-gridlayout-margin-left {
	padding-left: 10px;
}

.telenor .dcp-layout-half-margin.v-margin-right, .telenor .dcp-layout-half-margin.v-gridlayout-margin-right {
	padding-right: 10px;
}

.telenor .v-button, .telenor .v-button-wrap, .telenor .v-button-caption {
	line-height: 16.8px;
}

.telenor .button-with-overhead-caption .v-label {
	display: none;
}

.telenor .button-with-overhead-caption .v-slot.v-slot-link {
	padding: 0;
}

.telenor .button-with-overhead-caption.nopaddingtop .v-slot.v-slot-link .v-button {
	padding-top: 0px;
}

.telenor .button-with-overhead-caption .v-button > .v-button-wrap > .v-button-caption {
	font-size: 20px;
}

.telenor .v-slot.v-slot-link .v-button.v-button-link {
	background-color: transparent;
	font-weight: normal;
}

.telenor .v-slot.v-slot-link .v-button.v-button-link:not(.v-disabled):focus {
	background-color: transparent;
}

.telenor .v-slot.v-slot-link .v-button.v-button-link:not(.v-disabled):hover {
	background-color: transparent;
}

.telenor .v-slot.v-slot-link .v-button.v-button-link:not(.v-disabled):hover .v-button-caption {
	text-decoration: underline;
}

.telenor .v-button {
	cursor: pointer;
	background: #ffffff;
	color: rgba(0, 0, 0, 0.87);
	font-weight: normal;
	height: auto;
	padding: 6.6px 10px;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-button.v-disabled {
	cursor: default;
}

.telenor .v-button.v-disabled .v-button-wrap .v-button-caption {
	color: rgba(0, 0, 0, 0.26);
}

.telenor .v-button .v-button-caption {
	line-height: 16.8px;
	display: inline-block;
}

.telenor .v-button:focus {
	outline: none;
}

.telenor .v-button:before, .telenor .v-button:after {
	display: none;
}

.telenor .v-button.negative-action:not(.v-disabled) {
	background-color: #FFF;
	color: #333333;
}

.telenor .v-button.secondary-action:not(.v-disabled) {
	background-color: #FFF;
	color: #333333;
}

.telenor .v-button.primary-action:not(.v-disabled) {
	background-color: #00577e;
	color: #FFF;
}

.telenor .v-button.primary-action:not(.v-disabled):hover {
	background-color: #00344b;
}

.telenor .v-button.primary-action:not(.v-disabled):active {
	background-color: #001118;
}

.telenor .v-button.refresh-action:not(.v-disabled) {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #FFF;
	border-radius: 19px;
	margin: 0 10px 0 0;
	color: #00577e;
	font-size: 1.5em;
	padding: 0px;
}

.telenor .v-button.refresh-action:not(.v-disabled):hover {
	transition: box-shadow 0s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.telenor .v-button.refresh-action:not(.v-disabled):hover .v-icon {
	-webkit-animation: spin 1s ease-in-out infinite;
	animation: spin 1s ease-in-out infinite;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.telenor .v-button.refresh-action:not(.v-disabled):active {
	-webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
	transition-delay: 0s;
}

.telenor .v-button.loading {
	color: transparent;
}

.telenor .v-button.loading:before {
	display: block;
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	margin-top: -6px;
	margin-left: -6px;
	height: 12px !important;
	width: 12px !important;
	box-sizing: border-box;
	border: 2px solid rgba(51, 51, 51, 0.2);
	border-top-color: #333333;
	border-right-color: #333333;
	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;
}

.telenor .v-button.info-borderless {
	color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-button.info-borderless:hover, .telenor .v-button.info-borderless:focus, .telenor .v-button.info-borderless:active {
	color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-button.info-borderless  > .v-button-wrap  > .v-button-caption, .telenor .v-button.info-borderless  > .v-button-wrap  > .v-icon {
	color: #00577e;
}

.telenor .actionsbuttonlayout .v-button:not(.dcp-button), .telenor .page-toolbar .v-button:not(.dcp-button), .telenor .actionslayout .v-button:not(.dcp-button), .telenor .section .v-button:not(.dcp-button), .telenor .v-slot.v-slot-link .v-button:not(.dcp-button), .telenor .v-grid-row .v-button:not(.dcp-button) {
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #00577e;
	background: transparent;
}

.telenor .actionsbuttonlayout .v-button:not(.dcp-button):not(.v-disabled):active, .telenor .actionsbuttonlayout .v-button:not(.dcp-button):not(.v-disabled):focus, .telenor .actionsbuttonlayout .v-button.v-pressed:not(.dcp-button):not(.v-disabled), .telenor .page-toolbar .v-button:not(.dcp-button):not(.v-disabled):active, .telenor .page-toolbar .v-button:not(.dcp-button):not(.v-disabled):focus, .telenor .page-toolbar .v-button.v-pressed:not(.dcp-button):not(.v-disabled), .telenor .actionslayout .v-button:not(.dcp-button):not(.v-disabled):active, .telenor .actionslayout .v-button:not(.dcp-button):not(.v-disabled):focus, .telenor .actionslayout .v-button.v-pressed:not(.dcp-button):not(.v-disabled), .telenor .section .v-button:not(.dcp-button):not(.v-disabled):active, .telenor .section .v-button:not(.dcp-button):not(.v-disabled):focus, .telenor .section .v-button.v-pressed:not(.dcp-button):not(.v-disabled), .telenor .v-slot.v-slot-link .v-button:not(.dcp-button):not(.v-disabled):active, .telenor .v-slot.v-slot-link .v-button:not(.dcp-button):not(.v-disabled):focus, .telenor .v-slot.v-slot-link .v-button.v-pressed:not(.dcp-button):not(.v-disabled), .telenor .v-grid-row .v-button:not(.dcp-button):not(.v-disabled):active, .telenor .v-grid-row .v-button:not(.dcp-button):not(.v-disabled):focus, .telenor .v-grid-row .v-button.v-pressed:not(.dcp-button):not(.v-disabled) {
	background: #dcdcdc;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .actionsbuttonlayout .v-button:not(.dcp-button):not(.v-disabled):hover, .telenor .page-toolbar .v-button:not(.dcp-button):not(.v-disabled):hover, .telenor .actionslayout .v-button:not(.dcp-button):not(.v-disabled):hover, .telenor .section .v-button:not(.dcp-button):not(.v-disabled):hover, .telenor .v-slot.v-slot-link .v-button:not(.dcp-button):not(.v-disabled):hover, .telenor .v-grid-row .v-button:not(.dcp-button):not(.v-disabled):hover {
	background: #f2f2f2;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .actionsbuttonlayout .v-button.v-disabled:not(.dcp-button), .telenor .page-toolbar .v-button.v-disabled:not(.dcp-button), .telenor .actionslayout .v-button.v-disabled:not(.dcp-button), .telenor .section .v-button.v-disabled:not(.dcp-button), .telenor .v-slot.v-slot-link .v-button.v-disabled:not(.dcp-button), .telenor .v-grid-row .v-button.v-disabled:not(.dcp-button) {
	cursor: default;
}

.telenor .actionsbuttonlayout .v-button.v-disabled:not(.dcp-button) .v-button-wrap .v-button-caption, .telenor .page-toolbar .v-button.v-disabled:not(.dcp-button) .v-button-wrap .v-button-caption, .telenor .actionslayout .v-button.v-disabled:not(.dcp-button) .v-button-wrap .v-button-caption, .telenor .section .v-button.v-disabled:not(.dcp-button) .v-button-wrap .v-button-caption, .telenor .v-slot.v-slot-link .v-button.v-disabled:not(.dcp-button) .v-button-wrap .v-button-caption, .telenor .v-grid-row .v-button.v-disabled:not(.dcp-button) .v-button-wrap .v-button-caption {
	color: #9b9b9b;
}

.telenor .buttons-layout .popup-button {
	text-align: left;
	white-space: normal;
	word-wrap: break-word;
}

.telenor .buttons-layout .v-button:not(.v-disabled):hover {
	background: #f2f2f2;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .flat-buttons-layout .v-spacing {
	width: 10px;
}

.telenor .flat-buttons-layout .v-button {
	-webkit-box-shadow: none;
	box-shadow: none;
	text-transform: uppercase;
}

.telenor .flat-buttons-layout .v-button.primary-action:not(.v-disabled) {
	color: #00577e;
	background: transparent;
}

.telenor .flat-buttons-layout .v-button.primary-action:not(.v-disabled):hover {
	background: #F2F2F2;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .flat-buttons-layout .v-button.primary-action:not(.v-disabled):focus {
	background: #d9d9d9;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .flat-buttons-layout .v-button.primary-action:not(.v-disabled):active, .telenor .flat-buttons-layout .v-button.primary-action.v-pressed:not(.v-disabled) {
	background: #bfbfbf;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .flat-buttons-layout .v-button.primary-action.v-disabled:not(.v-disabled) {
	color: rgba(0, 0, 0, 0.26);
}

.telenor .flat-buttons-layout .v-button.cancel-button {
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #202020;
	background: transparent;
}

.telenor .flat-buttons-layout .v-button.cancel-button:hover {
	background: #F2F2F2;
}

.telenor .flat-buttons-layout .v-button.cancel-button.v-disabled:hover {
	background: transparent;
}

.telenor .flat-buttons-layout .v-button.cancel-button:focus {
	background: #d9d9d9;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .flat-buttons-layout .v-button.cancel-button:active, .telenor .flat-buttons-layout .v-button.cancel-button.v-pressed {
	background: #bfbfbf;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .flat-buttons-layout .v-button.cancel-button.v-disabled {
	color: rgba(0, 0, 0, 0.26);
}

.telenor .v-grid-row .v-grid-cell > .v-nativebutton {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 24px;
	color: #00577e;
}

.telenor .v-grid-row .v-grid-cell > .v-nativebutton:before {
	font-family: "Material Icons";
	content: "\e8b8";
}

.telenor .v-grid-row.disabled-cell > .v-nativebutton {
	opacity: 0.5;
}

.telenor .view-content-parent {
	position: relative;
}

.telenor .v-slot-buttonslayout .v-button {
	margin: 10px;
}

.telenor .v-slot-actionslayout {
	position: absolute;
	left: 0;
	right: 0;
	top: 140px;
	z-index: 1;
}

.telenor .v-slot-actionslayout  + .v-spacing {
	display: none;
}

.telenor .v-slot-actionslayout  > div.actionslayout {
	padding: 10px;
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
	border-radius: 2px;
}

.telenor .v-slot-actionslayout  > div.actionslayout  > .v-spacing {
	width: 10px;
}

.telenor .v-slot.v-slot-link {
	display: inline-block;
	padding-top: 10px;
}

.telenor .v-button-link {
	text-decoration: none;
}

.telenor .section .v-button {
	margin: 0 -10px;
	width: auto;
}

.telenor .section .v-button, .telenor .section .v-button > .v-button-wrap, .telenor .section .v-button > .v-button-wrap > .v-button-caption {
	overflow: visible;
}

.telenor .v-button .v-button-wrap .v-icon.Material\+Icons {
	vertical-align: bottom;
}

.telenor .v-button.hide-download-button {
	display: none;
}

.telenor .labelbutton.lb-clickable {
	cursor: pointer;
}

.telenor .labelbutton.lb-clickable:not(.v-disabled):hover {
	background: #e0e0e0;
}

.telenor .labelbutton.lb-clickable.v-disabled {
	text-color: rgba(0, 0, 0, 0.26) !important;
}

.telenor .v-slot-cancel-button {
	text-align: right;
}

.telenor .v-button-primary {
	min-width: 0;
}

.telenor .filter-button {
	border: 1px solid #ccc;
	border-radius: 25px;
	font-size: 14px;
	line-height: 30px;
	height: 30px;
}

.telenor .v-slot-save-note-button {
	position: absolute;
	top: 15px;
	right: 0;
}

.telenor .dcp-upload .v-button, .telenor .dcp-button {
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-box-shadow: none;
	box-shadow: none;
	box-sizing: border-box;
	height: auto;
	padding: $button-padding-top $button-padding-side;
}

.telenor .dcp-upload .v-button .v-icon, .telenor .dcp-upload .v-button .v-button-wrap .v-button-caption, .telenor .dcp-button .v-icon, .telenor .dcp-button .v-button-wrap .v-button-caption {
	color: inherit;
}

.telenor .dcp-upload .v-button:not(.v-disabled), .telenor .dcp-button:not(.v-disabled) {
	background-color: transparent;
	color: #00577e;
}

.telenor .dcp-upload .v-button:not(.v-disabled):hover, .telenor .dcp-button:not(.v-disabled):hover {
	color: #00496a;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button:not(.v-disabled):active, .telenor .dcp-upload .v-button:not(.v-disabled):focus, .telenor .dcp-upload .v-button.v-pressed:not(.v-disabled), .telenor .dcp-button:not(.v-disabled):active, .telenor .dcp-button:not(.v-disabled):focus, .telenor .dcp-button.v-pressed:not(.v-disabled) {
	color: #003b55;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button.primary:not(.v-disabled), .telenor .dcp-button.primary:not(.v-disabled) {
	background-color: #00577e;
	color: #FFF;
}

.telenor .dcp-upload .v-button.primary:not(.v-disabled):hover, .telenor .dcp-button.primary:not(.v-disabled):hover {
	background-color: #00496a;
	color: #FFF;
}

.telenor .dcp-upload .v-button.primary:not(.v-disabled):active, .telenor .dcp-upload .v-button.primary:not(.v-disabled):focus, .telenor .dcp-upload .v-button.primary.v-pressed:not(.v-disabled), .telenor .dcp-button.primary:not(.v-disabled):active, .telenor .dcp-button.primary:not(.v-disabled):focus, .telenor .dcp-button.primary.v-pressed:not(.v-disabled) {
	background-color: #003b55;
	color: #FFF;
}

.telenor .dcp-upload .v-button.nonthemed:not(.v-disabled), .telenor .dcp-button.nonthemed:not(.v-disabled) {
	background-color: transparent;
	color: rgba(0, 0, 0, 0.87);
}

.telenor .dcp-upload .v-button.nonthemed:not(.v-disabled):hover, .telenor .dcp-button.nonthemed:not(.v-disabled):hover {
	color: rgba(0, 0, 0, 0.87);
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button.nonthemed:not(.v-disabled):active, .telenor .dcp-upload .v-button.nonthemed:not(.v-disabled):focus, .telenor .dcp-upload .v-button.nonthemed.v-pressed:not(.v-disabled), .telenor .dcp-button.nonthemed:not(.v-disabled):active, .telenor .dcp-button.nonthemed:not(.v-disabled):focus, .telenor .dcp-button.nonthemed.v-pressed:not(.v-disabled) {
	color: rgba(0, 0, 0, 0.87);
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button.nonthemed.primary:not(.v-disabled), .telenor .dcp-button.nonthemed.primary:not(.v-disabled) {
	background-color: rgba(0, 0, 0, 0.87);
	color: #FFF;
}

.telenor .dcp-upload .v-button.nonthemed.primary:not(.v-disabled):hover, .telenor .dcp-button.nonthemed.primary:not(.v-disabled):hover {
	background-color: rgba(0, 0, 0, 0.87);
	color: #FFF;
}

.telenor .dcp-upload .v-button.nonthemed.primary:not(.v-disabled):active, .telenor .dcp-upload .v-button.nonthemed.primary:not(.v-disabled):focus, .telenor .dcp-upload .v-button.nonthemed.primary.v-pressed:not(.v-disabled), .telenor .dcp-button.nonthemed.primary:not(.v-disabled):active, .telenor .dcp-button.nonthemed.primary:not(.v-disabled):focus, .telenor .dcp-button.nonthemed.primary.v-pressed:not(.v-disabled) {
	background-color: rgba(0, 0, 0, 0.87);
	color: #FFF;
}

.telenor .dcp-upload .v-button.approve:not(.v-disabled), .telenor .dcp-button.approve:not(.v-disabled) {
	background-color: transparent;
	color: #86ba17;
}

.telenor .dcp-upload .v-button.approve:not(.v-disabled):hover, .telenor .dcp-button.approve:not(.v-disabled):hover {
	color: #79a815;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button.approve:not(.v-disabled):active, .telenor .dcp-upload .v-button.approve:not(.v-disabled):focus, .telenor .dcp-upload .v-button.approve.v-pressed:not(.v-disabled), .telenor .dcp-button.approve:not(.v-disabled):active, .telenor .dcp-button.approve:not(.v-disabled):focus, .telenor .dcp-button.approve.v-pressed:not(.v-disabled) {
	color: #6c9613;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button.approve.primary:not(.v-disabled), .telenor .dcp-button.approve.primary:not(.v-disabled) {
	background-color: #86ba17;
	color: #FFF;
}

.telenor .dcp-upload .v-button.approve.primary:not(.v-disabled):hover, .telenor .dcp-button.approve.primary:not(.v-disabled):hover {
	background-color: #79a815;
	color: #FFF;
}

.telenor .dcp-upload .v-button.approve.primary:not(.v-disabled):active, .telenor .dcp-upload .v-button.approve.primary:not(.v-disabled):focus, .telenor .dcp-upload .v-button.approve.primary.v-pressed:not(.v-disabled), .telenor .dcp-button.approve.primary:not(.v-disabled):active, .telenor .dcp-button.approve.primary:not(.v-disabled):focus, .telenor .dcp-button.approve.primary.v-pressed:not(.v-disabled) {
	background-color: #6c9613;
	color: #FFF;
}

.telenor .dcp-upload .v-button.reject:not(.v-disabled), .telenor .dcp-button.reject:not(.v-disabled) {
	background-color: transparent;
	color: #e32119;
}

.telenor .dcp-upload .v-button.reject:not(.v-disabled):hover, .telenor .dcp-button.reject:not(.v-disabled):hover {
	color: #d11e17;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button.reject:not(.v-disabled):active, .telenor .dcp-upload .v-button.reject:not(.v-disabled):focus, .telenor .dcp-upload .v-button.reject.v-pressed:not(.v-disabled), .telenor .dcp-button.reject:not(.v-disabled):active, .telenor .dcp-button.reject:not(.v-disabled):focus, .telenor .dcp-button.reject.v-pressed:not(.v-disabled) {
	color: #be1c15;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-upload .v-button.reject.primary:not(.v-disabled), .telenor .dcp-button.reject.primary:not(.v-disabled) {
	background-color: #e32119;
	color: #FFF;
}

.telenor .dcp-upload .v-button.reject.primary:not(.v-disabled):hover, .telenor .dcp-button.reject.primary:not(.v-disabled):hover {
	background-color: #d11e17;
	color: #FFF;
}

.telenor .dcp-upload .v-button.reject.primary:not(.v-disabled):active, .telenor .dcp-upload .v-button.reject.primary:not(.v-disabled):focus, .telenor .dcp-upload .v-button.reject.primary.v-pressed:not(.v-disabled), .telenor .dcp-button.reject.primary:not(.v-disabled):active, .telenor .dcp-button.reject.primary:not(.v-disabled):focus, .telenor .dcp-button.reject.primary.v-pressed:not(.v-disabled) {
	background-color: #be1c15;
	color: #FFF;
}

.telenor .dcp-upload .v-button.v-disabled, .telenor .dcp-button.v-disabled {
	background-color: transparent;
	cursor: default;
	color: #9b9b9b;
}

.telenor .dcp-upload .v-button.v-disabled, .telenor .dcp-upload .v-button.v-disabled .v-button-wrap .v-button-caption, .telenor .dcp-button.v-disabled, .telenor .dcp-button.v-disabled .v-button-wrap .v-button-caption {
	color: #9b9b9b;
}

.telenor .dcp-upload .v-button.v-disabled.primary, .telenor .dcp-button.v-disabled.primary {
	background-color: #dcdcdc;
	color: #737373;
}

.telenor .dcp-upload .v-button.link, .telenor .dcp-button.link {
	text-transform: none;
}

.telenor .dcp-upload .v-button.inline-button, .telenor .dcp-button.inline-button {
	padding-left: 0px;
	padding-right: 0px;
}

.telenor .dcp-upload.primary .v-button:not(.v-disabled) {
	background-color: #00577e;
	color: #FFF;
}

.telenor .dcp-upload.primary .v-button:not(.v-disabled):hover {
	background-color: #00496a;
	color: #FFF;
}

.telenor .dcp-upload.primary .v-button:not(.v-disabled):active, .telenor .dcp-upload.primary .v-button:not(.v-disabled):focus, .telenor .dcp-upload.primary .v-button.v-pressed:not(.v-disabled) {
	background-color: #003b55;
	color: #FFF;
}

.telenor .dcp-button.dcp-info-bullet-button {
	margin: 6.6px 10px;
	padding: 0;
	line-height: 1.06em;
	background-color: transparent;
}

.telenor .dcp-button.dcp-info-bullet-button:not(.v-disabled) {
	color: #0063bb;
}

.telenor .dcp-button.dcp-info-bullet-button .v-icon {
	vertical-align: middle;
	width: 26px;
	height: 26px;
	margin: -4.6px 0;
	line-height: 26px;
}

.telenor .dcp-button.dcp-info-bullet-button:hover:not(.v-disabled) {
	background-color: transparent;
	color: #0063bb;
}

.telenor .dcp-button.dcp-info-bullet-button:hover:not(.v-disabled) .v-icon {
	background-color: #f2f2f2;
	border-radius: 50%;
	box-shadow: 0 0 2px 0 #dcdcdc inset;
}

.telenor .dcp-radio-button {
	border-radius: 10px;
}

.telenor .dcp-radio-button .v-icon {
	font-size: 50px;
}

.telenor .dcp-radio-button:active, .telenor .dcp-radio-button:focus, .telenor .dcp-radio-button.v-pressed {
	background: #dcdcdc;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .dcp-radio-button:hover {
	background: #f2f2f2;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .dcp-radio-button.checked {
	background: #737373;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .dcp-button-optiongroup {
	display: table;
}

.telenor .dcp-button-optiongroup .v-radiobutton {
	display: table-cell;
	position: relative;
	padding: 10px;
	margin: 0;
}

.telenor .dcp-button-optiongroup .v-radiobutton label {
	display: block;
	position: relative;
	background-color: transparent;
	padding: 10px;
	border-radius: 10px;
	border: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-button-optiongroup .v-radiobutton label:hover {
	background-color: rgba(0, 0, 0, 0.04);
}

.telenor .dcp-button-optiongroup .v-radiobutton label:before, .telenor .dcp-button-optiongroup .v-radiobutton label:after {
	display: none !important;
}

.telenor .dcp-button-optiongroup .v-radiobutton label .name {
	display: block;
}

.telenor .dcp-button-optiongroup .v-radiobutton label .description {
	display: block;
	text-align: center;
}

.telenor .dcp-button-optiongroup .v-radiobutton input[type="radio"]:checked + label {
	background-color: rgba(0, 0, 0, 0.09);
}

.telenor .dcp-info-button {
	width: 1.2em;
	height: 1.2em;
	padding: 0;
	border-radius: 50%;
	line-height: 1.2em;
	text-align: center;
}

.telenor .dcp-info-button:hover .v-icon {
	background-color: #f2f2f2;
	border-radius: 50%;
	box-shadow: 0 0 2px 0 #dcdcdc inset;
}

.telenor .dcp-editmode-toggle.align-by-field-description {
	padding-top: 18px;
}

.telenor .dcp-editmode-toggle .dcp-button .v-icon {
	margin: 0 -5px;
}

.telenor .dcp-editmode-toggle.horizontal .dcp-button {
	display: inline-block;
}

.telenor .dcp-editmode-toggle.vertical {
	padding-left: 5px;
	padding-right: 5px;
}

.telenor .dcp-editmode-toggle.vertical .dcp-button {
	display: block;
}

.telenor .dropdown-button  > .v-menubar-menuitem {
	color: rgba(0, 0, 0, 0.87);
	line-height: 30px;
	border-radius: 0 !important;
	padding: 0 10px;
}

.telenor .dropdown-button  > .v-menubar-menuitem.v-menubar-menuitem-selected {
	background: none;
}

.telenor .dropdown-button  > .v-menubar-menuitem.v-menubar-menuitem-disabled {
	color: rgba(0, 0, 0, 0.26) !important;
}

.telenor .dropdown-button  > .v-menubar-menuitem.v-menubar-menuitem-disabled:hover, .telenor .dropdown-button  > .v-menubar-menuitem.v-menubar-menuitem-disabled:active {
	background-color: transparent !important;
}

.telenor .dropdown-button > .v-menubar-menuitem:hover, .telenor .v-filterselect-no-input > .v-filterselect-input:hover, .telenor .v-filterselect > .v-filterselect-button:hover {
	background: #e0e0e0;
}

.telenor .dropdown-button > .v-menubar-menuitem:active, .telenor .v-filterselect-no-input > .v-filterselect-input:active, .telenor .v-filterselect > .v-filterselect-button:active {
	background: rgba(153, 153, 153, 0.4);
}

.telenor .v-filterselect-no-input > .v-filterselect-button:hover {
	background: transparent;
}

.telenor .v-filterselect-no-input > .v-filterselect-button:active {
	background: transparent;
}

.telenor .dropdown-button > .v-menubar-menuitem:hover {
	color: rgba(0, 0, 0, 0.87);
	background: #e0e0e0;
}

.telenor .dropdown-button > .v-menubar-menuitem:active {
	color: rgba(0, 0, 0, 0.87);
	background: rgba(153, 153, 153, 0.4);
}

.telenor .v-disabled.dropdown-button, .telenor .v-disabled.v-filterselect-no-input, .telenor .v-disabled.v-filterselect-prompt {
	opacity: 1;
}

.telenor .v-disabled.dropdown-button > .v-menubar-menuitem, .telenor .v-disabled.dropdown-button > .v-menubar-menuitem:hover, .telenor .v-disabled.dropdown-button > .v-menubar-menuitem:active, .telenor .v-disabled.v-filterselect-no-input > .v-filterselect-input, .telenor .v-disabled.v-filterselect-no-input > .v-filterselect-input:hover, .telenor .v-disabled.v-filterselect-no-input > .v-filterselect-input:active, .telenor .v-disabled.v-filterselect-prompt > .v-filterselect-button, .telenor .v-disabled.v-filterselect-prompt > .v-filterselect-button:hover, .telenor .v-disabled.v-filterselect-prompt > .v-filterselect-button:active {
	background: transparent;
	color: rgba(0, 0, 0, 0.26);
}

.telenor .v-menubar .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after, .telenor .v-filterselect .v-filterselect-button:before, .telenor .v-filterselect:hover .v-filterselect-button:before {
	content: "\f0d7";
	opacity: 1;
	color: rgba(0, 0, 0, 0.54);
	vertical-align: initial;
	font-size: 1em;
	font-weight: normal;
}

.telenor .v-disabled.v-menubar .v-menubar-submenu-indicator + .v-menubar-menuitem-caption:after, .telenor .v-disabled.v-filterselect .v-filterselect-button:before, .telenor .v-disabled.v-filterselect:hover .v-filterselect-button:before {
	color: rgba(0, 0, 0, 0.26);
}

.telenor .v-popupview-popup .dcp-multiselect-dropdown {
	padding: 1px 16px;
}

.telenor .v-popupview-popup .dcp-multiselect-dropdown .v-checkbox {
	margin-top: 7px;
	margin-bottom: 7px;
}

.telenor .v-popupview-popup .dcp-multiselect-dropdown .v-grid-dcp-grid {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-popupview-popup .dcp-multiselect-dropdown .v-grid-body .v-grid-row {
	height: 31px;
	border: none !important;
}

.telenor .v-popupview-popup .dcp-multiselect-dropdown .v-grid-body .v-grid-row .v-grid-cell {
	height: 31px !important;
	line-height: 30px;
	border: none !important;
}

.telenor .v-menubar.actions-menu, .telenor .v-menubar.frame-dropdown {
	border-radius: 0;
	box-shadow: none;
	border: none;
	height: 40px;
	padding: 0;
}

.telenor .v-menubar.actions-menu .v-menubar-menuitem, .telenor .v-menubar.frame-dropdown .v-menubar-menuitem {
	width: 100%;
	line-height: 40px;
}

.telenor .v-menubar.actions-menu .v-menubar-menuitem, .telenor .v-menubar.actions-menu .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-menubar.frame-dropdown .v-menubar-menuitem, .telenor .v-menubar.frame-dropdown .v-menubar-menuitem.v-menubar-menuitem-selected {
	background-color: #00577e;
	background-image: none;
	color: #ffffff;
	border: none;
	box-shadow: none;
}

.telenor .v-menubar.actions-menu .v-menubar-menuitem:hover, .telenor .v-menubar.frame-dropdown .v-menubar-menuitem:hover {
	background-color: #00496a;
}

.telenor .v-menubar.actions-menu .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-menubar.frame-dropdown .v-menubar-menuitem.v-menubar-menuitem-selected {
	background-color: #003b55;
}

.telenor .v-menubar.actions-menu .v-menubar-menuitem .v-menubar-submenu-indicator + .v-menubar-menuitem-caption::after, .telenor .v-menubar.frame-dropdown .v-menubar-menuitem .v-menubar-submenu-indicator + .v-menubar-menuitem-caption::after {
	color: rgba(255, 255, 255, 0.54);
}

.telenor .dcp-link.v-disabled > a, .telenor .dcp-link.v-disabled > a:hover, .telenor .dcp-link.v-disabled > a:active, .telenor .dcp-link.v-disabled > a:focus {
	color: #9b9b9b;
	text-decoration: none;
}

.telenor .dcp-link:not(.v-disabled) > a {
	color: #00577e;
}

.telenor .dcp-link:not(.v-disabled) > a:hover {
	color: #00496a;
}

.telenor .dcp-link:not(.v-disabled) > a:active, .telenor .dcp-link:not(.v-disabled) > a:focus {
	color: #003b55;
}

.telenor .dcp-link.open-in-new-window  > a > span:after {
	font-family: "Material Icons";
	content: "\E89E";
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.2em;
	font-weight: normal;
}

.telenor .dcp-link.dcp-link-button {
	padding: 5px 10px;
	height: 30px;
	line-height: 20px;
	font-weight: 600;
}

.telenor a.dcp-link {
	color: #00577e;
}

.telenor a.dcp-link:hover {
	color: #00496a;
}

.telenor a.dcp-link:active, .telenor a.dcp-link:focus {
	color: #003b55;
}

.telenor a.dcp-link  > .v-icon {
	vertical-align: top;
	color: inherit;
}

.telenor .dcp-upload input[type="file"], .telenor .v-textfield, .telenor .v-textarea, .telenor .v-filterselect > .v-filterselect-input {
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	padding: 0;
	line-height: 35px;
	vertical-align: middle;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 20px;
	font-weight: normal;
	box-sizing: border-box;
	transition: none;
	-webkit-transition: border-bottom-color 140ms, box-shadow 140ms;
	-moz-transition: border-bottom-color 140ms, box-shadow 140ms;
	-o-transition: border-bottom-color 140ms, box-shadow 140ms;
	transition: border-bottom-color 140ms, box-shadow 140ms;
}

.telenor .dcp-upload input[type="file"]:focus:not(.v-readonly), .telenor .v-textfield:focus:not(.v-readonly), .telenor .v-textarea:focus:not(.v-readonly), .telenor .v-filterselect > .v-filterselect-input:focus:not(.v-readonly) {
	border-bottom-color: #00577e;
	-webkit-box-shadow: 0 1px 0 #00577e;
	box-shadow: 0 1px 0 #00577e;
}

.telenor .dcp-upload input[type="file"].v-readonly, .telenor .v-textfield.v-readonly, .telenor .v-textarea.v-readonly, .telenor .v-filterselect > .v-filterselect-input.v-readonly {
	border-bottom: none;
}

.telenor .v-widget, .telenor .v-filterselect > .v-filterselect-input {
	background: transparent;
}

.telenor .v-textfield, .telenor .v-filterselect > .v-filterselect-input {
	height: 33px;
}

.telenor .v-textfield-filtertext {
	font-size: 12pt;
}

.telenor .v-filterselect > .v-filterselect-input {
	padding-right: 37px;
}

.telenor .v-textarea {
	line-height: 24px;
	margin-top: 5px;
}

.telenor .v-menubar-popup, .telenor .v-filterselect-suggestpopup {
	margin: -5px 0 0 1px !important;
	padding: 0;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .v-menubar-popup .v-menubar-submenu, .telenor .v-menubar-popup [class$="suggestmenu"], .telenor .v-filterselect-suggestpopup .v-menubar-submenu, .telenor .v-filterselect-suggestpopup [class$="suggestmenu"] {
	padding: 5px 0;
}

.telenor .v-menubar-popup .v-menubar-submenu .v-menubar-menuitem, .telenor .v-menubar-popup .v-menubar-submenu td, .telenor .v-menubar-popup [class$="suggestmenu"] .v-menubar-menuitem, .telenor .v-menubar-popup [class$="suggestmenu"] td, .telenor .v-filterselect-suggestpopup .v-menubar-submenu .v-menubar-menuitem, .telenor .v-filterselect-suggestpopup .v-menubar-submenu td, .telenor .v-filterselect-suggestpopup [class$="suggestmenu"] .v-menubar-menuitem, .telenor .v-filterselect-suggestpopup [class$="suggestmenu"] td {
	line-height: 30px;
	padding: 0 20px;
	font-weight: normal;
}

.telenor .v-menubar-popup .v-menubar-submenu .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-menubar-popup .v-menubar-submenu .v-menubar-menuitem.gwt-MenuItem-selected, .telenor .v-menubar-popup .v-menubar-submenu td.v-menubar-menuitem-selected, .telenor .v-menubar-popup .v-menubar-submenu td.gwt-MenuItem-selected, .telenor .v-menubar-popup [class$="suggestmenu"] .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-menubar-popup [class$="suggestmenu"] .v-menubar-menuitem.gwt-MenuItem-selected, .telenor .v-menubar-popup [class$="suggestmenu"] td.v-menubar-menuitem-selected, .telenor .v-menubar-popup [class$="suggestmenu"] td.gwt-MenuItem-selected, .telenor .v-filterselect-suggestpopup .v-menubar-submenu .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-filterselect-suggestpopup .v-menubar-submenu .v-menubar-menuitem.gwt-MenuItem-selected, .telenor .v-filterselect-suggestpopup .v-menubar-submenu td.v-menubar-menuitem-selected, .telenor .v-filterselect-suggestpopup .v-menubar-submenu td.gwt-MenuItem-selected, .telenor .v-filterselect-suggestpopup [class$="suggestmenu"] .v-menubar-menuitem.v-menubar-menuitem-selected, .telenor .v-filterselect-suggestpopup [class$="suggestmenu"] .v-menubar-menuitem.gwt-MenuItem-selected, .telenor .v-filterselect-suggestpopup [class$="suggestmenu"] td.v-menubar-menuitem-selected, .telenor .v-filterselect-suggestpopup [class$="suggestmenu"] td.gwt-MenuItem-selected {
	background: #e0e0e0;
	color: rgba(0, 0, 0, 0.87);
	-webkit-transition: background 140ms;
	transition: background 140ms;
}

.telenor .v-contextmenu .gwt-MenuItem .v-disabled {
	color: rgba(0, 0, 0, 0.26);
}

.telenor .v-contextmenu .gwt-MenuItem.gwt-MenuItem-selected {
	background: #e0e0e0;
	color: rgba(0, 0, 0, 0.87);
	-webkit-transition: background 140ms;
	transition: background 140ms;
}

.telenor .v-filterselect {
	width: 200px;
}

.telenor .v-filterselect.v-filterselect-prompt > .v-filterselect-input {
	font-weight: inherit;
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-filterselect.v-readonly  > .v-filterselect-input {
	background: transparent;
	border-bottom-color: transparent;
}

.telenor .v-filterselect.v-readonly  > .v-filterselect-button {
	display: none;
}

.telenor .v-filterselect  > .v-filterselect-button {
	border-width: 0 0 1px 0;
	border-radius: 0;
}

.telenor .v-filterselect-no-input > .v-filterselect-input {
	background-image: none;
	background-color: transparent;
	border-radius: 0;
}

.telenor .v-filterselect.loading {
	pointer-events: none;
	position: relative;
}

.telenor .v-filterselect.loading:before {
	display: block;
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	margin-top: -12px;
	margin-left: -12px;
	height: 24px !important;
	width: 24px !important;
	box-sizing: border-box;
	border: 2px solid rgba(153, 153, 153, 0);
	border-top-color: rgba(153, 153, 153, 0.3);
	border-right-color: rgba(153, 153, 153, 0.3);
	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;
}

.telenor .v-widget.tokentextfield .v-csslayout .v-button-link, .telenor .v-widget.tokentextfield .v-csslayout .v-button-link:focus, .telenor .v-widget.tokenfield .v-csslayout .v-button-link, .telenor .v-widget.tokenfield .v-csslayout .v-button-link:focus {
	height: auto;
	margin: 4px 2px 0px 0;
	background-color: #f2f2f2;
	padding: 10px 10px;
	border-radius: 0;
}

.telenor .v-widget.tokentextfield .v-csslayout .v-button-link.v-button-error, .telenor .v-widget.tokentextfield .v-csslayout .v-button-link.v-button-error:focus, .telenor .v-widget.tokenfield .v-csslayout .v-button-link.v-button-error, .telenor .v-widget.tokenfield .v-csslayout .v-button-link.v-button-error:focus {
	background-color: #e32119;
}

.telenor .v-widget.tokentextfield .v-csslayout .v-button-link .v-button-caption, .telenor .v-widget.tokentextfield .v-csslayout .v-button-link:focus .v-button-caption, .telenor .v-widget.tokenfield .v-csslayout .v-button-link .v-button-caption, .telenor .v-widget.tokenfield .v-csslayout .v-button-link:focus .v-button-caption {
	color: #202020;
	font-weight: 600;
}

.telenor .tokentextfield .v-filterselect {
	margin-bottom: 0;
	background: none;
	border-radius: 0;
}

.telenor .dcp-text-area, .telenor .materiallayout .v-textarea.dcp-text-area {
	background-size: 2em 100%;
	background-repeat: no-repeat;
	background-color: #eeeeee;
	background-image: -webkit-linear-gradient(-360deg, #eeeeee 0%, rgba(238, 238, 238, 0) 100%);
	background-image: linear-gradient(90deg,#eeeeee 0%, rgba(238, 238, 238, 0) 100%);
	background-color: transparent;
}

.telenor .dcp-text-area.v-readonly, .telenor .materiallayout .v-textarea.dcp-text-area.v-readonly {
	background-image: none;
}

.telenor .drag-and-drop-area {
	border: 1px dashed rgba(0, 0, 0, 0.12);
}

.telenor .dcp-character-counter {
	font-size: 0.8em;
	float: right;
	background-color: rgba(0, 0, 0, 0.12);
	padding: 0.1em 0.5em;
}

.telenor .dcp-text-area, .telenor .dcp-text-field {
	display: block;
}

.telenor .dcp-text-area:focus:not(.v-readonly) + .dcp-character-counter, .telenor .dcp-text-field:focus:not(.v-readonly) + .dcp-character-counter {
	background-color: #00577e;
	color: #ffffff;
}

.telenor .dcp-text-area.v-readonly + .dcp-character-counter, .telenor .dcp-text-field.v-readonly + .dcp-character-counter {
	display: none;
}

.telenor .dcp-text-area.dcp-character-counter-error:not(.v-textarea-prompt), .telenor .dcp-text-field.dcp-character-counter-error:not(.v-textfield-prompt) {
	border-bottom-color: #e32119;
}

.telenor .dcp-text-area.dcp-character-counter-error:not(.v-textarea-prompt)  + .dcp-character-counter, .telenor .dcp-text-field.dcp-character-counter-error:not(.v-textfield-prompt)  + .dcp-character-counter {
	background-color: #e32119;
	color: #ffffff;
}

.telenor .dcp-text-area.dcp-character-counter-error:not(.v-textarea-prompt):focus:not(.v-readonly), .telenor .dcp-text-field.dcp-character-counter-error:not(.v-textfield-prompt):focus:not(.v-readonly) {
	box-shadow: 0 1px 0 #e32119;
}

.telenor .dcp-text-area.v-textarea-error:focus:not(.v-readonly), .telenor .dcp-text-field.v-textfield-error:focus:not(.v-readonly) {
	box-shadow: 0 1px 0 #e32119;
}

.telenor .dcp-text-area.v-textarea-error:focus:not(.v-readonly)  + .dcp-character-counter, .telenor .dcp-text-field.v-textfield-error:focus:not(.v-readonly)  + .dcp-character-counter {
	background-color: #e32119;
	color: #ffffff;
}

.telenor .v-radiobutton > input:checked ~ label:after {
	background: #00577e !important;
}

.telenor .v-checkbox > input:checked ~ label:after {
	color: #00577e !important;
}

.telenor .v-checkbox.dcp-radio-checkbox  > input {
	-ms-appearance: radio;
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}

.telenor .v-checkbox.dcp-radio-checkbox  > input  ~ label:before {
	border-radius: 50%;
}

.telenor .v-checkbox.dcp-radio-checkbox  > input  ~ label:after {
	content: "";
	border-radius: 50%;
	width: 6px;
	height: 6px;
	top: 5px;
	left: 5px;
	background-color: transparent;
}

.telenor .v-checkbox.dcp-radio-checkbox  > input:checked ~ label:after {
	background-color: #00577e !important;
}

.telenor .v-checkbox.dcp-radio-checkbox.large > input  ~ label:after {
	width: 9px;
	height: 9px;
}

.telenor .v-checkbox.dcp-toggle-checkbox {
	padding-left: 35px;
}

.telenor .v-checkbox.dcp-toggle-checkbox  > input  ~ label:before {
	border-radius: 8px;
	background-image: none;
	background-color: #9b9b9b;
	border-color: #9b9b9b;
	box-shadow: none !important;
	width: 30px;
}

.telenor .v-checkbox.dcp-toggle-checkbox  > input  ~ label:after {
	content: "";
	border-radius: 50%;
	width: 12px;
	height: 12px;
	top: 2px;
	left: 2px;
	background-color: #ffffff !important;
	transition: left 0.15s ease;
}

.telenor .v-checkbox.dcp-toggle-checkbox  > input:checked ~ label:before {
	background-color: #00577e;
	border-color: #00577e;
}

.telenor .v-checkbox.dcp-toggle-checkbox  > input:checked ~ label:after {
	left: 16px;
}

.telenor .v-checkbox.dcp-toggle-checkbox.v-disabled > input  ~ label:before {
	opacity: 0.7;
}

.telenor .v-checkbox.dcp-toggle-checkbox.v-disabled > input  ~ label:after {
	opacity: 0.7;
}

.telenor .v-checkbox.dcp-toggle-checkbox.large {
	padding-left: 40px;
}

.telenor .v-checkbox.dcp-toggle-checkbox.large  > input  ~ label:before {
	border-radius: 9.5px;
	width: 36px;
}

.telenor .v-checkbox.dcp-toggle-checkbox.large  > input  ~ label:after {
	width: 15px;
	height: 15px;
}

.telenor .v-checkbox.dcp-toggle-checkbox.large  > input:checked ~ label:after {
	left: 19px;
}

.telenor .v-select-optiongroup-horizontal {
	white-space: nowrap;
}

.telenor .v-select-optiongroup-horizontal .v-select-option {
	display: inline-block;
}

.telenor .v-select-optiongroup-horizontal .v-select-option.v-radiobutton {
	padding-right: 10px;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST {
	padding: 0;
	background-color: #ffffff;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage-off, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage-off {
	position: relative;
	width: 100%;
	color: #00577e;
	opacity: 1;
	transform: none;
	height: 25px;
	line-height: 25px;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage:hover, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage:hover, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage-off:hover, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage-off:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage:before, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage:before, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage-off:before, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage-off:before {
	font-family: "Material Icons";
	font-size: 1.5em;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage:before, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage-off:before {
	content: "\E316";
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage:before, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage-off:before {
	content: "\E313";
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage-off, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage-off {
	display: block;
	color: #9b9b9b;
	cursor: default;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-prevpage-off:hover, .telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-nextpage-off:hover {
	background-color: transparent;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-suggestmenu {
	z-index: 2;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
	border: solid 0 rgba(0, 0, 0, 0.12);
	border-top-width: 1px;
	border-bottom-width: 1px;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-suggestmenu td {
	height: 23px;
	line-height: 23px;
}

.telenor #VAADIN_COMBOBOX_OPTIONLIST .v-filterselect-status {
	background-color: #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-sizing: border-box;
	border-top: solid 1px rgba(0, 0, 0, 0.12);
	right: auto;
	left: 0;
}

.telenor .v-datefield {
	width: 145px;
}

.telenor .v-datefield.v-datefield-full {
	width: 200px;
}

.telenor .v-datefield  > .v-datefield-textfield {
	border-width: 0 0 1px 0;
	padding: 0;
	height: 33px;
	font-size: 20px;
	padding-right: 38px;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield  > .v-datefield-textfield:focus {
	border-bottom-color: #00577e;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-datefield.v-datefield-error .v-datefield-textfield {
	background: transparent;
}

.telenor .v-datefield  > .v-datefield-button {
	left: auto;
	right: 0;
	border: 0;
	color: #00577e;
}

.telenor .v-datefield  > .v-datefield-button:hover {
	color: #00577e;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .v-datefield  > .v-datefield-button:before {
	font-family: "Material Icons";
	content: "\E916";
	font-size: 20px;
}

.telenor .v-datefield-popup {
	background: #ffffff;
}

.telenor .v-datefield-popup td.v-datefield-calendarpanel-month {
	color: rgba(0, 0, 0, 0.87);
	font-weight: bolder;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day {
	color: rgba(0, 0, 0, 0.87);
	font-weight: bolder;
	font-size: 14px;
	border-radius: 50%;
	border-width: 2px;
	width: 30px;
	height: 30px;
	line-height: 26px;
	vertical-align: middle;
	background: transparent;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
	cursor: default;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day:hover:not(.v-datefield-calendarpanel-day-outside-range) {
	color: rgba(0, 0, 0, 0.87);
	border-color: #00577e;
	font-weight: bolder;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .telenor .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover:not(.v-datefield-calendarpanel-day-outside-range) {
	border-width: 2px;
	border-style: solid;
	background: #00577e;
	color: #ffffff;
	font-weight: bolder;
	border-color: #00577e;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day-today {
	border-color: #0091d2;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
	color: rgba(0, 0, 0, 0.26);
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-day-outside-range {
	font-weight: lighter;
}

.telenor .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
	font-weight: bolder;
	color: rgba(0, 0, 0, 0.26);
}

.telenor td[class*="year"] button:before, .telenor td[class*="month"] button:before {
	color: rgba(0, 0, 0, 0.54);
	font-weight: bolder;
}

.telenor .v-slot-search-field {
	position: relative;
}

.telenor .v-slot-search-field:before {
	display: inline-block;
	color: #00577e;
	content: "\e8b6";
	font-family: "Material Icons";
	padding: 0;
	line-height: 30px;
	width: 30px;
	font-size: 20px;
	text-align: center;
	vertical-align: bottom;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.telenor .v-slot-search-field input.search-field {
	padding-left: 30px !important;
}

.telenor .v-slot-search-field input.search-field:focus, .telenor .v-slot-search-field input.search-field:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-select {
	position: relative;
}

.telenor .dcp-select select {
	height: 33px;
	padding: 0 38px 0 5px;
	border: solid 1px rgba(0, 0, 0, 0.12);
	background-color: #ffffff;
	background-image: none;
}

.telenor .dcp-select select::-ms-expand {
	display: none;
}

.telenor .dcp-select:after {
	content: "\e5c5";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 31px;
	height: 31px;
	background-color: #ffffff;
	pointer-events: none;
	text-align: center;
	border: solid 1px rgba(0, 0, 0, 0.12);
	border-radius: 0 2px 2px 0;
	line-height: 31px;
	opacity: 1;
	color: rgba(0, 0, 0, 0.54);
	vertical-align: middle;
	font-size: 1.5em;
	font-weight: normal;
	font-family: Material Icons;
	margin: 0 auto;
}

.telenor .dcp-select:hover:after {
	background-color: #f2f2f2;
}

.telenor .dcp-upload {
	box-sizing: border-box;
}

.telenor .dcp-upload input[type="file"] {
	font-size: 14px;
	margin-right: 20px;
}

.telenor .dcp-upload .v-button {
	vertical-align: middle;
}

.telenor .dcp-upload.has-width-full {
	width: 100%;
}

.telenor .dcp-upload.has-width-full:not(.v-upload-immediate) input[type="file"] {
	width: 100%;
	margin-bottom: 20px;
	margin-right: 0;
}

.telenor .dcp-attachments {
	background-color: #ffffff;
}

.telenor .dcp-attachments .v-ddwrapper {
	height: 100%;
}

.telenor .dcp-attachments .drop-zone {
	height: 100%;
	display: table;
	table-layout: fixed;
}

.telenor .dcp-attachments .drop-zone  > .v-slot {
	display: table-row;
}

.telenor .dcp-attachments .drop-zone  > .v-slot  > .file-list, .telenor .dcp-attachments .drop-zone  > .v-slot  > .upload-actions {
	display: table-cell;
}

.telenor .dcp-attachments .drop-zone  > .v-slot  > .upload-actions {
	height: 100%;
	vertical-align: middle;
}

.telenor .dcp-attachments .drop-zone.drop-zone-enabled {
	border: dashed 0.2em #00577e;
}

.telenor .dcp-attachments .drop-zone .drop-zone-label {
	font-weight: 600;
	text-align: center;
	color: #00577e;
}

.telenor .dcp-attachments .drop-zone .drop-zone-label .v-icon {
	vertical-align: middle;
	color: inherit;
}

.telenor .dcp-attachments .upload-actions {
	padding: 20px;
	text-align: center;
}

.telenor .dcp-attachments .upload-actions .breaker {
	text-align: center;
	text-transform: lowercase;
	font-weight: 600;
}

.telenor .dcp-attachments .upload-actions[width-range~="0-599px"] .drop-zone-label, .telenor .dcp-attachments .upload-actions[width-range~="0-599px"] .breaker {
	display: block;
}

.telenor .dcp-attachments .upload-actions[width-range~="0-599px"] .breaker:before, .telenor .dcp-attachments .upload-actions[width-range~="0-599px"] .breaker:after {
	content: "";
	display: inline-block;
	width: 30%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.12);
	margin: 0.5em;
	vertical-align: middle;
}

.telenor .dcp-attachments .upload-actions[width-range~="600px-"] .drop-zone-label, .telenor .dcp-attachments .upload-actions[width-range~="600px-"] .breaker, .telenor .dcp-attachments .upload-actions[width-range~="600px-"] .dcp-upload {
	display: inline-block;
	vertical-align: middle;
}

.telenor .dcp-attachments .upload-actions[width-range~="600px-"] .breaker {
	margin: 0 14px 0 20px;
}

.telenor .dcp-attachments .dcp-attachment {
	position: relative;
	display: block;
}

.telenor .dcp-attachments .dcp-attachment .filename {
	position: relative;
	font-size: 20px;
	line-height: 24px;
	padding: 3px 10px 3px 0px;
	overflow: hidden;
	word-break: break-all;
}

.telenor .dcp-attachments .dcp-attachment .filename:after {
	content: "";
	display: block;
	width: 10px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0);
	background-image: -webkit-linear-gradient(-360deg, rgba(255, 255, 255, 0) 0%, white 100%);
	background-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, white 100%);
	background-color: transparent;
}

.telenor .dcp-attachments .dcp-attachment .filesize {
	line-height: 30px;
	position: absolute;
}

.telenor .dcp-attachments .dcp-attachment .remove {
	position: absolute;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="0-654px"] {
	padding-bottom: 30px;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="0-654px"] .filesize {
	left: 0;
	bottom: 0;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="0-654px"] .remove {
	margin-top: -15px;
	top: 50%;
	right: 0;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="0-654px"].removable {
	padding-right: 65px;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="655px-"] {
	padding-right: 90px;
	min-height: 30px;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="655px-"] .filesize, .telenor .dcp-attachments .dcp-attachment[width-range~="655px-"] .remove {
	margin-top: -15px;
	top: 50%;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="655px-"] .filesize {
	right: 0;
	width: 70px;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="655px-"] .remove {
	right: 0;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="655px-"].removable {
	padding-right: 155px;
}

.telenor .dcp-attachments .dcp-attachment[width-range~="655px-"].removable .filesize {
	right: 65px;
}

.telenor .dcp-option-item {
	position: relative;
	padding: 20px;
	padding-left: 70px;
}

.telenor .dcp-option-item  > .v-checkbox, .telenor .dcp-option-item  > .option-icon {
	position: absolute;
	top: 50%;
	left: 20px;
}

.telenor .dcp-option-item  > .v-checkbox {
	margin: -9.5px 0;
}

.telenor .dcp-option-item  > .option-icon {
	margin: -22px 0;
}

.telenor .dcp-option-item.has-icon {
	padding-left: 70px;
}

.telenor .dcp-option-item.has-icon.has-checkbox {
	cursor: pointer;
	padding-left: 109px;
}

.telenor .dcp-option-item.has-icon.has-checkbox:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-option-item.has-icon.has-checkbox  > .option-icon {
	left: 59px;
}

.telenor .dcp-option-item.has-icon.has-checkbox.has-toggle-checkbox {
	padding-left: 126px;
}

.telenor .dcp-option-item.has-icon.has-checkbox.has-toggle-checkbox  > .option-icon {
	left: 76px;
}

.telenor .dcp-option-item:not(.has-icon) {
	padding-left: 20px;
}

.telenor .dcp-option-item.has-checkbox:not(.has-icon) {
	cursor: pointer;
	padding-left: 59px;
}

.telenor .dcp-option-item.has-checkbox:not(.has-icon):hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-option-item.has-checkbox:not(.has-icon)  > .option-icon {
	left: 59px;
}

.telenor .dcp-option-item.has-checkbox.has-toggle-checkbox:not(.has-icon) {
	padding-left: 76px;
}

.telenor .dcp-option-item.has-checkbox.has-toggle-checkbox:not(.has-icon)  > .option-icon {
	left: 76px;
}

.telenor .dcp-tag-list .dcp-tag {
	position: relative;
	background-color: #f2f2f2;
	padding: 4.6px 20px;
	margin: 0 5px 5px 0;
}

.telenor .dcp-tag-list .dcp-tag.removable {
	padding-left: 35px;
}

.telenor .dcp-tag-list .dcp-tag.removable .dcp-button {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 30px;
}

.telenor .dcp-tag-list .dcp-tag.removable .dcp-button .v-button-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1em;
	height: 1em;
	margin: -0.5em;
	line-height: 1em;
	text-align: center;
}

.telenor .v-menubar-submenu-filter-value-dropdownfield .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .telenor .v-menubar-submenu-filter-value-dropdownfield .v-menubar-menuitem-unchecked .v-menubar-menuitem-caption {
	margin-left: 5px;
}

.telenor .v-menubar-submenu-filter-value-dropdownfield .v-menubar-menuitem-checked .v-menubar-menuitem-caption:before, .telenor .v-menubar-submenu-filter-value-dropdownfield .v-menubar-menuitem-unchecked .v-menubar-menuitem-caption:before {
	content: none;
}

.telenor .dcp-filters  > .dcp-button {
	margin-bottom: 10px;
	margin-right: 10px;
	border: solid 1px rgba(0, 87, 126, 0.5);
}

.telenor .dcp-filters .dcp-add-filter {
	padding: 0;
	margin-bottom: 10px;
	margin-right: 10px;
}

.telenor .dcp-filters .dcp-add-filter  > .v-menubar-menuitem {
	border-radius: 15px !important;
	border: 1px solid #dcdcdc;
	padding-right: 15px;
	background-color: #ffffff;
}

.telenor .dcp-filters .dcp-add-filter  > .v-menubar-menuitem:last-child {
	border-width: 1px;
}

.telenor .dcp-filters .dcp-add-filter  > .v-menubar-menuitem .v-menubar-menuitem-caption {
	font-size: 14px;
	font-weight: normal;
}

.telenor .dcp-filters .dcp-add-filter  > .v-menubar-menuitem .v-menubar-menuitem-caption .v-icon {
	font-size: 20px;
	vertical-align: bottom;
	color: #00577e;
}

.telenor .dcp-filter {
	border-radius: 15px !important;
	border: 1px solid #dcdcdc;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 5px;
	padding-bottom: 3px;
	min-height: 32px;
	background-color: #ffffff;
}

.telenor .dcp-filter .v-spacing {
	width: 5px;
	height: 10px;
}

.telenor .dcp-filter .v-label {
	font-size: 14px;
	height: auto;
	line-height: normal;
}

.telenor .dcp-filter .filter-add, .telenor .dcp-filter .filter-remove {
	font-size: $v-font-size--medium;
	padding: 0;
	line-height: normal;
}

.telenor .dcp-filter .filter-add:hover, .telenor .dcp-filter .filter-remove:hover {
	background-color: #dcdcdc;
}

.telenor .dcp-filter.removable {
	position: relative;
	padding-left: 35px;
}

.telenor .dcp-filter.removable  > .v-slot-filter-remove {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 30px;
}

.telenor .dcp-filter.removable  > .v-slot-filter-remove  + .v-spacing {
	display: none;
}

.telenor .dcp-filter.removable  > .v-slot-filter-remove .filter-remove {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	border-radius: 14px 0 0 14px;
}

.telenor .dcp-filter.removable  > .v-slot-filter-remove .filter-remove .v-button-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1em;
	height: 1em;
	margin: -0.5em;
	line-height: 1em;
	text-align: center;
}

.telenor .dcp-filter .v-slot-filter-value-textfield, .telenor .dcp-filter .v-slot-filter-value-datefield, .telenor .dcp-filter .v-slot-filter-value-comboboxfield {
	margin-bottom: -1px;
}

.telenor .dcp-filter .dropdown-button {
	padding-top: 0;
	padding-bottom: 0;
}

.telenor .dcp-filter .filter-operation-selector, .telenor .dcp-filter .filter-value-dropdownfield {
	line-height: normal;
}

.telenor .dcp-filter .filter-operation-selector .v-menubar-menuitem, .telenor .dcp-filter .filter-value-dropdownfield .v-menubar-menuitem {
	line-height: normal;
	padding: 0px 7px 0px 0px;
}

.telenor .dcp-filter .filter-operation-selector .v-menubar-menuitem .v-menubar-menuitem-caption, .telenor .dcp-filter .filter-value-dropdownfield .v-menubar-menuitem .v-menubar-menuitem-caption {
	font-size: 14px;
	font-weight: normal;
}

.telenor .dcp-filter .filter-value-comboboxfield {
	line-height: normal;
}

.telenor .dcp-filter .filter-value-comboboxfield .v-filterselect-input {
	font-size: 14px;
	line-height: normal;
	height: auto;
	padding-right: 25px;
}

.telenor .dcp-filter .filter-value-comboboxfield .v-filterselect-input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .dcp-filter .filter-value-comboboxfield .v-filterselect-button {
	width: 20px;
}

.telenor .dcp-filter .filter-value-comboboxfield .v-filterselect-button:before {
	width: 20px;
}

.telenor .dcp-filter .filter-value-comboboxfield .v-filterselect-button:hover {
	background-color: #dcdcdc;
}

.telenor .dcp-filter .filter-value-comboboxfield .v-menubar-menuitem {
	line-height: normal;
}

.telenor .dcp-filter .filter-value-textfield {
	font-size: 14px;
	height: auto;
	line-height: normal;
	width: 10em;
}

.telenor .dcp-filter .filter-value-textfield:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .dcp-filter .filter-value-datefield {
	width: 105px;
}

.telenor .dcp-filter .filter-value-datefield .v-datefield-textfield {
	height: 20px;
	font-size: 14px;
	padding-right: 25px;
}

.telenor .dcp-filter .filter-value-datefield .v-datefield-button {
	width: auto;
}

.telenor .dcp-filter .filter-value-datefield .v-datefield-button:before {
	font-size: 14px;
}

.telenor .dcp-filter .filter-value-datetimefield {
	width: 185px;
}

.telenor .dcp-filter .filter-value-datetimefield .v-datefield-textfield {
	height: 20px;
	font-size: 14px;
	padding-right: 25px;
}

.telenor .dcp-filter .filter-value-datetimefield .v-datefield-button {
	width: auto;
}

.telenor .dcp-filter .filter-value-datetimefield .v-datefield-button:before {
	font-size: 14px;
}

.telenor .dcp-filter .v-slot-filter-value-dropdownfield-multiselect, .telenor .dcp-filter .filter-value-dropdownfield-multiselect.v-widget {
	display: inline;
	white-space: normal;
	padding-left: 5px;
}

.telenor .dcp-filter .filter-value-dropdownfield-multiselect .v-slot-dropdown-button, .telenor .dcp-filter .filter-value-dropdownfield-multiselect .dropdown-button {
	display: inline;
	white-space: normal;
}

.telenor .dcp-filter .filter-value-dropdownfield-multiselect .dropdown-button {
	padding: 0;
}

.telenor .dcp-filter .filter-value-dropdownfield-multiselect .dropdown-button:hover {
	background-color: #dcdcdc;
}

.telenor .dcp-filter .filter-value-dropdownfield-multiselect .dropdown-button:active {
	background-color: rgba(153, 153, 153, 0.4);
}

.telenor .dcp-filter .filter-value-dropdownfield-multiselect .dropdown-button .v-button-caption {
	display: inline;
	line-height: normal;
	text-align: left;
}

.telenor .dcp-filter .filter-value-dropdownfield-multiselect .dropdown-button .v-button-caption:after {
	font-family: Material Icons;
	content: "\e5c5";
	opacity: 1;
	color: rgba(0, 0, 0, 0.54);
	vertical-align: middle;
	font-size: 1.5em;
	font-weight: normal;
	margin: 0 auto;
}

.telenor .dcp-filter .organization-select .filter-value-dropdownfield-multiselect .filter-value-textfield {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 20em;
	width: auto;
}

.telenor .dcp-filter .v-slot-filter-multi-input-wrap, .telenor .dcp-filter .filter-multi-input-wrap.v-widget {
	display: inline;
	white-space: normal;
}

.telenor .dcp-filter .filter-multi-input-wrap .filter-add {
	margin-left: 0.5em;
}

.telenor .dcp-filter .v-slot-filter-clickable-batch-file {
	border-radius: 2px;
}

.telenor .dcp-filter .v-slot-filter-clickable-batch-file:hover {
	background-color: #dcdcdc;
}

.telenor .dcp-filter .v-slot-filter-clickable-batch-file:active {
	background-color: rgba(153, 153, 153, 0.4);
}

.telenor .dcp-filter .filter-clickable-batch-file {
	padding: 2px 6px;
}

.telenor .filter-search-box .v-slot-dcp-filters {
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 10px;
}

.telenor .filter-search-box .filter-search-button {
	border-radius: 15px;
	border: solid 1px transparent;
}

.telenor .v-popupview-popup .dcp-multiselect-dropdown-options-list {
	padding: 0;
	margin: -4px;
	width: calc(100% + 8px) !important;
}

.telenor .dcp-multiselect-dropdown-options-list .options-list {
	position: relative;
	padding: 5px 20px;
	border: solid 0 rgba(0, 0, 0, 0.12);
}

.telenor .dcp-multiselect-dropdown-options-list .previous-button, .telenor .dcp-multiselect-dropdown-options-list .next-button {
	position: relative;
	width: 100%;
	color: #00577e;
	opacity: 1;
	transform: none;
	height: 25px;
	line-height: 25px;
	padding: 0;
}

.telenor .dcp-multiselect-dropdown-options-list .previous-button .v-icon, .telenor .dcp-multiselect-dropdown-options-list .next-button .v-icon {
	font-size: 21px;
	color: #00577e;
}

.telenor .dcp-multiselect-dropdown-options-list .previous-button .v-button-wrap .v-icon, .telenor .dcp-multiselect-dropdown-options-list .next-button .v-button-wrap .v-icon {
	vertical-align: middle;
}

.telenor .dcp-multiselect-dropdown-options-list .previous-button:hover, .telenor .dcp-multiselect-dropdown-options-list .next-button:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-multiselect-dropdown-options-list .previous-button.v-disabled, .telenor .dcp-multiselect-dropdown-options-list .next-button.v-disabled {
	display: block;
	color: #9b9b9b;
	cursor: default;
}

.telenor .dcp-multiselect-dropdown-options-list .previous-button.v-disabled .v-icon, .telenor .dcp-multiselect-dropdown-options-list .next-button.v-disabled .v-icon {
	color: #9b9b9b;
}

.telenor .dcp-multiselect-dropdown-options-list .previous-button.v-disabled:hover, .telenor .dcp-multiselect-dropdown-options-list .next-button.v-disabled:hover {
	background-color: transparent;
}

.telenor .dcp-multiselect-dropdown-options-list.option-sets .previous-button, .telenor .dcp-multiselect-dropdown-options-list.option-sets .next-button {
	z-index: 2;
}

.telenor .dcp-multiselect-dropdown-options-list.option-sets .options-list {
	z-index: 2;
	border-top-width: 1px;
	border-bottom-width: 1px;
}

.telenor .dcp-multiselect-dropdown-options-list.option-sets .options-list .v-checkbox {
	margin-top: 4px;
	margin-bottom: 4px;
}

.telenor .dcp-multiselect-dropdown-options-list.option-sets:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.telenor .dcp-multiselect-dropdown-options-list .v-slot-dropdown-status {
	position: relative;
	height: 0;
}

.telenor .dcp-multiselect-dropdown-options-list .dropdown-status {
	position: absolute;
	background-color: #ffffff;
	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-sizing: border-box;
	border-top: solid 1px rgba(0, 0, 0, 0.12);
	right: auto;
	left: 0;
	width: auto !important;
	font-size: 11px;
	line-height: 20px;
	padding: 0 5px;
}

.telenor .dcp-multiselect-dropdown-options-list .dropdown-status .v-icon {
	display: inline;
	vertical-align: top;
}

.telenor .gwt-RichTextToolbar {
	display: none;
}

.telenor .view-content-parent > .v-slot-header, .telenor .v-slot-page-header {
	background-color: #00ACE7;
	padding: 1px 0;
	box-sizing: border-box;
	box-shadow: 0 2px 5px rgba(0, 172, 231, 0.6);
}

.telenor .view-content-parent > .v-slot-header:before, .telenor .v-slot-page-header:before {
	content: "";
	display: none;
	height: 0;
	width: 1006px;
	margin: 0 auto;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	position: relative;
	top: -1px;
}

.telenor .view-content-parent > .v-slot-header  > .header, .telenor .v-slot-page-header  > .header {
	color: #ffffff;
	max-width: 1006px;
	margin: 0 auto;
	display: block;
}

.telenor .view-content-parent > .v-slot-header  > .header.v-label-header, .telenor .v-slot-page-header  > .header.v-label-header {
	font-size: 27px;
	line-height: 1.2em;
	font-weight: 100;
	margin: 0.5em auto !important;
	padding: 0 20px;
	white-space: normal;
}

.telenor .view-content-parent > .v-slot-header  > .header .v-layout.v-margin-top, .telenor .view-content-parent > .v-slot-header  > .header.v-gridlayout.v-gridlayout-margin-top, .telenor .v-slot-page-header  > .header .v-layout.v-margin-top, .telenor .v-slot-page-header  > .header.v-gridlayout.v-gridlayout-margin-top {
	padding-top: 30px;
}

.telenor .view-content-parent > .v-slot-header.v-slot-remove-spacing-after + .v-spacing, .telenor .v-slot-page-header.v-slot-remove-spacing-after + .v-spacing {
	height: 0;
}

.telenor .page-header {
	padding: 0 20px;
}

.telenor .page-header .v-slot-breadcrumb {
	margin: 0.5em 0 -0.9em;
}

.telenor .page-header .v-slot-contentTitle {
	font-size: 27px;
	line-height: 1.2em;
	font-weight: 100;
	margin: 0.5em auto;
}

.telenor .breadcrumb {
	margin-left: -0.25em;
}

.telenor .breadcrumb .crumb {
	cursor: pointer;
	padding: 0 0.25em;
	opacity: 0.9;
}

.telenor .breadcrumb .crumb:hover {
	background-color: rgba(203, 203, 203, 0.15);
}

.telenor .breadcrumb .separator {
	opacity: 0.8;
	font-weight: bold;
	height: 1.55em;
}

.telenor .breadcrumb .separator .v-icon {
	color: #ffffff;
	font-size: 1.7em;
	line-height: 1em;
}

.telenor .breadcrumb .v-spacing {
	width: 10px;
	display: none;
}

.telenor .v-slot-actionsbuttonlayout {
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.telenor .v-slot-page-toolbar {
	-webkit-box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.37);
	box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.37);
	background-color: #f2f2f2;
}

.telenor .v-slot-page-header + .v-slot-page-toolbar {
	-webkit-box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.37), 0 2px 4px -4px rgba(0, 0, 0, 0.37) inset;
	box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.37), 0 2px 4px -4px rgba(0, 0, 0, 0.37) inset;
}

.telenor .actionsbuttonlayout  > .v-spacing, .telenor .actionsbuttonlayout  > .v-expand > .v-spacing, .telenor .page-toolbar .actions-layout  > .v-spacing, .telenor .page-toolbar .actions-layout  > .v-expand > .v-spacing {
	height: 30px !important;
	width: 1px;
	background: rgba(0, 0, 0, 0.12);
	margin: 0 10px;
}

.telenor .actionsbuttonlayout .v-slot > .v-widget, .telenor .page-toolbar .actions-layout .v-slot > .v-widget {
	border: none;
	height: 30px;
	margin: 0;
}

.telenor .actionsbuttonlayout .v-slot > .v-widget.v-textfield, .telenor .actionsbuttonlayout .v-slot > .v-widget.v-textarea, .telenor .actionsbuttonlayout .v-slot > .v-widget.v-filterselect > .v-filterselect-input, .telenor .actionsbuttonlayout .v-slot > .v-widget.v-datefield > .v-datefield-textfield, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.v-textfield, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.v-textarea, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.v-filterselect > .v-filterselect-input, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.v-datefield > .v-datefield-textfield {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0 10px;
	font-size: 14px;
	line-height: 30px;
	height: 30px;
}

.telenor .actionsbuttonlayout .v-slot > .v-widget.v-textfield, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.v-textfield {
	padding: 0 10px;
}

.telenor .actionsbuttonlayout .v-slot > .v-widget.period-layout, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.period-layout {
	height: auto;
	padding: 0;
}

.telenor .actionsbuttonlayout .v-slot > .v-widget.period-layout  > .v-spacing, .telenor .actionsbuttonlayout .v-slot > .v-widget.period-layout > .v-expand  > .v-spacing, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.period-layout  > .v-spacing, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.period-layout > .v-expand  > .v-spacing {
	display: none;
}

.telenor .actionsbuttonlayout .v-slot > .v-widget.period-layout  > .v-slot > .v-label, .telenor .actionsbuttonlayout .v-slot > .v-widget.period-layout > .v-expand  > .v-slot > .v-label, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.period-layout  > .v-slot > .v-label, .telenor .page-toolbar .actions-layout .v-slot > .v-widget.period-layout > .v-expand  > .v-slot > .v-label {
	line-height: 30px;
}

.telenor .v-slot-actionsbuttonlayout > div.actionsbuttonlayout {
	padding: 10px;
}

.telenor .v-slot-actionsbuttonlayout > div.actionsbuttonlayout .v-button, .telenor .v-slot-actionslayout > div.actionslayout .v-button {
	padding: 10px;
}

.telenor .v-slot-page-toolbar > div.page-toolbar {
	padding: 0;
}

.telenor .v-slot-page-toolbar > div.page-toolbar .actions-menu {
	margin-left: 20px;
	width: 8.5em;
}

.telenor .v-slot-page-toolbar > div.page-toolbar .actions-layout {
	padding: 5px 20px;
}

.telenor .v-slot-page-toolbar > div.page-toolbar .actions-layout .v-button {
	padding: 5px 10px;
	line-height: 20px;
}

.telenor .v-slot > .page-content {
	max-width: 1006px;
	min-width: 1006px;
	margin: 0 auto;
	display: block;
	padding: 0 20px;
}

.telenor .v-slot > .page-content.full-page-container, .telenor .v-slot > .page-content.document-page-container {
	max-width: none;
	padding: 0;
}

.telenor .v-slot > .page-content.full-page-container {
	padding-left: 20px;
	padding-right: 20px;
}

.telenor .v-slot > .page-content.loading::after {
	display: block;
	left: 50%;
	margin-left: -49px;
	top: 30%;
	line-height: normal;
	font-size: 120px;
	content: "\E863";
	font-family: "Material Icons";
	z-index: 10;
	color: rgba(0, 0, 0, 0.56);
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
	pointer-events: none;
	position: fixed;
	box-sizing: border-box;
}

.telenor .v-slot-page-content {
	padding-top: 20px;
}

.telenor .v-slot-page-content.v-slot-document-page-container {
	padding-top: 0;
}

.telenor .v-slot-dcp-page-section-header  + .v-slot-page-content, .telenor .v-spacing  + .v-slot-page-content {
	padding-top: 0;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs {
	padding: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	width: 100%;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs.document-width-page-tabs, .telenor .v-slot.v-slot-page-tabs  > .page-tabs.full-width-page-tabs {
	max-width: none;
	width: calc(100% - 40px) !important;
	min-width: 1006px;
	margin-left: auto;
	margin-right: auto;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs.none-bottom {
	border-bottom: 0;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs.fixed-width-page-tabs {
	max-width: 1006px;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item {
	margin: 0;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button {
	text-transform: none;
	box-sizing: border-box;
	position: relative;
	padding: 20px;
	background-color: transparent;
	border: solid 0 transparent;
	border-bottom: 0 solid #00577e;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	top: auto;
	right: auto;
	width: 100%;
	height: 0;
	background-color: #00577e;
	-webkit-transition: height 140ms;
	-moz-transition: height 140ms;
	transition: height 140ms;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button.approve:after {
	background-color: #86ba17;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button.reject:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	margin: 0 -1em;
	border: solid 1em transparent;
	border-top-color: #e32119;
	border-top-width: 0.6em;
	border-bottom-width: 0;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button.reject:after {
	background-color: #e32119;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button:hover, .telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button:active, .telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button:focus {
	background-color: transparent;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button:hover:after, .telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button:active:after, .telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button:focus:after {
	height: 4px;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button.none-bottom:hover:after, .telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button.none-bottom:active:after, .telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button.none-bottom:focus:after {
	height: 0;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item.v-slot-page-tabs-item-selected .v-button {
	color: #000000;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item.v-slot-page-tabs-item-selected .v-button:after {
	background-color: #000000;
	height: 4px;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs  > .v-slot-page-tabs-item .v-button.v-disabled:after {
	height: 0;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs.steps-mode .dcp-button {
	position: relative;
	z-index: 1;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs.steps-mode .v-spacing {
	width: 0;
	position: relative;
	z-index: 0;
}

.telenor .v-slot.v-slot-page-tabs  > .page-tabs.steps-mode .v-spacing:before {
	font-family: "Material Icons";
	content: "\e315";
	color: #dcdcdc;
	font-size: 2em;
	position: relative;
	left: -0.5em;
	top: 0.25em;
}

.telenor .dcp-page-table-of-contents .v-slot-section-level-2 {
	padding-left: 1.4em;
}

.telenor .dcp-page-table-of-contents .v-slot-section-level-3 {
	padding-left: 2.8em;
}

.telenor .dcp-page-table-of-contents .dcp-button {
	text-transform: none;
}

.telenor .dcp-page-section-header {
	margin: 20px 0;
}

.telenor .dcp-page-section-header .v-slot-section-header {
	background-color: #f2f2f2;
}

.telenor .dcp-page-section-header .section-header {
	max-width: 1006px;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
}

.telenor .dcp-page-section-header .section-header .heading .v-label {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
	color: rgba(0, 0, 0, 0.87);
	font-weight: 600;
}

.telenor .dcp-page-section-header .section-header .heading .wrapLine {
	white-space: pre-wrap;
	word-wrap: break-word;
}

.telenor .dcp-page-section-header .section-header .dcp-button.scroll-up {
	height: 100%;
	width: 48px;
	position: relative;
}

.telenor .dcp-page-section-header .section-header .dcp-button.scroll-up .v-button-wrap {
	position: absolute;
	top: 50%;
	left: 10px;
	margin: -8.4px 0;
}

.telenor .dcp-page-section-header .v-slot-section-info {
	background-color: #dcdcdc;
}

.telenor .dcp-page-section-header.level-2 .v-slot-section-header {
	background-color: #e7e7e7;
}

.telenor .dcp-page-section-header.level-2 .section-header .heading .v-label {
	font-size: 20px;
	margin: 1em 0 0.7em;
	color: rgba(0, 0, 0, 0.87);
	font-weight: 600;
}

.telenor .dcp-page-section-header.level-2 .v-slot-section-info {
	background-color: #f2f2f2;
}

.telenor .dcp-page-section-header.level-3 .v-slot-section-header {
	background-color: #dcdcdc;
}

.telenor .dcp-page-section-header.level-3 .section-header .heading .v-label {
	font-size: 16px;
	margin: 1em 0 0.7em;
	color: rgba(0, 0, 0, 0.87);
	font-weight: 600;
}

.telenor .dcp-page-section-header.level-2 .v-slot-section-info, .telenor .dcp-page-section-header.level-3 .v-slot-section-info {
	background-color: #f2f2f2;
}

.telenor .portal-header-full-width-test, .telenor.portal-header-full-width-test {
	min-width: 1006px;
}

.telenor .portal-header-full-width-test .v-slot-top-toolbar-menu, .telenor .portal-header-full-width-test .v-slot-top-area > div, .telenor .portal-header-full-width-test .megamenu-level1, .telenor .portal-header-full-width-test .view-content-parent > .v-slot-header > .header, .telenor .portal-header-full-width-test .v-slot-page-header > .header, .telenor .portal-header-full-width-test .v-slot-page-toolbar > div.page-toolbar, .telenor.portal-header-full-width-test .v-slot-top-toolbar-menu, .telenor.portal-header-full-width-test .v-slot-top-area > div, .telenor.portal-header-full-width-test .megamenu-level1, .telenor.portal-header-full-width-test .view-content-parent > .v-slot-header > .header, .telenor.portal-header-full-width-test .v-slot-page-header > .header, .telenor.portal-header-full-width-test .v-slot-page-toolbar > div.page-toolbar {
	max-width: 100%;
	width: 100%;
}

.telenor .v-slot-top-toolbar-layout > .top-toolbar-layout > .top-toolbar, .telenor .v-slot-top-area, .telenor .v-slot-megamenu-level1, .telenor .v-slot-footer-layout {
	padding-right: 25px;
	padding-left: 25px;
}

.telenor .view-content-parent  > .v-slot-page-header, .telenor .view-content-parent  > .v-slot-page-toolbar, .telenor .view-content-parent  > .v-slot-page-tabs {
	padding-right: 25px;
	padding-left: 25px;
}

.telenor .dcp-page-section-header .v-slot-section-header {
	padding-left: 25px;
	padding-right: 25px;
}

.telenor .v-slot-page-content:not(.v-slot-document-page-container) {
	padding-left: 25px;
	padding-right: 25px;
}

.telenor .v-slot-page-content:not(.v-slot-document-page-container) .v-slot-page-content {
	padding-left: 0;
	padding-right: 0;
}

.telenor .v-table {
	background-color: transparent;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .v-table.loading::after {
	display: block;
	left: 50%;
	margin-left: -49px;
	top: 20%;
	line-height: normal;
	font-size: 96px;
	content: "\E863";
	font-family: "Material Icons";
	z-index: 10;
	color: rgba(0, 0, 0, 0.56);
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
	pointer-events: none;
	position: absolute;
	box-sizing: border-box;
}

.telenor .v-table-header-wrap {
	border-left: 0;
	border-right: 0;
	background-color: transparent;
	background-image: none;
	border: none;
}

.telenor .v-table-caption-container {
	border: 0;
	line-height: 40px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.54);
	font-weight: bolder;
	height: 40px;
	padding-top: 0;
	padding-bottom: 0;
}

.telenor .v-table-body {
	border-left: 0;
	border-right: 0;
}

.telenor .v-table-row, .telenor .v-table-row-odd {
	-webkit-animation: valo-animate-in-fade 100ms backwards;
	-moz-animation: valo-animate-in-fade 100ms backwards;
	animation: valo-animate-in-fade 100ms backwards;
}

.telenor .v-table-row-odd {
	background: transparent;
}

.telenor .v-table-table td {
	border-color: transparent;
	border-top-color: rgba(0, 0, 0, 0.12);
}

.telenor .v-table-cell-content {
	height: 40px !important;
	line-height: 40px;
	box-sizing: border-box;
}

.telenor .v-table [class*="-row"].v-selected, .telenor .v-table [class*="-row"].v-selected + .v-selected {
	background: #d6d6d6;
	color: inherit;
}

.telenor .v-window-contents .v-table-cell-content {
	height: 30px !important;
	line-height: 30px;
}

.telenor .v-window-contents .v-table-caption-container {
	height: 30px;
	line-height: 30px;
}

.telenor .v-window-contents .v-table-resizer, .telenor .v-window-contents .v-table-sort-indicator {
	height: 30px;
}

.telenor .v-table-column-selector {
	opacity: 1;
	height: 100%;
	border-color: transparent;
	background: #fff;
	background-clip: padding-box;
	box-shadow: none;
}

.telenor .v-table-column-selector:hover {
	background-color: #dcdcdc;
}

.telenor .v-table-column-selector:before {
	color: rgba(0, 0, 0, 0.54);
	content: "\E5D4";
	font-family: "Material Icons";
	border-width: 0;
	background-color: transparent;
	font-size: 18px;
	line-height: 1em;
	height: 1em;
	margin: -0.5em;
	position: absolute;
	top: 50%;
}

.telenor .v-grid {
	background: #ffffff;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .v-grid.loading::after {
	display: block;
	left: 50%;
	margin-left: -49px;
	top: 20%;
	line-height: normal;
	font-size: 96px;
	content: "\E863";
	font-family: "Material Icons";
	z-index: 10;
	color: rgba(0, 0, 0, 0.56);
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
	pointer-events: none;
	position: absolute;
	box-sizing: border-box;
}

.telenor .v-grid-row > td, .telenor .v-grid-editor-cells > div {
	border-left: none;
}

.telenor .v-grid-row {
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	height: 40px;
	box-sizing: border-box;
}

.telenor .v-grid-row .v-grid-cell {
	height: 40px !important;
	background: transparent;
	line-height: 40px;
	padding-left: 10px;
	padding-right: 10px;
}

.telenor .v-grid-row .v-grid-cell.frozen {
	border-right: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-grid-row:hover {
	background: #e0e0e0;
}

.telenor .v-grid-row.v-grid-row-selected {
	background: #d6d6d6;
}

.telenor .v-grid-row.v-grid-row-selected  > .v-grid-cell {
	color: rgba(0, 0, 0, 0.87);
	text-shadow: none;
}

.telenor .v-grid-row.v-grid-row-selected .v-grid-cell.frozen {
	background: #d6d6d6;
}

.telenor .v-grid-row.v-grid-row-selected:hover {
	background: #e0e0e0;
}

.telenor .v-grid-row.v-grid-row-selected:hover .v-grid-cell.frozen {
	background: #e0e0e0;
}

.telenor .v-grid.with-progress-renderer .v-grid-body .v-grid-row {
	height: auto;
}

.telenor .v-grid.with-progress-renderer .v-grid-body .v-grid-row .v-grid-cell {
	height: 60px !important;
}

.telenor .v-grid-header .v-grid-cell {
	background: #ffffff;
	border-left: none;
	color: rgba(0, 0, 0, 0.54);
	cursor: move;
	font-size: 1em;
	font-weight: bolder;
	line-height: 40px;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.telenor .v-grid-header .v-grid-cell:hover {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-grid-header .v-grid-cell.sortable {
	padding-right: 15px;
}

.telenor .v-grid-header .v-grid-cell.sortable:after {
	content: "\f0dc";
	font-family: FontAwesome;
	display: block;
	position: absolute;
	top: 0;
	right: 0.3em;
	font-size: 1em;
}

.telenor .v-grid-header .v-grid-cell.sortable:not(.sort-asc):not(.sort-desc):after {
	color: #f2f2f2;
}

.telenor .v-grid-header .v-grid-cell.sortable.sort-asc:after {
	content: "\f0d8";
}

.telenor .v-grid-header .v-grid-cell.sortable.sort-desc:after {
	content: "\f0d7";
}

.telenor .v-grid-header .v-grid-cell.sortable .inner-header-wrapper:before {
	display: none;
}

.telenor .v-grid-header .v-grid-cell .v-grid-column-resize-handle:after {
	content: "";
	display: block;
	height: 1.6em;
	position: absolute;
	right: 50%;
	top: 50%;
	border: solid 0px transparent;
	border-left-width: 1px;
	border-right-width: 1px;
	width: 1px;
	margin: -0.7em -1px;
}

.telenor .v-grid-header .v-grid-cell .v-grid-column-resize-handle:hover:after {
	border-color: rgba(0, 0, 0, 0.87);
}

.telenor .v-grid-header .v-grid-cell.frozen {
	cursor: default;
}

.telenor .v-grid-header .v-grid-cell .v-grid-column-header-content {
	max-width: 100%;
	width: auto;
}

.telenor .v-grid-header .v-grid-cell .outer-header-wrapper {
	max-width: 100%;
	display: inline-block;
	height: auto;
}

.telenor .v-grid-header .v-grid-cell .inner-header-wrapper {
	position: relative;
	max-width: 100%;
	display: block;
	height: auto;
}

.telenor .v-grid-row-stripe > td {
	background-color: #ffffff;
}

.telenor .v-grid-tablewrapper {
	border-width: 1px 0;
	border-top-color: #ffffff;
	border-bottom-width: 0;
}

.telenor .v-grid-tablewrapper  > table, .telenor .v-grid-tablewrapper .v-grid-body {
	height: 100%;
}

.telenor .v-grid-header-deco, .telenor .v-grid-footer-deco {
	background: #ffffff;
	border-color: #ffffff;
}

.telenor .v-grid-scroller-vertical {
	border-right: none;
	border-color: #ffffff;
	border-top-color: rgba(0, 0, 0, 0.12);
	background: #ffffff;
	padding-right: 18px !important;
	z-index: 6;
}

.telenor .v-grid-cell.frozen {
	background: #ffffff;
}

.telenor .v-grid-body .v-grid-row:hover .v-grid-cell.frozen {
	background: #e0e0e0;
}

.telenor .v-grid-cell-focused::before {
	border-width: 0px;
}

.telenor .v-table-cell-content-action-cell, .telenor .v-grid-body .v-grid-row .v-grid-cell.action-cell, .telenor .v-grid-body .v-grid-row .v-grid-cell .v-nativebutton {
	cursor: pointer;
	color: #00577e;
}

.telenor .v-table-cell-content-action-cell:hover, .telenor .v-grid-body .v-grid-row .v-grid-cell.action-cell:hover, .telenor .v-grid-body .v-grid-row .v-grid-cell .v-nativebutton:hover {
	color: #00496a;
	background-color: #f2f2f2;
}

.telenor .v-table-cell-content-action-cell:active, .telenor .v-table-cell-content-action-cell:focus, .telenor .v-table-cell-content-action-cell.v-pressed, .telenor .v-grid-body .v-grid-row .v-grid-cell.action-cell:active, .telenor .v-grid-body .v-grid-row .v-grid-cell.action-cell:focus, .telenor .v-grid-body .v-grid-row .v-grid-cell.action-cell.v-pressed, .telenor .v-grid-body .v-grid-row .v-grid-cell .v-nativebutton:active, .telenor .v-grid-body .v-grid-row .v-grid-cell .v-nativebutton:focus, .telenor .v-grid-body .v-grid-row .v-grid-cell .v-nativebutton.v-pressed {
	color: #003b55;
	background-color: #f2f2f2;
}

.telenor .v-table-cell-content-action-cell.v-disabled, .telenor .v-grid-body .v-grid-row .v-grid-cell.action-cell.v-disabled, .telenor .v-grid-body .v-grid-row .v-grid-cell .v-nativebutton.v-disabled {
	opacity: 1;
}

.telenor .v-table-cell-content-action-cell .v-treetable-treespacer {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-grid-body .v-grid-row .v-grid-cell.success-cell .v-icon {
	color: #86ba17;
	font-size: 1.6em;
}

.telenor .v-grid-body .v-grid-row .v-grid-cell.neutral-cell .v-icon {
	color: #b1b3b4;
	font-size: 1.6em;
}

.telenor .v-grid-body .v-grid-row .v-grid-cell .v-nativebutton {
	vertical-align: top;
}

.telenor .v-grid-horizontal-scrollbar-deco, .telenor .v-grid-scroller-horizontal {
	border-width: 0;
	border-top-width: 1px;
	background: transparent;
}

.telenor .v-grid-sidebar.v-contextmenu {
	z-index: 7;
}

.telenor .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button {
	padding: 0 0 0 6px;
}

.telenor .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button::after {
	color: rgba(0, 0, 0, 0.54);
	content: "\E5D4";
	font-family: "Material Icons";
	border-width: 0;
	background-color: transparent;
	font-size: 18px;
}

.telenor .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button:hover {
	background-color: #e0e0e0;
}

.telenor .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button:active {
	background-color: rgba(153, 153, 153, 0.4);
}

.telenor .v-grid-sidebar.v-contextmenu.closed {
	background: #ffffff;
	border-width: 0;
}

.telenor .v-grid-sidebar.v-contextmenu.open {
	background: #ffffff;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.telenor .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-content {
	border-top-width: 0px;
}

.telenor .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button::after {
	content: "\E5CE";
	font-family: "Material Icons";
	font-size: 18px;
	color: rgba(0, 0, 0, 0.54);
}

.telenor .v-window-contents .v-grid-body .v-grid-row {
	height: 30px;
}

.telenor .v-window-contents .v-grid-body .v-grid-row .v-grid-cell {
	height: 30px !important;
	line-height: 30px;
}

.telenor .v-grid-readonly-grid .v-grid-header .v-grid-cell {
	cursor: pointer;
}

.telenor .v-grid-readonly-grid .v-grid-row:hover {
	background: none;
}

.telenor .v-grid-readonly-grid .v-grid-row.v-grid-row-selected {
	background: none;
}

.telenor .v-grid .v-grid-cell.align-right > div {
	float: right;
}

.telenor .v-grid .v-grid-body .v-grid-cell.align-right > div > span {
	padding-right: 17px;
}

.telenor .v-grid-editor {
	border-left-width: 0;
	border-right-width: 0;
}

.telenor .v-grid-editor .v-grid-editor-save, .telenor .v-grid-editor .v-grid-editor-cancel {
	font-weight: 600;
	text-transform: uppercase;
	box-sizing: border-box;
	height: auto;
	padding: $button-padding-top $button-padding-side;
}

.telenor .v-grid-editor .v-grid-editor-save:not(.v-disabled), .telenor .v-grid-editor .v-grid-editor-cancel:not(.v-disabled) {
	background-color: transparent;
	color: #00577e;
}

.telenor .v-grid-editor .v-grid-editor-save:not(.v-disabled):hover, .telenor .v-grid-editor .v-grid-editor-cancel:not(.v-disabled):hover {
	color: #00496a;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .v-grid-editor .v-grid-editor-save:not(.v-disabled):active, .telenor .v-grid-editor .v-grid-editor-save:not(.v-disabled):focus, .telenor .v-grid-editor .v-grid-editor-save.v-pressed:not(.v-disabled), .telenor .v-grid-editor .v-grid-editor-cancel:not(.v-disabled):active, .telenor .v-grid-editor .v-grid-editor-cancel:not(.v-disabled):focus, .telenor .v-grid-editor .v-grid-editor-cancel.v-pressed:not(.v-disabled) {
	color: #003b55;
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .v-grid-editor .v-grid-editor-save.primary:not(.v-disabled), .telenor .v-grid-editor .v-grid-editor-cancel.primary:not(.v-disabled) {
	background-color: #00577e;
	color: #FFF;
}

.telenor .v-grid-editor .v-grid-editor-save.primary:not(.v-disabled):hover, .telenor .v-grid-editor .v-grid-editor-cancel.primary:not(.v-disabled):hover {
	background-color: #00496a;
	color: #FFF;
}

.telenor .v-grid-editor .v-grid-editor-save.primary:not(.v-disabled):active, .telenor .v-grid-editor .v-grid-editor-save.primary:not(.v-disabled):focus, .telenor .v-grid-editor .v-grid-editor-save.primary.v-pressed:not(.v-disabled), .telenor .v-grid-editor .v-grid-editor-cancel.primary:not(.v-disabled):active, .telenor .v-grid-editor .v-grid-editor-cancel.primary:not(.v-disabled):focus, .telenor .v-grid-editor .v-grid-editor-cancel.primary.v-pressed:not(.v-disabled) {
	background-color: #003b55;
	color: #FFF;
}

.telenor .v-grid-editor .v-grid-editor-save:before, .telenor .v-grid-editor .v-grid-editor-cancel:before {
	content: "";
	font-family: "Material Icons";
}

.telenor .v-grid-editor .v-grid-editor-save {
	color: #86ba17;
}

.telenor .v-grid-editor .v-grid-editor-save:before {
	content: "";
	color: #86ba17;
}

.telenor .v-grid-editor .v-grid-editor-cancel {
	color: #b1b3b4;
}

.telenor .v-grid-editor .v-grid-editor-cancel:before {
	content: "";
	color: #b1b3b4;
}

.telenor .v-grid-row.nonmatching {
	color: #bcbcbc;
}

.telenor .subscriptions-inventory-grid .v-grid-body .v-grid-row .v-grid-cell, .telenor .euicc-inventory-grid .v-grid-body .v-grid-row .v-grid-cell {
	overflow: hidden;
}

.telenor .subscriptions-inventory-grid .v-grid-body .v-grid-row .v-grid-cell .outer-wrapper, .telenor .euicc-inventory-grid .v-grid-body .v-grid-row .v-grid-cell .outer-wrapper {
	display: table;
	position: relative;
	height: 40px;
}

.telenor .subscriptions-inventory-grid .v-grid-body .v-grid-row .v-grid-cell .outer-wrapper .inner-wrapper, .telenor .euicc-inventory-grid .v-grid-body .v-grid-row .v-grid-cell .outer-wrapper .inner-wrapper {
	display: table-cell;
	white-space: normal;
	vertical-align: middle;
	line-height: 20px;
}

.telenor .subscriptions-inventory-grid .v-grid-body .v-grid-row .v-grid-cell:first-child, .telenor .euicc-inventory-grid .v-grid-body .v-grid-row .v-grid-cell:first-child {
	display: block;
	max-width: none;
}

.telenor .subscriptions-inventory-grid .v-grid-body .v-grid-row .v-grid-cell:first-child input, .telenor .euicc-inventory-grid .v-grid-body .v-grid-row .v-grid-cell:first-child input {
	cursor: pointer;
}

.telenor .subscriptions-inventory-grid .v-grid-body .v-grid-row .v-grid-cell:first-child .cell-wrapper, .telenor .euicc-inventory-grid .v-grid-body .v-grid-row .v-grid-cell:first-child .cell-wrapper {
	display: inline-block;
}

.telenor .v-grid.dcp-grid-accordion-content {
	clip-path: inset(0px 0px -1px 0px);
}

.telenor .v-grid.dcp-grid-accordion-content .v-grid-header .v-grid-cell, .telenor .v-grid.dcp-grid-accordion-content .v-grid-row, .telenor .v-grid.dcp-grid-accordion-content .v-grid-body {
	background-color: #f2f2f2;
}

.telenor .dcp-grid .v-grid-column-header-content {
	height: 40px;
	line-height: 40px;
}

.telenor .dcp-grid.dcp-grid-header-wordwrap .v-grid-header .v-grid-cell .v-grid-column-header-content {
	height: 40px;
	line-height: 40px;
	vertical-align: top;
}

.telenor .dcp-grid.dcp-grid-header-wordwrap .v-grid-header .v-grid-cell .outer-header-wrapper {
	position: relative;
}

.telenor .dcp-grid.dcp-grid-header-wordwrap .v-grid-header .v-grid-cell .outer-header-wrapper .inner-header-wrapper {
	white-space: normal;
	line-height: 17px;
	vertical-align: middle;
	margin-top: 3px;
	margin-bottom: 3px;
	max-height: 34px;
}

.telenor .dcp-grid .frozen.last-frozen {
	box-shadow: rgba(0, 0, 0, 0.06) 1px 0px 0px, rgba(0, 0, 0, 0.04) 3px 0px 0px, rgba(0, 0, 0, 0.02) 5px 0px 0px;
}

.telenor .dcp-grid .v-grid-row.summary-row .v-grid-cell {
	background-color: #f2f2f2;
}

.telenor .dcp-grid .v-grid-row.disabled {
	color: gray;
}

.telenor .dcp-grid .v-grid-header .v-grid-row.summary-row:last-child .v-grid-cell {
	box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 0px, rgba(0, 0, 0, 0.04) 0px 3px 0px, rgba(0, 0, 0, 0.02) 0px 5px 0px;
}

.telenor .dcp-grid .v-grid-header .v-grid-row.summary-row:last-child .v-grid-cell.last-frozen {
	box-shadow: rgba(0, 0, 0, 0.06) 1px 0px 0px, rgba(0, 0, 0, 0.04) 3px 0px 0px, rgba(0, 0, 0, 0.02) 5px 0px 0px, rgba(0, 0, 0, 0.06) 0px 1px 0px, rgba(0, 0, 0, 0.04) 0px 3px 0px, rgba(0, 0, 0, 0.02) 0px 5px 0px;
}

.telenor .dcp-grid .v-grid-cell.group-header.first-group {
	border-left: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-grid .v-grid-cell.group-header:not(.end-of-grid) {
	border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-grid .v-grid-cell.first-in-group {
	border-left: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-grid .v-grid-cell.last-in-group + .first-in-group {
	border-left: none;
}

.telenor .dcp-grid .v-grid-cell.last-in-group:not(:last-child) {
	border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-grid .v-grid-cell.frozen  + .first-in-group, .telenor .dcp-grid .v-grid-cell.frozen  + .group-header {
	border-left: none;
}

.telenor .dcp-grid .v-tree-grid-expander.collapsed, .telenor .dcp-grid .v-tree-grid-expander.expanded {
	padding: 10px;
	margin: -10px 0 -10px -10px;
	text-align: center;
	cursor: pointer;
}

.telenor .dcp-grid .v-tree-grid-expander.collapsed:before, .telenor .dcp-grid .v-tree-grid-expander.expanded:before {
	padding-right: 0;
}

.telenor .dcp-grid .v-tree-grid-expander.collapsed:hover, .telenor .dcp-grid .v-tree-grid-expander.expanded:hover {
	background-color: #f2f2f2;
}

.telenor .dcp-grid-frame {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	background-color: #ffffff;
}

.telenor .dcp-grid-frame .dcp-grid {
	box-shadow: none;
}

.telenor .dcp-grid-frame.foldable {
	box-shadow: 1px 2px rgba(0, 0, 0, 0.37);
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header {
	min-height: 40px;
	position: relative;
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header .dcp-grid-frame-header {
	position: relative;
	z-index: 1;
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 40px;
	background-color: #f2f2f2;
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header:first-child {
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header:first-child:before {
	bottom: 0;
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header:last-child {
	border-top: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header:last-child:before {
	top: 0;
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header .frame-info {
	line-height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	float: left;
	position: relative;
}

.telenor .dcp-grid-frame .v-slot-dcp-grid-frame-header .frame-actions {
	height: 40px;
	padding: 5px 10px;
	float: right;
	position: relative;
}

.telenor .dcp-grid-frame.has-actions-menu .v-slot-dcp-grid-frame-header .dcp-grid-frame-header {
	padding-left: 8.5em;
}

.telenor .dcp-grid-frame.has-actions-menu .v-menubar.frame-dropdown {
	width: 8.5em !important;
	position: absolute;
	bottom: 0;
	left: 0;
}

.telenor .dcp-grid-frame-ux {
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	background-color: #ffffff;
}

.telenor .dcp-grid-frame-ux .dcp-grid {
	box-shadow: none;
	flex-grow: 1;
}

.telenor .dcp-grid-frame-ux.collapsible {
	box-shadow: 1px 2px rgba(0, 0, 0, 0.37);
}

.telenor .dcp-grid-frame-ux .dcp-grid-frame-header {
	min-height: 40px;
	display: flex;
	width: 100%;
	height: 40px;
	background-color: #f2f2f2;
}

.telenor .dcp-grid-frame-ux .frame-status {
	align-items: center;
}

.telenor .dcp-grid-frame-ux .frame-status .v-progressbar {
	margin-right: 1em;
}

.telenor .dcp-grid-frame-ux .frame-status, .telenor .dcp-grid-frame-ux .frame-actions {
	display: flex;
	box-sizing: border-box;
	padding: 0 1em;
	height: 40px !important;
	line-height: 40px !important;
}

.telenor .dcp-grid-frame-ux .frame-status *, .telenor .dcp-grid-frame-ux .frame-actions * {
	line-height: 40px;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
}

.telenor .dcp-grid-frame-ux .dcp-collapse-button {
	font-size: 22px;
	width: 40px;
	height: 40px;
	height: 40px !important;
	line-height: 40px !important;
	padding: 0 !important;
	margin: 0 !important;
}

.telenor .dcp-grid-frame-ux .dcp-collapse-button .v-icon {
	vertical-align: middle !important;
}

.telenor .dcp-grid-frame-ux .dcp-show-selected-checkbox {
	height: 40px !important;
	line-height: 40px !important;
	padding: 0px 10px;
	vertical-align: middle !important;
}

.telenor .dcp-grid-frame-ux .dcp-show-selected-checkbox .v-checkbox {
	vertical-align: middle !important;
}

.telenor .dcp-grid-frame-ux .frame-status {
	flex-grow: 1;
}

.telenor .dcp-grid-frame-ux .frame-status .v-icon {
	font-size: 20px;
}

.telenor .dcp-grid-frame-ux .frame-status .v-label {
	font-size: 14px;
}

.telenor .v-treegrid-row > td {
	border-left: none;
}

.telenor .v-treegrid-row {
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	height: 40px;
	box-sizing: border-box;
}

.telenor .v-treegrid-row .v-treegrid-cell {
	height: 40px !important;
	background: transparent;
	line-height: 40px;
	padding-left: 10px;
	padding-right: 10px;
}

.telenor .v-treegrid-row .v-treegrid-cell.frozen {
	border-right: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .v-treegrid-row:before {
	border-style: none;
}

.telenor .v-treegrid-row:hover {
	background: #e0e0e0;
}

.telenor .v-treegrid-row.v-treegrid-row-selected {
	background: #d6d6d6;
}

.telenor .v-treegrid-row.v-treegrid-row-selected  > .v-treegrid-cell {
	color: rgba(0, 0, 0, 0.87);
	text-shadow: none;
}

.telenor .v-treegrid-row.v-treegrid-row-selected .v-treegrid-cell.frozen {
	background: #d6d6d6;
}

.telenor .v-treegrid-row.v-treegrid-row-selected:hover {
	background: #e0e0e0;
}

.telenor .v-treegrid-row.v-treegrid-row-selected:hover .v-treegrid-cell.frozen {
	background: #e0e0e0;
}

.telenor .v-treegrid-header .v-treegrid-cell {
	background: #ffffff;
	border-left: none;
	color: rgba(0, 0, 0, 0.54);
	cursor: move;
	font-size: 1em;
	font-weight: bolder;
	line-height: 40px;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.telenor .v-treegrid-header .v-treegrid-cell:hover {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-treegrid-header .v-treegrid-cell.sortable {
	padding-right: 15px;
}

.telenor .v-treegrid-header .v-treegrid-cell.sortable:after {
	content: "\f0dc";
	font-family: FontAwesome;
	display: block;
	position: absolute;
	top: 0;
	right: 0.3em;
	font-size: 1em;
}

.telenor .v-treegrid-header .v-treegrid-cell.sortable:not(.sort-asc):not(.sort-desc):after {
	color: #f2f2f2;
}

.telenor .v-treegrid-header .v-treegrid-cell.sortable.sort-asc:after {
	content: "\f0d8";
}

.telenor .v-treegrid-header .v-treegrid-cell.sortable.sort-desc:after {
	content: "\f0d7";
}

.telenor .v-treegrid-header .v-treegrid-cell.sortable .inner-header-wrapper:before {
	display: none;
}

.telenor .v-treegrid-header .v-treegrid-cell .v-treegrid-column-resize-handle:after {
	content: "";
	display: block;
	height: 1.6em;
	position: absolute;
	right: 50%;
	top: 50%;
	border: solid 0px transparent;
	border-left-width: 1px;
	border-right-width: 1px;
	width: 1px;
	margin: -0.7em -1px;
}

.telenor .v-treegrid-header .v-treegrid-cell .v-treegrid-column-resize-handle:hover:after {
	border-color: rgba(0, 0, 0, 0.87);
}

.telenor .v-treegrid-header .v-treegrid-cell.frozen {
	cursor: default;
}

.telenor .v-treegrid-header .v-treegrid-cell .v-treegrid-column-header-content {
	max-width: 100%;
	width: auto;
}

.telenor .v-treegrid-row-stripe > td {
	background-color: #ffffff;
}

.telenor .v-treegrid-tablewrapper {
	border-width: 1px 0;
	border-top-color: #ffffff;
	border-bottom-width: 0;
}

.telenor .v-treegrid-tablewrapper  > table, .telenor .v-treegrid-tablewrapper .v-treegrid-body {
	height: 100%;
}

.telenor .v-treegrid-header-deco, .telenor .v-treegrid-footer-deco {
	background: #ffffff;
	border-color: #ffffff;
}

.telenor .v-treegrid-scroller-vertical {
	border-right: none;
	border-color: #ffffff;
	border-top-color: rgba(0, 0, 0, 0.12);
	background: #ffffff;
	padding-right: 18px !important;
	z-index: 6;
}

.telenor .v-treegrid-cell.frozen {
	background: #ffffff;
}

.telenor .v-treegrid-body .v-treegrid-row:hover .v-treegrid-cell.frozen {
	background: #e0e0e0;
}

.telenor .v-treegrid-cell-focused::before {
	border-width: 0px;
}

.telenor .v-treegrid-horizontal-scrollbar-deco, .telenor .v-treegrid-scroller-horizontal {
	border-width: 0;
	border-top-width: 1px;
	background: transparent;
}

.telenor .v-treegrid-sidebar.v-contextmenu {
	z-index: 7;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button {
	padding: 0 0 0 6px;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button::after {
	color: rgba(0, 0, 0, 0.54);
	content: "\E5D4";
	font-family: "Material Icons";
	border-width: 0;
	background-color: transparent;
	font-size: 18px;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:hover {
	background-color: #e0e0e0;
}

.telenor .v-treegrid-sidebar.v-contextmenu .v-treegrid-sidebar-button:active {
	background-color: rgba(153, 153, 153, 0.4);
}

.telenor .v-treegrid-sidebar.v-contextmenu.closed {
	background: #ffffff;
	border-width: 0;
}

.telenor .v-treegrid-sidebar.v-contextmenu.open {
	background: #ffffff;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.telenor .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-content {
	border-top-width: 0px;
}

.telenor .v-treegrid-sidebar.v-contextmenu.open .v-treegrid-sidebar-button::after {
	content: "\E5CE";
	font-family: "Material Icons";
	font-size: 18px;
	color: rgba(0, 0, 0, 0.54);
}

.telenor .v-tree-grid-expander {
	display: inline-block;
	width: 10px;
	padding-right: 10px;
}

.telenor .v-tree-grid-expander::before {
	display: inline-block;
	padding-right: 4px;
	font-family: FontAwesome;
}

.telenor .v-tree-grid-expander.expanded::before {
	content: "\f0d7";
}

.telenor .v-tree-grid-expander.collapsed::before {
	content: "\f0da";
}

.telenor .v-tree-grid-node.depth-0 {
	padding-left: 0px;
}

.telenor .v-tree-grid-node.depth-1 {
	padding-left: 20px;
}

.telenor .v-tree-grid-node.depth-2 {
	padding-left: 40px;
}

.telenor .v-tree-grid-node.depth-3 {
	padding-left: 60px;
}

.telenor .v-tree-grid-node.depth-4 {
	padding-left: 80px;
}

.telenor .v-tree-grid-node.depth-5 {
	padding-left: 100px;
}

.telenor .v-tree-grid-node.depth-6 {
	padding-left: 120px;
}

.telenor .v-tree-grid-node.depth-7 {
	padding-left: 140px;
}

.telenor .v-tree-grid-node.depth-8 {
	padding-left: 160px;
}

.telenor .v-tree-grid-node.depth-9 {
	padding-left: 180px;
}

.telenor .v-tree-grid-node.depth-10 {
	padding-left: 200px;
}

.telenor .v-tree-grid-node.depth-11 {
	padding-left: 220px;
}

.telenor .v-tree-grid-node.depth-12 {
	padding-left: 240px;
}

.telenor .v-tree-grid-node.depth-13 {
	padding-left: 260px;
}

.telenor .v-tree-grid-node.depth-14 {
	padding-left: 280px;
}

.telenor .v-tree-grid-node.depth-15 {
	padding-left: 300px;
}

.telenor .v-tree-grid-cell-content {
	display: inline-block;
}

.telenor .dcp-treegrid.loading::after {
	display: block;
	left: 50%;
	margin-left: -49px;
	top: 20%;
	line-height: normal;
	font-size: 96px;
	content: "\E863";
	font-family: "Material Icons";
	z-index: 10;
	color: rgba(0, 0, 0, 0.56);
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
	pointer-events: none;
	position: absolute;
	box-sizing: border-box;
}

.telenor .dcp-treegrid .v-treegrid-column-header-content {
	height: 40px;
	line-height: 40px;
}

.telenor .dcp-treegrid.dcp-treegrid-header-wordwrap .v-treegrid-header .v-treegrid-cell .outer-header-wrapper {
	position: relative;
}

.telenor .dcp-treegrid.dcp-treegrid-header-wordwrap .v-treegrid-header .v-treegrid-cell .outer-header-wrapper .inner-header-wrapper {
	white-space: normal;
	line-height: 17px;
	vertical-align: middle;
	margin-top: 3px;
	margin-bottom: 3px;
	max-height: 34px;
}

.telenor .dcp-treegrid .frozen.last-frozen {
	box-shadow: rgba(0, 0, 0, 0.06) 1px 0px 0px, rgba(0, 0, 0, 0.04) 3px 0px 0px, rgba(0, 0, 0, 0.02) 5px 0px 0px;
}

.telenor .dcp-treegrid .v-treegrid-row .v-treegrid-cell.action-cell {
	cursor: pointer;
	color: #00577e;
}

.telenor .dcp-treegrid .v-treegrid-row .v-treegrid-cell.action-cell:hover {
	color: #00496a;
	background-color: #f2f2f2;
}

.telenor .dcp-treegrid .v-treegrid-row .v-treegrid-cell.action-cell:active, .telenor .dcp-treegrid .v-treegrid-row .v-treegrid-cell.action-cell:focus, .telenor .dcp-treegrid .v-treegrid-row .v-treegrid-cell.action-cell.v-pressed {
	color: #003b55;
	background-color: #f2f2f2;
}

.telenor .dcp-treegrid .v-treegrid-row .v-treegrid-cell.action-cell.v-disabled {
	opacity: 1;
}

.telenor .dcp-treegrid .v-treegrid-row.nonmatching {
	color: #bcbcbc;
}

.telenor .dcp-treegrid .v-treegrid-row.summary-row .v-treegrid-cell {
	background-color: #f2f2f2;
}

.telenor .dcp-treegrid .v-treegrid-row.selection-checkbox-disabled td:first-child {
	pointer-events: none;
	color: gray;
}

.telenor .dcp-treegrid .v-treegrid-row.disabled .v-treegrid-cell {
	color: gray;
}

.telenor .dcp-treegrid .v-treegrid-header .v-treegrid-row.summary-row:last-child .v-treegrid-cell {
	box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 0px, rgba(0, 0, 0, 0.04) 0px 3px 0px, rgba(0, 0, 0, 0.02) 0px 5px 0px;
}

.telenor .dcp-treegrid .v-treegrid-header .single-select-header .v-treegrid-column-default-header-content {
	padding-left: 5px;
}

.telenor .dcp-treegrid .v-treegrid-header .v-label.selectAll {
	cursor: context-menu;
}

.telenor .dcp-treegrid .v-treegrid-header .v-label.selectAll .v-icon {
	padding-left: 4px;
	padding-right: 7px;
}

.telenor .key-information-area .v-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.telenor .v-panel.loading::after {
	display: block;
	left: 50%;
	margin-left: -49px;
	top: 20%;
	line-height: normal;
	font-size: 96px;
	content: "\E863";
	font-family: "Material Icons";
	z-index: 10;
	color: rgba(0, 0, 0, 0.56);
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
	pointer-events: none;
	position: absolute;
	box-sizing: border-box;
}

.telenor .v-panel.borderless {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .dcp-panel-content .v-caption {
	padding-top: 10px;
}

.telenor .dcp-panel-content .column-slot {
	padding-right: 10px;
}

.telenor .dcp-panel-content .column-slot .v-caption {
	word-wrap: break-word;
	white-space: normal;
	line-height: 15px;
}

.telenor .dcp-panel-content .column-slot .v-caption  + .v-label {
	padding-bottom: 10px;
	line-height: normal;
	word-wrap: break-word;
}

.telenor .dcp-panel-content .column-layout > .column-panel-content > .column.wrapped {
	margin-top: 0px;
}

.telenor .dcp-panel {
	background-color: #ffffff;
	border: none;
	position: relative;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .dcp-panel .dcp-panel-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	position: relative;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-caption, .telenor .dcp-panel .dcp-panel-header .dcp-info-button {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
	margin: 0;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-caption {
	padding: 12px 20px;
}

.telenor .dcp-panel .dcp-panel-header .dcp-info-button {
	margin: 12px 20px 12px -10px;
	padding: 0;
	line-height: 1.06em;
	background-color: transparent;
	color: #0063bb;
}

.telenor .dcp-panel .dcp-panel-header .dcp-info-button .v-icon {
	vertical-align: middle;
	width: 26px;
	height: 26px;
	margin: -4.6px 0;
	line-height: 26px;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-actions {
	padding: 10px 20px;
	float: right;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-togglebutton {
	font-size: 22px;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	border-left: solid 1px rgba(0, 0, 0, 0.12);
	color: #9b9b9b;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle:focus, .telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle:hover {
	color: #737373;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle:focus:not(.v-disabled), .telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle:active:not(.v-disabled) {
	background-color: transparent;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle:hover:not(.v-disabled) {
	background-color: #f2f2f2;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle .v-icon {
	display: block;
	width: 1em;
	height: 1em;
	line-height: 1em;
	text-align: center;
	margin: -0.5em;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 3em;
	transform: rotate(180deg);
	transition: transform 0.2s ease;
}

.telenor .dcp-panel .dcp-panel-header .dcp-panel-content-toggle.open .v-icon {
	transform: rotate(0deg);
}

.telenor .dcp-panel.dcp-panel-content-toggle-enabled .dcp-panel-header {
	padding-right: 50px;
}

.telenor .dcp-panel .dcp-panel-content  > .v-margin-top {
	padding-top: 20px;
}

.telenor .dcp-panel .dcp-panel-content  > .v-margin-right {
	padding-right: 20px;
}

.telenor .dcp-panel .dcp-panel-content  > .v-margin-bottom {
	padding-bottom: 20px;
}

.telenor .dcp-panel .dcp-panel-content  > .v-margin-left {
	padding-left: 20px;
}

.telenor .dcp-panel .dcp-panel-content .v-slot.v-slot-dcp-panel-content-header:first-child .dcp-panel-content-header {
	border-top-width: 0;
}

.telenor .dcp-panel .dcp-panel-content.dcp-grid-frame, .telenor .dcp-panel .dcp-panel-content .dcp-grid-frame, .telenor .dcp-panel .dcp-panel-content.dcp-grid, .telenor .dcp-panel .dcp-panel-content .dcp-grid, .telenor .dcp-panel .dcp-panel-content.v-table, .telenor .dcp-panel .dcp-panel-content .v-table {
	box-shadow: none;
}

.telenor .dcp-panel .dcp-panel-content .v-slot-dcp-grid, .telenor .dcp-panel .dcp-panel-content .v-table {
	border-top: solid 1px rgba(0, 0, 0, 0.12);
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-panel .dcp-panel-content  > .v-slot:first-child  > .dcp-grid, .telenor .dcp-panel .dcp-panel-content  > .v-slot:first-child  > .v-table {
	border-top: none;
}

.telenor .dcp-panel .dcp-panel-content  > .v-slot:last-child  > .dcp-grid, .telenor .dcp-panel .dcp-panel-content  > .v-slot:last-child  > .v-table {
	border-bottom: none;
}

.telenor .dcp-panel .dcp-panel-content  > .v-slot-dcp-filters {
	padding: 10px 20px 0;
}

.telenor .dcp-panel .dcp-panel-content .page-tabs {
	border-bottom: 2px solid #000000;
	width: 100%;
}

.telenor .dcp-panel.loading::after, .telenor .dcp-panel .loading-content::after {
	display: block;
	left: 50%;
	margin-left: -49px;
	top: 20%;
	line-height: normal;
	font-size: 96px;
	content: "\E863";
	font-family: "Material Icons";
	z-index: 10;
	color: rgba(0, 0, 0, 0.56);
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
	pointer-events: none;
	position: absolute;
	box-sizing: border-box;
}

.telenor .dcp-panel .loading-content {
	position: relative;
	height: 100px;
}

.telenor .dcp-panel .loading-content::after {
	top: 10%;
	font-size: 64px;
}

.telenor .dcp-panel.header-for-accordion .dcp-panel-header .dcp-panel-caption {
	padding-left: 69px;
	padding-top: 19px;
	position: relative;
}

.telenor .dcp-panel.header-for-accordion .dcp-panel-header .dcp-panel-caption .v-icon {
	position: absolute;
	left: 16px;
}

.telenor .v-tabsheet-tabsheetpanel .dcp-panel {
	border-left: solid 1px rgba(0, 0, 0, 0.12);
	border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-panel-content-header {
	border: solid 0 rgba(0, 0, 0, 0.12);
	border-top-width: 1px;
	border-bottom-width: 1px;
	background-color: #f2f2f2;
	padding: 0 20px;
}

.telenor .dcp-panel-content-header .header-caption .v-label.caption {
	color: #202020;
	font-weight: bold;
	padding: 5px 0;
}

.telenor .dcp-panel-content-header .header-actions {
	float: right;
}

.telenor .panel-breadcrumb {
	margin-left: -0.25em;
	cursor: default;
}

.telenor .panel-breadcrumb .crumb-active {
	cursor: pointer;
	padding: 0 0.25em;
	opacity: 0.9;
	color: #00a9da;
}

.telenor .panel-breadcrumb .crumb-active:hover {
	background-color: rgba(203, 203, 203, 0.15);
}

.telenor .panel-breadcrumb .crumb-info {
	padding: 0 0.25em;
	opacity: 0.9;
	color: #0063bb;
}

.telenor .panel-breadcrumb .separator {
	opacity: 0.8;
	font-weight: bold;
	height: 1.55em;
}

.telenor .panel-breadcrumb .separator .v-icon {
	color: #0063bb;
	font-size: 1.7em;
	line-height: 1em;
}

.telenor .panel-breadcrumb .v-spacing {
	width: 10px;
	display: none;
}

.telenor .dcp-accordion {
	background-color: #ffffff;
	border: none;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	padding-top: 0px;
}

.telenor .dcp-accordion  > .v-slot-dcp-accordion-section {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .dcp-accordion  > .v-slot-dcp-accordion-section:first-child {
	border-top-width: 1px;
}

.telenor .dcp-accordion-section {
	position: relative;
}

.telenor .dcp-accordion-section .dcp-accordion-header {
	position: relative;
	padding-left: 50px;
	display: table;
}

.telenor .dcp-accordion-section .dcp-accordion-header .dcp-accordion-section-title {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
	margin: 0;
	padding: 12px 20px;
	display: table-cell;
	width: 100%;
}

.telenor .dcp-accordion-section .dcp-accordion-header .section-info-wrapper {
	display: table-cell;
	padding-right: 10px;
	position: absolute;
	right: 0;
	width: 20%;
}

.telenor .dcp-accordion-section .dcp-accordion-header .section-info {
	min-width: 50px;
	min-height: 50px;
}

.telenor .dcp-accordion-section .dcp-accordion-header .section-info .state-description {
	text-transform: uppercase;
	line-height: 20px;
	font-size: 0.8em;
	color: rgba(0, 0, 0, 0.54);
	text-align: right;
	white-space: nowrap;
	display: block;
}

.telenor .dcp-accordion-section .dcp-accordion-header .section-info .v-slot-dcp-toggle-checkbox {
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -5px;
}

.telenor .dcp-accordion-section .dcp-accordion-section-toggle {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 100%;
	border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-accordion-section .dcp-accordion-section-toggle:focus:not(.v-disabled):not(:hover), .telenor .dcp-accordion-section .dcp-accordion-section-toggle:active:not(.v-disabled):not(:hover) {
	background-color: transparent;
}

.telenor .dcp-accordion-section .dcp-accordion-section-toggle .v-icon {
	display: block;
	width: 1em;
	height: 1em;
	line-height: 1em;
	text-align: center;
	margin: -0.5em;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 3em;
	transform: rotate(180deg);
	transition: transform 0.2s ease;
}

.telenor .dcp-accordion-section .dcp-accordion-section-toggle.open .v-icon {
	transform: rotate(0deg);
}

.telenor .dcp-accordion-section.has-state {
	padding-right: 10px;
}

.telenor .dcp-accordion-section.has-state:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 10px;
	height: 100%;
	background-color: #b1b3b4;
}

.telenor .dcp-accordion-section.has-state.state-info:after {
	background-color: #0063bb;
}

.telenor .dcp-accordion-section.has-state.state-complete:after {
	background-color: #417505;
}

.telenor .dcp-accordion-section.has-state.state-success:after {
	background-color: #86ba17;
}

.telenor .dcp-accordion-section.has-state.state-draft:after {
	background-color: #F8A24B;
}

.telenor .dcp-accordion-section.has-state.state-warning:after {
	background-color: #fabb00;
}

.telenor .dcp-accordion-section.has-state.state-error:after {
	background-color: #e32119;
}

.telenor .dcp-accordion-section.has-state.state-disabled:after {
	background-color: #b1b3b4;
}

.telenor .dcp-accordion-section .dcp-accordion-section-content {
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	background-color: #f2f2f2;
}

.telenor .dcp-accordion-section .dcp-accordion-section-content .v-slot-dcp-buttonbar {
	background-color: #ffffff;
}

.telenor .dcp-accordion-section.section-disabled .dcp-accordion-header .dcp-accordion-section-title {
	color: #9b9b9b;
}

.telenor .dcp-accordion-panel {
	width: 100%;
}

.telenor .dcp-accordion-header-grid {
	width: 100%;
}

.telenor .dcp-accordion-header-grid .v-gridlayout-slot {
	margin-bottom: 0px;
	margin-top: 0px;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-dashboard-header {
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	position: relative;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-dashboard-header-icon {
	width: 50px;
	left: 10px;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-dashboard-header-progress-bar {
	margin-top: 8px;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-dashboard-header-progress-bar .v-progressbar-wrapper {
	width: 200px;
	border-radius: 0px;
	background-color: #dcdcdc;
	margin-right: 10px;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-dashboard-header-progress-bar .v-progressbar-wrapper .v-progressbar-indicator {
	width: 200px;
	border-radius: 0px;
	background-color: #00577e;
	border: 1px solid #00577e;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-dashboard-header-actions {
	padding: 10px 20px;
	float: right;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-dashboard-panes {
	width: 100%;
	padding-right: 50px;
}

.telenor .dcp-accordion-dashboard .dcp-accordion-checklist {
	background-color: #ffffff;
	border: none;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .dcp-accordion-dashboard .dcp-accordion-checklist  > .v-slot-dcp-accordion-checklist {
	width: 50%;
	height: 100%;
}

.telenor .dcp-context-sensitive-help-panel {
	background-color: #f2f2f2;
}

.telenor .dcp-context-sensitive-help-panel .v-slot-dcp-toggle-image > .v-caption-on-top {
	line-height: 2px;
}

.telenor .dcp-context-sensitive-help-panel .dcp-ctx-sensitivehelp-button-row {
	margin-bottom: 0;
	padding-bottom: 0;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-buttonBar {
	float: right;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-buttonBar .dcp-button {
	margin: 0;
	padding: 0;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-buttonBar .dcp-button .v-icon {
	font-size: 25px;
	color: black;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-buttonBar .v-caption-dcp-toggle-image .v-icon {
	font-size: 21px;
	color: black;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-help-block {
	margin-top: 0;
	padding-top: 0;
	background-color: #f2f2f2;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-help-block .dcp-help-text {
	font-size: 14px;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-help-block .v-icon {
	font-size: 21px;
	padding: 0px;
	padding-right: 5px;
	padding-top: 2px;
	color: black;
}

.telenor .dcp-context-sensitive-help-panel .dcp-context-sensitive-help-block .v-caption-dcp-toggle-image {
	padding: 0;
}

.telenor .dcp-context-sensitive-help-panel.v-verticallayout-dcp-agreement-dialog-panel {
	left: 0;
	position: absolute;
	bottom: 50px;
}

.telenor .pricing-setup-checklist-panel .dcp-panel-caption {
	padding: 12px 18px;
}

.telenor .pricing-setup-checklist-panel .dcp-panel-caption span {
	margin-right: 12px;
	position: relative;
	top: 2px;
}

.telenor .pricing-setup-checklist-panel .pricing-setup-checklist-note {
	margin: 20px;
	margin-bottom: 10px;
}

.telenor .pricing-setup-checklist-panel .checklist-line {
	position: relative;
}

.telenor .pricing-setup-checklist-panel .checklist-line .icon {
	background-color: #b1b3b4;
	position: absolute;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 10px;
	margin: 15px 20px;
	color: white;
}

.telenor .pricing-setup-checklist-panel .checklist-line .icon.ready {
	background-color: #86ba17;
}

.telenor .pricing-setup-checklist-panel .checklist-line .caption {
	margin: 15px 0;
	padding-left: 60px;
}

.telenor .v-window {
	background: #ffffff;
}

.telenor .v-window.embedded-window {
	max-height: 95%;
	height: 100%;
}

.telenor .v-window .v-window-header {
	padding: 20px 20px 10px;
	overflow: visible;
	margin-bottom: 0;
}

.telenor .v-window .v-window-outerheader:after, .telenor .v-window .v-window-contents > .v-scrollable:before {
	display: none;
}

.telenor .v-window.dcp-window-no-caption .v-window-header {
	display: none;
}

.telenor .v-window .v-window-contents > .v-scrollable > .main-layout {
	padding: 20px;
	padding-bottom: 10px;
}

.telenor .v-window .v-window-contents > .v-scrollable > .main-layout.main-layout-legacy-spacing  > .v-spacing, .telenor .v-window .v-window-contents > .v-scrollable > .main-layout.main-layout-legacy-spacing  > .v-expand > .v-spacing {
	height: 3px;
}

.telenor .v-window .v-window-closebox {
	font-size: 32px;
	color: #00577e;
	font-weight: 300;
}

.telenor .v-window .v-window-closebox:hover {
	color: #00577e;
	background-color: #f2f2f2;
}

.telenor .v-window .v-window-closebox:before {
	font-family: "Material Icons";
	content: "close";
	font-size: 0.7em;
}

.telenor .v-horizontallayout.fake-window-header {
	padding-bottom: 20px;
}

.telenor .v-horizontallayout.fake-window-header .v-slot-h2 .h2 {
	margin: 0;
}

.telenor .v-popupview.dcp-hack-hidden {
	display: none;
}

.telenor .dcp-dialog .v-window-outerheader {
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-dialog .v-window-header {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding: 12px 20px;
}

.telenor .dcp-dialog .v-window-closebox {
	height: 100%;
	width: 50px;
	border-bottom-left-radius: 0;
	color: #9b9b9b;
}

.telenor .dcp-dialog .v-window-closebox:hover, .telenor .dcp-dialog .v-window-closebox:focus, .telenor .dcp-dialog .v-window-closebox:active {
	color: #737373;
}

.telenor .dcp-dialog .v-window-closebox:before {
	width: 50px;
	height: 50px;
	font-size: 42px;
	line-height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px;
}

.telenor .dcp-dialog .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .telenor .dcp-dialog .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-dialog .dcp-dialog-paginated-content-wrapper {
	position: relative;
	padding-bottom: 51px;
	height: 100%;
	width: 100%;
}

.telenor .dcp-dialog .dcp-dialog-paginated-content-wrapper  > .dcp-pagination {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 10px 20px;
	max-height: 50px;
}

.telenor .dcp-dialog .dcp-dialog-paginated-content-wrapper  > .dcp-pagination.has-steps {
	border-top: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-dialog.pps-spts-linkage-dialog .v-grid-dcp-grid {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .dcp-dialog.pps-spts-linkage-dialog .v-grid-dcp-grid .v-grid-cell .v-filterselect {
	font-size: 14px;
}

.telenor .dcp-dialog.pps-spts-linkage-dialog .v-grid-dcp-grid .v-grid-cell .v-filterselect  > input {
	font-size: 14px;
}

.telenor .dcp-dialog.without-border .v-window-outerheader {
	border-bottom: none;
}

.telenor .dcp-dialog.without-border .dcp-dialog-paginated-content-wrapper  > .dcp-pagination.has-steps {
	border-top: none;
}

.telenor .dcp-notification-dialog .dcp-notification-content {
	display: block;
}

.telenor .dcp-notification-dialog .dcp-notification-caption {
	padding-top: 5px;
}

.telenor .dcp-notification-dialog .v-window-outerheader {
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-notification-dialog .v-window-header {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding: 12px 20px 12px 12px;
}

.telenor .dcp-notification-dialog .v-window-header.contentTitle {
	font-size: 22px;
	line-height: 20px;
	padding-top: 10px;
}

.telenor .dcp-notification-dialog .v-window-closebox {
	height: 100%;
	width: 50px;
	border-bottom-left-radius: 0;
	color: #9b9b9b;
}

.telenor .dcp-notification-dialog .v-window-closebox:hover, .telenor .dcp-notification-dialog .v-window-closebox:focus, .telenor .dcp-notification-dialog .v-window-closebox:active {
	color: #737373;
}

.telenor .dcp-notification-dialog .v-window-closebox:before {
	width: 50px;
	height: 50px;
	font-size: 32px;
	line-height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px;
}

.telenor .dcp-notification-dialog .v-margin-left {
	padding-left: 0;
	padding-right: 0;
}

.telenor .dcp-notification-dialog .horizontal-layout {
	border-top: solid 1px rgba(0, 0, 0, 0.12);
	padding: 5px;
}

.telenor .v-popupview-popup .popupContent .v-label ul {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 20px;
}

.telenor .v-popupview-popup .popupContent .v-label ul li {
	margin-top: 10px;
	margin-bottom: 10px;
}

.telenor .v-popupview.v-widget.basecolor {
	color: #474747;
}

.telenor .dcp-bubbly-dialog {
	overflow: visible !important;
}

.telenor .dcp-bubbly-dialog:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top-color: white;
	border-bottom: 0;
	border-left: 0;
	margin-left: -10px;
	margin-bottom: -20px;
}

.telenor .dcp-bubbly-dialog .v-window-outerheader {
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-bubbly-dialog .v-window-header {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding: 12px 20px;
}

.telenor .dcp-bubbly-dialog .v-window-closebox {
	height: 100%;
	width: 50px;
	border-bottom-left-radius: 0;
	color: #9b9b9b;
}

.telenor .dcp-bubbly-dialog .v-window-closebox:hover, .telenor .dcp-bubbly-dialog .v-window-closebox:focus, .telenor .dcp-bubbly-dialog .v-window-closebox:active {
	color: #737373;
}

.telenor .dcp-bubbly-dialog .v-window-closebox:before {
	width: 50px;
	height: 50px;
	font-size: 42px;
	line-height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px;
}

.telenor .dcp-bubbly-dialog .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .telenor .dcp-bubbly-dialog .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
	border-right: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-bubbly-dialog .dcp-dialog-elements.v-margin-left {
	padding-left: 10px;
}

.telenor .dcp-bubbly-dialog .dcp-dialog-elements.v-margin-right {
	padding-right: 10px;
}

.telenor .dcp-bubbly-dialog .dcp-dialog-elements.v-margin-top {
	padding-top: 10px;
}

.telenor .dcp-bubbly-dialog .dcp-dialog-elements.v-margin-bottom {
	padding-bottom: 10px;
}

.telenor .v-slot-icon-color {
	color: #0091d2;
	font-size: 20px;
}

.telenor .v-label-wrapLabelText {
	white-space: pre-wrap;
	word-wrap: break-word;
}

.telenor .v-caption-caption-text-wrap, .telenor .caption-text-wrap .v-caption {
	white-space: normal;
}

.telenor .dcp-label-details-button-layout .v-csslayout {
	max-width: 100%;
	position: relative;
	padding-right: 36px;
}

.telenor .dcp-label-details-button-layout .v-csslayout .dcp-button {
	position: absolute;
	bottom: 0;
	right: 0;
}

.telenor .v-slot-dcp-field-caption {
	line-height: 16.8px;
}

.telenor .v-slot-dcp-field-caption .dcp-field-caption {
	color: #202020;
	font-weight: bold;
	font-size: 14px;
	line-height: 16.8px;
}

.telenor .dcp-field-description {
	color: #737373;
	font-size: 13px;
}

.telenor .v-slot-dcp-separator {
	height: 7px;
}

.telenor .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
	border-bottom-color: #000000;
	color: #000000;
}

.telenor .v-tabsheet-tabitemcell .v-tabsheet-tabitem .v-caption {
	font-size: 14px;
	color: #00577e;
}

.telenor .v-tabsheet-tabcontainer {
	padding-top: 10px;
}

.telenor .v-tabsheet.narrow-margin .v-tabsheet-content > div > .v-scrollable > .v-margin-left, .telenor .v-tabsheet.narrow-margin .v-tabsheet-content > div > .v-scrollable > .v-margin-right, .telenor .v-tabsheet.narrow-margin .v-tabsheet-content > div > .v-scrollable > .v-margin-top, .telenor .v-tabsheet.narrow-margin .v-tabsheet-content > div > .v-scrollable > .v-margin-bottom {
	padding-left: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-top: 20px;
}

.telenor .v-tabsheet-tabitemcell-error .v-tabsheet-tabitem .v-caption {
	color: #e32119;
}

.telenor .v-slot-dcp-info-bar {
	background-color: #f2f2f2;
}

.telenor .dcp-info-bar {
	max-width: 1006px;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
}

.telenor .dcp-info-bar .v-horizontal.dcp-info-bar-content {
	white-space: normal;
}

.telenor .dcp-info-bar .v-slot-dcp-info-bar-label .v-caption, .telenor .dcp-info-bar .v-slot-dcp-info-bar-label .v-label {
	display: inline-block;
}

.telenor .dcp-info-bar .v-slot-dcp-info-bar-label .v-label {
	font-size: 14px;
	line-height: 30px;
	height: 30px;
	padding: 0 0.5em;
}

.telenor .dcp-info-bar .v-icon {
	font-size: 1.4em;
	line-height: 1.531em;
	color: #ffffff;
	background-color: #0091d2;
	padding: 0 0.3em;
}

.telenor .dcp-info-bar .v-label, .telenor .dcp-info-bar .dcp-button {
	height: 2.143em;
	color: rgba(0, 0, 0, 0.87);
}

.telenor .dcp-info-bar .v-label {
	padding-right: 0.7em;
	line-height: 2em;
}

.telenor .dcp-info-bar .v-label .v-icon {
	margin-right: 0.6em;
	vertical-align: middle;
}

.telenor .dcp-info-bar .dcp-button {
	text-transform: none;
	padding: 0;
	line-height: 2.143em;
}

.telenor .dcp-info-bar .dcp-button:not(.v-disabled) {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .dcp-info-bar .dcp-button:not(.v-disabled):hover, .telenor .dcp-info-bar .dcp-button:not(.v-disabled):focus {
	background-color: rgba(0, 0, 0, 0.12);
}

.telenor .dcp-info-bar .dcp-button:not(.v-disabled):active {
	background-color: rgba(255, 255, 255, 0.5);
}

.telenor .dcp-info-bar .dcp-button:not(.v-disabled), .telenor .dcp-info-bar .dcp-button:focus:not(.v-disabled), .telenor .dcp-info-bar .dcp-button:active:not(.v-disabled), .telenor .dcp-info-bar .dcp-button:hover:not(.v-disabled) {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .dcp-info-bar .dcp-button .v-icon, .telenor .dcp-info-bar .dcp-button .v-button-caption {
	vertical-align: top;
}

.telenor .dcp-info-bar .dcp-button .v-icon {
	background-color: #00577e;
	color: #ffffff;
}

.telenor .dcp-info-bar .dcp-button .v-button-caption {
	line-height: 2.143em;
	padding: 0 0.7em;
	margin: 0;
}

.telenor .dcp-info-bar .v-slot-dcp-icon-color-info.v-icon, .telenor .dcp-info-bar .v-slot-dcp-icon-color-info .v-icon, .telenor .dcp-info-bar .dcp-icon-color-info.v-icon, .telenor .dcp-info-bar .dcp-icon-color-info .v-icon {
	background-color: #0063bb;
}

.telenor .dcp-info-bar .v-slot-dcp-icon-color-success.v-icon, .telenor .dcp-info-bar .v-slot-dcp-icon-color-success .v-icon, .telenor .dcp-info-bar .dcp-icon-color-success.v-icon, .telenor .dcp-info-bar .dcp-icon-color-success .v-icon {
	background-color: #86ba17;
}

.telenor .dcp-info-bar .v-slot-dcp-icon-color-warning.v-icon, .telenor .dcp-info-bar .v-slot-dcp-icon-color-warning .v-icon, .telenor .dcp-info-bar .dcp-icon-color-warning.v-icon, .telenor .dcp-info-bar .dcp-icon-color-warning .v-icon {
	background-color: #fabb00;
}

.telenor .dcp-info-bar .v-slot-dcp-icon-color-error.v-icon, .telenor .dcp-info-bar .v-slot-dcp-icon-color-error .v-icon, .telenor .dcp-info-bar .dcp-icon-color-error.v-icon, .telenor .dcp-info-bar .dcp-icon-color-error .v-icon {
	background-color: #e32119;
}

.telenor .dcp-info-bar .v-slot-dcp-icon-color-neutral.v-icon, .telenor .dcp-info-bar .v-slot-dcp-icon-color-neutral .v-icon, .telenor .dcp-info-bar .dcp-icon-color-neutral.v-icon, .telenor .dcp-info-bar .dcp-icon-color-neutral .v-icon {
	background-color: #b1b3b4;
}

.telenor .dcp-selection-status-bar {
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	background-color: #f2f2f2;
}

.telenor .dcp-pagination-steps {
	padding: 0 10px;
}

.telenor .dcp-pagination-steps .v-slot-dcp-pagination-step {
	vertical-align: middle;
	padding: 0 2px;
}

.telenor .dcp-pagination-steps .v-slot-dcp-pagination-step .v-label {
	display: none;
}

.telenor .dcp-pagination-steps .v-slot-dcp-pagination-step .v-caption {
	line-height: 30px;
}

.telenor .dcp-pagination-steps .v-slot-dcp-pagination-step .v-icon {
	color: #dcdcdc;
}

.telenor .dcp-pagination-steps .v-slot-dcp-pagination-step.v-slot-active-step .v-icon {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .dcp-notification {
	position: relative;
	overflow: visible;
	background-color: #ffffff;
	color: rgba(0, 0, 0, 0.87);
	border: solid 2px #b1b3b4;
	border-left-width: 10px;
	padding: 15px;
	padding-left: 4.5em;
	min-height: 4.5em;
}

.telenor .dcp-notification.plain {
	padding-left: 0;
	border: 0;
}

.telenor .dcp-notification.plain:before {
	display: none;
}

.telenor .dcp-notification.plain .dcp-notification-caption {
	top: 0;
}

.telenor .dcp-notification.help {
	border: 0;
}

.telenor .dcp-notification.help:before {
	background-color: transparent;
}

.telenor .dcp-notification.help .dcp-notification-symbol {
	left: 0px;
}

.telenor .dcp-notification.help .dcp-notification-symbol .v-icon {
	color: #000000;
}

.telenor .dcp-notification:before {
	content: "";
	background-color: #b1b3b4;
}

.telenor .dcp-notification:before, .telenor .dcp-notification .dcp-notification-symbol {
	height: 102%;
	width: 1.8em;
	padding: 0 5px;
	position: absolute;
	left: -10px;
	top: -1px;
	box-sizing: border-box;
	text-align: center;
	line-height: 1.5em;
	font-size: 2.25rem;
}

.telenor .dcp-notification .dcp-notification-symbol .v-icon {
	color: #ffffff;
}

.telenor .dcp-notification.info {
	border-color: #0063bb;
}

.telenor .dcp-notification.info:before {
	background-color: #0063bb;
}

.telenor .dcp-notification.info.dcp-notification-transparent .dcp-notification-symbol .v-icon {
	color: #0063bb;
}

.telenor .dcp-notification.success {
	border-color: #86ba17;
}

.telenor .dcp-notification.success:before {
	background-color: #86ba17;
}

.telenor .dcp-notification.success.dcp-notification-transparent .dcp-notification-symbol .v-icon {
	color: #86ba17;
}

.telenor .dcp-notification.warning {
	border-color: #fabb00;
}

.telenor .dcp-notification.warning:before {
	background-color: #fabb00;
}

.telenor .dcp-notification.warning.dcp-notification-transparent .dcp-notification-symbol .v-icon {
	color: #fabb00;
}

.telenor .dcp-notification.error {
	border-color: #e32119;
}

.telenor .dcp-notification.error:before {
	background-color: #e32119;
}

.telenor .dcp-notification.error.dcp-notification-transparent .dcp-notification-symbol .v-icon {
	color: #e32119;
}

.telenor .dcp-notification.unknown {
	border-color: #b1b3b4;
}

.telenor .dcp-notification.unknown:before {
	background-color: #b1b3b4;
}

.telenor .dcp-notification.unknown.dcp-notification-transparent .dcp-notification-symbol .v-icon {
	color: #b1b3b4;
}

.telenor .dcp-notification.help {
	background-color: #f2f2f2;
}

.telenor .dcp-notification .dcp-notification-caption {
	font-weight: bold;
	position: relative;
	top: -10px;
	font-size: 1.1em;
	padding-right: 20px;
	z-index: 1;
}

.telenor .dcp-notification.dcp-notification-slim {
	min-height: 0;
	padding: 5px 15px 5px 3em;
}

.telenor .dcp-notification.dcp-notification-slim:before, .telenor .dcp-notification.dcp-notification-slim .dcp-notification-symbol {
	font-size: 1.313rem;
	width: 1.9em;
	height: 104%;
}

.telenor .dcp-notification.dcp-notification-transparent {
	border-color: transparent;
	background-color: transparent;
}

.telenor .dcp-notification.dcp-notification-transparent:before {
	background-color: transparent;
}

.telenor .dcp-info-label-field {
	display: flex;
}

.telenor .dcp-info-label-field .v-caption-dcp-info-label-content {
	height: 42px;
	line-height: 42px;
}

.telenor .dcp-info-label-field .v-caption-dcp-info-label-content .v-icon {
	font-size: 42px;
	color: #0091d2;
	margin-right: 10px;
}

.telenor .dcp-info-label-field .dcp-info-label-content {
	display: flex;
	flex-flow: column;
	margin: 0 !important;
}

.telenor .dcp-info-label-field .dcp-info-label-content .value-style {
	color: #0091d2;
	font-size: 20px;
}

.telenor .dcp-info-label-field .dcp-info-label-content.bottom-caption {
	flex-flow: column-reverse;
}

.telenor .dcp-info-label-field .v-label-dcp-label {
	padding: 0 !important;
}

.telenor .dcp-info-row {
	background-color: #f2f2f2;
	border-top: 1px solid #dcdcdc;
	padding: 5px 20px;
}

.telenor .v-slot-search-section {
	padding-bottom: 20px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .dcp-responsive-mini-panels-layout {
	max-width: 2330px;
	margin: 0 auto;
	display: block;
}

.telenor .dcp-responsive-mini-panels-layout:after {
	content: "";
	display: block;
	clear: both;
}

.telenor .dcp-responsive-mini-panels-layout  > .dcp-panel {
	float: left;
	width: 450px !important;
	margin: 0 0 20px;
	position: relative;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="0-1389px"] {
	padding-left: 20px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="0-1389px"]  > .dcp-panel {
	width: 50% !important;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="0-1389px"]  > .dcp-panel:nth-child(2n+1) {
	clear: both;
	left: -20px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1390px-1859px"] {
	padding-left: 40px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1390px-1859px"]  > .dcp-panel {
	width: 33.33334% !important;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1390px-1859px"]  > .dcp-panel:nth-child(3n+1) {
	clear: both;
	left: -40px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1390px-1859px"]  > .dcp-panel:nth-child(3n+2) {
	left: -20px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1860px-"] {
	padding-left: 60px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1860px-"]  > .dcp-panel {
	width: 25% !important;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1860px-"]  > .dcp-panel:nth-child(4n+1) {
	clear: both;
	left: -60px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1860px-"]  > .dcp-panel:nth-child(4n+2) {
	left: -40px;
}

.telenor .dcp-responsive-mini-panels-layout[width-range~="1860px-"]  > .dcp-panel:nth-child(4n+3) {
	left: -20px;
}

.telenor .static-grid .header {
	color: rgba(0, 0, 0, 0.54);
	font-weight: bolder;
}

.telenor .static-grid .cell {
	display: block;
	min-height: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	padding: 5px 11px 5px 11px;
}

.telenor .equal-columns-layout {
	display: flex;
	justify-content: space-between;
}

.telenor .equal-columns-layout  > * {
	flex: 1 1 0;
}

.telenor .inventory-component {
	display: flex;
	flex-direction: column;
}

.telenor .inventory-component .inventory-header {
	font-size: 22px;
	font-weight: normal;
	padding: 12px 20px;
	border-bottom: 1px solid #f2f2f2;
	color: #0091d2;
}

.telenor .inventory-component.full-screen .inventory-header {
	display: none;
}

.telenor .inventory-component.full-screen .inventory-search-bar {
	display: none;
}

.telenor .inventory-component.full-screen .inventory-component-content {
	margin: 0;
}

.telenor .inventory-component.full-screen .inventory-component-content .inventory-summary-panel {
	display: none;
}

.telenor .inventory-component .inventory-search-bar {
	display: flex;
	padding: 20px;
	align-items: center;
}

.telenor .inventory-component .inventory-search-bar .v-caption .v-icon {
	font-size: 20px;
	line-height: 20px;
}

.telenor .inventory-component .inventory-search-bar input {
	flex-grow: 1;
	font-size: 14px;
	line-height: 14px;
	margin: 0 10px;
}

.telenor .inventory-component .inventory-search-bar .dcp-info-bullet-button {
	margin: 0;
}

.telenor .inventory-component .dcp-filters {
	padding: 25px 0 15px;
}

.telenor .inventory-component.collapsed .inventory-component-content {
	flex-grow: 0;
}

.telenor .inventory-component .inventory-component-content {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	margin: 0;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.telenor .inventory-component .inventory-component-content .inventory-summary-panel {
	display: flex;
	flex-direction: column;
}

.telenor .inventory-component .inventory-component-content .inventory-summary-panel .summary-row {
	display: flex;
	padding: 20px;
	align-items: center;
}

.telenor .inventory-component .inventory-component-content .inventory-summary-panel .summary-row .v-customcomponent {
	flex-grow: 1;
	width: 200px;
}

.telenor .inventory-component .inventory-component-content .inventory-summary-panel .summary-row.justify .v-customcomponent:first-child .dcp-info-label-field {
	justify-content: flex-start;
}

.telenor .inventory-component .inventory-component-content .inventory-summary-panel .summary-row.justify .v-customcomponent:last-child .dcp-info-label-field {
	justify-content: flex-end;
}

.telenor .inventory-component .inventory-component-content .inventory-summary-panel .summary-row.justify .v-customcomponent .dcp-info-label-field {
	justify-content: center;
}

.telenor .inventory-component .inventory-component-content .inventory-summary-panel .summary-row:not(:last-child) {
	border-bottom: 1px solid #dcdcdc;
}

.telenor .inventory-component .inventory-component-content .dcp-grid-frame-ux {
	flex-grow: 1;
	height: 100%;
	box-shadow: none;
}

.telenor .dashboard-view .dashboard-counter-column-header {
	font-weight: bolder;
	color: rgba(0, 0, 0, 0.54);
}

.telenor .dashboard-view .dashboard-status-counters-row .v-caption {
	display: inline-block;
	line-height: normal;
	margin-right: 5px;
}

.telenor .dashboard-view .dashboard-status-counters-total-row {
	border-top: 1px solid $border-color;
}

.telenor .dashboard-view .dashboard-status-counters-total-row .v-label {
	line-height: 2.5em;
}

.telenor .v-Notification-command-success .v-Notification-caption .frame-link {
	text-decoration: none;
	padding: 0 0.2em;
	cursor: pointer;
}

.telenor .v-Notification-command-success .v-Notification-caption .frame-link:hover {
	background: rgba(203, 203, 203, 0.15);
}

.telenor .v-Notification, .telenor .v-tooltip {
	-webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2);
	background: #ffffff;
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-Notification h1.v-Notification-caption, .telenor .v-Notification .v-errormessage, .telenor .v-tooltip h1.v-Notification-caption, .telenor .v-tooltip .v-errormessage {
	font-size: 1em;
	line-height: 10px;
}

.telenor .v-Notification h1, .telenor .v-Notification .v-errormessage, .telenor .v-tooltip h1, .telenor .v-tooltip .v-errormessage {
	background: transparent;
}

.telenor .v-Notification {
	padding: 20px;
}

.telenor .toast {
	background-color: #ffffff;
	color: rgba(0, 0, 0, 0.87);
	border: solid 4px #b1b3b4;
	border-left-width: 11px;
	padding-left: 4.5em;
	min-height: 4.5em;
	border-radius: 0px;
	width: 400px;
	overflow: visible;
}

.telenor .toast:before {
	content: "";
	font-family: "Material Icons";
	background-color: #b1b3b4;
	color: #ffffff;
	height: 104%;
	width: 1.8em;
	padding: 0 5px;
	position: absolute;
	left: -10px;
	top: -2px;
	box-sizing: border-box;
	text-align: center;
	line-height: 1.5em;
	font-size: 2.5em;
}

.telenor .toast.toast-info {
	border-color: #0063bb;
}

.telenor .toast.toast-info:before {
	background-color: #0063bb;
	content: "\E88E";
}

.telenor .toast.toast-success {
	border-color: #86ba17;
}

.telenor .toast.toast-success:before {
	background-color: #86ba17;
	content: "\E86C";
}

.telenor .toast.toast-warning {
	border-color: #fabb00;
}

.telenor .toast.toast-warning:before {
	background-color: #fabb00;
	content: "\E002";
}

.telenor .toast.toast-error {
	border-color: #e32119;
}

.telenor .toast.toast-error:before {
	background-color: #e32119;
	content: "\E000";
}

.telenor .toast .toast-close-button {
	color: rgba(0, 0, 0, 0.87);
	position: absolute;
	top: 0;
	right: 0;
	height: 1.5em;
	width: 1.5em;
	line-height: 1.5em;
	text-align: center;
	z-index: 2;
}

.telenor .toast .toast-title {
	position: relative;
	top: -10px;
	font-size: 1.1em;
	padding-right: 20px;
	z-index: 1;
	font-family: "Open Sans", sans-serif;
}

.telenor .toast .toast-message {
	line-height: 1.2em;
	font-family: "Open Sans", sans-serif;
}

.telenor .toast .toast-link {
	position: relative;
	padding-right: 2.24em;
	margin-right: 1em;
	cursor: pointer;
}

.telenor .toast .toast-link:hover {
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 0px;
}

.telenor .toast .toast-link:after {
	content: "\e89E";
	font-family: "Material Icons";
	font-size: 1.6em;
	width: 1em;
	height: 1em;
	line-height: 1em;
	display: block;
	position: absolute;
	right: 0.2em;
	top: 50%;
	margin: -0.5em 0;
}

.telenor .v-caption {
	color: #202020;
	padding: 0;
	font-weight: bold;
	font-size: 14px;
	line-height: 16.8px;
}

.telenor .v-caption  + .v-label, .telenor .v-caption  + .v-layout > .v-button, .telenor .v-caption  + .v-layout > .v-button > .v-button-wrap, .telenor .v-caption  + .v-layout > .v-button > .v-button-wrap > .v-button-caption {
	font-size: 20px;
	line-height: 24px;
}

.telenor .v-caption  + .v-label.contentTitle, .telenor .v-caption  + .v-layout > .v-button.contentTitle, .telenor .v-caption  + .v-layout > .v-button > .v-button-wrap.contentTitle, .telenor .v-caption  + .v-layout > .v-button > .v-button-wrap > .v-button-caption.contentTitle {
	font-size: 22px;
	line-height: 20px;
	padding-top: 10px;
}

.telenor .v-caption  + .v-layout {
	margin: 5px 0 -5px;
}

.telenor .v-caption  + .v-layout  > .v-button > .v-button-wrap > .v-button-caption {
	line-height: 10px;
	padding-top: 4px;
}

.telenor .v-caption  + .v-label {
	padding-top: 4px;
}

.telenor .v-caption  + .v-label.contentTitle {
	font-size: 22px;
	line-height: 20px;
	padding-top: 10px;
}

.telenor .v-caption  + .v-label.secondary-title {
	padding-top: 15px;
}

.telenor .v-caption  + .v-label.multilined {
	line-height: 24px;
	white-space: initial;
	padding-top: 10px;
}

.telenor .v-caption  + .v-label.dcp-regular-text {
	font-size: 14px;
	line-height: 16.8px;
}

.telenor .v-caption  + .v-grid {
	margin-top: 10px;
}

.telenor .v-caption  + .v-table {
	margin-top: 10px;
}

.telenor h1, .telenor .v-label-h1 {
	font-size: 27px;
	margin: 0.7em 0;
}

.telenor h2, .telenor .v-label-h2 {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
}

.telenor .v-window-header, .telenor .v-panel-caption, .telenor .side-info > .v-slot > .v-widget > .v-caption {
	color: #0091d2;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2em;
	white-space: nowrap;
	margin: 1em 0 0.7em;
	letter-spacing: normal;
	white-space: nowrap;
	margin: 0 -1px;
}

.telenor .v-panel-caption {
	background: transparent;
	padding: 12px 20px;
}

.telenor .side-info > .v-slot > .v-widget > .v-caption {
	background: transparent;
	padding: 20px 0;
}

.telenor .v-window-header, .telenor .side-info > .v-slot > .v-widget > .v-caption {
	line-height: 20px;
}

.telenor h3, .telenor .v-label-h3 {
	font-size: 20px;
	margin: 1em 0 0.7em;
}

.telenor h4, .telenor .v-label-h4 {
	font-size: 16px;
	margin: 1em 0 0.7em;
}

.telenor .v-verticallayout  > .v-slot:first-child h1, .telenor .v-verticallayout  > .v-slot:first-child .v-label-h1, .telenor .v-verticallayout  > div  > .v-slot:first-child h1, .telenor .v-verticallayout  > div  > .v-slot:first-child .v-label-h1 {
	margin-top: 0.7em;
}

.telenor .v-verticallayout  > .v-slot:first-child h2, .telenor .v-verticallayout  > .v-slot:first-child .v-label-h2, .telenor .v-verticallayout  > .v-slot:first-child h3, .telenor .v-verticallayout  > .v-slot:first-child .v-label-h3, .telenor .v-verticallayout  > .v-slot:first-child h4, .telenor .v-verticallayout  > .v-slot:first-child .v-label-h4, .telenor .v-verticallayout  > div  > .v-slot:first-child h2, .telenor .v-verticallayout  > div  > .v-slot:first-child .v-label-h2, .telenor .v-verticallayout  > div  > .v-slot:first-child h3, .telenor .v-verticallayout  > div  > .v-slot:first-child .v-label-h3, .telenor .v-verticallayout  > div  > .v-slot:first-child h4, .telenor .v-verticallayout  > div  > .v-slot:first-child .v-label-h4 {
	margin-top: 1em;
}

.telenor .dcp-group-header {
	margin-top: 12px;
	color: #333333;
	font-size: 20px;
	font-weight: bolder;
}

.telenor .side-info > .v-slot > .v-widget > .v-caption {
	border-bottom: 0;
}

.telenor .v-required-field-indicator {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-slot-with-info .v-has-caption.v-caption-on-top {
	margin-top: 15px;
	margin-bottom: 10px;
}

.telenor .v-slot-with-info .v-has-caption .v-label-with-info {
	padding-top: 0;
}

.telenor .v-slot-with-info .v-caption.v-caption-with-info {
	display: inline-block;
	line-height: normal;
	margin-left: 5px;
	font-size: 21px;
	float: right;
	cursor: help;
}

.telenor .v-slot-with-info .v-caption.v-caption-with-info .v-icon {
	color: #448aff;
}

.telenor .v-caption.v-caption-warning-message {
	display: inline;
	line-height: normal;
	margin-right: 5px;
}

.telenor .v-caption.v-caption-warning-message .v-icon {
	font-size: 24px;
	color: #F5A200;
}

.telenor .v-label.v-label-warning-message {
	display: inline;
	font-weight: normal;
	white-space: normal;
	word-wrap: break-word !important;
}

.telenor .v-slot-generic-validator-label .v-caption {
	font-size: 13px;
	color: #e32119;
	font-weight: normal;
	line-height: 36px;
}

.telenor .column-tooltip::before, .telenor .tooltip.mode-error:before, .telenor .column-tooltip.mode-error:before {
	box-shadow: none !important;
}

.telenor .materiallayout .v-slot > .tooltip, .telenor .column-layout.material > .column-panel-content .column-slot > .column-tooltip {
	font-size: 14px !important;
	line-height: normal;
}

.telenor .column-slot .v-caption + .v-label, .telenor .materiallayout .v-slot .v-caption + .v-label {
	padding-top: 0 !important;
	line-height: 35px;
}

.telenor .goto-box {
	background-color: #f2f2f2;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .goto-box input.v-textfield {
	background-color: #fafafa;
}

.telenor .v-slot-top-toolbar-layout .top-toolbar-layout {
	width: 100%;
}

.telenor .top-toolbar-layout.fixed-top {
	height: 30px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
}

.telenor.dcp-toptoolbar-fixed-layout {
	padding-top: 30px;
	box-sizing: border-box;
}

.telenor.dcp-toptoolbar-fixed-layout .v-slot-top-toolbar-layout.v-slot-fixed-top, .telenor.dcp-toptoolbar-fixed-layout .top-toolbar-layout.fixed-top {
	height: 0;
}

.telenor .top-toolbar {
	width: 100%;
	background-color: #f2f2f2;
	box-shadow: 0 0 0.2em 0 rgba(0, 0, 0, 0.37);
	position: relative;
	z-index: 1;
}

.telenor .top-toolbar-content-container {
	display: block;
	padding: 0 100px;
	position: relative;
	background-color: #ffffff;
	max-height: 0;
	min-height: 0;
	-webkit-transition: max-height 0.3s ease, min-height 0.3s ease, border-bottom-width 0.1s ease 0.2s;
	-moz-transition: max-height 0.3s ease, min-height 0.3s ease, border-bottom-width 0.1s ease 0.2s;
	-o-transition: max-height 0.3s ease, min-height 0.3s ease, border-bottom-width 0.1s ease 0.2s;
	transition: max-height 0.3s ease, min-height 0.3s ease, border-bottom-width 0.1s ease 0.2s;
	overflow: auto;
	border-bottom: solid 0px #00577e;
}

.telenor .top-toolbar-content-container.open {
	min-height: 50px;
	max-height: 70vh;
	box-shadow: 0 0 0.2em 0 rgba(0, 0, 0, 0.37);
	-webkit-transition: max-height 0.3s ease, min-height 0s ease, border-bottom-width 0s ease;
	-moz-transition: max-height 0.3s ease, min-height 0s ease, border-bottom-width 0s ease;
	-o-transition: max-height 0.3s ease, min-height 0s ease, border-bottom-width 0s ease;
	transition: max-height 0.3s ease, min-height 0s ease, border-bottom-width 0s ease;
	border-bottom-width: 5px;
}

.telenor .top-toolbar-layout .top-toolbar-close {
	position: absolute;
	top: 50px;
	right: 2em;
}

.telenor .top-toolbar-content {
	display: block;
	max-width: 1006px;
	margin: 0 auto 20px;
}

.telenor .v-slot-top-toolbar-menu {
	display: block;
	max-width: 1006px;
	margin: 0 auto;
	text-align: right;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu {
	text-align: left;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .v-icon {
	font-size: 1.4em;
	line-height: 1.531em;
	color: #ffffff;
	background-color: #0091d2;
	padding: 0 0.3em;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .v-label, .telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button {
	height: 2.143em;
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .v-label {
	padding-right: 0.7em;
	line-height: 2em;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .v-label .v-icon {
	margin-right: 0.6em;
	vertical-align: middle;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button {
	text-transform: none;
	padding: 0;
	background-color: rgba(0, 0, 0, 0.05);
	line-height: 2.143em;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button .v-icon, .telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button .v-button-caption {
	vertical-align: top;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button .v-icon {
	background-color: #00577e;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button .v-button-caption {
	line-height: 2.143em;
	padding: 0 0.7em;
	margin: 0;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button.top-toolbar-section-open {
	background-color: #ffffff;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button.top-toolbar-section-open:before {
	content: "";
	display: block;
	width: 100%;
	height: 20px;
	position: absolute;
	bottom: -20px;
	left: 0;
	-webkit-box-shadow: 0 8px 3px -5px #fff inset;
	box-shadow: 0 8px 3px -5px #fff inset;
	pointer-events: none;
	z-index: 1;
}

.telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button:hover, .telenor .v-slot-top-toolbar-menu .top-toolbar-menu .dcp-button.top-toolbar-section-open:hover {
	background-color: rgba(0, 0, 0, 0.12);
}

.telenor .megamenu-level1 {
	width: 1006px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: block;
	padding-top: 8.4px;
}

.telenor .megamenu-level1 .megamenu-level1-items .megamenu-item, .telenor .megamenu-level1 .megamenu-level1-personal-items .megamenu-item {
	text-transform: none;
	padding: 8.4px 20px;
	color: #000000;
	height: 34px;
}

.telenor .megamenu-level1 .megamenu-level1-items .megamenu-item.megamenu-item-open, .telenor .megamenu-level1 .megamenu-level1-personal-items .megamenu-item.megamenu-item-open {
	background-color: #e7e7e7;
	z-index: 15;
}

.telenor .megamenu-level1 .megamenu-level1-personal-items {
	float: right;
	position: relative;
}

.telenor .megamenu-level1 .megamenu-level2 {
	padding-top: 8.4px;
	overflow: hidden;
	box-shadow: 0.3em 0.3em 0.3em -0.2em rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 42.0px;
	left: 0;
	z-index: 15;
}

.telenor .megamenu-level2 {
	background-color: #e7e7e7;
	display: table;
}

.telenor .megamenu-level2 .megamenu-level2-tabs, .telenor .megamenu-level2 .megamenu-level2-contents {
	display: table-cell;
}

.telenor .megamenu-level2 .megamenu-level2-tabs {
	width: 25%;
}

.telenor .megamenu-level2 .megamenu-level2-contents {
	width: 75%;
	height: 100%;
	overflow: auto;
	position: relative;
}

.telenor .megamenu-level2-tabs {
	padding: 10px 0 10px 20px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.telenor .megamenu-level2-tabs .megamenu-tab {
	width: 100%;
	text-align: left;
	color: #000;
	text-transform: none;
}

.telenor .megamenu-level2-tabs .megamenu-tab:hover {
	background-color: rgba(0, 0, 0, 0.2);
	color: inherit;
}

.telenor .megamenu-level2-tabs .megamenu-tab.megamenu-tab-selected {
	background-color: #fff;
	color: #0091d2;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .megamenu-level2-tabs .megamenu-tab.indented {
	padding-left: 30px;
}

.telenor .v-widget.megamenu-level2-contents {
	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .v-slot-megamenu-level3 {
	height: 15em;
	width: 100%;
	display: table;
}

.telenor .megamenu-level3 {
	display: table-row;
}

.telenor .megamenu-level3 .megamenu-level3-contents-wrapper, .telenor .megamenu-level3 .megamenu-level3-annex {
	display: table-cell;
	white-space: normal;
}

.telenor .megamenu-level3 .megamenu-level3-annex {
	background-color: #f7f7f7;
	box-shadow: 2px 1px 4px -4px rgba(0, 0, 0, 0.37) inset;
}

.telenor .megamenu-level3 .megamenu-level3-contents-wrapper {
	width: 100%;
}

.telenor .megamenu-level3 .megamenu-level3-contents-wrapper .dcp-scrolling-content-layout {
	min-height: 15em;
	max-height: 45em;
}

.telenor .megamenu-level3.has-annex .megamenu-level3-contents-wrapper {
	width: 66.666%;
}

.telenor .megamenu-level3.has-annex .megamenu-level3-annex {
	width: 33.333%;
}

.telenor .megamenu-level3 .megamenu-link {
	color: rgba(0, 0, 0, 0.87);
	width: 100%;
	text-transform: none;
}

.telenor .megamenu-level3 .megamenu-link:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .megamenu-level3 .megamenu-link .v-button-wrap, .telenor .megamenu-level3 .megamenu-link .v-button-caption {
	display: block;
}

.telenor .megamenu-level3 .megamenu-link .title, .telenor .megamenu-level3 .megamenu-link .description {
	display: block;
	text-align: left;
	white-space: normal;
}

.telenor .megamenu-level3 .megamenu-link .title, .telenor .megamenu-level3 .megamenu-link .title .v-icon {
	color: #00577e;
}

.telenor .megamenu-level3 .megamenu-link .title .v-icon {
	vertical-align: top;
}

.telenor .megamenu-level3 .megamenu-link .description {
	font-size: 0.8em;
}

.telenor .megamenu-level3 .megamenu-link.megamenu-heading {
	padding: 10px;
}

.telenor .megamenu-level3 .megamenu-link.megamenu-heading .title {
	font-size: 22px;
	line-height: 1.2em;
}

.telenor .megamenu-level3 .megamenu-link.megamenu-heading .description {
	font-size: 14px;
	line-height: 1.5em;
}

.telenor .megamenu-level3 .v-label.megamenu-heading {
	color: #0091d2;
	width: 100%;
	margin: 0;
	padding: 10px;
	white-space: normal;
}

.telenor .megamenu-level3-contents {
	background-color: #fff;
	padding: 20px;
	width: 100%;
}

.telenor .megamenu-level3-contents .v-grid {
	box-shadow: none;
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
	min-height: 120px;
}

.telenor .megamenu-level3-contents .v-slot-dcp-grid {
	position: relative;
}

.telenor .megamenu-level3-contents .v-slot-dcp-grid .v-grid {
	border-bottom: none;
}

.telenor .megamenu-level3-contents .v-slot-dcp-grid:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.12);
	position: absolute;
	bottom: 0;
	left: 0;
}

.telenor .megamenu-level3-contents .v-slot:first-child .megamenu-heading:not(.megamenu-link) {
	margin-top: 0;
	padding-top: 0;
}

.telenor .megamenu-level3-contents .v-slot:first-child .megamenu-heading.megamenu-link {
	margin-top: -10px;
}

.telenor .megamenu-level3-annex {
	min-height: 100%;
	padding: 20px;
}

.telenor .megamenu-contact-information {
	padding: 10px;
}

.telenor .megamenu-contact-information .v-spacing {
	height: 10px;
}

.telenor.authentication-portal {
	font-size: 16px;
	height: 100%;
}

.telenor.authentication-portal body {
	background-color: white;
	color: black;
	height: 100%;
	min-height: 720px;
	float: left;
	width: 100%;
	margin: 0;
	position: relative;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
}

.telenor.authentication-portal a {
	color: #00577e;
	text-decoration: none;
}

.telenor.authentication-portal a:hover {
	text-decoration: underline;
}

.telenor.authentication-portal #logo img {
	max-height: 50px;
	max-width: 350px;
	display: block;
}

.telenor.authentication-portal #loading {
	display: none;
}

.telenor.authentication-portal #login-container {
	display: block !important;
	margin-left: auto;
	margin-right: auto;
	width: 960px;
	z-index: 10;
	-webkit-animation: animate-in-fade 1000ms;
	-moz-animation: animate-in-fade 1000ms;
	animation: animate-in-fade 1000ms;
}

.telenor.authentication-portal #login-container:after {
	content: "";
	display: block;
	clear: both;
}

.telenor.authentication-portal #login-container .v-slot-dcp-panel {
	display: block;
	width: 100%;
	max-width: 470px;
	margin: 20px auto;
}

.telenor.authentication-portal #login-container .v-slot-dcp-panel.align-left {
	float: left;
}

.telenor.authentication-portal #login-container .v-slot-dcp-panel.align-right {
	float: right;
}

.telenor.authentication-portal #login-container .splash {
	margin: 20px auto;
	width: 470px;
}

.telenor.authentication-portal #login-container .splash img {
	max-width: 100%;
}

.telenor.authentication-portal #login-container .panel-wrapper {
	width: 100%;
}

.telenor.authentication-portal #login-container .panel-wrapper.slim {
	width: 470px;
}

.telenor.authentication-portal #login-container .splash.align-left, .telenor.authentication-portal #login-container .panel-wrapper.slim.align-left {
	float: left;
}

.telenor.authentication-portal #login-container .splash.align-right, .telenor.authentication-portal #login-container .panel-wrapper.slim.align-right {
	float: right;
}

.telenor.authentication-portal #login-header {
	position: relative;
}

.telenor.authentication-portal #login-header:after {
	content: "";
	display: block;
	clear: both;
}

.telenor.authentication-portal #login-header .brand-bar-wrapper {
	background-color: transparent;
}

.telenor.authentication-portal #login-header .brand-bar-wrapper .brand-bar {
	max-width: 1006px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor.authentication-portal #login-header.has-language-selector .brand-bar {
	padding-right: 240px;
}

.telenor.authentication-portal #login-header .greeting-bar-wrapper .greeting-bar {
	max-width: 1006px;
	margin: 0 auto;
	text-align: center;
}

.telenor.authentication-portal #login-header #logo {
	margin: 10px 40px 10px 0;
}

.telenor.authentication-portal #login-header #logo, .telenor.authentication-portal #login-header #welcome {
	display: inline-block;
	vertical-align: middle;
}

.telenor.authentication-portal #login-header .language-selector {
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -17px;
	width: 200px;
}

.telenor.authentication-portal #login-header .language-selector .arrow {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 33px;
	height: 33px;
	background-color: #ffffff;
	pointer-events: none;
	text-align: center;
	border: solid 1px rgba(0, 0, 0, 0.12);
	border-radius: 0 2px 2px 0;
}

.telenor.authentication-portal #login-header .language-selector .arrow:after {
	content: "\e5c5";
	line-height: 32px;
	opacity: 1;
	color: rgba(0, 0, 0, 0.54);
	vertical-align: middle;
	font-size: 1.5em;
	font-weight: normal;
	font-family: Material Icons;
	pointer-events: none;
	text-align: center;
	margin: 0 auto;
}

.telenor.authentication-portal #login-header .language-selector select {
	width: 100%;
	height: 33px;
	padding: 0 38px 0 5px;
	border: solid 1px rgba(0, 0, 0, 0.12);
	background-color: #ffffff;
	background-image: none;
}

.telenor.authentication-portal #login-header .language-selector select:focus  + .arrow, .telenor.authentication-portal #login-header .language-selector select:hover  + .arrow {
	background-color: #f2f2f2;
}

.telenor.authentication-portal #login-header .language-selector select ::-ms-expand {
	display: none;
}

.telenor.authentication-portal #login-footer {
	clear: both;
	border-top: solid 2px rgba(0, 0, 0, 0.12);
	padding: 20px;
	text-align: center;
}

.telenor.authentication-portal a.dcp-button {
	text-decoration: none;
}

.telenor.authentication-portal .v-icon {
	text-transform: none;
}

.telenor.authentication-portal .notification {
	font-size: 86%;
	margin-bottom: 0.5em;
}

.telenor.authentication-portal .login-input {
	position: relative;
	font-size: 1em;
	margin-bottom: 1.5em;
}

.telenor.authentication-portal .login-input .input-prompt {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	line-height: 2em;
	width: 100%;
	color: #A0A0A0;
}

.telenor.authentication-portal input[type='text'], .telenor.authentication-portal input[type='password'] {
	position: relative;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	font-size: 100%;
	padding: 0;
	background-color: transparent;
	line-height: 2em;
	height: 2em;
	width: 100%;
}

.telenor.authentication-portal input[type='text'].has-content, .telenor.authentication-portal input[type='text']:focus, .telenor.authentication-portal input[type='password'].has-content, .telenor.authentication-portal input[type='password']:focus {
	background-color: white;
}

.telenor.authentication-portal input[type='text']:focus, .telenor.authentication-portal input[type='password']:focus {
	outline: none;
	border-bottom: 1px solid #00577e;
}

.telenor.authentication-portal input[type='submit'] {
	width: 100%;
	height: 3.5em;
	background-color: #00577e;
	color: white;
	border-radius: 2px;
	border: 0;
	text-transform: uppercase;
}

.telenor.authentication-portal #contact-info {
	margin-left: auto;
	margin-right: auto;
	width: 250px;
	text-align: center;
	opacity: 0;
	-webkit-animation: animate-in-fade 1000ms;
	-moz-animation: animate-in-fade 1000ms;
	animation: animate-in-fade 1000ms;
	-webkit-animation-delay: 1000ms;
	animation-delay: 1000ms;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.telenor.authentication-portal #contact-info .feedback {
	padding-top: 1em;
}

.telenor.authentication-portal #contact-info a {
	text-decoration: none;
	color: #00577e;
}

.telenor.authentication-portal #contact-info a:hover {
	text-decoration: underline;
}

.telenor.authentication-portal #contact-info .visit-homepage {
	font-size: 95%;
	margin-bottom: 2em;
}

.telenor.authentication-portal .password-validation-condition {
	padding-left: 30px;
	position: relative;
}

.telenor.authentication-portal .password-validation-condition .rule-compliance-indicator {
	margin-left: -30px;
	width: 30px;
	float: left;
}

.telenor.authentication-portal .dcp-notification.loading .v-icon {
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
}

.telenor.authentication-portal .captcha-box {
	background-color: #f2f2f2;
	padding: 20px;
	margin: 0 -20px;
}

.telenor .announcement-details pre {
	white-space: pre-wrap;
	font-family: inherit;
	margin-top: 0;
	margin-bottom: 0;
}

.telenor .v-slot-simspec .v-accordion .v-accordion-item {
	margin-bottom: 5px;
}

.telenor .v-slot-simspec .v-accordion .v-accordion-item-caption {
	background-color: #f2f2f2;
}

.telenor .v-slot-simspec .v-accordion .v-accordion-item-caption .v-caption {
	border: 0;
	padding-top: 0;
}

.telenor .v-slot-simspec .v-accordion .v-accordion-item-caption .v-icon {
	position: absolute;
	right: 10px;
	font-size: 22pt;
	transform: rotate(180deg);
	transition: transform 0.2s ease;
	padding: 5px 0;
}

.telenor .v-slot-simspec .v-accordion .v-accordion-item-caption .v-captiontext {
	color: #202020;
	font-weight: bold;
	padding: 5px 0;
}

.telenor .v-slot-simspec .v-accordion .v-accordion-item-open .v-accordion-item-caption .v-icon {
	transform: rotate(0deg);
}

.telenor .v-slot-simspec .dcp-accordion-content > .v-slot > .v-accordion {
	border-left: 0;
	border-right: 0;
}

.telenor .v-slot-simspec .v-slot-simspec-add {
	padding: 5px 0;
}

.telenor .simspec-dialog .dcp-notification-transparent {
	background-color: #f2f2f2 !important;
}

.telenor .contract-details .filters {
	margin-top: 10px;
}

.telenor .contract-details .v-grid.loading::after, .telenor .contract-details .v-table.loading::after {
	font-size: 64px;
}

.telenor .euicc-history-filter {
	padding: 10px 0px 0px 10px;
}

.telenor .euicc-history-filter .v-button.filter-remove {
	margin-left: auto;
	margin-right: auto;
}

.telenor .euicc-localization-labels .v-spacing {
	width: 40px;
}

.telenor .euicc-trigger-form .v-caption-mcc-input .v-required-field-indicator, .telenor .euicc-trigger-form .v-caption-mnc-input .v-required-field-indicator {
	display: none;
}

.telenor .incident-search-area {
	background-color: rgba(0, 0, 0, 0.12);
	background-image: -webkit-linear-gradient(-270deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%);
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%);
	background-color: transparent;
	background-size: 1px 100%;
	background-position: center top;
	background-repeat: no-repeat;
}

.telenor .dcp-priority-box, .telenor .v-widget .dcp-priority-box {
	width: 30px;
	height: 30px;
}

.telenor .dcp-priority-checkbox {
	height: 30px;
	line-height: 30px;
}

.telenor .dcp-priority-checkbox .dcp-priority-label {
	line-height: 30px;
}

.telenor .dcp-priority-checkbox .dcp-priority-box {
	position: relative;
}

.telenor .dcp-priority-checkbox .dcp-priority-box:before {
	content: "";
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -8px;
	font-size: 11px;
	text-align: center;
	color: #191919;
	font-weight: 500;
	border: 1px solid #c5c5c5;
	border-bottom-color: #bcbcbc;
	background-color: #fafafa;
	background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
	background-image: linear, to bottom, #fafafa 2%, #efefef 98%;
	-webkit-box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 0;
	border-radius: 50%;
}

.telenor .dcp-priority-checkbox .dcp-priority-box:after {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	font-size: 11px;
	text-align: center;
	border-radius: 50%;
	content: "";
	width: 6px;
	height: 6px;
	top: 50%;
	left: 50%;
	margin: -3px;
	background: transparent;
}

.telenor .dcp-priority-checkbox:hover {
	cursor: pointer;
	background-color: #e0e0e0;
}

.telenor .dcp-priority-checkbox.selected {
	background-color: rgba(153, 153, 153, 0.3);
}

.telenor .dcp-priority-checkbox.selected .dcp-priority-box:after {
	color: transparent;
	-webkit-transition: color 100ms;
	-moz-transition: color 100ms;
	-o-transition: color 100ms;
	transition: color 100ms;
	background: #00577e;
}

.telenor #priorityMatrixPanel .dcp-priority-matrix {
	border-top: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor #priorityMatrixPanel .category-heading {
	padding: 10px 20px;
	color: #0091d2;
}

.telenor #priorityMatrixPanel .category-heading.for-row-headers {
	border-right: solid 1px rgba(0, 0, 0, 0.12);
	height: 100%;
}

.telenor #priorityMatrixPanel .category-item {
	padding: 10px 20px;
}

.telenor #priorityMatrixPanel .category-item.col-header {
	background-color: #f2f2f2;
	border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor #priorityMatrixPanel .category-item.row-header {
	border-right: solid 1px rgba(0, 0, 0, 0.12);
	height: 100%;
}

.telenor #priorityMatrixPanel .priority {
	padding: 10px 20px;
}

.telenor #priorityMatrixPanel .priority.critical .dcp-priority-box {
	background-color: #e84e46;
}

.telenor #priorityMatrixPanel .priority.high .dcp-priority-box {
	background-color: #f8a24b;
}

.telenor #priorityMatrixPanel .priority.medium .dcp-priority-box {
	background-color: #fac833;
}

.telenor #priorityMatrixPanel .priority.low .dcp-priority-box {
	background-color: #33527e;
}

.telenor #forwardRelatedToLabel.is-related-to, .telenor #relatedToLabel.is-related-to {
	color: #00577e;
}

.telenor #forwardRelatedToLabel.is-related-to:hover, .telenor #relatedToLabel.is-related-to:hover {
	background: #F2F2F2;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer !important;
}

.telenor .network-resources .network-resource-grid-1 .v-grid-body .v-grid-row {
	height: 40px;
}

.telenor .network-resources .network-resource-grid-1 .v-grid-body .v-grid-row .v-grid-cell {
	height: 40px !important;
	padding-top: 0px;
	line-height: 40px;
}

.telenor .network-resources .network-resource-grid-2 .v-grid-body .v-grid-row {
	height: 49px;
}

.telenor .network-resources .network-resource-grid-2 .v-grid-body .v-grid-row .v-grid-cell {
	height: 49px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-3 .v-grid-body .v-grid-row {
	height: 72px;
}

.telenor .network-resources .network-resource-grid-3 .v-grid-body .v-grid-row .v-grid-cell {
	height: 72px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-4 .v-grid-body .v-grid-row {
	height: 95px;
}

.telenor .network-resources .network-resource-grid-4 .v-grid-body .v-grid-row .v-grid-cell {
	height: 95px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-5 .v-grid-body .v-grid-row {
	height: 118px;
}

.telenor .network-resources .network-resource-grid-5 .v-grid-body .v-grid-row .v-grid-cell {
	height: 118px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-6 .v-grid-body .v-grid-row {
	height: 141px;
}

.telenor .network-resources .network-resource-grid-6 .v-grid-body .v-grid-row .v-grid-cell {
	height: 141px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-7 .v-grid-body .v-grid-row {
	height: 164px;
}

.telenor .network-resources .network-resource-grid-7 .v-grid-body .v-grid-row .v-grid-cell {
	height: 164px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-8 .v-grid-body .v-grid-row {
	height: 187px;
}

.telenor .network-resources .network-resource-grid-8 .v-grid-body .v-grid-row .v-grid-cell {
	height: 187px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-9 .v-grid-body .v-grid-row {
	height: 210px;
}

.telenor .network-resources .network-resource-grid-9 .v-grid-body .v-grid-row .v-grid-cell {
	height: 210px !important;
	line-height: 20px;
}

.telenor .network-resources .network-resource-grid-10 .v-grid-body .v-grid-row {
	height: 233px;
}

.telenor .network-resources .network-resource-grid-10 .v-grid-body .v-grid-row .v-grid-cell {
	height: 233px !important;
	line-height: 20px;
}

.telenor .enterprise-level-offer-panel .dcp-panel {
	clip-path: inset(-5px 0px -5px 0px);
}

.telenor .online-help-view .v-icon {
	font-size: 2em;
	color: #448aff;
}

.telenor .online-help-view .v-caption-onlinehelp {
	padding-top: 0.8em !important;
}

.telenor .online-help-view .v-horizontallayout {
	text-align: right;
}

.telenor .order-approval-view {
	color: #030303;
}

.telenor .order-approval-view .v-label-approval-h2 {
	padding: 36px 17px 1px;
	font-size: 36px;
	font-weight: 100;
	margin: 0 auto !important;
	color: white;
	background-color: #607d8b;
	box-sizing: border-box;
	height: 85px;
	line-height: 20px;
	white-space: nowrap;
}

.telenor .order-approval-view .v-caption {
	margin-top: 0;
	color: #333;
}

.telenor .order-approval-view .list-header {
	padding: 0.5em;
	background-color: #fafafa;
}

.telenor .order-approval-view .empty-list .v-label-h2 {
	color: #00577e;
}

.telenor .order-approval-view .empty-list .v-icon {
	padding: 0 0.2em 0 0.2em;
	font-size: 13em;
}

.telenor .order-approval-view .empty-list .jobs-link {
	padding: 0 0.5em 0.75em 0;
	color: #00577e;
}

.telenor .order-approval-view .empty-list .jobs-link:focus:after {
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .order-approval-view .list .v-captiontext {
	margin-top: 0;
	font-weight: bolder;
}

.telenor .order-approval-view .list .v-caption-status .v-icon {
	position: absolute;
	top: 50%;
	right: 0.5em;
	margin-top: -0.5em;
	font-size: 1.5em;
	color: #fafafa;
}

.telenor .order-approval-view .list .order-item {
	margin-bottom: 5px;
	border-top: 3px solid #DFDFDF;
}

.telenor .order-approval-view .list .order-item .v-label {
	font-size: 18px;
	font-weight: normal;
	line-height: 1em;
}

.telenor .order-approval-view .list .order-item .rows, .telenor .order-approval-view .list .order-item .actions {
	padding: 12px;
}

.telenor .order-approval-view .list .order-item .v-has-caption {
	padding: 0.5em;
}

.telenor .order-approval-view .list .order-item .v-caption {
	line-height: normal;
}

.telenor .order-approval-view .list .order-item .v-label-job-id-caption {
	display: none;
}

.telenor .order-approval-view .list .order-item .v-slot-job-id-caption .v-widget {
	padding: 0;
}

.telenor .order-approval-view .list .order-item .v-slot.v-slot-link.v-slot-job-id {
	padding-top: 4px;
}

.telenor .order-approval-view .list .order-item .job-id {
	font-weight: normal;
	font-size: 18px;
	padding: 0;
	line-height: 1em;
	color: #00577e;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .order-approval-view .list .order-item .job-id:focus:after {
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .order-approval-view .list .order-item .job-id:before {
	height: 0;
}

.telenor .order-approval-view .list .order-item .actions > div > .v-spacing {
	height: 5px;
}

.telenor .order-approval-view .list .order-item .actions .approved, .telenor .order-approval-view .list .order-item .actions .rejected {
	text-transform: uppercase;
}

.telenor .order-approval-view .list .order-item .actions .v-caption-on-top {
	padding-bottom: 0;
}

.telenor .order-approval-view .list .order-item .v-margin-top, .telenor .order-approval-view .list .order-item .v-margin-right, .telenor .order-approval-view .list .order-item .v-margin-bottom, .telenor .order-approval-view .list .order-item .v-margin-left {
	padding: 5px;
}

.telenor .order-approval-view .list .order-item .v-slot-approval-loading {
	margin: auto auto;
	height: 50px !important;
	width: 50px !important;
	box-sizing: border-box;
	border: 2px solid rgba(153, 153, 153, 0);
	border-top-color: rgba(153, 153, 153, 0.3);
	border-right-color: rgba(153, 153, 153, 0.3);
	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;
}

.telenor .order-approval-view .list .order-item .actions .v-button.close-order-approval-item {
	height: 24px;
	width: 24px;
	padding: 0;
	color: black;
}

.telenor .order-approval-view .list .order-item .actions.order-item-approval-info .approval-caption {
	padding-left: 5px;
	font-size: 1.5em;
	font-weight: bold;
}

.telenor .order-approval-view .list .order-item .actions.order-item-approval-info .status-changed-by {
	word-wrap: break-word;
}

.telenor .order-approval-view .list .order-item .dcp-icon {
	font-size: 30px;
}

.telenor .order-approval-view .list .order-item .job-details-link {
	font-size: 18px;
	height: auto;
	text-align: left;
	white-space: normal;
}

.telenor .order-approval-view .list .order-item .job-details-link .v-button-caption {
	line-height: 15px;
}

.telenor .order-approval-view .list .order-item .job-details-link.error {
	font-size: 14px;
	padding-top: 0.5em;
}

.telenor .sim-order-complete {
	padding: 0 12px;
}

.telenor .sim-order-complete .v-icon {
	padding: 0 0.2em 0 0.2em;
	font-size: 13em;
}

.telenor .sim-order-complete .job-id {
	padding: 0 0.5em 0.75em 0.5em;
	color: #00577e;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .sim-order-complete .job-id:focus:after {
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .critical-error .v-label-h2 {
	padding: 0px;
	color: #E22118;
	margin-left: 0px;
}

.telenor .critical-error .v-icon {
	padding: 0 0.2em 0 0.2em;
	font-size: 13em;
	color: #E22118;
}

.telenor .critical-error .details-link {
	padding: 0 0.5em 0.75em 0;
	color: #00577e;
}

.telenor .critical-error .details-link:focus:after {
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.telenor .foo {
	background-color: red;
}

.telenor .textFieldAndLabelCell .v-textfield {
	margin-right: 5px;
}

.telenor .labelAndTextFieldCell .v-textfield {
	margin-left: 5px;
}

.telenor .textFieldAndComboBoxCell .v-textfield {
	margin-right: 5px;
}

.telenor .v-slot.v-slot-pricing_pageHeaderVerticalLayout {
	background-color: #3b79ff;
	margin-bottom: 30px;
}

.telenor .v-vertical.pricing_pageHeaderVerticalLayout .pricing_pageBreadcrumbLabel {
	color: #ffffff;
	font-size: 12px;
	height: 40px;
	line-height: 40px;
}

.telenor .v-vertical.pricing_pageHeaderVerticalLayout .pricing_pageTitleLabel {
	color: #ffffff;
	font-size: 26px;
	height: 50px;
	line-height: 50px;
}

.telenor .footer_notes {
	font-size: 12px;
}

.telenor #managePricePlansViewVerticalLayout .v-textfield, .telenor #managePricePlansViewVerticalLayout .v-filterselect > .v-filterselect-input {
	font-size: 12px;
	line-height: normal;
	height: 18px;
}

.telenor #managePricePlansViewVerticalLayout #pricingView_pricePlansTable .v-table-table {
	font-size: 12px;
	line-height: normal;
}

.telenor #managePricePlansViewVerticalLayout .v-slot-pricePlanIconStatusLabel .v-icon {
	font-size: 23px;
	line-height: 1;
	color: #778899;
}

.telenor #managePricePlansViewVerticalLayout .v-slot-pricePlanIconStatusLabel.v-slot-notLocked .v-icon {
	visibility: hidden;
}

.telenor #changePricePlanStatusModalWindow .v-radiobutton > label .v-icon {
	float: right;
}

.telenor #editPriceProfileModalWindow #editPriceProfileModalWindow .v-textfield, .telenor #editPriceProfileModalWindow #editPriceProfileModalWindow .v-filterselect > .v-filterselect-input {
	font-size: 12px;
	line-height: normal;
	height: 18px;
}

.telenor #editPriceProfileModalWindow #editPriceProfileModalWindow #editPriceProfileModalWindow_priceProfileTable .v-table-table {
	font-size: 12px;
	line-height: normal;
}

.telenor #manageZoneDefinitionsViewVerticalLayout #pricingView_progressBar {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px !important;
	height: 24px !important;
	margin-left: -12px;
	margin-top: -12px;
	z-index: 1000;
}

.telenor #manageZoneDefinitionsViewVerticalLayout #pricingView_bearerServicesWrapperHorizontalLayout {
	position: relative;
	height: 0;
	width: 100%;
}

.telenor #manageZoneDefinitionsViewVerticalLayout #pricingView_bearerServicesVerticalLayout {
	background-color: #ffffff;
	border: 1px solid #c5c5c5;
	max-width: 500px;
	position: absolute;
	right: 19px;
	top: 7px;
	z-index: 999;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor #manageZoneDefinitionsViewVerticalLayout #pricingView_smsBearerServicesOptionGroup {
	margin-top: 5px;
	margin-left: 30px;
}

.telenor #manageZoneDefinitionsViewVerticalLayout .v-textfield, .telenor #manageZoneDefinitionsViewVerticalLayout .v-filterselect > .v-filterselect-input {
	font-size: 12px;
	line-height: normal;
	height: 18px;
}

.telenor #manageZoneDefinitionsViewVerticalLayout #pricingView_zoneDefinitionsTreeTableWrapperVerticalLayout {
	position: relative;
}

.telenor #manageZoneDefinitionsViewVerticalLayout #pricingView_selectAllCountriesAndOperatorsCheckBox {
	position: absolute;
	top: 17px;
	left: 28px;
	z-index: 999;
}

.telenor #manageZoneDefinitionsViewVerticalLayout #pricingView_zoneDefinitionsTreeTable .v-table-table {
	font-size: 12px;
	line-height: normal;
}

.telenor #editZoneDefinitionsModalWindow .v-textfield, .telenor #editZoneDefinitionsModalWindow .v-filterselect > .v-filterselect-input {
	font-size: 12px;
	line-height: normal;
	height: 18px;
}

.telenor #editZoneDefinitionsModalWindow #pricingView_selectedZoneDefinitionsTreeTable .v-table-table {
	font-size: 12px;
	line-height: normal;
}

.telenor .statistics-grid {
	font-size: 11px;
}

.telenor .statistics-grid .heading {
	font-weight: bold;
}

.telenor .statistics-grid .delimiter-right.v-label:after {
	content: " |";
}

.telenor #createPricePlanModalWindow #createPricePlanModalView_selectAllComponents {
	position: absolute;
	top: 55px;
	left: 32px;
	z-index: 999;
}

.telenor #createPricePlanModalWindow #createPricePlanModalView_copyInheritAllComponents {
	position: absolute;
	top: 100px;
	left: 353px;
	z-index: 999;
}

.telenor .v-grid-editor-save {
	color: #00a9da;
}

.telenor .v-grid-editor-cancel {
	color: #00a9da;
}

.telenor .v-grid-column-header-content {
	vertical-align: middle;
}

.telenor #createPricePlanModalWindow .v-table-table {
	font-size: 12px;
	line-height: normal;
}

.telenor #createPricePlanModalWindow #createPricePlanModalView_copyInheritAllComponents .v-select-option {
	display: inline-block;
	padding-right: 50px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout .v-textfield, .telenor #priceProfileDefinitionsViewVerticalLayout .v-filterselect > .v-filterselect-input {
	font-size: 12px;
	line-height: normal;
	height: 18px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #oneTimeFeeVerticalLayout #oneTimeFeeVerticalLayout_priceCategoriesTable, .telenor #priceProfileDefinitionsViewVerticalLayout #oneTimeFeeVerticalLayout #oneTimeFeeVerticalLayout_miscellaneousTable {
	font-size: 12px;
	line-height: normal;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #oneTimeFeeVerticalLayout #oneTimeFeeVerticalLayout_priceCategoriesTable .v-caption-hideRequiredFieldIndicator, .telenor #priceProfileDefinitionsViewVerticalLayout #oneTimeFeeVerticalLayout #oneTimeFeeVerticalLayout_miscellaneousTable .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #monthlyFeeVerticalLayout #prorationComboBox {
	margin-top: 10px;
	margin-bottom: 10px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #monthlyFeeVerticalLayout .v-slot-subscriptionTable .subscriptionTable {
	font-size: 12px;
	line-height: normal;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #monthlyFeeVerticalLayout .v-slot-subscriptionTable .subscriptionTable .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #monthlyFeeVerticalLayout .v-slot-subscriptionTable .v-captiontext {
	font-weight: bold;
	margin-bottom: 10px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #testReadyModeVerticalLayout #testReadyModeVerticalLayout_oneTimeFeeTable, .telenor #priceProfileDefinitionsViewVerticalLayout #testReadyModeVerticalLayout #testReadyModeVerticalLayoutt_exitCriteriaTable {
	font-size: 12px;
	line-height: normal;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #testReadyModeVerticalLayout #testReadyModeVerticalLayout_oneTimeFeeTable .v-required-field-indicator {
	visibility: hidden;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #testReadyModeVerticalLayout #testReadyModeVerticalLayout_oneTimeFeeTable .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #bundleConfigurationVerticalLayout #bundleConfigurationVerticalLayout_simDependentBundleTable, .telenor #priceProfileDefinitionsViewVerticalLayout #bundleConfigurationVerticalLayout #bundleConfigurationVerticalLayout_fixedBundleTable {
	font-size: 12px;
	line-height: normal;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #dataUsageVerticalLayout #dataUsageVerticalLayout_discountGroupsTable .discountGroupVerticalLayout {
	position: relative;
	line-height: 1.4;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 2px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #dataUsageVerticalLayout #dataUsageVerticalLayout_discountGroupsTable .discountGroupVerticalLayout .addDiscountGroupTierRowButton {
	margin-top: 10px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #dataUsageVerticalLayout #dataUsageVerticalLayout_discountGroupsTable .deleteDiscountGroupRowButton {
	position: absolute;
	right: 10px;
	top: 15px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #dataUsageVerticalLayout .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout #addDiscountGroupRowButton {
	margin-left: 10px;
	margin-bottom: 10px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout #smsUsageVerticalLayout_discountGroupsTable .v-table-row-odd {
	background-color: #ffffff;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout #smsUsageVerticalLayout_discountGroupsTable .v-table-table td {
	border-top-width: 0;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout #smsUsageVerticalLayout_discountGroupsTable .discountGroupVerticalLayout {
	position: relative;
	line-height: 1.4;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 2px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout #smsUsageVerticalLayout_discountGroupsTable .discountGroupVerticalLayout .addDiscountGroupTierRowButton {
	margin-top: 10px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout #smsUsageVerticalLayout_discountGroupsTable .deleteDiscountGroupRowButton {
	position: absolute;
	right: 10px;
	top: 15px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout .pricingForDestinationGroupVerticalLayout {
	position: relative;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #smsUsageVerticalLayout .pricingForDestinationGroupVerticalLayout .deletePricingForDestinationGroupRowButton {
	position: absolute;
	right: 10px;
	top: 1px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #voiceCsdUsageVerticalLayout .v-slot-incomingOutgoingCallsVerticalLayout {
	position: relative;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #voiceCsdUsageVerticalLayout .v-slot-incomingOutgoingCallsVerticalLayout .v-caption-incomingOutgoingCallsVerticalLayout {
	background-color: #f2f2f2;
	height: 20px;
	line-height: 1.4;
	padding-left: 15px;
	padding-bottom: 5px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #voiceCsdUsageVerticalLayout .v-slot-incomingOutgoingCallsVerticalLayout .deleteIncomingOutgoingCallsVerticalLayoutButton {
	position: absolute;
	right: 10px;
	top: 2px;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #voiceCsdUsageVerticalLayout .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #priceProfileDefinitionsViewVerticalLayout #voiceCsdUsageVerticalLayout .incomingOutgoingCallsTable {
	font-size: 12px;
	line-height: normal;
}

.telenor #noteHorizontalLayout .v-icon {
	color: orange;
}

.telenor #noteHorizontalLayout_red .v-icon {
	color: red;
}

.telenor #noteHorizontalLayout .v-icon, .telenor #noteHorizontalLayout_red .v-icon {
	font-size: 36px;
	margin-left: 5px;
	margin-right: 7px;
	margin-top: 13px;
}

.telenor #noteHorizontalLayout .v-button, .telenor #noteHorizontalLayout_red .v-button {
	padding: 0px;
	padding-top: 5px;
	color: #0000ff;
}

.telenor #noteHorizontalLayout .v-label, .telenor #noteHorizontalLayout_red .v-label {
	padding-right: 2px;
}

.telenor #enterpriseAccessServicesDefinitionsView .v-textfield, .telenor #enterpriseAccessServicesDefinitionsView .v-filterselect > .v-filterselect-input {
	font-size: 12px;
	line-height: normal;
	height: 18px;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServicesTabVerticalLayout {
	margin-top: 20px;
	margin-bottom: 20px;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServicesTabVerticalLayout .v-slot-sectionLayout {
	border: 1px solid #d4d4d4;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	position: relative;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServicesTabVerticalLayout #priceGroupsLinkButton {
	padding-top: 4px;
	padding-bottom: 0;
	margin-left: -15px;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServicesTabVerticalLayout #activationFeeAndRecurringRowVerticalLayout, .telenor #enterpriseAccessServicesDefinitionsView #smscServicesTabVerticalLayout .pricingSMSCZoneVerticalLayout {
	margin-top: 20px;
	margin-bottom: 20px;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServicesTabVerticalLayout .addPricingSMSCZoneRowButton {
	position: relative;
	left: 765px;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServicesTabVerticalLayout .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServices_verticalLayout {
	font-size: 12px;
	line-height: normal;
}

.telenor #enterpriseAccessServicesDefinitionsView #smscServices_verticalLayout #activationFeeAndRecurringRowVerticalLayout .v-table-header .v-table-header-cell:nth-child(2) .v-table-caption-container::after, .telenor #enterpriseAccessServicesDefinitionsView #smscServices_verticalLayout .v-slot-pricingSMSCZoneVerticalLayout .v-table-header-cell:nth-child(2) .v-table-caption-container::after {
	content: "*";
	left: 2px;
	position: relative;
}

.telenor #enterpriseAccessServicesDefinitionsView #accessServicesTabVerticalLayout {
	margin-top: 20px;
	margin-bottom: 20px;
}

.telenor #enterpriseAccessServicesDefinitionsView #accessServicesTabVerticalLayout .v-slot-sectionLayout {
	border: 1px solid #d4d4d4;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
}

.telenor #enterpriseAccessServicesDefinitionsView #accessServicesTabVerticalLayout .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #enterpriseAccessServicesDefinitionsView #accessServices_verticalLayout {
	font-size: 12px;
	line-height: normal;
}

.telenor #otherOptionalServicesDefinitionsView .v-textfield, .telenor #otherOptionalServicesDefinitionsView .v-filterselect > .v-filterselect-input {
	font-size: 12px;
	line-height: normal;
	height: 18px;
}

.telenor #otherOptionalServicesDefinitionsView #supportProfessionalServicesTabVerticalLayout {
	margin-top: 20px;
	margin-bottom: 20px;
}

.telenor #otherOptionalServicesDefinitionsView #supportProfessionalServicesTabVerticalLayout .v-slot-sectionLayout {
	border: 1px solid #d4d4d4;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
}

.telenor #otherOptionalServicesDefinitionsView #supportProfessionalServicesTabVerticalLayout .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #otherOptionalServicesDefinitionsView #supportAndProfessionalServices_verticalLayout {
	font-size: 12px;
	line-height: normal;
}

.telenor #otherOptionalServicesDefinitionsView #operatorDefinedServicesTabVerticalLayout {
	margin-top: 20px;
	margin-bottom: 20px;
}

.telenor #otherOptionalServicesDefinitionsView #operatorDefinedServicesTabVerticalLayout .v-slot-sectionLayout {
	border: 1px solid #d4d4d4;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
}

.telenor #otherOptionalServicesDefinitionsView #operatorDefinedServicesTabVerticalLayout .v-caption-hideRequiredFieldIndicator {
	display: none;
}

.telenor #otherOptionalServicesDefinitionsView #operatorDefinedServices_verticalLayout {
	font-size: 12px;
	line-height: normal;
}

.telenor .featuresLayoutStyle {
	font-weight: 600;
	color: #464646;
}

.telenor .summaryPadding {
	padding-top: 5px;
}

.telenor .summaryTableHeader .v-expand {
	background-color: #f4f4f0;
	height: 35px;
}

.telenor .summaryTableHeaderWithMargin .v-expand {
	background-color: #f4f4f0;
	height: 35px;
	margin-top: 5px;
}

.telenor .summaryLayoutWithBottomBorder {
	border-bottom: 2px solid #d4d4d4;
}

.telenor .summaryLayoutWithBottomBorder .v-table-cell-content {
	font-size: 12px;
}

.telenor .summaryLayoutWithBottomAndHeaderBorder {
	border-bottom: 2px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
}

.telenor .summaryLayoutWithLeftBorder {
	border-left: 2px solid #d4d4d4;
	color: #464646;
}

.telenor .summarySectionTableWithoutHeaderBorder .v-table-body {
	border: 0 solid;
	color: #464646;
}

.telenor .summarySectionTableWithoutHeaderBorder .v-table-body .v-table-caption-container {
	font-size: 15px;
}

.telenor .summarySectionTable .v-table-body {
	color: #464646;
}

.telenor .v-slot.v-slot-priceProflesHeaderStyle {
	border-bottom: 1px solid #d4d4d4;
	font-size: 18px;
	font-weight: bold;
	background-color: white;
}

.telenor .priceProfileSummaryAnchor {
	padding-left: 35px;
	padding-bottom: 0px;
	padding-top: 4px;
	color: #00a9da;
	font-size: 14px;
}

.telenor .summaryAnchor .v-button-caption {
	padding-left: 15px;
	color: #00a9da;
	font-size: 14px;
}

.telenor .v-button-summaryAnchor {
	padding: 4px;
}

.telenor .v-button-summaryAnchor .v-icon {
	color: #00a9da;
	font-size: 18px;
	font-family: "Material Icons";
	padding-bottom: 6px;
}

.telenor .v-slot.v-slot-summarySectionCaption {
	font-size: 32px;
	font-weight: bold;
	background-color: #f4f4f0;
	padding-left: 15px;
	height: 52px;
}

.telenor .v-slot.v-slot-summarySection {
	border: 1px solid #d4d4d4;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .v-slot.v-slot-summarySection .v-caption {
	border-bottom: 1px solid #d4d4d4;
	font-weight: 600;
}

.telenor .v-slot.v-slot-summarySection .v-captiontext {
	font-size: 24px;
	color: #7b0663;
	padding: 15px;
}

.telenor .v-slot.v-slot-summarySection .v-table {
	border: 0px;
	box-shadow: none;
}

.telenor .v-label-summaryTitleLabel {
	font-weight: bold;
	padding-left: 15px;
	padding-bottom: 7px;
	color: #464646;
	white-space: pre-wrap;
	display: inline;
}

.telenor .v-slot-summaryTitleLabel {
	margin-top: 5px;
	margin-bottom: 10px;
}

.telenor .v-label-summaryValueLabel {
	padding-left: 15px;
	padding-bottom: 10px;
	color: #464646;
	word-wrap: break-word !important;
}

.telenor .v-label-summaryTitleLabelTaxation {
	font-weight: bold;
	padding-left: 11px;
	padding-bottom: 7px;
	color: #464646;
}

.telenor .v-label-summaryValueLabelTaxation {
	padding-bottom: 10px;
	color: #464646;
	word-wrap: break-word !important;
}

.telenor .v-label-summaryUnitPriceLabel {
	padding-left: 5px;
	padding-bottom: 10px;
	color: #464646;
	word-wrap: break-word !important;
}

.telenor .v-label-summaryUnitPriceLabelException {
	padding-left: 12px;
	padding-bottom: 10px;
	color: #464646;
	word-wrap: break-word !important;
}

.telenor .v-slot-ready .v-has-caption.v-caption-on-top, .telenor .v-slot-copy .v-has-caption.v-caption-on-top, .telenor .v-slot-draft .v-has-caption.v-caption-on-top {
	margin-top: 10px;
	margin-bottom: 0px;
}

.telenor .v-slot-ready .v-has-caption .v-label-ready, .telenor .v-slot-ready .v-has-caption .v-label-copy, .telenor .v-slot-ready .v-has-caption .v-label-draft, .telenor .v-slot-copy .v-has-caption .v-label-ready, .telenor .v-slot-copy .v-has-caption .v-label-copy, .telenor .v-slot-copy .v-has-caption .v-label-draft, .telenor .v-slot-draft .v-has-caption .v-label-ready, .telenor .v-slot-draft .v-has-caption .v-label-copy, .telenor .v-slot-draft .v-has-caption .v-label-draft {
	font-size: 28px;
}

.telenor .v-slot-ready .v-has-caption.v-caption-ready, .telenor .v-slot-ready .v-has-caption.v-caption-copy, .telenor .v-slot-ready .v-has-caption.v-caption-draft, .telenor .v-slot-copy .v-has-caption.v-caption-ready, .telenor .v-slot-copy .v-has-caption.v-caption-copy, .telenor .v-slot-copy .v-has-caption.v-caption-draft, .telenor .v-slot-draft .v-has-caption.v-caption-ready, .telenor .v-slot-draft .v-has-caption.v-caption-copy, .telenor .v-slot-draft .v-has-caption.v-caption-draft {
	display: inline-block;
	line-height: normal;
	margin-left: 5px;
	font-size: 28px;
	float: right;
	cursor: help;
}

.telenor .v-slot-ready .v-caption.v-caption-ready .v-icon {
	color: #00b747;
}

.telenor .v-slot-copy .v-caption.v-caption-copy .v-icon {
	color: #cfc700;
}

.telenor .v-slot-draft .v-caption.v-caption-draft .v-icon {
	color: #778899;
}

.telenor .v-slot-missingDependencies .v-caption.v-caption-missingDependencies .v-icon {
	color: red;
}

.telenor .v-ui.loading-component::after, .telenor .v-verticallayout.loading-component::after, .telenor .v-table.loading-component::after {
	display: block;
	left: 50%;
	margin-left: -49px;
	top: 20%;
	line-height: normal;
	font-size: 96px;
	content: "\E863";
	font-family: "Material Icons";
	z-index: 10;
	color: rgba(0, 0, 0, 0.56);
	-webkit-animation: v-rotate-360 800ms infinite linear;
	-moz-animation: v-rotate-360 800ms infinite linear;
	animation: v-rotate-360 800ms infinite linear;
	pointer-events: none;
	position: absolute;
	box-sizing: border-box;
}

.telenor .no-stripes .v-table-row, .telenor .no-stripes .v-table-row-odd {
	background: white;
}

.telenor .no-stripes .v-table-row:hover, .telenor .no-stripes .v-table-row-odd:hover {
	background: #e0e0e0;
}

.telenor .no-stripes .v-table-row-bearer-selected, .telenor .no-stripes .v-table-row-odd-bearer-selected {
	background: white;
	font-weight: bold;
}

.telenor .no-stripes .v-table-row-bearer-selected:hover, .telenor .no-stripes .v-table-row-odd-bearer-selected:hover {
	background: #e0e0e0;
}

.telenor .no-stripes .v-table-row-action-disabled, .telenor .no-stripes .v-table-row-odd-action-disabled {
	color: lightgrey;
}

.telenor .no-stripes-no-hover .v-table-header-wrap {
	border-top: 0 none;
	border-bottom: 0px solid lightgrey;
}

.telenor .no-stripes-no-hover .v-table-body {
	border: none;
	border-bottom: 0px solid lightgrey;
}

.telenor .no-stripes-no-hover .v-table-body .v-table-table {
	box-shadow: none;
}

.telenor .no-stripes-no-hover .v-table-body .v-table-table .v-table-row, .telenor .no-stripes-no-hover .v-table-body .v-table-table .v-table-row-odd {
	background: white;
}

.telenor .no-stripes-no-hover .v-table-body .v-table-table .v-table-row .v-table-cell-content, .telenor .no-stripes-no-hover .v-table-body .v-table-table .v-table-row-odd .v-table-cell-content {
	border: none;
}

.telenor .no-stripes-no-box-shadow .v-table-body .v-table-table {
	box-shadow: none;
}

.telenor .no-stripes-no-box-shadow .v-table-body .v-table-table .v-table-row, .telenor .no-stripes-no-box-shadow .v-table-body .v-table-table .v-table-row-odd {
	background: white;
}

.telenor .pricing-tool-button {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 24px;
}

.telenor .pricing-tool-button .v-icon {
	color: #00577e;
}

.telenor .pricing-tool-button:before {
	font-family: "Material Icons";
	content: "\e8b8";
}

.telenor .v-table-no-vertical-lines-or-border .v-table-header-wrap, .telenor .v-table-no-vertical-lines-or-border .v-table-body, .telenor .v-table-no-vertical-lines-or-border .v-table-cell-content {
	border: none;
}

.telenor .v-table-cell-content-link-cell {
	cursor: pointer;
	color: #00577e;
}

.telenor .v-table-cell-content-link-cell:active, .telenor .v-table-cell-content-link-cell.v-pressed {
	background: #d6d6d6;
}

.telenor .v-table-cell-content-link-cell.v-disabled {
	opacity: 1;
}

.telenor .pricing-version-history-info {
	color: #0063bb;
	font-size: 18px;
}

.telenor .v-slot-with-info-for-element .v-has-caption.v-caption-on-top {
	margin-top: 0px;
}

.telenor .v-slot-with-info-for-element .v-has-caption .v-label-with-info-for-element {
	padding-top: 0;
}

.telenor .v-slot-with-info-for-element .v-caption.v-caption-with-info-for-element {
	display: inline-block;
	line-height: normal;
	margin-left: 5px;
	font-size: 21px;
	float: right;
	cursor: help;
}

.telenor .v-slot-with-info-for-element .v-caption.v-caption-with-info-for-element .v-icon {
	color: #448aff;
	font-size: large;
}

.telenor .resource-count-caption, .telenor .error-caption {
	font-weight: 600;
	color: #737373;
	margin-bottom: 8px;
}

.telenor .resource-count-table {
	border: 1px solid #9b9b9b;
}

.telenor .resource-count-table .v-gridlayout-slot {
	border-bottom: 1px solid #9b9b9b;
}

.telenor .resource-count-table .v-gridlayout-slot .v-label {
	padding: 4px;
	margin-right: 20px;
	margin-left: 5px;
}

.telenor .resource-count-table .v-gridlayout-slot .v-button {
	margin-right: 2px;
}

.telenor .resource-count-table .v-gridlayout-slot .v-button:not(.v-disabled):focus, .telenor .resource-count-table .v-gridlayout-slot .v-button:not(.v-disabled):hover {
	background-color: transparent;
}

.telenor .resource-count-table .has-validation-errors, .telenor .resource-count-table .v-caption-has-validation-errors {
	color: #e32119;
}

.telenor .euicc-resource-view .error-grid, .telenor .subscription-resource-view .error-grid {
	width: 100% !important;
}

.telenor .dcp-iconbutton-optiongroup {
	display: table;
}

.telenor .dcp-iconbutton-optiongroup .v-radiobutton {
	display: table-cell;
	position: relative;
	padding: 10px;
	margin: 0;
}

.telenor .dcp-iconbutton-optiongroup .v-radiobutton label {
	display: block;
	position: relative;
	background-color: transparent;
	padding: 10px;
	padding-left: 45px;
	border-radius: 10px;
	border: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .dcp-iconbutton-optiongroup .v-radiobutton label:hover {
	background-color: rgba(0, 0, 0, 0.04);
}

.telenor .dcp-iconbutton-optiongroup .v-radiobutton label:before, .telenor .dcp-iconbutton-optiongroup .v-radiobutton label:after {
	display: none !important;
}

.telenor .dcp-iconbutton-optiongroup .v-radiobutton label .v-icon {
	position: absolute;
	left: 10px;
	top: 10px;
	font-size: 2em;
	line-height: 1em;
	margin: 0;
}

.telenor .dcp-iconbutton-optiongroup .v-radiobutton label .name, .telenor .dcp-iconbutton-optiongroup .v-radiobutton label .description {
	display: block;
}

.telenor .dcp-iconbutton-optiongroup .v-radiobutton input[type="radio"]:checked + label {
	background-color: rgba(0, 0, 0, 0.09);
}

.telenor .services-layout .v-label {
	font-weight: 200;
	font-size: 18px;
	line-height: 20px;
	color: rgba(0, 0, 0, 0.54);
	padding-top: 0;
}

.telenor .services-layout .v-label.enabled {
	color: rgba(0, 0, 0, 0.87);
	font-weight: 700;
}

.telenor .services-layout .v-label.enabled:before {
	font-family: "Material Icons";
	content: "\e834";
	margin-right: 0.2em;
	vertical-align: top;
}

.telenor .services-layout.v-csslayout .v-label {
	margin-right: 20px;
}

.telenor .services-layout.v-csslayout .v-label:last-child {
	margin-right: 0;
}

.telenor .apn-layout .v-label {
	font-size: 20px;
	padding-right: 10px;
}

.telenor .v-slot-unload-batch {
	padding-top: 0 !important;
}

.telenor .unload-batch {
	text-align: left;
	padding: 0px !important;
	height: auto !important;
}

.telenor .unload-batch .v-button-caption {
	color: rgba(0, 0, 0, 0.87);
	font-weight: 300;
	line-height: 30px;
}

.telenor .unload-batch .v-button-caption::before, .telenor .unload-batch .v-button-caption::after {
	font-family: "Material Icons";
	line-height: 30px;
	font-size: 14px;
	vertical-align: bottom;
}

.telenor .unload-batch .v-button-caption::before {
	content: "\E896";
	padding-right: 0.5em;
}

.telenor .unload-batch .v-button-caption::after {
	content: "\E5CD";
	font-family: "Material Icons";
	padding-left: 0.2em;
}

.telenor .v-label-notes-caption {
	font-size: 21px;
	line-height: normal;
}

.telenor .v-label-notes pre {
	overflow: hidden;
	white-space: pre-wrap;
	font-family: "Open Sans", sans-serif;
	margin: 0;
}

.telenor .change-subscription-owner-container {
	min-height: 65ex;
}

.telenor .movesim-anchor-context-menu-to-bottom .v-grid-sidebar.v-contextmenu.open {
	top: auto;
	bottom: 0;
}

.telenor .user-popup .v-textfield, .telenor .user-popup .v-textarea {
	font-size: 14px;
	font-weight: normal;
}

.telenor .user-popup .v-window-header {
	font-size: 16px;
	font-family: "Open Sans";
	font-weight: normal;
	color: #202020;
	margin-left: 0px;
}

.telenor .user-popup .italic {
	font-size: 14px;
	font-style: italic;
	font-family: "Open Sans";
	color: rgba(0, 0, 0, 0.54);
}

.telenor .user-popup .popupContent .materiallayout .v-slot > .tooltip.mode-desc {
	width: 320px;
	padding-bottom: 7px;
}

.telenor .user-popup .popupContent .materiallayout .v-slot > .tooltip.mode-error {
	width: 320px;
	padding-bottom: 7px;
}

.telenor .user-popup .popupContent .materiallayout .v-textarea {
	font-size: 14px;
}

.telenor .user-popup .popupContent .v-window-contents > .v-scrollable > .main-layout {
	padding: 0px 20px 10px;
}

.telenor .user-popup .popupContent .v-window-header {
	padding: 20px;
}

.telenor .user-popup .popupContent .v-textfield {
	height: 20px;
	line-height: 20px;
	vertical-align: top;
}

.telenor .v-upload .v-button {
	background-color: #00577e;
	color: #FFF;
}

.telenor .v-upload .v-button.secondary-action:not(.v-disabled) {
	background-color: #FFF;
	color: #333333;
}

.telenor .v-upload .v-button.primary-action:not(.v-disabled) {
	background-color: #00577e;
	color: #FFF;
}

.telenor .v-upload .v-button.primary-action:not(.v-disabled):hover {
	background-color: #00344b;
}

.telenor .v-upload .v-button.primary-action:not(.v-disabled):active {
	background-color: #001118;
}

.telenor .search-batchfile-warning-text {
	color: red;
}

.telenor .search-batchfile-warning-table {
	border: 1px solid;
	margin-bottom: 10px;
	margin-top: 20px;
}

.telenor .search-batchfile-warning-table td {
	height: 20px;
}

.telenor .search-batchfile-warning-table tr {
	background-color: white;
}

.telenor #note-character-counter {
	padding-bottom: 24px;
}

.telenor #subscription-inventory-queryhelp-button {
	font-size: 25px;
}

.telenor #subscription-inventory-queryhelp-button .v-icon {
	vertical-align: middle;
	color: #1569b0;
}

.telenor #subscription-inventory-queryhelp-content {
	padding-left: 20px;
}

.telenor .subscription-history-filter {
	padding: 10px 0px 0px 10px;
}

.telenor .subscription-history-filter .v-button.filter-remove {
	margin-left: auto;
	margin-right: auto;
}

.telenor #character-counter {
	padding-bottom: 4px;
}

.telenor #smsTextField:read-only {
	color: #737373;
	background-color: #f2f2f2;
}

.telenor .sms-delivery-status-progress {
	margin-top: 8px;
}

.telenor .sms-delivery-status-progress .v-progressbar-wrapper {
	background-image: none;
	border-radius: 0px;
	background-color: #dcdcdc;
}

.telenor .sms-delivery-status-progress .v-progressbar-wrapper .v-progressbar-indicator {
	background-image: none;
	border-radius: 0px;
	background-color: #00577e;
	border: 1px solid #00577e;
}

.telenor .sms-delivery-status-description {
	font-size: 12px;
}

.telenor .sms-delivery-status-progress-warning > .v-progressbar-wrapper > .v-progressbar-indicator {
	background-color: #fabb00;
	border: 1px solid #fabb00;
}

.telenor .sms-delivery-status-warning {
	color: #fabb00;
}

.telenor .sms-delivery-status-progress-error > .v-progressbar-wrapper > .v-progressbar-indicator {
	background-color: #e32119;
	border: 1px solid #e32119;
}

.telenor .sms-delivery-status-error {
	color: #e32119;
}

.telenor .v-verticallayout.subscription-state-change-box {
	background-color: #f2f2f2;
	border: solid 1px rgba(0, 0, 0, 0.12);
}

.telenor .v-slot:not(.v-slot-dcp-panel-content-header) + .v-slot-subscription-details-id-information {
	margin-top: -20px;
}

.telenor .subscription-details-id-information {
	padding: 10px;
}

.telenor .subscription-details-id-information .id-pair {
	padding: 10px;
	position: relative;
	float: left;
	width: 100%;
}

.telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-1, .telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-2 {
	width: 50%;
}

.telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-1  > .value, .telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-2  > .value {
	width: 100%;
	padding-bottom: 20px;
}

.telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-1  > .value:last-child, .telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-2  > .value:last-child {
	padding-bottom: 0;
}

.telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-3 {
	clear: both;
	padding-left: 30px;
}

.telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-3  > .value {
	width: 50%;
	float: left;
}

.telenor .subscription-details-id-information[width-range~="0-1349px"] .id-pair.id-pair-3  > .value:first-child {
	position: relative;
	left: -20px;
}

.telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-1, .telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-3 {
	width: 66.66%;
	padding-left: 30px;
}

.telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-1  > .value, .telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-3  > .value {
	width: 50%;
	float: left;
}

.telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-1  > .value:first-child, .telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-3  > .value:first-child {
	position: relative;
	left: -20px;
}

.telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-2 {
	width: 33.33%;
	float: right;
}

.telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-2  > .value {
	width: 100%;
	padding-bottom: 20px;
}

.telenor .subscription-details-id-information[width-range~="1350px-1799px"] .id-pair.id-pair-2  > .value:last-child {
	padding-bottom: 0;
}

.telenor .subscription-details-id-information[width-range~="1800px-"] .id-pair {
	width: 50%;
	padding-left: 30px;
}

.telenor .subscription-details-id-information[width-range~="1800px-"] .id-pair  > .value {
	width: 50%;
	float: left;
}

.telenor .subscription-details-id-information[width-range~="1800px-"] .id-pair  > .value:first-child {
	position: relative;
	left: -20px;
}

.telenor .subscription-details-id-information[width-range~="1800px-"] .id-pair:nth-child(2n+1) {
	clear: both;
}

.telenor .subscription-details-sim-information {
	padding: 10px;
}

.telenor .subscription-details-sim-information .specification-layout, .telenor .subscription-details-sim-information .pin-layout, .telenor .subscription-details-sim-information .puk-layout {
	padding: 10px;
	position: relative;
	float: left;
	width: 50%;
}

.telenor .subscription-details-sim-information .pin-layout, .telenor .subscription-details-sim-information .puk-layout {
	float: right;
	clear: right;
	padding-left: 30px;
}

.telenor .subscription-details-sim-information .pin-layout  > .value, .telenor .subscription-details-sim-information .puk-layout  > .value {
	width: 50%;
	float: left;
}

.telenor .subscription-details-sim-information .pin-layout  > .value:first-child, .telenor .subscription-details-sim-information .puk-layout  > .value:first-child {
	position: relative;
	left: -20px;
}

.telenor .subscription-details-sim-information[width-range~="0-1349px"] .specification-layout  > .value {
	width: 100%;
	padding-bottom: 20px;
}

.telenor .subscription-details-sim-information[width-range~="0-1349px"] .specification-layout  > .value:last-child {
	padding-bottom: 0;
}

.telenor .subscription-details-sim-information[width-range~="1350px-1799px"] .specification-layout {
	width: 66.66%;
	padding-left: 30px;
}

.telenor .subscription-details-sim-information[width-range~="1350px-1799px"] .specification-layout  > .value {
	width: 50%;
	float: left;
}

.telenor .subscription-details-sim-information[width-range~="1350px-1799px"] .specification-layout  > .value:first-child {
	position: relative;
	left: -20px;
}

.telenor .subscription-details-sim-information[width-range~="1350px-1799px"] .pin-layout, .telenor .subscription-details-sim-information[width-range~="1350px-1799px"] .puk-layout {
	width: 33.33%;
}

.telenor .subscription-details-sim-information[width-range~="1800px-"] .specification-layout {
	width: 50%;
	padding-left: 30px;
}

.telenor .subscription-details-sim-information[width-range~="1800px-"] .specification-layout  > .value {
	width: 50%;
	float: left;
}

.telenor .subscription-details-sim-information[width-range~="1800px-"] .specification-layout  > .value:first-child {
	position: relative;
	left: -20px;
}

.telenor .subscription-details-sim-information[width-range~="1800px-"] .pin-layout, .telenor .subscription-details-sim-information[width-range~="1800px-"] .puk-layout {
	float: left;
	width: 25%;
}

.telenor .subscription-details-roaming-settings {
	padding: 10px;
}

.telenor .subscription-details-roaming-settings .roaming-pair {
	width: 100%;
	padding: 10px;
}

.telenor .subscription-details-roaming-settings[width-range~="0-1349px"] .roaming-pair {
	padding-left: 30px;
}

.telenor .subscription-details-roaming-settings[width-range~="0-1349px"] .roaming-pair  > .value {
	width: 50%;
	float: left;
}

.telenor .subscription-details-roaming-settings[width-range~="0-1349px"] .roaming-pair  > .value:first-child {
	position: relative;
	left: -20px;
}

.telenor .subscription-details-roaming-settings[width-range~="1350px-"] .roaming-pair {
	width: 33.33334%;
	float: left;
}

.telenor .subscription-details-roaming-settings[width-range~="1350px-"] .roaming-pair  > .value {
	width: 100%;
	padding-bottom: 20px;
}

.telenor .subscription-details-roaming-settings[width-range~="1350px-"] .roaming-pair  > .value:last-child {
	padding-bottom: 0;
}

.telenor .subscription-details-responsive-grid-layout {
	padding: 10px;
}

.telenor .subscription-details-responsive-grid-layout  > .item {
	width: 100%;
	float: left;
	padding: 10px;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="0-1349px"]  > .item {
	width: 50%;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="0-1349px"]  > .item:nth-child(2n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="1350px-1799px"]  > .item {
	width: 33.33334%;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="1350px-1799px"]  > .item:nth-child(3n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="1800px-2249px"]  > .item {
	width: 25%;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="1800px-2249px"]  > .item:nth-child(4n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="2250px-"]  > .item {
	width: 20%;
}

.telenor .subscription-details-responsive-grid-layout-columns-2[width-range~="2250px-"]  > .item:nth-child(5n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="0-1399px"]  > .item {
	width: 33.33334%;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="0-1399px"]  > .item:nth-child(3n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="1400px-1749px"]  > .item {
	width: 25%;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="1400px-1749px"]  > .item:nth-child(4n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="1750px-2099px"]  > .item {
	width: 20%;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="1750px-2099px"]  > .item:nth-child(5n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="2100px-"]  > .item {
	width: 16.66667%;
}

.telenor .subscription-details-responsive-grid-layout-columns-3[width-range~="2100px-"]  > .item:nth-child(6n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="0-1249px"]  > .item {
	width: 25%;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="0-1249px"]  > .item:nth-child(4n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="1250px-1499px"]  > .item {
	width: 20%;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="1250px-1499px"]  > .item:nth-child(5n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="1500px-1749px"]  > .item {
	width: 16.66667%;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="1500px-1749px"]  > .item:nth-child(6n+1) {
	clear: both;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="1750px-"]  > .item {
	width: 14.28572%;
}

.telenor .subscription-details-responsive-grid-layout-columns-4[width-range~="1750px-"]  > .item:nth-child(7n+1) {
	clear: both;
}

.telenor .v-grid-body .v-grid-row .v-grid-cell-edit > .v-nativebutton {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 17px;
	vertical-align: middle;
	color: #00577e;
}

.telenor .v-grid-body .v-grid-row .v-grid-cell-edit > .v-nativebutton:before {
	font-family: "Material Icons";
	content: "\E3C9";
}

.telenor .v-grid-body .v-grid-row.disabled-cell > .v-nativebutton {
	opacity: 0.5;
}

.telenor .subscription-package .filters {
	margin-top: 10px;
}

.telenor .subscription-package .filter-left-margin {
	margin-left: 10px;
}

.telenor .subscription-package .v-panel-content-with-info-bubble.v-scrollable {
	overflow: visible;
}

.telenor .subscription-package .v-slot.v-slot-info-shadow {
	position: absolute;
	top: -36px;
	right: 19px;
}

.telenor .subscription-package .v-slot.v-slot-info-shadow .v-icon {
	cursor: help;
	font-size: 22px;
}

.telenor .subscription-package .pdp-context-apn-container .v-label {
	text-align: right;
}

.telenor .subscription-package .v-grid-spacer.stripe > td {
	background-color: #fff;
}

.telenor .subscription-package .panel-with-borders .v-slot-with-borders:not(:nth-child(1)) .with-borders {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	padding-top: 18px;
}

.telenor .subscription-package .materiallayout + .tooltip.mode-empty {
	height: 0;
}

.telenor .subscription-package .v-checkbox + .tooltip.mode-empty {
	height: 10px;
}

.telenor .subscription-package #b2b2c + .tooltip {
	height: 0;
}

.telenor .subscription-package .pdp-context-grid .v-grid-body .v-grid-row {
	height: 210px;
}

.telenor .subscription-package .pdp-context-grid .v-grid-body .v-grid-row .v-grid-cell {
	height: 210px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-1 .v-grid-body .v-grid-row {
	height: 21px;
}

.telenor .subscription-package .pdp-context-grid-1 .v-grid-body .v-grid-row .v-grid-cell {
	height: 21px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-2 .v-grid-body .v-grid-row {
	height: 42px;
}

.telenor .subscription-package .pdp-context-grid-2 .v-grid-body .v-grid-row .v-grid-cell {
	height: 42px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-3 .v-grid-body .v-grid-row {
	height: 63px;
}

.telenor .subscription-package .pdp-context-grid-3 .v-grid-body .v-grid-row .v-grid-cell {
	height: 63px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-4 .v-grid-body .v-grid-row {
	height: 84px;
}

.telenor .subscription-package .pdp-context-grid-4 .v-grid-body .v-grid-row .v-grid-cell {
	height: 84px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-5 .v-grid-body .v-grid-row {
	height: 105px;
}

.telenor .subscription-package .pdp-context-grid-5 .v-grid-body .v-grid-row .v-grid-cell {
	height: 105px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-6 .v-grid-body .v-grid-row {
	height: 126px;
}

.telenor .subscription-package .pdp-context-grid-6 .v-grid-body .v-grid-row .v-grid-cell {
	height: 126px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-7 .v-grid-body .v-grid-row {
	height: 147px;
}

.telenor .subscription-package .pdp-context-grid-7 .v-grid-body .v-grid-row .v-grid-cell {
	height: 147px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-8 .v-grid-body .v-grid-row {
	height: 168px;
}

.telenor .subscription-package .pdp-context-grid-8 .v-grid-body .v-grid-row .v-grid-cell {
	height: 168px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-9 .v-grid-body .v-grid-row {
	height: 189px;
}

.telenor .subscription-package .pdp-context-grid-9 .v-grid-body .v-grid-row .v-grid-cell {
	height: 189px !important;
	line-height: 20px;
}

.telenor .subscription-package .pdp-context-grid-10 .v-grid-body .v-grid-row {
	height: 210px;
}

.telenor .subscription-package .pdp-context-grid-10 .v-grid-body .v-grid-row .v-grid-cell {
	height: 210px !important;
	line-height: 20px;
}

.telenor .subscription-package .v-label-filter-info.v-has-width {
	padding-top: 20px;
	line-height: 16px;
}

.telenor .subscription-package .v-checkbox label {
	white-space: normal;
}

.telenor .subscription-package .v-slot.v-slot-delivery-address:not(:nth-child(1)) {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .subscription-package .v-button-huge {
	font-size: 38px;
	margin: 0;
	padding: 0;
	width: 38px;
	margin-top: 5px;
}

.telenor .subscription-package .v-grid-row.disabled {
	color: gray;
}

.telenor .trigger-rule-area  > .v-slot-dcp-button {
	width: 158px;
}

.telenor .trigger-rule-area  > .v-button-dcp-button.interval-button {
	width: 158px;
	background-color: white;
}

.telenor .trigger-rule-area  > .v-slot-trigger-rule-action-start {
	padding-top: 20px;
}

.telenor .trigger-interval-button {
	padding-bottom: 30px;
	position: relative;
}

.telenor .trigger-interval-button:before {
	content: "";
	left: 78px;
	border: dotted 0 #0091d2;
	border-left-width: 2px;
	position: absolute;
	height: 30px;
	top: 30px;
}

.telenor .trigger-rule-part {
	color: #0091d2;
	text-transform: uppercase;
	font-weight: 600;
}

.telenor .trigger-rule-part.subsection {
	position: relative;
}

.telenor .trigger-rule-part.subsection:before {
	content: "";
	display: block;
	width: 20px;
	height: 0;
	border: dotted 0 #0091d2;
	border-top-width: 2px;
	position: absolute;
	left: -20px;
	top: 50%;
}

.telenor .trigger-rule-condition-layout, .telenor .trigger-rule-action-layout {
	position: relative;
	padding-right: 40px;
	padding-left: 100px;
	padding-bottom: 30px;
}

.telenor .trigger-rule-condition-layout:before, .telenor .trigger-rule-action-layout:before {
	content: "";
	display: block;
	height: 100%;
	width: 0;
	position: absolute;
	top: 0;
	left: 78px;
	border: dotted 0 #0091d2;
	border-left-width: 2px;
}

.telenor .trigger-rule-condition-layout.trigger-rule-action-layout-end:after, .telenor .trigger-rule-action-layout.trigger-rule-action-layout-end:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #0091d2;
	left: 72px;
	bottom: 0;
	background: white;
}

.telenor .trigger-rule-condition-layout  > .trigger-rule-part, .telenor .trigger-rule-action-layout  > .trigger-rule-part {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	text-align: right;
	padding-right: 20px;
	background-color: #ffffff;
}

.telenor .trigger-rule-condition-layout  > .trigger-remove-button, .telenor .trigger-rule-action-layout  > .trigger-remove-button {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.telenor .trigger-rule-condition-layout.trigger-rule-embedded-action, .telenor .trigger-rule-action-layout.trigger-rule-embedded-action {
	padding-right: 0px;
}

.telenor .trigger-rule-condition-layout.trigger-rule-embedded-action  > .trigger-condition-area, .telenor .trigger-rule-action-layout.trigger-rule-embedded-action  > .trigger-condition-area {
	padding-right: 40px;
}

.telenor .trigger-category-layout .trigger-category-option-item {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .trigger-category-layout .trigger-category-rule {
	background-color: rgba(0, 0, 0, 0.12);
	padding: 0.1em 0.5em;
}

.telenor .v-slot-trigger-selector {
	display: inline;
}

.telenor .trigger-selector {
	display: inline;
}

.telenor .trigger-selector  > .v-slot {
	display: inline;
}

.telenor .trigger-selector .trigger-selector-value {
	cursor: pointer;
	white-space: normal;
	display: inline;
}

.telenor .trigger-selector .trigger-selector-value:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.telenor .trigger-selector .trigger-selector-value:after {
	content: "\e5D2";
	font-family: "Material icons";
	color: #00577e;
	vertical-align: middle;
	margin: 0 0.3em;
}

.telenor .v-slot-trigger-selection {
	display: inline;
}

.telenor .trigger-selection {
	font-weight: 600;
}

.telenor .trigger-selection.v-label {
	white-space: normal;
	display: inline;
}

.telenor .trigger-selection.v-label:before {
	content: " ";
}

.telenor .v-slot-trigger-summary {
	display: inline;
}

.telenor .trigger-summary {
	font-weight: $normal;
}

.telenor .trigger-summary.v-label {
	white-space: normal;
	display: inline;
}

.telenor .trigger-summary.v-label:before {
	content: " ";
}

.telenor .trigger-kpi-instruction .v-icon {
	vertical-align: middle;
}

.telenor .trigger-kpi .trigger-kpi-values, .telenor .trigger-kpi .trigger-kpi-values .v-icon {
	color: #9b9b9b;
}

.telenor .trigger-kpi .trigger-kpi-values .trigger-kpi-value {
	color: #0091d2;
}

.telenor .trigger-kpi.major-change .trigger-kpi-values, .telenor .trigger-kpi.major-change .trigger-kpi-values .v-icon {
	color: #0091d2;
}

.telenor .rule-compliance-indicator {
	color: rgba(0, 0, 0, 0.3);
	width: 30px;
}

.telenor .rule-compliance-indicator::after {
	font-family: "Material Icons";
	font-size: 16px;
	content: "\e3a6";
	dislay: block;
}

.telenor .rule-compliance-indicator.compliant {
	color: #86ba17;
}

.telenor .rule-compliance-indicator.incompliant {
	color: #e32119;
}

.telenor div.role-with-visibility-extending-to-children::before {
	font-family: "Material Icons";
	font-size: 20px;
	content: "\e03c";
	dislay: block;
	color: #00577e;
	opacity: 0.6;
	margin-right: 5px;
	vertical-align: middle;
}

.telenor div.role-with-visibility-not-extending-to-children::before {
	font-family: "Material Icons";
	font-size: 20px;
	content: "\e03c";
	dislay: block;
	color: #00577e;
	opacity: 0.2;
	margin-right: 5px;
	vertical-align: middle;
}

.telenor div.role-with-visibility-extending-to-selected-organizations::before {
	font-family: "Material Icons";
	font-size: 20px;
	content: "\e02f";
	dislay: block;
	color: #00577e;
	opacity: 0.6;
	margin-right: 5px;
	vertical-align: middle;
}

.telenor div#view-permission-library-button .v-button-caption::after {
	font-family: "Material Icons";
	font-size: 22px;
	content: "\e879";
	dislay: block;
	color: #00577e;
	margin-left: 5px;
	vertical-align: text-top;
}

.telenor .v-select-optiongroup.v-widget.authority-selection-options.v-select-optiongroup-authority-selection-options {
	white-space: nowrap;
}

.telenor .v-select-optiongroup.v-widget.authority-selection-options.v-select-optiongroup-authority-selection-options .v-select-option {
	display: inline-block;
	width: 50%;
	vertical-align: top;
}

.telenor .v-treetable.user-management-organization-treetable .v-table-header-wrap .v-table-header td:nth-child(2) {
	text-align: center;
}

.telenor .v-treetable.user-management-organization-treetable .v-table-header-wrap .v-table-header td div.v-table-caption-container {
	line-height: 20px;
	white-space: normal;
	height: 60px;
}

.telenor .v-treetable.user-management-organization-treetable .v-table-body-wrapper .v-table-table tr td:nth-child(1) label {
	margin-left: 7px;
}

.telenor .v-treetable.user-management-organization-treetable .v-table-body-wrapper .v-table-table tr td:nth-child(2) .v-table-cell-wrapper {
	text-align: center !important;
}

.telenor .v-treetable.user-management-organization-treetable .v-table-body-wrapper .v-table-table tr td:nth-child(2) .v-table-cell-wrapper .v-textfield {
	text-align: center;
}

.telenor .v-treetable.user-management-organization-treetable .v-table-body-wrapper .v-table-table tr .user-management-organization-treetable-left-align {
	margin-left: 15px;
}

.telenor .v-treetable.user-management-organization-treetable .v-table-body-wrapper .v-table-table tr .v-textfield.v-readonly {
	font-size: 14px;
}

.telenor .v-treetable.user-management-organization-treetable .v-checkbox.v-widget.v-readonly.v-checkbox-disabled {
	display: none;
}

.telenor .user-management-role-list.v-grid-user-management-role-list .v-grid-tablewrapper .v-grid-header tr th:nth-child(1) {
	padding-left: 5px;
}

.telenor .user-management-role-list.v-grid-user-management-role-list .v-grid-tablewrapper .v-grid-body tr td:nth-child(1) {
	padding-left: 15px;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr th {
	line-height: 20px;
	white-space: normal;
	height: 80px !important;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr th div.v-grid-column-header-content {
	overflow: hidden;
	word-wrap: break-word;
	line-height: 20px;
	height: 80px !important;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr th:nth-child(n+2):nth-last-child(n+4) {
	text-align: center;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr th:nth-child(1), .telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr th:nth-last-child(4) {
	box-shadow: rgba(0, 0, 0, 0.06) 1px 0px 0px, rgba(0, 0, 0, 0.04) 3px 0px 0px, rgba(0, 0, 0, 0.02) 5px 0px 0px;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr th:nth-child(1) {
	z-index: 1001;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr th:nth-last-child(4) {
	z-index: 1000;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-header tr div.permission-count-wrapper {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background: white;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-body tr td:nth-child(n+2):nth-last-child(n+4) {
	text-align: center;
	background: rgba(0, 0, 0, 0.06);
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-body tr td:nth-child(1), .telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-body tr td:nth-last-child(4) {
	box-shadow: rgba(0, 0, 0, 0.06) 1px 0px 0px, rgba(0, 0, 0, 0.04) 3px 0px 0px, rgba(0, 0, 0, 0.02) 5px 0px 0px;
	padding-left: 10px;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-body tr div.permission-name-column::before {
	font-family: "Material Icons";
	font-size: 20px;
	content: "\e88e";
	dislay: block;
	color: #00577e;
	opacity: 0.6;
	margin-right: 10px;
	vertical-align: middle;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-body tr .permission-inactive {
	color: #c5c5c5;
}

.telenor .user-management-user-permissions-table.v-grid-user-management-user-permissions-table .v-grid-tablewrapper .v-grid-body tr .permission-inactive .v-checkbox {
	display: none;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-header tr th:nth-child(n+2):nth-last-child(n+4) {
	text-align: center;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-header tr th:nth-child(1), .telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-header tr th:nth-last-child(4) {
	box-shadow: rgba(0, 0, 0, 0.06) 1px 0px 0px, rgba(0, 0, 0, 0.04) 3px 0px 0px, rgba(0, 0, 0, 0.02) 5px 0px 0px;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-header tr th:nth-child(1) {
	z-index: 1001;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-header tr th:nth-last-child(4) {
	z-index: 1000;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-header tr div.permission-count-wrapper {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background: white;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-body tr td:nth-child(n+2):nth-last-child(n+4) {
	text-align: center;
	background: rgba(0, 0, 0, 0.06);
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-body tr td:nth-child(1), .telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-body tr td:nth-last-child(4) {
	box-shadow: rgba(0, 0, 0, 0.06) 1px 0px 0px, rgba(0, 0, 0, 0.04) 3px 0px 0px, rgba(0, 0, 0, 0.02) 5px 0px 0px;
	padding-left: 10px;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-body tr div.permission-name-column::before {
	font-family: "Material Icons";
	font-size: 20px;
	content: "\e88e";
	dislay: block;
	color: #00577e;
	opacity: 0.6;
	margin-right: 10px;
	vertical-align: middle;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-body tr .permission-inactive {
	color: #c5c5c5;
}

.telenor .user-management-user-permissions-library-table.v-grid-user-management-user-permissions-library-table .v-grid-tablewrapper .v-grid-body tr .permission-inactive .v-checkbox {
	display: none;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs {
	padding: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item {
	margin: 0;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button {
	text-transform: none;
	box-sizing: border-box;
	position: relative;
	padding: 20px;
	color: #00577e;
	background-color: transparent;
	border: solid 0px transparent;
	border-bottom: 0px solid #00577e;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	top: auto;
	right: auto;
	width: 100%;
	height: 0px;
	background-color: #00577e;
	-webkit-transition: height 140ms;
	-moz-transition: height 140ms;
	transition: height 140ms;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button:hover, .telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button:active, .telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button:focus {
	background-color: transparent;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button:hover:after, .telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button:active:after, .telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button:focus:after {
	height: 4px;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item.v-slot-user-tabs-item-selected .v-button {
	color: #000000;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item.v-slot-user-tabs-item-selected .v-button:after {
	background-color: #000000;
	height: 4px;
}

.telenor .v-slot.v-slot-user-tabs > .user-tabs  > .v-slot-user-tabs-item .v-button.v-disabled:after {
	height: 0;
}

.telenor .v-text-area-with-counter .v-text-counter-info-area .v-text-counter {
	background: #00577e;
}

.telenor .statistics-bar.v-verticallayout-statistics-bar {
	display: block;
	width: 100%;
	background-color: #f2f2f2;
	box-shadow: 0 0 0.2em 0 rgba(0, 0, 0, 0.37);
}

.telenor .dcp-icon-color-info.v-icon, .telenor .dcp-icon-color-info .v-icon {
	color: #0063bb;
}

.telenor .dcp-icon-color-success.v-icon, .telenor .dcp-icon-color-success .v-icon {
	color: #86ba17;
}

.telenor .dcp-icon-color-warning.v-icon, .telenor .dcp-icon-color-warning .v-icon {
	color: #fabb00;
}

.telenor .dcp-icon-color-error.v-icon, .telenor .dcp-icon-color-error .v-icon {
	color: #e32119;
}

.telenor .dcp-icon-color-neutral.v-icon, .telenor .dcp-icon-color-neutral .v-icon {
	color: #b1b3b4;
}

.telenor .dcp-icon-color-theme-key.v-icon, .telenor .dcp-icon-color-theme-key .v-icon {
	color: #0091d2;
}

.telenor .dcp-icon-color-theme-action.v-icon, .telenor .dcp-icon-color-theme-action .v-icon {
	color: #00577e;
}

.telenor .dcp-icon-color-priority-critical.v-icon, .telenor .dcp-icon-color-priority-critical .v-icon {
	color: #e84e46;
}

.telenor .dcp-icon-color-priority-high.v-icon, .telenor .dcp-icon-color-priority-high .v-icon {
	color: #f8a24b;
}

.telenor .dcp-icon-color-priority-medium.v-icon, .telenor .dcp-icon-color-priority-medium .v-icon {
	color: #fac833;
}

.telenor .dcp-icon-color-priority-low.v-icon, .telenor .dcp-icon-color-priority-low .v-icon {
	color: #33527e;
}

.telenor .dcp-icon-color-nonthemed.v-icon, .telenor .dcp-icon-color-nonthemed .v-icon {
	color: #141414;
}

.telenor .dcp-icon-size-medium.v-icon, .telenor .dcp-icon-size-medium .v-icon {
	font-size: 1.6em;
}

.telenor .dcp-icon-size-large.v-icon, .telenor .dcp-icon-size-large .v-icon {
	font-size: 2em;
}

.telenor .dcp-icon-size-extra-large.v-icon, .telenor .dcp-icon-size-extra-large .v-icon {
	font-size: 3.6em;
}

.telenor .dcp-icon-size-extra-extra-large.v-icon, .telenor .dcp-icon-size-extra-extra-large .v-icon {
	font-size: 7.2em;
}

.telenor hr {
	width: 100%;
	height: 1px;
	padding: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0.12);
}

.telenor .Material\+Icons {
	font-family: "Material Icons";
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	text-align: center;
}

.telenor .v-widget {
	height: auto;
}

.telenor .v-slot-hidden {
	visibility: hidden;
}

.telenor .v-panel {
	border: none;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
}

.telenor .v-panel-caption {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.telenor .tooltip {
	white-space: normal;
}

.telenor .v-panel-content  > .v-margin-top {
	padding-top: 20px;
}

.telenor .v-panel-content  > .v-margin-right {
	padding-right: 20px;
}

.telenor .v-panel-content  > .v-margin-bottom {
	padding-bottom: 20px;
}

.telenor .v-panel-content  > .v-margin-left {
	padding-left: 20px;
}

.telenor .v-panel-borderless > div > [class*="-caption"] {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-icon {
	color: rgba(0, 0, 0, 0.54);
	font-weight: normal;
}

.telenor .v-tooltip {
	padding: 10px;
}

.telenor .v-link {
	color: #00577e;
	text-decoration: none;
}

.telenor .v-link:hover {
	color: #00577e;
}

.telenor .v-link a:hover {
	text-decoration: underline;
}

.telenor .v-label.dcp-icon {
	margin: 0px 8px;
}

.telenor .v-label.dcp-icon.error, .telenor .v-label.dcp-icon.rejected, .telenor .v-label.dcp-icon.timeout {
	color: #e32119;
}

.telenor .v-label.dcp-icon.check, .telenor .v-label.dcp-icon.approved {
	color: #00577e;
}

.telenor .v-slot-animate-to-hidden {
	opacity: 0;
	max-height: 0px;
	-webkit-animation: slideRightToHidden 1s;
	animation: slideRightToHidden 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.telenor .esim-row .v-slot > .v-widget {
	vertical-align: middle;
}

.telenor .esim-row .euicc-details-imsi-button {
	margin-top: -20px;
}

.telenor .esim-row .v-label {
	line-height: 16px;
}

.telenor .localizationtable-caption, .telenor .euiccstock-details-grid-caption {
	color: #202020;
	padding: 0;
	font-weight: bold;
	font-size: 14px;
	line-height: 16.8px;
	margin-top: 15px;
}

.telenor .euicc-agreement-ordereuiccs-button {
	text-transform: uppercase;
}

.telenor .device-type-image {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, 0.12);
	margin-right: 110px;
	margin-top: 10px;
}

.telenor .v-popupview-popup-dashboard-popup {
	padding: 0;
}

.telenor .v-popupview-popup-dashboard-popup  > .popupContent > .v-verticallayout {
	padding: 10px;
	text-align: right;
}

.telenor .v-popupview-popup-dashboard-popup  > .popupContent > .v-verticallayout .h2 {
	padding: 10px;
	margin: 0 0 0 -5px;
	padding-bottom: 20px;
}

.telenor .v-label.labelbutton.lb-clickable.lb-pencil {
	color: rgba(0, 0, 0, 0.87);
}

.telenor .v-label.labelbutton.lb-clickable.lb-pencil::after {
	content: "\e150";
	font-family: "Material Icons";
	color: #00577e;
}

.telenor .v-label.labelbutton.lb-clickable.lb-link {
	color: #00577e;
}

.telenor .v-label.labelbutton.lb-clickable.lb-underline {
	text-decoration: underline;
}

.telenor .v-timeline-widget-display {
	display: none;
}

.telenor .v-timeline-widget-browser-scale-label {
	top: 24px !important;
}

.telenor .ux-library-sample {
	padding: 20px;
	position: relative;
	background-color: transparent;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	margin: 5px 10px 5px 0;
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
}

.telenor .ux-library-sample:hover {
	background-color: rgba(255, 105, 180, 0.15);
	-webkit-transition-delay: 1.2s;
	-moz-transition-delay: 1.2s;
	transition-delay: 1.2s;
}

.telenor .ux-library-sample:before, .telenor .ux-library-sample:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.telenor .ux-library-sample:before {
	width: 100%;
	padding: 20px;
	padding-left: 10px;
	background-clip: content-box;
	box-sizing: border-box;
	border-left: solid 10px #0091d2;
}

.telenor .ux-library-sample:after {
	width: 10px;
	background-size: 40px 40px;
	background-repeat: repeat;
	background-color: transparent;
	background-image: -webkit-linear-gradient(-315deg, transparent 17%, rgba(255, 255, 255, 0.5) 17%, rgba(255, 255, 255, 0.5) 36%, transparent 36%, transparent 66.7%, rgba(255, 255, 255, 0.5) 66.7%, rgba(255, 255, 255, 0.5) 85%, transparent 85%);
	background-image: linear-gradient(45deg,transparent 17%, rgba(255, 255, 255, 0.5) 17%, rgba(255, 255, 255, 0.5) 36%, transparent 36%, transparent 66.7%, rgba(255, 255, 255, 0.5) 66.7%, rgba(255, 255, 255, 0.5) 85%, transparent 85%);
}

.telenor .ux-library-sample  > .v-slot {
	position: relative;
}

.telenor .ux-library-color-sample {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
	margin: 5px 10px 5px 0;
}

.telenor .ux-library-color-sample .v-label {
	white-space: normal;
}

.telenor .ux-library-color-sample .background, .telenor .ux-library-color-sample .text {
	width: 7em;
	height: 7em;
	padding: 1em;
	position: relative;
}

.telenor .ux-library-color-sample .background:after, .telenor .ux-library-color-sample .text:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 1em;
	right: 1em;
}

.telenor .ux-library-color-sample .sample-key.background:after, .telenor .ux-library-color-sample .sample-key.text:after {
	content: "#0091d2";
}

.telenor .ux-library-color-sample .sample-key.background {
	background-color: #0091d2;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-key.text {
	color: #0091d2;
}

.telenor .ux-library-color-sample .sample-action.background:after, .telenor .ux-library-color-sample .sample-action.text:after {
	content: "#00577e";
}

.telenor .ux-library-color-sample .sample-action.background {
	background-color: #00577e;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-action.text {
	color: #00577e;
}

.telenor .ux-library-color-sample .sample-header.background, .telenor .ux-library-color-sample .sample-header.text {
	width: 14em;
	height: 3.5em;
}

.telenor .ux-library-color-sample .sample-header.background, .telenor .ux-library-color-sample .sample-header.background:after, .telenor .ux-library-color-sample .sample-header.text, .telenor .ux-library-color-sample .sample-header.text:after {
	background-color: #fff;
	color: rgba(0, 0, 0, 0.87);
}

.telenor .ux-library-color-sample .sample-header.background:after, .telenor .ux-library-color-sample .sample-header.text:after {
	-webkit-box-shadow: 0 0 0.5em 0.5em #fff;
	box-shadow: 0 0 0.5em 0.5em #fff;
}

.telenor .ux-library-color-sample .sample-header.demo {
	font-size: 2em;
	width: 7em;
	height: 3.5em;
	padding: 0.5em;
	background-color: #00ACE7;
	color: #ffffff;
	line-height: 2.5em;
	font-weight: 100;
}

.telenor .ux-library-color-sample .sample-header.background:after {
	content: "#00ACE7";
}

.telenor .ux-library-color-sample .sample-header.text:after {
	content: "#ffffff";
}

.telenor .ux-library-color-sample .sample-info.background:after, .telenor .ux-library-color-sample .sample-info.text:after {
	content: "#0063bb";
}

.telenor .ux-library-color-sample .sample-info.background {
	background-color: #0063bb;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-info.text {
	color: #0063bb;
}

.telenor .ux-library-color-sample .sample-success.background:after, .telenor .ux-library-color-sample .sample-success.text:after {
	content: "#86ba17";
}

.telenor .ux-library-color-sample .sample-success.background {
	background-color: #86ba17;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-success.text {
	color: #86ba17;
}

.telenor .ux-library-color-sample .sample-warning.background:after, .telenor .ux-library-color-sample .sample-warning.text:after {
	content: "#fabb00";
}

.telenor .ux-library-color-sample .sample-warning.background {
	background-color: #fabb00;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-warning.text {
	color: #fabb00;
}

.telenor .ux-library-color-sample .sample-error.background:after, .telenor .ux-library-color-sample .sample-error.text:after {
	content: "#e32119";
}

.telenor .ux-library-color-sample .sample-error.background {
	background-color: #e32119;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-error.text {
	color: #e32119;
}

.telenor .ux-library-color-sample .sample-priority-critical.background:after, .telenor .ux-library-color-sample .sample-priority-critical.text:after {
	content: "#e84e46";
}

.telenor .ux-library-color-sample .sample-priority-critical.background {
	background-color: #e84e46;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-priority-critical.text {
	color: #e84e46;
}

.telenor .ux-library-color-sample .sample-priority-high.background:after, .telenor .ux-library-color-sample .sample-priority-high.text:after {
	content: "#f8a24b";
}

.telenor .ux-library-color-sample .sample-priority-high.background {
	background-color: #f8a24b;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-priority-high.text {
	color: #f8a24b;
}

.telenor .ux-library-color-sample .sample-priority-medium.background:after, .telenor .ux-library-color-sample .sample-priority-medium.text:after {
	content: "#fac833";
}

.telenor .ux-library-color-sample .sample-priority-medium.background {
	background-color: #fac833;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-priority-medium.text {
	color: #fac833;
}

.telenor .ux-library-color-sample .sample-priority-low.background:after, .telenor .ux-library-color-sample .sample-priority-low.text:after {
	content: "#33527e";
}

.telenor .ux-library-color-sample .sample-priority-low.background {
	background-color: #33527e;
	color: #fff;
}

.telenor .ux-library-color-sample .sample-priority-low.text {
	color: #33527e;
}