/******************************************************************************
 * Copyright 2013 VMware, Inc.  All rights reserved.
 *****************************************************************************/
/*
 * main-ui.css
 *
 *    Defines style for the wmks ui widgets.
 *
 *    Use CSS3 for touch devices as jquery effects break when browser handles
 *    orientation changes, or page bouncing.
 *
 *    TODO: Need to handle Retina mode for iPad.
 */
/*
 * jQuery UI Dialog
 */
.ui-dialog {
    padding: 0;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5)
    }
.ui-dialog .ui-dialog-titlebar {
    padding: 0.8em 0.8em;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
    }
.ui-dialog .ui-dialog-titlebar-close {
    right: 0.4em;
    margin-top: -11px
    }
.ui-widget-content {
    border: 0;
    background: #fff;
    color: #333
    }
.ui-widget-header a {
    color: #333
    }
/* Touch feedback indicator */
.ui-touch-feedback-icon {
    background-image: url(icons-20571149/touch_sprite_feedback.png);
    width: 300px;
    height: 120px;
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 2
    }
.feedback-container {
    z-index: 2;
    position: absolute;
    display: none
    }
.feedback-container.cursor-icon {
    background: url(icons-20571149/touch_sprite_feedback.png) -260px -15px no-repeat;
    width: 17px;
    height: 23px
    }
.feedback-container.tap-icon {
    background: url(icons-20571149/touch_sprite_feedback.png) -300px -15px no-repeat;
    width: 36px;
    height: 36px
    }
.feedback-container.drag-icon {
    background: url(icons-20571149/touch_sprite_feedback.png) -10px -10px no-repeat;
    width: 100px;
    height: 100px
    }
.feedback-container.pulse-icon {
    background: url(icons-20571149/touch_sprite_feedback.png) -111px -10px no-repeat;
    width: 100px;
    height: 100px
    }
.feedback-container.scroll-icon {
    background: url(icons-20571149/touch_sprite_feedback.png) -212px -10px no-repeat;
    width: 27px;
    height: 100px
    }
.trackPad-cursor {
    background: none !important
    }
.trackPad-cursor.cursorIcon {
    opacity: 0
    }
.cursor-icon-shadow {
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0
    }
/* CSS3 feedback indicator animation. Keep it simple (uses lower cpu cycles)
   as there may be multiple animation requests made in quick successions. */
.animate-feedback-indicator {
    display: block;
    opacity: 0;
    animation-name: showfadeout;
    animation-duration: 350ms;
    -webkit-animation-name: showfadeout;
    -webkit-animation-duration: 350ms;
    -moz-animation-name: showfadeout;
    -moz-animation-duration: 350ms;
    -ms-animation-name: showfadeout;
    -ms-animation-duration: 350ms
    }
@-webkit-keyframes showfadeout {
    0% {
        opacity: 1;
        } 100% {
        opacity: 0;
        }
    }
@-moz-keyframes showfadeout {
    0% {
        opacity: 1;
        } 100% {
        opacity: 0;
        }
    }
@-ms-keyframes showfadeout {
    0% {
        opacity: 1;
        } 100% {
        opacity: 0;
        }
    }
.animate-double-feedback-indicator {
    display: block;
    opacity: 0;
    animation-name: showdoublefadeout;
    animation-duration: 400ms;
    -webkit-animation-name: showdoublefadeout;
    -webkit-animation-duration: 400ms;
    -moz-animation-name: showdoublefadeout;
    -moz-animation-duration: 400ms;
    -ms-animation-name: showdoublefadeout;
    -ms-animation-duration: 400ms
    }
@-webkit-keyframes showdoublefadeout {
    0% {
        opacity: 1;
        } 40% {
        opacity: 0;
        } 70% {
        opacity: 1;
        } 100% {
        opacity: 0;
        }
    }
@-moz-keyframes showdoublefadeout {
    0% {
        opacity: 1;
        } 40% {
        opacity: 0;
        } 70% {
        opacity: 1;
        } 100% {
        opacity: 0;
        }
    }
@-ms-keyframes showdoublefadeout {
    0% {
        opacity: 1;
        } 40% {
        opacity: 0;
        } 70% {
        opacity: 1;
        } 100% {
        opacity: 0;
        }
    }
#relativepadLeft {
    height: 200px;
    border: 1px solid black
    }
/******************************************************************************
 * Copyright 2013 VMware, Inc.  All rights reserved.
 *****************************************************************************/
/*
 * trackpad.css
 *
 *     Defines style for the trackpad widget.
 */
/*
 * jQuery UI Dialog 1.8.16
 */
.ui-dialog {
    padding: 0;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5)
    }
.ui-dialog .ui-dialog-titlebar {
    padding: 0.8em 0.8em;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
    }
.ui-dialog .ui-dialog-titlebar-close {
    right: 0.4em;
    margin-top: -11px
    }
.ui-widget-content {
    border: 0;
    background: #fff;
    color: #333
    }
.ui-widget-header a {
    color: #333
    }
/*
 * Touch sprite is loaded in a single class (as we have disabled caching images).
 * We do this for the iOS case, due to extreme limitations in terms of image size.
 * This form of grouped declaration forces all these definitions to load the same
 * sprite. (This is also loaded upfront for the navbar so its always visible).
 * For details see PR - 978390.
 */
.trackpad-wrapper .ui-dialog-titlebar-close .ui-icon, .trackpad-wrapper .ui-dialog-titlebar .ui-dialog-title, .touch-sprite {
    background-image: url(icons-20571149/touch_sprite.png)
    }
/* Replace jquery ui title bar close icon. */
.trackpad-wrapper .ui-dialog-titlebar-close {
    margin-top: -9px;
    border: 0 !important;
    background: none !important
    }
.trackpad-wrapper .ui-dialog-titlebar-close {
    margin-top: -11px
    }
/* Background-image is defined along with touch-sprite in 1 place. */
.trackpad-wrapper .ui-dialog-titlebar-close .ui-icon {
    background-position: -9px -239px;
    background-repeat: no-repeat
    }
.trackpad-wrapper .ui-dialog-titlebar-close .ui-icon:active {
    background-position-x: -24px;
    background-repeat: no-repeat
    }
/* The grabber icon indicating the dialog could be moved around */
.trackpad-wrapper .ui-dialog-titlebar .ui-dialog-title {
    background-position: -10px -255px;
    background-repeat: no-repeat;
    width: 40px;
    height: 14px;
    margin: 0 0 0 42%
    }
.trackpad-wrapper .ui-dialog-titlebar .ui-dialog-title:active {
    background-position-x: -52px
    }
.trackpad-wrapper {
    width: 289px !important;
    /* As this is less than the default value */
    border: 1px solid #333 !important;
    background: none !important;
    border-radius: 6px;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.6)
    }
.trackpad-wrapper .ui-dialog-titlebar {
    border-top: 1px solid #ccc;
    border-left: 1px solid #aaa;
    border-right: 1px solid #aaa;
    border-bottom: 0;
    padding: 0.5em 0.8em 0.4em 0.8em;
    background: rgb(175, 176, 187);
    /* Old browsers */
    background: -webkit-linear-gradient(top, rgba(175, 176, 187, 0.93) 0%, rgba(170, 171, 182, 0.93) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(175, 176, 187, 0.93) 0%, rgba(170, 171, 182, 0.93) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(175, 176, 187, 0.93) 0%, rgba(170, 171, 182, 0.93) 100%);
    /* IE10+ */
    background: linear-gradient(top, rgba(175, 176, 187, 0.93) 0%, rgba(170, 171, 182, 0.93) 100%);
    /* W3C */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
    }
.trackpad-wrapper .trackpad-container {
    padding: 0 !important
    }
.trackpad-wrapper .left-border {
    background: rgb(170, 171, 182);
    /* Old browsers */
    background: -webkit-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* IE10+ */
    background: linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* W3C */
    margin-top: -1px;
    float: left;
    width: 12px;
    height: 209px;
    border: 0
    }
.trackpad-wrapper .touch-area {
    background: rgba(255, 255, 255, 0.8);
    background: -webkit-linear-gradient(-70deg, rgba(255, 255, 255, 0.8) 0%, rgba(238, 238, 240, 0.8) 22%, rgba(210, 210, 216, 0.8) 71%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-70deg, rgba(255, 255, 255, 0.8) 0%, rgba(238, 238, 240, 0.8) 22%, rgba(210, 210, 216, 0.8) 71%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(-70deg, rgba(255, 255, 255, 0.8) 0%, rgba(238, 238, 240, 0.8) 22%, rgba(210, 210, 216, 0.8) 71%);
    /* IE10+ */
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.8) 0%, rgba(238, 238, 240, 0.8) 22%, rgba(210, 210, 216, 0.8) 71%);
    /* W3C */
    border: 1px solid #555;
    box-shadow: 0 2px 6px 1px #888 inset;
    float: left;
    width: 263px;
    height: 206px
    }
.trackpad-wrapper .right-border {
    background: rgb(170, 171, 182);
    /* Old browsers */
    background: -webkit-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* IE10+ */
    background: linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* W3C */
    margin-top: -1px;
    float: left;
    width: 12px;
    height: 209px;
    border: 0
    }
.trackpad-wrapper .bottom-border {
    background: rgb(123, 123, 133);
    /* Old browsers */
    background: -webkit-linear-gradient(top, rgba(123, 123, 133, 0.93) 0%, rgba(110, 110, 119, 0.93) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(123, 123, 133, 0.93) 0%, rgba(110, 110, 119, 0.93) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(123, 123, 133, 0.93) 0%, rgba(110, 110, 119, 0.93) 100%);
    /* IE10+ */
    background: linear-gradient(top, rgba(123, 123, 133, 0.93) 0%, rgba(110, 110, 119, 0.93) 100%);
    /* W3C */
    width: 289px;
    height: 73px;
    margin-top: 208px;
    border: 0
    }
.trackpad-wrapper .button-left, .trackpad-wrapper .button-right {
    background: rgb(255, 255, 255);
    /* Old browsers */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, rgba(225, 225, 227, 0.7) 3%, rgba(204, 204, 204, 0.7) 45%, rgba(190, 190, 195, 0.7) 96%, rgba(131, 131, 135, 0.7) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, rgba(225, 225, 227, 0.7) 3%, rgba(204, 204, 204, 0.7) 45%, rgba(190, 190, 195, 0.7) 96%, rgba(131, 131, 135, 0.7) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, rgba(225, 225, 227, 0.7) 3%, rgba(204, 204, 204, 0.7) 45%, rgba(190, 190, 195, 0.7) 96%, rgba(131, 131, 135, 0.7) 100%);
    /* IE10+ */
    background: linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, rgba(225, 225, 227, 0.7) 3%, rgba(204, 204, 204, 0.7) 45%, rgba(190, 190, 195, 0.7) 96%, rgba(131, 131, 135, 0.7) 100%);
    /* W3C */
    border-radius: 6px;
    box-shadow: 0 2px 5px #333;
    float: left;
    width: 126px;
    height: 47px
    }
.trackpad-wrapper .button-left {
    margin: 12px 0 auto 12px
    }
.trackpad-wrapper .button-right {
    margin: 12px
    }
.trackpad-wrapper .button-left.button-highlight, .trackpad-wrapper .button-right.button-highlight {
    background: -webkit-linear-gradient(top, rgba(170, 171, 182, 0.7) 0%, rgba(123, 123, 133, 0.7) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(170, 171, 182, 0.7) 0%, rgba(123, 123, 133, 0.7) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(170, 171, 182, 0.7) 0%, rgba(123, 123, 133, 0.7) 100%);
    /* IE10+ */
    background: linear-gradient(top, rgba(170, 171, 182, 0.7) 0%, rgba(123, 123, 133, 0.7) 100%);
    /* W3C */
    }
/******************************************************************************
 * Copyright 2013 VMware, Inc.  All rights reserved.
 *****************************************************************************/
/*
 * extended-keypad.css
 *
 *     Defines style for the virtual keys on the control pane.
 */
.ctrl-pane-wrapper {
    width: 290px !important;
    /* Needed as the default is a bit larger than this */
    border: 1px solid #333 !important;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    background: rgb(170, 171, 182);
    /* Old browsers */
    background: -webkit-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* IE10+ */
    background: linear-gradient(top, rgba(170, 171, 182, 0.93) 0%, rgba(123, 123, 133, 0.93) 100%);
    /* W3C */
    }
.fnKey-pane-wrapper {
    width: 427px;
    border: 1px solid #333;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    background: #c1c4d1;
    /* Old browsers */
    background: -webkit-linear-gradient(top, #c1c4d1 0%, #b0b1bd 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #c1c4d1 0%, #b0b1bd 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #c1c4d1 0%, #b0b1bd 100%);
    /* IE10+ */
    background: linear-gradient(top, #c1c4d1 0%, #b0b1bd 100%);
    /* W3C */
    position: absolute;
    padding: 0;
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5)
    }
.fnKey-pane-wrapper-down {
    width: 427px;
    border: 1px solid #333;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    background: #6e6e77;
    /* Old browsers */
    background: -webkit-linear-gradient(top, #6e6e77 0%, #656565 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #6e6e77 0%, #656565 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #6e6e77 0%, #656565 100%);
    /* IE10+ */
    background: linear-gradient(top, #6e6e77 0%, #656565 100%);
    /* W3C */
    position: absolute;
    padding: 0;
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5)
    }
/* Hide jquery ui title bar. */
.ctrl-pane-wrapper .ui-dialog-titlebar {
    border-top: 1px solid #ccc;
    border-left: 1px solid #aaa;
    border-right: 1px solid #aaa;
    border-bottom: 0;
    padding: 0.6em 0.8em 0 0.8em;
    background: none !important;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    -khtml-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    -khtml-border-top-right-radius: 5px;
    border-top-right-radius: 5px
    }
/* Replace jquery ui title bar close icon. */
.ctrl-pane-wrapper .ui-dialog-titlebar-close {
    margin-top: -9px;
    border: 0 !important;
    background: none !important
    }
/* Background-image is defined along with touch-sprite in 1 place. */
.ctrl-pane-wrapper .ui-dialog-titlebar-close .ui-icon {
    background-position: -9px -239px;
    background-repeat: no-repeat
    }
.ctrl-pane-wrapper .ui-dialog-titlebar-close .ui-icon:active {
    background-position-x: -24px;
    background-repeat: no-repeat
    }
/* The grabber icon indicating the dialog could be moved around */
.ctrl-pane-wrapper .ui-dialog-titlebar .ui-dialog-title {
    background-position: -10px -255px;
    background-repeat: no-repeat;
    width: 40px;
    height: 14px;
    margin: 0 0 0 42%
    }
.ctrl-pane-wrapper .ui-dialog-titlebar .ui-dialog-title:active {
    background-position-x: -52px
    }
.ctrl-pane-wrapper .ui-dialog-content {
    background: none !important;
    padding: 0 0;
    border-style: solid;
    border-color: #aaa;
    border-width: 0 1px 1px 1px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -khtml-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -khtml-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px
    }
.fnKey-inner-border-helper {
    position: relative;
    background: none !important;
    border-style: solid;
    border-color: #d5d5d5;
    border-width: 1px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    pointer-events: none
    }
.ctrl-pane-wrapper .ctrl-pane {
    padding: 3px 0 3px 6px;
    height: 140px;
    width: 280px
    }
.ctrl-pane .baseKey {
    float: left;
    border: 0;
    padding: 0;
    width: 57px;
    height: 57px;
    margin: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    font-family: "HelveticaNeue", "Helvetica Neue", "HelveticaNeue", "Helvetica Neue", "TeXGyreHeros", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
    font-size: 18px;
    text-shadow: 0 1px 1px #eee;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7)
    }
.ctrl-pane .ctrl-key-top-row {
    background: -webkit-linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* IE10+ */
    background: linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* W3C */
    }
.ctrl-pane .ctrl-key-bottom-row {
    background: -webkit-linear-gradient(top, #fff 0%, #e1e1e3 2%, #d1d1d4 50%, #bebec3 98%, #838387 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fff 0%, #e1e1e3 2%, #d1d1d4 50%, #bebec3 98%, #838387 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fff 0%, #e1e1e3 2%, #d1d1d4 50%, #bebec3 98%, #838387 100%);
    /* IE10+ */
    background: linear-gradient(top, #fff 0%, #e1e1e3 2%, #d1d1d4 50%, #bebec3 98%, #838387 100%);
    /* W3C */
    }
.ctrl-pane .up-position .fn-key-top-row {
    color: #333;
    background: #fff;
    /* Old browsers */
    background: -webkit-linear-gradient(top, #fff 0%, #f7f7f7 2%, #dcdde3 96%, #999 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fff 0%, #f7f7f7 2%, #dcdde3 96%, #999 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fff 0%, #f7f7f7 2%, #dcdde3 96%, #999 100%);
    /* IE10+ */
    background: linear-gradient(top, #fff 0%, #f7f7f7 2%, #dcdde3 96%, #999 100%);
    /* W3C */
    }
.ctrl-pane .up-position .fn-key-bottom-row {
    color: #333;
    background: #fff;
    /* Old browsers */
    background: -webkit-linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* IE10+ */
    background: linear-gradient(top, #fff 0%, #f3f5fb 2%, #d2d2d8 98%, #999 100%);
    /* W3C */
    }
.ctrl-pane .down-position .fn-key-top-row {
    color: #333;
    background: #fff;
    /* Old browsers */
    background: -webkit-linear-gradient(top, #fff 0%, #e1e1e3 4%, #d1d1d4 45%, #b7b8bd 98%, #838387 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fff 0%, #e1e1e3 4%, #d1d1d4 45%, #b7b8bd 98%, #838387 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fff 0%, #e1e1e3 4%, #d1d1d4 45%, #b7b8bd 98%, #838387 100%);
    /* IE10+ */
    background: linear-gradient(top, #fff 0%, #e1e1e3 4%, #d1d1d4 45%, #b7b8bd 98%, #838387 100%);
    /* W3C */
    }
.ctrl-pane .down-position .fn-key-bottom-row {
    color: #333;
    background: #fff;
    /* Old browsers */
    background: -webkit-linear-gradient(top, #fff 0%, #d9dadd 4%, #c8c8cd 45%, #b0b0b7 98%, #838387 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fff 0%, #d9dadd 4%, #c8c8cd 45%, #b0b0b7 98%, #838387 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fff 0%, #d9dadd 4%, #c8c8cd 45%, #b0b0b7 98%, #838387 100%);
    /* IE10+ */
    background: linear-gradient(top, #fff 0%, #d9dadd 4%, #c8c8cd 45%, #b0b0b7 98%, #838387 100%);
    /* W3C */
    }
.ctrl-pane .fn-key-top-row {
    margin: 12px 6px 6px 6px
    }
.ctrl-pane .border-key-top-left .fn-key-top-row {
    margin: 12px 6px 6px 12px
    }
.ctrl-pane .border-key-top-right .fn-key-top-row {
    margin: 12px 12px 6px 6px
    }
.ctrl-pane .fn-key-bottom-row {
    margin: 5px 6px 12px 6px
    }
.ctrl-pane .border-key-bottom-left .fn-key-bottom-row {
    margin: 5px 6px 12px 12px
    }
.ctrl-pane .border-key-bottom-right .fn-key-bottom-row {
    margin: 5px 12px 12px 6px
    }
.ctrl-pane .ctrl-key-top-row:active, .ctrl-pane .fn-key-top-row:active, .ctrl-pane .ctrl-key-bottom-row:active, .ctrl-pane .fn-key-bottom-row:active {
    background: #bbb;
    background: -webkit-linear-gradient(bottom, #888 25%, #CCC 68%);
    background: -ms-linear-gradient(bottom, #888 25%, #CCC 68%);
    background: -o-linear-gradient(bottom, #888 25%, #CCC 68%);
    background: linear-gradient(bottom, #888 25%, #CCC 68%)
    }
.ctrl-pane .ctrl-key-top-row div, .ctrl-pane .ctrl-key-bottom-row div, .ctrl-pane .fn-key-top-row div, .ctrl-pane .fn-key-bottom-row div {
    width: 100%;
    text-align: center;
    padding-top: 17px;
    overflow-x: hidden
    }
/* Highlight selected modifier key */
.ctrl-pane .ab-modifier-key-down {
    color: #4D8DFF
    }
.ctrl-pane .baseKey img {
    /* use .touch-sprite for image */
    background-repeat: no-repeat;
    width: 57px;
    height: 57px;
    border: 0;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px
    }
.ctrl-pane .baseKey .right-arrow {
    background-position: -242px -182px
    }
.ctrl-pane .baseKey .left-arrow {
    background-position: -126px -182px
    }
.ctrl-pane .baseKey .up-arrow {
    background-position: -299px -182px
    }
.ctrl-pane .baseKey .down-arrow {
    background-position: -183px -182px
    }
.ctrl-pane .baseKey .more-keys {
    background-position: -10px -182px
    }
/* Ctrl - pane flip transition. */
.ctrl-pane.flip-container {
    perspective: 1000;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000
    }
/* flip the ctrl-pane when this class toggles. */
.flip-container.perform-flip .flipper {
    transform: rotatey(180deg);
    -webkit-transform: rotatey(180deg);
    -moz-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg)
    }
/* flip speed goes here */
.flip-container .flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -ms-transition: 0.6s;
    -ms-transform-style: preserve-3d;
    position: relative
    }
/* hide back of pane during swap */
.flip-container .front, .flip-container .back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0
    }
/* front pane, placed above back */
.flip-container .front {
    z-index: 200
    }
/* back, initially hidden pane */
.flip-container .back {
    transform: rotatey(180deg);
    -webkit-transform: rotatey(180deg);
    -moz-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg)
    }
#fnMasterKey {
    letter-spacing: -1px
    }
/*********************************************************
 * Copyright (C) 2015-2022 VMware, Inc. All rights reserved.
 *********************************************************/
html, body {
    height: 100%
    }
html, body {
    overflow-y: auto
    }
.overflowBody {
    overflow: auto
    }
body {
    width: 100%;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 12px;
    background-color: #eaeaea
    }
.ng-hide {
    display: none !important
    }
.desktopBackground {
    background-color: #DCDCDC
    }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Open Sans", Helvetica, Arial, sans-serif
    }
h1, h2, h3 {
    margin-top: 10px
    }
h3, .h3 {
    font-size: 18px
    }
h3 small, .h3 small, h3 .small {
    color: #333;
    font-size: 14px
    }
a {
    cursor: pointer
    }
#canvas {
    display: none
    }
#video {
    display: none
    }
#certFrame {
    height: 100%;
    width: 100%;
    border: none
    }
#ws1Frame {
    height: 100%;
    width: 100%;
    border: none
    }
#printPDF {
    height: 0;
    width: 0;
    border: none
    }
.login-bg {
    text-align: center;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-image: url(icons-20571149/bg_image.jpg);
    min-height: 900px
    }
.login-bg .container {
    margin: 0 auto;
    padding: 0
    }
.ui-multi-line {
    display: block;
    white-space: pre-wrap;
    font-weight: normal
    }
.ui-multi-line-margin {
    margin-left: 30px
    }
.ui-auto-wrap {
    word-wrap: break-word
    }
.ui-page {
    width: 100%
    }
.ui-full-height {
    height: 100%
    }
.ui-disabled, .ui-disabled a {
    cursor: default !important;
    pointer-events: none;
    opacity: 0.6
    }
.ui-pattern {
    height: 100px;
    margin: 0 auto;
    width: 100px;
    background-size: 100px 100px;
    background: url(icons-20571149/horizon-icon.svg) no-repeat
    }
.ui-view-logo {
    display: inline-block;
    background: url(icons-20571149/logo-vmware-horizon.png) no-repeat;
    width: 160px;
    height: 20px
    }
#header-container .container {
    width: 940px;
    padding: 0;
    margin-bottom: 56px
    }
#header-container {
    position: relative
    }
#header-container .first-item {
    margin-left: 0
    }
#header-container .container .header-buttons {
    width: 235px;
    float: right
    }
#header-container .navbar-header {
    width: 170px;
    height: 40px;
    float: left
    }
.ui-header-bottom-up {
    height: 1px;
    background-color: #c0c0c0
    }
.ui-header-bottom-down {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.28)
    }
.ui-navbar-links > ul > li {
    float: left;
    background-color: #f5f5f5;
    border: 2px solid #f5f5f5;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    margin-left: 8px;
    height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 8px
    }
.ui-navbar-links > ul > li > button {
    height: 40px;
    width: 40px;
    padding: 0;
    margin-left: -2px;
    margin-top: -2px;
    text-indent: -100px;
    font-size: 0;
    overflow: hidden;
    border: none
    }
.ui-navbar-links > ul > li:focus {
    outline: none;
    border: 2px solid #249bd5
    }
.ui-navbar-links > ul > li:hover {
    border: 2px solid #eee
    }
.ui-center-div {
    width: 80%;
    height: 100%
    }
.ui-center-div-inner {
    text-align: center;
    height: 104px;
    width: 104px;
    background-color: #FFF;
    border-radius: 8px;
    border: 2px solid #F2F2F2
    }
.ui-center-div-inner:hover {
    border: 2px solid #0095d3
    }
.ui-center-panel {
    position: relative;
    margin: 0 auto;
    width: 440px;
    height: 560px;
    padding: 57px 73px 80px 72px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 40px
    }
.ui-center-panel-change-password {
    height: 689px
    }
.icon-view-14 {
    width: 14px;
    height: 14px
    }
.ui-panel-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 10px 20px;
    background-color: #d9d9d9;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#c9c9c9));
    background-image: -webkit-linear-gradient(#e9e9e9, #c9c9c9);
    background-image: -moz-linear-gradient(#e9e9e9, #c9c9c9);
    background-image: -ms-linear-gradient(#e9e9e9, #c9c9c9);
    background-image: -o-linear-gradient(#e9e9e9, #c9c9c9);
    background-image: linear-gradient(#e9e9e9, #c0c0c9);
    border-bottom: 1px solid #ccc;
    text-align: center;
    color: #000
    }
.ui-panel-header h3 {
    margin: 0
    }
.ui-panel-header-bottom-up {
    height: 1px;
    background-color: #1d90d8
    }
.ui-panel-header-bottom-down {
    height: 1px;
    background-color: #d1d1d1
    }
.ui-panel-content {
    width: 295px;
    margin-bottom: 32px;
    margin-top: 64px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif
    }
.ui-panel-content h3 {
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 15px
    }
.pin-change-prompt {
    position: absolute;
    width: 295px;
    margin-top: -38px !important
    }
.ui-panel-content .alert {
    background: none;
    border: none;
    font-size: 12px;
    color: #DE140F;
    text-align: left;
    padding: 0;
    margin: 0;
    height: 16px;
    position: absolute;
    font-family: "SFProText-Regular", Helvetica, Arial, sans-serif
    }
.ui-panel-content .file-association-warning-server {
    position: absolute;
    margin-top: -20px
    }
.ui-panel-content .alert .error {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #DE140F;
    margin-right: 10px;
    margin-bottom: -5px;
    background: url(icons-20571149/icon_error.svg);
    margin-left: -30px
    }
.ui-form-group {
    margin-bottom: 20px
    }
.ui-col-sm-4 {
    width: 26%
    }
.ui-col-sm-7 {
    width: 65%
    }
.ui-col-sm-8 {
    width: 74%
    }
.ui-host-title {
    background: url(icons-20571149/security_good.png) no-repeat;
    padding-left: 30px;
    margin-bottom: 0 !important
    }
.ui-corner-all {
    border-radius: 6px
    }
.ui-corner-top {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
    }
.ui-corner-bottom {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
    }
.ui-none-border {
    border: 0 !important
    }
.ui-desktop-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    margin-left: -27.5px;
    margin-right: -27.5px
    }
.ui-desktop-list > li {
    display: inline-block;
    margin: 0 27.5px;
    vertical-align: top;
    margin-bottom: 30px
    }
.ui-desktop-list > li:focus {
    outline: 0
    }
.ui-desktop-block {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 20em;
    border: 15px solid #efefef;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    background-color: #efefef
    }
.ui-desktop-content {
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0
    }
.ui-desktop-icon {
    width: 58px;
    height: 58px;
    display: block;
    margin: 0 auto;
    position: relative;
    margin-bottom: 18px
    }
.ui-desktop-footer {
    border: 1px solid #999;
    border-top: none;
    background: #e0e0e0;
    color: #333;
    font-weight: bold;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#c0c0c0));
    background-image: -webkit-linear-gradient(#e0e0e0, #c0c0c0);
    background-image: -moz-linear-gradient(#e0e0e0, #c0c0c0);
    background-image: -ms-linear-gradient(#e0e0e0, #c0c0c0);
    background-image: -o-linear-gradient(#e0e0e0, #c0c0c0);
    background-image: linear-gradient(#e0e0e0, #c0c0c0)
    }
.favorite-btn {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 5px;
    right: 5px
    }
.favorite-btn a {
    width: 20px;
    height: 20px;
    display: block;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
    }
.selectable {
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text
    }
.favorite-on {
    background: url(icons-20571149/icl_fav_on.svg) no-repeat;
    border: none;
    width: 20px;
    height: 20px
    }
.favorite-off {
    background: url(icons-20571149/icl_fav.svg) no-repeat;
    border: none;
    width: 20px;
    height: 20px
    }
.favorite-off:hover {
    background: url(icons-20571149/icl_fav_hover.svg) no-repeat
    }
.ui-action-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
    border: 0;
    overflow: auto
    }
.ui-action-block {
    width: 50%;
    margin: 0;
    padding: 0;
    border: 0;
    float: left;
    min-height: 1px
    }
.ui-btn {
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 22px 0 0 0
    }
.ui-chrome-server-list .ui-btn {
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0
    }
.ui-btn > p {
    margin: 0;
    color: #333
    }
.ui-btn-a {
    background: #fff;
    font-weight: bold;
    color: #333;
    text-decoration: none
    }
.ui-action-btn {
    display: block;
    text-align: center;
    min-width: 0.75em;
    max-width: 100%;
    padding: 30px 3px 0.5em 3px;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    zoom: 1;
    font-size: 12.5px
    }
.ui-action-left-btn {
    border-right: 1px solid #919191
    }
.ui-action-right-btn {
    border-left: 1px solid #fff
    }
.ui-action-icon {
    position: absolute;
    top: 5px;
    left: 50%;
    margin-left: -9px
    }
.ui-action-text {
    font-weight: bold;
    color: #333;
    text-shadow: 0 1px 1px #fff
    }
.ui-icon-logoff {
    background-image: url(icons-20571149/sprite-navbar-icon.png);
    background-position: 0 -22px;
    width: 20px;
    height: 20px
    }
.ui-icon-reset {
    background-image: url(icons-20571149/sprite-navbar-icon.png);
    background-position: 0 -44px;
    width: 20px;
    height: 20px
    }
.ui-modal-dialog {
    width: 450px
    }
.ui-modal-dialog-footer {
    color: #333;
    text-shadow: 0 1px 0 #eee;
    padding: 20px
    }
.ui-search-div {
    position: relative
    }
.panel-text {
    margin-top: 70px
    }
.ui-search-input {
    padding-left: 22px !important;
    border-radius: 20px !important
    }
.search-bar .search-content .header-clear {
    content: "";
    width: 16px;
    height: 19px;
    background: url(icons-20571149/clear_icon.svg) no-repeat;
    background-size: 16px 17px;
    border: 0;
    z-index: 10;
    position: absolute;
    top: 10px
    }
#header-search::-ms-clear {
    display: none;
    width: 0;
    height: 0
    }
#header-search::-webkit-search-cancel-button {
    -webkit-appearance: none
    }
.ui-home-servers {
    padding: 25px 30px
    }
.ui-disclaimer-text {
    width: 100%;
    word-break: normal !important;
    text-align: justify;
    height: 190px
    }
.form-group > label.error {
    margin-left: 30%;
    margin-top: 2px;
    color: #b94a48
    }
.ui-rsa-title {
    background: url(icons-20571149/rsa.png) no-repeat;
    padding-left: 50px
    }
.ui-rsa-group-addon {
    padding: 6px
    }
.ui-challenge {
    margin-left: 20px
    }
.ui-full-page {
    margin-top: 0;
    padding-bottom: 0
    }
.ui-fade {
    opacity: 0.3
    }
.launch-page .ui-icon-loading {
    z-index: 9999999;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 70px;
    margin-left: -140px;
    margin-top: -105px;
    background: none
    }
.ui-icon-loading {
    z-index: 9999999;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
    background: url(icons-20571149/ajax-loader.gif)
    }
.ui-icon-loading-container .ui-icon-loading {
    position: relative;
    top: 130px;
    left: 0;
    margin: 0 auto
    }
.ui-widget-home .ui-icon-loading {
    z-index: 0
    }
.ui-icon-loading-container {
    position: relative
    }
.ui-browser-content {
    margin: 50px auto 20px;
    width: 80%
    }
.ui-browser-warning {
    color: #333;
    margin-top: 100px;
    text-align: left
    }
.ui-center-panel .ui-warning-tip {
    margin-top: 100px
    }
.ui-center-panel .ui-browser-warning-unsupport {
    margin-top: 40px
    }
.ui-browser-warning p {
    color: #5E5E5E;
    font-size: 15px
    }
.ui-browser-warning .top-warning {
    margin-bottom: 25px
    }
.ui-warning-logo {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 20px;
    background: url(icons-20571149/icon_error.svg)
    }
.ui-browser-warning a:hover {
    color: #333;
    text-decoration: underline
    }
.ui-browser-table {
    margin-top: 15px
    }
.ui-browser-table, .ui-browser-table th, .ui-browser-table td {
    border: solid 1px #aaa;
    border-collapse: collapse
    }
.ui-browser-table td {
    width: 100px;
    padding: 10px 0;
    text-align: center
    }
.ui-browser-table th {
    color: white;
    text-shadow: none;
    padding: 10px 0;
    background-color: #222;
    text-align: center
    }
.ui-browser-warning-title {
    background: url(icons-20571149/warning48x.png) no-repeat;
    padding: 0 10px 0 72px
    }
.ui-browser-warning-message {
    margin-top: 10px
    }
.ui-browser-warning-recommendation {
    margin-top: 50px;
    text-align: center
    }
.ui-list-item {
    display: inline-block;
    margin: 1em 6em;
    text-align: center;
    text-decoration: none;
    border: 15px solid #efefef;
    background-color: #efefef;
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5)
    }
.ui-list-block {
    display: inline-block;
    padding: 1em 3em;
    background: #fff;
    font-weight: bold;
    color: #333;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfdfdf));
    background-image: -webkit-linear-gradient(#fff, #dfdfdf);
    background-image: -moz-linear-gradient(#fff, #dfdfdf);
    background-image: -ms-linear-gradient(#fff, #dfdfdf);
    background-image: -o-linear-gradient(#fff, #dfdfdf);
    background-image: linear-gradient(#fff, #dfdfdf);
    text-decoration: none;
    border: 1px solid #ccc
    }
.ui-align-center {
    margin: 0 auto;
    text-align: center
    }
.ui-native-client {
    width: 192px;
    height: 192px;
    margin-bottom: 1em;
    background: url(icons-20571149/download-icon.png)
    }
.ui-list-title {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3)
    }
.ui-text-unwarp {
    width: 193px;
    word-wrap: break-word;
    word-break: normal;
    padding-bottom: 8px
    }
.ui-browser-mobile .ui-text-unwarp {
    width: 250px
    }
.ui-browser-warning-recommendation a {
    display: block;
    font-size: 18px;
    color: #2390d0
    }
.ui-browser-mobile .ui-browser-warning-recommendation a {
    font-size: 2em
    }
.ui-browser-cookie {
    margin-top: 10px;
    border-top: 1px solid #aaa;
    padding-top: 10px
    }
.ui-download-btn {
    margin-top: 50px
    }
.ui-center-block {
    width: 192px;
    margin: 0 auto;
    margin-top: 120px
    }
.ui-content-area {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: auto
    }
/*Add this attr for chrome client, bug 2854466*/
.overflowBody .ui-content-area {
    position: relative;
    overflow: scroll
    }
.ui-modal-dialog-footer .btn {
    padding: 0 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 2px;
    font-weight: bold
    }
.ui-header-account {
    font-weight: bold;
    color: #666;
    border-right: 1px solid #8f8f8f;
    padding-right: 15px;
    line-height: 25px;
    margin-top: 15px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis
    }
.ui-server-icon {
    width: 192px;
    height: 192px
    }
.ui-icon-check, .ui-icon-cross {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: 1px;
    line-height: 14px;
    vertical-align: text-top;
    background-image: url(icons-20571149/glyphicons-halflings.png);
    background-position: 14px 14px;
    background-repeat: no-repeat
    }
.ui-icon-check {
    background-position: -288px 0
    }
.ui-icon-cross {
    background-position: -312px 0
    }
.ui-connect-text {
    font-size: 16px
    }
.ui-desktop-highlight {
    background-color: #249bd5;
    border: 15px solid #249bd5
    }
p.ui-desktop-name {
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-overflow: ellipsis;
    font-family: "SFProText-Semibold", Helvetica, Arial, sans-serif;
    color: #000;
    letter-spacing: 0;
    cursor: pointer
    }
.ui-changepwd-error {
    margin-left: 35% !important
    }
.ui-brand {
    cursor: default
    }
.ui-chrome-server-list {
    vertical-align: top;
    text-align: center;
    height: 178px;
    width: 192px
    }
.ui-chrome-server-icon {
    width: 75px;
    height: 80px;
    margin-top: 10px
    }
.ui-chrome-add-server-icon {
    width: 100px;
    height: 100px;
    border-radius: 8px
    }
.ui-chrome-server-div {
    margin-left: 15px;
    width: 104px;
    height: 104px
    }
.ui-chrome-server-text {
    width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 15px
    }
.ui-head-indent {
    text-indent: 30px
    }
.ui-table {
    width: 90%;
    border: 0;
    border-collapse: collapse
    }
.ui-table td {
    padding: 10px
    }
.ui-table-label {
    width: 30%;
    text-align: right
    }
.ui-table-input {
    width: 60%
    }
.ui-table label.error {
    color: #b94a48
    }
.ui-nav-caret {
    border-top-color: #767676 !important;
    border-bottom-color: #767676 !important
    }
.modeless.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out
    }
.modeless.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
    }
.ui-hide-scroll {
    overflow-y: auto
    }
.ui-modeless-dialog {
    width: 500px;
    height: 300px;
    margin-top: 15%
    }
.ui-modeless-content {
    position: relative;
    left: -250px;
    margin-top: -150px
    }
.ui-modeless-dialog-header {
    background: #5e87b0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#6facd5), to(#497bae));
    background-image: -webkit-linear-gradient(#6facd5, #497bae);
    background-image: -moz-linear-gradient(#6facd5, #497bae);
    background-image: -ms-linear-gradient(#6facd5, #497bae);
    background-image: -o-linear-gradient(#6facd5, #497bae);
    background-image: linear-gradient(#6facd5, #497bae)
    }
#closeAboutBtn {
    color: white
    }
#closeAboutBtn:hover {
    text-decoration: none
    }
#aboutContent {
    padding: 20px
    }
#aboutContent p {
    font-weight: bold
    }
#aboutContent span {
    font-size: 14px;
    font-weight: bold
    }
.ui-hide {
    display: none
    }
#loginForm .ui-hide {
    display: none
    }
.ui-vertical-scroll {
    overflow-y: auto
    }
.ui-server-host {
    padding-left: 5px;
    color: #464646;
    font-weight: bold
    }
.ui-chrome-footer {
    position: fixed;
    bottom: 0;
    width: 100%
    }
.ui-register-link {
    font-size: 12px;
    color: #428BCA;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    padding-left: 10%
    }
.ui-dropdown-submenu {
    position: relative
    }
.search-content {
    position: relative
    }
.ui-dropdown-submenu > .dropdown-menu {
    top: 0;
    right: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0 6px 6px 6px
    }
.ui-dropdown-submenu:hover > .dropdown-menu {
    display: block
    }
.ui-dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px
    }
.ui-dropdown-submenu:hover > a:after {
    border-left-color: #fff
    }
.ui-dropdown-submenu .pull-left {
    float: none
    }
.ui-dropdown-submenu .pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    border-radius: 6px 0 6px 6px
    }
.navbar-right .ui-show-all-on-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left
    }
.navbar-right .ui-show-all-off-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left
    }
.navbar-right .ui-show-fav-on-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left
    }
.navbar-right .ui-show-fav-off-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left
    }
.navbar-right .ui-help-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left
    }
.navbar-right .ui-logout-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left
    }
.navbar-right .ui-setting-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left
    }
.ui-btn .desktop-auto-start {
    width: 28px;
    height: 29px;
    display: block;
    background-image: url(icons-20571149/autostart-overlay.png);
    position: absolute;
    bottom: 0;
    right: 0
    }
.ui-desktop-list-line {
    height: 1px;
    background-color: #d8d8d8;
    margin-bottom: 33px
    }
.search-bar {
    height: 40px;
    border-radius: 4px;
    width: 350px;
    float: left;
    margin-left: 118px;
    background-color: #fff;
    border: 1px solid #868686;
    overflow: hidden
    }
.search-bar:focus {
    border: 1px solid #249bd5
    }
.search-bar .search-icon {
    width: 14px;
    height: 14px;
    display: block;
    float: left;
    margin-top: 13px;
    margin-left: 30px;
    margin-right: 9px
    }
.search-bar .ui-search-icon {
    width: 14px;
    height: 14px;
    display: block
    }
.search-bar .search-clear-icon {
    width: 16px;
    height: 16px;
    background: url(icons-20571149/clear_field@2x.svg);
    background-size: 16px 16px;
    display: block;
    position: absolute;
    top: 10px;
    left: 92%;
    cursor: pointer
    }
.searchBlur {
    border: 1px solid #868686
    }
.searchFocus {
    border: 2px solid #0055cd
    }
.search-bar .search-input {
    background-color: #fff;
    font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
    height: 40px;
    line-height: 40px;
    color: #314351;
    border: none;
    font-size: 15px;
    -webkit-appearance: none;
    letter-spacing: -0.24px;
    width: 200px
    }
.search-input:focus {
    outline: 0
    }
.navbar-brand {
    display: block;
    width: 161px;
    height: 40px
    }
.navbar-brand:focus {
    outline: 0
    }
.ui-horizon-logo {
    width: 161px;
    height: 40px;
    display: block;
    margin: 0 auto;
    position: relative
    }
.ui-desktop-corner {
    border-radius: 8px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
    border: 2px solid white;
    width: 105px;
    height: 103px
    }
.ui-desktop-corner:hover {
    border: 2px solid #0095d3;
    text-decoration: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.35)
    }
.ui-desktop-list .highlight {
    border: 2px solid #0095d3
    }
.navbar-right a {
    height: 30px
    }
.ui-center-panel .change-password-form {
    position: absolute;
    width: 295px;
    height: 268px;
    top: 200px
    }
.ui-center-panel .change-password-form .form-control {
    color: #000;
    letter-spacing: -0.41px;
    line-height: 22px;
    margin-top: 16px;
    font-family: "SFProText-Semibold", Helvetica, Arial, sans-serif;
    height: 40px
    }
.ui-panel-content .alert-change-password {
    top: 200px
    }
.ui-center-panel .form-control {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    height: 55px;
    border-bottom: 1px solid #77757D;
    width: 100%;
    display: block;
    font-size: 17px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    padding-top: 22.4px;
    margin-top: 16px;
    letter-spacing: -0.41px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
    }
.ui-center-panel .reauth-form-control {
    margin-top: 80px
    }
.ui-center-panel .re-auth {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    height: 55px;
    border-bottom: 1px solid #CDD0D3;
    width: 100%;
    display: block;
    font-size: 17px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    padding-top: 22.4px;
    margin-top: 16px;
    letter-spacing: -0.41px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 100px
    }
.ui-center-panel .form-control::-webkit-input-placeholder {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #727272;
    letter-spacing: -0.41px;
    line-height: 22px
    }
.ui-center-panel .form-control::-moz-placeholder {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #727272;
    letter-spacing: -0.41px;
    line-height: 22px
    }
.ui-center-panel .form-control::-ms-input-placeholder {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #727272;
    letter-spacing: -0.41px;
    line-height: 22px
    }
.ui-center-panel .form-control:-ms-input-placeholder {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #727272;
    letter-spacing: -0.41px;
    line-height: 22px
    }
.ui-center-panel .form-control:-moz-placeholder {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #727272;
    letter-spacing: -0.41px;
    line-height: 22px
    }
.ui-center-panel .form-control:focus {
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #5e5e5e
    }
#username:disabled {
    cursor: not-allowed
    }
#username:disabled {
    opacity: 0.35
    }
#securIDUsername:disabled {
    opacity: 0.35
    }
.ui-center-panel .form-control-error {
    border-bottom: 1px solid #c84a54
    }
.ui-text-left-align {
    text-align: left;
    font-size: 15px;
    color: #5E5E5E;
    line-height: 20px
    }
.ui-password-dismatch-text {
    color: rgb(185, 74, 72);
    margin-top: 5px
    }
.container .ui-center-panel .bottom-input {
    margin-bottom: 10px
    }
.ui-pattern-logo {
    height: 112px;
    margin: 0 auto;
    width: 180px;
    margin-bottom: 32px
    }
.form-control:focus {
    z-index: 2;
    position: relative
    }
.form-control {
    padding: 0
    }
.form-control::-webkit-input-placeholder {
    color: #acacac;
    font-weight: lighter
    }
.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #acacac;
    font-weight: lighter
    }
.form-control:-ms-input-placeholder {
    color: #acacac;
    font-weight: lighter
    }
.form-control:focus {
    border: 1px solid #2aa3dc;
    box-shadow: none
    }
.ui-panel-footer {
    position: absolute;
    padding: 0 73px 30px 72px;
    margin-left: -72px;
    width: 440px;
    top: 439px
    }
.ui-panel-footer-change-password {
    top: 450px
    }
.ui-panel-footer .btn {
    width: 100%;
    height: 41px;
    padding: 0
    }
.ui-panel-footer .btn-default {
    color: white;
    background-color: #bfbfbf;
    border: none;
    font-size: 17px
    }
.ui-panel-footer p {
    position: relative;
    font-size: 16px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    color: #000;
    letter-spacing: 0;
    text-align: center;
    opacity: 1;
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
    height: 22px
    }
.ui-input-group {
    position: relative
    }
.ui-input-group-textfield-addon {
    width: 100%;
    height: 100%;
    white-space: nowrap;
    vertical-align: middle;
    z-index: 1
    }
.ui-icon-rsa {
    display: inline-block;
    margin-right: 10px;
    height: 20px;
    width: 40px;
    margin-bottom: -5px;
    background: url(icons-20571149/rsa.png) no-repeat
    }
.ui-login-hint-text {
    margin: 15px 0 7px;
    padding-left: 2px;
    line-height: 20px;
    color: #5e5e5e;
    font-size: 13px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    text-align: left;
    height: 41px;
    padding-top: 10px
    }
.ui-login-hint-text-radius {
    margin: 15px 0 7px;
    padding-left: 2px;
    line-height: 20px;
    color: #5e5e5e;
    font-size: 13px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    text-align: left;
    height: 55px;
    word-wrap: break-word
    }
.ui-login-hint-text-change-password {
    width: 248px;
    height: 42px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #5E5E5E;
    text-align: center;
    position: absolute;
    top: 170px;
    padding: 0;
    margin-left: 26px;
    margin-bottom: 0;
    margin-top: 0
    }
.ngdialog-content .ui-login-hint-text {
    width: 248px;
    height: 42px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: #5E5E5E;
    text-align: center;
    position: absolute;
    top: 170px;
    padding: 0;
    margin-top: 40px;
    margin-left: 26px;
    margin-bottom: 0
    }
.ngdialog-content .ui-reauth-login-hint-text {
    width: 300px;
    height: 42px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #5E5E5E;
    top: 170px;
    padding: 0;
    margin-bottom: 0;
    line-height: 25px
    }
.navbar .container {
    margin-top: 56px;
    height: 45px;
    display: block
    }
#settingDialog .modal-content {
    width: 450px
    }
#settingDialog .items-list {
    background-color: #eee;
    width: 223px;
    float: left;
    padding: 16px;
    padding-right: 0;
    height: 100%;
    border-right: 1px solid #e5e5e5
    }
.set-application {
    padding: 20px
    }
.set-content {
    font-size: 15px
    }
.set-warning-content {
    font-size: 12px;
    font-weight: bold
    }
.set-content .check-auto-run {
    float: right
    }
#settingDialog .modal-body {
    padding: 0
    }
.reset-btn {
    float: right;
    background-color: #249BD5;
    font-size: 14px;
    border: none;
    color: white;
    padding: 0 32px;
    height: 32px;
    border-radius: 2px;
    font-weight: bold
    }
.reset-btn:hover {
    background-color: #3da9de
    }
.set-content-text {
    width: 248px;
    float: left;
    color: #363636
    }
.high-resolution {
    display: none
    }
.setting-switch {
    border-bottom: 1px solid #f1f1f1;
    padding: 20px 0;
    margin: 0 20px
    }
.setting-switch .check-btn {
    width: 48px;
    height: 24px;
    display: inline-block;
    float: right;
    border-radius: 12px;
    margin: 0 8px;
    background-color: #cccccb
    }
.setting-switch .check-btn:hover {
    cursor: pointer
    }
.check-btn .toggle-btn {
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background-color: white;
    margin: 1px
    }
.setting-container .setting-switch .highlight {
    background-color: #9bbf3b
    }
.setting-switch .highlight .toggle-btn {
    float: right
    }
.set-application .disable {
    opacity: 0.5;
    cursor: default
    }
.setting-container .bold-word {
    font-size: 14px;
    font-weight: bold
    }
.toggle-container {
    float: right;
    margin-left: 5px
    }
.high-resolution-title {
    float: left;
    width: 200px
    }
.setting-switch .show-word {
    display: block;
    float: right;
    font-size: 12px;
    color: #363636;
    font-weight: bold;
    line-height: 24px
    }
.btn-primary {
    background-color: #249BD5;
    border: none
    }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    background-color: #3da9de
    }
.btn-default {
    background-color: #696a6f;
    color: white;
    border: none
    }
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
    color: #fff;
    background-color: #7a7b80
    }
.modal-body {
    font-size: 15px;
    color: #363636;
    padding: 0
    }
.modal-footer {
    border-top: none;
    border-top: 1px solid #e5e5e5;
    margin-top: 0
    }
.modal-title {
    text-align: left;
    color: #363636;
    font-size: 16px;
    font-weight: bold
    }
.modal-header {
    border-bottom: 1px solid #e2e2e2;
    background-color: #eee;
    padding: 20px;
    text-align: left;
    color: #363636;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px
    }
.close-btn {
    background: url(icons-20571149/icon-close.png) 8px 8px no-repeat;
    background-size: 15px 15px;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 5px;
    left: 10px
    }
.modal-content .help span {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px
    }
.modal-content .help {
    padding: 20px;
    border-bottom: 1px solid #e2e2e2
    }
.modal-content .help p {
    width: 370px;
    float: left;
    margin-right: 20px;
    color: #363636
    }
#aboutDialog .modal-body {
    padding: 0
    }
#aboutDialog .ui-modeless-dialog {
    width: 620px;
    margin-top: 5%
    }
.help-block .help-button {
    display: block;
    float: right;
    width: 162px
    }
.help .btn-primary {
    border-radius: 2px;
    color: white
    }
#aboutContent a {
    color: #2a6496;
    text-decoration: none
    }
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: searchfield-cancel-button
    }
.ui-desktop-corner .replace-icon {
    display: block;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEJFQUIxNTVBMkU0MTFFNDkwMTRBNkIwMkUzMTZCQjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEJFQUIxNTZBMkU0MTFFNDkwMTRBNkIwMkUzMTZCQjEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0QkVBQjE1M0EyRTQxMUU0OTAxNEE2QjAyRTMxNkJCMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0QkVBQjE1NEEyRTQxMUU0OTAxNEE2QjAyRTMxNkJCMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Psb69N4AADw7SURBVHja5L1pdxtn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") no-repeat;
    background-size: 48px 48px;
    padding-left: 48px;
    overflow: hidden
    }
.ui-desktop-corner .default-icon {
    display: block;
    background: url(icons-20571149/default_app_icon.svg) no-repeat;
    background-size: 48px 48px;
    padding-left: 48px;
    overflow: hidden
    }
.no-favorites {
    height: 170px;
    width: 170px;
    background: url(icons-20571149/favorite-watermark.png) no-repeat;
    margin: 180px auto 33px
    }
.no-favorites-word {
    text-align: center;
    font-size: 17px;
    color: #314351
    }
.ui-panel-footer .progress-circle {
    padding-left: 5px
    }
.ui-panel-footer .progress-circle img {
    height: 26px;
    width: 26px;
    vertical-align: middle
    }
.ui-panel-footer .btn-primary[disabled], .ui-panel-footer .btn-primary[disabled]:hover {
    background-color: #A4D28B;
    border-radius: 4px;
    width: 295px;
    height: 41px
    }
.ui-panel-footer .btn-primary {
    background-color: #85C81A;
    border-radius: 4px;
    font-size: 16px;
    color: #000;
    width: 295px;
    height: 41px
    }
.ui-center-panel .btn-default, .ui-disclaimer-panel .btn-default {
    background: none;
    font-size: 15px;
    width: 295px;
    height: 32px;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 24px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #3F5564;
    text-align: center;
    margin-top: 24px
    }
.ui-panel-footer .btn-primary:focus, .ui-center-panel .btn-default:focus, .ui-disclaimer-panel .btn-default:focus {
    box-shadow: 0 0 0 0.2rem #2D6199
    }
.ui-panel-footer .btn-primary:hover {
    background-color: #C7E59C
    }
.container .ui-panel-footer .btnPrimaryWaiting, .container .ui-panel-footer .btnPrimaryWaiting[disabled] {
    background-color: #85C81A;
    font-size: 16px;
    color: #000;
    border-radius: 4px;
    opacity: 1
    }
.container .ui-panel-footer .btnDefaultWaiting {
    background: none;
    font-size: 15px;
    width: 280px;
    height: 32px;
    line-height: 20px;
    margin: 0 auto;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #3F5564;
    margin-top: 65px
    }
.ngdialog-content .ui-panel-footer .dialogBtnDefaultWaiting {
    background: none;
    font-size: 15px;
    width: 280px;
    height: 32px;
    line-height: 20px;
    margin: 0 auto;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #3F5564;
    margin-top: 65px
    }
.loginLoadingText {
    width: 280px;
    height: 32px;
    font-size: 15px;
    color: #3F5564;
    text-align: center;
    margin: 0 auto;
    margin-top: 96px;
    margin-bottom: 6px
    }
.loginLoadingText:focus {
    border: none;
    outline: none;
    box-shadow: none
    }
.loginLoadingImage {
    overflow: hidden;
    display: block;
    width: 280px;
    height: 2px;
    margin: 0 auto;
    background-image: linear-gradient(to right, #85C81A, #D8D8D8)
    }
.loginLoadingTextForWaiting {
    width: 280px;
    height: 32px;
    font-size: 15px;
    color: #3F5564;
    text-align: center;
    margin: 0 auto;
    margin-top: 96px;
    margin-bottom: 6px
    }
.file-association-loading {
    font-size: 15px;
    color: #3F5564;
    text-align: center;
    margin: 0 auto;
    margin-top: 206px;
    margin-bottom: 6px
    }
.cancelLoadingText {
    width: 280px;
    height: 32px;
    font-size: 15px;
    color: #3F5564;
    text-align: center;
    margin: 0 auto;
    margin-top: 96px;
    margin-bottom: 6px
    }
.cancelLoadingText:focus {
    border: none;
    outline: none;
    box-shadow: none
    }
#domain-button[disabled] {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed
    }
.loginLoadingImageAnimation {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    margin: 0 auto;
    background-image: linear-gradient(to right, #B1CD86, #D8D8D8);
    -webkit-animation: move-right 1.5s infinite;
    /* Safari 4+ */
    -moz-animation: move-right 1.5s infinite;
    /* Fx 5+ */
    -o-animation: move-right 1.5s infinite;
    /* Opera 12+ */
    animation: move-right 1.5s infinite;
    /* IE 10+, Fx 29+ */
    animation-timing-function: linear;
    opacity: 0.7
    }
@-webkit-keyframes move-right {
    0% {
        margin-left: 0;
        } 100% {
        margin-left: 280px;
        }
    }
@-moz-keyframes move-right {
    0% {
        margin-left: 0;
        } 100% {
        margin-left: 280px;
        }
    }
@-o-keyframes move-right {
    0% {
        margin-left: 0;
        } 100% {
        margin-left: 280px;
        }
    }
@keyframes move-right {
    0% {
        margin-left: 0;
        } 100% {
        margin-left: 280px;
        }
    }
.desktop-reauth .ui-panel-footer .btnPrimaryWaiting, .desktop-reauth .ui-panel-footer .btnPrimaryWaiting[disabled] {
    background-color: #85C81A;
    font-size: 16px;
    color: #000;
    border-radius: 4px;
    opacity: 1
    }
.ui-panel-content .form-horizontal .active {
    border: 1px solid #2aa3dc;
    border-radius: 4px 4px 0 0
    }
.form-horizontal .focus {
    border: 1px solid #2aa3dc;
    border-radius: 4px
    }
.modal-content {
    border-radius: 2px
    }
#password {
    ime-mode: disabled !important
    }
.bottom-logo {
    width: 83px;
    height: 13px;
    opacity: 100%;
    position: absolute;
    bottom: 30px;
    left: 51%;
    margin-left: -52px;
    background: url(icons-20571149/vmware_logo_footer.svg) no-repeat;
    background-size: 83px 13px;
    background-color: #575451
    }
.phone-bottom-logo {
    display: none
    }
.home-link, .home-link:focus, .home-link:link, .home-link:visited {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #24211E;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 15px;
    display: block;
    text-decoration: none;
    text-align: center;
    width: 440px;
    line-height: 20px
    }
.home-link:focus {
    text-decoration: underline
    }
.phone-home-link-area {
    display: none
    }
.delete-folder {
    width: 12px;
    height: 12px;
    background: url(icons-20571149/icon-close.png) no-repeat;
    background-size: 12px 12px;
    float: right;
    margin-right: 15px;
    margin-top: 10px
    }
@media (max-width: 767px) {
    .navbar .ui-navbar-links {
        position: absolute;
        top: 64px;
        left: 20px
        }
    .navbar .search-bar {
        position: absolute;
        top: 126px;
        width: 268px;
        margin-left: 0
        }
    #header-container .container {
        width: 270px;
        height: 168px;
        position: relative
        }
    .launch-page .container {
        width: 270px;
        padding-left: 0;
        padding-right: 0
        }
    .launch-page .login-bg .container {
        width: 100%
        }
    #header-container .navbar-icon {
        margin-left: 50px
        }
    #header-container .header-buttons {
        float: left
        }
    .ui-desktop-list > li {
        margin-bottom: 17px
        }
    .search-bar .search-input {
        width: 70%
        }
    .ngdialog .ngdialog-content {
        min-width: 375px
        }
    .about-dialog .about-dialog-logo {
        width: 25%;
        background-size: 100% 100px
        }
    }
@media (min-width: 768px) {
    .navbar .ui-navbar-links {
        position: relative
        }
    .container {
        width: 910px
        }
    .launch-page .container {
        width: 590px;
        padding-left: 0;
        padding-right: 0
        }
    #header-container .container {
        width: 704px;
        height: 145px
        }
    .navbar .search-bar {
        position: absolute;
        top: 100px;
        margin-left: 0;
        width: 704px;
        top: 150px
        }
    .search-bar .search-input {
        width: 84%
        }
    }
@media (min-width: 1024px) {
    .navbar .search-bar {
        width: 364px;
        top: 0
        }
    }
.ui-panel-content .domain-select, .ui-panel-content .anonymous-select {
    height: 30.9px;
    background: none;
    line-height: 34px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-top: 30px;
    border-bottom: 1px solid #77757D;
    margin-top: 39px
    }
.ui-panel-content .domain-select:focus, .ui-panel-content .anonymous-select:focus {
    height: 30.9px;
    background: #fff;
    padding-left: 10px;
    line-height: 34px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-top: 39px;
    outline: none;
    border-bottom: 1px solid #545454
    }
.ui-panel-content .domain-select .ui-icon, .ui-panel-content .anonymous-select .ui-icon {
    content: "";
    width: 12px;
    height: 7px;
    position: absolute;
    right: 0;
    bottom: 10px;
    background: url(icons-20571149/dropdown-arrow.png) no-repeat;
    background-size: 12px 7px
    }
.ui-icon-downarrow {
    content: "";
    width: 12px;
    height: 7px;
    position: absolute;
    right: 0;
    bottom: 6px;
    background: url(icons-20571149/dropdown-arrow.png) no-repeat;
    background-size: 12px 7px;
    margin-right: 10px
    }
.ui-selectmenu-option {
    font-size: 12px;
    margin-left: 4px;
    color: rgb(112 122 131);
    position: absolute;
    bottom: -7px;
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
    width: 85%;
    text-overflow: ellipsis
    }
.ui-clear-btn {
    content: "";
    width: 16px;
    height: 17px;
    background: url(icons-20571149/clear_field@2x.svg) no-repeat;
    background-size: 16px 17px;
    position: absolute;
    border: 0;
    z-index: 10;
    font-size: 0
    }
.ui-clear-username-btn {
    top: 265px;
    right: 75px
    }
.ui-clear-password-btn {
    top: 335px;
    right: 75px
    }
.ui-clear-securUsername-btn {
    position: relative;
    float: right;
    margin-top: -25px
    }
.ui-clear-passcode-btn {
    position: relative;
    float: right;
    margin-top: -25px
    }
.ui-clear-securUsername-btn-error {
    top: 240px
    }
.ui-clear-passcode-btn-error {
    top: 310px
    }
.ui-clear-passcode-btn-error-reauth {
    top: 350px
    }
input::-ms-clear {
    display: none;
    width: 0;
    height: 0
    }
input::-ms-reveal {
    display: none;
    width: 0;
    height: 0
    }
input::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    right: 0
    }
.ui-clear-next-token-code-btn {
    top: 364px;
    right: 75px
    }
.ui-clear-next-token-code-btn-re-auth {
    top: 300px;
    right: 75px
    }
.ui-clear-pin1-btn {
    top: 264px;
    right: 75px
    }
.ui-clear-pin2-btn {
    top: 334px;
    right: 75px
    }
.ui-clear-oldpassword-btn {
    top: 90px;
    right: 0
    }
.ui-clear-next-token-btn {
    top: 365px;
    right: 75px
    }
.ui-clear-newpassword-btn {
    top: 145px;
    right: 0
    }
.ui-clear-newpasswordRepeat-btn {
    top: 200px;
    right: 0
    }
.audio-out-device-list {
    width: 62%;
    margin-left: 40%
    }
.ui-selectmenu-menu .ui-menu {
    margin-left: -35px;
    width: 370px;
    padding-top: 24px
    }
.ui-selectmenu-menu .ui-menu {
    box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.25);
    border-radius: 8px
    }
.option-menu {
    width: 188px;
    padding-top: 24px;
    border-radius: 8px;
    margin-top: 34px;
    margin-left: 98%
    }
.option-part {
    cursor: pointer;
    position: absolute;
    border: 1px solid #868686;
    border-radius: 4px;
    width: 63%;
    margin-left: 39%;
    height: 20px;
    margin-top: 6px
    }
.video-option-part {
    cursor: pointer;
    position: absolute;
    border: 1px solid #868686;
    border-radius: 4px;
    width: 53%;
    margin-left: 33%;
    height: 20px;
    margin-top: 6px
    }
.audio-option-part {
    cursor: pointer;
    position: absolute;
    border: 1px solid #868686;
    border-radius: 4px;
    width: 53%;
    margin-left: 33%;
    height: 20px;
    margin-top: 6px
    }
.ui-selectmenu-option-open {
    margin-top: 35px;
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 63%;
    margin-left: 39%;
    margin-top: 26px;
    border-radius: 4px
    }
.ui-video-selectmenu-option-open {
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 100;
    margin-left: 33%;
    margin-top: 26px;
    border-radius: 4px;
    width: 53%;
    top: auto
    }
.ui-audio-selectmenu-option-open {
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 100;
    margin-left: 33%;
    margin-top: 26px;
    border-radius: 4px;
    width: 53%;
    top: auto
    }
.ui-selectmenu-option-closed {
    display: none
    }
.ui-domain-list {
    margin-top: 35px
    }
.ui-anonymous-list {
    padding-top: 35px
    }
.ui-menu .ui-menu-item {
    list-style-image: none;
    padding: 0;
    line-height: 22px;
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
    margin-left: 16px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #000;
    letter-spacing: 0
    }
.ui-menu-option {
    list-style-image: none;
    padding: 0;
    line-height: 30px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    cursor: pointer
    }
.ui-menu-option:hover {
    background-color: rgba(0, 0, 0, 0.08);
    border: none
    }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    background: #f6fbfe;
    border: none;
    border-bottom: 1px solid #cae8f6
    }
.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: 0;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: normal
    }
.domain-select span.ui-selectmenu-text, .anonymous-select span.ui-selectmenu-text {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    padding: 0;
    line-height: 34px;
    font-size: 17px;
    color: #000;
    letter-spacing: -0.41px;
    line-height: 22px;
    padding-bottom: 8.9px
    }
span.ui-selectmenu-text {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    padding: 0;
    line-height: 34px;
    font-size: 17px;
    color: #000;
    letter-spacing: -0.41px;
    line-height: 22px;
    padding-bottom: 8.9px
    }
.ui-select-option {
    font-size: 15px
    }
.ui-panel-content .ui-corner-all {
    border-radius: 4px
    }
.ui-panel-content .ui-corner-top {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
    }
.ui-panel-content .ui-corner-bottom {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
    }
.ui-widget-content {
    background-image: none;
    border: none
    }
.overflow {
    max-height: 200px
    }
.ellipsis {
    overflow: hidden;
    height: 32px;
    line-height: 16px;
    width: 84px;
    margin: 13px 10px 0 10px;
    text-align: center
    }
.ellipsis:before {
    content: "";
    float: left;
    width: 5px;
    height: 32px
    }
.ellipsis > *:first-child {
    float: right;
    width: 100%;
    margin-left: -5px
    }
.ellipsis:after {
    content: "…";
    color: #333;
    font-weight: normal;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    float: right;
    position: relative;
    top: -15px;
    left: 100%;
    width: 2.5em;
    margin-left: -2.5em;
    padding-right: 5px;
    text-align: right;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#eaeaea), color-stop(50%, #eaeaea));
    background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), #eaeaea 50%, #eaeaea);
    background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0), #eaeaea 50%, #eaeaea);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #eaeaea 50%, #eaeaea)
    }
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-state-default .ui-icon {
    background: none;
    /* hack the default background style in jquery-ui-1.11.4.min.css*/
    }
.ui-disclaimer-panel .pre-scrollable {
    white-space: pre-wrap;
    background-color: white;
    font-size: 15px;
    overflow-y: auto;
    border: 1px solid #495A67;
    border-radius: 4px;
    width: 376px;
    height: 206px;
    margin-left: -40px;
    margin-bottom: 32px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    color: #314351;
    letter-spacing: 0;
    line-height: 21px;
    padding: 16px;
    margin-top: -32px;
    word-wrap: break-word
    }
#domain-button, #unauthenticatedUsername {
    width: 100%;
    padding: 0;
    border-radius: 0
    }
#loginForm, #unauthenticatedForm {
    font-size: 17px;
    margin-top: -20px
    }
.ui-selectmenu-menu .ui-menu-item-wrapper {
    background: inherit;
    /* hack the default style in jquery-ui-1.12.0.min.css*/
    border: none;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #000;
    letter-spacing: 0
    }
.ui-menu-option-wrapper {
    border: none;
    font-size: 10px;
    margin-left: 15px
    }
.ui-selectmenu-menu .ui-menu-item-wrapper:hover {
    background-color: #949494;
    border: none;
    margin-left: -16px;
    padding-left: 22.8px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: -5px;
    margin-bottom: -5px
    }
.ui-selectmenu-menu .ui-menu-item .ui-state-active {
    background-color: #949494;
    border: none;
    margin-left: -16px;
    padding-left: 22.8px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: -5px;
    margin-bottom: -5px
    }
#changeTimezone {
    float: right;
    background-color: #249BD5;
    font-size: 14px;
    border: none;
    color: white;
    padding: 0 35px;
    height: 32px;
    border-radius: 2px;
    font-weight: bold
    }
#setTimezone {
    margin-top: 10px;
    height: 32px;
    margin-bottom: -8px
    }
#setTimezone .disable {
    opacity: 0.5;
    cursor: default
    }
#timezoneList {
    border: 1px solid #495A67;
    border-radius: 3px;
    width: 216px;
    height: 27px;
    background-color: white;
    color: #495A67;
    font-size: 12px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif
    }
.showPage {
    -webkit-animation: showPage 0.2s linear 0s;
    -moz-animation: showPage 0.2s linear 0s;
    -o-animation: showPage 0.2s linear 0s;
    animation: showPage 0.2s linear 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards
    }
.hideLoadingDialog {
    height: 999px;
    width: auto
    }
@keyframes showPage {
    0% {
        opacity: 0
        } 100% {
        opacity: 1
        }
    }
@-webkit-keyframes showPage {
    0% {
        opacity: 0
        } 100% {
        opacity: 1
        }
    }
@-moz-keyframes showPage {
    0% {
        opacity: 0
        } 100% {
        opacity: 1
        }
    }
@-o-keyframes showPage {
    0% {
        opacity: 0
        } 100% {
        opacity: 1
        }
    }
.hidePage {
    -webkit-animation: hidePage 0.2s linear 0s;
    -moz-animation: hidePage 0.2s linear 0s;
    -o-animation: hidePage 0.2s linear 0s;
    animation: hidePage 0.2s linear 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards
    }
@keyframes hidePage {
    0% {
        opacity: 1
        } 100% {
        opacity: 0
        }
    }
@-webkit-keyframes hidePage {
    0% {
        opacity: 1
        } 100% {
        opacity: 0
        }
    }
@-moz-keyframes hidePage {
    0% {
        opacity: 1
        } 100% {
        opacity: 0
        }
    }
@-o-keyframes hidePage {
    0% {
        opacity: 1
        } 100% {
        opacity: 0
        }
    }
/*portal page style*/
.portal-ui-list {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    width: 361px;
    height: 195px;
    margin-left: -30px
    }
.portal-list-item {
    width: 140px;
    box-sizing: border-box
    }
.portal-block {
    display: block;
    width: 140px
    }
.portal-block:focus {
    text-decoration: underline
    }
.uag .download-title {
    display: block
    }
.uag #skipPortalPageHTML5 {
    display: block
    }
.uag #skipPortalPageNative {
    display: block
    }
.uag #webClientEntry {
    display: block
    }
.uag .nativeClientEntry {
    display: block
    }
.specialLang .nativeClientEntry {
    margin-top: -20px
    }
.specialLang .nativeClientSelect {
    height: 20px;
    top: 7px
    }
.specialLang #webClientEntry {
    margin-top: -20px
    }
.specialLang #skipPortalPageHTML5 {
    margin-top: 20px
    }
.showOnChromeOsUAGIDP {
    display: block !important
    }
#selectTextInfo {
    width: 140px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
    }
.nativeClientSelect {
    width: 160px;
    height: 1px;
    position: relative;
    top: -16px;
    display: none
    }
.nativeClientSelect .nativeClientSelectInfo {
    position: relative;
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer
    }
.nativeClientSelectInfo .icon::after {
    content: "";
    min-width: 7px;
    height: 7px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(-135deg);
    background: transparent;
    display: block;
    position: absolute;
    right: 2px;
    top: 4px
    }
.showCustomizeOption.nativeClientOption {
    display: block
    }
.nativeClientOption {
    width: 160px;
    top: 20px;
    display: none;
    position: absolute;
    z-index: 999
    }
.nativeClientOption ul {
    position: absolute;
    width: 100%;
    display: inherit;
    background: white;
    border: 0 solid #dfe1e6;
    border-radius: 3px
    }
#ngbToast {
    min-width: 150px
    }
.toastContentBox {
    text-align: center
    }
.toastBg {
    background-color: #478db8
    }
.toastContent {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px
    }
.toastButton {
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    border: 1px solid #fff
    }
.bg-info {
    background: #6c757d !important
    }
#selectTextInfo {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
    }
.nativeClientOption ul li {
    width: 100%;
    height: 20px;
    line-height: 20px;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
    }
.nativeClientOption ul li:hover {
    background: #f4f5f7
    }
.showOnHTMLAccess .portal-block {
    display: none
    }
.showOnHTMLAccess .skipPortal {
    display: none
    }
.uag .middle-line {
    height: 135px
    }
.uag .portal-list-item {
    margin-top: -22px
    }
.uag .pull-right {
    margin-top: -157px
    }
.uag .pull-left {
    margin-top: -22px
    }
.portal-list-title {
    color: #006988;
    font-size: 15px;
    margin-top: 24px;
    width: 140px;
    height: 46px;
    text-align: center
    }
.portal-list-title:focus {
    text-decoration: underline
    }
.portal-web-client-icon {
    width: 32px;
    height: 32px;
    margin-top: 40px
    }
.portal-native-client-icon {
    width: 32px;
    height: 32px;
    margin-top: 40px
    }
.portal-native-client, .portal-web-client {
    height: 80px;
    background-size: 32px 32px
    }
.ui-indent-bottom, .ui-indent {
    margin-top: 40px;
    color: white;
    font-size: 15px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    text-align: center
    }
.ui-indent {
    color: #5E5E5E;
    padding: 0 20px;
    margin-left: -50px;
    width: 400px;
    height: 129px;
    text-align: center;
    line-height: 20px;
    margin-bottom: 8px
    }
.ui-indent p {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #5E5E5E;
    text-align: center
    }
.ui-indent-bottom a:link, .ui-indent-bottom a:visited, .ui-indent-bottom a {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    color: #24211E;
    line-height: 20px
    }
.ui-indent-bottom a:focus {
    text-decoration: underline
    }
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
    }
.btn {
    display: inline-block
    }
.container {
    margin-right: auto;
    margin-left: auto
    }
@media (min-width: 992px) {
    .launch-page .container {
        width: 910px;
        padding-left: 0;
        padding-right: 0
        }
    #header-container .container {
        width: 940px;
        padding: 0;
        margin-bottom: 56px;
        height: 45px
        }
    .navbar .search-bar {
        position: relative;
        width: 350px;
        float: left;
        margin-left: 118px;
        top: 0
        }
    .search-bar .search-input {
        width: 75%
        }
    }
.nav > li > a {
    position: relative;
    display: block
    }
.navbar-toggle {
    display: none
    }
.pull-left {
    float: left
    }
.pull-right {
    float: right;
    margin-top: -194px
    }
.middle-line {
    margin: 0 auto;
    width: 1px;
    background-color: #ddd;
    height: 195px
    }
.securid-passcode, .next-token {
    margin-top: 40px
    }
.securid-reauth-form {
    padding-top: 20px
    }
#browserWarningContinue {
    display: block;
    margin-top: 55px
    }
.ui-icon, .ui-widget-content .ui-icon {
    background-image: none
    }
.desktop-reauth {
    margin-bottom: 0
    }
.ngdialog-content .desktop-reauth {
    box-shadow: none
    }
.ngdialog-content .desktop-reauth-change-password {
    height: 689px;
    margin-bottom: 0
    }
.ngdialog-content .ui-panel-footer .btn-default {
    display: block
    }
.client-entry {
    margin-top: 30px;
    font-size: 17px;
    color: #256385;
    width: 160px;
    height: 45px
    }
.client-entry, .html5 {
    margin-top: 50px
    }
#webClientEntry {
    margin-left: -20px
    }
#skipPortalPageHTML5 {
    margin-left: -15px
    }
#skipPortalPageNative {
    margin-top: 0
    }
#skipPortalPageNative p, #skipPortalPageHTML5 p {
    position: absolute;
    width: 160px;
    text-indent: 18px;
    top: 3px;
    left: 0;
    padding: 0 10px
    }
#skipPortalPageCheckbox {
    appearance: radio
    }
.skipPortal {
    position: relative;
    font-size: 9px;
    color: #314351;
    cursor: pointer;
    width: 150px;
    height: 26px;
    text-align: left;
    display: block
    }
.showOnUAGIDP {
    display: none
    }
#skipPortal input {
    cursor: pointer
    }
.download-title {
    font-size: 14px;
    margin-top: 25px;
    color: #5f5f5f
    }
#downloadText {
    color: #256385
    }
.search-bar label, .search-panel label, .clipboard-input-container label, .file-transfer-handle label, .file-transfer-input-container label, .form-horizontal label {
    display: none
    }
.form-horizontal .ui-text-left-align .ui-password-dismatch-text {
    display: block;
    font-size: 12px;
    color: #000;
    text-align: left;
    line-height: 16px;
    position: absolute
    }
.contextmenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box
    }
.contextMenuList {
    width: 160px
    }
.contextMenuLink {
    width: 160px;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571;
    color: #333;
    white-space: nowrap
    }
.next-token .ui-login-hint-text {
    overflow: auto;
    height: 100%;
    word-break: break-all;
    word-wrap: break-word
    }
.nexttoken-auto-height {
    height: 100%;
    padding-bottom: 0
    }
#securIDNextTokenForm .ui-panel-footer {
    position: static;
    padding-bottom: 0
    }
.cdr-file-list {
    border: 1px solid #e2e2e2;
    overflow-y: auto;
    height: 300px;
    width: 100%
    }
.modal-dialog-list {
    border: 1px solid #e2e2e2;
    overflow-y: auto;
    height: 300px;
    width: 100%
    }
.add-share-folder .text-intro {
    font-size: 15px;
    vertical-align: middle;
    float: left
    }
.add-modal-dialog-container {
    margin-top: 20px
    }
.add-trusted-app {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    float: left
    }
#trusted-app-setting-add {
    float: right
    }
.add-trusted-app .app-input {
    vertical-align: middle;
    background-color: #fff;
    font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
    height: 35px;
    line-height: 35px;
    color: #314351;
    border: none;
    font-size: 15px;
    -webkit-appearance: none;
    letter-spacing: -0.24px;
    width: 250px
    }
.fa-default-app-dialog-container {
    margin-left: 20px;
    margin-bottom: 20px;
    width: 91%;
    height: 30px
    }
.change-default-fa-app {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    float: left
    }
.change-default-fa-app .app-input {
    vertical-align: middle;
    background-color: #fff;
    font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
    height: 35px;
    line-height: 35px;
    color: #314351;
    border: none;
    font-size: 15px;
    -webkit-appearance: none;
    letter-spacing: -0.24px;
    width: 250px
    }
#default-fa-app-search {
    float: right
    }
.cdr-file-setting {
    margin: 0 20px
    }
.cdr-file-list .folder-item {
    line-height: 40px;
    height: 40px;
    font-size: 12px
    }
.cdr-file-list .folder-item .folder-name {
    display: inline-block;
    width: 250px;
    margin-left: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden
    }
.modal-dialog-list .folder-item {
    line-height: 40px;
    height: 40px;
    font-size: 12px
    }
.modal-dialog-list .folder-item .folder-name {
    display: inline-block;
    width: 250px;
    margin-left: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden
    }
.modal-dialog-list .app-item {
    line-height: 40px;
    height: 40px;
    font-size: 12px
    }
.fa-default-apps {
    margin-left: 13px
    }
.modal-dialog-list .app-item .app-id {
    display: inline-block;
    width: 270px;
    margin-left: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden
    }
.modal-dialog-list .app-item .default-apps-id {
    display: inline-block;
    width: 270px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    margin-left: 5px
    }
.modal-dialog-setting {
    margin: 0 20px
    }
.trusted-app-item {
    line-height: 40px;
    height: 40px;
    font-size: 12px
    }
.modal-dialog-list .trusted-app-item .trusted-app-name {
    display: inline-block;
    width: 250px;
    margin-left: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden
    }
.add-share-folder {
    margin-top: 20px
    }
#cdr-setting-add {
    margin-right: 0
    }
#modal-dialog-setting-add {
    margin-right: 0
    }
#folder_sharing_set {
    margin-bottom: 20px;
    height: 28px;
    margin-top: 15px
    }
#trusted_apps_set {
    margin-bottom: 20px;
    height: 28px;
    margin-top: 15px
    }
.log_level {
    margin-top: 5px
    }
.showCertWebview {
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 99999999;
    position: absolute
    }
.showWs1Webview {
    height: 100%;
    width: 100%;
    top: 30px;
    z-index: 99999999;
    position: absolute
    }
.hideCertWebview {
    height: 0;
    width: 0
    }
.blast-window {
    margin-top: 30px
    }
.blast-window-full-screen {
    margin-top: 0
    }
.hideWs1Webview {
    height: 0;
    width: 0
    }
.draggable-area {
    -webkit-app-region: drag;
    height: 30px;
    z-index: 999999;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFF
    }
.draggable-area .window-button {
    float: right;
    height: 30px;
    width: 30px;
    -webkit-app-region: no-drag
    }
.close-only {
    background-color: transparent
    }
#minimizeButton {
    background: url(icons-20571149/min_button.png) no-repeat 9px 9px;
    background-size: 12px 12px
    }
#minimizeBtn {
    background: url(icons-20571149/icon-minimize-standard2x.png) no-repeat 5px 5px;
    background-size: 20px 20px;
    margin-right: 0
    }
.scaleButtonForMaximize {
    background: url(icons-20571149/max_button_restore.png) no-repeat 9px 9px;
    background-size: 12px 12px
    }
.scaleButtonForMinimize {
    background: url(icons-20571149/max_button.png) no-repeat 9px 9px;
    background-size: 12px 12px
    }
#closeAppWindow {
    background: url(icons-20571149/close_window_button.png) no-repeat 9px 9px;
    background-size: 12px 12px;
    margin-right: 10px
    }
#backToServer {
    background: url(icons-20571149/back_button.png) no-repeat 9px 9px;
    background-size: 12px 12px;
    float: left
    }
.webview-url {
    font-family: "SF Pro Display";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #565656;
    margin-left: 10px;
    margin-top: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
    }
.webview-address-bar {
    height: 20px;
    background: #F1F3F4;
    box-shadow: 0 0 1px rgba(92, 92, 92, 0.15);
    border-radius: 90px;
    display: flex;
    margin-top: 5px;
    -webkit-app-region: no-drag
    }
#minimizeButton:hover, #maximizeButton:hover, #closeAppWindow:hover, #backToServer:hover {
    background-color: #dfdfdf
    }
#minimizeButton:active, #maximizeButton:active, #closeAppWindow:active, #backToServer:active {
    background-color: #cecece
    }
.marginTopChrome {
    margin-top: 30px;
    height: 100%;
    overflow-y: auto;
    background-color: #F2F2F2
    }
.invalid .folder-name {
    color: #c8c8c8
    }
.showMenuBar .settings-window {
    top: 30px
    }
.grayout .settings-container {
    opacity: 0.4
    }
.grayoutForToggle {
    opacity: 0.4
    }
#display-setting-option {
    height: 64px
    }
.settings-container .option-container, .settings-container .option-container .label-text {
    height: 32px;
    line-height: 32px
    }
.setting-dropdown {
    border-color: #495A67;
    width: 200px;
    height: 27px;
    background-color: white;
    color: #495A67;
    border-radius: 3px;
    font-size: 12px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif
    }
#width-area, #height-area {
    margin-left: 5px
    }
.audo-video-container .settings-separator {
    margin-top: 20px
    }
.audo-video-container .settings-label {
    margin-bottom: 20px
    }
#videodevice-list-container {
    margin-top: 12px
    }
#audioOutdevice-list-container {
    margin-top: 12px;
    position: relative;
    display: block;
    box-sizing: border-box
    }
input.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    outline: none;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
    font-size: 16px;
    margin: 0 0 8px 0;
    padding: 0;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1
    }
.dropdown-content {
    top: -50px
    }
.dropdown-content {
    background-color: #fff;
    margin: 0;
    display: none;
    min-width: 100px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
    }
.dropdown-content li {
    clear: both;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    min-height: 50px;
    line-height: 1.5rem;
    width: 100%;
    text-align: left
    }
.dropdown-content li > span {
    font-size: 16px;
    color: #26a69a;
    display: block;
    line-height: 22px;
    padding: 14px 16px
    }
.list-inline {
    margin: 50px 50px;
    margin-bottom: 65px
    }
.server-select-header {
    position: absolute;
    top: 20px;
    right: 50px
    }
.server-select-header .ui-navbar-links {
    margin: 0
    }
.pre-setting-btn .setting {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background: url(icons-20571149/icon_settings.svg) no-repeat;
    background-size: 24px 24px;
    border: none
    }
.ui-center-panel .pre-setting-btn {
    position: absolute;
    top: 16px;
    right: 16px
    }
.ui-widget-home .pre-setting-btn {
    position: absolute;
    top: 20px;
    right: 50px;
    margin-top: 30px
    }
.ui-center-panel .pre-setting-btn .chromeClient {
    display: none
    }
.about-dialog-content-right {
    float: left;
    width: 65%;
    text-align: left;
    line-height: 15px
    }
#input-proxy {
    z-index: -1
    }
@media (max-width: 440px) {
    .ui-center-panel {
        width: 100%;
        box-shadow: none;
        height: 574px;
        width: 227.8px;
        padding-bottom: 0;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0
        }
    .ui-center-panel .pre-setting-btn {
        margin-right: -50px
        }
    .login-bg {
        min-height: 100%;
        background-image: none !important;
        background-color: white
        }
    .login-bg .container {
        width: 100%;
        height: 100%
        }
    .home-link, .home-link:focus, .home-link:link, .home-link:visited {
        display: none
        }
    .phone-home-link-area {
        display: block;
        font-family: "Open Sans", Helvetica, Arial, sans-serif;
        font-size: 15px;
        color: #3F5564;
        text-align: center;
        width: 244px;
        margin: 0 auto;
        line-height: 20px
        }
    .phone-home-link, .phone-home-link:focus, .phone-home-link:link, .phone-home-link:visited {
        color: #3F5564
        }
    #phoneHelpLinkArea {
        margin-top: 20px
        }
    .ui-panel-content {
        width: 227px;
        margin-bottom: 33px;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto
        }
    .ui-panel-footer .btn-primary[disabled], .ui-panel-footer .btn-primary[disabled]:hover {
        width: 227px
        }
    .ui-panel-footer .btn-primary {
        width: 227px
        }
    .bottom-logo {
        background: url(icons-20571149/vmware_logo_dark.svg) no-repeat;
        display: block;
        margin: 0 auto;
        margin-left: -41.5px;
        background-size: 83px 13px;
        bottom: -180px;
        left: 50%;
        margin-bottom: 40px
        }
    .ui-indent-bottom a:link, .ui-indent-bottom a:visited, .ui-indent-bottom a {
        color: #24211E
        }
    .ui-indent-bottom a:focus {
        text-decoration: underline
        }
    .ui-panel-footer {
        position: absolute;
        margin-left: -26px;
        padding: 0;
        width: 280px
        }
    .ui-pattern-logo {
        margin-bottom: 32px
        }
    .ui-center-panel .btn-default, .ui-disclaimer-panel .btn-default {
        width: 295px;
        height: 32px;
        margin-bottom: 26px
        }
    .ui-clear-username-btn {
        margin-right: -70px;
        margin-top: -12px
        }
    .ui-clear-password-btn {
        margin-right: -70px;
        margin-top: -12px
        }
    .ui-clear-securUsername-btn {
        right: 0;
        top: 286px
        }
    .ui-clear-passcode-btn {
        right: 0;
        top: 356px
        }
    .ui-clear-securUsername-btn-error {
        top: 230px
        }
    .ui-clear-passcode-btn-error {
        top: 300px
        }
    input::-ms-clear {
        display: none;
        width: 0;
        height: 0
        }
    input::-ms-reveal {
        display: none;
        width: 0;
        height: 0
        }
    input::-webkit-credentials-auto-fill-button {
        display: none !important;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        right: 0
        }
    .portal-ui-list {
        width: 280px;
        height: 112px;
        margin-top: 21px;
        margin-left: -26.1px
        }
    .pull-left {
        float: left;
        margin-top: -29px;
        height: 102px
        }
    .middle-line {
        height: 112px;
        margin: 0 auto
        }
    .pull-right {
        height: 102px;
        margin-top: -140px;
        margin-right: 0
        }
    .ui-indent-bottom, .ui-indent {
        color: #3F5564;
        width: 244px;
        margin: 0 auto;
        margin-top: -15px
        }
    .ui-indent {
        width: 248px;
        height: 148px;
        text-align: center;
        line-height: 20px;
        margin: 0 auto;
        margin-top: -12px;
        margin-left: -8.1px;
        padding: 0 1px
        }
    .ui-indent p {
        margin-top: 20px
        }
    .ui-disclaimer-panel .pre-scrollable {
        width: 288px;
        height: 206px;
        margin-left: -30px;
        margin-top: 32px
        }
    .loginLoadingTextForWaiting {
        width: 224px
        }
    .loginLoadingText {
        width: 224px
        }
    .cancelLoadingText {
        width: 224px
        }
    .loginLoadingImage {
        width: 224px
        }
    #loginForm {
        margin-top: 0
        }
    .ui-center-panel .change-password-form {
        width: 227px;
        margin-top: 32px
        }
    .ui-login-hint-text-change-password {
        width: 227px;
        padding-top: 0;
        margin-left: 0
        }
    .ui-panel-content .alert-change-password {
        top: 224px
        }
    .ui-clear-next-token-code-btn {
        right: 0;
        margin-top: -8px
        }
    .ui-clear-pin1-btn {
        right: 0;
        margin-top: -33px
        }
    .ui-clear-pin2-btn {
        right: 0;
        margin-top: -33px
        }
    .ngdialog-content .ui-panel-footer .btn-primary {
        width: 227px;
        margin-left: 25px
        }
    .ngdialog-content .ui-login-hint-text {
        width: 227px;
        padding-top: 0;
        margin-left: 0
        }
    .ui-panel-content .alert-unauthenticated {
        margin-top: 15px
        }
    #unauthenticatedUsername-menu {
        width: 265px;
        margin-left: -20px
        }
    .ui-selectmenu-menu .ui-menu {
        width: 264px;
        margin-left: -17.5px
        }
    .pin-change-prompt {
        width: 227px;
        margin-top: -22px !important;
        line-height: 15px !important
        }
    }
.select-text .session-ops-window-text {
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text
    }
#skipPortalPageCheckboxNative {
    margin-top: 10px;
    margin-left: 10px
    }
#skipPortalPageCheckboxHTML5 {
    margin-top: 10px
    }
.hide-font {
    font-size: 0
    }
#iconDownloadImport {
    background: url(icons-20571149/icon_download.svg) no-repeat
    }
#iconHtmlAccessImport {
    background: url(icons-20571149/icon_html_access.svg) no-repeat
    }
.v2 .ui-center-panel .form-control::-webkit-input-placeholder {
    font-size: 15px
    }
.ui-panel-content .titan-relative {
    position: relative
    }
#v2AuthForm .domain {
    color: #99a8b5;
    width: 270px;
    line-height: 30px;
    text-align: center;
    font-size: 15px;
    margin-top: 15px;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer
    }
.v2 .portal-ui-list {
    height: 155px;
    margin: 0 auto;
    width: 330px
    }
.v2 .ui-indent {
    height: 30px
    }
.v2 .portal-block {
    cursor: pointer
    }
.v2 .pull-right {
    margin-top: 0
    }
.v2 .login-bg {
    background: none;
    background-color: #f2f4f5
    }
.v2 .ui-center-panel {
    height: 320px;
    padding: 50px 0;
    width: 350px
    }
.v2 .ui-panel-content .ng-valid[required], .ng-valid.required {
    border-left: 5px solid #42A948;
    /* green */
    }
.v2 .ui-panel-content input.ng-dirty.ng-invalid:not(form) {
    border-left: 5px solid #a94442;
    /* red */
    }
.v2 .ui-panel-content .error-msg {
    color: #a94442;
    text-align: left
    }
.v2 .title-signin {
    text-align: center;
    font-size: 24px
    }
.v2 .ui-panel-content {
    width: 270px;
    margin: 0 auto
    }
.v2 .label-username {
    margin-bottom: 4px;
    font-size: 14px;
    color: #747487
    }
.v2 .ui-center-panel .form-control {
    line-height: 40px;
    height: 40px;
    border: 1px solid #CDD0D3;
    border-radius: 5px;
    padding: 0;
    padding-left: 10px;
    font-size: 15px
    }
.v2 .sub-title {
    text-align: center;
    color: #747487;
    font-size: 14px;
    margin-top: 20px
    }
.ui-desktop-list .app-item-action {
    position: absolute;
    right: 5px;
    top: 80px;
    width: 16px;
    height: 16px;
    border: none;
    background: url(icons-20571149/icon-overflow.svg) no-repeat
    }
.preference-option-container .horizon-native {
    background-image: url(icons-20571149/horizon-icon.svg)
    }
.preference-option-container .horizon-native-chromeos {
    background-image: url(icons-20571149/icon-chromeos.svg), url(icons-20571149/horizon-icon.svg)
    }
.preference-option-container .browser {
    background-image: url(icons-20571149/icon-browser.svg)
    }
.horizon-preferences-content-container .selected .icon-launch-logo-check {
    display: block;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-image: url(icons-20571149/icon-launch-logo-check.svg)
    }
.horizon-preference {
    float: left
    }
.v2 .titan-login-btn {
    width: 100%;
    margin-top: 15px
    }
.system-tray-bar {
    width: 100%;
    overflow: hidden;
    height: 29px
    }
.system-tray-bar .system-tray-button {
    width: 29px;
    height: 29px
    }
.system-tray-bar .system-tray-icon {
    float: right;
    margin-left: 1px;
    cursor: pointer
    }
#titan-top-alert {
    position: fixed;
    width: calc(100%);
    top: 0;
    z-index: 99999
    }
.user-profile-button {
    position: relative
    }
.user-profile .bottom .logout-button {
    background-image: url(icons-20571149/icon-logout.svg)
    }
#userProfileBtn {
    background-color: white;
    border: 0.5px solid #979797;
    border-radius: 4px
    }
#userProfileBtn img {
    width: 20px;
    height: 20px;
    margin-left: 9px
    }
.server-select {
    position: relative
    }
/**
 * ***************************************************************************
 * Copyright 2013-2021 VMware, Inc.  All rights reserved.
 * ***************************************************************************
 *
 * @format
 */
/*
 * appblast.css
 *
 *     Defines style intended to be common to all views.
 */
body {
    margin: 0;
    height: 100%;
    color: black;
    font-family: Arial, Trebuchet MS, Verdana, sans-serif;
    font-size: 12px;
    -webkit-user-select: none;
    -webkit-touch-callout: none
    }
a {
    text-decoration: none
    }
a:link, a:visited {
    color: black
    }
a:hover {
    color: black;
    text-decoration: underline
    }
.security-link {
    color: blue !important;
    text-decoration: underline !important
    }
/*-------------------REMOVE DEFAULT BROWSER FOCUS OUTLINE--------------------*/
input:focus, textarea:focus {
    outline: 0 none
    }
/*------------------------------------------------------------------*/
button::-moz-focus-inner {
    /* removes default FireFox inner focus */
    border: 0;
    padding: 0
    }
.hide {
    display: none
    }
.clearfix {
    clear: both
    }
.left {
    float: left
    }
.right {
    float: right
    }
.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
    }
.selectable {
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
    }
.text-display {
    white-space: pre-line
    }
.canvas-view-port {
    width: 100%;
    height: 100%
    }
#print-frame-container {
    height: 0
    }
#canvas-container {
    width: 100%;
    height: 100%;
    background: #dcdcdc;
    /* matches agent background when running in unity mode */
    overflow: hidden;
    /*fix bug 2009266*/
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0
    }
.chrome-client #canvas-container {
    background: black
    }
.chrome-container {
    top: 0;
    left: 0;
    z-index: 1
    }
.canvas-view-port .web-container {
    top: -1px;
    /*fix bug 1795812*/
    left: -1px
    }
#clipboard-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
    }
#html5-clipboard-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
    }
#sidebar-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    /*sidebar should be on top of canvas*/
    height: 100%
    }
.clipboard-text {
    margin-top: 12px;
    padding: 4px;
    width: 300px;
    height: 100px;
    resize: none
    }
.vertical-flip {
    -moz-transform: scaley(-1);
    -o-transform: scaley(-1);
    -webkit-transform: scaley(-1);
    transform: scaley(-1);
    filter: FlipV;
    -ms-filter: "FlipV"
    }
/*
 * copied from jquert-ui redmond, this is necessary for the jQuery
 * resizable element functionality to function correctly.
 */
.ui-resizable {
    position: relative
    }
.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    z-index: 99999;
    display: block
    }
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
    display: none
    }
.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0
    }
.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%
    }
.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px
    }
.base-panel {
    position: fixed !important;
    top: 50px;
    right: 50px;
    border-radius: 2px;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0 4px 4px 4px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: #eee
    }
.panel-front {
    z-index: 200
    }
.panel-behind {
    z-index: 150
    }
.clipboard-panel {
    width: 300px;
    height: 240px;
    min-height: 80px;
    min-width: 350px
    }
.file-transfer-panel {
    width: 500px;
    height: 350px;
    min-height: 350px;
    min-width: 500px
    }
#file-transfer-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
    }
.clipboard-panel.minimized, .file-transfer-panel.minimized {
    max-height: 56px !important;
    min-height: 56px !important
    }
.clipboard-focused, .file-transfer-focused {
    opacity: 1
    }
.clipboard-unfocused, .file-transfer-unfocused {
    opacity: 0.8
    }
.clipboard-header, .file-transfer-header {
    clear: both;
    display: table;
    width: 100%
    }
.file-transfer-header {
    position: relative
    }
.clipboard-footer, .file-transfer-footer {
    overflow: hidden;
    clear: both;
    padding: 0 4px 4px 4px
    }
.file-transfer-tab {
    float: left;
    border-right: 1px solid #cbcbcb;
    height: 100%;
    line-height: 25px;
    padding: 0 14px;
    min-width: 65px;
    text-align: center;
    color: black;
    font-size: 14px;
    background: lightgray
    }
.file-transfer-tab.active {
    background-color: white;
    height: 26px
    }
.download-tab:not(.active) {
    border-right: 0
    }
.upload-tab:not(.active) {
    border-left: 0
    }
.clipboard-caps, .file-transfer-caps {
    color: #959595;
    float: right
    }
.clipboard-clear, .file-transfer-clear {
    float: left;
    font-size: 13px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #2A2D3C;
    line-height: 16px
    }
.clipboard-label {
    padding: 10px;
    color: #363636;
    font-size: 13px;
    font-family: "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: bold;
    float: left
    }
.clipboard-icon, .file-transfer-icon, .usb-icon {
    background-size: 18px 18px !important;
    float: right;
    width: 28px;
    height: 36px;
    position: relative
    }
.file-transfer-file-icon {
    background-size: 16px 16px !important;
    position: absolute;
    right: 13px;
    height: 100%;
    width: 25px
    }
.file-transfer-hint-icon {
    background-size: 16px 16px !important;
    display: inline-block;
    width: 25px;
    height: 15px
    }
.clipboard-icon.help, .file-transfer-icon.help {
    background: url(icons-20571149/desktop-icon-help-standard.svg) center no-repeat
    }
.clipboard-icon.help:hover, .file-transfer-icon.help:hover {
    opacity: 0.8
    }
.clipboard-icon.close, .file-transfer-icon.close, .usb-icon.close {
    opacity: 1;
    background: url(icons-20571149/icon-close-standard.svg) center no-repeat
    }
.clipboard-icon.close:hover, .file-transfer-icon.close:hover, .usb-icon.close:hover {
    opacity: 0.8
    }
.clipboard-icon.restore {
    background: url(icons-20571149/icon-maximize-standard.png) center no-repeat
    }
.clipboard-icon.restore:hover {
    background: url(icons-20571149/icon-maximize-hover.png) center no-repeat
    }
.clipboard-icon.minimize {
    background: url(icons-20571149/icon-minimize-standard.png) center no-repeat
    }
.clipboard-icon.minimize:hover {
    background: url(icons-20571149/icon-minimize-hover.png) center no-repeat
    }
.file-transfer-file-icon.save-file, .file-transfer-hint-icon.save-file {
    background: url(icons-20571149/icon-save-file.png) center no-repeat
    }
.file-transfer-file-icon.save-file:hover {
    background: url(icons-20571149/icon-save-file-hover.png) center no-repeat
    }
.file-transfer-file-icon.cancel-upload {
    background: url(icons-20571149/icon-cancel-upload.png) center no-repeat
    }
.file-transfer-file-icon.cancel-upload:hover {
    background: url(icons-20571149/icon-cancel-upload-hover.png) center no-repeat
    }
.file-transfer-file-icon.stopped-transfer {
    background: url(icons-20571149/icon-stopped-transfer.png) center no-repeat
    }
.file-transfer-file-icon.transfer-error {
    background: url(icons-20571149/icon-transfer-error.png) center no-repeat
    }
.clipboard-content, .file-content {
    width: 100%;
    box-sizing: border-box;
    clear: both;
    overflow: auto;
    border: 1px solid #cbcbcb
    }
.file-content {
    overflow: inherit
    }
.clipboard-area, .file-area {
    background: white;
    padding: 10px;
    display: block;
    clear: both;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 100%;
    text-align: left;
    cursor: pointer;
    color: #363636;
    font-size: 13px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    word-wrap: break-word
    }
.file-area {
    padding: 0;
    height: 100%;
    overflow: hidden
    }
.file-area > .file-list-container {
    overflow: auto
    }
ul.file-content-list {
    height: 100%;
    width: 100%
    }
#file-transfer-container ul.file-content-list > li {
    box-sizing: border-box;
    border-bottom: 1px solid #cbcbcb;
    height: 45px;
    line-height: 45px;
    width: 100%;
    padding: 0 5px;
    position: relative
    }
ul.file-content-list > li:first-child {
    border-top: 1px solid #cbcbcb
    }
ul.file-content-list > li.file-item:hover {
    background-color: #f5fafe
    }
ul.file-content-list > li.file-item > span.transfer-progress {
    position: absolute;
    height: 100%;
    background-color: #e9f4ff;
    left: 0;
    top: 0
    }
ul.file-content-list > li.file-item > span.transfer-progress.transfer-error {
    background-color: #FCE3E3;
    width: 100%
    }
ul.file-content-list > li.file-item > span.transfer-progress.transfer-stop {
    background-color: #F5F5F5;
    width: 100%
    }
ul.file-content-list > li.file-item > span.transfer-progress.transfer-done {
    background-color: #EBFFD9;
    width: 100%
    }
ul.file-content-list > li > * {
    display: inline-block;
    vertical-align: top
    }
ul.file-content-list > li > img {
    vertical-align: middle
    }
ul.file-content-list > li > span.file-name {
    margin: 0 0 0 5px;
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #191b18
    }
ul.file-content-list > li.file-item > .download-btn {
    position: absolute;
    right: 13px;
    top: 13px
    }
ul.file-content-list > li > span.readable-file-size {
    color: #191b18
    }
ul.file-content-list .file-item .readable-file-size, ul.file-content-list .file-item .file-name, ul.file-content-list .file-item img {
    position: relative;
    z-index: 1
    }
input.upload-file-input {
    display: none
    }
.clipboard-area.inactive, .file-area.inactive {
    color: #959595 !important
    }
.clipboard-area.focused span, .file-area.focused span {
    background: #D6D6D6
    }
.clipboard-input-container, .file-transfer-input-container {
    width: 0;
    height: 0;
    overflow: hidden;
    float: right
    }
.chromeclient-none-float {
    float: none
    }
.clipboard-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    display: block;
    background: #444;
    color: white;
    padding: 10px;
    border-radius: 4px;
    cursor: default;
    max-width: 300px
    }
.clipboard-notification.hidden {
    display: none
    }
.clipboard-notification.hideme {
    transition-duration: 1.5s;
    transition-delay: 1s;
    transition-timing-function: ease-in;
    opacity: 0
    }
.file-transfer-title {
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    width: 100%;
    position: absolute;
    color: black;
    margin-bottom: -36px
    }
.file-area .hint-container {
    text-align: center
    }
.file-area .hint-container p {
    margin: 6px auto
    }
.file-content .file-area-header {
    height: 26px;
    background-color: #eee
    }
.file-area .hint-container .hint-title {
    padding-top: 45px;
    font-size: 20px;
    padding-bottom: 20px
    }
.file-area .hint-container .hint-disable-title {
    padding-top: 90px;
    font-size: 18px;
    padding-bottom: 20px
    }
.file-area .hint-container .choose-files-button {
    margin-bottom: 12px;
    color: white;
    background-color: rgb(145, 146, 142);
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    margin-top: 15px
    }
.file-area .hint-container .hint-step-container {
    width: 380px;
    text-align: left;
    margin: 0 auto
    }
.file-content-list .btn-hint-container {
    text-align: center
    }
.file-content-list .btn-hint-container .choose-files-button {
    margin: 12px auto 15px;
    color: white;
    background-color: rgb(145, 146, 142);
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-size: 13px
    }
.usb-panel {
    width: 550px;
    min-width: 550px;
    max-width: 550px;
    border-radius: 4px;
    background: #F2F2F2;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.2)
    }
.usb-panel-full {
    height: 382px;
    width: 550px;
    min-height: 382px;
    min-width: 550px
    }
.table-header {
    color: black;
    font-family: Arial, Trebuchet MS, Verdana, sans-serif;
    font-size: 13px;
    height: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 2px 0 0 6px
    }
.table-content {
    padding: 11px 0 0 6px;
    height: 18px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px
    }
.table-header .item, .table-content .item {
    float: left;
    text-align: left
    }
.table-content .item {
    margin-bottom: 14px
    }
.table-header-device, .table-header-status {
    color: #314351
    }
.table-header .table-header-device {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    width: 254px
    }
.table-header .table-header-status {
    margin-left: 22px
    }
.table-header .table-header-button, .table-content .usb-release {
    width: 90px;
    height: 22px;
    margin-left: 34px
    }
.table-content .usb-product-name {
    text-align: left;
    width: 254px
    }
.table-content .usb-product-status {
    text-align: left;
    width: 67px;
    margin-left: 22px
    }
.usb-title {
    color: #363636;
    font-size: 17px;
    font-family: "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 600;
    line-height: 22px;
    float: left;
    letter-spacing: -0.0041em;
    padding: 24px 0 0 25px
    }
.usb-header {
    clear: both;
    display: table;
    width: 100%
    }
.usb-content .usb-device-list {
    background-color: white;
    padding: 10px;
    margin: 10px 10px 0 10px;
    height: 214px;
    width: 502px;
    margin-top: 16px;
    margin-left: 24px;
    border-radius: 4px;
    overflow-y: auto
    }
.expendUsbPanel .usb-device-list {
    height: 230px
    }
.usb-panel.collapseUsbPanel {
    height: 174px;
    min-height: 174px;
    max-height: 174px
    }
.usb-panel.expandUsbPanel {
    height: 382px;
    min-height: 382px;
    max-height: 382px
    }
.expandUsbPanel .usb-footer {
    padding: 16px 0 0 24px
    }
.collapseUsbPanel .usb-device-list {
    height: 104px
    }
.usb-content {
    width: 100%;
    box-sizing: border-box;
    clear: both;
    overflow: auto
    }
#usb-release-button {
    width: 90px;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    height: 25px;
    color: #0079B8;
    border: 1.5px solid #0079B8;
    border-radius: 4px;
    background-color: white;
    margin-top: -3px
    }
#add-device-button:disabled {
    opacity: 0.6;
    cursor: default
    }
.usb-product-name, .usb-product-status {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    color: #314351;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px
    }
.usb-content-text {
    padding: 8px 24px 0 72px;
    font-size: 17px;
    font-weight: 400;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #314351;
    letter-spacing: -0.0041em
    }
.expandUsbPanel .usb-content-text {
    padding: 8px 24px 0 24px
    }
.usb-footer .usb-add-button {
    height: 36px;
    border-radius: 6px;
    border: 0 solid
    }
.usb-add-device-btn-text {
    font-size: 17px;
    height: 22px;
    line-height: 22px;
    align-items: center
    }
.usb-footer {
    overflow: hidden;
    clear: both;
    padding: 16px 0 0 72px
    }
.icon-usb-info {
    background: url(icons-20571149/icon-usb-info.svg) center no-repeat #f5f5f5;
    float: left;
    margin-top: 25px;
    margin-left: 25px;
    height: 22px;
    width: 22px
    }
@keyframes hiding {
    from {
        opacity: 1;
        } to {
        opacity: 0;
        }
    }
/** @format */
body {
    margin: 0;
    padding: 0
    }
div {
    margin: 0;
    padding: 0
    }
ul {
    padding: 0;
    margin: 0
    }
li {
    padding: 0;
    display: inline-block;
    list-style-type: none
    }
.sidebar-panel {
    box-sizing: content-box;
    border: 1px;
    border-right-style: solid;
    border-right-color: darkgray;
    width: 286px;
    float: left;
    height: 100%;
    background-color: #ededed;
    padding: 0;
    margin: 0;
    position: fixed;
    z-index: 20
    }
#file-transfer-container *, #sidebar-container * {
    box-sizing: content-box
    }
.ajax-busy-overlay {
    background: #000 url(icons-20571149/ajax-busy-overlay.png) 0 0 repeat;
    opacity: 0.5;
    z-index: 99999;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0
    }
.ajax-busy-icon {
    background: url(icons-20571149/ajax-loader.gif) repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 32px;
    left: 50%;
    margin-left: -16px;
    margin-top: -16px;
    position: absolute;
    top: 50%;
    width: 32px;
    z-index: 100000
    }
.color-bar {
    height: 2px;
    background: url(icons-20571149/sidebar-color-bar.png);
    background-size: 280px 2px
    }
.head-panel ul {
    float: right;
    font-size: 0
    }
.head-panel .icon-button {
    margin: 0 0 0 5px;
    float: left
    }
#sidebar-container button {
    padding: 0
    }
#sidebar-container .icon-button {
    background-color: rgb(239, 239, 239)
    }
.horizon-logo-image {
    width: 97px;
    height: 31px;
    margin-top: 14px;
    margin-left: 11px;
    float: left;
    cursor: pointer;
    border: none;
    background-color: rgb(237, 237, 237)
    }
.sidebar-ui-horizon-logo {
    width: 97px;
    height: 24px;
    display: inline-block;
    float: left
    }
.head-panel-button-bar {
    /* width: 144px;// For bug 1835985*/
    height: 31px;
    float: right;
    margin: 11px
    }
.search-panel {
    margin: 11px;
    margin-top: 0;
    width: 256px;
    height: 25px;
    background: #f5f5f5;
    border: 1px solid #888;
    border-radius: 4px;
    display: inline-block
    }
.usb-button:hover #usb-tooltip {
    visibility: visible
    }
#usb-tooltip {
    visibility: hidden;
    position: absolute;
    top: 110px;
    left: 50px;
    background: #eee;
    width: 90px;
    font-size: 12px;
    border: 1px solid darkgray;
    padding: 5px;
    border-radius: 3px;
    z-index: 9999
    }
#sidebar-container .search-icon {
    width: 14px;
    height: 14px;
    margin: 4px;
    float: left
    }
#sidebar-container .ui-search-icon {
    width: 14px;
    height: 14px;
    background-color: #f5f5f5;
    margin-top: -5px
    }
#search-input::-ms-clear {
    display: none;
    width: 0;
    height: 0
    }
#search-input::-webkit-search-cancel-button {
    -webkit-appearance: none
    }
#sidebar-container .search-clear-icon {
    width: 16px;
    height: 16px;
    background: url(icons-20571149/clear_field@2x.svg);
    background-size: 16px 16px;
    display: block;
    position: relative;
    margin-top: 5px;
    margin-left: 230px;
    cursor: pointer
    }
.search-panel .search-input {
    border: 0;
    background-color: #f5f5f5;
    color: black;
    float: left;
    width: 210px;
    font-size: 14px;
    font-weight: 300;
    height: 18px;
    margin-right: 5px;
    -webkit-appearance: none;
    -moz-box-sizing: border-box
    }
.running-title-panel {
    margin: 11px 0 11px 11px;
    height: 30px;
    line-height: 30px;
    width: 259px
    }
.running-title {
    float: left;
    font-weight: 400;
    font-size: 18px;
    color: #686868;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif
    }
.apps-panel {
    max-height: 95%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -ms-overflow-style: -ms-autohiding-scrollbar
    }
.running-content-panel {
    margin-bottom: 11px
    }
.available-title-panel {
    margin: 11px 0 11px 11px;
    height: 30px;
    line-height: 30px;
    width: 259px
    }
.available-button-bar {
    float: right
    }
.performance-tracker-bar {
    float: right
    }
.icon-button.all-apps-button {
    float: left;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
    }
.icon-button .ui-showAll-icon {
    margin-left: 5px;
    margin-bottom: 2px
    }
.icon-button .ui-showAll-icon-on {
    margin-left: 5px;
    margin-bottom: 2px
    }
.icon-button.favorite-apps-button {
    float: right;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
    }
.icon-button .ui-showFav-icon {
    margin-left: 5px;
    margin-bottom: 2px
    }
.icon-button .ui-showFav-icon-on {
    margin-left: 5px;
    margin-bottom: 2px
    }
input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio
    }
.running-app {
    height: 42px;
    width: 239px;
    margin: 2px 0 2px 20px;
    cursor: default
    }
.running-app-border {
    width: 40px;
    height: 40px;
    background: 42px 42px white;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    position: relative
    }
.focused-app-border {
    width: 38px;
    height: 38px;
    background: 42px 42px white;
    border: 2px solid #3faada;
    border-radius: 5px;
    position: relative
    }
.running-app-icon {
    width: 32px;
    height: 32px;
    padding: 4px;
    vertical-align: middle
    }
.focused-app-icon {
    width: 32px;
    height: 32px;
    padding: 3px;
    vertical-align: middle
    }
.running-item-overlay {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 3px;
    left: 3px
    }
.running-item-overlay.loading {
    background: url(icons-20571149/spinner.gif) center no-repeat;
    background-size: 32px 32px
    }
.running-item-overlay.attention {
    background: url(icons-20571149/attention.png) center no-repeat;
    background-size: 32px 32px
    }
.running-session-rtav-containner {
    margin-right: 5px;
    margin-left: 5px;
    float: right
    }
.running-session-using-rtav {
    width: 18px;
    height: 30px;
    margin-top: 6px;
    float: right;
    cursor: pointer
    }
.running-session-using-rtav.webcam {
    background: url(icons-20571149/webcam.png) center no-repeat;
    background-size: 15px 15px
    }
.running-session-using-rtav.microphone {
    background: url(icons-20571149/microphone.png) center no-repeat;
    background-size: 15px 15px
    }
.running-session-using-rtav.webcam.blocked {
    background: url(icons-20571149/blocked_webcam.png) center no-repeat;
    background-size: 15px 15px
    }
.running-session-using-rtav.microphone.blocked {
    background: url(icons-20571149/blocked_microphone.png) center no-repeat;
    background-size: 15px 15px
    }
.running-app-name {
    width: 110px;
    padding-left: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    color: #535353;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px
    }
.focused-app-name {
    font-weight: bold
    }
.running-app-window-count-container {
    width: 25px;
    height: 14px;
    margin-top: 14px;
    padding-left: 3px
    }
.running-app-window-count {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    background: #dcdcdc;
    color: #8a8a8a;
    text-align: center;
    vertical-align: middle;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px;
    cursor: pointer
    }
.running-app-window-count:hover {
    background: darkgrey;
    color: white
    }
.running-app-context-menu {
    margin-top: 6px !important
    }
.running-window {
    padding: 2px 0 2px 0;
    height: 31px;
    width: 202px;
    cursor: default;
    margin: 0;
    margin-left: 16px;
    position: relative
    }
.running-window:before {
    content: "";
    display: block;
    width: 14px;
    height: 0;
    border-top: 1px dotted grey;
    margin-top: -1px;
    position: absolute;
    top: 18px;
    left: -16px
    }
.running-window:last-child:before {
    background: #eee;
    height: 20px;
    top: 18px;
    bottom: 0
    }
.running-window-list {
    margin-left: 40px;
    width: 100%;
    position: relative
    }
.running-window-list:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 21px;
    border-left: 1px dotted grey
    }
.running-window-name {
    width: 125px;
    padding-left: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    color: #535353;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px
    }
.focused-window-name {
    font-weight: bold
    }
.running-window-border {
    width: 28px;
    height: 28px;
    background: white;
    border: 1px solid #c3c3c3;
    border-radius: 5px
    }
.running-app-disabled .running-window-border {
    background: #ff6347
    }
.focused-window-border {
    width: 26px;
    height: 26px;
    background: white;
    border: 2px solid #3faada;
    border-radius: 5px
    }
.running-app-disabled .focused-window-border {
    background: #ff6347
    }
.running-window-icon {
    width: 20px;
    height: 20px;
    padding: 4px 4px;
    vertical-align: middle
    }
.running-window-overlay {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 7px;
    left: 5px
    }
.running-window-overlay.loading {
    background: url(icons-20571149/spinner.gif) center no-repeat;
    background-size: 20px 20px
    }
.running-window-overlay.attention {
    background: url(icons-20571149/attention.png) center no-repeat;
    background-size: 20px 20px
    }
.focused-window-icon {
    width: 20px;
    height: 20px;
    padding: 3px 3px;
    vertical-align: middle
    }
.available-app-name {
    width: 151px;
    padding-left: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    color: #535353;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px
    }
.available-app-favorite-button {
    width: 30px;
    height: 30px;
    margin-top: 6px;
    float: right;
    cursor: pointer;
    border-radius: 4px
    }
.available-app-favorite-button.on {
    background: url(icons-20571149/icl_fav_on.svg) center no-repeat;
    background-size: 15px 15px
    }
.available-app-favorite-button.off {
    background: url(icons-20571149/icl_fav.svg) center no-repeat;
    background-size: 15px 15px
    }
.available-app-favorite-button.off:hover {
    background: url(icons-20571149/icl_fav_hover.svg) center no-repeat;
    background-size: 15px 15px
    }
.no-items-label {
    margin-left: 11px;
    color: #8a8a8a;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px
    }
.separator {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #ccc;
    margin: 0 0;
    padding: 0;
    height: 0
    }
.panel-toggle-tab {
    position: fixed;
    left: 0;
    margin: 0;
    z-index: 25
    }
.sidebar-out {
    left: 286px
    }
.pointer-cursor {
    cursor: pointer
    }
.resize-cursor {
    cursor: ns-resize !important
    }
.ng-hide + .panel-toggle-tab {
    left: 0
    }
.menu {
    position: fixed;
    border: 1px solid #c3c3c3;
    background-color: #fff;
    z-index: 100
    }
.menu.global-context {
    left: 280px;
    top: 14px;
    width: 160px;
    position: absolute
    }
.menu.item-context {
    left: 270px;
    top: 330px;
    width: 160px
    }
.triangle {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff;
    display: block;
    width: 0;
    z-index: 1;
    left: -10px;
    top: 3px
    }
.triangle-border {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #c3c3c3;
    display: block;
    width: 0;
    z-index: 0;
    left: -11px;
    top: 3px
    }
.menu-item {
    height: 30px;
    cursor: default
    }
.menu-item:not(.inactive):hover {
    background-color: #dcdcdc;
    cursor: pointer
    }
.multimon-preview {
    display: block;
    margin: auto;
    margin-top: 25px
    }
.menu-content {
    margin: 0
    }
.menu-item-title {
    width: 115px;
    padding-top: 8px;
    padding-right: 8px;
    vertical-align: middle;
    float: right;
    text-align: left;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px;
    font-weight: 300;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
    }
#sidebar-usb-button .disabled {
    opacity: 0.5 !important;
    cursor: default !important
    }
.menu-context-item-title {
    height: 22px;
    padding-top: 8px;
    padding-left: 20px;
    vertical-align: middle;
    text-align: left;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px;
    font-weight: 300;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
    }
.menu-item-icon {
    margin-top: 5px;
    margin-left: 5px;
    width: 20px;
    height: 20px
    }
.icon-button {
    width: 29px;
    height: 29px;
    border: 1px solid #888;
    border-radius: 4px;
    cursor: pointer
    }
.icon-button.disable {
    opacity: 0.5 !important;
    cursor: default !important
    }
.icon-button-hover:hover {
    background-color: #dcdcdc !important
    }
.icon-button.disable:hover {
    background-color: #f5f5f5 !important
    }
.no-disable-hover.disable:hover {
    background-color: #249bd5 !important
    }
.ui-clipboard-icon {
    display: inline-block
    }
.icon-keyboard-image {
    background: url(icons-20571149/icon-keyboard.svg) center no-repeat #f5f5f5
    }
.icon-button-trackpad {
    background: url(icons-20571149/gesture-trackpad.svg) center no-repeat #f5f5f5;
    background-size: 24px 24px
    }
.icon-button-nativetouch {
    background: url(icons-20571149/gesture-nativetouch.svg) center no-repeat #f5f5f5;
    background-size: 21px 21px
    }
.notification-trackpad {
    background: url(icons-20571149/notification-trackpad.png) center no-repeat #000;
    opacity: 0.75
    }
.notification-nativetouch {
    background: url(icons-20571149/notification-nativetouch.png) center no-repeat #000;
    opacity: 0.75
    }
.ui-fileTransfer-icon {
    display: inline-block
    }
.icon-settings-image {
    background: url(icons-20571149/cog-line.svg) center no-repeat;
    background-size: 14px 14px;
    float: left;
    margin-top: 8px
    }
.icon-fullscreen-image {
    background: url(icons-20571149/icl_fullscreen_on.svg) center no-repeat;
    background-size: 14px 14px;
    float: left;
    margin-top: 8px
    }
.icon-quit-fullscreen-image {
    background: url(icons-20571149/icl_quit_fullscreen.svg) center no-repeat;
    background-size: 16px 16px;
    float: left;
    margin-top: 8px
    }
.icon-user-image {
    background: url(icons-20571149/user-line.svg) center no-repeat;
    background-size: 14px 14px;
    float: left;
    margin-top: 8px
    }
.icon-usb-image {
    background: url(icons-20571149/icon-usb.svg) center no-repeat;
    float: left
    }
.icon-usb-invalid-image {
    background: url(icons-20571149/icon-usb-invalid.png) center no-repeat;
    float: left
    }
.icon-about-image {
    background: url(icons-20571149/info-standard-line.svg) center no-repeat;
    background-size: 14px 14px;
    float: left;
    margin-top: 8px
    }
.icon-gesture-help-image {
    background: url(icons-20571149/gesture-nativetouch.svg) center no-repeat;
    background-size: 15px 15px;
    float: left;
    margin-top: 8px
    }
.icon-key-mapping-image {
    background: url(icons-20571149/icon-keyboard.svg) center no-repeat;
    background-size: 15px 15px;
    float: left;
    margin-top: 8px
    }
.icon-help-image {
    background: url(icons-20571149/desktop-icon-help.png) center no-repeat;
    float: left
    }
.icon-context-menu-image {
    float: right
    }
.ui-contextMenu-icon {
    display: inline-block;
    margin-top: 1px;
    margin-left: -1px
    }
.ui-contextMenu-icon-two {
    display: inline-block;
    margin-left: 4px;
    margin-top: 5px
    }
.icon-close-app-image {
    background: url(icons-20571149/icon-close.png) center no-repeat;
    float: right
    }
.icon-close-running-window {
    background: url(icons-20571149/icon-close.png) center no-repeat;
    background-size: 10px 10px;
    border: 0;
    float: right
    }
.ui-cad-icon {
    display: inline-block
    }
.icon-reset-image {
    background: url(icons-20571149/icl_reset.svg) center no-repeat;
    background-size: 16px 16px;
    float: left;
    margin-top: 8px
    }
.icon-restart-image {
    background: url(icons-20571149/restart-line.svg) center no-repeat;
    background-size: 14px 14px;
    margin-top: 8px;
    float: left
    }
.icon-close-desktop-image {
    background: url(icons-20571149/window-close-line.svg) center no-repeat;
    background-size: 16px 18px;
    margin-top: 8px;
    float: left
    }
.icon-logoff-desktop-image {
    background: url(icons-20571149/logout-line.svg) center no-repeat;
    background-size: 14px 14px;
    float: left;
    margin-top: 8px
    }
.icon-connect-image {
    background: url(icons-20571149/icon-connect-image.svg) center no-repeat;
    background-size: 14px 14px;
    float: left;
    margin-top: 8px
    }
.icon-up-arrow-image {
    background: url(icons-20571149/icon-up.png) center no-repeat;
    background-size: 12px 7px;
    width: 25px;
    height: 15px
    }
.icon-up-arrow-image:hover {
    background: url(icons-20571149/icon-up-hover.png) center no-repeat;
    background-size: 12px 7px
    }
.sidebar-tab-image {
    background: url(icons-20571149/tab2x.svg);
    background-size: 20px 64px;
    width: 20px;
    height: 64px;
    z-index: 19
    }
.desktop-item-icon {
    background: url(icons-20571149/default_desktop_icon.svg) center no-repeat;
    width: 28px;
    height: 28px;
    padding: 6px 6px;
    display: inline-block
    }
.app-image {
    width: 16px;
    height: 16px;
    margin-right: 4px
    }
.nonready-icon {
    opacity: 0.8
    }
.imgNotification {
    position: fixed !important;
    min-width: 150px;
    min-height: 150px;
    max-width: 300px;
    max-height: 300px;
    z-index: 999
    }
@media (max-width: 440px) {
    .menu.global-context {
        left: 170px;
        top: 54px;
        width: 160px
        }
    .global-context .triangle {
        border-width: 0 10px 10px 10px;
        border-color: #fff transparent;
        left: 75px;
        top: -10px
        }
    .global-context .triangle-border {
        border-width: 0 10px 10px 10px;
        border-color: #c3c3c3 transparent;
        left: 75px;
        top: -11px
        }
    }
.performance-tracker-bar {
    float: right
    }
.perf-button {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer
    }
.icon-button.perf-image {
    float: left;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
    }
#clipboard {
    position: relative
    }
#clipboard:hover #clipboard-tooltip {
    visibility: visible
    }
#clipboard-tooltip {
    visibility: hidden;
    position: absolute;
    top: 35px;
    left: 5px;
    background: #eee;
    width: 200px;
    font-size: 12px;
    border: 1px solid darkgray;
    padding: 10px;
    border-radius: 3px;
    z-index: 9999
    }
.clipboardClickable {
    background-color: #e2e2e2 !important
    }
#chromeFileTransferOkBtn, #chromeFileTransferCancelBtn, #usbOkBtn {
    background: white;
    color: #000;
    float: right;
    padding: 2px 15px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 3px;
    margin-right: 3px
    }
#clipboardOkBtn {
    margin-left: 260px
    }
.sidebar-panel .app-item-action {
    /* position: absolute;
       right: 5px;
       top: 80px; */
    width: 16px;
    height: 16px;
    border: none;
    background: url(icons-20571149/icon-overflow.svg) no-repeat
    }
.available-app-favorite-button {
    float: left
    }
.contextmenu-button {
    float: left;
    margin-top: 12px
    }
#sidebar-container .context-menu-container button {
    padding-left: 20px;
    box-sizing: border-box
    }
.running-app {
    width: 248px;
    margin-right: 0;
    position: relative
    }
.ngdialog .ngdialog-content {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 15px;
    color: #535353;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%)
    }
.ngdialog.settings-window {
    overflow: inherit
    }
.dialog-title {
    width: 100%;
    font-weight: bold;
    display: inline-block;
    padding: 24px 24px 10px 24px;
    font-family: "Helvetica Neue", Helvetica, Arial, "OpenSans-Bold", sans-serif;
    font-size: 21px;
    color: #000;
    letter-spacing: 0;
    line-height: 22px;
    text-align: left
    }
.warningInvalidVal {
    color: red
    }
.dialog-content {
    background-color: #fff;
    overflow: auto;
    padding: 10px 13px 25px 13px;
    display: block
    }
.dialog-check-box {
    background-color: #fff;
    overflow: auto;
    padding: 0 0 0 20px;
    display: block
    }
.dialog-edit-box {
    background-color: #fff;
    overflow: auto;
    padding: 10px 10px 10px 20px;
    display: block
    }
.dialog-check-box-label {
    padding: 0 0 0 8px
    }
.dialog-content a {
    color: #2e6ca2;
    text-decoration: none
    }
.dialog-content a:focus {
    text-decoration: underline
    }
.dialog-bold-text {
    font-weight: bold
    }
.dialog-button-row {
    background-color: #fff;
    border-top: 1px solid #e2e2e2;
    height: 80px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    padding: 20px 0
    }
.dialog-button-row > button {
    border: none
    }
.dialog-button-row > a {
    text-decoration: none
    }
.about-dialog-content {
    padding: 0 20px;
    font-size: 12px
    }
.about-dialog-more {
    padding: 0 20px;
    font-size: 12px
    }
.clipboard-help-dialog-content {
    padding: 0 20px;
    font-size: 14px;
    white-space: pre-wrap;
    line-height: initial
    }
.bold-text {
    font-weight: bold
    }
.about-dialog-product-name-text {
    font-size: 16px
    }
.about-dialog-logo {
    float: left;
    padding: 0;
    background: url(icons-20571149/horizon-icon.svg) top left no-repeat;
    background-size: 100px 100px;
    width: 100px;
    height: 210px;
    margin: 20px 20px 20px 0
    }
.modal-window-overlay {
    /* A dark translucent div that covers the whole screen */
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7
    }
.modal-window {
    /* A centered div above the overlay with a box shadow. */
    z-index: 10000;
    position: absolute;
    /* Center the dialog */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 2px
    }
.modal-window-close-button {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 0;
    background: url(icons-20571149/icon-close.png) center no-repeat #eee;
    background-size: 10px 10px;
    display: inline-block
    }
.modal-window-title {
    left: 0;
    vertical-align: middle;
    width: 100%;
    color: #535353;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    line-height: 30px;
    padding: 5px 0
    }
.modal-title-separator {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #ccc;
    margin: 0 0;
    padding: 0;
    height: 0;
    width: 100%;
    left: 0
    }
.modal-content {
    width: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px;
    color: #535353;
    border-radius: 8px;
    max-height: 90%
    }
.reauth-window .modal-content {
    width: 88%;
    margin: 0 auto
    }
.modal-button {
    float: right;
    font-size: 13px;
    color: white;
    height: 33px;
    line-height: 33px;
    width: 135px;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
    text-align: center
    }
.modal-submit-button {
    margin: 20px 0 20px 0;
    background-color: #349AD5
    }
.settings-container {
    margin: 0 20px;
    line-height: 20px
    }
.settings-fix-height {
    height: 363px
    }
.setting-top-margin {
    margin-top: 5px
    }
.settings-container > button {
    border: none
    }
.settings-container .settings-separator {
    margin-left: 0;
    width: 385px
    }
.settings-separator {
    margin: 15px 20px;
    height: 1px;
    background: #D9E4EA
    }
.trust-app-separator {
    margin-left: 0;
    margin-bottom: 15px;
    height: 1px;
    background: #D9E4EA;
    margin-top: 35px;
    width: 385px
    }
.settings-label {
    font-size: 17px;
    vertical-align: middle;
    display: block
    }
.settings-toggle-container {
    float: right
    }
.add-trusted-apps-container {
    float: right
    }
.change-default-fa-app-container {
    margin-top: 10px;
    margin-left: 10px
    }
.change-default-fa-app-btn {
    width: 100px;
    height: 30px;
    margin-left: 90px
    }
.fa-select-title {
    float: left;
    margin-top: 5px
    }
.filtered-fa-app {
    margin-top: 10px
    }
.fa-app-select {
    float: left;
    margin-top: 13px;
    margin-left: 5px
    }
.hidecontentlabel {
    font-size: 0
    }
.settings-switch-label {
    font-size: 12px;
    font-weight: bold;
    color: #363636;
    display: inline-block;
    height: 32px;
    vertical-align: middle
    }
.extension-name {
    margin-top: 20px;
    font-size: 15px
    }
.settings-text {
    font-size: 12px;
    font-family: "OpenSans", Helvetica, Arial, "Lucida Grande", sans-serif;
    display: block;
    width: 239px;
    color: #495A67;
    margin-top: 6px
    }
.log-path-text {
    width: 380px
    }
.icon-and-name-container {
    cursor: pointer;
    float: left
    }
.session-ops-window-text {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 15px;
    color: #363636;
    margin: 0 10px;
    word-wrap: break-word;
    white-space: pre-wrap
    }
.session-ops-window-text.warning {
    font-size: 12px;
    font-weight: bold;
    margin-top: 0;
    width: 370px
    }
.modal-button-base.disable {
    opacity: 0.5 !important;
    cursor: default !important
    }
.modal-button-base {
    font-family: "SFProText-Semibold", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px;
    color: white !important;
    height: 36px;
    padding: 0 18px;
    line-height: 36px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0;
    min-width: 77px
    }
.modal-button-base:visited {
    color: white !important
    }
.modal-button-left {
    float: left
    }
.modal-button-right {
    float: right;
    margin-right: 33px
    }
.modal-button-session-management-center {
    float: right;
    border: none
    }
.modal-button-base.disable {
    opacity: 0.5 !important;
    cursor: default !important
    }
.modal-button-blue {
    background-color: #0095D3
    }
.modal-button-blue:hover {
    background-color: #3da9de
    }
.modal-button-blue:focus, .modal-button-grey:focus {
    outline: #001C4B solid
    }
.modal-button-grey {
    background-color: #696a6f;
    margin-right: 10px
    }
.modal-button-grey:hover {
    background-color: #7a7b80
    }
.rightMargin {
    margin-right: 10px
    }
.modal-button-reset {
    margin-top: 0;
    margin-left: 20px;
    float: right
    }
.modal-button-reset.disable:hover {
    background-color: #249bd5
    }
.modal-button-set {
    margin-top: 0;
    margin-left: 20px;
    float: right
    }
.modal-button-restore {
    font-family: "SFProText-Semibold", Helvetica, Arial, "Lucida Grande", sans-serif;
    color: white !important;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0;
    border-radius: 10px
    }
.modal-button-add-display {
    margin: 0 auto;
    height: 50px;
    text-align: center;
    display: table;
    line-height: 50px;
    margin-top: 20px;
    margin-bottom: 5px
    }
.modal-button-add-display.disable:hover {
    background-color: #249bd5
    }
.toggle-opt {
    display: inline-block;
    height: 26px;
    width: 42px;
    overflow: hidden
    }
.modal-dialog-toggle-opt {
    display: block;
    height: 24px;
    float: right;
    outline: 0
    }
.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
    box-sizing: border-box
    }
.modal-dialog-toggle-opt .tgl + .tgl-btn {
    outline: 0;
    display: inline-block;
    width: 39px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-right: 20px;
    margin-top: 7px
    }
.modal-dialog-toggle-opt .tgl-light + .tgl-btn {
    border-radius: 2em;
    border: 1px solid #949494;
    border-radius: 11.62px
    }
.modal-dialog-toggle-opt .tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
    position: relative;
    display: inline-block;
    content: "";
    width: 19px;
    height: 100%;
    margin-bottom: 7px
    }
.tgl + .tgl-btn {
    outline: 0;
    display: inline-block;
    width: 39px;
    height: 24px;
    position: relative;
    cursor: pointer
    }
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
    position: relative;
    display: inline-block;
    content: "";
    width: 21px;
    height: 100%
    }
.tgl + .tgl-btn:after {
    left: 0
    }
.tgl + .tgl-btn:before {
    display: none
    }
.tgl:checked + .tgl-btn:after {
    left: 50%
    }
.tgl-light + .tgl-btn {
    border-radius: 2em;
    border: 1px solid #949494;
    border-radius: 11.62px
    }
.tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #FFF;
    border: 0 solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.05)
    }
.tgl-light:checked + .tgl-btn {
    background: #61A600
    }
.option-container {
    height: 20px;
    margin-top: 8px
    }
.option-container.small-top-margin {
    margin-top: 2px
    }
.right-option {
    width: 60%;
    float: right;
    height: 20px
    }
.left-inline-text {
    font-size: 12px;
    font-weight: bold;
    float: left;
    width: 40%;
    text-align: left;
    line-height: 20px
    }
.multi-launch-title {
    margin-left: 5%;
    margin-right: 5%
    }
.multi-launch-setting-dialog {
    margin-left: 5%;
    margin-right: 5%;
    width: 400px;
    height: 200px;
    border: 1px solid black;
    overflow: scroll
    }
.multi-launch-application {
    width: 350px;
    margin-top: 4%;
    margin-left: 5%
    }
.multi-launch-app-img {
    width: 16px;
    height: 16px
    }
.gestures-container {
    min-height: 47px;
    height: auto;
    margin: 20px 20px 10px 20px
    }
.gesture-category {
    background-color: #f2f2f6;
    color: #6b6b6e;
    font-size: 14px;
    height: auto;
    margin: 0 -13px;
    padding: 35px 0 0 10px
    }
.gesture-category-nativeTouchMode {
    padding: 15px 10px 10px 10px
    }
.gesture-img {
    display: inline-block;
    width: 63px;
    height: 47px;
    vertical-align: middle
    }
.gesture-content {
    display: inline-block;
    margin-left: 20px;
    width: calc(100% - 20px - 63px);
    vertical-align: middle
    }
.gesture-name {
    font-size: 16px;
    font-weight: bold
    }
.gesture-description {
    font-size: 12px
    }
.gesture-help-window .modal-content {
    max-height: 350px !important
    }
.gesture-click-tap {
    background: url(icons-20571149/gesture-click-tap.png) center no-repeat
    }
.gesture-right-click {
    background: url(icons-20571149/gesture-right-click.png) center no-repeat
    }
.gesture-drag {
    background: url(icons-20571149/gesture-drag.png) center no-repeat
    }
.gesture-tapthree {
    background: url(icons-20571149/gesture-tapthree.png) center no-repeat
    }
.gesture-accurate-drag {
    background: url(icons-20571149/gesture-accurate-drag.png) center no-repeat
    }
.gesture-scroll {
    background: url(icons-20571149/gesture-scroll.png) center no-repeat
    }
.gesture-touchpad {
    background: url(icons-20571149/gesture-trackpad.svg) -4px -5px no-repeat;
    background-size: 63px 63px
    }
.key-mapping-primary {
    position: relative
    }
.key-mapping-title {
    display: flex;
    background-color: #f7f7f7;
    border: 1px solid;
    border-bottom: 0
    }
.key-mapping-title .title {
    width: 35%
    }
.key-mapping-title .title:nth-child(1) {
    width: 20%;
    padding-left: 20px
    }
.key-mapping-content {
    height: 160px;
    overflow-y: auto;
    border-top: 0;
    border: 1px solid;
    scrollbar-width: none
    }
.key-mapping-content::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
    }
.key-mapping-content {
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
    }
.key-mapping-row {
    display: flex
    }
.key-mapping-row:hover {
    background-color: #F0F0F0
    }
.key-mapping-row.isChosen {
    background-color: #61bbe1
    }
.key-mapping-row.isDefault {
    cursor: default;
    background-color: #d1d1d4
    }
.key-mapping-checkbox {
    width: 20%;
    padding-left: 33px
    }
.key-mapping-shortcut {
    width: 35%;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden
    }
.duplicate-warn {
    width: 10%;
    background: url(icons-20571149/warning32x.png) center no-repeat;
    background-size: 15px 15px
    }
.key-mapping-button-row {
    padding-top: 5px;
    height: 30px
    }
.key-mapping-button-row button {
    border: 1px solid gray;
    border-radius: 2px
    }
.button-minus-plus {
    position: absolute;
    width: 22.5px;
    height: 22.5px;
    bottom: 1px
    }
.horizontal {
    position: relative;
    background-color: black;
    width: 8px;
    height: 2px
    }
.vertical {
    position: relative;
    background-color: black;
    width: 8px;
    height: 2px;
    transform: rotate(90deg);
    bottom: 1px
    }
#addKeyMapping {
    left: 25px
    }
#addKeyMapping .horizontal {
    top: 1px
    }
.key-mapping-button-row button:nth-child(3) {
    position: absolute;
    right: 0
    }
.origin-Modifier-Keys, .mapping-Modifier-Keys {
    display: inline-block;
    border: 1px solid;
    border-radius: 6px
    }
.key-mapping-sub {
    position: relative;
    height: 230px;
    margin-left: 20px;
    margin-top: -25px
    }
.key-mapping-originShortcut {
    position: absolute;
    width: 385px;
    top: 10px
    }
.key-mapping-mappingShortcut {
    position: absolute;
    width: 385px;
    top: 90px
    }
.key-mapping-sub button {
    border: 0;
    background-color: white
    }
.key-mapping-sub button:focus {
    outline: none
    }
.origin-Modifier-Key:nth-child(1) button, .mapping-Modifier-Key:nth-child(1) button {
    border-radius: 6px 0 0 6px
    }
.origin-Modifier-Key:nth-child(4) button, .mapping-Modifier-Key:nth-child(4) button {
    border-radius: 0 6px 6px 0
    }
.origin-NonModifier-Key, .mapping-NonModifie-Key {
    display: inline-block;
    position: absolute;
    right: 0
    }
.origin-NonModifier-Key-input, .mapping-NonModifier-Key-input {
    width: 150px;
    height: 25px
    }
.key-mapping-sub-footer button[disabled] {
    background-color: #999
    }
.key-mapping-fromTo {
    margin: 10px 0 10px 0;
    font-size: 18px;
    font-weight: 600
    }
.vertical-line {
    display: inline-block;
    height: 14px;
    width: 1px;
    border-left: 1px solid #ccc;
    transform: translatey(2px)
    }
.warning-message {
    position: absolute;
    width: 400px;
    top: 158px;
    margin-top: 20px;
    color: red
    }
.key-mapping-window .modal-content {
    width: 500px
    }
@media (max-width: 440px) {
    .modal-dialog {
        width: 340px !important;
        margin: auto !important
        }
    .modal-dialog-scrollable > .modal-content {
        height: 470px !important;
        border-radius: 5px
        }
    .modal-title {
        padding: 20px 20px 10px 20px;
        font-size: 17px;
        line-height: 24px
        }
    .modal-footer {
        height: 76px
        }
    .modal-button-right {
        margin-right: 20px
        }
    .about-window .modal-body {
        height: 346px
        }
    .about-dialog-logo {
        position: absolute;
        left: 27.25px;
        top: 8.25px;
        width: 49.5px;
        height: 49.5px;
        margin: 0;
        background-size: 49.5px 49.5px
        }
    .about-dialog-content-right {
        position: absolute;
        top: 2px;
        left: 96px;
        width: 224px;
        line-height: 16px
        }
    .about-dialog-product-name-text {
        display: inline-block;
        margin-bottom: 8px;
        line-height: 14px;
        letter-spacing: -0.0041em
        }
    .settings-label {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.0041em;
        color: #000
        }
    .settings-text {
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 10px;
        letter-spacing: -0.0041em;
        color: #444
        }
    .settings-container {
        margin: 0 4px
        }
    .settings-separator {
        margin: 12px 4px
        }
    }
@media (max-width: 440px) {
    .modal-dialog {
        width: 340px !important;
        margin: auto !important
        }
    .modal-dialog-scrollable > .modal-content {
        height: 470px !important;
        border-radius: 5px
        }
    .modal-title {
        padding: 20px 20px 10px 20px;
        font-size: 17px;
        line-height: 24px
        }
    .modal-footer {
        height: 76px
        }
    .modal-button-right {
        margin-right: 20px
        }
    .about-window .modal-body {
        height: 346px
        }
    .about-dialog-logo {
        position: absolute;
        left: 27.25px;
        top: 8.25px;
        width: 49.5px;
        height: 49.5px;
        margin: 0;
        background-size: 49.5px 49.5px
        }
    .about-dialog-content-right {
        position: absolute;
        top: 2px;
        left: 96px;
        width: 224px;
        line-height: 16px
        }
    .about-dialog-product-name-text {
        display: inline-block;
        margin-bottom: 8px;
        line-height: 14px;
        letter-spacing: -0.0041em
        }
    .settings-label {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.0041em;
        color: #000
        }
    .settings-text {
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 10px;
        letter-spacing: -0.0041em;
        color: #444
        }
    .settings-container {
        margin: 0 4px
        }
    .settings-separator {
        margin: 12px 4px
        }
    }