html, body {
  width: 100%;
  height: 100%;
  background-color: #e7e7e7;
  margin: 0;
  padding: 0;
}

html {
  overflow: hidden;
}

.header {
  width: 100%;
  height: 46px;
  background: #fff;
  border-top: 4px solid #ffd800;
}

.logo {
  background-image: url(/uimag/1/assets/logo/logo-webde-v4.svg);
  display: block;
  background-repeat: no-repeat;
  height: 46px;
  width: 32px;
  margin-left: 15px;
  background-position: center;
}

.content {
  text-align: center;
  width: 100%;
  height: 100%;
}

.blurredbg {
  background-image: url('webde_content_smartphone.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  max-width: 48rem;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

.fade-in {
  animation: fadeIn ease 2s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error {
  display: none;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  padding: 20px;
  background-color: #FFFFFF;
  text-align: center;
  box-shadow: 1px -1px 27px -1px rgba(184, 184, 184, 1);
  font-family: sans-serif;
  min-width: 320px;
}
.error strong {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  display: block;
}
.error p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 8px;
}
.btn {
  display: table;
  margin: auto;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  background-color: #ffd800;
  border-radius: 4px;
  padding: 0 16px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  transition: background-color .25s ease-in-out;
}
.btn:hover {
  background: #ccad00;
}

/* tablet */
@media screen and (min-width: 48em) {
  .header {
    max-width: 1023px;
  }

  .blurredbg {
    max-width: 62rem;
    background-image: url('webde_content_tablet.jpg');
  }
}

/* desktop */
@media screen and (min-width: 64em) {
  .header {
    max-width: none;
  }

  .blurredbg {
    background-image: url('webde_content_desktop.jpg');
    max-width: none;
  }
}
