/** SET SOME DEFAULTS **/
html {
  background: #336699;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

*:active {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

body {
  background: #336699;
  font-family: 'Roboto', sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  background: #fff;
  color: #434A54;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  /*position: relative;*/
  }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  }


#loader {
  display: none;
  position: fixed;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  }

#loader img {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  }


/*START SPLASH*/
#splash {
  background: #336699;
  position: absolute;
  z-index: 1001;
  padding: 10% 15% 0 15%;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  }

#splash.sendOff {
  top: -100%;
  bottom: 100%;
  }

#splash p {
  color: white;
  }

#loginContent .dgb-logo,
#splash .dgb-logo {
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  }

#splash h1 {
  color: white;
  width: 100%;
  text-align: center;
  margin-top: 100px;
  line-height: 46px;
  font-size: 32px
  }

/** END SPLASH **/
/** START LOGINPAGE **/
#loginWrapper {
  position: fixed;
  background: white;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  }

#loginWrapper {
  z-index: 10;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #336699;
  padding: 10% 15% 0 15%;
  }


#submitLogin {
  background: #009688;
  clear: both;
  color: white;
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  padding: 10px 15px;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 10px;
  width: 100%;
  }

.loginAlert {
  color: #ED5564;
  display: none;
  text-align: center;
  margin: 0;
  }

#loginCode {
  background: white;
  padding: 0 15px;
  text-align: center;
  font-size: 16px;
  border: none;
  display: block;
  font-weight: 400;
  outline: none;
  border-radius: 10px;
  line-height: 40px;
  margin: 10px 0 10px 0;
  width: 100%;
  }

/** END LOGINPAGE **/