body {
    background: black;
    overflow-y: hidden;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
}

#canvasBg{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
}

@font-face {
    font-family: 'orbitron';
    src: url('fonts/orbitron.otf');
}

* {
    font-family: 'orbitron';
    font-weight: normal;
    letter-spacing: 1.5px;
    font-size: 13px;
}

.Button, .RadioButton, .ImageButton, .LinkButton, .Spinner, .OptionItem, .TabTitle{
    transition: all .1s ease-in-out;
}

.Button:hover, .RadioButton:hover, .ImageButton:hover, .LinkButton:hover, .Spinner:hover, .OptionItem:hover, .TabTitle:hover{
    filter: drop-shadow(0px 0px 10px #27EDEC);
    color: black;
    transform: scale(1.05);
    text-shadow:0px 0px 20px white;
    cursor: url('imgs/ic_cursor_hand.png'), auto;
}

.Button:active, .RadioButton:active, .ImageButton:active, .LinkButton:active, .Spinner:active, .OptionItem:active, .TabTitle:active{
    cursor: url('imgs/ic_cursor_touch.png'), auto;
    transform: scale(0.9);
}

.EditText, .Password{
    background-color: rgba(3, 18, 23, 0.6);
    border-radius: 5px;
    border-style: solid;
    border-color: #FEFEFE;
    border-width: 1px;
    color: #AFC0C8;
    transition: all .2s ease-in-out;
    box-sizing: border-box;
    caret-color: #FDD10F;
}

.EditTextDisabled, .PasswordDisabled {
    background-color: rgba(0, 18, 18, 0.8);
    border-radius: 5px;
    border-style: solid;
    border-color: #757575;
    border-width: 1px;
    color: #AFC0C8;
    box-sizing: border-box;
}

[contentEditable=true]:empty:before {
    content: attr(hint);
    opacity: 0.6;
}

.EditText:hover, .Password:hover {
    transform: scale(1.03);
    filter: drop-shadow(0px 0px 10px #27EDEC);
}
.EditText:focus, .Password:focus {
    outline: none !important;
    background: #081828;
    outline-width: 0;
}

[type=radio]{
  width: 25px !important;
  height: 25px !important;
}