html, body{
   margin:0px;
   padding:0px;
   height: 100%;
   
}   
body{
    font-family: 'Lato', sans-serif;
    font-size:16px;
    line-height:150%;
}

a{
    text-decoration: none;
}

/* Splash screen */
/* -------------------------------------------------- */
#splash{
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: #ffffff url(../img/splash.gif) center center no-repeat;
    background-size: 250px auto;
    z-index: 2000;
}

/* Sidebar */
/* -------------------------------------------------- */

#sidebar{
    position: fixed;
    top: 100px;
    left: 40px;
    bottom: 0px;
    width: 260px;
    padding: 20px;
    background:rgba(237, 240, 241, 1);
    overflow: auto;
    z-index: 700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#sidebar form{
    font-weight: normal;
    color: #333333;
}
#sidebar h2{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin: 0px 0px 10px 0px;
    padding: 0px;
    color: rgba(94, 102, 104, 0.8);
}
input.parameter{
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    font-weight: 300;
    width: 100%;
    font-size:14px;
    padding: 8px;
    outline: none;
    border:solid 1px rgba(255, 255, 255, 1);
    background:rgba(255, 255, 255, 1);
    margin-bottom: 24px;
    color: rgba(142, 165, 172, 1);
    /* IOS appearance */
    -webkit-appearance: none;
    border-radius: 0px;
}
input.error{
    border: solid 1px rgba(232, 111, 80, 1);;
    color: rgba(232, 111, 80, 1);;
}
input.button{
    display:block;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size:14px;
    padding:9px;
    width: calc(50% - 10px);
    border:none;
    outline:none;	
    color:#ffffff;
    cursor:pointer;
    /* IOS appearance */
    -webkit-appearance: none;
    border-radius: 0px;
}
input.button:hover{
    opacity:0.8;
}
input.submit{
    background-image: url(../img/form_submit.svg);
    background-size: 15px auto;
    background-repeat: no-repeat;
    background-position: 10px center;
}
input.reset{
    background-color:rgba(178, 180, 185, 1);
    background-image: url(../img/form_reset.svg);
    background-size: 15px auto;
    background-repeat: no-repeat;
    background-position: 10px center;
}
.flex{
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size:14px;
    color: rgba(94, 102, 104, 0.8);
}
.flex label{
    width: calc(50% - 10px);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
input.radio{
    margin:0px 10px 0px 0px;
    cursor: pointer;
    outline: none;

}
#copyright{
	font-family: 'Lato', sans-serif;
    text-align: justify;
    line-height: 150%;
    font-size: 12px;
    color: #888888;
}

/* Container */
/* -------------------------------------------------- */

#container{
    position: absolute;
    top: 0px;
    right: 0px;
    left: 340px;
    bottom: 0px;
    margin-left: 0px;
    overflow: hidden;
    z-index: 500;
}

/* Console */
/* -------------------------------------------------- */

#console{
    display: none;
    background: #ffffff;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 270px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 14px;
    padding: 15px;
    z-index: 1000;
    border-left: solid 1px #cccccc;
}
#console p{
    margin: 0;
}
#console span{
    height: 5px;
    display: block;
    border-top: solid 1px #eeeeee;
    margin: 20px 0px 20px 0px;
}

/* Logo */
/* -------------------------------------------------- */

#bea{
    position: fixed;
    height: 40px;
    top: 30px;
    right: 50px;
    z-index: 900;
}
#logo{
    position: absolute;
    display: flex;
    top: 30px;
    left: 0px;
    z-index: 900;
}
#logo_icon{
    width: 24px;
    height: 24px;
    padding: 8px;
}
#logo_text{
    width: 280px;
    height: 40px;
    padding-left: 20px;
    line-height: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 25px;
}
#logo_text b{
    font-weight: 600 !important;
}

#logo_text sup{
    font-size: 14px;
    line-height: 14px;
}

/* Styles */
/* -------------------------------------------------- */

.pss_bg{
    background-color: #0081C1;
}
.pcs_bg{
    background-color: #29B297;
}
.ias_bg{
    background-color: #DE1E1E;
}
.pts_bg{
    background-color: #ACC541;
}
.vss_bg{
    background-color: #EC6A1A;
}
.sas_bg{
    background-color: #EDB22A;
}

.pss_tx{
    color: #0081C1;
}
.pcs_tx{
    color: #29B297;
}
.ias_tx{
    color: #DE1E1E;
}
.pts_tx{
    color: #ACC541;
}
.vss_tx{
    color: #EC6A1A;
}
.sas_tx{
    color: #EDB22A;
}

/* Responsive */
/* -------------------------------------------------- */

@media all and (max-width : 800px){
 
    #container{
    	left: 0px;
        background-image: url(../img/down_arrow.svg);
        background-size: 20px auto;
        background-repeat: no-repeat;
        background-position: center bottom 20px;
    }
    #sidebar{
        position:absolute;
        top: 100%;
        left : 0px;
        width: calc(100% - 40px);
        bottom: auto;
        overflow: auto;
    }
    #bea{
        display: none;
    }    
}

/* Scrollbar */
/* -------------------------------------------------- */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: none; 
}
 
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}