/*
 * Copyright (C) 2012 IP Labs GmbH <http://www.iplabs.de/>
 * All rights reserved.
 */

.jade-ui-component
{
    font-family: Arial, sans-serif;
    font-size: 13px;
}

/*** Styles for global mouse cursor forcing *****************************/

.jade-ui-cursor-row-resize
{
    cursor: row-resize !important;
}

.jade-ui-cursor-col-resize
{
    cursor: col-resize !important;
}

/*** Hiding ActiveX and Java applets when opening popups like dialogs ***/
.jade-ui-hide-heavy-elements object[type="application/x-java-applet"],
.jade-ui-hide-heavy-elements object[classid]
{
    visibility: hidden;
}

/*** Don't hide CanvasX applets ***/
.jade-ui-hide-heavy-elements canvas > object[classid]
{
    visibility: visible;
}

#jade-java-info-applet
{
    visibility: visible;
}

/*** Style for the modal layer ******************************************/

.jade-ui-modal-layer
{
    background: #000;
    opacity: 0.5;
    filter: alpha(opacity = 50);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
}


/*** Style for the auto-close layer *************************************/

.jade-ui-auto-close-layer
{
    background: #000; /* Necessary for IE */
    opacity: 0;
    filter: alpha(opacity = 0);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
}

/*** Styles for Splitter component **************************************/

.jade-ui-splitter
{
    position: relative;
}

.jade-ui-splitter > *
{
    position: absolute !important;
}

.jade-ui-splitter > .divider
{
    width: 8px;
    height: 8px;
}

.jade-ui-splitter.horizontal > .divider
{
    cursor: col-resize;
    border-left: solid #fff 1px;
    border-right: solid #888 1px;
}

.jade-ui-splitter.vertical > .divider
{
    cursor: row-resize;
    border-top: solid #fff 1px;
    border-bottom: solid #888 1px;
}


/*** Styles for BorderLayout component **********************************/

.jade-ui-borderlayout
{
    position: relative;
}

.jade-ui-borderlayout .north,
.jade-ui-borderlayout .south,
.jade-ui-borderlayout .west,
.jade-ui-borderlayout .east,
.jade-ui-borderlayout .center
{
    position: absolute;
}


/*** Styles for Slider component ****************************************/

.jade-ui-slider
{
    position: relative;
    display: block;
    border: 0;
    overflow: hidden;
    touch-action: none;
    -ms-touch-action: none;
}

.jade-ui-slider.horizontal
{
    width: 150px;
    height: 20px;
}

.jade-ui-slider.vertical
{
    width: 20px;
    height: 150px;
}

.jade-ui-slider .sub-page
{
    position: absolute;
    border: 1px solid #000;
}

.jade-ui-slider.horizontal .sub-page
{
    height: 4px;
    border-radius: 4px 0 0 4px;
    border-right: 0;
    margin-left: 5px;
    cursor: pointer;
}

.jade-ui-slider.vertical .sub-page
{
    width: 4px;
    border-radius: 0 0 4px 4px;
    border-top: 0;
    margin-bottom: 5px;
    cursor: row-resize;
}

.jade-ui-slider .add-page
{
    position: absolute;
    border: 1px solid #000;
    background: #ccc;
}

.jade-ui-slider.horizontal .add-page
{
    height: 4px;
    border-radius: 0 4px 4px 0;
    border-left: 0;
    margin-right: 5px;
    cursor: pointer;
}

.jade-ui-slider.vertical .add-page
{
    width: 4px;
    border-radius: 4px 4px 0 0;
    border-bottom: 0;
    margin-top: 5px;
    cursor: row-resize;
}

.jade-ui-slider .handle
{
    margin: 0;
    padding: 0;
    position: absolute;
    box-sizing: content-box;
    border: 1px solid #444;
    border-radius: 4px;
    background: #ccc;
}

.jade-ui-slider.horizontal .handle
{
    height: 18px;
    width: 8px;
    top: 0;
    left: 0;
    cursor: pointer;
}

.jade-ui-slider.vertical .handle
{
    height: 8px;
    width: 18px;
    left: 0;
    bottom: 0;
    cursor: row-resize;
}

.jade-ui-slider.disabled .sub-page
{
    border-color: #888;
    background: #aaa;
}

.jade-ui-slider.disabled .add-page
{
    border-color: #888;
}

.jade-ui-slider.disabled .handle
{
    border-color: #888;
}


/*** Styles for objects (Java, ActiveX, Flash) ******************************/

.jade-ui-applet,
.jade-ui-activex,
.jade-ui-flash
{
    display: block;
    background: #fff;
    overflow: hidden;
}

.jade-ui-applet .noJava,
.jade-ui-activex > *,
.jade-ui-flash > *
{
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.jade-ui-applet a
{
    color: #888;
    text-decoration: underline;
}

/*** Styles for Popup component *****************************************/

.jade-ui-popup
{
    position: absolute;
    display: none;
    z-index: 10000;
}


/*** Styles for Button component ****************************************/

.jade-ui-button
{
    border-width: 1px;
    border-style: solid;
    border-color: #a0a0a0;
    border-radius: 2px;
    margin: 0;
    display: inline-block;
    padding: 2px 8px;
    color: #000;
    cursor: default;
    text-align: center;
    background: #f7f7f7;
    background: -moz-linear-gradient(top, #f7f7f7 0%, #dddddd 100%); /* FF3.6+ */
    background: -webkit-linear-gradient(top, #f7f7f7 0%,#dddddd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f7f7f7 0%,#dddddd 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f7f7f7 0%,#dddddd 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f7f7f7 0%,#dddddd 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#dddddd',GradientType=0 ); /* IE6-9 */
    touch-action: none;
    -ms-touch-action: none;
}

.jade-ui-button.hover
{
    border-color: #444;
}

.jade-ui-button.active
{
    border-color: #9b9b9b;
    background: #dddddd;
    background: -moz-linear-gradient(top, #dddddd 0%, #f7f7f7 100%); /* FF3.6+ */
    background: -webkit-linear-gradient(top, #dddddd 0%,#f7f7f7 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #dddddd 0%,#f7f7f7 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #dddddd 0%,#f7f7f7 100%); /* IE10+ */
    background: linear-gradient(to bottom, #dddddd 0%,#f7f7f7 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#f7f7f7',GradientType=0 ); /* IE6-9 */
}

.jade-ui-button.disabled
{
    color: #808080;
    border-color: #ccc;
}


/*** Styles for Toggle Button component *********************************/

.jade-ui-button.down
{
    border-color: #9b9b9b;
    background: #dddddd;
    background: -moz-linear-gradient(top, #dddddd 0%, #f7f7f7 100%); /* FF3.6+ */
    background: -webkit-linear-gradient(top, #dddddd 0%,#f7f7f7 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #dddddd 0%,#f7f7f7 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #dddddd 0%,#f7f7f7 100%); /* IE10+ */
    background: linear-gradient(to bottom, #dddddd 0%,#f7f7f7 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#f7f7f7',GradientType=0 ); /* IE6-9 */
}


/*** Styles for ComboBox component *********************************/

.jade-ui-combobox
{
    position: relative;
    padding: 0 16px 0 0;
}

.jade-ui-combobox > .jade-ui-textfield {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #000;
    background: #fff;
    border: 0;
    margin: 0;
    padding: 2px 8px;
    box-sizing: border-box;
    display: inline-block;
    outline: none;
    width: 100%;
    border-right: 1px solid #a0a0a0;
}

.jade-ui-combobox.disabled > .jade-ui-textfield {
    border-color: #ccc;
}

.jade-ui-combobox > .jade-ui-textfield[readonly] {
    background: transparent;
    border-right-color: transparent;
}

.jade-ui-combobox::after
{
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    margin-top: -2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000;
}

.jade-ui-combobox.disabled::after {
    border-top-color: #ccc;
}

.jade-ui-combobox-popup
{
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: default;
    border: 1px solid #a0a0a0;
}

.jade-ui-comboboxitem
{
    padding: 2px 8px;
    white-space: nowrap;
}

.jade-ui-comboboxitem.selected
{
    background-color: #eee;
}

/*** Styles for Dialog component ****************************************/

.jade-ui-dialog
{
    position: fixed;
    border: 2px solid #ccc;
    border-radius: 6px 6px 0 0;
    box-shadow: 0px 1px 16px 0px rgb(0, 0, 0);
    z-index: 10000;
    display: none;
}

.jade-ui-dialog > h1
{
    margin: 0;
    padding: 4px 8px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 13px;
    color: #000;
    text-align: center;
    background: #ccc;
}

.jade-ui-dialog > h1 > .close-button
{
    position: absolute;
    display: none;
    right: 10px;
    top: 6px;
    width: 10px;
    height: 10px;
    background-image: url(jade/ui/buttons/close-dialog.png);
    cursor: pointer;
}

.jade-ui-dialog.closable > h1 > .close-button
{
    display: block;
}

.jade-ui-dialog > div.content
{
    position: relative;
    padding: 8px;
    overflow: auto;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.jade-ui-dialog > div.close-button
{
    position: absolute;
    display: none;
    padding: 0;
    right: 10px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: url(jade/ui/buttons/close-dialog.png) no-repeat;
    cursor: pointer;
}

.jade-ui-dialog.closable > div.close-button
{
    display: block;
}


.jade-ui-dialog > div.content p
{
    margin: 0;
    padding: 0 0 1em 0;
}

.jade-ui-dialog > div.content p:last-child
{
    padding: 0;
}

.jade-ui-dialog > div.buttons
{
    border-top: 1px solid #ccc;
    background: #eee;
    text-align: right;
    padding: 8px;
}

.jade-ui-dialog > div.buttons .jade-ui-button
{
    margin-left: 8px;
}


/*** Accordion **********************************************************/

.jade-ui-accordion
{
    position: relative;
    list-style-type: none;
    border: 1px solid #ccc;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.jade-ui-accordion > li
{
    margin: 0;
    padding: 0;
    position: relative;
}

.jade-ui-accordion > li > h1
{
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 13px;
    background: #eee;
    margin: 0;
    padding: 5px 10px;
    cursor: pointer;
    border-top: 1px solid #ccc;
}

.jade-ui-accordion > li:first-child > h1
{
    border-top: none;
}

.jade-ui-accordion.collapsed > li:last-child > h1,
.jade-ui-accordion > li.expanded > h1,
.jade-ui-accordion > li.expanding > h1,
.jade-ui-accordion > li.collapsing > h1
{
    border-bottom: 1px solid #ccc;
}

.jade-ui-accordion > li > div
{
    position: relative;
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: auto;
    display: none;
}

.jade-ui-accordion > li.expanded > div,
.jade-ui-accordion > li.collapsing > div
{
    display: block;
}

.jade-ui-accordion > li.collapsing > div,
.jade-ui-accordion > li.expanding > div
{
    min-height: 0 !important;
}


/*** Tree ***************************************************************/

.jade-ui-tree
{
    position: relative;
    overflow: auto;
}

.jade-ui-tree ul
{
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: normal;
}

.jade-ui-tree li
{
    position: relative;
    margin: 0;
    padding: 0 0 0 13px;
}

.jade-ui-tree span
{
    position: relative;
    display: inline-block;
    cursor: default;
    padding: 1px 2px;
    margin: 2px 2px;
}

.jade-ui-tree li.selected > span
{
    background-color: #eee;
    border: 1px solid #dadada;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 1px 1px;
}

.jade-ui-tree li.collapsed > ul,
.jade-ui-tree li.expanding > ul
{
    display: none;
}

.jade-ui-tree li.expanded > ul,
.jade-ui-tree li.collapsing > ul
{
    display: block;
}

.jade-ui-tree li > .expander
{
    width: 11px;
    height: 1.2em;
    position: absolute;
    top: 2px;
    left: 0;
    cursor: pointer;
    background-position: 0 center;
    background-repeat: no-repeat;
}

.jade-ui-tree li.expanded > .expander,
.jade-ui-tree li.expanding > .expander
{
    background-image: url(jade/ui/expanders/minus.png);
}

.jade-ui-tree li.collapsing > .expander,
.jade-ui-tree li.collapsed > .expander
{
    background-image: url(jade/ui/expanders/plus.png);
}

.jade-ui-tree li.empty > .expander
{
    display: none;
}

/*** Menu ***************************************************************/

.jade-ui-menu
{
    background: #f8f8f8;
    position: relative;
    width: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    border: solid 1px #ddd;
}

.jade-ui-menuitem
{
    position: relative;
    margin: 0;
    padding: 3px 24px 3px 24px;
    color: #000;
    cursor: default;
    white-space: nowrap;
    line-height: normal;
}

.jade-ui-menuitem.submenu:after
{
    position: absolute;
    right: 8px;
    top: 2px;
    font-weight: bold;
    text-align: center;
    vertical-align: bottom;
    content: "\25b8";
}

.jade-ui-menuitem.focus
{
    background: #4a90d9;
    color: #fff;
}

.jade-ui-menuitem.disabled
{
    color: #ccc;
}

.jade-ui-menuitem.separate
{
    border-top: 1px solid #ddd;
}

.jade-ui-menucheckitem:before {
    position: absolute;
    top: 0px;
    left: 6px;
    font-size: 15px;
}

.jade-ui-menucheckitem.checked:before {
    content: "\2713";
}

/*** Tabs ***************************************************************/

.jade-ui-tabs
{
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.jade-ui-tabs > .jade-ui-tab
{
    margin: 0;
    padding: 0;
}

.jade-ui-tabs > .jade-ui-tab > h1
{
    position: absolute;
    left: 0;
    top: 0;
    background: #eee;
    margin: 0 0 0 0;
    padding: 5px 10px;
    cursor: pointer;
    border-style: solid;
    border-color: #ccc;
    border-width: 1px 1px 1px 0;
    z-index: 1;
    white-space: nowrap;
}

.jade-ui-tabs > .jade-ui-tab > h1:hover
{
    background: #f8f8f8;
}

.jade-ui-tabs > .jade-ui-tab.disabled > h1:hover
{
    background: #eee;
}

.jade-ui-tabs > .jade-ui-tab:first-child > h1
{
    border-left-width: 1px;
}

.jade-ui-tabs > .jade-ui-tab.active > h1
{
    background: #fff;
    border-bottom-width: 0;
    padding-bottom: 6px;
}

.jade-ui-tabs > .jade-ui-tab.active > h1.excess
{
    background: #fff;
    border-bottom-width: 1px;
    padding-bottom: 5px;
}

.jade-ui-tabs > .jade-ui-tab > h1.excess
{
    border-width: 1px;
    margin: -1px -1px 0 0;
    display: none;
}

.jade-ui-tabs.show-excess > .jade-ui-tab > h1.excess
{
    display: block;
}

.jade-ui-tabs.show-excess > .jade-ui-tab > h1,
.jade-ui-tabs.show-excess > .excess-button
{
    z-index: 10001;
}

.jade-ui-tabs > .jade-ui-tab.disabled > h1
{
    color: #ccc;
}

.jade-ui-tabs > .jade-ui-tab > div
{
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    border: solid 1px #ccc;
    margin: -1px 0 0 0;
    padding: 0;
    overflow: auto;
    display: none;
}

.jade-ui-tabs > .jade-ui-tab.active > div
{
    display: block;
}

.jade-ui-tabs > .excess-button
{
    position: absolute;
    background: #eee;
    right: 0;
    top: 0;
    border: 1px solid #ccc;
    border-left-width: 0;
    width: 12px;
    height: 20px;
    cursor: pointer;
}

.jade-ui-tabs > .excess-button:hover
{
    background: #f8f8f8;
}

.jade-ui-tabs > .excess-button:after
{
    position: absolute;
    width: 100%;
    bottom: 0px;
    font-weight: normal;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #444;
    vertical-align: bottom;
    content: "\25be";
}

.jade-ui-tabs.show-excess > .excess-button:after
{
    content: "\25b4";
}


/*** Styles for Progress Bar component **********************************/

.jade-ui-progressbar
{
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 5px;
    background: #fff;
    width: 150px;
    height: 10px;
}

.jade-ui-progressbar .progress
{
    position: absolute;
    display: block;
    background: #44f;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
}

.jade-ui-progressbar.indeterminate .progress
{
    width: 50px;
}

/*** Styles for browser information bar component ***************************/

.jade-ui-infobararea
{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    z-index: 10001;
}

.jade-ui-infobar
{
    position: relative;
    padding: 5px 10px;
    background: #ffffe1;
    color: #000;
    border-bottom: solid 1px #000;
    display: none;
    overflow: hidden;
}

.jade-ui-infobar .dismiss-button
{
    width: 20px;
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    background: url(jade/ui/buttons/dismiss-infobar.png) center center no-repeat;
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 10px;
    cursor: pointer;
}

/*** Styles for browser toast component ***************************/

.jade-ui-toast
{
    padding: 8px 24px;
    background: #646464;
    color: #fff;
    font-size: 16px;
    display: none;
    position: fixed;
    margin-top: 14px;
    z-index: 10002;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.25);
}

/*** Styles for browser context box component ***************************/

.jade-ui-contextbox
{
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px 20px;
    z-index: 5000;
}

.jade-ui-contextbox:after, .jade-ui-contextbox:before
{
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.jade-ui-contextbox:after
{
    border-color: rgba(255, 255, 255, 0);
}
.jade-ui-contextbox:before
{
    border-color: rgba(204, 204, 204, 0);
}

.jade-ui-contextbox.bottom
{
    margin-top: 10px;
}
.jade-ui-contextbox.bottom:after, .jade-ui-contextbox.bottom:before
{
    bottom: 100%;
    left: 50%;
}
.jade-ui-contextbox.bottom:after
{
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}
.jade-ui-contextbox.bottom:before
{
    border-bottom-color: #ccc;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-width: 11px;
    margin-left: -11px;
}

.jade-ui-contextbox.top
{
    margin-bottom: 10px;
}
.jade-ui-contextbox.top:after, .jade-ui-contextbox.top:before
{
    top: 100%;
    left: 50%;
}
.jade-ui-contextbox.top:after
{
    border-top-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}
.jade-ui-contextbox.top:before
{
    border-top-color: #ccc;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-width: 11px;
    margin-left: -11px;
}

.jade-ui-contextbox.left
{
    margin-right: 10px;

}
.jade-ui-contextbox.left:after, .jade-ui-contextbox.left:before
{
    left: 100%;
    top: 50%;
}
.jade-ui-contextbox.left:after
{
    border-left-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}
.jade-ui-contextbox.left:before
{
    border-left-color: #ccc;
    border-left-color: rgba(0, 0, 0, 0.2);
    border-width: 11px;
    margin-top: -11px;
}

.jade-ui-contextbox.right
{
    margin-left: 10px;
}
.jade-ui-contextbox.right:after, .jade-ui-contextbox.right:before
{
    right: 100%;
    top: 50%;
}
.jade-ui-contextbox.right:after
{
    border-right-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}
.jade-ui-contextbox.right:before {
    border-right-color: #ccc;
    border-right-color: rgba(0, 0, 0, 0.2);
    border-width: 11px;
    margin-top: -11px;
}


/*** Styles for Java information bar component *******************************/

.jade-ui-javainfobar
{
    padding: 0;
    height: 37px;
    border-bottom: 1px solid #000;
    background-image: url(jade/ui/javainfobar/javainfobar-icon.png);
    background-repeat: no-repeat;
    background-position: 10px bottom;
}

.jade-ui-javainfobar .message
{
    position: absolute;
    left: 101px;
    bottom: 11px;
}


/*** Styles for Spinner component ********************************************/

.jade-ui-spinner
{
    position: relative;
    display: inline-block;
    width: 100px;
}

.jade-ui-spinner .jade-ui-textfield
{
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
}

.jade-ui-spinner .jade-ui-button
{
    position: absolute;
    width: 16px;
    top: 5px;
    bottom: 5px;
    padding: 0;
}

.jade-ui-spinner .up-button
{
    right: 24px;
}

.jade-ui-spinner .down-button
{
    right: 5px;
}

.jade-ui-spinner .jade-ui-button:after
{
    content: "";
    position: absolute;
    width: 7px;
    height: 1px;
    background: #000;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    display: block;
}

.jade-ui-spinner .up-button:before
{
    content: "";
    position: absolute;
    height: 7px;
    width: 1px;
    background: #000;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    display: block;
}

.jade-ui-spinner .disabled:after,
.jade-ui-spinner .disabled:before
{
    background: #ccc;
}


/*** Styles for list component ***********************************************/

.jade-ui-list
{
    overflow: auto;
    position: relative;
}

.jade-ui-list.vertical {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.jade-ui-list.horizontal {
    touch-action: pan-X;
    -ms-touch-action: pan-X;
}

.jade-ui-listitem
{
    position: absolute;
    border: 10px solid transparent;
    z-index: 0;
}

.jade-ui-listitem img
{
    display: inline-block;
}

.jade-ui-listitem.selected
{
    border-color: #97d04f;
}

.jade-ui-rubberband {
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
    border: solid 2px rgba(0, 0, 255, 0.25);
    background: rgba(0, 0, 255, 0.1);
    border-radius: 4px;
}

/*** Styles for carousel component ***/

.jade-ui-carousel {
    position: relative;
}

.jade-ui-carousel > ul {
    list-style: none;
    margin: 0 20px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
}

.jade-ui-carousel > ul > li {
    display: inline-block;
}

.jade-ui-carousel > button {
    position: absolute;
    width: 20px;
    top: 0;
    bottom: 0;
}

.jade-ui-carousel > button.backward {
    left: 0;
}

.jade-ui-carousel > button.forward {
    right: 0;
}

.jade-ui-carousel > button.disabled {
    display: none;
}


/*** Styles for TextField component ********************************************/

.hideNativeSpinner::-webkit-inner-spin-button,
.hideNativeSpinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.jade-ui-tooltip {
	position: absolute;
	background-color: #FFF;
	padding: 3px 5px;
	border: 1px solid #CCC;
	border-radius: 3px;
	opacity: 0.7;
}

.jade-ui-tooltip.hover {
	opacity: 0.2;
}

.jade-ui-tooltip-arrow {
	position: absolute;
	background-color: transparent;
	width: 0;
	height: 0;
}

.jade-ui-tooltip.arrow-direction-TOP .arrow-part-1 {
	top: -10px;
	right: 50%;
	border-top: 10px solid transparent;
	border-right: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-TOP .arrow-part-2 {
	top: -10px;
	left: 50%;
	border-top: 10px solid transparent;
	border-left: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-TOP .arrow-part-3 {
	top: -9px;
	right: 50%;
	border-top: 9px solid transparent;
	border-right: 9px solid #FFF;
}
.jade-ui-tooltip.arrow-direction-TOP .arrow-part-4 {
	top: -9px;
	left: 50%;
	border-top: 9px solid transparent;
	border-left: 9px solid #FFF;
}

.jade-ui-tooltip.arrow-direction-BOTTOM .arrow-part-1 {
	bottom: -10px;
	right: 50%;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-BOTTOM .arrow-part-2 {
	bottom: -10px;
	left: 50%;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-BOTTOM .arrow-part-3 {
	bottom: -9px;
	right: 50%;
	border-bottom: 9px solid transparent;
	border-right: 9px solid #FFF;
}
.jade-ui-tooltip.arrow-direction-BOTTOM .arrow-part-4 {
	bottom: -9px;
	left: 50%;
	border-bottom: 9px solid transparent;
	border-left: 9px solid #FFF;
}

.jade-ui-tooltip.arrow-direction-RIGHT .arrow-part-1 {
	right: -10px;
	bottom: 50%;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-RIGHT .arrow-part-2 {
	right: -10px;
	top: 50%;
	border-right: 10px solid transparent;
	border-top: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-RIGHT .arrow-part-3 {
	right: -9px;
	bottom: 50%;
	border-right: 9px solid transparent;
	border-bottom: 9px solid #FFF;
}
.jade-ui-tooltip.arrow-direction-RIGHT .arrow-part-4 {
	right: -9px;
	top: 50%;
	border-right: 9px solid transparent;
	border-top: 9px solid #FFF;
}

.jade-ui-tooltip.arrow-direction-LEFT .arrow-part-1 {
	left: -10px;
	top: 50%;
	border-left: 10px solid transparent;
	border-top: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-LEFT .arrow-part-2 {
	left: -10px;
	bottom: 50%;
	border-left: 10px solid transparent;
	border-bottom: 10px solid #CCC;
}
.jade-ui-tooltip.arrow-direction-LEFT .arrow-part-3 {
	left: -9px;
	top: 50%;
	border-left: 9px solid transparent;
	border-top: 9px solid #FFF;
}
.jade-ui-tooltip.arrow-direction-LEFT .arrow-part-4 {
	left: -9px;
	bottom: 50%;
	border-left: 9px solid transparent;
	border-bottom: 9px solid #FFF;
}
