body{
    width:100%;
    height: 100%;
    margin: 0 0 0 0;
    font-family: 'Open Sans',sans-serif;
    font-weight: 300;
    background-color: #f6f9fc;
}

#webAppGlobalView{
    width:100%;
    height: 100%;
    margin: 0 0 0 0;
    overflow: hidden;
    position: relative;
}

#webAppNavbar{
    width: 100%;
    height:80px;
    background-color: #2c3a46;
    box-shadow: 0 1px 7px 1px rgba(0,0,0,0.5);
}

#webAppNavbarLogo{
    height:50px;
    margin-top:12px;
    margin-left:35px;
}
#webAppNavbarLinkContainer{
    float: right;
    color:white;
    font-weight: 400;
    font-size:14px;
    margin-right:20px;
    margin-top: 30px;
}

#webAppMainView{
    text-align: center;
    color: #585858;
    width: 100%;
    height: calc(100% - 80px);
    position: relative;
}

.title-view{
    font-size:30px;
    padding-top:24px;
    padding-bottom: 24px;
    display: block;
}

.View{
    position:absolute;
    width: 100%;
    height: 100%;
    transition: 950ms transform;
}

#selLangView{
    top:0px;
    left:0px;
    transform: translateX(0px);
}
.cardView{
    background-color: white;
    display: inline-block;
    padding: 22px 22px 12px 22px;
    margin: 22px 22px 22px 22px;
    border-radius: 8px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}

.langFlag{
    border-radius: 50%;
    height:180px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    display: block;
}

.flagDesc{
    font-size: 19px;
    margin-top: 12px;
    display: block;
}

#selLangHelper{
    text-align: center;
    position: absolute;
    /*bottom: 0px;*/
    left:50%;
    transform: translate(-50%,-54px);
    transition: 800ms transform;
}

.bottomHelper{
    background-color: white;
    box-shadow: 0px -1px 6px 2px rgba(0,0,0,0.2);
    width:500px;
    height: 400px;
    padding-top:16px;
    border-radius: 5px 5px 0px 0px;
}

#selLangHelperCtn{
    padding: 16px 26px 16px 26px;
}

.rowUp{
    vertical-align: middle;
    margin-left: 22px;
    margin-right: 22px;
}

.sepH{
    width: 100%;
    height: 1px;
    background-color: #909090
}

.backButton{
    position: absolute;
    left:18px;
    height:100%;
    width: 90px;
    opacity: 0.8;
}

#keyManagerView{
    top:0px;
    left:100%;
    transform: translateX(0%);
}

#viewKMLang{
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

.langFlagLittle{
    border-radius: 50%;
    height:46px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    display: inline-block; 
    margin-right: 40px;
    margin-left: 40px;
}

.overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top:0;
    left:0;
}

.popUp{
    background-color: white;
    padding: 22px 22px 12px 22px;
    border-radius: 8px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    display: block;
    min-width: 800px;
    text-align: center;
}

.closeButton{
    float: right;
    margin-right: -12px;
    margin-top:-12px;
}

.descText{
    text-align: left;
}

.codeInput{
    width: 80%;
    height: 32px;
    text-align: center;
    background-color:rgb(235, 235, 228);
    border: solid #aeaeae 1px;
    margin:auto;
    color: #585858;
    padding-top:7px;
}

.keyboardKey{
    background-color: #585858;
    color: white;
    padding: 12px 18px 12px 18px;
    margin: 4px 4px 4px 4px;
    width:22px;
    height:22px;
    display: inline-block;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.backKey{
    font-size:26px;
    position: absolute;
    top:2px;
    left:16px;
}

.Button{
    background-color: #bcbcbc;
    border : none;
    margin: 16px 28px 16px 28px;
    padding: 10px 20px 12px 20px;
    outline: none;
    border-radius: 5px;
    color: #383838;
    font-size: 16px;
    font-family: 'Open Sans',sans-serif;
}

.positiveButton{
    background-color: #eb651d;
    color:white;
}

#waitingOverlay{
    min-width:350px;
}

@keyframes wait { from { margin-left:20%; } to { margin-left:80%; }  }
#waiter{
    background-color:#888888;
    width:10px;
    height:10px;
    margin-left:80%;
    border-radius:5px;
    animation: 800ms linear 0s infinite alternate wait;
    margin-top:22px;
    /*display:none;*/
}