

*, *:before, *:after {
    box-sizing: border-box;
}


body {
    background:linear-gradient(
        rgba(225, 225, 225, 0.8),
        rgba(225, 225, 225, 0.8)),
        url(../img/pattern.png);
    font-size: 18px;
    line-height: 1.6;
}

#divlogin {
    display:none;
    height: 390px;
    width: 350px;
    background: transparent;
    margin: 10% auto;
    background: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 1.2);
    padding: 60px 30px 35px;
}
#title {
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 65px;
    padding-top: 3px;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: black;
    background-color:#005584;
    background-image: url(../img/pattern.png);
    border-bottom:1px #666 solid;
}
input, button {
    display: block;
    padding: 10px;
    width: 100%;
    margin-top: 1em;
    border: 0;
    background: #ededed;
    font-size: 1.2em;
    border-radius: 5px;
    font-family:Arial,sans-serif;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}
input:active,input:focus {
    outline: none;
}
button:active,button:focus {
    outline: none;
}
button {
    letter-spacing: 1px;
    color: #fff;
    background: #6b828f;
    transition: .25s;
    margin-bottom: 10px;

}
button:hover {
    background: #005584;
    cursor: pointer;
}
.StatusBar{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:50px;
    padding-top: 4px;
    line-height: 21px;
    background-color:#005584;
    background-image: url(../img/pattern.png);
    color: whitesmoke;
    clear:both;
    border-top:1px #666 solid;
    text-align: center;
    overflow-wrap: break-word;
}
#divmain{
    display:none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform-origin: top left;
}
#mainiFrame{
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 7;
}

.number-input-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 38px;
    font-size: 18px;
}

.number-input-container button {
    width: 30%;
    height: 100%;
    background-color: #e2e8f0;
    border: 0px solid #cbd5e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    float: left;
    margin: 0;
    box-shadow: none;
}

.number-input-container button:hover {
    background-color: #cbd5e0;
}

.number-input-container button.decrease {
    border-radius: 10% 0 0 10%;
    font-size: 32px;
    color:black;
}

.number-input-container button.increase {
    border-radius: 0 10% 10% 0;
    font-size: 28px;
    color:black;
}

.number-input-container input {
    width: 39.8%;
    height: 100%;
    text-align: center;
    border: 2px solid #cbd5e0;
    float: left;
    margin: 0;
    padding: 0px;
    border-radius: 0;
}

.number-input-container input:focus {
    outline: none;
}

.number-input-container input::-webkit-outer-spin-button,
.number-input-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input-container input[type=number] {
    -moz-appearance: textfield;
}
#dkslogo{
    padding: 2%;
    width: 96%;
    height: auto;
}
#btnlogin{
    width: 60%;
    margin-left: 20%;
}