/**
 * 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/../../../../base/fonts/themeicons-webfont.eot);
    src: url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../base/fonts/themeicons-webfont.svg#ThemeIcons) format("svg");
}

.ThemeIcons {
    font-family: ThemeIcons;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    text-align: center;
}

@font-face {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    src: url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.eot);
    src: url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.woff) format("woff"), url(../valo/util/bourbon/css3/../../../../base/fonts/fontawesome-webfont.ttf) format("truetype"), url(../valo/util/bourbon/css3/../../../../base/fonts/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: 7px;
    }
        100% {
        width: 96%;
        height: 7px;
    }
    }

@-moz-keyframes v-progress-wait {
        0% {
        width: 90%;
        height: 4px;
    }
        3% {
        width: 91%;
        height: 7px;
    }
        100% {
        width: 96%;
        height: 7px;
    }
    }

@keyframes v-progress-wait {
        0% {
        width: 90%;
        height: 4px;
    }
        3% {
        width: 91%;
        height: 7px;
    }
        100% {
        width: 96%;
        height: 7px;
    }
    }

@-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
 */

.v-shadow, .v-shadow-window {
    display: none;
}

.v-ie8 .v-shadow, .v-ie8 .v-shadow-window {
    display: block;
}

.v-ie8 .v-shadow .top, .v-ie8 .v-shadow-window .top {
    position: absolute;
    top: -6px;
    right: 10px;
    bottom: 6px;
    left: -10px;
    background: black;
    filter: alpha(opacity=5) progid:DXImageTransform.Microsoft.blur(pixelradius=10, makeShadow=false);
}

.v-ie8 .v-shadow .top-left, .v-ie8 .v-shadow-window .top-left {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: black;
    filter: alpha(opacity=9) progid:DXImageTransform.Microsoft.blur(pixelradius=0, makeShadow=false);
}

/**
 * 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: -37px;
    }
    }

@-moz-keyframes valo-grid-editor-footer-animate-in {
        0% {
        margin-top: -37px;
    }
    }

@keyframes valo-grid-editor-footer-animate-in {
        0% {
        margin-top: -37px;
    }
    }

@-webkit-keyframes valo-grid-editor-footer-animate-in-alt {
        0% {
        margin-bottom: -38px;
    }
        100% {
        margin-bottom: -1px;
    }
    }

@-moz-keyframes valo-grid-editor-footer-animate-in-alt {
        0% {
        margin-bottom: -38px;
    }
        100% {
        margin-bottom: -1px;
    }
    }

@keyframes valo-grid-editor-footer-animate-in-alt {
        0% {
        margin-bottom: -38px;
    }
        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
 */

/**
 *
 *
 * @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: "7.6.7";
}

.v-widget {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.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 {
    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 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.v-tabsheet-content {
    position: relative;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-top {
    padding-top: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-right {
    padding-right: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-bottom {
    padding-bottom: 12px;
}

.v-tabsheet-content  > div > .v-scrollable  > .v-margin-left {
    padding-left: 12px;
}

.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 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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;
}

.portalclientestheme .botonBotoneraDetalles {
    margin-top: -7px;
}

.portalclientestheme .v-button-botonBotoneraDetalles {
    margin-top: -7px;
}

.portalclientestheme.v-app, .portalclientestheme.v-app-loading {
    font: 300 16px/1.55 "Open Sans", sans-serif;
    color: #464646;
    background-color: #fafafa;
    cursor: default;
}

.portalclientestheme .v-app-loading {
    width: 100%;
    height: 100%;
    background: #fafafa;
}

.portalclientestheme .v-app-loading:before {
    content: "";
    position: fixed;
    z-index: 100;
    width: 100% !important;
    height: 100% !important;
    top: -1%;
    right: 7px;
    background: transparent url(images/preloader.gif) no-repeat 50%/80px 80px !important;
}

.portalclientestheme .v-loading-indicator {
    position: fixed !important;
    z-index: 99999;
    left: 0;
    right: auto;
    top: 0;
    width: 50%;
    opacity: 1;
    height: 4px;
    background-color: #197de1;
    pointer-events: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation: v-progress-start 1000ms 200ms both;
    -moz-animation: v-progress-start 1000ms 200ms both;
    animation: v-progress-start 1000ms 200ms both;
}

.portalclientestheme .v-loading-indicator[style*="none"] {
    display: block !important;
    width: 100% !important;
    opacity: 0;
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
    -webkit-transition: opacity 500ms 300ms, width 300ms;
    -moz-transition: opacity 500ms 300ms, width 300ms;
    transition: opacity 500ms 300ms, width 300ms;
}

.portalclientestheme .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 .portalclientestheme .v-loading-indicator-delay {
    width: 50%;
}

.portalclientestheme .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 .portalclientestheme .v-loading-indicator-wait {
    width: 90%;
}

.v-ie8 .portalclientestheme .v-loading-indicator, .v-ie8 .portalclientestheme .v-loading-indicator-delay, .v-ie8 .portalclientestheme .v-loading-indicator-wait, .v-ie9 .portalclientestheme .v-loading-indicator, .v-ie9 .portalclientestheme .v-loading-indicator-delay, .v-ie9 .portalclientestheme .v-loading-indicator-wait {
    width: 145px !important;
    height: 140px;
    padding: 9px;
    /*background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50%;*/
    background: #fff url(images/preloader.gif) no-repeat 50% !important;
    border-radius: 9px;
    top: 9px;
    right: 9px;
    left: auto;
    filter: alpha(opacity=50);
}

.v-ie8 .portalclientestheme .v-loading-indicator[style*="none"], .v-ie8 .portalclientestheme .v-loading-indicator-delay[style*="none"], .v-ie8 .portalclientestheme .v-loading-indicator-wait[style*="none"], .v-ie9 .portalclientestheme .v-loading-indicator[style*="none"], .v-ie9 .portalclientestheme .v-loading-indicator-delay[style*="none"], .v-ie9 .portalclientestheme .v-loading-indicator-wait[style*="none"] {
    display: none !important;
}

.v-ie8 .portalclientestheme .v-loading-indicator-wait, .v-ie9 .portalclientestheme .v-loading-indicator-wait {
    filter: alpha(opacity=100);
}

.portalclientestheme .v-scrollable:focus {
    outline: none;
}

.portalclientestheme img.v-icon {
    vertical-align: middle;
}

.portalclientestheme .v-caption {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
}

.portalclientestheme .v-caption-on-left .v-caption, .portalclientestheme .v-caption-on-right .v-caption {
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-icon + .v-captiontext, .portalclientestheme .v-icon + span {
    margin-left: 7px;
}

.portalclientestheme .v-icon + .v-captiontext:empty, .portalclientestheme .v-icon + span:empty {
    margin-left: 0;
}

.portalclientestheme .v-errorindicator {
    color: #ed473b;
    font-weight: 600;
    width: 19px;
    text-align: center;
}

.portalclientestheme .v-errorindicator:before {
    content: "!";
}

.portalclientestheme .v-required-field-indicator {
    color: #ed473b;
    padding: 0 0.2em;
}

.portalclientestheme select {
    font: inherit;
    font-weight: 400;
    line-height: inherit;
    padding: 5px;
    margin: 0;
    border-radius: 9px;
    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;
}

.portalclientestheme select:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme button {
    font: inherit;
    font-weight: 400;
    line-height: 1.55;
}

.portalclientestheme a {
    cursor: pointer;
    color: #197de1;
    text-decoration: underline;
    font-weight: inherit;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme a:hover {
    color: #4396ea;
}

.portalclientestheme a.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-disabled {
    cursor: default !important;
}

.portalclientestheme .v-drag-element {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    overflow: hidden;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-tooltip {
    background-color: #323232;
    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: 5px 9px;
    border-radius: 3px;
    max-width: 35em;
    overflow: hidden !important;
    font-size: 14px;
}

.portalclientestheme .v-tooltip div[style*="width"] {
    width: auto !important;
}

.portalclientestheme .v-tooltip .v-errormessage {
    background-color: white;
    background-color: #fff;
    color: #ed473b;
    margin: -5px -9px;
    padding: 5px 9px;
    max-height: 10em;
    overflow: auto;
    font-weight: 400;
}

.portalclientestheme .v-tooltip .v-errormessage h2:only-child {
    font: inherit;
    line-height: inherit;
}

.portalclientestheme .v-tooltip .v-tooltip-text {
    max-height: 10em;
    overflow: auto;
    margin-top: 10px;
}

.portalclientestheme .v-tooltip .v-errormessage[aria-hidden="true"] + .v-tooltip-text {
    margin-top: 0;
}

.portalclientestheme .v-tooltip h1, .portalclientestheme .v-tooltip h2, .portalclientestheme .v-tooltip h3, .portalclientestheme .v-tooltip h4 {
    color: inherit;
}

.portalclientestheme .v-contextmenu {
    padding: 4px 4px;
    border-radius: 4px;
    background-color: white;
    color: #474747;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-contextmenu table {
    border-spacing: 0;
}

.portalclientestheme .v-contextmenu .gwt-MenuItem {
    cursor: pointer;
    line-height: 27px;
    padding: 0 20px 0 10px;
    border-radius: 3px;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    display: block;
}

.portalclientestheme .v-contextmenu .gwt-MenuItem:active:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0957a6;
    opacity: 0.15;
    filter: alpha(opacity=15.0) ;
    pointer-events: none;
    border-radius: inherit;
}

.portalclientestheme .v-contextmenu .gwt-MenuItem .v-icon {
    max-height: 27px;
    margin-right: 5px;
    min-width: 1em;
}

.portalclientestheme .v-contextmenu .gwt-MenuItem-selected {
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-reconnect-dialog {
    color: white;
    top: 12px;
    right: 12px;
    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: 12px 15px;
    background-color: #444;
    background-color: rgba(68, 68, 68, 0.9);
    line-height: 22px;
    text-align: center;
}

.portalclientestheme .v-reconnect-dialog .text {
    display: inline-block;
    padding-left: 10px;
}

.portalclientestheme .v-reconnect-dialog .spinner {
    height: 24px !important;
    width: 24px !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid rgba(110, 171, 36, 0.2);
    border-top-color: #6EAB24;
    border-right-color: #6EAB24;
    border-radius: 100%;
    -webkit-animation: v-rotate-360 500ms infinite linear;
    -moz-animation: v-rotate-360 500ms infinite linear;
    animation: v-rotate-360 500ms infinite linear;
    pointer-events: none;
    display: none;
    vertical-align: middle;
}

.v-ie8 .portalclientestheme .v-reconnect-dialog .spinner, .v-ie9 .portalclientestheme .v-reconnect-dialog .spinner {
    border: none;
    border-radius: 9px;
    /*background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;*/
    background: #fff url(images/preloader.gif) no-repeat 50% 50% !important;
    background-size: 80%;
}

.v-ie8 .portalclientestheme .v-reconnect-dialog .spinner {
    min-width: 30px;
    min-height: 30px;
}

.portalclientestheme .v-reconnect-dialog.active .spinner {
    display: inline-block;
}

.portalclientestheme .v-absolutelayout-wrapper {
    position: absolute;
}

.portalclientestheme .v-absolutelayout-margin, .portalclientestheme .v-absolutelayout-canvas {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme .v-absolutelayout.v-has-height > div, .portalclientestheme .v-absolutelayout.v-has-height .v-absolutelayout-margin {
    height: 100%;
}

.portalclientestheme .v-absolutelayout.v-has-height > div, .portalclientestheme .v-absolutelayout.v-has-width .v-absolutelayout-margin {
    width: 100%;
}

.portalclientestheme .v-margin-top {
    padding-top: 37px;
}

.portalclientestheme .v-margin-right {
    padding-right: 37px;
}

.portalclientestheme .v-margin-bottom {
    padding-bottom: 37px;
}

.portalclientestheme .v-margin-left {
    padding-left: 37px;
}

.portalclientestheme .v-spacing {
    width: 12px;
    height: 12px;
}

.portalclientestheme .v-verticallayout-well, .portalclientestheme .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: 9px;
    border: 1px solid #c5c5c5;
}

.portalclientestheme .v-verticallayout-well  > div > [class*="-caption"], .portalclientestheme .v-horizontallayout-well  > div > [class*="-caption"] {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-verticallayout-well  > .v-margin-top, .portalclientestheme .v-horizontallayout-well  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-verticallayout-well  > .v-margin-right, .portalclientestheme .v-horizontallayout-well  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-verticallayout-well  > .v-margin-bottom, .portalclientestheme .v-horizontallayout-well  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-verticallayout-well  > .v-margin-left, .portalclientestheme .v-horizontallayout-well  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-verticallayout-card, .portalclientestheme .v-horizontallayout-card {
    background: white;
    color: #474747;
    border-radius: 9px;
    border: 1px solid #d5d5d5;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-verticallayout-card  > .v-margin-top, .portalclientestheme .v-horizontallayout-card  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-verticallayout-card  > .v-margin-right, .portalclientestheme .v-horizontallayout-card  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-verticallayout-card  > .v-margin-bottom, .portalclientestheme .v-horizontallayout-card  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-verticallayout-card  > .v-margin-left, .portalclientestheme .v-horizontallayout-card  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-horizontallayout-wrapping {
    white-space: normal !important;
}

.portalclientestheme .v-horizontallayout-wrapping > .v-spacing + .v-slot, .portalclientestheme .v-horizontallayout-wrapping > .v-slot:first-child {
    margin-bottom: 12px;
}

.portalclientestheme .v-horizontallayout-wrapping > .v-slot:first-child:last-child {
    margin-bottom: 0;
}

.portalclientestheme .v-button {
    position: relative;
    text-align: center;
    white-space: nowrap;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 9px;
    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);
}

.portalclientestheme .v-button:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.portalclientestheme .v-button > div {
    vertical-align: middle;
}

.v-sa .portalclientestheme .v-button:before {
    height: 110%;
}

.v-ff .portalclientestheme .v-button:before {
    height: 107%;
}

.v-ie .portalclientestheme .v-button:before {
    margin-top: 4px;
}

.portalclientestheme .v-button:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
}

.portalclientestheme .v-button:focus:after {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.portalclientestheme .v-button.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-button.v-disabled:after {
    display: none;
}

.portalclientestheme .v-button:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button:hover:after {
    background-color: rgba(186, 186, 186, 0.1);
}

.portalclientestheme .v-button:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-button:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .v-button-primary {
    height: 37px;
    padding: 0 18px;
    color: #ecf2f8;
    font-weight: 400;
    
    
    border-radius: 9px;
    border: 1px solid #1362b1;
    border-top-color: #156ab3;
    border-bottom-color: #1156a8;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    -webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca, 0 2px 3px rgba(0, 0, 0, 0.05);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
    padding: 0 19px;
    font-weight: bold;
    min-width: 81px;
}

.portalclientestheme .v-button-primary:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button-primary:hover:after {
    background-color: rgba(90, 163, 237, 0.1);
}

.portalclientestheme .v-button-primary:focus:after {
    border: inherit;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-button-primary:active:after {
    background-color: rgba(2, 62, 122, 0.2);
}

.v-ie8 .portalclientestheme .v-button-primary {
    min-width: 43px;
}

.portalclientestheme .v-button-friendly {
    height: 37px;
    padding: 0 18px;
    color: #eaf4e9;
    font-weight: 400;
    
    
    border-radius: 9px;
    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);
}

.portalclientestheme .v-button-friendly:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button-friendly:hover:after {
    background-color: rgba(65, 211, 48, 0.1);
}

.portalclientestheme .v-button-friendly:focus:after {
    border: inherit;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-button-friendly:active:after {
    background-color: rgba(14, 86, 6, 0.2);
}

.portalclientestheme .v-button-danger {
    height: 37px;
    padding: 0 18px;
    color: #f9f0ef;
    font-weight: 400;
    
    
    border-radius: 9px;
    border: 1px solid #bb382e;
    border-top-color: #bc3c31;
    border-bottom-color: #b13028;
    background-color: #ed473b;
    background-image: -webkit-linear-gradient(top, #ee4c3f 2%, #e13e33 98%);
    background-image: linear-gradient(to bottom,#ee4c3f 2%, #e13e33 98%);
    -webkit-box-shadow: inset 0 1px 0 #ef786f, inset 0 -1px 0 #da3c31, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 #ef786f, inset 0 -1px 0 #da3c31, 0 2px 3px rgba(0, 0, 0, 0.05);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-button-danger:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button-danger:hover:after {
    background-color: rgba(243, 137, 129, 0.1);
}

.portalclientestheme .v-button-danger:focus:after {
    border: inherit;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-button-danger:active:after {
    background-color: rgba(146, 12, 2, 0.2);
}

.portalclientestheme .v-button-borderless {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    color: inherit;
}

.portalclientestheme .v-button-borderless:hover:after {
    background: transparent;
}

.portalclientestheme .v-button-borderless:active {
    opacity: 0.7;
    filter: alpha(opacity=70) ;
}

.portalclientestheme .v-button-borderless:active:after {
    background: transparent;
}

.portalclientestheme .v-button-borderless-colored {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    color: #197de1;
}

.portalclientestheme .v-button-borderless-colored:hover {
    color: #4396ea;
}

.portalclientestheme .v-button-borderless-colored:hover:after {
    background: transparent;
}

.portalclientestheme .v-button-borderless-colored:active {
    opacity: 0.7;
    filter: alpha(opacity=70) ;
}

.portalclientestheme .v-button-borderless-colored:active:after {
    background: transparent;
}

.portalclientestheme .v-button-quiet {
    visibility: hidden;
}

.portalclientestheme .v-button-quiet:focus, .portalclientestheme .v-button-quiet:hover {
    visibility: visible;
}

.portalclientestheme .v-button-quiet [class*="wrap"] {
    visibility: visible;
}

.portalclientestheme .v-button-quiet [class*="caption"] {
    display: inline-block;
}

.portalclientestheme .v-button-link {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    color: #197de1;
    text-decoration: underline;
    font-weight: inherit;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-button-link:hover:after {
    background: transparent;
}

.portalclientestheme .v-button-link:active {
    opacity: 0.7;
    filter: alpha(opacity=70) ;
}

.portalclientestheme .v-button-link:active:after {
    background: transparent;
}

.portalclientestheme .v-button-link:hover {
    color: #4396ea;
}

.portalclientestheme .v-button-link.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-button-tiny {
    height: 28px;
    padding: 0 15px;
    
    
    font-size: 12px;
    
    border-radius: 9px;
}

.portalclientestheme .v-button-tiny:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button-small {
    height: 31px;
    padding: 0 16px;
    
    
    font-size: 14px;
    
    border-radius: 9px;
}

.portalclientestheme .v-button-small:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button-large {
    height: 44px;
    padding: 0 21px;
    
    
    font-size: 20px;
    
    border-radius: 9px;
}

.portalclientestheme .v-button-large:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button-huge {
    height: 59px;
    padding: 0 28px;
    
    
    font-size: 26px;
    
    border-radius: 9px;
}

.portalclientestheme .v-button-huge:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-button-icon-align-right [class*="wrap"] {
    display: inline-block;
}

.portalclientestheme .v-button-icon-align-right .v-icon {
    float: right;
    margin-left: 13px;
}

.portalclientestheme .v-button-icon-align-right .v-icon  + span:not(:empty) {
    margin-left: 0;
}

.portalclientestheme .v-button-icon-align-top {
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
}

.portalclientestheme .v-button-icon-align-top [class*="wrap"] {
    display: inline-block;
}

.portalclientestheme .v-button-icon-align-top .v-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.portalclientestheme .v-button-icon-align-top .v-icon  + span:not(:empty) {
    margin-top: 7px;
    margin-left: 0;
}

.portalclientestheme .v-button-icon-only {
    width: 37px;
    padding: 0;
}

.portalclientestheme .v-button-icon-only.v-button-tiny {
    width: 28px;
}

.portalclientestheme .v-button-icon-only.v-button-small {
    width: 31px;
}

.portalclientestheme .v-button-icon-only.v-button-large {
    width: 44px;
}

.portalclientestheme .v-button-icon-only.v-button-huge {
    width: 59px;
}

.portalclientestheme .v-button-icon-only .v-button-caption {
    display: none;
}

.portalclientestheme .v-checkbox {
    position: relative;
    line-height: 19px;
    white-space: nowrap;
}

.portalclientestheme .v-checkbox.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-checkbox {
    padding-left: 25px;
}

:root .portalclientestheme .v-checkbox label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .v-checkbox > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    left: 0.2em;
    top: 0.2em;
    z-index: 0;
    margin: 0;
}

:root .portalclientestheme .v-checkbox > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-checkbox > input ~ label:before, :root .portalclientestheme .v-checkbox > input ~ label:after {
    content: "";
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}

:root .portalclientestheme .v-checkbox > input ~ label:before {
    height: 18.5px;
    padding: 0 10px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 6px;
    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 .portalclientestheme .v-checkbox > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-checkbox > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-checkbox > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-checkbox > .v-icon, .portalclientestheme .v-checkbox > label .v-icon {
    margin: 0 6px 0 3px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-checkbox.v-disabled  > label, .portalclientestheme .v-checkbox.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-checkbox.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-checkbox.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-checkbox.v-readonly  > label, .portalclientestheme .v-checkbox.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-checkbox.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-checkbox.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-checkbox.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-checkbox-small {
    position: relative;
    line-height: 16px;
    white-space: nowrap;
    font-size: 14px;
}

.portalclientestheme .v-checkbox-small.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-checkbox-small {
    padding-left: 21px;
}

:root .portalclientestheme .v-checkbox-small label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .v-checkbox-small > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    left: 0.2em;
    top: 0.2em;
    z-index: 0;
    margin: 0;
}

:root .portalclientestheme .v-checkbox-small > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-checkbox-small > input ~ label:before, :root .portalclientestheme .v-checkbox-small > input ~ label:after {
    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: 0;
    left: 0;
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
}

:root .portalclientestheme .v-checkbox-small > input ~ label:before {
    height: 15.5px;
    padding: 0 8px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 5px;
    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 .portalclientestheme .v-checkbox-small > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-checkbox-small > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-checkbox-small > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-checkbox-small > .v-icon, .portalclientestheme .v-checkbox-small > label .v-icon {
    margin: 0 5px 0 3px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-checkbox-small.v-disabled  > label, .portalclientestheme .v-checkbox-small.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-checkbox-small.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-checkbox-small.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-checkbox-small.v-readonly  > label, .portalclientestheme .v-checkbox-small.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-checkbox-small.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-checkbox-small.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-checkbox-small.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-checkbox-large {
    position: relative;
    line-height: 22px;
    white-space: nowrap;
    font-size: 20px;
}

.portalclientestheme .v-checkbox-large.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-checkbox-large {
    padding-left: 29px;
}

:root .portalclientestheme .v-checkbox-large label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .v-checkbox-large > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    left: 0.2em;
    top: 0.2em;
    z-index: 0;
    margin: 0;
}

:root .portalclientestheme .v-checkbox-large > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-checkbox-large > input ~ label:before, :root .portalclientestheme .v-checkbox-large > input ~ label:after {
    content: "";
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 7px;
    font-size: 15px;
    text-align: center;
}

:root .portalclientestheme .v-checkbox-large > input ~ label:before {
    height: 22px;
    padding: 0 11px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 7px;
    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: 22px;
}

:root .portalclientestheme .v-checkbox-large > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-checkbox-large > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-checkbox-large > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-checkbox-large > .v-icon, .portalclientestheme .v-checkbox-large > label .v-icon {
    margin: 0 7px 0 4px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-checkbox-large.v-disabled  > label, .portalclientestheme .v-checkbox-large.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-checkbox-large.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-checkbox-large.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-checkbox-large.v-readonly  > label, .portalclientestheme .v-checkbox-large.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-checkbox-large.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-checkbox-large.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-checkbox-large.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect {
    position: relative;
    width: 185px;
    height: 37px;
    border-radius: 4px;
    white-space: nowrap;
}

.portalclientestheme .v-filterselect [class*="input"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 37px;
    border-radius: 4px;
    padding: 4px 9px;
    border: 1px solid #c5c5c5;
    background: white;
    color: #474747;
    -webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    width: 100% !important;
    height: 100%;
    padding-right: 38px;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-filterselect [class*="input"], .v-ie9 .portalclientestheme .v-filterselect [class*="input"] {
    line-height: 37px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-filterselect [class*="input"].v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect [class*="input"]:focus {
    outline: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-filterselect [class*="input"][class*="prompt"] {
    color: #a3a3a3;
}

.portalclientestheme .v-filterselect .v-icon + [class*="input"] {
    padding-left: 37px;
}

.portalclientestheme .v-filterselect img.v-icon {
    max-height: 37px;
    margin-left: 9px;
}

.portalclientestheme .v-filterselect span.v-icon {
    color: #474747;
    width: 37px;
    line-height: 1;
    padding-top: 0.12em;
}

.portalclientestheme .v-filterselect[class*="prompt"] > [class*="input"] {
    color: #a3a3a3;
}

.portalclientestheme .v-filterselect [class$="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    position: absolute;
    width: 37px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    border-left: 1px solid #e4e4e4;
    color: #a3a3a3;
    border-radius: 0 8px 8px 0;
}

.v-ie8 .portalclientestheme .v-filterselect [class$="button"] {
    background-color: white;
}

.portalclientestheme .v-filterselect [class$="button"]:before {
    font-family: ThemeIcons;
    content: "\f078";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
    position: absolute;
    width: 37px;
    text-align: center;
    top: 50%;
    line-height: 1;
    margin-top: -0.47em;
}

.portalclientestheme .v-filterselect [class$="button"]:hover:before {
    color: #474747;
}

.portalclientestheme .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);
}

.portalclientestheme .v-filterselect.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect.v-disabled [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect.v-disabled [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect.v-readonly [class*="input"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-filterselect.v-readonly [class*="input"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-filterselect.v-readonly [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect.v-readonly [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect .v-icon {
    position: absolute;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-error .v-filterselect-input {
    border-color: #ed473b !important;
    background: #fffbfb;
    color: #6c2621;
}

.portalclientestheme .v-filterselect-error .v-filterselect-button {
    color: #ed473b;
    border-color: #ed473b;
}

.portalclientestheme .v-filterselect-suggestpopup {
    margin-top: 5px !important;
}

.portalclientestheme .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;
}

.portalclientestheme .v-filterselect-suggestpopup [class$="suggestmenu"] {
    padding: 4px 4px;
    border-radius: 4px;
    background-color: white;
    color: #474747;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.portalclientestheme .v-filterselect-suggestpopup [class$="suggestmenu"][style*="height"] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.portalclientestheme .v-filterselect-suggestpopup table, .portalclientestheme .v-filterselect-suggestpopup tbody, .portalclientestheme .v-filterselect-suggestpopup tr, .portalclientestheme .v-filterselect-suggestpopup td {
    display: block;
}

.portalclientestheme .v-filterselect-suggestpopup .gwt-MenuItem {
    cursor: pointer;
    line-height: 27px;
    padding: 0 20px 0 10px;
    border-radius: 3px;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
}

.portalclientestheme .v-filterselect-suggestpopup .gwt-MenuItem:active:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0957a6;
    opacity: 0.15;
    filter: alpha(opacity=15.0) ;
    pointer-events: none;
    border-radius: inherit;
}

.portalclientestheme .v-filterselect-suggestpopup .gwt-MenuItem .v-icon {
    max-height: 27px;
    margin-right: 5px;
    min-width: 1em;
}

.portalclientestheme .v-filterselect-suggestpopup .gwt-MenuItem-selected {
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-filterselect-suggestpopup [class$="status"] {
    position: absolute;
    right: 9px;
    background: rgba(212, 212, 212, 0.9);
    color: #3b3b3b;
    border-radius: 0 0 9px 9px;
    height: 23px;
    bottom: -23px;
    font-size: 12px;
    line-height: 23px;
    padding: 0 6px;
    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;
}

.portalclientestheme .v-filterselect-suggestpopup [class$="status"]  > * {
    color: #3b3b3b;
    text-decoration: none;
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="page"] {
    position: absolute;
    z-index: 3;
    right: 0;
    opacity: 0.2;
    filter: alpha(opacity=20) ;
    cursor: pointer;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms;
    width: 25px;
    height: 25px;
    line-height: 25px;
    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;
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="page"]:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="page"]:hover {
    opacity: 1;
    filter: none ;
    background: rgba(250, 250, 250, 0.5);
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="page"]:hover:after {
    top: -10px;
    bottom: -10px;
    left: -20px;
    right: -20px;
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="page"] span {
    display: none;
}

.portalclientestheme .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);
}

.portalclientestheme .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 9px 0 9px;
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="prev"]:before {
    content: "\f0d8";
}

.portalclientestheme .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: 9px 0 9px 0;
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="next"]:before {
    content: "\f0d7";
}

.portalclientestheme .v-filterselect-suggestpopup div[class*="-off"] {
    display: none;
}

.portalclientestheme .v-filterselect-no-input {
    cursor: pointer;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 9px;
}

.portalclientestheme .v-filterselect-no-input [class*="input"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    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;
}

.portalclientestheme .v-filterselect-no-input [class*="input"]:focus {
    outline: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-filterselect-no-input [class$="button"] {
    border-left: none !important;
}

.portalclientestheme .v-filterselect-no-input:hover [class$="button"]:before {
    color: inherit;
}

.portalclientestheme .v-filterselect-borderless .v-filterselect-input {
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
}

.portalclientestheme .v-filterselect-borderless .v-filterselect-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-filterselect-borderless .v-filterselect-input[class*="prompt"] {
    color: inherit;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect-borderless .v-filterselect-button {
    border: none;
    color: inherit;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect-borderless.v-filterselect-prompt .v-filterselect-input {
    color: inherit;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect-align-right input {
    text-align: right;
}

.portalclientestheme .v-filterselect-align-center input {
    text-align: center;
}

.portalclientestheme .v-filterselect-tiny {
    height: 28px;
    
    font-size: 12px;
}

.portalclientestheme .v-filterselect-tiny [class*="input"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    margin: 0;
    font: inherit;
    
    font-weight: 400;
    line-height: normal;
    height: 28px;
    
    padding: 3px 5px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    width: 100% !important;
    height: 100%;
    padding-right: 29px;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-filterselect-tiny [class*="input"], .v-ie9 .portalclientestheme .v-filterselect-tiny [class*="input"] {
    line-height: 28px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-filterselect-tiny .v-icon + [class*="input"] {
    padding-left: 28px;
}

.portalclientestheme .v-filterselect-tiny img.v-icon {
    max-height: 28px;
    margin-left: 5px;
}

.portalclientestheme .v-filterselect-tiny span.v-icon {
    
    width: 28px;
    line-height: 1;
    padding-top: 0.12em;
}

.portalclientestheme .v-filterselect-tiny [class$="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    position: absolute;
    width: 28px;
    border-radius: 0 9px 9px 0;
}

.portalclientestheme .v-filterselect-tiny [class$="button"]:before {
    font-family: ThemeIcons;
    content: "\f078";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
    position: absolute;
    width: 28px;
    text-align: center;
    top: 50%;
    line-height: 1;
    margin-top: -0.47em;
}

.portalclientestheme .v-filterselect-tiny [class$="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-filterselect-tiny.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect-tiny.v-disabled [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-tiny.v-disabled [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect-tiny.v-readonly [class*="input"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-filterselect-tiny.v-readonly [class*="input"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-filterselect-tiny.v-readonly [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-tiny.v-readonly [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect-compact, .portalclientestheme .v-filterselect-small {
    height: 31px;
    
}

.portalclientestheme .v-filterselect-compact [class*="input"], .portalclientestheme .v-filterselect-small [class*="input"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 31px;
    
    padding: 3px 6px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    width: 100% !important;
    height: 100%;
    padding-right: 32px;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-filterselect-compact [class*="input"], .v-ie9 .portalclientestheme .v-filterselect-compact [class*="input"], .v-ie8 .portalclientestheme .v-filterselect-small [class*="input"], .v-ie9 .portalclientestheme .v-filterselect-small [class*="input"] {
    line-height: 31px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-filterselect-compact .v-icon + [class*="input"], .portalclientestheme .v-filterselect-small .v-icon + [class*="input"] {
    padding-left: 31px;
}

.portalclientestheme .v-filterselect-compact img.v-icon, .portalclientestheme .v-filterselect-small img.v-icon {
    max-height: 31px;
    margin-left: 6px;
}

.portalclientestheme .v-filterselect-compact span.v-icon, .portalclientestheme .v-filterselect-small span.v-icon {
    
    width: 31px;
    line-height: 1;
    padding-top: 0.12em;
}

.portalclientestheme .v-filterselect-compact [class$="button"], .portalclientestheme .v-filterselect-small [class$="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    position: absolute;
    width: 31px;
    border-radius: 0 9px 9px 0;
}

.portalclientestheme .v-filterselect-compact [class$="button"]:before, .portalclientestheme .v-filterselect-small [class$="button"]:before {
    font-family: ThemeIcons;
    content: "\f078";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
    position: absolute;
    width: 31px;
    text-align: center;
    top: 50%;
    line-height: 1;
    margin-top: -0.47em;
}

.portalclientestheme .v-filterselect-compact [class$="button"]:active:after, .portalclientestheme .v-filterselect-small [class$="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-filterselect-compact.v-disabled, .portalclientestheme .v-filterselect-small.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect-compact.v-disabled [class$="button"], .portalclientestheme .v-filterselect-small.v-disabled [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-compact.v-disabled [class$="button"]:active:after, .portalclientestheme .v-filterselect-small.v-disabled [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect-compact.v-readonly [class*="input"], .portalclientestheme .v-filterselect-small.v-readonly [class*="input"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-filterselect-compact.v-readonly [class*="input"]:focus, .portalclientestheme .v-filterselect-small.v-readonly [class*="input"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-filterselect-compact.v-readonly [class$="button"], .portalclientestheme .v-filterselect-small.v-readonly [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-compact.v-readonly [class$="button"]:active:after, .portalclientestheme .v-filterselect-small.v-readonly [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect-small {
    font-size: 14px;
}

.portalclientestheme .v-filterselect-large {
    height: 44px;
    
    font-size: 20px;
}

.portalclientestheme .v-filterselect-large [class*="input"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 44px;
    
    padding: 5px 8px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    width: 100% !important;
    height: 100%;
    padding-right: 45px;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-filterselect-large [class*="input"], .v-ie9 .portalclientestheme .v-filterselect-large [class*="input"] {
    line-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-filterselect-large .v-icon + [class*="input"] {
    padding-left: 44px;
}

.portalclientestheme .v-filterselect-large img.v-icon {
    max-height: 44px;
    margin-left: 8px;
}

.portalclientestheme .v-filterselect-large span.v-icon {
    
    width: 44px;
    line-height: 1;
    padding-top: 0.12em;
}

.portalclientestheme .v-filterselect-large [class$="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    position: absolute;
    width: 44px;
    border-radius: 0 9px 9px 0;
}

.portalclientestheme .v-filterselect-large [class$="button"]:before {
    font-family: ThemeIcons;
    content: "\f078";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
    position: absolute;
    width: 44px;
    text-align: center;
    top: 50%;
    line-height: 1;
    margin-top: -0.47em;
}

.portalclientestheme .v-filterselect-large [class$="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-filterselect-large.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect-large.v-disabled [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-large.v-disabled [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect-large.v-readonly [class*="input"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-filterselect-large.v-readonly [class*="input"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-filterselect-large.v-readonly [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-large.v-readonly [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect-huge {
    height: 59px;
    
    font-size: 26px;
}

.portalclientestheme .v-filterselect-huge [class*="input"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 59px;
    
    padding: 7px 10px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    width: 100% !important;
    height: 100%;
    padding-right: 60px;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-filterselect-huge [class*="input"], .v-ie9 .portalclientestheme .v-filterselect-huge [class*="input"] {
    line-height: 59px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-filterselect-huge .v-icon + [class*="input"] {
    padding-left: 59px;
}

.portalclientestheme .v-filterselect-huge img.v-icon {
    max-height: 59px;
    margin-left: 10px;
}

.portalclientestheme .v-filterselect-huge span.v-icon {
    
    width: 59px;
    line-height: 1;
    padding-top: 0.12em;
}

.portalclientestheme .v-filterselect-huge [class$="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    position: absolute;
    width: 59px;
    border-radius: 0 9px 9px 0;
}

.portalclientestheme .v-filterselect-huge [class$="button"]:before {
    font-family: ThemeIcons;
    content: "\f078";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
    position: absolute;
    width: 59px;
    text-align: center;
    top: 50%;
    line-height: 1;
    margin-top: -0.47em;
}

.portalclientestheme .v-filterselect-huge [class$="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-filterselect-huge.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-filterselect-huge.v-disabled [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-huge.v-disabled [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .v-filterselect-huge.v-readonly [class*="input"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-filterselect-huge.v-readonly [class*="input"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-filterselect-huge.v-readonly [class$="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-filterselect-huge.v-readonly [class$="button"]:active:after {
    display: none;
}

.portalclientestheme .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: 9px;
    border: 1px solid #c5c5c5;
}

.portalclientestheme .v-csslayout-well  > div > [class*="-caption"] {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-csslayout-well  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-csslayout-well  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-csslayout-well  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-csslayout-well  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-csslayout-card {
    background: white;
    color: #474747;
    border-radius: 9px;
    border: 1px solid #d5d5d5;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-csslayout-card  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-csslayout-card  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-csslayout-card  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-csslayout-card  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-csslayout-v-component-group {
    white-space: nowrap;
    position: relative;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget ~ .v-widget:not(:last-child) {
    border-radius: 0;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget:first-child, .portalclientestheme .v-csslayout-v-component-group .v-caption:first-child + .v-widget {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget ~ .v-widget.first.first {
    border-radius: 9px 0 0 9px;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget ~ .v-widget.last.last {
    border-radius: 0 9px 9px 0;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget {
    vertical-align: middle;
    margin-left: -1px;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget:first-child {
    margin-left: 0;
}

.portalclientestheme .v-csslayout-v-component-group .v-widget:focus, .portalclientestheme .v-csslayout-v-component-group .v-widget[class*="focus"], .portalclientestheme .v-csslayout-v-component-group .v-widget [class*="focus"] {
    position: relative;
    z-index: 5;
}

.portalclientestheme .v-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.portalclientestheme .v-form-content {
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme [class*="spacing"] > tbody > [class*="row"] > td {
    padding-top: 12px;
}

.portalclientestheme [class*="spacing"] > tbody > [class*="firstrow"] > td {
    padding-top: 0;
}

.portalclientestheme [class*="margin-top"] > tbody > [class*="firstrow"] > td {
    padding-top: 37px;
}

.portalclientestheme [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
    padding-bottom: 37px;
}

.portalclientestheme [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
    padding-left: 37px;
}

.portalclientestheme [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .portalclientestheme [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .portalclientestheme [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
    left: 37px;
}

.portalclientestheme [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
    padding-right: 37px;
}

.portalclientestheme [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .portalclientestheme [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .portalclientestheme [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
    right: 37px;
}

.portalclientestheme .v-formlayout > table {
    border-spacing: 0;
    position: relative;
}

.portalclientestheme .v-formlayout.v-has-width > table, .portalclientestheme .v-formlayout.v-has-width .v-formlayout-contentcell {
    width: 100%;
}

.portalclientestheme .v-formlayout-error-indicator {
    width: 19px;
}

.portalclientestheme .v-formlayout-captioncell {
    vertical-align: top;
    line-height: 36px;
}

.portalclientestheme .v-formlayout-captioncell .v-caption {
    padding-bottom: 0;
}

.portalclientestheme .v-formlayout-captioncell .v-caption-h2, .portalclientestheme .v-formlayout-captioncell .v-caption-h3, .portalclientestheme .v-formlayout-captioncell .v-caption-h4 {
    height: 3em;
}

.portalclientestheme .v-formlayout-contentcell .v-checkbox, .portalclientestheme .v-formlayout-contentcell .v-radiobutton {
    font-weight: 400;
}

.portalclientestheme .v-formlayout-contentcell  > .v-label-h2, .portalclientestheme .v-formlayout-contentcell  > .v-label-h3, .portalclientestheme .v-formlayout-contentcell  > .v-label-h4 {
    position: absolute;
    left: 0;
    right: 0;
    width: auto !important;
    margin-top: -0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #dfdfdf;
}

.portalclientestheme .v-formlayout.light  > table {
    padding: 0;
}

.portalclientestheme .v-formlayout.light  > table > tbody > tr > td {
    padding-top: 0;
    height: 37px;
    border-bottom: 1px solid #eaeaea;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="lastrow"] > td {
    border-bottom: none;
}

.portalclientestheme .v-formlayout.light  > table > tbody > tr > [class*="captioncell"] {
    color: #7d7d7d;
    text-align: right;
    padding-left: 13px;
    line-height: 37px;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"] {
    padding-right: 0;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-input, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-textfield {
    width: 100%;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .portalclientestheme .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: 37px;
    border-radius: 0;
    padding: 4px 7px;
    
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    background: transparent;
    border: none;
    color: inherit;
}

.v-ie8 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .v-ie9 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield, .v-ie8 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-ie9 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .v-ie8 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .v-ie9 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input, .v-ie8 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .v-ie9 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input, .v-ie8 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea, .v-ie9 .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
    line-height: 37px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield.v-disabled, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea.v-disabled, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input.v-disabled, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input.v-disabled, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
    outline: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), none;
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), none;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect input:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield input:focus, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea:focus {
    box-shadow: none;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textfield-prompt, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea-prompt, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-filterselect-prompt input, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-datefield-prompt input {
    color: #a3a3a3;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-textarea, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-richtextarea {
    height: auto;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
    border-bottom: none;
    left: 0;
    right: 0;
}

.portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .portalclientestheme .v-formlayout.light  > table > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
    margin-top: 0;
}

.portalclientestheme .v-formlayout.light .v-richtextarea {
    margin: 5px 0;
}

.portalclientestheme .v-formlayout.light .v-filterselect-button, .portalclientestheme .v-formlayout.light .v-datefield-button {
    border: none;
}

.portalclientestheme .v-formlayout.light .v-filterselect-button:active:after, .portalclientestheme .v-formlayout.light .v-datefield-button:active:after {
    display: none;
}

.portalclientestheme .v-formlayout.light .v-datefield-button {
    right: 0;
    left: auto;
}

.portalclientestheme .v-formlayout.light .v-checkbox {
    margin-left: 7px;
}

.portalclientestheme .v-grid {
    position: relative;
}

.portalclientestheme .v-grid-scroller {
    position: absolute;
    z-index: 1;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme .v-grid-scroller-horizontal {
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: hidden;
    -ms-overflow-y: hidden;
}

.portalclientestheme .v-grid-scroller-vertical {
    right: 0;
    top: 0;
    bottom: 0;
    overflow-x: hidden;
    -ms-overflow-x: hidden;
}

.portalclientestheme .v-grid-tablewrapper {
    position: absolute;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 5;
}

.portalclientestheme .v-grid-tablewrapper > table {
    border-spacing: 0;
    table-layout: fixed;
    width: inherit;
}

.portalclientestheme .v-grid-header-deco, .portalclientestheme .v-grid-footer-deco {
    position: absolute;
    right: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme .v-grid-horizontal-scrollbar-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme .v-grid-header, .portalclientestheme .v-grid-body, .portalclientestheme .v-grid-footer {
    position: absolute;
    left: 0;
    width: inherit;
    z-index: 10;
}

.portalclientestheme .v-grid-header, .portalclientestheme .v-grid-header-deco {
    top: 0;
}

.portalclientestheme .v-grid-footer, .portalclientestheme .v-grid-footer-deco {
    bottom: 0;
}

.portalclientestheme .v-grid-body {
    z-index: 0;
    top: 0;
}

.portalclientestheme .v-grid-body .v-grid-row {
    position: absolute;
    top: 0;
    left: 0;
}

.portalclientestheme .v-grid-row {
    display: block;
}

.v-ie8 .portalclientestheme .v-grid-row, .v-ie9 .portalclientestheme .v-grid-row {
    float: left;
    clear: left;
    margin-top: 0;
}

.portalclientestheme .v-grid-row  > td, .portalclientestheme .v-grid-row  > th {
    background-color: white;
}

.portalclientestheme .v-grid-row {
    width: inherit;
}

.portalclientestheme .v-grid-cell {
    display: block;
    float: left;
    padding: 2px;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 16px;
}

.portalclientestheme .v-grid-cell.frozen {
    position: relative;
    z-index: 1;
}

.portalclientestheme .v-grid-spacer {
    position: absolute;
    display: block;
    background-color: white;
}

.portalclientestheme .v-grid-spacer  > td {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.v-ie8 .portalclientestheme .v-grid-spacer, .v-ie9 .portalclientestheme .v-grid-spacer {
    margin-top: 0;
}

.portalclientestheme .v-grid {
    outline: none;
}

.portalclientestheme .v-grid-scroller-vertical, .portalclientestheme .v-grid-scroller-horizontal {
    border: 1px solid #d4d4d4;
}

.portalclientestheme .v-grid-scroller-vertical {
    border-left: none;
}

.portalclientestheme .v-grid-scroller-horizontal {
    border-top: none;
}

.portalclientestheme .v-grid-tablewrapper {
    border: 1px solid #d4d4d4;
}

.portalclientestheme .v-grid .header-drag-table {
    border-spacing: 0;
    position: relative;
    table-layout: fixed;
    width: inherit;
}

.portalclientestheme .v-grid .header-drag-table .v-grid-header {
    position: absolute;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid .header-drag-table .v-grid-header  > .v-grid-drop-marker {
    background-color: #197de1;
    position: absolute;
    width: 3px;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu.v-grid-sidebar-popup {
    right: auto;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button[disabled] {
    cursor: default;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button::-moz-focus-inner {
    border: 0;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu .v-grid-sidebar-button:after {
    content: "\f0c9";
    display: block;
    font-family: ThemeIcons, sans-serif;
    font-size: 14px;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu.closed {
    border-radius: 0;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
    width: 100%;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button:after {
    content: "\f0c9";
    font-size: 14px;
    line-height: 1;
}

.v-ie .portalclientestheme .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button {
    vertical-align: middle;
}

.v-ie8 .portalclientestheme .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-button:after {
    vertical-align: middle;
    text-align: center;
    display: inline;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu .v-grid-sidebar-content {
    padding: 4px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu .v-grid-sidebar-content .gwt-MenuBar .gwt-MenuItem .column-hiding-toggle {
    text-shadow: none;
}

.portalclientestheme .v-grid-cell {
    background-color: white;
    padding: 0 18px;
    line-height: 37px;
    text-overflow: ellipsis;
}

.portalclientestheme .v-grid-cell  > * {
    line-height: 1.55;
    vertical-align: middle;
}

.portalclientestheme .v-grid-cell  > div {
    display: inline-block;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid-cell.frozen  + th, .portalclientestheme .v-grid-cell.frozen  + td {
    border-left: none;
}

.portalclientestheme .v-grid-row > td, .portalclientestheme .v-grid-editor-cells > div {
    border-left: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.portalclientestheme .v-grid-row > td:first-child, .portalclientestheme .v-grid-editor-cells > div:first-child {
    border-left: none;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid-row-stripe > td {
    background-color: #f5f5f5;
}

.portalclientestheme .v-grid-row-selected > td {
    background: #197de1;
}

.portalclientestheme .v-grid-row-focused > td {
    
}

.portalclientestheme .v-grid-header th {
    position: relative;
    background-color: #fafafa;
    font-size: 14px;
    font-weight: inherit;
    border-left: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    
    text-align: left;
}

.portalclientestheme .v-grid-header th:first-child {
    border-left: none;
}

.portalclientestheme .v-grid-header .sort-asc, .portalclientestheme .v-grid-header .sort-desc {
    padding-right: 35px;
}

.portalclientestheme .v-grid-header .sort-asc:after, .portalclientestheme .v-grid-header .sort-desc:after {
    font-family: ThemeIcons, sans-serif;
    content: "\f0de" " " attr(sort-order);
    position: absolute;
    right: 18px;
    font-size: 12px;
}

.portalclientestheme .v-grid-header .sort-desc:after {
    content: "\f0dd" " " attr(sort-order);
}

.portalclientestheme .v-grid-column-resize-handle {
    position: absolute;
    width: 36px;
    right: -18px;
    top: 0px;
    bottom: 0px;
    cursor: col-resize;
    z-index: 10;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.portalclientestheme .v-grid-footer td {
    background-color: #fafafa;
    font-size: 14px;
    font-weight: inherit;
    border-left: 1px solid #d4d4d4;
    border-top: 1px solid #d4d4d4;
    border-bottom: none;
    
}

.portalclientestheme .v-grid-footer td:first-child {
    border-left: none;
}

.portalclientestheme .v-grid-header .v-grid-cell, .portalclientestheme .v-grid-footer .v-grid-cell {
    overflow: visible;
}

.portalclientestheme .v-grid-column-header-content, .portalclientestheme .v-grid-column-footer-content {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 37px;
    vertical-align: baseline;
}

.portalclientestheme .v-grid-header-deco {
    border-top: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    background-color: #fafafa;
}

.portalclientestheme .v-grid-footer-deco {
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    background-color: #fafafa;
}

.portalclientestheme .v-grid-horizontal-scrollbar-deco {
    background-color: #fafafa;
    border: 1px solid #d4d4d4;
    border-top: none;
}

.portalclientestheme .v-grid-cell-focused {
    position: relative;
}

.portalclientestheme .v-grid-cell-focused:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid #197de1;
    display: none;
    pointer-events: none;
}

.ie8 .portalclientestheme .v-grid-cell-focused:before, .ie9 .portalclientestheme .v-grid-cell-focused:before, .ie10 .portalclientestheme .v-grid-cell-focused:before {
    content: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==);
}

.portalclientestheme .v-grid:focus .v-grid-cell-focused:before {
    display: block;
}

.portalclientestheme .v-grid.v-disabled:focus .v-grid-cell-focused:before {
    display: none;
}

.portalclientestheme .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);
}

.portalclientestheme .v-grid-editor.unbuffered .v-grid-editor-footer {
    width: 100%;
}

.portalclientestheme .v-grid-editor-cells {
    position: relative;
    white-space: nowrap;
}

.portalclientestheme .v-grid-editor-cells.frozen {
    z-index: 2;
}

.portalclientestheme .v-grid-editor-cells  > div {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    background: white;
}

.portalclientestheme .v-grid-editor-cells  > div:first-child {
    border-left: none;
}

.portalclientestheme .v-grid-editor-cells  > div  > * {
    vertical-align: middle;
    display: inline-block;
}

.portalclientestheme .v-grid-editor-cells  > div .v-filterselect {
    padding-left: 0;
}

.portalclientestheme .v-grid-editor-cells  > div input[type="text"], .portalclientestheme .v-grid-editor-cells  > div input[type="text"].v-filterselect-input, .portalclientestheme .v-grid-editor-cells  > div input[type="password"] {
    padding-left: 18px;
}

.portalclientestheme .v-grid-editor-cells  > div input[type="text"]:not(.v-filterselect-input), .portalclientestheme .v-grid-editor-cells  > div input[type="password"] {
    padding-right: 9px;
}

.portalclientestheme .v-grid-editor-cells  > div input[type="checkbox"] {
    margin-left: 18px;
}

.portalclientestheme .v-grid-editor-cells  > div .v-textfield, .portalclientestheme .v-grid-editor-cells  > div .v-datefield, .portalclientestheme .v-grid-editor-cells  > div .v-filterselect {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.v-ie8 .portalclientestheme .v-grid-editor-cells  > div .v-datefield-button {
    margin-left: -37px;
}

.v-ie8 .portalclientestheme .v-grid-editor-cells  > div .v-filterselect-button {
    margin-left: -25px;
}

.portalclientestheme .v-grid-editor-cells  > div .v-select, .portalclientestheme .v-grid-editor-cells  > div .v-select-select {
    min-width: 100%;
    max-width: 100%;
}

.portalclientestheme .v-grid-editor-cells  > div.not-editable.v-grid-cell {
    float: none;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid-editor-cells .error, .portalclientestheme .v-grid-editor-cells .error > input {
    background-color: #fee;
}

.portalclientestheme .v-grid-editor-footer {
    display: table;
    height: 37px;
    border-top: 1px solid #d4d4d4;
    margin-top: -1px;
    background: white;
    padding: 0 5px;
}

.portalclientestheme .v-grid-editor-footer  + .v-grid-editor-cells > div {
    border-bottom: none;
    border-top: 1px solid #d4d4d4;
}

.portalclientestheme .v-grid-editor-footer:first-child {
    border-top: none;
    margin-top: 0;
    border-bottom: 1px solid #d4d4d4;
    margin-bottom: -1px;
}

.portalclientestheme .v-grid-editor-message, .portalclientestheme .v-grid-editor-buttons {
    display: table-cell;
    white-space: nowrap;
    vertical-align: middle;
}

.portalclientestheme .v-grid-editor-message {
    width: 100%;
    position: relative;
}

.portalclientestheme .v-grid-editor-message  > div {
    position: absolute;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 37px;
    top: 0;
}

.portalclientestheme .v-grid-editor-save {
    margin-right: 4px;
}

.portalclientestheme .v-grid-spacer {
    padding-left: 1px;
}

.portalclientestheme .v-grid-spacer > td {
    display: block;
    padding: 0;
    background-color: white;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #d4d4d4;
}

.portalclientestheme .v-grid-spacer.stripe > td {
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #d4d4d4;
}

.portalclientestheme .v-grid-spacer-deco-container {
    border-top: 1px solid transparent;
    position: relative;
    top: 0;
    z-index: 5;
}

.portalclientestheme .v-grid-spacer-deco {
    top: 0;
    left: 0;
    width: 2px;
    background-color: #197de1;
    position: absolute;
    height: 100%;
    pointer-events: none;
}

.ie8 .portalclientestheme .v-grid-spacer-deco:before, .ie9 .portalclientestheme .v-grid-spacer-deco:before, .ie10 .portalclientestheme .v-grid-spacer-deco:before {
    content: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==);
}

.portalclientestheme .v-grid-cell > .v-progressbar {
    width: 100%;
}

.portalclientestheme .v-grid {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    background-color: #fafafa;
}

.portalclientestheme .v-grid.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .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);
}

.portalclientestheme .v-grid-header .v-grid-cell.dragged {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.portalclientestheme .v-grid-header .v-grid-cell.dragged-column-header {
    margin-top: -19px;
}

.portalclientestheme .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);
}

.portalclientestheme .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%);
}

.portalclientestheme .v-grid-footer-deco, .portalclientestheme .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%);
}

.portalclientestheme .v-grid-row-selected  > .v-grid-cell {
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    color: #c8dbed;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
    border-color: #1d69b4;
}

.portalclientestheme .v-grid-row-selected  > .v-grid-cell-focused:before {
    border-color: #71b0ef;
}

.portalclientestheme .v-grid-editor {
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    border-color: #6EAB24;
}

.portalclientestheme .v-grid-editor-footer {
    font-size: 14px;
    padding: 0 6px;
    background: #fafafa;
    -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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid-editor-cells {
    z-index: 1;
}

.portalclientestheme .v-grid-editor-cells > div:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.portalclientestheme .v-grid-editor-cells > div.not-editable.v-grid-cell {
    float: none;
}

.portalclientestheme .v-grid-editor-cells > div .error::before {
    border-top: 9px solid #ed473b;
    border-right: 9px solid transparent;
}

.portalclientestheme .v-grid-editor-cells > div .error, .portalclientestheme .v-grid-editor-cells > div .error > input {
    background-color: #fffbfb;
}

.portalclientestheme .v-grid-editor-cells > div .v-textfield, .portalclientestheme .v-grid-editor-cells > div .v-textfield-focus, .portalclientestheme .v-grid-editor-cells > div .v-datefield, .portalclientestheme .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .portalclientestheme .v-grid-editor-cells > div .v-filterselect-input, .portalclientestheme .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;
}

.portalclientestheme .v-grid-editor-cells > div input[type="text"].v-datefield-textfield {
    padding-left: 44.4px;
}

.v-ie8 .portalclientestheme .v-grid-editor-cells > div .v-datefield-button {
    margin-left: 0px;
}

.v-ie8 .portalclientestheme .v-grid-editor-cells > div .v-filterselect-button {
    margin-left: 0px;
}

.portalclientestheme .v-grid-editor-cells > div .v-textfield-focus, .portalclientestheme .v-grid-editor-cells > div .v-datefield .v-textfield-focus, .portalclientestheme .v-grid-editor-cells > div .v-filterselect-input:focus {
    position: relative;
}

.portalclientestheme .v-grid-editor-cells > div .v-select {
    padding-left: 9px;
    padding-right: 9px;
}

.portalclientestheme .v-grid-editor-cells > div .v-checkbox {
    margin: 0 9px 0 18px;
}

.portalclientestheme .v-grid-editor-cells > div .v-checkbox  > input[type="checkbox"] {
    margin-left: 0;
}

.portalclientestheme .v-grid-editor-cells > div .v-checkbox  > label {
    white-space: nowrap;
}

.portalclientestheme .v-grid-editor-message > div:before {
    display: inline-block;
    color: #ed473b;
    font-weight: 600;
    width: 19px;
    text-align: center;
    content: "!";
}

.portalclientestheme .v-grid-editor-save, .portalclientestheme .v-grid-editor-cancel {
    cursor: pointer;
    color: #197de1;
    text-decoration: underline;
    font-weight: inherit;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
    font-weight: 400;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 6px 6px;
    margin: 0;
    outline: none;
}

.portalclientestheme .v-grid-editor-save:hover, .portalclientestheme .v-grid-editor-cancel:hover {
    color: #4396ea;
}

.portalclientestheme .v-grid-editor-save.v-disabled, .portalclientestheme .v-grid-editor-cancel.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-grid-spacer {
    margin-top: -1px;
}

.portalclientestheme .v-grid-sidebar.v-contextmenu.open .v-grid-sidebar-content {
    margin: 0 0 2px;
    padding: 4px 4px 2px;
    overflow-y: auto;
    overflow-x: hidden;
}

.portalclientestheme .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%);
}

.portalclientestheme .v-grid-scroller::-webkit-scrollbar {
    border: none;
}

.portalclientestheme .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;
}

.portalclientestheme .v-grid-scroller-vertical::-webkit-scrollbar-thumb {
    min-height: 30px;
}

.portalclientestheme .v-grid-scroller-horizontal::-webkit-scrollbar-thumb {
    min-width: 30px;
}

.portalclientestheme .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: 37px;
    border-radius: 4px;
    padding: 4px 9px;
    border: 1px solid #c5c5c5;
    background: white;
    color: #474747;
    -webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    width: 185px;
}

.v-ie8 .portalclientestheme .v-textfield, .v-ie9 .portalclientestheme .v-textfield {
    line-height: 37px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-textfield.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-textfield:focus {
    outline: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-textfield[class*="prompt"] {
    color: #a3a3a3;
}

.portalclientestheme .v-textfield-readonly {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-textfield-readonly:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-textfield-error {
    border-color: #ed473b !important;
    background: #fffbfb;
    color: #6c2621;
}

.portalclientestheme .v-textfield-borderless {
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
}

.portalclientestheme .v-textfield-borderless:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-textfield-borderless[class*="prompt"] {
    color: inherit;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .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: 28px;
    border-radius: 4px;
    padding: 3px 7px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    font-size: 12px;
}

.v-ie8 .portalclientestheme .v-textfield-tiny, .v-ie9 .portalclientestheme .v-textfield-tiny {
    line-height: 28px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-textfield-compact, .portalclientestheme .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: 31px;
    border-radius: 4px;
    padding: 3px 8px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
}

.v-ie8 .portalclientestheme .v-textfield-compact, .v-ie9 .portalclientestheme .v-textfield-compact, .v-ie8 .portalclientestheme .v-textfield-small, .v-ie9 .portalclientestheme .v-textfield-small {
    line-height: 31px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-textfield-small {
    font-size: 14px;
}

.portalclientestheme .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: 44px;
    border-radius: 4px;
    padding: 5px 10px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    font-size: 20px;
}

.v-ie8 .portalclientestheme .v-textfield-large, .v-ie9 .portalclientestheme .v-textfield-large {
    line-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .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: 59px;
    border-radius: 4px;
    padding: 7px 12px;
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    font-size: 26px;
}

.v-ie8 .portalclientestheme .v-textfield-huge, .v-ie9 .portalclientestheme .v-textfield-huge {
    line-height: 59px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-slot-inline-icon {
    position: relative;
}

.portalclientestheme .v-caption-inline-icon {
    padding: 0;
}

.portalclientestheme .v-caption-inline-icon .v-captiontext {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
    margin: 0;
}

.portalclientestheme .v-caption-inline-icon .v-icon {
    position: absolute;
    z-index: 10;
}

.portalclientestheme .v-caption-inline-icon span.v-icon {
    left: 1px;
    bottom: 1px;
    width: 37px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
}

.portalclientestheme .v-caption-inline-icon img.v-icon {
    left: 11px;
    bottom: 11px;
}

.portalclientestheme .v-textfield-inline-icon  {
    padding-left: 37px;
}

.portalclientestheme .v-slot-inline-icon.v-slot-tiny {
    position: relative;
}

.portalclientestheme .v-caption-inline-icon.v-caption-tiny {
    padding: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-tiny .v-captiontext {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
    margin: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-tiny .v-icon {
    position: absolute;
    z-index: 10;
}

.portalclientestheme .v-caption-inline-icon.v-caption-tiny span.v-icon {
    left: 1px;
    bottom: 1px;
    width: 28px;
    line-height: 26px;
    text-align: center;
    font-size: 12px;
}

.portalclientestheme .v-caption-inline-icon.v-caption-tiny img.v-icon {
    left: 6px;
    bottom: 6px;
}

.portalclientestheme .v-textfield-inline-icon.v-textfield-tiny  {
    padding-left: 28px;
}

.portalclientestheme .v-slot-inline-icon.v-slot-compact {
    position: relative;
}

.portalclientestheme .v-caption-inline-icon.v-caption-compact {
    padding: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-compact .v-captiontext {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
    margin: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-compact .v-icon {
    position: absolute;
    z-index: 10;
}

.portalclientestheme .v-caption-inline-icon.v-caption-compact span.v-icon {
    left: 1px;
    bottom: 1px;
    width: 31px;
    line-height: 29px;
    text-align: center;
    font-size: 16px;
}

.portalclientestheme .v-caption-inline-icon.v-caption-compact img.v-icon {
    left: 8px;
    bottom: 8px;
}

.portalclientestheme .v-textfield-inline-icon.v-textfield-compact  {
    padding-left: 31px;
}

.portalclientestheme .v-slot-inline-icon.v-slot-small {
    position: relative;
}

.portalclientestheme .v-caption-inline-icon.v-caption-small {
    padding: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-small .v-captiontext {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
    margin: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-small .v-icon {
    position: absolute;
    z-index: 10;
}

.portalclientestheme .v-caption-inline-icon.v-caption-small span.v-icon {
    left: 1px;
    bottom: 1px;
    width: 31px;
    line-height: 29px;
    text-align: center;
    font-size: 14px;
}

.portalclientestheme .v-caption-inline-icon.v-caption-small img.v-icon {
    left: 8px;
    bottom: 8px;
}

.portalclientestheme .v-textfield-inline-icon.v-textfield-small  {
    padding-left: 31px;
}

.portalclientestheme .v-slot-inline-icon.v-slot-large {
    position: relative;
}

.portalclientestheme .v-caption-inline-icon.v-caption-large {
    padding: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-large .v-captiontext {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
    margin: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-large .v-icon {
    position: absolute;
    z-index: 10;
}

.portalclientestheme .v-caption-inline-icon.v-caption-large span.v-icon {
    left: 1px;
    bottom: 1px;
    width: 44px;
    line-height: 42px;
    text-align: center;
    font-size: 20px;
}

.portalclientestheme .v-caption-inline-icon.v-caption-large img.v-icon {
    left: 14px;
    bottom: 14px;
}

.portalclientestheme .v-textfield-inline-icon.v-textfield-large  {
    padding-left: 44px;
}

.portalclientestheme .v-slot-inline-icon.v-slot-huge {
    position: relative;
}

.portalclientestheme .v-caption-inline-icon.v-caption-huge {
    padding: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-huge .v-captiontext {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
    margin: 0;
}

.portalclientestheme .v-caption-inline-icon.v-caption-huge .v-icon {
    position: absolute;
    z-index: 10;
}

.portalclientestheme .v-caption-inline-icon.v-caption-huge span.v-icon {
    left: 1px;
    bottom: 1px;
    width: 59px;
    line-height: 57px;
    text-align: center;
    font-size: 26px;
}

.portalclientestheme .v-caption-inline-icon.v-caption-huge img.v-icon {
    left: 22px;
    bottom: 22px;
}

.portalclientestheme .v-textfield-inline-icon.v-textfield-huge  {
    padding-left: 59px;
}

.portalclientestheme .v-textfield-align-right {
    text-align: right;
}

.portalclientestheme .v-textfield-align-center {
    text-align: center;
}

.portalclientestheme .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: 37px;
    border-radius: 4px;
    padding: 6px;
    border: 1px solid #c5c5c5;
    background: white;
    color: #474747;
    -webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    height: auto;
    resize: none;
    white-space: pre-wrap;
    width: 185px;
}

.v-ie8 .portalclientestheme .v-textarea, .v-ie9 .portalclientestheme .v-textarea {
    line-height: 37px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-textarea.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-textarea:focus {
    outline: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-textarea[class*="prompt"] {
    color: #a3a3a3;
}

.v-ie8 .portalclientestheme .v-textarea, .v-ie9 .portalclientestheme .v-textarea {
    line-height: inherit;
    padding-top: 4px;
    padding-bottom: 4px;
}

.portalclientestheme .v-textarea-readonly {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-textarea-readonly:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-textarea-error {
    border-color: #ed473b !important;
    background: #fffbfb;
    color: #6c2621;
}

.portalclientestheme .v-textarea-borderless {
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
}

.portalclientestheme .v-textarea-borderless:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-textarea-borderless[class*="prompt"] {
    color: inherit;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .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: 28px;
    border-radius: 4px;
    padding: 6px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    height: auto;
    resize: none;
    white-space: pre-wrap;
    font-size: 12px;
}

.v-ie8 .portalclientestheme .v-textarea-tiny, .v-ie9 .portalclientestheme .v-textarea-tiny {
    line-height: 28px;
    padding-top: 0;
    padding-bottom: 0;
}

.v-ie8 .portalclientestheme .v-textarea-tiny, .v-ie9 .portalclientestheme .v-textarea-tiny {
    line-height: inherit;
    padding-top: 3px;
    padding-bottom: 3px;
}

.portalclientestheme .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: 31px;
    border-radius: 4px;
    padding: 6px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    height: auto;
    resize: none;
    white-space: pre-wrap;
    font-size: 14px;
}

.v-ie8 .portalclientestheme .v-textarea-small, .v-ie9 .portalclientestheme .v-textarea-small {
    line-height: 31px;
    padding-top: 0;
    padding-bottom: 0;
}

.v-ie8 .portalclientestheme .v-textarea-small, .v-ie9 .portalclientestheme .v-textarea-small {
    line-height: inherit;
    padding-top: 3px;
    padding-bottom: 3px;
}

.portalclientestheme .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: 44px;
    border-radius: 4px;
    padding: 6px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    height: auto;
    resize: none;
    white-space: pre-wrap;
    font-size: 20px;
}

.v-ie8 .portalclientestheme .v-textarea-large, .v-ie9 .portalclientestheme .v-textarea-large {
    line-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
}

.v-ie8 .portalclientestheme .v-textarea-large, .v-ie9 .portalclientestheme .v-textarea-large {
    line-height: inherit;
    padding-top: 5px;
    padding-bottom: 5px;
}

.portalclientestheme .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: 59px;
    border-radius: 4px;
    padding: 6px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    height: auto;
    resize: none;
    white-space: pre-wrap;
    font-size: 26px;
}

.v-ie8 .portalclientestheme .v-textarea-huge, .v-ie9 .portalclientestheme .v-textarea-huge {
    line-height: 59px;
    padding-top: 0;
    padding-bottom: 0;
}

.v-ie8 .portalclientestheme .v-textarea-huge, .v-ie9 .portalclientestheme .v-textarea-huge {
    line-height: inherit;
    padding-top: 7px;
    padding-bottom: 7px;
}

.portalclientestheme .v-textarea-align-right {
    text-align: right;
}

.portalclientestheme .v-textarea-align-center {
    text-align: center;
}

.portalclientestheme .v-datefield {
    position: relative;
    width: 185px;
    height: 37px;
    border-radius: 4px;
}

.portalclientestheme .v-datefield [class*="textfield"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 37px;
    border-radius: 4px;
    padding: 4px 9px;
    border: 1px solid #c5c5c5;
    background: white;
    color: #474747;
    -webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    padding-left: 44.4px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-datefield [class*="textfield"], .v-ie9 .portalclientestheme .v-datefield [class*="textfield"] {
    line-height: 37px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-datefield [class*="textfield"].v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield [class*="textfield"]:focus {
    outline: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-datefield [class*="textfield"][class*="prompt"] {
    color: #a3a3a3;
}

.portalclientestheme .v-datefield[class*="prompt"] > [class*="textfield"] {
    color: #a3a3a3;
}

.portalclientestheme .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: 37px;
    line-height: 35px;
    text-align: center;
    font: inherit;
    outline: none;
    margin: 0;
    top: 1px;
    bottom: 1px;
    left: 1px;
    border: none;
    border-right: 1px solid #e4e4e4;
    color: #a3a3a3;
    border-radius: 3px 0 0 3px;
}

.portalclientestheme .v-datefield [class*="button"]:hover {
    color: #474747;
}

.portalclientestheme .v-datefield [class*="button"]:before {
    font-family: ThemeIcons;
    content: "\f073";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .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;
}

.portalclientestheme .v-datefield.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield.v-disabled [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield.v-disabled [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield.v-readonly [class*="textfield"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-datefield.v-readonly [class*="textfield"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-datefield.v-readonly [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield.v-readonly [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-error .v-datefield-textfield {
    border-color: #ed473b !important;
    background: #fffbfb;
    color: #6c2621;
}

.portalclientestheme .v-datefield-error .v-datefield-button {
    color: #ed473b;
    border-color: #ed473b;
}

.portalclientestheme .v-datefield-full {
    width: 240px;
}

.portalclientestheme .v-datefield-day {
    width: 185px;
}

.portalclientestheme .v-datefield-month {
    width: 120px;
}

.portalclientestheme .v-datefield-year {
    width: 104px;
}

.portalclientestheme .v-datefield-popup {
    padding: 4px 4px;
    border-radius: 4px;
    background-color: white;
    color: #474747;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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: 5px !important;
    margin-bottom: 5px !important;
    margin-right: 5px !important;
    cursor: default;
    width: auto;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-datefield-popup table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
}

.portalclientestheme .v-datefield-popup td {
    padding: 2px;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel {
    font-size: 16px;
    text-align: center;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel:focus {
    outline: none;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 30px;
    height: 26px;
    border: 1px solid transparent;
    line-height: 26px;
    text-align: center;
    font-size: 14px;
    background: #fafafa;
    border-radius: 5px;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    transition: color 200ms;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day:hover {
    color: #197de1;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day-offmonth {
    color: #a0a0a0;
    background: transparent;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day-today {
    color: #191919;
    font-weight: 600;
    border-color: #afafaf;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
    color: #c8dbed;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    border: none;
    font-weight: 600;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    position: relative;
}

.v-ie8 .portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
    border-color: #6EAB24;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
    color: #a0a0a0;
    cursor: not-allowed;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-weekdays {
    height: 26px;
    color: rgba(133, 133, 133, 0.85);
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-weekdays strong {
    font: inherit;
    font-size: 14px;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-header {
    white-space: nowrap;
}

.portalclientestheme .v-datefield-popup td[class*="year"] button, .portalclientestheme .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: 19px;
    height: 25px;
    outline: none;
    position: relative;
    vertical-align: middle;
}

.portalclientestheme .v-datefield-popup td[class*="year"] button:before, .portalclientestheme .v-datefield-popup td[class*="month"] button:before {
    color: #a0a0a0;
    font-size: 21px;
    line-height: 24px;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    transition: color 200ms;
}

.portalclientestheme .v-datefield-popup td[class*="year"] button:hover:before, .portalclientestheme .v-datefield-popup td[class*="month"] button:hover:before {
    color: #6EAB24;
}

.portalclientestheme .v-datefield-popup td[class*="year"] button.outside-range, .portalclientestheme .v-datefield-popup td[class*="month"] button.outside-range {
    cursor: default;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
}

.portalclientestheme .v-datefield-popup td[class*="year"] button.outside-range:hover:before, .portalclientestheme .v-datefield-popup td[class*="month"] button.outside-range:hover:before {
    color: #a0a0a0;
}

.portalclientestheme .v-datefield-popup .v-button-prevyear:before {
    font-family: ThemeIcons;
    content: "\f100";
}

.portalclientestheme .v-datefield-popup .v-button-prevmonth:before {
    font-family: ThemeIcons;
    content: "\f104";
}

.portalclientestheme .v-datefield-popup .v-button-nextyear:before {
    font-family: ThemeIcons;
    content: "\f101";
}

.portalclientestheme .v-datefield-popup .v-button-nextmonth:before {
    font-family: ThemeIcons;
    content: "\f105";
}

.portalclientestheme .v-datefield-popup td.v-datefield-calendarpanel-month {
    width: 148px;
    color: #197de1;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
    width: 74px;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-weeknumber, .portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
    width: 30px;
    color: rgba(133, 133, 133, 0.85);
    font-size: 14px;
    display: inline-block;
    text-align: left;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-weeknumber {
    position: relative;
}

.portalclientestheme .v-datefield-popup .v-datefield-calendarpanel-weeknumbers .v-first:before {
    content: "";
    position: absolute;
    top: 38px;
    bottom: 0;
    left: 0;
    width: 34px;
    border-top: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-top-right-radius: 9px;
    border-bottom-left-radius: 9px;
    background: #fafafa;
}

.portalclientestheme .v-datefield-popup td.v-datefield-calendarpanel-time {
    width: 100%;
    font-size: 14px;
}

.portalclientestheme .v-datefield-popup td.v-datefield-calendarpanel-time .v-label {
    display: inline;
    margin: 0 0.1em;
    font-weight: 400;
}

.portalclientestheme .v-datefield-calendarpanel {
    font-size: 16px;
    text-align: center;
}

.portalclientestheme .v-datefield-calendarpanel:focus {
    outline: none;
}

.portalclientestheme .v-datefield-calendarpanel-day {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 30px;
    height: 26px;
    border: 1px solid transparent;
    line-height: 26px;
    text-align: center;
    font-size: 14px;
    background: #fafafa;
    border-radius: 5px;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    transition: color 200ms;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.portalclientestheme .v-datefield-calendarpanel-day:hover {
    color: #197de1;
}

.portalclientestheme .v-datefield-calendarpanel-day-offmonth {
    color: #a0a0a0;
    background: transparent;
}

.portalclientestheme .v-datefield-calendarpanel-day-today {
    color: #191919;
    font-weight: 600;
    border-color: #afafaf;
}

.portalclientestheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected, .portalclientestheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-selected:hover {
    color: #c8dbed;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    border: none;
    font-weight: 600;
}

.portalclientestheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    position: relative;
}

.v-ie8 .portalclientestheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-focused {
    border-color: #6EAB24;
}

.portalclientestheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range, .portalclientestheme .v-datefield-calendarpanel-day.v-datefield-calendarpanel-day-outside-range:hover {
    color: #a0a0a0;
    cursor: not-allowed;
}

.portalclientestheme .v-datefield-calendarpanel-weekdays {
    height: 26px;
    color: rgba(133, 133, 133, 0.85);
}

.portalclientestheme .v-datefield-calendarpanel-weekdays strong {
    font: inherit;
    font-size: 14px;
}

.portalclientestheme .v-datefield-calendarpanel-header {
    white-space: nowrap;
}

.portalclientestheme td[class*="year"] button, .portalclientestheme 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: 19px;
    height: 25px;
    outline: none;
    position: relative;
    vertical-align: middle;
}

.portalclientestheme td[class*="year"] button:before, .portalclientestheme td[class*="month"] button:before {
    color: #a0a0a0;
    font-size: 21px;
    line-height: 24px;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    transition: color 200ms;
}

.portalclientestheme td[class*="year"] button:hover:before, .portalclientestheme td[class*="month"] button:hover:before {
    color: #6EAB24;
}

.portalclientestheme td[class*="year"] button.outside-range, .portalclientestheme td[class*="month"] button.outside-range {
    cursor: default;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
}

.portalclientestheme td[class*="year"] button.outside-range:hover:before, .portalclientestheme td[class*="month"] button.outside-range:hover:before {
    color: #a0a0a0;
}

.portalclientestheme .v-button-prevyear:before {
    font-family: ThemeIcons;
    content: "\f100";
}

.portalclientestheme .v-button-prevmonth:before {
    font-family: ThemeIcons;
    content: "\f104";
}

.portalclientestheme .v-button-nextyear:before {
    font-family: ThemeIcons;
    content: "\f101";
}

.portalclientestheme .v-button-nextmonth:before {
    font-family: ThemeIcons;
    content: "\f105";
}

.portalclientestheme td.v-datefield-calendarpanel-month {
    width: 148px;
    color: #197de1;
}

.portalclientestheme .v-datefield-calendarpanel-year td.v-datefield-calendarpanel-month {
    width: 74px;
}

.portalclientestheme .v-datefield-calendarpanel-weeknumber, .portalclientestheme .v-datefield-calendarpanel-weekdays.v-datefield-calendarpanel-weeknumbers td:first-child {
    width: 30px;
    color: rgba(133, 133, 133, 0.85);
    font-size: 14px;
    display: inline-block;
    text-align: left;
}

.portalclientestheme .v-datefield-calendarpanel-weeknumber {
    position: relative;
}

.portalclientestheme .v-datefield-calendarpanel-weeknumbers .v-first:before {
    content: "";
    position: absolute;
    top: 38px;
    bottom: 0;
    left: 0;
    width: 34px;
    border-top: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-top-right-radius: 9px;
    border-bottom-left-radius: 9px;
    background: #fafafa;
}

.portalclientestheme td.v-datefield-calendarpanel-time {
    width: 100%;
    font-size: 14px;
}

.portalclientestheme td.v-datefield-calendarpanel-time .v-label {
    display: inline;
    margin: 0 0.1em;
    font-weight: 400;
}

.portalclientestheme .v-datefield-borderless .v-datefield-textfield {
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
}

.portalclientestheme .v-datefield-borderless .v-datefield-textfield:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-datefield-borderless .v-datefield-textfield[class*="prompt"] {
    color: inherit;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield-borderless .v-datefield-button {
    border: none;
    color: inherit;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield-align-right input {
    text-align: right;
}

.portalclientestheme .v-datefield-align-center input {
    text-align: center;
}

.portalclientestheme .v-datefield-tiny {
    height: 28px;
    border-radius: 4px;
    font-size: 12px;
}

.portalclientestheme .v-datefield-tiny [class*="textfield"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    margin: 0;
    font: inherit;
    
    font-weight: 400;
    line-height: normal;
    height: 28px;
    border-radius: 4px;
    padding: 3px 7px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    padding-left: 33.6px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-datefield-tiny [class*="textfield"], .v-ie9 .portalclientestheme .v-datefield-tiny [class*="textfield"] {
    line-height: 28px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .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: 28px;
    line-height: 28px;
    text-align: center;
    font: inherit;
    outline: none;
    margin: 0;
    border-radius: 4px 0 0 4px;
}

.portalclientestheme .v-datefield-tiny [class*="button"]:before {
    font-family: ThemeIcons;
    content: "\f073";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-datefield-tiny [class*="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-datefield-tiny.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield-tiny.v-disabled [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-tiny.v-disabled [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-tiny.v-readonly [class*="textfield"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-datefield-tiny.v-readonly [class*="textfield"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-datefield-tiny.v-readonly [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-tiny.v-readonly [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-compact, .portalclientestheme .v-datefield-small {
    height: 31px;
    border-radius: 4px;
}

.portalclientestheme .v-datefield-compact [class*="textfield"], .portalclientestheme .v-datefield-small [class*="textfield"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 31px;
    border-radius: 4px;
    padding: 3px 8px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    padding-left: 37.2px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-datefield-compact [class*="textfield"], .v-ie9 .portalclientestheme .v-datefield-compact [class*="textfield"], .v-ie8 .portalclientestheme .v-datefield-small [class*="textfield"], .v-ie9 .portalclientestheme .v-datefield-small [class*="textfield"] {
    line-height: 31px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-datefield-compact [class*="button"], .portalclientestheme .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: 31px;
    line-height: 31px;
    text-align: center;
    font: inherit;
    outline: none;
    margin: 0;
    border-radius: 4px 0 0 4px;
}

.portalclientestheme .v-datefield-compact [class*="button"]:before, .portalclientestheme .v-datefield-small [class*="button"]:before {
    font-family: ThemeIcons;
    content: "\f073";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-datefield-compact [class*="button"]:active:after, .portalclientestheme .v-datefield-small [class*="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-datefield-compact.v-disabled, .portalclientestheme .v-datefield-small.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield-compact.v-disabled [class*="button"], .portalclientestheme .v-datefield-small.v-disabled [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-compact.v-disabled [class*="button"]:active:after, .portalclientestheme .v-datefield-small.v-disabled [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-compact.v-readonly [class*="textfield"], .portalclientestheme .v-datefield-small.v-readonly [class*="textfield"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-datefield-compact.v-readonly [class*="textfield"]:focus, .portalclientestheme .v-datefield-small.v-readonly [class*="textfield"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-datefield-compact.v-readonly [class*="button"], .portalclientestheme .v-datefield-small.v-readonly [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-compact.v-readonly [class*="button"]:active:after, .portalclientestheme .v-datefield-small.v-readonly [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-small {
    font-size: 14px;
}

.portalclientestheme .v-datefield-large {
    height: 44px;
    border-radius: 4px;
    font-size: 20px;
}

.portalclientestheme .v-datefield-large [class*="textfield"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 44px;
    border-radius: 4px;
    padding: 5px 10px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    padding-left: 52.8px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-datefield-large [class*="textfield"], .v-ie9 .portalclientestheme .v-datefield-large [class*="textfield"] {
    line-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .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: 44px;
    line-height: 44px;
    text-align: center;
    font: inherit;
    outline: none;
    margin: 0;
    border-radius: 4px 0 0 4px;
}

.portalclientestheme .v-datefield-large [class*="button"]:before {
    font-family: ThemeIcons;
    content: "\f073";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-datefield-large [class*="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-datefield-large.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield-large.v-disabled [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-large.v-disabled [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-large.v-readonly [class*="textfield"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-datefield-large.v-readonly [class*="textfield"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-datefield-large.v-readonly [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-large.v-readonly [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-huge {
    height: 59px;
    border-radius: 4px;
    font-size: 26px;
}

.portalclientestheme .v-datefield-huge [class*="textfield"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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: 59px;
    border-radius: 4px;
    padding: 7px 12px;
    
    
    
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    padding-left: 70.8px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.v-ie8 .portalclientestheme .v-datefield-huge [class*="textfield"], .v-ie9 .portalclientestheme .v-datefield-huge [class*="textfield"] {
    line-height: 59px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .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: 59px;
    line-height: 59px;
    text-align: center;
    font: inherit;
    outline: none;
    margin: 0;
    border-radius: 4px 0 0 4px;
}

.portalclientestheme .v-datefield-huge [class*="button"]:before {
    font-family: ThemeIcons;
    content: "\f073";
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-datefield-huge [class*="button"]:active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-datefield-huge.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-datefield-huge.v-disabled [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-huge.v-disabled [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-datefield-huge.v-readonly [class*="textfield"] {
    background: #fafafa;
    color: #464646;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-datefield-huge.v-readonly [class*="textfield"]:focus {
    box-shadow: none;
    border-color: #c5c5c5;
}

.portalclientestheme .v-datefield-huge.v-readonly [class*="button"] {
    cursor: default;
    pointer-events: none;
}

.portalclientestheme .v-datefield-huge.v-readonly [class*="button"]:active:after {
    display: none;
}

.portalclientestheme .v-inline-datefield-calendarpanel {
    font-size: 16px;
    text-align: center;
}

.portalclientestheme .v-inline-datefield-calendarpanel:focus {
    outline: none;
}

.portalclientestheme .v-inline-datefield-calendarpanel-day {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 30px;
    height: 26px;
    border: 1px solid transparent;
    line-height: 26px;
    text-align: center;
    font-size: 14px;
    background: #fafafa;
    border-radius: 5px;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    transition: color 200ms;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.portalclientestheme .v-inline-datefield-calendarpanel-day:hover {
    color: #197de1;
}

.portalclientestheme .v-inline-datefield-calendarpanel-day-offmonth {
    color: #a0a0a0;
    background: transparent;
}

.portalclientestheme .v-inline-datefield-calendarpanel-day-today {
    color: #191919;
    font-weight: 600;
    border-color: #afafaf;
}

.portalclientestheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected, .portalclientestheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-selected:hover {
    color: #c8dbed;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    border: none;
    font-weight: 600;
}

.portalclientestheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    position: relative;
}

.v-ie8 .portalclientestheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-focused {
    border-color: #6EAB24;
}

.portalclientestheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range, .portalclientestheme .v-inline-datefield-calendarpanel-day.v-inline-datefield-calendarpanel-day-outside-range:hover {
    color: #a0a0a0;
    cursor: not-allowed;
}

.portalclientestheme .v-inline-datefield-calendarpanel-weekdays {
    height: 26px;
    color: rgba(133, 133, 133, 0.85);
}

.portalclientestheme .v-inline-datefield-calendarpanel-weekdays strong {
    font: inherit;
    font-size: 14px;
}

.portalclientestheme .v-inline-datefield-calendarpanel-header {
    white-space: nowrap;
}

.portalclientestheme td[class*="year"] button, .portalclientestheme 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: 19px;
    height: 25px;
    outline: none;
    position: relative;
    vertical-align: middle;
}

.portalclientestheme td[class*="year"] button:before, .portalclientestheme td[class*="month"] button:before {
    color: #a0a0a0;
    font-size: 21px;
    line-height: 24px;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    transition: color 200ms;
}

.portalclientestheme td[class*="year"] button:hover:before, .portalclientestheme td[class*="month"] button:hover:before {
    color: #6EAB24;
}

.portalclientestheme td[class*="year"] button.outside-range, .portalclientestheme td[class*="month"] button.outside-range {
    cursor: default;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
}

.portalclientestheme td[class*="year"] button.outside-range:hover:before, .portalclientestheme td[class*="month"] button.outside-range:hover:before {
    color: #a0a0a0;
}

.portalclientestheme .v-button-prevyear:before {
    font-family: ThemeIcons;
    content: "\f100";
}

.portalclientestheme .v-button-prevmonth:before {
    font-family: ThemeIcons;
    content: "\f104";
}

.portalclientestheme .v-button-nextyear:before {
    font-family: ThemeIcons;
    content: "\f101";
}

.portalclientestheme .v-button-nextmonth:before {
    font-family: ThemeIcons;
    content: "\f105";
}

.portalclientestheme td.v-inline-datefield-calendarpanel-month {
    width: 148px;
    color: #197de1;
}

.portalclientestheme .v-inline-datefield-calendarpanel-year td.v-inline-datefield-calendarpanel-month {
    width: 74px;
}

.portalclientestheme .v-inline-datefield-calendarpanel-weeknumber, .portalclientestheme .v-inline-datefield-calendarpanel-weekdays.v-inline-datefield-calendarpanel-weeknumbers td:first-child {
    width: 30px;
    color: rgba(133, 133, 133, 0.85);
    font-size: 14px;
    display: inline-block;
    text-align: left;
}

.portalclientestheme .v-inline-datefield-calendarpanel-weeknumber {
    position: relative;
}

.portalclientestheme .v-inline-datefield-calendarpanel-weeknumbers .v-first:before {
    content: "";
    position: absolute;
    top: 38px;
    bottom: 0;
    left: 0;
    width: 34px;
    border-top: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-top-right-radius: 9px;
    border-bottom-left-radius: 9px;
    background: #fafafa;
}

.portalclientestheme td.v-inline-datefield-calendarpanel-time {
    width: 100%;
    font-size: 14px;
}

.portalclientestheme td.v-inline-datefield-calendarpanel-time .v-label {
    display: inline;
    margin: 0 0.1em;
    font-weight: 400;
}

.portalclientestheme .v-inline-datefield-calendarpanel {
    position: relative;
    background: white;
    padding: 6px;
}

.portalclientestheme .v-gridlayout-margin-top {
    padding-top: 37px;
}

.portalclientestheme .v-gridlayout-margin-bottom {
    padding-bottom: 37px;
}

.portalclientestheme .v-gridlayout-margin-left {
    padding-left: 37px;
}

.portalclientestheme .v-gridlayout-margin-right {
    padding-right: 37px;
}

.portalclientestheme .v-gridlayout-spacing-on {
    padding-left: 12px;
    padding-top: 12px;
}

.portalclientestheme .v-menubar {
    position: relative;
    text-align: center;
    white-space: nowrap;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    cursor: default;
    border-radius: 9px;
    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: 35px;
}

.portalclientestheme .v-menubar:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
}

.portalclientestheme .v-menubar:focus:after {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.portalclientestheme .v-menubar.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-menubar.v-disabled:after {
    display: none;
}

.portalclientestheme .v-menubar:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-menubar:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-menubar  > .v-menubar-menuitem {
    padding: 0 14px;
}

.portalclientestheme .v-menubar  > .v-menubar-menuitem[class*="-icon-only"] {
    width: 37px;
}

.portalclientestheme .v-menubar:active:after {
    background: transparent;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem {
    position: relative;
    z-index: 1;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 37px;
    padding: 0 15px;
    color: inherit;
    font-weight: 400;
    
    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;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem:first-child {
    border-left-width: 0;
    border-radius: 8px 0 0 8px;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem:last-child {
    border-radius: 0 8px 8px 0;
    border-right-width: 0;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem:first-child:last-child {
    border-radius: 8px;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem:hover {
    zoom: 1;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem:hover:before {
    background-color: rgba(186, 186, 186, 0.1);
    border: none;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem:active:before {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .v-menubar > .v-menubar-menuitem .v-icon {
    margin: 0 4px 0 -4px;
    cursor: inherit;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem[class*="-icon-only"] {
    width: 37px;
    padding: 0;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem[class*="-icon-only"] .v-icon {
    margin: 0;
}

.portalclientestheme .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;
}

.portalclientestheme .v-disabled > .v-menubar-menuitem, .portalclientestheme .v-menubar > .v-menubar-menuitem-disabled {
    cursor: default;
}

.portalclientestheme .v-disabled > .v-menubar-menuitem:before, .portalclientestheme .v-menubar > .v-menubar-menuitem-disabled:before {
    display: none;
}

.portalclientestheme .v-menubar-menuitem-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem-selected {
    color: #ecf2f8;
    
    
    
    border-radius: 0;
    border: 1px solid #1362b1;
    border-top-color: #156ab3;
    border-bottom-color: #1156a8;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    -webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
    box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
    border-top-width: 0;
    border-left-width: 0;
    border-bottom-width: 0;
    z-index: 2;
}

.portalclientestheme .v-menubar > .v-menubar-menuitem-selected:hover:before {
    background: none;
}

.portalclientestheme .v-menubar .v-menubar-submenu-indicator {
    display: none;
}

.portalclientestheme .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;
}

.portalclientestheme .v-menubar .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:empty:after {
    margin-left: -0.2em;
}

.portalclientestheme .v-menubar-popup {
    padding: 4px 4px;
    border-radius: 4px;
    background-color: white;
    color: #474747;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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: 5px 0 0 1px !important;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-menubar-popup .v-menubar-submenu {
    outline: none;
}

.portalclientestheme .v-menubar-popup .v-menubar-menuitem {
    display: block;
    cursor: pointer;
    line-height: 27px;
    padding: 0 20px 0 10px;
    border-radius: 3px;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    padding-left: 32px;
    padding-right: 37px;
    position: relative;
}

.portalclientestheme .v-menubar-popup .v-menubar-menuitem:active:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0957a6;
    opacity: 0.15;
    filter: alpha(opacity=15.0) ;
    pointer-events: none;
    border-radius: inherit;
}

.portalclientestheme .v-menubar-popup .v-menubar-menuitem .v-icon {
    max-height: 27px;
    margin-right: 5px;
    min-width: 1em;
}

.portalclientestheme .v-menubar-popup .v-menubar-submenu-indicator {
    display: none;
}

.portalclientestheme .v-menubar-popup .v-menubar-submenu-indicator  + .v-menubar-menuitem-caption:after {
    position: absolute;
    right: 10px;
    font-family: ThemeIcons;
    content: "\f054";
    line-height: 29px;
}

.portalclientestheme .v-menubar-popup .v-menubar-menuitem-selected {
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-menubar-popup .v-menubar-separator {
    display: block;
    margin: 4px 0;
    height: 0;
    overflow: hidden;
    border-bottom: 1px solid #e4e4e4;
}

.portalclientestheme .v-menubar-popup [class*="checked"] .v-menubar-menuitem-caption:before {
    content: "\f00c";
    font-family: ThemeIcons;
    position: absolute;
    left: 10px;
}

.portalclientestheme .v-menubar-popup [class*="unchecked"] .v-menubar-menuitem-caption:before {
    content: "";
}

.portalclientestheme .v-menubar-popup [class*="disabled"] {
    cursor: default;
}

.portalclientestheme .v-menubar-small {
    height: 31px;
    padding: 0 16px;
    
    font-weight: 400;
    
    cursor: default;
    border-radius: 9px;
    padding: 0;
    text-align: left;
    line-height: 29px;
    font-size: 14px;
}

.portalclientestheme .v-menubar-small:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-menubar-small  > .v-menubar-menuitem {
    padding: 0 12px;
}

.portalclientestheme .v-menubar-small  > .v-menubar-menuitem[class*="-icon-only"] {
    width: 31px;
}

.portalclientestheme .v-menubar-borderless {
    border: none;
    border-radius: 0;
    padding: 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    background: transparent;
    color: inherit;
}

.portalclientestheme .v-menubar-borderless:focus:after {
    display: none;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    margin-right: 1px;
    border-radius: 9px;
    color: #197de1;
    padding: 0 12px;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem:first-child, .portalclientestheme .v-menubar-borderless .v-menubar-menuitem:last-child, .portalclientestheme .v-menubar-borderless .v-menubar-menuitem:first-child:last-child {
    border-radius: 9px;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem:before {
    content: none;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem:hover {
    color: #4396ea;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem:active {
    color: inherit;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem-checked, .portalclientestheme .v-menubar-borderless .v-menubar-menuitem-checked:first-child {
    border: 1px solid #c5c5c5;
    color: #197de1;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .portalclientestheme .v-menubar-borderless .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
    position: relative;
    top: -1px;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem-selected {
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem-selected:hover {
    color: #ecf2f8;
}

.portalclientestheme .v-menubar-borderless .v-menubar-menuitem-disabled, .portalclientestheme .v-menubar-borderless .v-menubar-menuitem-disabled:hover {
    color: inherit;
}

.portalclientestheme .v-radiobutton {
    position: relative;
    line-height: 19px;
    white-space: nowrap;
}

.portalclientestheme .v-radiobutton.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-radiobutton {
    padding-left: 25px;
}

:root .portalclientestheme .v-radiobutton label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .v-radiobutton > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    left: 0.2em;
    top: 0.2em;
    z-index: 0;
    margin: 0;
}

:root .portalclientestheme .v-radiobutton > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-radiobutton > input ~ label:before, :root .portalclientestheme .v-radiobutton > input ~ label:after {
    content: "";
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}

:root .portalclientestheme .v-radiobutton > input ~ label:before {
    height: 18.5px;
    padding: 0 10px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 6px;
    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 .portalclientestheme .v-radiobutton > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-radiobutton > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-radiobutton > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-radiobutton > .v-icon, .portalclientestheme .v-radiobutton > label .v-icon {
    margin: 0 6px 0 3px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-radiobutton.v-disabled  > label, .portalclientestheme .v-radiobutton.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-radiobutton.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-radiobutton.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-radiobutton.v-readonly  > label, .portalclientestheme .v-radiobutton.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-radiobutton.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-radiobutton.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-radiobutton.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

:root .portalclientestheme .v-radiobutton > input:checked ~ label:after {
    width: 7px;
    height: 7px;
    top: 6px;
    left: 6px;
    background: #197de1;
}

:root .portalclientestheme .v-radiobutton > input ~ label:before, :root .portalclientestheme .v-radiobutton > input ~ label:after {
    border-radius: 50%;
    content: "";
}

.portalclientestheme .v-select-optiongroup .v-radiobutton, .portalclientestheme .v-select-optiongroup .v-checkbox {
    display: block;
    margin: 9px 16px 0 0;
}

.portalclientestheme .v-select-optiongroup .v-radiobutton:first-child, .portalclientestheme .v-select-optiongroup .v-checkbox:first-child {
    margin-top: 6px;
}

.portalclientestheme .v-select-optiongroup .v-radiobutton:last-child, .portalclientestheme .v-select-optiongroup .v-checkbox:last-child {
    margin-bottom: 6px;
}

.portalclientestheme .v-select-optiongroup.v-has-width label {
    white-space: normal;
}

.portalclientestheme .v-select-optiongroup-small {
    font-size: 14px;
}

.portalclientestheme .v-select-optiongroup-small .v-checkbox {
    position: relative;
    line-height: 16px;
    white-space: nowrap;
}

.portalclientestheme .v-select-optiongroup-small .v-checkbox.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox {
    padding-left: 21px;
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .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 .portalclientestheme .v-select-optiongroup-small .v-checkbox > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox > input ~ label:before, :root .portalclientestheme .v-select-optiongroup-small .v-checkbox > input ~ label:after {
    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: 0;
    left: 0;
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox > input ~ label:before {
    height: 15.5px;
    padding: 0 8px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 5px;
    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 .portalclientestheme .v-select-optiongroup-small .v-checkbox > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-select-optiongroup-small .v-checkbox > .v-icon, .portalclientestheme .v-select-optiongroup-small .v-checkbox > label .v-icon {
    margin: 0 5px 0 3px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-select-optiongroup-small .v-checkbox.v-disabled  > label, .portalclientestheme .v-select-optiongroup-small .v-checkbox.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-select-optiongroup-small .v-checkbox.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-select-optiongroup-small .v-checkbox.v-readonly  > label, .portalclientestheme .v-select-optiongroup-small .v-checkbox.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-select-optiongroup-small .v-checkbox.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-select-optiongroup-small .v-checkbox.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton {
    position: relative;
    line-height: 16px;
    white-space: nowrap;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton {
    padding-left: 21px;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .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 .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
    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: 0;
    left: 0;
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input ~ label:before {
    height: 15.5px;
    padding: 0 8px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 5px;
    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 .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton > .v-icon, .portalclientestheme .v-select-optiongroup-small .v-radiobutton > label .v-icon {
    margin: 0 5px 0 3px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-disabled  > label, .portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-readonly  > label, .portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input:checked ~ label:after {
    width: 6px;
    height: 6px;
    top: 5px;
    left: 5px;
    background: #197de1;
}

:root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input ~ label:before, :root .portalclientestheme .v-select-optiongroup-small .v-radiobutton > input ~ label:after {
    border-radius: 50%;
    content: "";
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton, .portalclientestheme .v-select-optiongroup-small .v-checkbox {
    display: block;
    margin: 8px 16px 0 0;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton:first-child, .portalclientestheme .v-select-optiongroup-small .v-checkbox:first-child {
    margin-top: 5px;
}

.portalclientestheme .v-select-optiongroup-small .v-radiobutton:last-child, .portalclientestheme .v-select-optiongroup-small .v-checkbox:last-child {
    margin-bottom: 5px;
}

.portalclientestheme .v-select-optiongroup-small.v-has-width label {
    white-space: normal;
}

.portalclientestheme .v-select-optiongroup-large {
    font-size: 20px;
}

.portalclientestheme .v-select-optiongroup-large .v-checkbox {
    position: relative;
    line-height: 22px;
    white-space: nowrap;
}

.portalclientestheme .v-select-optiongroup-large .v-checkbox.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox {
    padding-left: 29px;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .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 .portalclientestheme .v-select-optiongroup-large .v-checkbox > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox > input ~ label:before, :root .portalclientestheme .v-select-optiongroup-large .v-checkbox > input ~ label:after {
    content: "";
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 7px;
    font-size: 15px;
    text-align: center;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox > input ~ label:before {
    height: 22px;
    padding: 0 11px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 7px;
    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: 22px;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-select-optiongroup-large .v-checkbox > .v-icon, .portalclientestheme .v-select-optiongroup-large .v-checkbox > label .v-icon {
    margin: 0 7px 0 4px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-select-optiongroup-large .v-checkbox.v-disabled  > label, .portalclientestheme .v-select-optiongroup-large .v-checkbox.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-select-optiongroup-large .v-checkbox.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-select-optiongroup-large .v-checkbox.v-readonly  > label, .portalclientestheme .v-select-optiongroup-large .v-checkbox.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-select-optiongroup-large .v-checkbox.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-select-optiongroup-large .v-checkbox.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton {
    position: relative;
    line-height: 22px;
    white-space: nowrap;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-has-width label {
    white-space: normal;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton {
    padding-left: 29px;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer;
    display: inline-block;
}

:root .portalclientestheme .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 .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input:focus ~ label:before {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5), inset 0 1px 0 white, inset 0 -1px 0 #e7e7e7, 0 2px 3px rgba(0, 0, 0, 0.05);
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
    content: "";
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 7px;
    font-size: 15px;
    text-align: center;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input ~ label:before {
    height: 22px;
    padding: 0 11px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 7px;
    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: 22px;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
    content: "\f00c";
    font-family: ThemeIcons;
    color: transparent;
    -webkit-transition: color 100ms;
    -moz-transition: color 100ms;
    transition: color 100ms;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input:active ~ label:after {
    background-color: rgba(125, 125, 125, 0.2);
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
    color: #197de1;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton > .v-icon, .portalclientestheme .v-select-optiongroup-large .v-radiobutton > label .v-icon {
    margin: 0 7px 0 4px;
    min-width: 1em;
    cursor: pointer;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-disabled  > label, .portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-disabled  > .v-icon {
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-disabled  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-disabled > input:active ~ label:after {
    background: transparent;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-readonly  > label, .portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-readonly  > .v-icon {
    cursor: default;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-readonly  > label > .v-icon {
    cursor: default;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-readonly > input:active ~ label:after {
    background: transparent;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton.v-readonly > input ~ label:after {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input:checked ~ label:after {
    width: 8px;
    height: 8px;
    top: 7px;
    left: 7px;
    background: #197de1;
}

:root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input ~ label:before, :root .portalclientestheme .v-select-optiongroup-large .v-radiobutton > input ~ label:after {
    border-radius: 50%;
    content: "";
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton, .portalclientestheme .v-select-optiongroup-large .v-checkbox {
    display: block;
    margin: 11px 16px 0 0;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton:first-child, .portalclientestheme .v-select-optiongroup-large .v-checkbox:first-child {
    margin-top: 7px;
}

.portalclientestheme .v-select-optiongroup-large .v-radiobutton:last-child, .portalclientestheme .v-select-optiongroup-large .v-checkbox:last-child {
    margin-bottom: 7px;
}

.portalclientestheme .v-select-optiongroup-large.v-has-width label {
    white-space: normal;
}

.portalclientestheme .v-select-optiongroup-horizontal {
    white-space: nowrap;
}

.portalclientestheme .v-select-optiongroup-horizontal .v-radiobutton, .portalclientestheme .v-select-optiongroup-horizontal .v-checkbox {
    display: inline-block;
}

.portalclientestheme .v-select-optiongroup-horizontal.v-has-width {
    white-space: normal;
}

.portalclientestheme .v-select-optiongroup-horizontal.v-has-width label {
    white-space: nowrap;
}

.portalclientestheme .v-link {
    cursor: pointer;
    color: #197de1;
    text-decoration: underline;
    font-weight: inherit;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-link:hover {
    color: #4396ea;
}

.portalclientestheme .v-link.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-link a {
    cursor: inherit;
    color: inherit;
    text-decoration: inherit;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    transition: inherit;
}

.portalclientestheme .v-link .v-icon {
    cursor: inherit;
}

.portalclientestheme .v-link-small {
    font-size: 14px;
}

.portalclientestheme .v-link-large {
    font-size: 20px;
}

.portalclientestheme .v-window {
    padding: 4px 4px;
    border-radius: 4px;
    background-color: white;
    color: #474747;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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);
    border-radius: 4px;
    padding: 0;
    min-width: 148px !important;
    min-height: 37px !important;
    white-space: nowrap;
    overflow: hidden !important;
    -webkit-transition: width 200ms, height 200ms, top 200ms, left 200ms;
    -moz-transition: width 200ms, height 200ms, top 200ms, left 200ms;
    transition: width 200ms, height 200ms, top 200ms, left 200ms;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-window.v-window-animate-in {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.portalclientestheme .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 .portalclientestheme .v-window-modalitycurtain {
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
}

.portalclientestheme .v-window-draggingCurtain {
    position: fixed !important;
}

.portalclientestheme .v-window-resizingCurtain + .v-window, .portalclientestheme .v-window-draggingCurtain + .v-window {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.portalclientestheme .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);
}

.portalclientestheme .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);
}

.portalclientestheme .v-window-header {
    line-height: 26px;
    padding-left: 12px;
    margin-right: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: break-spaces;
    color: #7e7e7e;
    padding-top: 10px;
}

.portalclientestheme .v-window-restorebox-disabled  ~ .v-window-closebox ~ .v-window-header, .portalclientestheme .v-window-maximizebox-disabled  ~ .v-window-closebox ~ .v-window-header {
    margin-right: 37px;
}

.portalclientestheme .v-window-restorebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header, .portalclientestheme .v-window-maximizebox-disabled  ~ .v-window-closebox-disabled ~ .v-window-header {
    margin-right: 12px;
}

.portalclientestheme .v-window-closebox, .portalclientestheme .v-window-maximizebox, .portalclientestheme .v-window-restorebox {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33px;
    height: 36px;
    background-color: white;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    font-size: 21px;
    color: #999999;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-window-closebox:focus, .portalclientestheme .v-window-maximizebox:focus, .portalclientestheme .v-window-restorebox:focus {
    outline: none;
}

.portalclientestheme .v-window-closebox:hover, .portalclientestheme .v-window-maximizebox:hover, .portalclientestheme .v-window-restorebox:hover {
    opacity: 1;
    filter: none ;
    color: #197de1;
}

.portalclientestheme .v-window-closebox:active, .portalclientestheme .v-window-maximizebox:active, .portalclientestheme .v-window-restorebox:active {
    color: inherit;
}

.portalclientestheme .v-window-closebox {
    padding-right: 4px;
    border-radius: 0 4px 0 4px;
}

.portalclientestheme .v-window-closebox:before {
    content: "\00d7";
}

.portalclientestheme .v-window-maximizebox, .portalclientestheme .v-window-restorebox {
    right: 33px;
    padding-left: 4px;
    border-radius: 0 0 0 4px;
}

.portalclientestheme .v-window-maximizebox  + .v-window-closebox, .portalclientestheme .v-window-restorebox  + .v-window-closebox {
    border-bottom-left-radius: 0;
}

.portalclientestheme .v-window-closebox-disabled, .portalclientestheme .v-window-resizebox-disabled, .portalclientestheme .v-window-restorebox-disabled, .portalclientestheme .v-window-maximizebox-disabled {
    display: none;
}

.portalclientestheme .v-window-closebox-disabled  + .v-window-closebox, .portalclientestheme .v-window-resizebox-disabled  + .v-window-closebox, .portalclientestheme .v-window-restorebox-disabled  + .v-window-closebox, .portalclientestheme .v-window-maximizebox-disabled  + .v-window-closebox {
    width: 37px;
    padding-right: 0;
    border-bottom-left-radius: 4px;
}

.portalclientestheme .v-window-maximizebox:before {
    content: "+";
}

.portalclientestheme .v-window-restorebox:before {
    content: "\2013";
}

.portalclientestheme .v-window > .popupContent, .portalclientestheme .v-window-wrap, .portalclientestheme .v-window-contents, .portalclientestheme .v-window-contents > .v-scrollable {
    height: 100%;
}

.portalclientestheme .v-window-contents {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 9px;
    margin-top: 0 !important;
}

.portalclientestheme .v-window-contents  > .v-scrollable {
    position: relative;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-top"] > tbody > [class*="firstrow"] > td {
    padding-top: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-bottom"] > tbody > [class*="lastrow"] > td {
    padding-bottom: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="captioncell"] {
    padding-left: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-left"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
    left: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"] {
    padding-right: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h2, .portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h3, .portalclientestheme .v-window-contents  > .v-scrollable  > .v-formlayout [class*="margin-right"] > tbody > [class*="row"] > [class*="contentcell"]  > .v-label-h4 {
    right: 12px;
}

.portalclientestheme .v-window-contents  > .v-scrollable:focus {
    outline: none;
}

.portalclientestheme .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;
}

.portalclientestheme .v-window-contents  > .v-scrollable .v-panel-captionwrap:after {
    border-color: #dfdfdf;
}

.portalclientestheme .v-window-contents  > .v-scrollable .v-panel-content:before {
    border-color: white;
}

.portalclientestheme .v-window-footer {
    height: 0;
}

.portalclientestheme .v-window-resizebox {
    position: absolute;
    z-index: 1000;
    right: 0;
    bottom: 0;
    width: 19px;
    height: 19px;
    cursor: nwse-resize;
}

.v-ie8 .portalclientestheme .v-window-resizebox {
    background: #000;
    filter: alpha(opacity=0.1);
}

.v-ie8 .portalclientestheme .v-window-resizebox, .v-ie9 .portalclientestheme .v-window-resizebox {
    cursor: se-resize;
}

.portalclientestheme .v-window-modalitycurtain:active  ~ .v-window {
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
}

.portalclientestheme .v-window-top-toolbar  > .v-widget, .portalclientestheme .v-window-bottom-toolbar  > .v-widget {
    vertical-align: top;
}

.portalclientestheme .v-window-top-toolbar .v-label, .portalclientestheme .v-window-bottom-toolbar .v-label {
    line-height: 36px;
}

.portalclientestheme .v-window-top-toolbar .v-spacing, .portalclientestheme .v-window-bottom-toolbar .v-spacing {
    width: 6px;
}

.portalclientestheme .v-window-top-toolbar.v-layout {
    padding: 7px 12px;
    position: relative;
    z-index: 2;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    background-color: #fafafa;
}

.portalclientestheme .v-window-top-toolbar.v-menubar {
    margin: 12px 12px 6px;
}

.portalclientestheme .v-window-top-toolbar.v-menubar-borderless {
    padding-left: 6px;
    padding-right: 6px;
    margin: 5px 0;
}

.portalclientestheme .v-window-bottom-toolbar.v-layout {
    padding: 7px 12px;
    background-color: #fafafa;
    background-image: -webkit-linear-gradient(top, #f0f0f0 0, #fafafa 4px);
    background-image: linear-gradient(to bottom,#f0f0f0 0, #fafafa 4px);
    border-top: 1px solid #dfdfdf;
    border-radius: 0 0 9px 9px;
}

.portalclientestheme .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-layout {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin: -12px -12px 0;
}

.portalclientestheme .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar {
    margin: 0;
}

.portalclientestheme .v-margin-left.v-margin-right.v-margin-top .v-window-top-toolbar.v-menubar-borderless {
    margin: -6px -6px 0;
    padding: 0;
}

.portalclientestheme .v-margin-left.v-margin-right.v-margin-bottom .v-window-bottom-toolbar.v-layout {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 -12px -12px;
}

.portalclientestheme .v-tree {
    position: relative;
    white-space: nowrap;
}

.portalclientestheme .v-tree:focus {
    outline: none;
}

.portalclientestheme .v-tree-node:before {
    content: "";
    position: absolute;
    display: inline-block;
    z-index: 3;
    width: 1.9em;
    height: 28px;
    cursor: pointer;
    background: red;
    opacity: 0;
}

.v-ie8 .portalclientestheme .v-tree-node:before {
    position: static;
    margin-left: -1.9em;
    vertical-align: top;
    content: "\f0da";
    font-family: ThemeIcons;
    text-align: center;
    background: transparent;
}

.v-ie8 .portalclientestheme .v-tree-node {
    padding-left: 1.9em;
}

.portalclientestheme .v-tree-node-caption {
    height: 28px;
    line-height: 27px;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top;
}

.portalclientestheme .v-tree-node-caption > div {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 2;
}

.portalclientestheme .v-tree-node-caption > div:before {
    content: "\f0da";
    font-family: ThemeIcons;
    display: inline-block;
    width: 0.5em;
    text-align: center;
    margin: 0 0.6em 0 0.8em;
    -webkit-transition: all 100ms;
    -moz-transition: all 100ms;
    transition: all 100ms;
}

.v-ie8 .portalclientestheme .v-tree-node-caption > div:before {
    display: none;
}

.portalclientestheme .v-tree-node-caption span {
    padding-right: 28px;
    cursor: pointer;
    display: inline-block;
    width: 100%;
}

.v-ie .portalclientestheme .v-tree-node-caption span {
    width: auto;
}

.portalclientestheme .v-tree-node-caption .v-icon {
    padding-right: 0;
    width: auto;
    min-width: 1em;
}

.portalclientestheme .v-tree-node-caption:after {
    content: "";
    display: block;
    vertical-align: top;
    position: absolute;
    z-index: 1;
    left: 0;
    margin-top: -28px;
    width: 100%;
    height: 28px;
    border-radius: 9px;
    opacity: 0;
    -webkit-transition: opacity 120ms;
    -moz-transition: opacity 120ms;
    transition: opacity 120ms;
}

.v-ie8 .portalclientestheme .v-tree-node-caption:after {
    content: none;
}

.v-ie8 .portalclientestheme .v-tree-node-caption {
    display: inline-block;
}

.portalclientestheme .v-tree-node-expanded > .v-tree-node-caption > div:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    content: "\f0da";
    font-family: ThemeIcons;
}

.v-ie8 .portalclientestheme .v-tree-node-expanded:before {
    content: "\f0d7";
    font-family: ThemeIcons;
}

.portalclientestheme .v-tree-node-leaf:before, .portalclientestheme .v-tree-node-leaf > .v-tree-node-caption > div:before {
    visibility: hidden;
}

.portalclientestheme .v-tree-node-focused:after {
    opacity: 1;
    border: 1px solid #6EAB24;
}

.v-ie8 .portalclientestheme .v-tree-node-focused {
    outline: 1px dotted #6EAB24;
}

.portalclientestheme .v-tree-node-selected {
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-tree-node-selected:after {
    opacity: 1;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    border: none;
}

.v-ie8 .portalclientestheme .v-tree-node-selected {
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
}

.portalclientestheme .v-tree-node-children {
    padding-left: 19px;
}

.v-ie8 .portalclientestheme .v-tree-node-children {
    padding-left: 0;
}

.portalclientestheme .v-tree-node-drag-top:before, .portalclientestheme .v-tree-node-drag-bottom:after, .portalclientestheme .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: #6EAB24;
    font-size: 32px;
    line-height: 2px;
    color: #6EAB24;
    text-indent: -4px;
    text-shadow: 0 0 1px #fafafa, 0 0 1px #fafafa;
    opacity: 1;
    visibility: visible;
}

.portalclientestheme .v-tree-node-drag-bottom.v-tree-node-dragfolder.v-tree-node-expanded:after {
    content: none;
}

.portalclientestheme .v-tree-node-caption-drag-center {
    -webkit-box-shadow: 0 0 0 2px #6EAB24;
    box-shadow: 0 0 0 2px #6EAB24;
    position: relative;
    border-radius: 9px;
}

.v-ie8 .portalclientestheme .v-tree-node-caption-drag-center {
    outline: 2px solid #6EAB24;
}

.v-ff .portalclientestheme .v-tree-node-drag-top:before, .v-ff .portalclientestheme .v-tree-node-drag-bottom:after {
    line-height: 1px;
}

.v-ie8 .portalclientestheme .v-tree-node-drag-top:before, .v-ie8 .portalclientestheme .v-tree-node-drag-bottom:after {
    line-height: 0;
}

.portalclientestheme .v-table {
    position: relative;
    background: #fafafa;
    color: #464646;
    overflow: hidden;
}

.portalclientestheme .v-table-header table, .portalclientestheme .v-table-footer table, .portalclientestheme .v-table-table {
    -webkit-box-shadow: 0 0 0 1px #d4d4d4;
    box-shadow: 0 0 0 1px #d4d4d4;
}

.v-ie8 .portalclientestheme .v-table-header table, .v-ie8 .portalclientestheme .v-table-footer table, .v-ie8 .portalclientestheme .v-table-table {
    outline: 1px solid #d4d4d4;
}

.portalclientestheme .v-table-header-wrap, .portalclientestheme .v-table-footer-wrap, .portalclientestheme .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: 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.portalclientestheme .v-table-header-wrap {
    position: relative;
    border-bottom: none;
}

.portalclientestheme .v-table-footer-wrap {
    border-top: none;
}

.portalclientestheme .v-table-footer td {
    border-left: 1px solid #d4d4d4;
}

.portalclientestheme .v-table-footer-container, .portalclientestheme .v-table-caption-container {
    overflow: hidden;
    line-height: 1;
    min-height: 37px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.v-ie8 .portalclientestheme .v-table-footer-container, .v-ie8 .portalclientestheme .v-table-caption-container {
    min-height: 14px;
}

.portalclientestheme .v-table-footer-container {
    padding: 11px 12px 12px;
    float: right;
}

.portalclientestheme [class^="v-table-header-cell"] {
    position: relative;
}

.portalclientestheme .v-table-caption-container, .portalclientestheme .v-table-header-drag {
    padding: 12px 12px 11px;
    border-left: 1px solid #d4d4d4;
}

.portalclientestheme .v-table-caption-container-align-right {
    padding-right: 4px;
}

.portalclientestheme .v-table-resizer {
    height: 37px;
    width: 8px;
    cursor: e-resize;
    cursor: col-resize;
    position: relative;
    right: -4px;
    z-index: 1;
    margin-left: -8px;
}

.portalclientestheme .v-table-cell-content {
    border-left: 1px solid #d4d4d4;
    overflow: hidden;
    height: 37px;
    vertical-align: middle;
}

.portalclientestheme .v-table-cell-content:first-child {
    border-left: none;
    padding-left: 1px;
}

.portalclientestheme .v-table-header td:first-child .v-table-caption-container, .portalclientestheme .v-table-footer td:first-child {
    border-left-color: transparent;
}

.portalclientestheme .v-table-cell-wrapper {
    line-height: 1;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 0 !important;
}

.portalclientestheme .v-table-cell-wrapper  > .v-widget {
    margin: 3px -6px;
}

.portalclientestheme .v-table-cell-wrapper  > .v-widget.v-label, .portalclientestheme .v-table-cell-wrapper  > .v-widget.v-checkbox, .portalclientestheme .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
    margin: 0;
}

.portalclientestheme .v-table-cell-wrapper  > .v-widget.v-progressbar {
    margin-left: 0;
    margin-right: 0;
}

.portalclientestheme .v-table-body {
    border: 1px solid #d4d4d4;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.portalclientestheme .v-table-table {
    background-color: white;
    white-space: nowrap;
}

.portalclientestheme .v-table-table td {
    border-top: 1px solid #d4d4d4;
}

.portalclientestheme .v-table-table tr:first-child > td {
    border-top: none;
}

.portalclientestheme .v-table-row {
    background-color: white;
    cursor: pointer;
}

.portalclientestheme .v-table-row-odd {
    background-color: #f5f5f5;
    cursor: pointer;
}

.portalclientestheme .v-table-body-noselection .v-table-row, .portalclientestheme .v-table-body-noselection .v-table-row-odd {
    cursor: default;
}

.portalclientestheme .v-table [class*="-row"].v-selected {
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    background-origin: border-box;
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-table [class*="-row"].v-selected  + .v-selected {
    background: #166ed5;
}

.portalclientestheme .v-table [class*="-row"].v-selected  + .v-selected td {
    border-top-color: #166ed5;
}

.portalclientestheme .v-table [class*="-row"].v-selected .v-table-cell-content {
    border-color: transparent;
    border-left-color: #1d69b4;
}

.portalclientestheme .v-table [class*="-row"].v-selected .v-table-cell-content:first-child {
    border-left-color: transparent;
}

.portalclientestheme .v-table-header-cell-asc .v-table-sort-indicator, .portalclientestheme .v-table-header-cell-desc .v-table-sort-indicator {
    background: transparent;
    width: 19px;
    height: 37px;
    line-height: 37px;
    margin-left: -19px;
}

.portalclientestheme .v-table-header-cell-asc .v-table-sort-indicator:before, .portalclientestheme .v-table-header-cell-desc .v-table-sort-indicator:before {
    font-style: normal;
    font-weight: normal;
    display: inline-block;
}

.portalclientestheme .v-table-header-cell-asc .v-table-sort-indicator:before {
    content: "\f0de";
    font-family: ThemeIcons;
}

.portalclientestheme .v-table-header-cell-desc .v-table-sort-indicator:before {
    content: "\f0dd";
    font-family: ThemeIcons;
}

.portalclientestheme [class*="rowheader"] span.v-icon {
    min-width: 1em;
}

.portalclientestheme .v-table-focus {
    outline: 1px solid #6EAB24;
    outline-offset: -1px;
}

.portalclientestheme .v-drag-element.v-table-focus, .portalclientestheme .v-drag-element .v-table-focus {
    outline: none;
}

.portalclientestheme .v-table-header-drag {
    position: absolute;
    opacity: 0.9;
    filter: alpha(opacity=90) ;
    margin-top: -19px;
    z-index: 30000;
    line-height: 1;
}

.portalclientestheme .v-table-focus-slot-right {
    border-right: 3px solid #6EAB24;
    right: -2px;
    margin-left: -11px !important;
}

.portalclientestheme .v-table-focus-slot-left {
    float: left;
    border-left: 3px solid #6EAB24;
    left: -1px;
    right: auto;
    margin-left: 0 !important;
    margin-right: -11px;
}

.portalclientestheme .v-table-column-selector {
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 9px;
    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: 19px;
    height: 19px;
    line-height: 19px;
    padding: 0;
    border-top-width: 0;
    border-right-width: 0;
    border-radius: 0 0 0 9px;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    filter: alpha(opacity=0) ;
    -webkit-transition: opacity 200ms 2s;
    -moz-transition: opacity 200ms 2s;
    transition: opacity 200ms 2s;
}

.portalclientestheme .v-table-column-selector:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-table-column-selector:hover:after {
    background-color: rgba(186, 186, 186, 0.1);
}

.portalclientestheme .v-table-column-selector:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-table-column-selector:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .v-table-column-selector:after {
    content: "";
    position: absolute;
    border: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.portalclientestheme .v-table-column-selector:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .v-table-column-selector:before {
    font-family: ThemeIcons;
    content: "\f013";
}

.portalclientestheme .v-table-header-wrap:hover .v-table-column-selector {
    opacity: 1;
    filter: none ;
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    transition-delay: 200ms;
}

.portalclientestheme .v-on:before, .portalclientestheme .v-off:before {
    content: "\f00c";
    font-family: ThemeIcons;
    font-size: 0.9em;
    margin-right: 6px;
}

.portalclientestheme .v-on div, .portalclientestheme .v-off div {
    display: inline;
}

.portalclientestheme .v-off:before {
    visibility: hidden;
}

.portalclientestheme tbody.v-drag-element {
    display: block;
    overflow: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    filter: none ;
}

.portalclientestheme 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: 9px;
    overflow: hidden;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
    background: white;
}

.portalclientestheme .v-table-body {
    position: relative;
    z-index: 1;
}

.portalclientestheme .v-table-scrollposition {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 37px;
    line-height: 37px;
    margin: -19px 0 0 !important;
    text-align: center;
}

.portalclientestheme .v-table-drag {
    overflow: visible;
}

.portalclientestheme .v-table-drag .v-table-body {
    -webkit-box-shadow: 0 0 0 2px rgba(110, 171, 36, 0.5);
    box-shadow: 0 0 0 2px rgba(110, 171, 36, 0.5);
    border-color: #6EAB24;
}

.v-ie8 .portalclientestheme .v-table-drag .v-table-body {
    border-color: #6EAB24;
}

.portalclientestheme .v-table-drag .v-table-body .v-table-focus {
    outline: none;
}

.portalclientestheme .v-table-row-drag-middle .v-table-cell-content {
    background-color: #e2eed3;
    color: #41512d;
}

.portalclientestheme .v-table-row-drag-bottom td.v-table-cell-content {
    border-bottom: 2px solid #6EAB24;
    height: 35px;
}

.portalclientestheme .v-table-row-drag-bottom .v-table-cell-wrapper {
    margin-bottom: -2px;
}

.portalclientestheme .v-table-row-drag-top td.v-table-cell-content {
    border-top: 2px solid #6EAB24;
    height: 36px;
}

.portalclientestheme .v-table-row-drag-top .v-table-cell-wrapper {
    margin-top: -1px;
}

.portalclientestheme .v-table-no-stripes .v-table-row, .portalclientestheme .v-table-no-stripes .v-table-row-odd {
    background: transparent;
}

.portalclientestheme .v-table-no-vertical-lines .v-table-cell-content {
    border-left: none;
    padding-left: 1px;
}

.portalclientestheme .v-table-no-vertical-lines.v-treetable .v-table-cell-content {
    padding-left: 13px;
}

.portalclientestheme .v-table-no-horizontal-lines .v-table-cell-content {
    border-top: none;
    border-bottom: none;
}

.portalclientestheme .v-table-no-horizontal-lines .v-table-row-drag-top .v-table-cell-content, .portalclientestheme .v-table-no-horizontal-lines .v-table-row-drag-bottom .v-table-cell-content {
    height: 36px;
}

.portalclientestheme .v-table-no-header .v-table-header-wrap {
    display: none;
}

.portalclientestheme .v-table-borderless .v-table-header-wrap, .portalclientestheme .v-table-borderless .v-table-footer-wrap, .portalclientestheme .v-table-borderless .v-table-header-drag, .portalclientestheme .v-table-borderless .v-table-body {
    border: none;
}

.portalclientestheme .v-table-borderless .v-table-header-wrap {
    border-bottom: 1px solid #d9d9d9;
}

.portalclientestheme .v-table-borderless .v-table-footer-wrap {
    border-top: 1px solid #d9d9d9;
}

.portalclientestheme .v-table-compact .v-table-header-wrap, .portalclientestheme .v-table-compact .v-table-footer-wrap, .portalclientestheme .v-table-compact .v-table-header-drag, .portalclientestheme .v-table-small .v-table-header-wrap, .portalclientestheme .v-table-small .v-table-footer-wrap, .portalclientestheme .v-table-small .v-table-header-drag {
    font-size: 14px;
}

.portalclientestheme .v-table-compact .v-table-footer-container, .portalclientestheme .v-table-small .v-table-footer-container {
    padding: 8px 7px 9px;
}

.portalclientestheme .v-table-compact .v-table-caption-container, .portalclientestheme .v-table-compact .v-table-header-drag, .portalclientestheme .v-table-small .v-table-caption-container, .portalclientestheme .v-table-small .v-table-header-drag {
    padding-top: 9px;
    padding-bottom: 8px;
    padding-left: 6px;
    padding-right: 6px;
}

.portalclientestheme .v-table-compact .v-table-caption-container-align-right, .portalclientestheme .v-table-small .v-table-caption-container-align-right {
    padding-right: 0;
}

.portalclientestheme .v-table-compact .v-table-resizer, .portalclientestheme .v-table-small .v-table-resizer {
    height: 31px;
}

.portalclientestheme .v-table-compact .v-table-cell-content, .portalclientestheme .v-table-small .v-table-cell-content {
    height: 31px;
}

.portalclientestheme .v-table-compact .v-table-cell-wrapper, .portalclientestheme .v-table-small .v-table-cell-wrapper {
    padding-left: 6px;
    padding-right: 6px;
}

.portalclientestheme .v-table-compact .v-table-cell-wrapper  > .v-widget, .portalclientestheme .v-table-small .v-table-cell-wrapper  > .v-widget {
    margin: 2px -3px;
}

.portalclientestheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-label, .portalclientestheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-checkbox, .portalclientestheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-select-optiongroup, .portalclientestheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-label, .portalclientestheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-checkbox, .portalclientestheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-select-optiongroup {
    margin: 0;
}

.portalclientestheme .v-table-compact .v-table-cell-wrapper  > .v-widget.v-progressbar, .portalclientestheme .v-table-small .v-table-cell-wrapper  > .v-widget.v-progressbar {
    margin-left: 0;
    margin-right: 0;
}

.portalclientestheme .v-table-compact .v-table-header-cell-asc .v-table-sort-indicator, .portalclientestheme .v-table-compact .v-table-header-cell-desc .v-table-sort-indicator, .portalclientestheme .v-table-small .v-table-header-cell-asc .v-table-sort-indicator, .portalclientestheme .v-table-small .v-table-header-cell-desc .v-table-sort-indicator {
    height: 31px;
    line-height: 31px;
}

.portalclientestheme .v-table-compact .v-table-header-drag, .portalclientestheme .v-table-small .v-table-header-drag {
    margin-top: -16px;
}

.portalclientestheme .v-table-compact.v-treetable .v-table-cell-wrapper, .portalclientestheme .v-table-small.v-treetable .v-table-cell-wrapper {
    padding-left: 0;
    padding-right: 0;
    min-height: 16px;
}

.portalclientestheme .v-table-compact.v-treetable .v-table-cell-content, .portalclientestheme .v-table-small.v-treetable .v-table-cell-content {
    padding-left: 6px;
    padding-right: 6px;
}

.portalclientestheme .v-table-compact.v-treetable .v-table-cell-content:first-child, .portalclientestheme .v-table-small.v-treetable .v-table-cell-content:first-child {
    padding-left: 7px;
}

.portalclientestheme .v-table-compact.v-treetable .v-table-footer-container, .portalclientestheme .v-table-small.v-treetable .v-table-footer-container {
    padding-left: 6px;
    padding-right: 6px;
}

.portalclientestheme .v-table-compact .v-table-row-drag-top .v-table-cell-content, .portalclientestheme .v-table-compact .v-table-row-drag-bottom .v-table-cell-content, .portalclientestheme .v-table-small .v-table-row-drag-top .v-table-cell-content, .portalclientestheme .v-table-small .v-table-row-drag-bottom .v-table-cell-content {
    height: 30px;
}

.portalclientestheme .v-table-small {
    font-size: 14px;
}

.portalclientestheme .v-table-small.v-treetable .v-table-cell-wrapper {
    min-height: 14px;
}

.portalclientestheme .v-treetable [class*="caption-container"], .portalclientestheme .v-treetable [class*="footer-container"], .portalclientestheme .v-treetable [class*="cell-wrapper"] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding-left: 0;
    padding-right: 0;
}

.portalclientestheme .v-treetable [class*="caption-container"], .portalclientestheme .v-treetable [class*="footer-container"] {
    min-height: 14px;
}

.portalclientestheme .v-treetable [class*="cell-wrapper"] {
    min-height: 16px;
}

.portalclientestheme .v-treetable [class*="caption-container"] {
    padding-left: 12px;
}

.portalclientestheme .v-treetable [class*="caption-container-align-right"] {
    padding-left: 20px;
}

.portalclientestheme .v-treetable [class*="footer-container"] {
    padding-right: 12px;
}

.portalclientestheme .v-treetable [class*="cell-content"] {
    padding-left: 12px;
    padding-right: 12px;
}

.portalclientestheme .v-treetable [class*="cell-content"]:first-child {
    padding-left: 13px;
}

.portalclientestheme .v-treetable-treespacer {
    display: inline-block;
    position: absolute;
    width: 19px !important;
    margin-left: -25px;
    text-align: center;
    cursor: pointer;
}

.portalclientestheme .v-treetable-node-closed:before {
    content: "\f0da";
    font-family: ThemeIcons;
}

.portalclientestheme .v-treetable-node-open:before {
    content: "\f0d7";
    font-family: ThemeIcons;
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter {
    width: 1px;
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter:after {
    left: -6px;
    right: -6px;
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before {
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 9px;
    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%);
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:hover:after {
    background-color: rgba(186, 186, 186, 0.1);
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-hsplitter div:before:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .v-splitpanel-horizontal  > div > .v-splitpanel-second-container {
    margin-left: 1px;
}

.portalclientestheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter {
    height: 1px;
}

.portalclientestheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter:after {
    top: -6px;
    bottom: -6px;
}

.portalclientestheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before {
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 9px;
    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;
}

.portalclientestheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:hover:after {
    background-color: rgba(186, 186, 186, 0.1);
}

.portalclientestheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-splitpanel-vertical  > div > .v-splitpanel-vsplitter div:before:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter {
    width: 12px;
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter:after {
    left: 0px;
    right: 0px;
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before {
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 9px;
    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%);
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:hover:after {
    background-color: rgba(186, 186, 186, 0.1);
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-hsplitter div:before:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .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: 37px;
    margin-left: -1px;
    margin-top: -19px;
}

.portalclientestheme .v-splitpanel-horizontal.large  > div > .v-splitpanel-second-container {
    margin-left: 12px;
}

.portalclientestheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter {
    height: 12px;
}

.portalclientestheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter:after {
    top: 0px;
    bottom: 0px;
}

.portalclientestheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before {
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 9px;
    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;
}

.portalclientestheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:hover:after {
    background-color: rgba(186, 186, 186, 0.1);
}

.portalclientestheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-splitpanel-vertical.large  > div > .v-splitpanel-vsplitter div:before:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .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: 37px;
    height: 0;
    margin-left: -19px;
    margin-top: -1px;
}

.portalclientestheme .v-progressbar-wrapper {
    border-radius: 4px;
    height: 9px;
    background-color: #d4d4d4;
    background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
    background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 74px;
}

.portalclientestheme .v-progressbar-indicator {
    border-radius: 4px;
    height: inherit;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    
    
    border: 1px solid #1362b1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 18px;
    -webkit-transition: width 160ms;
    -moz-transition: width 160ms;
    transition: width 160ms;
}

.portalclientestheme .v-progressbar-point .v-progressbar-indicator {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    text-align: right;
    overflow: hidden;
}

.portalclientestheme .v-progressbar-point .v-progressbar-indicator:before {
    content: "";
    display: inline-block;
    border-radius: 4px;
    height: inherit;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    
    
    border: 1px solid #1362b1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    width: 9px;
    vertical-align: top;
}

.portalclientestheme .v-progressbar-indeterminate {
    height: 24px !important;
    width: 24px !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid rgba(110, 171, 36, 0.2);
    border-top-color: #6EAB24;
    border-right-color: #6EAB24;
    border-radius: 100%;
    -webkit-animation: v-rotate-360 500ms infinite linear;
    -moz-animation: v-rotate-360 500ms infinite linear;
    animation: v-rotate-360 500ms infinite linear;
    pointer-events: none;
}

.v-ie8 .portalclientestheme .v-progressbar-indeterminate, .v-ie9 .portalclientestheme .v-progressbar-indeterminate {
    border: none;
    border-radius: 9px;
    /* background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;*/
    background: #fff url(images/preloader.gif) no-repeat 50% 50% !important;
    background-size: 80%;
}

.v-ie8 .portalclientestheme .v-progressbar-indeterminate {
    min-width: 30px;
    min-height: 30px;
}

.portalclientestheme .v-progressbar-indeterminate .v-progressbar-wrapper {
    display: none;
}

.portalclientestheme .v-slider {
    position: relative;
}

.portalclientestheme .v-slider:focus {
    outline: none;
}

.portalclientestheme .v-slider:focus .v-slider-handle:after {
    opacity: 1;
}

.v-ie8 .portalclientestheme .v-slider:focus .v-slider-handle:after {
    visibility: visible;
}

.portalclientestheme .v-slider.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-slider-base {
    border-radius: 4px;
    height: 9px;
    background-color: #d4d4d4;
    background-image: -webkit-linear-gradient(bottom, #d7d7d7 2%, #c7c7c7 98%);
    background-image: linear-gradient(to top,#d7d7d7 2%, #c7c7c7 98%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 74px;
    height: 6px;
    margin: 16px 11px;
    white-space: nowrap;
    overflow: hidden;
    
}

.portalclientestheme .v-slider-base:before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 11px;
    width: 18px;
    border-radius: 9px;
    border-left: 1px solid #1362b1;
}

.portalclientestheme .v-slider-base:after {
    border-radius: 4px;
    height: inherit;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    
    
    border: 1px solid #1362b1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    content: "";
    display: inline-block;
    margin-left: -100%;
    width: 100%;
    vertical-align: top;
}

.v-ie8 .portalclientestheme .v-slider-base:after {
    position: relative;
    left: -11px;
}

.portalclientestheme .v-has-width > .v-slider-base {
    min-width: 0;
}

.portalclientestheme .v-slider-handle {
    margin-top: -16px;
    width: 0.1px;
    display: inline-block;
    vertical-align: top;
}

.portalclientestheme .v-slider-handle:before {
    height: 37px;
    padding: 0 18px;
    color: #191919;
    font-weight: 400;
    
    
    border-radius: 9px;
    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);
}

.portalclientestheme .v-slider-handle:before:after {
    border: inherit;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}

.portalclientestheme .v-slider-handle:before:hover:after {
    background-color: rgba(186, 186, 186, 0.1);
}

.portalclientestheme .v-slider-handle:before:focus:after {
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-slider-handle:before:active:after {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .v-slider-handle:after {
    border: 1px solid #c5c5c5;
    border-color: #6EAB24;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    opacity: 0;
    -webkit-transition: opacity 200ms;
    -moz-transition: opacity 200ms;
    transition: opacity 200ms;
}

.v-ie8 .portalclientestheme .v-slider-handle:after {
    visibility: hidden;
}

.portalclientestheme .v-slider-handle:before, .portalclientestheme .v-slider-handle:after {
    content: "";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    width: 22px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    z-index: 1;
    margin-top: 8px;
    margin-left: -11px;
}

.portalclientestheme .v-slider-feedback {
    background-color: #323232;
    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: 5px 9px;
    border-radius: 3px;
    max-width: 35em;
    overflow: hidden !important;
    font-size: 14px;
}

.portalclientestheme .v-slider-vertical {
    padding: 11px 0;
    height: 96px;
}

.portalclientestheme .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: 6px;
    height: 100% !important;
    min-width: 0;
    margin: 0 16px;
}

.portalclientestheme .v-slider-vertical .v-slider-base:before {
    top: auto;
    bottom: 11px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 18px;
    border-left: none;
    border-bottom: 1px solid #1362b1;
}

.portalclientestheme .v-slider-vertical .v-slider-base:after {
    height: 101%;
    margin-left: 0;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(left, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to right,#1b87e3 2%, #166ed5 98%);
}

.v-ie8 .portalclientestheme .v-slider-vertical .v-slider-base:after {
    top: 11px;
    left: 0;
    height: 130%;
}

.portalclientestheme .v-slider-vertical .v-slider-handle {
    width: 0;
    height: 0.1px;
    width: 37px;
    display: block;
}

.portalclientestheme .v-slider-vertical .v-slider-handle:before, .portalclientestheme .v-slider-vertical .v-slider-handle:after {
    width: 22px;
    height: 22px;
    margin-top: -11px;
    margin-left: -8px;
}

.portalclientestheme .v-slider-no-indicator .v-slider-base:before, .portalclientestheme .v-slider-no-indicator .v-slider-base:after {
    display: none;
}

.portalclientestheme .v-tabsheet:not(.v-has-width) {
    width: auto !important;
}

.portalclientestheme .v-tabsheet-spacertd {
    display: none !important;
}

.portalclientestheme .v-tabsheet-tabcontainer {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme .v-tabsheet-tabcontainer:before {
    content: "";
    position: absolute;
    height: 0;
    border-top: 1px solid #dfdfdf;
    bottom: 0;
    left: 0;
    right: 0;
}

.portalclientestheme .v-tabsheet-tabcontainer .v-tabsheet-tabs {
    position: relative;
}

.portalclientestheme .v-tabsheet-tabitemcell {
    vertical-align: bottom;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-tabsheet-tabitem {
    line-height: 0;
    overflow: hidden;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-caption {
    margin-left: 19px;
    padding: 0 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    line-height: 37px;
    font-size: 15px;
    font-weight: 300;
    color: #696969;
    width: auto !important;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 2px solid transparent;
    position: relative;
    -webkit-transition: border-bottom 200ms, color 200ms;
    -moz-transition: border-bottom 200ms, color 200ms;
    transition: border-bottom 200ms, color 200ms;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-caption .v-captiontext {
    display: inline;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-caption .v-icon + .v-captiontext {
    margin-left: 9px;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-caption:hover {
    color: #197de1;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-caption.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
    cursor: default;
    color: inherit !important;
}

.portalclientestheme .v-tabsheet-tabitemcell:first-child .v-caption, .portalclientestheme .v-tabsheet-tabitemcell[aria-hidden="true"] + td .v-caption {
    margin-left: 0;
}

.portalclientestheme .v-tabsheet-tabitemcell:focus {
    outline: none;
}

.portalclientestheme .v-tabsheet-tabitemcell:focus .v-caption {
    color: #197de1;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-tabsheet-tabitem-selected .v-caption.v-caption {
    border-bottom-color: #197de1;
    color: #197de1;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-caption-closable {
    padding-right: 22px;
}

.portalclientestheme .v-tabsheet-tabitemcell.icons-on-top .v-caption-closable {
    padding-right: 4px;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-tabsheet-caption-close {
    position: absolute;
    right: 0;
    top: 50%;
    margin: -8px 0 0;
    font-size: 18px;
    line-height: 18px;
    width: 18px;
    text-align: center;
    border-radius: 5px;
    color: #969696;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-tabsheet-caption-close:hover {
    background: rgba(0, 0, 0, 0.03);
    color: #197de1;
}

.portalclientestheme .v-tabsheet-tabitemcell .v-tabsheet-caption-close:active {
    background: #197de1;
    color: #c8dbed;
}

.portalclientestheme .v-tabsheet-scroller {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding-left: 19px;
    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;
}

.portalclientestheme .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%);
}

.v-ie8 .portalclientestheme .v-tabsheet-scroller, .v-ie9 .portalclientestheme .v-tabsheet-scroller {
    background-color: #fafafa;
}

.v-ie8 .portalclientestheme .v-tabsheet-scroller:after, .v-ie9 .portalclientestheme .v-tabsheet-scroller:after {
    background-color: #dfdfdf;
}

.portalclientestheme .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 9px;
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-tabsheet-scroller button:hover {
    opacity: 1;
    filter: none ;
    color: #197de1;
}

.portalclientestheme .v-tabsheet-scroller button:active {
    opacity: 0.7;
    filter: alpha(opacity=70) ;
    color: #197de1;
}

.portalclientestheme .v-tabsheet-scroller button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.portalclientestheme .v-tabsheet-scroller [class*="Next"] {
    padding-left: 5px;
}

.portalclientestheme .v-tabsheet-scroller [class*="Next"]:before {
    font-family: ThemeIcons;
    content: "\f054";
}

.portalclientestheme .v-tabsheet-scroller [class*="Prev"] {
    padding-right: 5px;
}

.portalclientestheme .v-tabsheet-scroller [class*="Prev"]:before {
    font-family: ThemeIcons;
    content: "\f053";
}

.portalclientestheme .v-tabsheet-scroller [class*="disabled"] {
    cursor: default;
    color: inherit !important;
    opacity: 0.1 !important;
    filter: alpha(opacity=10) !important;
}

.portalclientestheme .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;
}

.portalclientestheme .v-tabsheet-deco {
    height: 20px !important;
    width: 20px !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid rgba(110, 171, 36, 0.2);
    border-top-color: #6EAB24;
    border-right-color: #6EAB24;
    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: -29px;
    left: 50%;
    margin-left: -10px;
}

.v-ie8 .portalclientestheme .v-tabsheet-deco, .v-ie9 .portalclientestheme .v-tabsheet-deco {
    border: none;
    border-radius: 9px;
    /*background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;*/
    background: #fff url(images/preloader.gif) no-repeat 50% 50% !important;
    background-size: 80%;
}

.v-ie8 .portalclientestheme .v-tabsheet-deco {
    min-width: 30px;
    min-height: 30px;
}

.portalclientestheme .v-tabsheet-loading .v-tabsheet-deco {
    display: block;
}

.portalclientestheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer table, .portalclientestheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tbody, .portalclientestheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
    width: 100%;
}

.portalclientestheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer tr {
    display: table;
    table-layout: fixed;
}

.portalclientestheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer td {
    display: table-cell;
}

.portalclientestheme .v-tabsheet-equal-width-tabs  > .v-tabsheet-tabcontainer .v-caption {
    margin: 0;
    display: block;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption {
    margin-left: 4px;
    padding: 0 12px;
    background-color: #fafafa;
    border: 1px solid transparent;
    line-height: 36px;
    border-radius: 9px 9px 0 0;
    font-weight: 400;
    -webkit-transition: background-color 160ms;
    -moz-transition: background-color 160ms;
    transition: background-color 160ms;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption:hover {
    background-color: #f2f2f2;
    border-bottom-color: #dfdfdf;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption.v-disabled:hover {
    background-color: #fafafa;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-caption-closable {
    padding-right: 30px;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
    top: 4px;
    right: 4px;
    margin-top: 0;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer td:first-child .v-caption, .portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer [aria-hidden="true"] + td .v-caption {
    margin-left: 0;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem .v-caption {
    border-color: #dfdfdf;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
    background: white;
    border-color: #dfdfdf;
    border-bottom: none;
    padding-bottom: 1px;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-content {
    border: 1px solid #dfdfdf;
    border-top: none;
}

.portalclientestheme .v-tabsheet-framed  > .v-tabsheet-content  > div {
    background: white;
}

.portalclientestheme .v-tabsheet-framed.padded-tabbar  > .v-tabsheet-tabcontainer {
    border: 1px solid #dfdfdf;
    border-bottom: none;
    background: #fafafa;
    padding-top: 6px;
}

.portalclientestheme .v-tabsheet-framed.icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-caption {
    padding-bottom: 7px;
}

.portalclientestheme .v-tabsheet-centered-tabs  > .v-tabsheet-tabcontainer {
    text-align: center;
}

.portalclientestheme .v-tabsheet-right-aligned-tabs  > .v-tabsheet-tabcontainer {
    text-align: right;
}

.portalclientestheme .v-tabsheet-padded-tabbar  > .v-tabsheet-tabcontainer .v-tabsheet-tabs {
    padding: 0 9px;
}

.portalclientestheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption {
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 1.2;
}

.portalclientestheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon {
    display: block;
}

.portalclientestheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-icon  + .v-captiontext.v-captiontext {
    margin-left: 0;
}

.portalclientestheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-caption-closable {
    padding-right: 12px;
}

.portalclientestheme .v-tabsheet-icons-on-top  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
    top: 4px;
    margin-top: 0;
}

.portalclientestheme .v-tabsheet-compact-tabbar  > .v-tabsheet-tabcontainer-compact-tabbar .v-caption {
    line-height: 1.8;
}

.portalclientestheme .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-caption-close {
    visibility: hidden;
}

.portalclientestheme .v-tabsheet-only-selected-closable  > .v-tabsheet-tabcontainer .v-tabsheet-tabitem-selected .v-tabsheet-caption-close {
    visibility: visible;
}

.portalclientestheme .v-colorpicker-popup.v-window {
    min-width: 220px !important;
}

.portalclientestheme .v-colorpicker-popup .v-tabsheet-tabs {
    padding: 0 9px;
}

.portalclientestheme .v-colorpicker-popup [class$="sliders"] {
    padding: 12px;
}

.portalclientestheme .v-colorpicker-popup [class$="sliders"] .v-widget {
    width: 100% !important;
    vertical-align: middle;
}

.portalclientestheme .v-colorpicker-popup [class$="sliders"] .v-has-caption {
    white-space: nowrap;
    padding-left: 48px;
}

.portalclientestheme .v-colorpicker-popup [class$="sliders"] .v-caption {
    display: inline-block;
    margin-left: -48px;
    width: 48px;
}

.portalclientestheme .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-has-caption {
    padding-left: 80px;
}

.portalclientestheme .v-colorpicker-popup [class$="sliders"] .v-slot-hue-slider + .v-slot .v-caption {
    margin-left: -80px;
    width: 80px;
}

.portalclientestheme .v-colorpicker-popup .v-slider-red .v-slider-base:after {
    background: red;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-colorpicker-popup .v-slider-green .v-slider-base:after {
    background: green;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-colorpicker-popup .v-slider-blue .v-slider-base:after {
    background: blue;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-colorpicker-popup .v-margin-bottom {
    padding-bottom: 0;
}

.portalclientestheme .v-colorpicker-popup .resize-button {
    width: 100% !important;
    height: auto !important;
    text-align: center;
    outline: none;
}

.portalclientestheme .v-colorpicker-popup .resize-button:before {
    font-family: ThemeIcons;
    content: "\f141";
}

.portalclientestheme .v-colorpicker-popup .resize-button-caption {
    display: none;
}

.portalclientestheme .v-colorpicker-popup .v-horizontallayout {
    height: auto !important;
    padding: 9px 0;
    background-color: #fafafa;
    border-top: 1px solid #ededed;
}

.portalclientestheme .v-colorpicker-popup .v-horizontallayout .v-expand {
    overflow: visible;
}

.portalclientestheme .v-colorpicker-popup .v-horizontallayout .v-button {
    width: 80% !important;
}

.portalclientestheme .v-colorpicker-preview {
    width: 100% !important;
    height: auto !important;
    padding: 9px;
}

.portalclientestheme .v-colorpicker-preview-textfield {
    height: auto !important;
    text-align: center;
    border: none;
}

.portalclientestheme .v-colorpicker {
    width: auto;
}

.portalclientestheme .v-colorpicker-button-color {
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    max-width: 23px;
}

.portalclientestheme .v-colorpicker-button-color  + .v-button-caption:not(:empty) {
    margin-left: 19px;
}

.v-ie8 .portalclientestheme .v-colorpicker-button-color {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 -8px;
}

.v-ie8 .portalclientestheme .v-colorpicker-button-color  + .v-button-caption {
    margin-left: 19px;
}

.portalclientestheme .v-panel {
    background: white;
    color: #474747;
    border-radius: 9px;
    border: 1px solid #d5d5d5;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    overflow: visible !important;
}

.portalclientestheme .v-panel-caption {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px;
    line-height: 36px;
    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: 8px 8px 0 0;
}

.portalclientestheme .v-panel-content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.portalclientestheme .v-panel-content  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-panel-content  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-panel-content  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-panel-content  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-panel-borderless {
    background: transparent;
    color: inherit;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-panel-borderless  > div > [class*="-caption"] {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
    padding: 0;
    margin: 0 12px;
    border-bottom: none;
}

.portalclientestheme .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: 9px;
    border: 1px solid #c5c5c5;
}

.portalclientestheme .v-panel-well  > div > [class*="-caption"] {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-panel-scroll-divider  > [class*="-captionwrap"] {
    position: relative;
    z-index: 2;
}

.portalclientestheme .v-panel-scroll-divider  > [class*="-captionwrap"]:after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    height: 0;
    border-top: 1px solid #dfdfdf;
    border-color: rgba(197, 197, 197, 0.5);
}

.portalclientestheme .v-panel-scroll-divider  > [class*="-content"]:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    height: 0;
    border-top: 1px solid #fafafa;
    left: 0;
    right: 0;
}

.portalclientestheme .v-panel-caption.v-horizontallayout {
    height: auto !important;
    line-height: 0;
}

.portalclientestheme .v-panel-caption.v-horizontallayout .v-slot {
    vertical-align: middle;
}

.portalclientestheme .v-panel-caption.v-horizontallayout .v-label {
    line-height: 37px;
}

.portalclientestheme .v-accordion {
    background: white;
    color: #474747;
    border-radius: 9px;
    border: 1px solid #d5d5d5;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    background-color: #fafafa;
    background-image: -webkit-linear-gradient(top, #fafafa 2%, #f4f4f4 98%);
    background-image: linear-gradient(to bottom,#fafafa 2%, #f4f4f4 98%);
    overflow: hidden;
}

.portalclientestheme .v-accordion-item {
    position: relative;
}

.portalclientestheme .v-accordion-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.portalclientestheme .v-accordion-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.portalclientestheme .v-accordion-item:last-child [class*="item-content"] {
    border-radius: inherit;
}

.portalclientestheme .v-accordion-item[class*="item-open"]:last-child > div > .v-caption {
    border-radius: 0;
}

.portalclientestheme .v-accordion-item:not([class*="item-open"]):last-child > div > .v-caption {
    border-bottom: none;
    margin-bottom: 0;
}

.portalclientestheme .v-accordion-item[class*="item-open"] + [class*="item"] {
    border-top: 1px solid #d9d9d9;
}

.portalclientestheme .v-accordion-item-caption {
    border-radius: inherit;
}

.portalclientestheme .v-accordion-item-caption  > .v-caption {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px;
    line-height: 36px;
    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;
}

.portalclientestheme .v-accordion-item-caption  > .v-caption:hover:before, .portalclientestheme .v-accordion-item-caption  > .v-caption:active:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
}

.portalclientestheme .v-accordion-item-caption  > .v-caption:hover:before {
    background-color: rgba(186, 186, 186, 0.1);
    border: none;
}

.portalclientestheme .v-accordion-item-caption  > .v-caption:active:before {
    background-color: rgba(125, 125, 125, 0.2);
}

.portalclientestheme .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;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme .v-accordion-item-content  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-accordion-item-content  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-accordion-item-content  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-accordion-item-content  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-accordion-borderless {
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portalclientestheme .v-accordion-borderless  > .v-accordion-item, .portalclientestheme .v-accordion-borderless  > .v-accordion-item > div > .v-caption, .portalclientestheme .v-accordion-borderless  > .v-accordion-item > .v-accordion-item-content {
    border-radius: 0;
}

.portalclientestheme .v-select-twincol {
    white-space: normal;
}

.portalclientestheme .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;
}

.portalclientestheme .v-select-twincol select:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-select-twincol .v-textfield, .portalclientestheme .v-select-twincol .v-nativebutton {
    width: auto !important;
    margin-top: 9px;
}

.portalclientestheme .v-select-twincol .v-nativebutton {
    margin-left: 9px;
}

.portalclientestheme .v-select-twincol-caption-left, .portalclientestheme .v-select-twincol-caption-right {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0.3em;
    padding-left: 2px;
}

.portalclientestheme .v-select-twincol-buttons {
    white-space: nowrap;
    display: inline-block;
    vertical-align: top;
    position: relative;
    min-width: 3.5em;
}

.portalclientestheme .v-select-twincol-buttons .v-button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    white-space: normal;
    position: absolute;
    left: 9px;
    right: 9px;
    top: 36px;
    padding: 0;
    text-align: center;
}

.portalclientestheme .v-select-twincol-buttons .v-button:first-child {
    top: 0;
}

.portalclientestheme .v-select-twincol-buttons .v-button-caption {
    display: none;
}

.portalclientestheme .v-select-twincol-buttons .v-button:focus {
    z-index: 1;
}

.portalclientestheme .v-select-twincol-buttons .v-button:first-child {
    border-radius: 9px 9px 0 0;
}

.portalclientestheme .v-select-twincol-buttons .v-button:last-child {
    border-radius: 0 0 9px 9px;
}

.portalclientestheme .v-select-twincol-buttons .v-button-wrap:before {
    font-family: ThemeIcons;
    content: "\f053";
}

.portalclientestheme .v-select-twincol-buttons .v-button:first-child .v-button-wrap:before {
    font-family: ThemeIcons;
    content: "\f054";
}

.portalclientestheme .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;
}

.portalclientestheme .v-select select:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-select-select {
    display: block;
}

.portalclientestheme .v-select-select  + .v-textfield {
    width: auto !important;
    margin-top: 9px;
}

.portalclientestheme .v-select-select  + .v-textfield  + .v-nativebutton {
    margin-top: 9px;
    margin-left: 9px;
}

.portalclientestheme .v-calendar-header-day {
    font-weight: 400;
    text-align: center;
    padding: 7px 0;
}

.portalclientestheme .v-calendar-header-week .v-calendar-back, .portalclientestheme .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) ;
}

.portalclientestheme .v-calendar-header-week .v-calendar-back:focus, .portalclientestheme .v-calendar-header-week .v-calendar-next:focus {
    outline: none;
}

.portalclientestheme .v-calendar-header-week .v-calendar-back:hover, .portalclientestheme .v-calendar-header-week .v-calendar-next:hover {
    opacity: 1;
    filter: none ;
}

.portalclientestheme .v-calendar-header-week .v-calendar-back:active, .portalclientestheme .v-calendar-header-week .v-calendar-next:active {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-calendar-header-week .v-calendar-back:before {
    font-family: ThemeIcons;
    content: "\f053";
}

.portalclientestheme .v-calendar-header-week .v-calendar-next:before {
    font-family: ThemeIcons;
    content: "\f054";
}

.portalclientestheme .v-calendar-month {
    outline: none;
    overflow: hidden;
}

.portalclientestheme .v-calendar-month td {
    vertical-align: top;
}

.portalclientestheme .v-calendar-week-number {
    cursor: pointer;
    width: 20px;
    text-align: center;
    font-size: 0.8em;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-calendar-week-number:hover {
    opacity: 1;
    filter: none ;
}

.portalclientestheme .v-calendar-month-day {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.2;
}

.portalclientestheme .v-calendar-bottom-spacer, .portalclientestheme .v-calendar-spacer, .portalclientestheme .v-calendar-bottom-spacer-empty {
    height: 19px;
    margin-bottom: 3px;
}

.portalclientestheme .v-calendar-bottom-spacer {
    font-size: 0.8em;
    padding: 0 5px;
    cursor: pointer;
}

.portalclientestheme .v-calendar-bottom-spacer:hover {
    color: #6EAB24;
}

.portalclientestheme .v-calendar-day-number {
    line-height: 25px;
    font-size: 16px;
    text-align: right;
    margin: 0 5px;
    white-space: nowrap;
    border-top: 1px solid #f2f2f2;
    cursor: pointer;
}

.portalclientestheme .v-calendar-day-number:hover {
    color: #6EAB24;
}

.portalclientestheme .v-calendar-month-day-today {
    background: #f3f6ef;
}

.portalclientestheme .v-calendar-month-day-today .v-calendar-day-number {
    font-weight: 400;
    color: #6EAB24;
    border-top: 2px solid #6EAB24;
    line-height: 24px;
    margin: 0;
    padding: 0 5px;
}

.portalclientestheme .v-calendar-month-day-selected {
    background-color: #e3edf7;
}

.portalclientestheme .v-calendar-month-day-dragemphasis {
    background-color: #a8a8a8;
}

.portalclientestheme .v-calendar-month-day-scrollable {
    overflow-y: scroll;
}

.portalclientestheme .v-calendar-weekly-longevents {
    margin-left: 50px;
    border-bottom: 3px solid #e0e0e0;
}

.portalclientestheme .v-calendar-weekly-longevents .v-calendar-event-all-day {
    height: 22px;
    line-height: 1.6;
    margin-bottom: 3px;
}

.portalclientestheme .v-calendar-header-week td {
    vertical-align: middle !important;
}

.portalclientestheme .v-calendar-header-week .v-calendar-header-day {
    cursor: pointer;
}

.portalclientestheme .v-calendar-times {
    width: 50px;
    font-size: 0.77em;
    line-height: 1;
    white-space: nowrap;
}

.portalclientestheme .v-calendar-time {
    text-align: right;
    padding-right: 9px;
    margin-top: -6px;
    padding-bottom: 6px;
}

.portalclientestheme .v-calendar-day-times, .portalclientestheme .v-calendar-day-times-today {
    outline: none;
    border-right: 1px solid transparent;
}

.portalclientestheme .v-calendar-day-times:focus, .portalclientestheme .v-calendar-day-times-today:focus {
    outline: none;
}

.portalclientestheme .v-calendar .v-datecellslot, .portalclientestheme .v-calendar .v-datecellslot-even {
    border-top: 1px solid #dfdfdf;
}

.portalclientestheme .v-calendar .v-datecellslot:first-child, .portalclientestheme .v-calendar .v-datecellslot-even:first-child {
    border-top-color: transparent;
}

.portalclientestheme .v-calendar .v-datecellslot {
    border-top-style: dotted;
}

.portalclientestheme .v-calendar .v-datecellslot, .portalclientestheme .v-calendar .v-datecellslot-even {
    margin-right: 5px;
}

.portalclientestheme .v-calendar-current-time {
    background: #6EAB24;
    line-height: 1px;
    pointer-events: none;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-calendar-current-time:before {
    content: "\2022";
    color: #6EAB24;
    font-size: 22px;
    margin-left: -0.07em;
}

.portalclientestheme .v-calendar .v-daterange {
    position: relative;
}

.portalclientestheme .v-calendar .v-daterange:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: -1px;
    left: 0;
    background: #197de1;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
    border-radius: 9px 9px 0 0;
}

.portalclientestheme .v-calendar .v-daterange  + .v-daterange {
    border-color: transparent;
}

.portalclientestheme .v-calendar .v-daterange  + .v-daterange:before {
    border-radius: 0;
}

.portalclientestheme .v-calendar-event {
    font-size: 0.85em;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    border-radius: 9px;
}

.portalclientestheme .v-calendar-event:focus {
    outline: none;
}

.portalclientestheme .v-calendar-event-month {
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 19px;
    line-height: 19px;
}

.portalclientestheme .v-calendar-event-month .v-calendar-event-time {
    float: right;
    font-size: 0.9em;
    line-height: 19px;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-calendar-event-month:before {
    content: "\25cf";
    margin-right: 0.2em;
}

.portalclientestheme .v-calendar-event-all-day {
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 19px;
    line-height: 19px;
    border-radius: 0;
    margin-left: -1px;
    white-space: nowrap;
}

.portalclientestheme .v-calendar-event-all-day:before {
    content: "";
}

.portalclientestheme .v-calendar-event-start {
    overflow: visible;
    margin-left: 0;
}

.portalclientestheme .v-calendar-event-start.v-calendar-event-continued-to, .portalclientestheme .v-calendar-event-start.v-calendar-event-end {
    overflow: hidden;
    text-overflow: ellipsis;
}

.portalclientestheme .v-calendar-event-start {
    border-top-left-radius: 9px;
    border-bottom-left-radius: 9px;
    margin-left: 5px;
}

.portalclientestheme .v-calendar-event-end {
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
    margin-right: 5px;
}

.portalclientestheme .v-calendar-event-caption {
    font-weight: 500;
    line-height: 1.2;
    padding: 5px 0;
    position: absolute;
    overflow: hidden;
    right: 9px;
    left: 5px;
    bottom: 0;
    top: 0;
}

.portalclientestheme .v-calendar-event-caption span {
    font-weight: 300;
    white-space: nowrap;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event {
    overflow: visible;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event-content {
    margin-top: -1px;
    border-radius: 10px;
    border: 1px solid #fafafa;
    padding-top: 3px;
    margin-right: 5px;
}

.portalclientestheme .v-calendar-event-month:before {
    color: #00ace0;
}

.portalclientestheme .v-calendar-event-all-day {
    background-color: #c8eaf4;
    background-color: rgba(200, 234, 244, 0.8);
    color: #00ace0;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event {
    color: #00ace0;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event .v-calendar-event-content {
    background-color: #c8eaf4;
    background-color: rgba(200, 234, 244, 0.8);
}

.portalclientestheme .v-calendar-event-month[class*="color2"]:before {
    color: #2d9f19;
}

.portalclientestheme .v-calendar-event-all-day[class*="color2"] {
    background-color: #d1e7cd;
    background-color: rgba(209, 231, 205, 0.8);
    color: #2d9f19;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color2"] {
    color: #2d9f19;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color2"] .v-calendar-event-content {
    background-color: #d1e7cd;
    background-color: rgba(209, 231, 205, 0.8);
}

.portalclientestheme .v-calendar-event-month[class*="color3"]:before {
    color: #d18100;
}

.portalclientestheme .v-calendar-event-all-day[class*="color3"] {
    background-color: #f1e1c8;
    background-color: rgba(241, 225, 200, 0.8);
    color: #d18100;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color3"] {
    color: #d18100;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color3"] .v-calendar-event-content {
    background-color: #f1e1c8;
    background-color: rgba(241, 225, 200, 0.8);
}

.portalclientestheme .v-calendar-event-month[class*="color4"]:before {
    color: #ce3812;
}

.portalclientestheme .v-calendar-event-all-day[class*="color4"] {
    background-color: #f1d3cb;
    background-color: rgba(241, 211, 203, 0.8);
    color: #ce3812;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color4"] {
    color: #ce3812;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color4"] .v-calendar-event-content {
    background-color: #f1d3cb;
    background-color: rgba(241, 211, 203, 0.8);
}

.portalclientestheme .v-calendar-event-month[class*="color5"]:before {
    color: #2d55cd;
}

.portalclientestheme .v-calendar-event-all-day[class*="color5"] {
    background-color: #d1d9f1;
    background-color: rgba(209, 217, 241, 0.8);
    color: #2d55cd;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color5"] {
    color: #2d55cd;
}

.portalclientestheme .v-calendar-week-wrapper .v-calendar-event[class*="color5"] .v-calendar-event-content {
    background-color: #d1d9f1;
    background-color: rgba(209, 217, 241, 0.8);
}

.portalclientestheme .v-calendar.v-disabled * {
    cursor: default;
}

.portalclientestheme .v-label {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.portalclientestheme .v-label-undef-w {
    white-space: nowrap;
}

.portalclientestheme h1, .portalclientestheme .v-label-h1, .portalclientestheme h2, .portalclientestheme .v-label-h2, .portalclientestheme h3, .portalclientestheme .v-label-h3 {
    line-height: 1.1;
    font-weight: 200;
    color: #141414;
}

.portalclientestheme h1, .portalclientestheme .v-label-h1 {
    font-size: 2.4em;
    margin-top: 1.4em;
    margin-bottom: 1em;
    
    letter-spacing: -0.03em;
}

.portalclientestheme h2, .portalclientestheme .v-label-h2 {
    font-size: 1.6em;
    
    margin-top: 1.6em;
    margin-bottom: 0.77em;
    letter-spacing: -0.02em;
}

.portalclientestheme h3, .portalclientestheme .v-label-h3 {
    font-size: 1.2em;
    
    margin-top: 1.8em;
    margin-bottom: 0.77em;
    letter-spacing: 0;
}

.portalclientestheme h4, .portalclientestheme .v-label-h4 {
    line-height: 1.1;
    font-weight: 500;
    font-size: 14px;
    color: #414141;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: 2.4em;
    margin-bottom: 0.8em;
}

.portalclientestheme .v-csslayout  > h1:first-child, .portalclientestheme .v-csslayout  > h2:first-child, .portalclientestheme .v-csslayout  > h3:first-child, .portalclientestheme .v-csslayout  > h4 > .v-label-h1:first-child, .portalclientestheme .v-csslayout  > .v-label-h2:first-child, .portalclientestheme .v-csslayout  > .v-label-h3:first-child, .portalclientestheme .v-csslayout  > .v-label-h4:first-child {
    margin-top: 16px;
}

.portalclientestheme .v-verticallayout > .v-slot:first-child h1, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-label-h1, .portalclientestheme .v-verticallayout > .v-slot:first-child h2, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-label-h2, .portalclientestheme .v-verticallayout > .v-slot:first-child h3, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-label-h3, .portalclientestheme .v-verticallayout > .v-slot:first-child h4, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-label-h4, .portalclientestheme .v-verticallayout > div > .v-slot:first-child h1, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-label-h1, .portalclientestheme .v-verticallayout > div > .v-slot:first-child h2, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-label-h2, .portalclientestheme .v-verticallayout > div > .v-slot:first-child h3, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-label-h3, .portalclientestheme .v-verticallayout > div > .v-slot:first-child h4, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-label-h4 {
    margin-top: 16px;
}

.portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h1, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h2, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h3, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell h4, .portalclientestheme .v-verticallayout > .v-slot:first-child .v-formlayout-contentcell .v-label-h4, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h1, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h1, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h2, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h2, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h3, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h3, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell h4, .portalclientestheme .v-verticallayout > div > .v-slot:first-child .v-formlayout-contentcell .v-label-h4 {
    margin-top: -0.5em;
}

.portalclientestheme h1.no-margin, .portalclientestheme .v-label-h1.no-margin, .portalclientestheme h2.no-margin, .portalclientestheme .v-label-h2.no-margin, .portalclientestheme h3.no-margin, .portalclientestheme .v-label-h3.no-margin, .portalclientestheme h4.no-margin, .portalclientestheme .v-label-h4.no-margin {
    margin: 0 !important;
}

.portalclientestheme .v-label-colored {
    color: #197de1;
}

.portalclientestheme .v-label-large {
    font-size: 20px;
}

.portalclientestheme .v-label-small {
    font-size: 14px;
}

.portalclientestheme .v-label-tiny {
    font-size: 12px;
}

.portalclientestheme .v-label-huge {
    font-size: 26px;
}

.portalclientestheme .v-label-bold {
    font-weight: 500;
}

.portalclientestheme .v-label-light {
    font-weight: 200;
    color: #7d7d7d;
}

.portalclientestheme .v-label-align-right {
    text-align: right;
}

.portalclientestheme .v-label-align-center {
    text-align: center;
}

.portalclientestheme .v-label-spinner {
    height: 24px !important;
    width: 24px !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid rgba(110, 171, 36, 0.2);
    border-top-color: #6EAB24;
    border-right-color: #6EAB24;
    border-radius: 100%;
    -webkit-animation: v-rotate-360 500ms infinite linear;
    -moz-animation: v-rotate-360 500ms infinite linear;
    animation: v-rotate-360 500ms infinite linear;
    pointer-events: none;
}

.v-ie8 .portalclientestheme .v-label-spinner, .v-ie9 .portalclientestheme .v-label-spinner {
    border: none;
    border-radius: 9px;
        /*background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;*/
    background: #fff url(images/preloader.gif) no-repeat 50% 50% !important;

    background-size: 80%;
}

.v-ie8 .portalclientestheme .v-label-spinner {
    min-width: 30px;
    min-height: 30px;
}

.portalclientestheme .v-label-success, .portalclientestheme .v-label-failure {
    background: white;
    color: #474747;
    border: 2px solid #2c9720;
    border-radius: 9px;
    padding: 7px 19px 7px 37px;
    font-weight: 400;
    font-size: 15px;
}

.portalclientestheme .v-label-success:before, .portalclientestheme .v-label-failure:before {
    font-family: ThemeIcons;
    content: "\f00c";
    margin-right: 0.5em;
    margin-left: -19px;
    color: #2c9720;
}

.portalclientestheme .v-label-failure {
    border-color: #ed473b;
}

.portalclientestheme .v-label-failure:before {
    content: "\f05e";
    color: #ed473b;
}

.portalclientestheme [draggable=true] {
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}

.portalclientestheme .v-ddwrapper {
    position: relative;
}

.portalclientestheme .v-ddwrapper-over:before, .portalclientestheme .v-ddwrapper-over:after {
    content: "";
    position: absolute;
    z-index: 10;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border: 0 solid #6EAB24;
}

.portalclientestheme .v-ddwrapper-over-top:before {
    border-top-width: 2px;
}

.portalclientestheme .v-ddwrapper-over-right:before {
    border-right-width: 2px;
}

.portalclientestheme .v-ddwrapper-over-bottom:before {
    border-bottom-width: 2px;
}

.portalclientestheme .v-ddwrapper-over-left:before {
    border-left-width: 2px;
}

.portalclientestheme .no-vertical-drag-hints .v-ddwrapper-over-top:before, .portalclientestheme .no-vertical-drag-hints.v-ddwrapper-over-top:before {
    border-top-width: 0;
}

.portalclientestheme .no-vertical-drag-hints .v-ddwrapper-over-top:after, .portalclientestheme .no-vertical-drag-hints.v-ddwrapper-over-top:after {
    border-width: 2px;
    border-radius: 9px;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
    background: #b8e582;
}

.portalclientestheme .no-vertical-drag-hints .v-ddwrapper-over-bottom:before, .portalclientestheme .no-vertical-drag-hints.v-ddwrapper-over-bottom:before {
    border-bottom-width: 0;
}

.portalclientestheme .no-vertical-drag-hints .v-ddwrapper-over-bottom:after, .portalclientestheme .no-vertical-drag-hints.v-ddwrapper-over-bottom:after {
    border-width: 2px;
    border-radius: 9px;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
    background: #b8e582;
}

.portalclientestheme .no-horizontal-drag-hints.v-ddwrapper-over-left:before, .portalclientestheme .no-horizontal-drag-hints .v-ddwrapper-over-left:before {
    border-left-width: 0;
}

.portalclientestheme .no-horizontal-drag-hints.v-ddwrapper-over-left:after, .portalclientestheme .no-horizontal-drag-hints .v-ddwrapper-over-left:after {
    border-width: 2px;
    border-radius: 9px;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
    background: #b8e582;
}

.portalclientestheme .no-horizontal-drag-hints.v-ddwrapper-over-right:before, .portalclientestheme .no-horizontal-drag-hints .v-ddwrapper-over-right:before {
    border-right-width: 0;
}

.portalclientestheme .no-horizontal-drag-hints.v-ddwrapper-over-right:after, .portalclientestheme .no-horizontal-drag-hints .v-ddwrapper-over-right:after {
    border-width: 2px;
    border-radius: 9px;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
    background: #b8e582;
}

.portalclientestheme .v-ddwrapper-over-middle:after, .portalclientestheme .v-ddwrapper-over-center:after {
    border-width: 2px;
    border-radius: 9px;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
    background: #b8e582;
}

.portalclientestheme .no-box-drag-hints.v-ddwrapper:after, .portalclientestheme .no-box-drag-hints .v-ddwrapper:after {
    display: none !important;
    content: none;
}

.portalclientestheme .v-nativebutton {
    -webkit-touch-callout: none;
}

.portalclientestheme .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;
}

.portalclientestheme .v-select select:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(25, 125, 225, 0.5);
}

.portalclientestheme .v-select-select {
    display: block;
}

.portalclientestheme .v-select-select  + .v-textfield {
    width: auto !important;
    margin-top: 9px;
}

.portalclientestheme .v-select-select  + .v-textfield  + .v-nativebutton {
    margin-top: 9px;
    margin-left: 9px;
}

.portalclientestheme .v-popupview {
    cursor: pointer;
    color: #197de1;
    text-decoration: underline;
    font-weight: inherit;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-popupview:hover {
    color: #4396ea;
}

.portalclientestheme .v-popupview.v-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50) ;
}

.portalclientestheme .v-popupview-popup {
    padding: 4px 4px;
    border-radius: 4px;
    background-color: white;
    color: #474747;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.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;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-popupview-popup .popupContent  > .v-margin-top {
    padding-top: 12px;
}

.portalclientestheme .v-popupview-popup .popupContent  > .v-margin-right {
    padding-right: 12px;
}

.portalclientestheme .v-popupview-popup .popupContent  > .v-margin-bottom {
    padding-bottom: 12px;
}

.portalclientestheme .v-popupview-popup .popupContent  > .v-margin-left {
    padding-left: 12px;
}

.portalclientestheme .v-popupview-loading {
    margin: 12px 12px;
    height: 24px !important;
    width: 24px !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid rgba(110, 171, 36, 0.2);
    border-top-color: #6EAB24;
    border-right-color: #6EAB24;
    border-radius: 100%;
    -webkit-animation: v-rotate-360 500ms infinite linear;
    -moz-animation: v-rotate-360 500ms infinite linear;
    animation: v-rotate-360 500ms infinite linear;
    pointer-events: none;
}

.v-ie8 .portalclientestheme .v-popupview-loading, .v-ie9 .portalclientestheme .v-popupview-loading {
    border: none;
    border-radius: 9px;
        /*background: #fff url(../valo/shared/img/spinner.gif) no-repeat 50% 50%;*/
    background: #fff url(images/preloader.gif) no-repeat 50% 50% !important;

    background-size: 80%;
}

.v-ie8 .portalclientestheme .v-popupview-loading {
    min-width: 30px;
    min-height: 30px;
}

.portalclientestheme .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: 37px;
    border-radius: 4px;
    padding: 0;
    border: 1px solid #c5c5c5;
    background: white;
    color: #474747;
    -webkit-box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 #f7f7f7, 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: box-shadow 180ms, border 180ms;
    -moz-transition: box-shadow 180ms, border 180ms;
    transition: box-shadow 180ms, border 180ms;
    height: auto;
    overflow: hidden;
}

.v-ie8 .portalclientestheme .v-richtextarea, .v-ie9 .portalclientestheme .v-richtextarea {
    line-height: 37px;
    padding-top: 0;
    padding-bottom: 0;
}

.portalclientestheme .v-richtextarea[class*="prompt"] {
    color: #a3a3a3;
}

.portalclientestheme .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;
}

.portalclientestheme .v-richtextarea .gwt-ToggleButton, .portalclientestheme .v-richtextarea .gwt-PushButton {
    display: inline-block;
    line-height: 37px;
    width: 37px;
    text-align: center;
    outline: none;
}

.portalclientestheme .v-richtextarea .gwt-ToggleButton:hover, .portalclientestheme .v-richtextarea .gwt-PushButton:hover {
    color: black;
}

.portalclientestheme .v-richtextarea .gwt-ToggleButton-down, .portalclientestheme .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%);
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top img {
    display: none;
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div:before {
    font-family: ThemeIcons;
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Bold"]:before {
    content: "\f032";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Italic"]:before {
    content: "\f033";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Underline"]:before {
    content: "\f0cd";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Subscript"]:before {
    content: "\f12c";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Superscript"]:before {
    content: "\f12b";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Left Justify"]:before {
    content: "\f036";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Center"]:before {
    content: "\f037";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Right Justify"]:before {
    content: "\f038";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Toggle Strikethrough"]:before {
    content: "\f0cc";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Right"]:before {
    content: "\f03c";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Indent Left"]:before {
    content: "\f03b";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Horizontal Rule"]:before {
    content: "\2014";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Ordered List"]:before {
    content: "\f0cb";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Unordered List"]:before {
    content: "\f0ca";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Insert Image"]:before {
    content: "\f03e";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Create Link"]:before {
    content: "\f0c1";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Link"]:before {
    content: "\f127";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-top div[title="Remove Formatting"]:before {
    content: "\f12d";
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-bottom {
    font-size: 13px;
    padding: 0 9px 9px 0;
}

.portalclientestheme .v-richtextarea .gwt-RichTextToolbar-bottom select {
    margin: 9px 0 0 9px;
}

.portalclientestheme .v-richtextarea .gwt-RichTextArea {
    background: #fff;
    border: none;
    display: block;
}

.portalclientestheme .v-richtextarea-readonly {
    padding: 5px 7px;
    background: transparent;
}

.portalclientestheme .v-upload .v-button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    white-space: normal;
}

.portalclientestheme .v-upload-immediate .v-button {
    width: 100%;
}

.portalclientestheme .v-upload-immediate input[type="file"] {
    opacity: 0;
    filter: alpha(opacity=0) ;
    z-index: -1;
    position: absolute;
    right: 0;
    height: 37px;
    text-align: right;
    border: none;
    background: transparent;
}

.portalclientestheme .v-Notification.v-position-top {
    top: 12px;
}

.portalclientestheme .v-Notification.v-position-right {
    right: 12px;
}

.portalclientestheme .v-Notification.v-position-bottom {
    bottom: 12px;
}

.portalclientestheme .v-Notification.v-position-left {
    left: 12px;
}

.portalclientestheme .v-Notification.v-position-assistive {
    top: -9999px;
    left: -9999px;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-Notification-animate-out {
    -webkit-animation: valo-animate-out-fade 150ms;
    -moz-animation: valo-animate-out-fade 150ms;
    animation: valo-animate-out-fade 150ms;
}

.portalclientestheme .v-Notification-animate-out.v-position-top, .portalclientestheme .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;
}

.portalclientestheme .v-Notification {
    border-radius: 9px;
    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: 19px 22px;
}

.portalclientestheme .v-Notification .v-Notification-caption {
    color: #197de1;
    font-size: 19px;
    line-height: 1;
}

.portalclientestheme .v-Notification .v-Notification-description {
    line-height: 1.4;
}

.portalclientestheme .v-Notification-caption {
    margin: 0;
    display: inline-block;
    text-align: left;
    font-weight: inherit;
    line-height: inherit;
    white-space: nowrap;
    letter-spacing: 0;
}

.portalclientestheme .v-Notification-description, .portalclientestheme .v-Notification-details {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    max-width: 30em;
    text-align: left;
    max-height: 20em;
    overflow: auto;
}

.portalclientestheme .v-Notification-caption ~ .v-Notification-description, .portalclientestheme .v-Notification-caption ~ .v-Notification-details {
    margin-left: 24px;
}

.portalclientestheme .v-icon + .v-Notification-caption {
    margin-left: 16px;
}

.portalclientestheme .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: 12px 15px;
    background-color: #444;
    background-color: rgba(68, 68, 68, 0.9);
    font-weight: 400;
    line-height: 22px;
}

.portalclientestheme .v-Notification-system .v-Notification-description, .portalclientestheme .v-Notification-system .v-Notification-details {
    max-width: 50em;
}

.portalclientestheme .v-Notification-system.v-position-top {
    top: 0;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-Notification-system.v-position-bottom {
    bottom: 0;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-Notification-system .v-Notification-caption {
    color: #fff;
    vertical-align: middle;
}

.portalclientestheme .v-Notification-system .v-Notification-description, .portalclientestheme .v-Notification-system .v-Notification-details {
    color: #e6e6e6;
}

.portalclientestheme .v-Notification-system u {
    text-decoration: none;
}

.portalclientestheme .v-Notification.tray {
    text-align: left;
}

.portalclientestheme .v-Notification.tray .v-Notification-caption + .v-Notification-description {
    display: block;
    margin: 0.5em 0 0;
}

.portalclientestheme .v-Notification.warning {
    background: #FFF3D2;
}

.portalclientestheme .v-Notification.warning .v-Notification-caption {
    color: #AC7C00;
}

.portalclientestheme .v-Notification.warning .v-Notification-description {
    color: #9D874D;
}

.portalclientestheme .v-Notification.error {
    background: #ed473b;
    font-weight: 400;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
}

.portalclientestheme .v-Notification.error .v-Notification-caption {
    color: white;
}

.portalclientestheme .v-Notification.error .v-Notification-description {
    color: #f4e0df;
}

.portalclientestheme .v-Notification.dark {
    background-color: #444;
    background-color: rgba(68, 68, 68, 0.9);
    font-weight: 400;
    line-height: 22px;
}

.portalclientestheme .v-Notification.dark .v-Notification-caption {
    color: #fff;
    vertical-align: middle;
}

.portalclientestheme .v-Notification.dark .v-Notification-description, .portalclientestheme .v-Notification.dark .v-Notification-details {
    color: #e6e6e6;
}

.portalclientestheme .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: 12px 15px;
}

.portalclientestheme .v-Notification.bar .v-Notification-description, .portalclientestheme .v-Notification.bar .v-Notification-details {
    max-width: 50em;
}

.portalclientestheme .v-Notification.bar.v-position-top {
    top: 0;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-Notification.bar.v-position-bottom {
    bottom: 0;
}

.portalclientestheme .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;
}

.portalclientestheme .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;
}

.portalclientestheme .v-Notification.small {
    padding: 11px 13px;
}

.portalclientestheme .v-Notification.small .v-Notification-caption {
    font-size: 16px;
}

.portalclientestheme .v-Notification.small .v-Notification-description {
    font-size: 14px;
}

.portalclientestheme .v-Notification.closable {
    padding-right: 59px;
    overflow: hidden !important;
    cursor: pointer;
}

.portalclientestheme .v-Notification.closable:after {
    content: "\00d7";
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 12px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    cursor: pointer;
    color: #000;
    opacity: 0.5;
    filter: alpha(opacity=50) ;
    text-align: center;
    border: 1px solid #000;
    border-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-transition: opacity 200ms;
    -moz-transition: opacity 200ms;
    transition: opacity 200ms;
}

.portalclientestheme .v-Notification.closable:hover:after {
    opacity: 1;
    filter: none ;
}

.portalclientestheme .v-Notification.closable:active:after {
    background-color: #000;
    color: #fff;
    opacity: 0.3;
    filter: alpha(opacity=30.0) ;
    -webkit-transition: none 200ms;
    -moz-transition: none 200ms;
    transition: none 200ms;
}

.portalclientestheme .v-Notification.closable.dark:after, .portalclientestheme .v-Notification.closable.error:after, .portalclientestheme .v-Notification.closable.system:after {
    color: #fff;
    border-color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.portalclientestheme .v-Notification.closable.dark:active:after, .portalclientestheme .v-Notification.closable.error:active:after, .portalclientestheme .v-Notification.closable.system:active:after {
    background-color: #fff;
    color: #000;
}

.portalclientestheme .v-Notification.closable.tray:after {
    top: 16px;
    margin-top: 0;
}

.portalclientestheme .v-Notification.success, .portalclientestheme .v-Notification.failure {
    background: #fff;
    color: #555;
    border: 2px solid #2c9720;
}

.portalclientestheme .v-Notification.success .v-Notification-caption, .portalclientestheme .v-Notification.failure .v-Notification-caption {
    color: #2c9720;
    font-weight: 400;
}

.portalclientestheme .v-Notification.success .v-Notification-caption:before, .portalclientestheme .v-Notification.failure .v-Notification-caption:before {
    font-family: ThemeIcons;
    content: "\f00c";
    margin-right: 0.5em;
}

.portalclientestheme .v-Notification.success.bar, .portalclientestheme .v-Notification.failure.bar {
    margin: -2px !important;
}

.portalclientestheme .v-Notification.failure {
    border-color: #ed473b;
}

.portalclientestheme .v-Notification.failure .v-Notification-caption {
    color: #ed473b;
}

.portalclientestheme .v-Notification.failure .v-Notification-caption:before {
    content: "\f05e";
}

.portalclientestheme .valo-menu {
    height: 100%;
    background-color: #4b4b4b;
    background-image: -webkit-linear-gradient(right, #414141 0%, #4b4b4b 9px);
    background-image: linear-gradient(to left,#414141 0%, #4b4b4b 9px);
    color: #a5a5a5;
    font-size: 14px;
    line-height: 30px;
    border-right: 1px solid #3b3b3b;
    white-space: nowrap;
}

.portalclientestheme .valo-menu-toggle {
    display: none;
    position: fixed;
    z-index: 200;
    top: 3px;
    left: 3px;
    min-width: 0;
}

.portalclientestheme .valo-menu-part {
    border-left: 1px solid #414141;
    height: 100%;
    padding-bottom: 37px;
    overflow: auto;
}

.portalclientestheme .valo-menu-part:first-child {
    border-left: none;
}

.portalclientestheme .valo-menu-title, .portalclientestheme .valo-menu-subtitle, .portalclientestheme .valo-menu-item {
    display: block;
    line-height: inherit;
    white-space: nowrap;
    position: relative;
}

.portalclientestheme .valo-menu-title .valo-menu-badge, .portalclientestheme .valo-menu-subtitle .valo-menu-badge, .portalclientestheme .valo-menu-item .valo-menu-badge {
    position: absolute;
    right: 19px;
}

.portalclientestheme .valo-menu-title {
    line-height: 1.2;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    color: white;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
    padding: 12px 19px;
    font-size: 14px;
    border-bottom: 1px solid #1362b1;
    -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;
}

.portalclientestheme .valo-menu-title .v-menubar.v-menubar {
    background: transparent;
    border-color: #1362b1;
    color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: inherit;
}

.portalclientestheme .valo-menu-title .v-menubar-menuitem {
    background: transparent;
    -webkit-box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
    box-shadow: inset 0 1px 0 #4d98e6, inset 0 -1px 0 #166bca;
    text-shadow: inherit;
    font-size: 16px;
    border-color: inherit;
}

.portalclientestheme .valo-menu-title h1, .portalclientestheme .valo-menu-title .v-label-h1, .portalclientestheme .valo-menu-title h2, .portalclientestheme .valo-menu-title .v-label-h2, .portalclientestheme .valo-menu-title h3, .portalclientestheme .valo-menu-title .v-label-h3, .portalclientestheme .valo-menu-title h4, .portalclientestheme .valo-menu-title .v-label-h4 {
    margin-top: 0;
    margin-bottom: 0;
    color: inherit;
}

.portalclientestheme .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: 19px 7px;
    display: block;
    overflow: hidden;
    text-align: center;
    height: auto;
    color: inherit;
}

.portalclientestheme .v-menubar-user-menu:focus:after {
    display: none;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    margin-right: 1px;
    border-radius: 9px;
    color: #197de1;
    padding: 0 12px;
    -webkit-transition: color 140ms;
    -moz-transition: color 140ms;
    transition: color 140ms;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem:first-child, .portalclientestheme .v-menubar-user-menu .v-menubar-menuitem:last-child, .portalclientestheme .v-menubar-user-menu .v-menubar-menuitem:first-child:last-child {
    border-radius: 9px;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem:before {
    content: none;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem:hover {
    color: #4396ea;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem:active {
    color: inherit;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-checked, .portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-checked:first-child {
    border: 1px solid #c5c5c5;
    color: #197de1;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-checked .v-menubar-menuitem-caption, .portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-checked:first-child .v-menubar-menuitem-caption {
    position: relative;
    top: -1px;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-selected {
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-selected:hover {
    color: #ecf2f8;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-disabled, .portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-disabled:hover {
    color: inherit;
}

.portalclientestheme .v-menubar-user-menu  > .v-menubar-menuitem {
    color: inherit;
    white-space: normal;
    line-height: 1.4;
    margin: 0;
}

.portalclientestheme .v-menubar-user-menu  > .v-menubar-menuitem img.v-icon {
    width: 56px;
    height: 56px;
    border-radius: 29px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 0 auto 0.3em;
    border: 1px solid #c5c5c5;
}

.portalclientestheme .v-menubar-user-menu  > .v-menubar-menuitem:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.portalclientestheme .v-menubar-user-menu .v-menubar-menuitem-selected {
    background: transparent;
}

.portalclientestheme .valo-menu-subtitle {
    color: #868686;
    margin: 7px 0 7px 19px;
    border-bottom: 1px solid #666666;
}

.portalclientestheme .valo-menu-subtitle [class*="badge"] {
    color: #73a5d7;
}

.portalclientestheme .valo-menuitems {
    display: block;
}

.portalclientestheme .valo-menu-item {
    outline: none;
    font-weight: 400;
    padding: 0 37px 0 19px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
    -webkit-transition: background-color 300ms, color 60ms;
    -moz-transition: background-color 300ms, color 60ms;
    transition: background-color 300ms, color 60ms;
}

.portalclientestheme .valo-menu-item [class*="caption"] {
    vertical-align: middle;
    display: inline-block;
    width: 90%;
    max-width: 15em;
    padding-right: 19px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.portalclientestheme .valo-menu-item [class*="badge"] {
    color: #73a5d7;
}

.portalclientestheme .valo-menu-item.selected {
    background: #434343;
}

.portalclientestheme .valo-menu-item.selected .v-icon {
    color: #197de1;
}

.portalclientestheme .valo-menu-item.selected [class*="badge"] {
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    color: #c8dbed;
}

.portalclientestheme .valo-menu-item:focus, .portalclientestheme .valo-menu-item:hover, .portalclientestheme .valo-menu-item.selected {
    color: white;
}

.portalclientestheme .valo-menu-item span.v-icon {
    min-width: 1em;
    margin-right: 19px;
    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)));
}

.portalclientestheme .valo-menu-item span.v-icon  + span {
    margin-left: 0;
}

.portalclientestheme .valo-menu-item [class*="badge"] {
    background-color: #585858;
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    transition: background-color 300ms;
    line-height: 1;
    padding: 4px 6px;
    min-width: 11px;
    text-align: center;
    top: 4px;
    border-radius: 9px;
}

.portalclientestheme .valo-menu-part.large-icons {
    background-color: #4b4b4b;
    min-width: 74px;
    max-width: 111px;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-title {
    font-size: 12px;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-title .v-label-undef-w {
    white-space: normal;
}

.portalclientestheme .valo-menu-part.large-icons .v-menubar-user-menu {
    margin-left: 0;
    margin-right: 0;
    font-size: 11px;
}

.portalclientestheme .valo-menu-part.large-icons .v-menubar-user-menu img.v-icon {
    width: 28px;
    height: 28px;
}

.portalclientestheme .valo-menu-part.large-icons [class*="subtitle"] {
    margin: 9px 0 0;
    padding: 7px 25px 7px 9px;
    line-height: 1;
    border: none;
    text-overflow: ellipsis;
    overflow: hidden;
    background: #3c3c3c;
    font-size: 13px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.portalclientestheme .valo-menu-part.large-icons [class*="subtitle"] [class*="badge"] {
    right: 9px;
}

.portalclientestheme .valo-menu-part.large-icons [class*="subtitle"]  + .valo-menu-item {
    border-top: none;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item {
    display: block;
    font-size: 26px;
    line-height: 1;
    padding: 12px;
    text-align: center;
    border-top: 1px solid #555555;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item:first-child {
    border-top: none;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item [class*="caption"] {
    display: block;
    width: auto;
    margin: 0.3em 0 0;
    padding: 0;
    font-size: 11px;
    line-height: 1.3;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item .v-icon {
    margin: 0;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item span.v-icon {
    opacity: 0.8;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item.selected {
    background: #434343;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item.selected .v-icon {
    opacity: 1;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item.selected [class*="badge"] {
    border-color: #434343;
}

.portalclientestheme .valo-menu-part.large-icons .valo-menu-item [class*="badge"] {
    padding-left: 4px;
    padding-right: 4px;
    top: 7px;
    right: 7px;
    border: 2px solid #4b4b4b;
}

.portalclientestheme .valo-menu-logo {
    display: block;
    overflow: hidden;
    width: 44px !important;
    height: 44px;
    border-radius: 9px;
    text-align: center;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
    color: white;
    font-size: 25px;
    line-height: 44px;
    margin: 19px auto;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.portalclientestheme .valo-menu-logo:focus {
    outline: none;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part {
    background-color: #4b4b4b;
    min-width: 74px;
    max-width: 111px;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title {
    font-size: 12px;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-title .v-label-undef-w {
    white-space: normal;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu {
    margin-left: 0;
    margin-right: 0;
    font-size: 11px;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .v-menubar-user-menu img.v-icon {
    width: 28px;
    height: 28px;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] {
    margin: 9px 0 0;
    padding: 7px 25px 7px 9px;
    line-height: 1;
    border: none;
    text-overflow: ellipsis;
    overflow: hidden;
    background: #3c3c3c;
    font-size: 13px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"] [class*="badge"] {
    right: 9px;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part [class*="subtitle"]  + .valo-menu-item {
    border-top: none;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item {
    display: block;
    font-size: 26px;
    line-height: 1;
    padding: 12px;
    text-align: center;
    border-top: 1px solid #555555;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item:first-child {
    border-top: none;
}

.portalclientestheme .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: 11px;
    line-height: 1.3;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item .v-icon {
    margin: 0;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item span.v-icon {
    opacity: 0.8;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected {
    background: #434343;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected .v-icon {
    opacity: 1;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item.selected [class*="badge"] {
    border-color: #434343;
}

.portalclientestheme .valo-menu-responsive[width-range~="801px-1100px"] .valo-menu-part .valo-menu-item [class*="badge"] {
    padding-left: 4px;
    padding-right: 4px;
    top: 7px;
    right: 7px;
    border: 2px solid #4b4b4b;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] {
    padding-top: 37px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .v-loading-indicator {
    top: 37px;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"]  > .v-widget {
    position: relative !important;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu {
    border-right: none;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-part {
    overflow: visible;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-toggle {
    display: inline-block;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-title {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    height: 37px !important;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-backface-visibility: hidden;
}

.portalclientestheme .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: 37px;
    color: #97bee5;
    max-width: 30%;
    -webkit-backface-visibility: hidden;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem {
    line-height: 36px;
    white-space: nowrap;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu .v-menubar-user-menu img.v-icon {
    display: inline-block;
    margin: 0 6px 0 0;
    width: 19px;
    height: 19px;
    border-radius: 10px;
    border: none;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menuitems {
    height: 100%;
    background-color: #4b4b4b;
    background-image: -webkit-linear-gradient(right, #414141 0%, #4b4b4b 9px);
    background-image: linear-gradient(to left,#414141 0%, #4b4b4b 9px);
    color: #a5a5a5;
    font-size: 14px;
    line-height: 30px;
    border-right: 1px solid #3b3b3b;
    white-space: nowrap;
    position: fixed;
    z-index: 9000;
    top: 37px;
    bottom: 0;
    height: auto;
    max-width: 100%;
    overflow: auto;
    padding: 19px 0;
    -webkit-transform: translatex(-100%);
    -moz-transform: translatex(-100%);
    -ms-transform: translatex(-100%);
    -o-transform: translatex(-100%);
    transform: translatex(-100%);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-800px"] .valo-menu-visible .valo-menuitems {
    -webkit-transform: translatex(0%);
    -moz-transform: translatex(0%);
    -ms-transform: translatex(0%);
    -o-transform: translatex(0%);
    transform: translatex(0%);
}

.portalclientestheme .valo-menu-responsive[width-range~="0-500px"] .valo-menu-toggle .v-button-caption {
    display: none;
}

.portalclientestheme .valo-menu-responsive[width-range~="0-500px"] .valo-menu .v-menubar-user-menu .v-menubar-menuitem-caption {
    display: inline-block;
    width: 19px;
    overflow: hidden;
}

.portalclientestheme .v-caption-required-indicator-on-left {
    display: none !important;
}

.portalclientestheme .v-caption-icon-green .FontAwesome {
    color: green !important;
    font-family: FontAwesome !important;
}

.portalclientestheme .v-label-darkgrey {
    font-weight: normal !important;
    color: #313233 !important;
    word-wrap: break-word !important;
    white-space: normal !important;
}

.portalclientestheme .v-label-ligthgrey {
    font-weight: normal !important;
    color: #c3c5c9 !important;
    word-wrap: break-word !important;
    white-space: normal !important;
}

.portalclientestheme .v-caption-icon-ligthgrey .FontAwesome {
    color: #c3c5c9 !important;
    font-family: FontAwesome !important;
}

.portalclientestheme .v-textfield-passok {
    background: url(icons/ico_ok.png) !important;
    background-size: 10% !important;
    background-repeat: no-repeat !important;
    background-color: white !important;
    background-position: right !important;
    box-sizing: border-box !important;
    background-position-x: 90% !important;
}

.portalclientestheme .v-textfield-passnook {
    background: url(icons/error.png) !important;
    background-size: 10% !important;
    background-repeat: no-repeat !important;
    background-color: white !important;
    background-position: right !important;
    box-sizing: border-box !important;
    background-position-x: 90% !important;
}

.portalclientestheme .v-textfield-passcoincide {
    background: url(icons/ico_ok.png) !important;
    background-size: 10% !important;
    background-repeat: no-repeat !important;
    background-color: white !important;
    background-position: right !important;
    box-sizing: border-box !important;
    background-position-x: 90% !important;
}

.portalclientestheme .v-textfield-passnocoincide {
    background: url(icons/error.png) !important;
    background-size: 10% !important;
    background-repeat: no-repeat !important;
    background-color: white !important;
    background-position: right !important;
    box-sizing: border-box !important;
    background-position-x: 90% !important;
}

.portalclientestheme div#vlContent {
    padding: 10px !important;
}

.portalclientestheme input#pinPf {
    width: 100%;
}

.portalclientestheme .rl-row.v-layout.v-widget.v-has-width.margin.rl-row-margin.v-col-spacing.rl-row-v-col-spacing.h-col-spacing.rl-row-h-col-spacing.vlPinMsg.rl-row-vlPinMsg {
    margin: 5px 0px 6px 0px !important;
}

.portalclientestheme .sinBorde {
    border: none !important;
    box-shadow: none !important;
}

.portalclientestheme div#panelRegOlvPassPpal {
    border: none !important;
    box-shadow: none !important;
    max-width: 900px;
}

.portalclientestheme v-button-botonBotoneraDetalles {
    margin-top: -7px;
}

.portalclientestheme .botonBotoneraDetalles {
    margin-top: -7px;
}

.lbRojo {
    color: red !important;
}

.lbNegrilla {
    font-weight: bold !important;
}

.v-table-cell-wrapper {
    white-space: pre-wrap !important;
    overflow: hidden;
    padding: 10px !important;
}

.lbMorado {
    color: purple !important;
}

.lbNaranja {
    font-weight: normal !important;
    color: orange !important;
}

.lbVerde {
    font-weight: normal !important;
    color: green !important;
}

.lbJustificado {
    text-align: justify;
    text-justify: inter-word;
    white-space: pre-wrap !important;
}

.links_no_decoration {
    text-decoration: none !important;
    color: #006150 !important;
}

.tip_seguridad {
    font: 300 12px/1.55 "Open Sans", sans-serif !important;
}

.panel_login {
    background: white none repeat scroll 0 0;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    color: #474747;
}

.keyboard_container {
    font: Verdana, Sans-Serif;
    background: #eee;
    text-align: center;
    width: 556px;
    height: 180px;
}

.keyboard_container .virtual_key {
    margin: 0 5px 5px 0;
    background: #fff;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(50, 50, 50, 0.5);
    -webkit-border-radius: 5px;
    height: 30px;
    width: 30px;
}

.virtual_keyboard_selector {
    width: 90px;
    padding: 5px !important;
    font-size: 1.3em !important;
    margin: 0 5px 5px 0;
    background: #fff;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(50, 50, 50, 0.5);
    -webkit-border-radius: 5px;
    height: 30px;
}

.keyboard_container .shift {
    padding: 5px 4;
    width: 50px;
}

.keyboard_container .tab {
    padding: 5px 18px;
    width: 60px;
}

.keyboard_container .bksp {
    width: 96px;
}

.keyboard_container .space {
    width: 330px;
}

.keyboard_container .alt {
    width: 55px;
}

.keyboard_container .cplk {
    font-size: 10px !important;
    font-weight: bold;
    vertical-align: middle;
    width: 50px;
}

.keyboard_container .enter {
    padding: 5px 5;
    width: 57px;
}

.keyboard_container .pressed {
    background-color: #d9d9d9;
}

.botonBotoneraDetalles {
    margin-top: -7px;
}

.keyboard_container .virtual_key {
    margin: 0 5px 5px 0;
    background: #fff;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(50, 50, 50, 0.5);
    -webkit-border-radius: 5px;
    height: 30px;
    width: 30px;
}

.virtual_keyboard_selector {
    width: 90px;
    padding: 5px !important;
    font-size: 1.3em !important;
    margin: 0 5px 5px 0;
    background: #fff;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(50, 50, 50, 0.5);
    -webkit-border-radius: 5px;
    height: 30px;
}

.keyboard_container .shift {
    padding: 5px 4;
    width: 50px;
}

.keyboard_container .tab {
    padding: 5px 18px;
    width: 60px;
}

.keyboard_container .bksp {
    width: 96px;
}

.keyboard_container .space {
    width: 330px;
}

.keyboard_container .alt {
    width: 55px;
}

.keyboard_container .cplk {
    font-size: 10px !important;
    font-weight: bold;
    vertical-align: middle;
    width: 50px;
}

.keyboard_container .enter {
    padding: 5px 5;
    width: 57px;
}

.keyboard_container .pressed {
    background-color: #d9d9d9;
}

.v-caption-inline-label {
    display: inline-block !important;
}

.v-caption-checkCustom {
    color: #6eab24 !important;
    position: absolute !important;
    left: 0 !important;
}

.v-table-caption-container {
    color: #007A60 !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-align: center !important;
}

.label_verde {
    color: #007A60 !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-align: left !important;
}

.label_verdeGrande {
    color: #007A60 !important;
    font-weight: bold !important;
    font-size: 20px !important;
    text-align: center !important;
}

.v-caption-label_verde {
    color: #007A60 !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-align: left !important;
}

.v-progressbar-indicator {
    background-color: #6EAB24 !important;
    background: -webkit-gradient(linear, left top, left bottom, from(#6EAB24), to(#6EAB24)) top left repeat-x !important;
    border: 1px solid #6EAB24 !important;
}

.tit-lin-info {
    border-bottom: 1px solid #999;
    display: block;
    font-size: 18px;
    margin: auto;
    padding-bottom: 5px;
    width: 98%;
    margin-bottom: 10px;
}

.portalclientestheme .botonBotoneraDetalles {
    margin-top: -7px;
}

.portalclientestheme .v-button-botonBotoneraDetalles {
    margin-top: -7px;
}

.saldoLabel {
    padding-top: 17px;
}

.contratoNumero {
    margin-left: 78%;
}

.unitsLayout {
    margin-top: 60px;
    margin-left: -100px;
}

.imagenMigaBack {
    margin-top: -25px;
}

.highcharts-title {
    font-weight: normal !important;
    text-align: center !important;
}

.graficasLayout {
    overflow: visible;
}

.graficasLayout[width-range~="0-500px"] .v-horizontal {
    width: 100%;
}

.graficasLayout[width-range~="501-800px"] .v-horizontal {
    width: 50%;
}

.graficasLayout[width-range~="801px-"] .v-horizontal {
    width: 33.3%;
}

.graficasLayout[height-range~="0-350px"] .v-horizontal {
    height: 100%;
}

.graficasLayout[height-range~="351-700px"] .v-horizontal {
    height: 50%;
}

.graficasLayout[height-range~="701px-"] .v-horizontal {
    height: 33.3%;
}

.v-accordion-item {
    background-image: url("images/flecha_a.png");
    background-position: right center;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.v-accordion-item-open {
    background-image: url("images/flecha_b.png");
    background-position: right center;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.portalclientestheme .v-button {
    background-color: #79B425;
    background-image: initial;
    color: #fff;
    height: 30px;
    border: none;
    cursor: pointer;
    font-weight: 100;
    padding: 3px 8px;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 3px;
}

.portalclientestheme .v-filterselect-suggestpopup .gwt-MenuItem {
    cursor: pointer;
    line-height: 27px;
    padding: 0 20px 0 10px;
    border-radius: 3px;
    font-weight: 400;
    font-size: 14px !important;
    white-space: nowrap;
    position: relative;
}

.portalclientestheme .migaPanMisProductos {
    margin-top: -22px;
}

.v-table .v-table-cell-content-lbNegrilla {
    font-weight: bold !important;
}

.v-table .v-table-cell-content-lbNaranja {
    font-weight: normal !important;
    color: orange !important;
}

.v-table .v-table-cell-content-lbVerde {
    font-weight: normal !important;
    color: green !important;
}

.portalclientestheme .callToActionFrame {
    width: 80%;
    margin-top: 15px;
    margin-left: 45px;
}

.portalclientestheme .botonCesantias {
    margin-left: 45px !important;
}

.portalclientestheme .notaAlPie {
    color: black;
    font-size: 10px;
}

.portalclientestheme .layoutMessageBox {
    margin: 15px 10px 10px 10px;
}

.portalclientes .ventanaMessageBox {
    border: 3px solid;
}

.v-slot-indicadorColorPensionesObligatorias {
    background-color: #01A6CB;
}

.v-slot-indicadorColorCesantias {
    background-color: #FD9801;
}

.v-slot-indicadorColorPensionesVoluntarias {
    background-color: #f7a666;
}

.v-slot-indicadorColorComisionistas {
    background-color: #f9c091;
}

.v-slot-indicadorColorFics {
    background-color: #fbd8bd;
}

.v-slot-indicadorColorSipen {
    background-color: #a08a7a;
}

.v-slot-indicadorColorCreaPatrimonio {
    background-color: #82bc00;
}

.v-slot-indicadorColorSeguroVidaIncapacidad {
    background-color: #acd05d;
}

.v-slot-indicadorColorSeguroVidaAhorroCREA {
    background-color: #d1e4a2;
}

.v-slot-indicadorColorSeguroColectivoPensiones {
    background-color: #e9f1d0;
}

.portalclientestheme .v-tooltip .v-tooltip-text {
    max-width: 52em !important;
    background-color: white !important;
    color: black !important;
}

.v-caption-tamano_ancho {
    width: 800px !important;
    max-height: 800px !important;
    overflow-y: auto !important;
    display: block !important;
    white-space: normal !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

.v-slot.v-slot-migaPanHerramientas {
    margin-top: 9px;
}

.lbSubrayado {
    text-decoration: underline !important;
}

.link-padding-left {
    padding-left: 20px !important;
}

.subtitle-bold {
    font-weight: bold !important;
}

.portalclientestheme .v-table-header-wrap, .portalclientestheme .v-table-footer-wrap, .portalclientestheme .v-table-header-drag {
    border: 1px solid #d4d4d4;
    background-color: #fafafa;
    background-image: -webkit-linear-gradient(top, #fafafa 2%, #efefef 98%);
    background-image: linear, to bottom, #fafafa 2%, #efefef 98%;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.portalclientestheme .v-table-footer-container {
    padding: 11px 4px 12px;
    float: right;
}

.portalclientestheme .v-tabsheet-scroller {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding-left: 19px;
    background-color: transparent;
    background-image: -webkit-linear-gradient(right, #ffffff 70%, rgba(250, 250, 250, 0) 100%);
    background-image: linear, to left, #ffffff 70%, rgba(250, 250, 250, 0) 100%;
    pointer-events: none;
}

.v-slot-wizard2 .v-progressbar-indicator {
    border-radius: 4px !important;
    height: inherit !important;
    background-color: #79B425 !important;
    background-image: -webkit-linear-gradient(top, #79B425 2%, #42783D 98%) !important;
    background-image: linear, to bottom, #ee6037 2%, #e14d2c 98% !important;
    border: 1px solid #79B425 !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 8px !important;
    -webkit-transition: width 160ms !important;
    -moz-transition: width 160ms !important;
    -webkit-transition: width 0.7s ease-out 0s !important;
}

.v-slot-wizard2 .wizard-progress-bar .v-label-current {
    font-weight: bold;
    background-color: #C7C6C6 !important;
    color: #353535 !important;
    border-radius: 30px;
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 10px;
    margin-left: 50%;
    padding-top: 3px;
}

.v-slot-wizard2 .wizard-progress-bar .v-label-completed {
    font-weight: bold;
    background-color: #79B425;
    color: black !important;
    border-radius: 30px;
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 10px;
    margin-left: 50%;
    padding-top: 3px;
    border-width: 0 !important;
}

.v-slot-wizard2 .wizard-progress-bar .v-label-step-caption {
    border-style: solid;
    border-radius: 30px;
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 10px;
    border-width: 1px;
    color: #828282 !important;
    margin-left: 50%;
    padding-top: 3px;
}

.portalclientestheme .v-label-undef-w {
    white-space: nowrap;
}

.v-label.v-widget.lbRojo.v-label-lbRojo.v-label-undef-w {
    white-space: normal;
}

.v-label-labelpequeno {
    white-space: normal !important;
    display: block !important;
    width: 600px !important;
    margin-left: 5px !important;
    font-weight: normal !important;
}

.v-button.v-widget.link.v-button-link.botonMenuHerramientas.v-button-botonMenuHerramientas.nivel2 {
    padding-left: 42px !important;
}

.v-button.v-widget.link.v-button-link.botonMenuHerramientasSelected.v-button-botonMenuHerramientasSelected.nivel2 {
    padding-left: 42px !important;
}

.ul-list {
    white-space: normal !important;
}

.segment-text-field {
    margin-right: 0px !important;
    padding: 3px !important;
}

.point-lb {
    margin-left: -7px !important;
}

.v-button.ul-list.v-button-ul-list {
    text-align: left;
    margin-bottom: 19px;
}

.v-button.ul-list.v-button-ul-list:hover {
    text-decoration: underline !important;
}

.label_verde_alineado {
    color: #007A60 !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-align: left !important;
    margin-left: -166px !important;
}

div.v-slot.v-slot-wizard.v-slot-wizard2 .v-progressbar-wrapper {
    display: none;
}

v-button.v-widget.link.v-button-link.botonWizard.v-button-botonWizard {
    white-space: normal !important;
    word-wrap: normal !important;
    width: 158px;
    padding-left: 10px;
    padding-right: 20px;
    margin-top: -5px;
    display: block;
}

.menuHerramientas .v-button {
    font-size: 11px !important;
}

.op-seg-title {
    white-space: normal !important;
}

.cer-aport-sub {
    font-weight: normal !important;
}

.cert-apor-lk {
    padding-bottom: 11px !important;
    padding-top: 0px !important;
}

.v-label-preguntas {
    display: block !important;
    width: 835px !important;
    height: 50px !important;
    white-space: normal !important;
    max-height: 200px !important;
}

.v-imagen-saldo-disponible {
    margin-top: 20px !important;
}

.v-caption.v-caption-seleccion-beneficiarios.v-caption-hasdescription {
    display: none !important;
}

.v-slot v-slot-link v-slot-label_titulo v-slot-cert-apor-lk {
    display: inline !important;
}

div#nuevoUsuario, div#olvidoPass, div#terminosPortal, div#terminosAudioResp, div#linkBiometria {
    background: none;
    font-size: 11px;
    padding: 0px;
}
div#terminosPortal{
	margin-top: -18px !important;
}
div#terminosAudioResp{
	margin-top: -35px !important;
}

div#rsLinks {
    margin: 0px;
}

.lbBlanco {
    color: white !important;
}

.label_verde_sin_negrilla {
    color: #007A60 !important;
    font-size: 14px !important;
    text-align: left !important;
}

.label_gris {
    color: #AAAAA9 !important;
    font-size: 14px !important;
    text-align: left !important;
}

.v-label-grisSolo {
    color: #868686 !important;
}

.label_naranja {
    color: #EC8323 !important;
}

.v-button-presionado {
    background-color: #00604F !important;/**width: 138px !important;**/
}

.v-button-normal {
    background-color: #F2F2F2 !important;
    color: black !important;/**width: 138px !important;**/
}

.v-button-presionadoPeq {
    background-color: #00604F !important;/**width: 100px !important;**/
}

.v-button-normalPeq {
    background-color: #F2F2F2 !important;
    color: black !important;/**width: 100px !important;**/
}

.v-button-normalAut {
    background-color: #D5D5D5 !important;
    color: black !important;
}

.v-button-presionadoAut {
    background-color: #EC7F23 !important;
}

.lbAjustado {
    white-space: pre-wrap !important;
}

.portalclientestheme .v-filterselect {
    width: 185px !important;
    height: 37px !important;
    border-radius: 10px !important;
}

.v-label-grisNegrilla {
    color: #8E9092 !important;
    font-size: 45px !important;/**  display: inherit !important;**/
}

.v-label-gris {
    color: #868686 !important;
    font-size: 15px !important;
}

.v-label-verdeNegrilla {
    color: #007A60 !important;
    font-size: 20px !important;
}

.v-label-grisBottom {
    color: #868686 !important;
    font-size: 15px !important;
    margin-top: 60px !important;
}

.v-label-grisBottomSinTop {
    color: #868686 !important;
    font-size: 15px !important;
}

.v-label-verdeNegrillaBottom {
    color: #007A60 !important;
    font-size: 20px !important;/**  margin-top: 110px !important;**/
}

.v-label-detalleVerde {
    background-color: #79B425 !important;
    background-image: initial !important;
    color: #fff !important;
    height: 30px !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: 70 !important;
    padding: 8px 8px 8px !important;
    font-size: 12px !important;
    border-radius: 15px !important;
    width: 180px !important;
    text-align: center !important;
    margin-top: 5px !important;
}

.v-label-detalleAguamarina {
    background-color: #006150 !important;
    background-image: initial !important;
    color: #fff !important;
    height: 30px !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: 70 !important;
    padding: 8px 8px 8px !important;
    font-size: 12px !important;
    border-radius: 15px !important;
    width: 180px !important;
    text-align: center !important;
    margin-top: 5px !important;
}

.label_verdeGrande {
    color: #007A60 !important;
    font-weight: bold !important;
    font-size: 20px !important;
    text-align: center !important;
}

.v-verticallayout-verdeClaro {
    background-color: #E9F3DE !important;
    border-radius: 10px !important;
    border-color: white !important;
    border-style: solid !important;
    border-width: 2px !important;
}

.v-horizontallayout-verdeClaro {
    background-color: #E9F3DE !important;
    border-radius: 10px !important;
    border-color: white !important;
    border-style: solid !important;
    border-width: 2px !important;
}

.label-pesos {
    display: inherit !important;
}

.portalclientestheme .v-table [class*="-row"].v-selected {
    background-color: #EC7F23 !important;
    background-image: -webkit-linear-gradient(top, #EC7F23 2%, #EC7F23 98%) !important;
    background-image: linear, to bottom, #EC7F23 2%, #EC7F23 98% !important;
    background-origin: border-box;
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.v-panel-caption-aportes {
    line-height: 21px !important;
}

.v-label-alinea {
    white-space: inherit !important;
}

.v-label-centrado {
    text-align: center !important;
}

.v-label-entrega {
    display: inherit !important;
    width: 300px !important;
}

.diaentrega {
    width: 310px !important;
    text-align: center !important;
}

.v-gridlayout-detalles {
    height: 90px !important;
}

.v-gridlayout-detallesSolicitud {
    width: 100% !important;
    background-color: #E9F3DE !important;
    border-radius: 10px !important;
    border-color: white !important;
    border-style: solid !important;
    border-width: 2px !important;
}

.v-button-derecho {
    text-align: right !important;
}

div#btRefresh {
    padding-left: 0px !important;
    background-image: none !important;
    background-color: transparent !important;
    color: gray !important;
    border: 0px !important;
    -webkit-box-shadow: none !important;
}

div#btRefresh:after {
    display: none !important;
}

.portalclientestheme div#vlContent {
    padding: 10px !important;
}

.portalclientestheme input#pinPf {
    width: 100%;
}

.portalclientestheme .rl-row.v-layout.v-widget.v-has-width.margin.rl-row-margin.v-col-spacing.rl-row-v-col-spacing.h-col-spacing.rl-row-h-col-spacing.vlPinMsg.rl-row-vlPinMsg {
    margin: 5px 0px 6px 0px !important;
}

.v-label-panelMensajeLabel {
    font-weight: normal !important;
    white-space: normal !important;
}

.igualretirosnuevaexperiencia {
    margin-top: 55px !important;
}

.v-button-ayuda {
    margin-top: -50px !important;
}

#idWizardPersonaNutural .infoFraud img.v-icon {
    width: 20px;    
}

.rl-row-centrado {
    justify-content: center !important;
}

img.v-icon-top {
    margin-top: -9px !important;
}

.v-label-alineacionIcono {
    font-size: 15px !important;
}

div#aportes {
    background-color: white !important;
    background-image: none !important;
    color: #006150 !important;
}

.v-label-notaAlPieGrande {
    color: black !important;
    font-size: 12px;
}

div#rsTxtInfo {
    justify-content: center !important;
    text-align: center !important;
}

div#transaccionesPanel .v-panel {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.infoDatos {
    white-space: normal !important;
    font-weight: normal !important;
    width: 900px !important;
    position: absolute !important;
    height: 50px !important;
}

.lnkAutorizacionSt {
    white-space: normal !important;
    margin-bottom: 30px !important;
}

.linkGen {
    color: #6eab24 !important;
}

.v-label-multilineas {
    padding: 10px 10px 10px 10px !important;
    max-width: 300px !important;
}

.v-slot-a1dd70 {
    background-color: #a1dd70;
	width:14px;
	height:50px !important;
}

.v-slot-a4d7e1 {
    background-color: #a4d7e1;
	width:14px;
	height:50px !important;
}
.v-slot-63aabc {
    background-color: #63aabc;
	width:14px;
	height:50px !important;
}

.v-slot-ff9460 {
    background-color: #ff9460;
	width:14px;
	height:50px !important;
}

.v-slot-8ba2c1 {
    background-color: #8ba2c1;
	width:14px;
	height:50px !important;
}

.v-slot-f67e7d {
    background-color: #f67e7d;
	width:14px;
	height:50px !important;
}

.v-slot-dddfd0 {
    background-color: #dddfd0;
	width:14px;
	height:50px !important;
}

.v-slot-94abf2 {
    background-color: #94abf2;
	width:14px;
	height:50px !important;
}

.v-slot-fecd72 {
    background-color: #fecd72;
	width:14px;
	height:50px !important;
}

.v-slot-95dbb7 {
    background-color: #95dbb7;
	width:14px;
	height:50px !important;
}

.v-slot-ffbf9f {
    background-color: #ffbf9f;
	width:14px;
	height:50px !important;
}

.v-slot-bc6995 {
    background-color: #bc6995;
	width:14px;
	height:50px !important;
}

.v-slot-d9d052 {
    background-color: #d9d052;
	width:14px;
	height:50px !important;
}

.v-slot-d6c09c {
    background-color: #d6c09c;
	width:14px;
	height:50px !important;
}

.v-slot-ed3833 {
    background-color: #ed3833;
	width:14px;
	height:50px !important;
}

.v-slot-cba1d2 {
    background-color: #cba1d2;
	width:14px;
	height:50px !important;
}

.v-slot-bc4d8a {
    background-color: #bc4d8a;
}

.v-slot-bc4d8a {
    background-color: #bc4d8a;
}

.v-slot-e5bdd4 {
    background-color: #e5bdd4;
}

.v-slot-bd6228 {
    background-color: #bd6228;
}

.v-slot-f48021 {
    background-color: #f48021;
}

.v-slot-fabf8f {
    background-color: #fabf8f;
}

.v-slot-6eac43 {
    background-color: #6eac43;
}

.v-slot-0bb4cb {
    background-color: #0bb4cb;
}

.v-slot-9c1e5c {
    background-color: #9c1e5c;
}

.v-slot-f48020 {
    background-color: #f48020;
}

.v-slot-7eb0a7 {
    background-color: #7eb0a7;
}

.v-slot-b9d893 {
    background-color: #b9d893;
}

.v-slot-82BC00 {
    background-color: #82BC00;
}

.v-slot-ACD05D {
    background-color: #ACD05D;
}

.v-slot-D1E4A2 {
    background-color: #D1E4A2;
}

.v-slot-E9F1D0 {
    background-color: #E9F1D0;
}

.v-slot-00795F {
    background-color: #00795F;
}

.v-slot-00947D {
    background-color: #00947D;
}

.v-slot-59AF9B {
    background-color: #59AF9B;
}

.v-slot-94C9BB {
    background-color: #94C9BB;
}

.v-slot-C6C5C5 {
    background-color: #C6C5C5;
}

.v-slot-DAD9D8 {
    background-color: #DAD9D8;
}

.v-slot-E5E4E3 {
    background-color: #E5E4E3;
}

.v-slot-F0EFEE {
    background-color: #F0EFEE;
}

.rl-bottom-xs {
    align-items: initial !important;
}

.label_sinNegrilla {
    font-weight: normal !important;
}

.v-table-composicion .v-table-cell-content .v-table-cell-wrapper {
    padding: 0px !important;
}

.v-label-justify500 {
    text-align: justify;
    text-justify: inter-word;
    white-space: initial !important;
    width: 500px !important;
}

.v-slot-pegado {
    margin-left: 0px !important;
}

.v-label-variaslineas {
    width: 400px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    white-space: initial !important;
}

.v-label-variaslineas255 {
    width: 255px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    white-space: initial !important;
}

.v-slot-nombreProductoResumen {
    margin-left: 7px !important;
}

.v-label-variaslineaslabel {
    width: 300px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    white-space: initial !important;
}

.v-table.v-widget.resumenCesantiasAhorroInversion .v-table-cell-wrapper {
    padding: 1px !important;
}

.v-table.v-widget.resumenCesantiasAhorroInversion .v-table-cell-wrapper {
    padding: 1px !important;
}

div#idIngresePinLayout .v-formlayout-contentcell {
    text-align: center !important;
}

.v-slot-idAqui {
    text-align: right !important;
}

div#idVlContenidoHistoria .v-captiontext {
    color: #006150 !important;
    font-size: 20px !important;
    font-face: Futura-Bold !important;
}

.v-label-subtitulo16Gris {
    color: gray !important;
    font-size: 16px !important;
    font-face: Futura-Bold !important;
}

.v-label-subtitulo20Negro {
    color: #333333 !important;
    font-size: 20px !important;
    font-face: Futura-Bold !important;
}

.v-label-subtitulo20Verde {
    color: #006150 !important;
    font-size: 20px !important;
    font-face: Futura-Bold !important;
}

div#idHlDisclaimerRecursos .v-icon {
    margin-left: -8px !important;
}

.v-table-resizer {
    display: none !important;
}

.v-slot-wizard3 .v-caption-alineacionIcono {
    width: 180% !important;
    margin-left: -70px !important;
}

.v-label-grisClaro {
    background-color: #F7F7F7;
    width: 100% !important;
    height: 100% !important;
}

.v-label-verdeOscuro {
    color: #007961 !important;
}

.v-label-derecha {
    text-align: right !important;
}

.v-label-grande {
    font-size: 20px !important;
}

.v-no-margin {
    margin: auto !important;
}

.v-textfield-oculto {
    display: none;
}

div#panel1607 {
    border: solid 1px;
    padding: 15px;
}

img#help1607 {
    padding-top: 15px;
    margin-left: -14px;
    z-index: 1 !important;
    position: relative;
}

div#bt1607 {
    background-color: #00a7ca !important;
}

div#panelBenefTrib {
    border: 0 !important;
    overflow: hidden;
}

@media (max-width:480px) {
    div#paginadorBenefTrib .v-button, .v-slot, .v-textfield-small {
        font-size: 10px !important;
    }
    div#paginadorBenefTrib .v-spacing {
        width: 9px !important;
    }
    div#paginadorBenefTrib {
        margin-left: 18px !important;
    }
}

div#panelIntRecElec .v-button-caption {
    white-space: initial !important;
    line-height: normal;
}

div#panelIntRecElec .v-button {
    text-align: left !important;
}

@media only screen and (max-width: 600px) {
    #chgPorSttgHlFnd {
        margin-left: 10px !important;
    }
    #chgPorSttgHlDTSol {
        margin-left: 10px !important;
    }
    #chgPorSttgHlBtImp {
        margin-bottom: 10px !important;
    }
    #chgPorSttgLbPortaf {
        margin-top: 14px !important;
        text-align: center;
    }
    #chgPorSttgCbReg {
        top: -73px;
    }
    #chgPorSttgCbPort {
        top: -55px !important;
        left: 2px !important;
    }
    #chgPorSttgGlReg > div:nth-child(3) {
        left: 200px !important;
    }
    /**#gwt-uid-64 {
        top: -60px !important;
    }**/  /** Comentado por guio 8 noviembre **/
    #gwt-uid-62 {
        top: 20px !important;
        left: 195px !important;
    }
    #chgPorSttgPpal > div:nth-child(6) {
        height: 161px !important;
    }
    #chgPartPorVlPreCon > div:nth-child(2) {
        margin-top: 10px;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div:nth-child(12) > div > div {
        margin-top: 10px;
    }
    #idTabSheet > div.v-tabsheet-content.v-tabsheet-content-tabSheetDashboard > div > div > div > div > div > div:nth-child(1) > div > div:nth-child(3) > div > div.v-slot.v-slot-v-link.v-slot-v-widget.v-slot-linkVerProductosSeguros {
        position: absolute;
        top: 170px;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div:nth-child(2) {
        overflow: auto !important;
    }
    #idTabSheet > div.v-tabsheet-content.v-tabsheet-content-tabSheetDashboard > div > div > div > div > div > div:nth-child(1) > div > div:nth-child(2) > div > div.v-slot.v-slot-font-bold.v-slot-tl-cesantias > div {
        font-size: 21px !important;
    }
    #idTabSheet > div.v-tabsheet-content.v-tabsheet-content-tabSheetDashboard > div > div > div > div > div > div.v-slot.v-slot-wrapping.v-slot-detalleResumenSaldo3ColSegurosCrea > div > div:nth-child(1) > div > div.v-panel-content.v-panel-content-borderless.v-scrollable > div > div > div {
        height: 0px !important;
    }
    #chgPartPorLbInfSel {
        width: 82% !important;
        margin-left: 63px !important;
    }
    #chgPartPorLbInfOrdPort {
        width: 78% !important;
        margin-left: 64px !important;
    }
    #chgPartPorVlIntPn {
        width: 99% !important;
        margin-left: 0 !important;
    }
    #chgPorSttgLbSolVal {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    #chgPartPorBtCont {
        float: right !important;
    }
    #chgTotPorBtCont {
        float: right !important;
    }
    #chgPorSttgCbPort {
        margin-left: -198px;
        margin-top: 60px;
    }
    #chgPorSttgBtEnv {
        float: right !important;
    }
    #chgPorSttgLbPortaf {
        margin-left: 0 !important;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div:nth-child(8) > div > div:nth-child(4) > div:nth-child(3) > div {
        width: 160px;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div:nth-child(8) > div > div:nth-child(4) > div:nth-child(5) > div {
        width: 160px;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div:nth-child(8) > div > div:nth-child(4) > div:nth-child(7) > div {
        width: 160px;
    }
    #chgPartPorTblActAj > div.v-scrollable.v-table-body-wrapper.v-table-body {
        overflow: hidden !important;
    }
    #chgTotPorLbTitTot {
        width: 260px !important;
    }
    #layoutCertificadoAfiliacion > div:nth-child(7) > div > div > div > div:nth-child(3) {
        display: block;
        margin-left: 13px;
    }
    #idTablaContratos {
        width: 100% !important;
        overflow-x: auto;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div:nth-child(2) > div > div:nth-child(6) > div {
        width: 72% !important;
        white-space: normal !important;
    }
    #datosAdicionalesGeneracionCertificados > div:nth-child(3) > div > div:nth-child(3) > div {
        margin-left: -2px;
    }
    #chgPartPorLbTotSol {
        width: 100% !important;
    }
    #chgTotPorTblSolProc {
        overflow-x: auto !important;
        display: block !important;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div > div > div.v-slot.v-align-center.v-align-middle > div > div.v-slot.v-slot-pagedtable.v-align-center.v-align-middle > div {
        overflow-x: visible !important;
        display: block !important;
    }
    #transaccionesPanel > div.v-panel-content.v-panel-content-panelTransacciones.v-scrollable > div > div > div > div.v-slot.v-align-center.v-align-middle > div > div:nth-child(7) > div > div > div > div > div {
        width: 80% !important;
        margin-left: -58px !important;
    }
    #idDetalleSegurosCreaIndicadores > div {
        margin-top: 10px !important;
    }
    #idDetalleSegurosCreaHL4 > div.v-slot.v-slot-v-link.v-slot-v-widget.v-slot-linkVerProductosSeguros > div > a > span {
        margin-left: -185px !important;
    }
    #idLblObjetivoAhorroCrea {
        margin-left: -154px !important;
        margin-top: 52px !important;
    }
    #idValObjetivoAhorroCrea {
        margin-left: -167px !important;
        margin-top: 72px !important;
    }
    #idIndicadoresAhorroCrea {
        padding-top: 0px !important;
    }
    #v-Z7_N2G21CS0MOKS40AJO818B71KU5 > div > div.v-verticallayout.v-layout.v-vertical.v-widget.v-has-width > div > div > div.v-slot.v-slot-mainLayoutHerramientas > div > div:nth-child(2) > div > div.v-slot.v-slot-link.v-slot-botonMenuHerramientasSelected {
        margin-top: -35px;
        margin-left: -221px;
    }
    #v-Z7_N2G21CS0MOKS40AJO818B71KU5 > div > div.v-verticallayout.v-layout.v-vertical.v-widget.v-has-width > div > div > div.v-slot.v-slot-mainLayoutHerramientas > div > div:nth-child(3) > div > table {
        left: -100px;
    }
    #v-Z7_N2G21CS0MOKS40AJO818B71KU5 > div > div.v-verticallayout.v-layout.v-vertical.v-widget.v-has-width > div > div > div.v-slot.v-slot-mainLayoutHerramientas > div > div:nth-child(2) > div {
        margin-top: 15px !important;
    }
}

.v-over-flow-x-hidden {
    overflow-x: hidden !important;
}

div#panelHistorialTransacciones {
    border: 0 !important;
    overflow: hidden;
}

@media (max-width:480px) {
    div#paginadorHistorialTransacciones .v-button, .v-slot, .v-textfield-small {
        font-size: 10px !important;
    }
    div#paginadorHistorialTransacciones .v-spacing {
        width: 9px !important;
    }
    div#paginadorHistorialTransacciones {
        margin-left: 18px !important;
    }
}

.width-100-important {
    width: 100% !important;
}

.advertencia-distribucion-cesantias {
    width: 61% !important;
    white-space: normal !important;
}

div#adicModifRecVl, div#historicoRecElecVl, div#operacionesCuentasVl {
    overflow: auto !important;
}

div#panelIntHistRecEl {
    width: auto !important;
    overflow: unset !important;
}

div#benefTribRr div.v-captiontext {
    border: none !important;
    font-size: inherit !important;
    margin-bottom: 0px;
}

div#benefTribRs {
    width: 60%;
    float: left;
}

div#benefTribRr .v-csslayout.v-layout.v-widget.col-container.v-csslayout-col-container {
    padding-bottom: 12px;
}

div#btnConBenTrib {
    margin-top: 46px;
}

@media (max-width:480px) {
    div#btnConBenTrib {
        margin-top: 0px;
    }
}

.tf-alinear-derecha {
    text-align: right;
}

div#WizardOlvidoPassView, .v-label-alineacionIcono {
    font-size: 12px !important;
}

div#pnTablaPagosCertAport .v-scrollable > .v-widget {
    overflow: scroll !important;
}

div#btVerDetalleInfAfcFic {
    margin-top: -6px;
    margin-left: 6px;
}

div#idVerticalInfoVoluntarias {
    width: auto;
}

.portalclientestheme .v-app-loading:before {
    content: "";
    position: fixed;
    z-index: 100;
    width: 100% !important;
    height: 100% !important;
    top: -1%;
    right: 7px;
    background: transparent url(images/preloader.gif) no-repeat 50%/80px 80px !important;
}

.v-textfield-mayusculas {
    text-transform: uppercase;
}

.lbRojo-dif-fechas {
    white-space: normal !important;
    max-width: 600px !important;
    color: red !important;
}

@media only screen 
  and (device-width: 412px) 
  and (device-height: 732px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 81% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -8%;
    }
}

@media only screen 
  and (device-width: 732px) 
  and (device-height: 412px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 84% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 375px) 
  and (device-height: 667px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 85% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -4%;
    }
}

@media only screen 
  and (device-width: 667px) 
  and (device-height: 375px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 76% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 414px) 
  and (device-height: 736px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 81% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -6%;
    }
}

@media only screen 
  and (device-width: 736px) 
  and (device-height: 414px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 82% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -15%;
    }
}

@media only screen 
  and (device-width: 360px) 
  and (device-height: 640px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 86% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -3%;
    }
}

@media only screen 
  and (device-width: 640px) 
  and (device-height: 360px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 76% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -15%;
    }
}

@media only screen 
  and (device-width: 768px) 
  and (device-height: 1024px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 86% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 1024px) 
  and (device-height: 768px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 97% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 1366px) 
  and (device-height: 1024px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 96% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 1024px) 
  and (device-height: 1366px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 91% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 320px) 
  and (device-height: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
    div#vlLayoutLoginPortalClientesUI {
        width: 91% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: 0%;
    }
}

@media only screen 
  and (device-height: 320px) 
  and (device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
    div#vlLayoutLoginPortalClientesUI {
        width: 74% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 412px) 
  and (device-height: 732px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 81% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -8%;
    }
}

@media only screen 
  and (device-width: 732px) 
  and (device-height: 412px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 84% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 375px) 
  and (device-height: 667px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 85% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -4%;
    }
}

@media only screen 
  and (device-width: 667px) 
  and (device-height: 375px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 76% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 414px) 
  and (device-height: 736px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 81% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -6%;
    }
}

@media only screen 
  and (device-width: 736px) 
  and (device-height: 414px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 82% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -15%;
    }
}

@media only screen 
  and (device-width: 360px) 
  and (device-height: 640px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 86% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -3%;
    }
}

@media only screen 
  and (device-width: 640px) 
  and (device-height: 360px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 76% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -15%;
    }
}

@media only screen 
  and (device-width: 768px) 
  and (device-height: 1024px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 86% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 1024px) 
  and (device-height: 768px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 97% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 1366px) 
  and (device-height: 1024px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 96% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 1024px) 
  and (device-height: 1366px) {
    div#vlLayoutLoginPortalClientesUI {
        width: 91% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

@media only screen 
  and (device-width: 320px) 
  and (device-height: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
    div#vlLayoutLoginPortalClientesUI {
        width: 91% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: 0%;
    }
}

@media only screen 
  and (device-height: 320px) 
  and (device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
    div#vlLayoutLoginPortalClientesUI {
        width: 74% !important;
        display: block !important;
        margin-left: auto !important;
        padding-left: 0px !important;
    }
    #vlLoginPanelPpal > div > div {
        padding-left: 0px !important;
    }
    div#rlTerminos {
        margin-left: -13%;
    }
}

.btSalidaSeguraMb {
    margin-left: 4px;
}

div#idMessageBox {
    position: absolute !important;
    z-index: 10002 !important;

}

div#idInformationWindow {
    position: absolute !important;
    z-index: 10002 !important;

}

div#idSimpleConfirmation {
    position: absolute !important;
    z-index: 10002 !important;

}

.msjStratgistCenter{
    text-align: center !important;
    font-weight: bold !important;
}

.msjCentrarCambioTotal{
    width: 1000px !important;
}

@media only screen 
  and (device-width: 320px) 
  and (device-height: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
    #chgTotPorLbValid {
        width: 300px !important;
    }
}

@media only screen 
  and (device-width: 1024px) 
  and (device-height: 768px)
  and (-webkit-min-device-pixel-ratio: 2) {
    #chgTotPorLbValid {
        width: 400px !important;
    }
}

#idPanelInfoVoluntarias > div.v-panel-content.v-scrollable{
    overflow: visible !important;
}

#idTbComposicionInfBonPen{
    display: initial;
}

v-select-optiongroup-horizontal .v-select-option{
    display: inline-block;
}

/* Avoid wrapping if the layout is too tight */
.v-select-optiongroup-horizontal {
    white-space: nowrap;
}

/* Some extra spacing is needed */
.v-select-optiongroup-horizontal
  .v-select-option.v-radiobutton {
    padding-right: 10px;
}

.tituloGrandePortafolioExito{
	font-weight: bold !important;
	font-size: 16px;
}

.tituloPortafolioExito{
	font-weight: bold !important;
	background-color: green;
	font-size: 14px;
}

   