/*Hiding the orange highlight in android */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

input,
textarea {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    -o-user-select: text;
    user-select: text;
}

@font-face {
    font-family: 'BOSFont';
    src: url('BOSUI.Styles.Roboto-Regular.ttf') format('truetype');
}

h1,
p,
a,
body {
    font-family: "BOSFont", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #141414;
    color: #FFFFFF;
    margin: 0;
}

svg {
    position: absolute;
    overflow: hidden;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/*tr {
    color: #3c3c3c;
}*/

th {
    border: 1px solid rgb(90, 90, 90);
    padding: 5px;
}

td {
    border: 1px solid rgb(90, 90, 90);
    padding: 5px;
    vertical-align: middle;
}


div.layout {
    overflow: hidden;
    position: absolute;
}

div.text {
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*  Text Label Positioning
    leftTop, centerTop, rightTop
    leftCenter, center, rightCenter
    leftBottom, centerBottom, rightBottom
*/


div.textTable {
    overflow: hidden;
    position: absolute;
    display: table;
    table-layout: fixed;
}

div.leftTopText {
    text-align: left;
    vertical-align: top;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.centerTopText {
    text-align: center;
    vertical-align: top;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.rightTopText {
    text-align: right;
    vertical-align: top;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.leftCenterText {
    text-align: left;
    vertical-align: middle;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.centerText {
    text-align: center;
    vertical-align: middle;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.rightCenterText {
    text-align: right;
    vertical-align: middle;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


div.leftBottomText {
    text-align: left;
    vertical-align: bottom;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.centerBottomText {
    text-align: center;
    vertical-align: bottom;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.rightBottomText {
    text-align: right;
    vertical-align: bottom;
    position: relative;
    height: 100%;
    width: 100%;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*  Button */

div.cmButton {
    overflow: hidden;
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;

    cursor: default;
    border-style: solid;
    border-width: 1px;
}

div.cmButtonNoBorder {
    overflow: hidden;
    position: absolute;
    cursor: default;
    border-style: none;
    border-width: 0px;
}

div.cmButtonShade {
    overflow: hidden;
    position: absolute;
    /* Mozilla */
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0.08) 20%, rgba(0, 0, 0, 0.08) 80%, rgba(0, 0, 0, 0.23) 100%);
    /* Webkit */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.47)), color-stop(0.20, rgba(255, 255, 255, 0.08)), color-stop(0.80, rgba(0, 0, 0, 0.08)), color-stop(1, rgba(0, 0, 0, 0.23)));
    /* ie10 */
    background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0.08) 20%, rgba(0, 0, 0, 0.08) 80%, rgba(0, 0, 0, 0.23) 100%);
}

div.cmButtonShadeActive {
    overflow: hidden;
    position: absolute;
    /* Mozilla */
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, rgba(255, 255, 255, 0.47) 100%);
    /* Webkit */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.23)), color-stop(0.20, rgba(0, 0, 0, 0.08)), color-stop(0.80, rgba(255, 255, 255, 0.08)), color-stop(1, rgba(255, 255, 255, 0.47)));
    /* ie10 */
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, rgba(255, 255, 255, 0.47) 100%);
}

div.cmButtonFlatShade {
    overflow: hidden;
    position: absolute;
    background: rgba(0, 0, 0, 0);
}

div.cmButtonFlatActive {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/*  Frame */

div.frameControlFrame {
    overflow: hidden;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
}

#forgotPassword:hover,
#forgotPassword:active {
    text-decoration: underline;
    cursor: pointer;
}

#forgotPassword:active {
    color: #000000;
}


.loginPanelButton:hover {
    cursor: pointer;
}

.peekIcon:hover {
    border-radius: 40%;
}

.peekIcon:active {
    background: rgba(0, 0, 0, 0.2) !important;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}
