h1 {
    color: #369;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 250%;
    max-width: 350px;
    display: inline-block;
}

html, body
{
    height:100%;
    overflow: hidden;
}


/*header-area*/
.cockpit{
    width: 100%;
    background-color: #1973ff;
    padding: 10px;
    margin-bottom: 15px;
}

/*navigation*/
nav {
    min-width: 600px;
    background-color: #333;
    text-align: center;
    padding: 2px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0px 5px;
    overflow: hidden;
    border-radius: 3px;
}

nav > a{
    color: #fff;
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -2px;
    margin-right: -2px;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: background-color ease-out 0.15s;
}

nav > a:hover, nav > a:active {
    color: #fff;
    padding: 9.5px;
    border: 1px solid #1973ff;
    background-color: #000;
    text-decoration: none;
}

nav > a:focus {
    color: #fff;
    background-color: #000;
    text-decoration: none;
}

@media (max-width: 630px){
    nav{
        min-width: 350px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
        line-height: 34px;
    } 
}

.inax-form {
    display: inline-block;
    background-color: #ccc;
    padding: 10px;
    padding-top: 5px;
    margin-top: 15px;
    border-radius: 5px;
}


.inax-form-input {
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    text-shadow: 0 1px 0 #fff;
    padding: 3px;
    margin-top: 3px;
    border-radius: 3px;
}

.inax-submit {
    margin-top: 3px;
    padding: 3px !important;
    vertical-align: top !important;
}

input:invalid {
    border: 2px solid red;
    outline: none;
}


/* checkbox based switch (used for "Hide"-switch in plcviewer) */
.checkbox-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.checkbox-switch input {
    display:none;
}

.switch-slider {
    box-sizing: border-box;
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    width: 60px;
    height: 34px;
    background-color: #ddd;
    -webkit-transition: .2s;
    transition: .2s;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
}

.switch-slider:before {
    content: "Hide";
    transition: .2s;
}

input:checked + .switch-slider {
  background-color: #1973ff;
}
input:checked + .switch-slider:before {
  content: "Show";
  color: #fff;
}

input:focus + .switch-slider {
  box-shadow: 0 0 1px #1973ff;
}


/* for plc-input cell-containers in table context (at plc-viewer) */
.plc-input-table {
    width: 250px;
    vertical-align: middle;
}


/* *** SHORTCUT CLASSES *** */
/* generic classes which only alter one or two properties and can be used in a variety of ways */

/* turns the cursor to pointer (click-finger) */
.inax-clickable {
    cursor: pointer;
}

/* add to force blue background and white text-color*/
.basicblue {
    background-color: #1973ff !important;
    color: #fff;
}

/* add to force green (success-button) background */
.successgreen {
    background-color: #5cb85c !important;
}

/* colors to use:

blue:
    default: #1973ff
    medium: #004ec7
    dark: #002763

gray_
    default: #333

*/
/*
  * See https://github.com/angular/angular.io/blob/master/public/docs/_examples/styles.css
  * for the full set of master styles used by the documentation samples
  */