body {
  padding: 0;
  margin: 0;
  background: #334;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.start {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.start #app {
  margin-top: -5%;
}

#app {
  text-align: center;
  color: #2c3e50;
}

.toolbar {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.toolbar .top-icon .material-icons.md-18 {
  font-size: 18px;
}
.toolbar .top-icon i {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  padding: 10px 5px;
  outline: none;
  transition: all ease 0.2s;
  cursor: pointer;
}
.toolbar .top-icon i:hover {
  color: rgba(255, 255, 255, 0.7);
}
.toolbar .top-icon i.active {
  color: white;
}
.toolbar .top-icon.divider i {
  padding: 10px 15px;
}
.toolbar .top-icon.device {
  transition: transform ease 0.5s;
  transform: rotate(0deg);
}
.toolbar .top-icon.device.no-rotate {
  transform: rotate(0deg);
}
.toolbar .top-icon.device.landscape {
  transform: rotate(90deg);
}

h1 {
  font-size: 16px;
  margin-right: 20px;
  text-align: right;
  margin-top: 0;
  color: #889;
}
h1 img {
  vertical-align: middle;
  max-height: 43px;
  position: relative;
  top: -2px;
}

label {
  font-size: 16px;
  text-transform: uppercase;
  color: seagreen;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 20px;
}

.error {
  position: absolute;
  font-sizE: 0.8em;
  color: #c00;
  font-weight: bold;
  padding-left: 20px;
}
.error i {
  transform: translateY(30%);
}

input, button {
  padding: 10px 20px;
  font-size: 17px;
  border-radius: 4px;
}

input {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
  border-right: none;
  border-radius: 25px 0 0 25px;
  outline: none;
  min-width: 30vw;
}

button {
  padding-left: 15px;
  background: #6482c8;
  border-radius: 0 25px 25px 0;
  border: 2px solid #6482c8;
  color: #fff;
  text-transform: uppercase;
  margin-left: -5px;
}

iframe {
  max-width: 100%;
  max-height: 100%;
  transition: all ease 0.5s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
iframe.i * {
  pointer-events: none;
}
iframe.desktop {
  width: 100vw;
  height: calc(100vh - 60px);
}
iframe.notebook {
  width: 1280px;
  height: 800px;
}
iframe.notebook {
  width: 1280px;
  height: 800px;
}
iframe.tablet {
  width: 768px;
  height: 1024px;
}
iframe.tablet.landscape {
  width: 1024px;
  height: 768px;
}
iframe.phone {
  width: 375px;
  height: 568px;
}
iframe.phone.landscape {
  width: 568px;
  height: 375px;
}

/*# sourceMappingURL=styles.css.map */
